/* ================================= */
/* ----------- General CSS --------- */
/* ================================= */
@import url('https://fonts.googleapis.com/css2?family=Alex+Brush&family=Oswald:wght@200;300;400;500;600;700&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
body,html{
    font-family: 'Roboto', sans-serif;
    font-size:16px;
    margin:0;
	color:#000016;
}
h1,
h2,
h3,
h4,
h5,
h6,
p{
    margin:0;
}
a,
button, span {
	-webkit-transition: ease all 0.5s;
	-o-transition: ease all 0.5s;
	-moz-transition: ease all 0.5s;
	transition: ease all 0.5s;
}
a,a:hover, a:focus,
button, button:focus {
	text-decoration:none;
	outline: none;
	color: inherit;
	background: transparent;
}
.container{
    max-width:1280px;
}
.light_bg{
	background:#f5faff;
}
ol, ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
.padding{
	padding:100px 0;
}
.padding-top{
	padding-top:100px;
}
.padding-bottom{
	padding-bottom:100px;
}
.img-holder{
	overflow:hidden;
	position: relative;
}
.img-holder img{
	width:100%;
}
.zoom-effect img{
	-webkit-transition: .4s;
	-o-transition: .4s;
	transition: .4s;
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
}
.pro-box-wrapp:hover .zoom-effect img,
.our-portfolio-wrapp:hover .zoom-effect img,
.better-solution-box:hover .zoom-effect img,
.client-section-box:hover .zoom-effect img{
	-webkit-transition: .4s;
	-o-transition: .4s;
	transition: .4s;
	-webkit-transform: scale(1.2) rotate(2deg);
	-ms-transform: scale(1.2) rotate(2deg);
	transform: scale(1.2) rotate(2deg);
}
.overlay-effect {
	background: rgb(35,140,204);
	background: -moz-linear-gradient(122deg, rgba(35,140,204,1) 0%, rgba(30,37,82,1) 74%);
	background: -webkit-linear-gradient(122deg, rgba(35,140,204,1) 0%, rgba(30,37,82,1) 74%);
	background: linear-gradient(122deg, rgba(35,140,204,1) 0%, rgba(30,37,82,1) 74%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#238ccc",endColorstr="#1e2552",GradientType=1);
	position: absolute;
	width: 100%;
	height: 100%;
	opacity:0;
	left: 0;
	top: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 30px;
	-webkit-transition: .4s;
	-o-transition: .4s;
	transition: .4s;
	-webkit-transform: scale(1.2) rotate(2deg);
	-ms-transform: scale(1.2) rotate(2deg);
	transform: scale(1.2) rotate(2deg);
	color: #fff;
}
.our-portfolio-wrapp:hover .overlay-effect {
	opacity:0.95;
}
.overlay-effect i{
	cursor: pointer;
}
.owl-carousel .owl-nav {
	display: flex;
	justify-content: center;
	margin-top: 0;
	position: absolute;
	top: -40px;
	right: 20px;
}
.owl-carousel .owl-nav .owl-next, 
.owl-carousel .owl-nav .owl-prev {
	color: #183744;
	margin:0 5px;
}

/* ================================= */
/* ----------- Commen CSS ---------- */
/* ================================= */
/* ------ Button CSS ----- */
.btn-web{
	background: rgb(35,140,204);
	background: -moz-linear-gradient(122deg, rgba(35,140,204,1) 0%, rgba(30,37,82,1) 74%);
	background: -webkit-linear-gradient(122deg, rgba(35,140,204,1) 0%, rgba(30,37,82,1) 74%);
	background: linear-gradient(122deg, rgba(35,140,204,1) 0%, rgba(30,37,82,1) 74%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#238ccc",endColorstr="#1e2552",GradientType=1);
	position: relative;
	display: inline-block;
	font-weight:600;
	color:#fff;
	font-size:18px;
	text-align: center;
	border:none;
	padding:14px 3rem;
    transition: 0.5s;
	border-radius:5px;
}
.btn-web:hover,
.btn-web:focus{
	color:#fff;
	background: rgb(35,140,204);
	background: -moz-linear-gradient(-122deg, rgba(35,140,204,1) 0%, rgba(30,37,82,1) 74%);
	background: -webkit-linear-gradient(-122deg, rgba(35,140,204,1) 0%, rgba(30,37,82,1) 74%);
	background: linear-gradient(-122deg, rgba(35,140,204,1) 0%, rgba(30,37,82,1) 74%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#238ccc",endColorstr="#1e2552",GradientType=1);
}

/* ------ Heading CSS ----- */
.default-heading{
	margin-bottom:20px;
}
.default-heading h2 {
	font-size: 28px;
	font-weight: bolder;
	color: #fff;
	text-transform: uppercase;
	font-family: 'Oswald', sans-serif;
	line-height: 34px;
	display: inline-block;
	background: #09202a;
	padding: 10px 15px;
	position: relative;
	min-height:54px;
}
.default-heading .shape-line {
	background: #ffa229;
	position: absolute;
	height: 100%;
	width: 5px;
	right: -10px;
	top: 0;
	display: inline-block;
}
.default-heading .shape-line::after {
	content: "";
	background: #09202a;
	position: absolute;
	height: 100%;
	width: 5px;
	right: -10px;
	top:0;
}

/* ================================= */
/* ------------ Header ------------- */
/* ================================= */
#header {
	position: relative;
	z-index: 999;
	background: #183744;
}
.header-top {
	box-shadow: 0 0 30px 0 rgba(0,0,0,0.30);
	padding:10px 0;
	display:none;
}
.logo {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
.logo a{
	display: inline-block;
}
.logo a img{
	max-width:100%;
}
.logo-tagline {
	text-transform: uppercase;
	/* font-weight: 900; */
	font-size: 10px;
	color: #ffa229;
	font-family: 'Oswald', sans-serif;
	letter-spacing:1px;
	margin-top: 3px;
}

/** Nav Bar **/
#header .navbar {
	padding: 1rem 0;
	padding-bottom: 1rem;
}
#header .navbar .nav-item {
	margin: 0 25px 0 0;
}
#header .navbar .nav-link {
	color: #fff;
	font-size: 15px;
	font-weight:500;
	padding: 0 2px;
	font-family: 'Oswald', sans-serif;
	position: relative;
	letter-spacing:1px;
	text-transform:uppercase;
}
/*#header .navbar .nav-link::after{
	height:2px;
	width:0;
	margin:0 auto;
	content:"";
	position:absolute;
	background:#ffa229;
	bottom:-5px;
	left:0;
	right:0;
	-webkit-transition: ease all 0.5s;
	-o-transition: ease all 0.5s;
	-moz-transition: ease all 0.5s;
	transition: ease all 0.5s;
}
#header .navbar .active.nav-link::after,
#header .navbar .nav-link:hover::after,
#header .navbar .nav-link:focus::after{
	width:100%;
}*/
#header .navbar .nav-link:hover,
#header .navbar .nav-link:focus{
	color: #ffa229;
}
.login-btn a {
	display: inline-block;
	border: 1px solid #ffa229;
	color: #ffa229;
	font-size: 16px;
	font-weight: 500;
	font-family: 'Oswald', sans-serif;
	letter-spacing: 1px;
	text-transform: uppercase;
	padding:7px 20px;
}
.login-btn a:hover,
.login-btn a:focus{
	background: #ffa229;
	color: #fff;
}

.header-fix#header .navbar {
	position: fixed;
	top:0;
	left:0;
	width:100%;
	z-index:999;
	background: #183744;
	transition: all ease 0.5s;
	opacity: 0;
    	visibility: hidden;
}
#header .navbar .navbar-nav{
	margin:0 auto;
	transition: all ease 0.5s;
}
.header-fix#header .navbar .navbar-brand {
	display: inline-block;
	transition: all ease 0.5s;
	max-width: 180px;
}
.header-fix#header .navbar .navbar-brand img{
	width:100%;
}
#header .navbar .nav-item.dropdown .dropdown-menu {
	min-width: 13rem;
	padding-top: 0;
	padding-bottom: 0;
	border: none;
	border-radius: 10px;
	box-shadow: 0 20px 30px 0 rgba(0,0,0,.3);
}
#header .navbar .nav-item.dropdown .dropdown-lists li .dropdown-item {
	padding: 10px 20px;
}
#header .navbar .nav-item.dropdown .dropdown-lists li .dropdown-item:hover,
#header .navbar .nav-item.dropdown .dropdown-lists li .dropdown-item:focus{
	background: #183744;
	color:#ffa229;
}

/* ================================= */
/* --------- Odds Section ---------- */
/* ================================= */
.main-wrapp{
	background:#f2f2f2;
	padding-top:0px;
}
.odds-section-wrapp {
	box-shadow: 0 0 30px 0 rgba(0,0,0,0.25);
}
.odds-section-wrapp img{
	width:100%;
}
.odds-section-header {
	background: #e7e6e6;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	padding:0 30px;
}
.odds-section-header li {
	padding: 16px 30px 16px 0;
	font-size: 18px;
}
.odds-slider {
	padding: 30px 0;
}
.odds-box-wrapp {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	border-right: 1px solid #ccc;
	padding: 0 25px;
}
.odds-box-wrapp img{
	max-width:35px;
	width:100%;
}
.odds-box-wrapp span{
	display: inline-block;
	margin-left:10px;
	font-size:16px;
}
.covers-btn a{
	display: inline-block;
	border: 1px solid #183744;
	padding:4px 16px;
	font-size: 13px;
	color:#183744;
	font-weight:500;
}
.covers-btn a:hover,
.covers-btn a:focus{
	background:#183744;
	color:#fff;
}
.finalHighlight{
	background:#fd4f00;
}
.inGameHighlight{
	background:#489028;
}

/* ================================= */
/* ----- Betting Sites Section ----- */
/* ================================= */
.betting-sites {
	padding:0 0 20px 0;
}
.betting-sites-heading {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	margin-bottom:15px;
}
.betting-sites-heading h3 {
	font-size: 24px;
	font-weight: 600;
	font-family: 'Oswald', sans-serif;
}
.betting-sites-heading a{
	display: inline-block;
	font-weight: 600;
	font-family: 'Oswald', sans-serif;
}
.betting-sites-heading a:hover,
.betting-sites-heading a:focus{
	text-decoration: underline;
	color: #ffa229;
}
.betting-sites-box {
	background: #09202a;
	/* margin-bottom:30px; */
}
.betting-sites-box-head {
	background: #183744;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	padding:12px 15px;
}
.betting-sites-box-head img {
	max-width:70px;
	height:18px;
}
.betting-sites-box-head a {
	display:inline-block;
	border:1px solid #ffa229;
	color: #fff;
	padding:3px 16px;
	font-size: 13px;
}
.betting-sites-box-head a:hover,
.betting-sites-box-head a:focus{
	background:#ffa229;
	color: #fff;
}
.betting-sites-box-body{
	text-align: center;
	padding:20px 0 25px 0;
}
.star-rating i{
	color:#ffa229;
}
.betting-sites-box-body h5 {
	color: #fff;
	margin-top: 10px;
	font-size: 14px;
}
.betting-slider.owl-carousel .owl-nav {
	width: 100%;
	position: absolute;
	display: block;
	top: 70px;
	right: auto;
}
.betting-slider.owl-carousel .owl-nav .owl-next, 
.betting-slider.owl-carousel .owl-nav .owl-prev {
	color: #183744;
	position: absolute;
	top:0;
	height: 30px;
    width: 30px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid #ccc;
}
.betting-slider.owl-carousel .owl-nav .owl-next.disabled, 
.betting-slider.owl-carousel .owl-nav .owl-prev.disabled {
	filter:gray;
}
.betting-slider.owl-carousel .owl-nav .owl-next{
    right:-20px;
}
.betting-slider.owl-carousel .owl-nav .owl-prev {
    left:-20px;
}
/* ================================= */
/* ------- Main Body Section ------- */
/* ================================= */
.wrapp-box{
	-webkit-box-shadow:0 0 15px 0 rgba(0,0,0,0.25);
	box-shadow:0 0 15px 0 rgba(0,0,0,0.25);
	padding:15px;
	margin-bottom:30px;
	background:#fff;
}
.sport-slider-detail{
	position: absolute;
	left: 15px;
	bottom: 15px;
	z-index:2;
}
.dark_bg{
	position: relative;
}
.dark_bg::after{
	content:"";
	position: absolute;
	background: -webkit-gradient(linear, left top, left bottom, from(rgba(255,255,255,0)), to(#000)) no-repeat bottom;
	background: -o-linear-gradient(top, rgba(255,255,255,0), #000) no-repeat bottom;
	background: linear-gradient(to bottom, rgba(255,255,255,0), #000) no-repeat bottom;
	bottom:0;
	left:0;
	right:0;
	height:50%;
	z-index:1;
}
.sport-slider-detail h3{
	color:#fff;
	font-weight: 600;
	font-family: 'Oswald', sans-serif;
	text-transform: uppercase;
	font-size:32px;
}
.sport-slider-detail p{
	font-size:18px;
	color:#fff;
}
.sport-slider .owl-nav {
	top: auto;
	right: 15px;
	bottom: 15px;
	z-index: 1;
}
.sport-slider .owl-nav .owl-next, .sport-slider .owl-nav .owl-prev {
	background: #ffa229;
	margin: 0 0 0 5px;
	color: #fff;
	width: 26px;
	height: 26px;
	line-height: 26px;
	text-align: center;
	font-size: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* Offer Stats */
.offer-stats{
	margin-top:30px;
	background: #09202a;
	padding:20px 25px;
}
.offer-stats h4{
	color: #fff;
	font-weight: 600;
	font-family: 'Oswald', sans-serif;
	font-size:26px;
	margin-bottom:20px;
}
.betting-sites h4 {
	font-weight: 600;
	font-family: 'Oswald', sans-serif;
	font-size:32px;
	margin: 10px 0 15px 0;
	text-transform: uppercase;
}

.newtext-align h4 {
	text-align: center;
	color: #ffa229;
	text-align: center;
    background: #183744;
    padding: 14px;
	height: 108px;
	font-size: 22px !important;
}

.news-score h4{

	text-align: center;
}

.feature-sports{
	text-align: center;
}

.offer-stats p {
	color: #fff;
	font-size: 14px;
	line-height: 24px;
}
.betting-sites .offer-stats {
	margin: 0;
	height: 100%;
}
.top-sport-table img{
	width:100%;
}
.offer-stats .head-logo b{
	font-size:17px;
}
.offer-stats .head-logo img{
	max-width:170px;
	margin-right:15px;
	margin-bottom:10px;
}
.top-sport img{
	width:100%;
}

/* ================================= */
/* ------- Choose Your Sport ------- */
/* ================================= */
.choose-sport-box{
	position: relative;
}
.choose-sport .row,
.latest-news .row{
	margin-left:-7px;
	margin-right:-7px;
}
.choose-sport .col-lg-4,
.latest-news .col-lg-6{
	padding-left: 7px;
	padding-right: 7px;
}
/* .choose-sport-box::after{
	content:"";
	position: absolute;
	background: -webkit-gradient(linear, left top, left bottom, from(rgba(255,255,255,0)), to(#000)) no-repeat bottom;
	background: -o-linear-gradient(top, rgba(255,255,255,0), #000) no-repeat bottom;
	background: linear-gradient(to bottom, rgba(255,255,255,0), #000) no-repeat bottom;
	bottom:0;
	left:0;
	right:0;
	height:50%;
	z-index:0;
	width:100%;
} */
.choose-sport-box img,
.latest-news img{
	width:100%;
}
.choose-sport-box .choose-sport-detail {
	width: 100%;
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 1;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	padding: 10px;
}
.choose-sport-box .choose-sport-detail h5{
	font-size:18px;
	color: #fff;
	font-weight: 600;
	font-family: 'Oswald', sans-serif;
	text-transform: uppercase;
}
.choose-sport-box .choose-sport-detail a {
	display: inline-block;
	font-size: 10px;
	font-weight: 600;
	background: #ffa229;
	color: #fff;
	padding: 2px 8px;
}
.choose-sport-box .choose-sport-detail p {
	font-size: 26px;
	color: #fff;
	font-weight: 400;
	font-family: 'Oswald', sans-serif;
	max-width: 60%;
	line-height: 34px;
}
.choose-sport-box .choose-sport-detail a:hover,
.choose-sport-box .choose-sport-detail a:focus{
	background: #09202a;
	color: #fff;
}

/* ================================= */
/* ---------- Latest News ---------- */
/* ================================= */
.today-best-box img{
	width:100%;
}
.today-best-box h4{
	font-size: 24px;
	font-weight:600;
	font-family: 'Oswald', sans-serif;
	color: #09202a;
	margin-top:10px;
}

/* ================================= */
/* ---------- Latest News ---------- */
/* ================================= */
.latest-news-box {
	border: 1px solid #ccc;
	height:100%;
}
.latesnews-detail h5 {
	font-size: 22px;
	font-weight: 500;
	font-family: 'Oswald', sans-serif;
	color: #09202a;
	margin-bottom:10px;
}
.latesnews-detail img{
	width:100%;
}
.latesnews-detail {
	padding: 15px;
}
.tag-date a {
	display: inline-block;
	background: #ffa229;
	color: #fff;
	font-size: 12px;
	font-weight: 500;
	padding: 1px 10px;
	border-radius: 3px;
}
.tag-date a:hover,
.tag-date a:focus{
	background: #09202a;
	color: #fff;
}
.tag-date span {
	display: inline-block;
	font-size: 12px;
	margin: 0 0 0 20px;
}
.news-btn {
	margin-top: 15px;
	display: flex;
	justify-content: space-between;
}
.news-btn a {
	display: inline-block;
	font-size: 14px;
	border: 1px solid #ccc;
	padding: 7px 20px;
}
.news-btn a:hover,
.news-btn a:focus{
	color:#fff;
	background: #09202a;
}

/* ================================= */
/* ----------- Right Side ---------- */
/* ================================= */
.right-side h3 {
	font-size: 26px;
	font-weight:600;
	font-family: 'Oswald', sans-serif;
	color: #09202a;
	margin:10px 0 25px 0;
	border-left: 5px solid #ffa229;
	padding: 0 0 0 10px;
}
.top-sport-table thead {
	background:#09202a;
}
.top-sport-table thead th{
	color:#fff;
	font-size: 14px;
}
.top-sport-table tr td {
	font-size: 11px;
	vertical-align: middle;
	font-weight: 500;
}
.team-match-result {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	border: 1px solid #ccc;
	padding:25px;
}
.ad-space {
	background: #e3f0f2;
	padding:15px;
	text-align: center;
}
.ad-space img {
	/* float: left; */
	/* max-width: 70px; */
	margin: 0 20px 0 0;
}
.ad-space p {
	font-size:15px;
	font-weight:500;
	font-family: 'Oswald', sans-serif;
	color: #09202a;
	text-transform: uppercase;
	margin-top: 10px;
}
.team-box,
.Team-result-box{
	flex: 0 0 33.33%;
	max-width: 33.33%;
	width: 100%;
	text-align: center;
}
.team-box img {
	max-width: 100%;
	border: 1px solid #ccc;
	padding: 10px;
	margin-bottom:10px;
}
.team-box h5 {
	font-size:16px;
	font-weight:600;
	font-family: 'Oswald', sans-serif;
	color: #09202a;
	text-transform: uppercase;
}
.team-box p,
.Team-result-box p,
.match-place p{
	font-size: 14px;
	font-weight: 600;
	color: #a8a8a8;
	text-transform: uppercase;
}
.Team-result-box span{
	display: inline-block;
	position: relative;
}
.Team-result-box span.winner-team::before {
	content: "WIN";
	position: absolute;
	background: #489028;
	top: -15px;
	color: #fff;
	font-size: 10px;
	padding: 0 6px;
	left: -20px;
}
.match-place{
	text-align: center;
	border: 1px solid #ccc;
	border-top:none;
	padding: 10px;
}
.left-social-icon.row {
	margin: 0 -5px;
}
.left-social-icon{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	justify-content: space-between;
}
.left-social-icon a {
	display: inline-block;
	color: #fff;
	flex: 0 0 47%;
	max-width: 47%;
	width: 100%;
	position: relative;
	text-align: right;
	padding: 20px;
	margin:0 5px 10px 5px;
}
.left-social-icon a i {
	position: absolute;
	left: -5px;
	color: rgba(255,255,255,0.20);
	font-size: 70px;
	bottom: -5px;
}

.left-social-icon a.facebook_f{
	background: #3b5998;
}
.left-social-icon a.fa_twitter{
	background: #00acee;
}
.left-social-icon a.fa_google{
	background: #EA4335;
}
.left-social-icon a.fa_instagram{
	background: #3f729b;
}

/* ================================= */
/* -------------- Footer ----------- */
/* ================================= */
.footer{
	background: url(../images/footer-bg.jpg);
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	padding-top:110px;
	padding-bottom:30px;
	margin-top: 30px;
}
.footer-about p{
	font-size: 16px;
	color: #fff;
	margin: 15px 0;
	line-height: 28px;
}
.social-icon{
	margin-top:20px;
}
.social-icon li {
	display: inline-block;
	margin: 0 30px 0 0;
}
.social-icon li a{
	display:block;
	font-size:18px;
	color:#fff;
}
.social-icon li a:hover,
.social-icon li a:focus{
	color: #ffa229;
}
.sport-img img{
	margin-top:30px;
	max-width:100%;
	opacity:0.5;
}
.footer-box h3 {
	font-size: 28px;
	color: #fff;
	font-weight: 600;
	font-family: 'Oswald', sans-serif;
	border-bottom: 2px solid #ffa229;
	margin: 10px 0 18px 0;
	padding-bottom: 7px;
}
.footer-link li {
	display: block;
}
.footer-link li a {
	display: inline-block;
	color: #fff;
	font-size: 16px;
	line-height: 38px;
}
.footer-link li a:hover,
.footer-link li a:focus{
	color: #ffa229;
}
.footer-newsletter p{
	font-size: 16px;
	color: #fff;
	margin: 15px 0;
	line-height: 28px;
}
.footer-newsletter .form-control {
	border-radius:0;
	background: transparent;
	color:#fff;
}

.footer-newsletter button {
  border: none !important;
  background: #ffa229 !important;
  color: #fff;
  padding: 8px 30px;
  margin-top: 10px;
  width: 100%;
}

.footer-contact li {
	color: #fff;
	margin: 0 0 15px 0;
	font-size: 14px;
}
.footer-contact li i{
	color: #ffa229;
	margin-right:10px;
}
.copyright {
	text-align: center;
	margin: 40px 0 0 0;
	border-top: 1px solid rgba(255,255,255,0.2);
	padding-top:30px;
}
.copyright p{
	color:#fff;
}
.tawk-min-container{
	background:#ffa229;
}
.second-nav {
    padding: 5px;
    text-align: center;
    z-index: 999;
    background: #183744;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 1px;
}

.new-fixed-box-css {
    width: 100%;
    height: auto;
    margin-bottom: 15px;
}
html>body>.accessibility .accessibility-menu>.accessibility-menu-trigger {
    top: 200px !important;
}
p.logo-tagline.footer-tagline {
    text-align: center;
    color: #ffa229;
    font-family: 'Oswald', sans-serif;
	font-size: 12px;
}

.video-class{
	/* margin-top: 75px !important; */
}