:root {
	--main-color: #32267f;
	--secound-color: #7e93cd;
	--yellow-color: #ffb341;
	--white-color: #ffffff;
	--black-color: #000000;
	--content-color: #666666;
	--light-bg: #f3f3f3;
}
html{
	overflow-x: hidden;
}
body{
	font-size: 15px;
}

.float-anim{
    animation: floatUpDown 10s ease-in-out infinite;
}

@keyframes floatUpDown{
    0%{
        transform: translateY(0);
    }
    50%{
        transform: translateY(25px); /* down */
    }
    100%{
        transform: translateY(0); /* back to top */
    }
}

.top-bar{
	border-bottom: solid 1px rgba(0,0,0,.15);
}
.top-bar li {
	color: var(--main-color);
	margin-right: 16px;
	border-right: solid 1px rgba(0,0,0,.15);
	font-size: 14px;
}
.top-bar li:first-child a{
	padding-left: 0;
}
.top-bar li a{
	color: var(--content-color);
	text-decoration: none;
	font-weight: 500;
	padding: 20px 15px;
	transition-duration: .3s;
}
.top-bar li a i{
	color: var(--main-color);
	font-size: 18px;
	transition-duration: .3s;
}
.top-bar li a:hover{
	transition-duration: .3s;
	color: var(--black-color);
}
.top-bar li:last-child{
	margin-right: 0;
}

.top-bar .social-media{
	margin-top: 10px !important;
}
.top-bar .social-media li.label{
	width: auto;
	color: var(--content-color);
	background: transparent;
	font-weight: 500;
	height: 40px;
	width: auto;
	line-height: 40px;
	margin-right: 15px;
}
.top-bar .social-media li{
	border: 0;
	margin-right: 10px;
}
.top-bar .social-media li:last-child{
	margin-right: 0;
}
.top-bar .social-media li a{
	background: var(--main-color);
	color: var(--white-color);
	height: 40px;
	width: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 6px;
	transition-duration: .3s;
}
.top-bar .social-media li a i{
	color: var(--white-color);
	font-size: 16px;
}
.top-bar .social-media li a:hover{
	background: var(--yellow-color);
	transition-duration: .3s;
}
header{
	position: sticky;
	top: 0;
}
header .logo{
	margin: 25px 0;
}
header nav ul li{
	
}
header nav ul li,
header nav ul li a{
    position: relative;
}
header nav ul li.active a,
header nav ul li a:hover{
	color: var(--main-color);
}
header nav ul li.active a:before{
	content: "";
	position: absolute;
	height: 2px;
	background: var(--main-color);
	left: 0;
	right: 0;
	bottom: 0;
}
header nav ul li a{
	height: 90px;
	line-height: 90px;
	color: var(--content-color);
	text-decoration: none;
	font-weight: 500;
	padding: 0 20px !important;
}
header nav ul li:last-child a{
	padding-right: 0 !important;
}


.site-banner{
	overflow:hidden;
	padding: 50px 0;
}
.site-banner:before{
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: rgba(0,0,0,.60);
	z-index: 8;
}
.site-banner .banner-img{
    width:100%;
    height:100%;
    object-fit:cover;
    animation: zoomInOut 60s ease-in-out infinite;
	position: absolute;
	left: 0;
	top: 0;
}

@keyframes zoomInOut{
    0%{
        transform: scale(1);
    }
    50%{
        transform: scale(2);
    }
    100%{
        transform: scale(1);
    }
}
.site-title span{
	color: var(--yellow-color);
}
.site-title.white{
	color: var(--white-color);
}
.site-title{
	font-size: 38px;
	font-weight: bold;
}
.site-title-sub{
	font-size: 20px;
	font-weight: 500;
}
.site-btn{
	background: var(--main-color);
	padding: 12px 40px;
	color: var(--white-color);
	text-decoration: none;
	font-weight: 500;
	text-transform: uppercase;
	transition-duration: .3s;
	border: 0;
	border-radius: 50px;
	cursor: pointer;
}
.site-btn:hover{
	background: var(--yellow-color) !important;
	color: var(--white-color) !important;
	transition-duration: .3s;
}
.site-btn.light{
	background: var(--secound-color);
}
.site-btn.white{
	background: var(--white-color);
	color: var(--black-color);
}
.center-btn{
	margin: auto;
	display: inline-block;
	
}
.site-banner .container{
	z-index: 99;
	color: var(--white-color);
}

.site-banner .site-bannerInner ul li{
	position: relative;
	margin-bottom: 5px;
	padding-left: 25px;
}
.site-banner .site-bannerInner ul li:before{
    content: '';
	width: 15px;
    height: 15px;
    background: url(../images/check-mark.png);
	color: var(--yellow-color);
	margin-right: 10px;
	position: absolute;
	background-size: cover;
	left: 0;
	top: 4px;
}

.site-banner .compliance-form{
	width: 35%;
	background: var(--white-color);
	position: relative;
	color: var(--content-color);
	border-radius: 15px;
	padding: 30px;
}
.site-banner .compliance-form h2{
	color: var(--black-color);
	font-size: 24px;
	font-weight: bold;
	
}
.site-banner .compliance-form input{
	width: 100%;
    border: none;
    border-bottom: solid 1px rgba(0,0,0,.15);
    outline: none;
    font-size: 14px;
    color: #777777;
    padding: 12px 0;
    margin-bottom: 10px;
    background: transparent;
}
.site-banner .compliance-form textarea{
	width: 100%;
    border: none;
	height: 80px;
	resize: none;
    border-bottom: solid 1px rgba(0,0,0,.15);
    outline: none;
    font-size: 14px;
    color: #777777;
    padding: 12px;
    margin-bottom: 10px;
    background: transparent;
}
.site-banner .compliance-form .iti{
	width: 100%;
}
.site-banner .compliance-form .iti .iti__selected-flag{
	padding-left: 0;
    background: transparent !important;
}
.iti__country{
	font-size: 12px !important;
}
.site-banner .compliance-form button{
	margin-top: 20px;
}
.site-banner .compliance-form:after {
    position: absolute;
    left: -5%;
    top: 4%;
    content: "";
    height: 100%;
    width: 100%;
    background: #ffffff;
    z-index: -1;
    border-radius: 10px;
    opacity: 0.7;
}
.site-banner .compliance-form .info{
	background: var(--light-bg);
	padding: 5px 15px;
	border-radius: 8px;
	color: var(--content-color);
}

.site-spacing{
	padding: 70px 0;
}

.about-section{
	overflow: hidden;
}
.about-section-img{
	position: absolute;
	right: 0;
	width: 45%;
	top: 0;
	bottom: 0;
	background-size: cover !important;
	background-position: center !important;
}
.about-section:before{
	content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url(../images/about-upper-layer.png);
    background-size: 100% !important;
    background-position: bottom center !important;
    background-repeat: no-repeat;
	opacity: .15;
	transform: rotate(-15deg);
}
.about-section p{
	color: var(--content-color);
}


.core-value{
	background: url(../images/banner.webp);
	background-attachment: fixed;
	background-position: top !important;
	background-size: cover !important;
	overflow: hidden;
}
.core-value:before{
	content: "";
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	left: 0;
	background: rgba(50,38,127,.8);
}
.core-value .container{
	z-index: 99;
}
.core-value .img-grid{
	width: 100%;
}
.core-value .img-grid .large{
	width: 95%;
	height: auto;
	border-radius: 15px;
	border: solid 3px var(--white-color);
}
.core-value .img-grid .small{
	position: absolute;
    right: -65px;
	width: 35%;
	height: auto;
	border-radius: 15px;
	border: solid 3px var(--white-color);
	bottom: 10%;
}
.core-value .site-title{
	color: var(--white-color);
}
.core-value .row{
	margin: 0 -20px;
}
.core-value .col-sm-6{
	padding: 0 20px;
}
.core-value .cv-item{
    float: left;
    width: 100%;
    background: var(--white-color);
    height: calc(100% - 30px);
    margin-bottom: 30px;
    color: var(--black-color);
    padding: 20px;
    border-radius: 15px;
	position: relative;
}
.core-value .cv-item:after {
    position: absolute;
    left: -4%;
    top: 4%;
    content: "";
    height: 100%;
    width: 100%;
    background: #ffffff;
    z-index: -1;
    border-radius: 10px;
    opacity: 0.7;
}
.core-value .cv-item span{
	background: var(--yellow-color);
    width: 50px;
    height: 50px;
    border-radius: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.core-value .cv-item span img{
	width: 25px;
    height: 25px;
	filter: brightness(0) invert(1);
}
.core-value .cv-item b{
	text-align: left;
	width: calc(100% - 50px);
}
.core-value .cv-item p{
	text-align: left;
	color: var(--content-color);
}




.fc-item{
	padding: 20px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	border-radius: 15px;
	background: rgba(255, 179, 65, .1);
	border: solid 1px var(--yellow-color);
}
.fc-item .icon{
	background: var(--yellow-color);
    width: 75px;
    height: 75px;
    border-radius: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
	margin: auto;
}
.fc-item .icon img{
	width: 40px;
    height: 40px;
	filter: brightness(0) invert(1);
}
.fc-item .counter-wrap span{
	font-weight: bold;
	font-size: 34px;
	color: var(--main-color);
}
.fc-item p{
	color: var(--content-color);
}


html{
	overflow-x: hidden;
}
.logos-wrap{
	background: var(--light-bg);
	overflow: hidden;
}
.logos-wrap img{	
	height: 100px;
	width: auto;
	margin: auto;
	display: block;
}


.marquee-wrapper {
	width: 100%;
	overflow: hidden;
	position: relative;
}

.marquee-content {
	display: flex;
	list-style: none;
	padding: 0;
	margin: 0;
	gap: 15px;
	animation: marqueeAnim 10s linear infinite;
	will-change: transform;
}

.marquee-content li {
	background: var(--white-color);
	font-size: 12px;
	padding: 20px 40px;
	border-radius: 15px;
	display: flex;
	align-items: center;
	flex-shrink: 0; /* Safari fix */
}

@keyframes marqueeAnim {
	from {
		transform: translate3d(0,0,0);
	}
	to {
		transform: translate3d(-50%,0,0);
	}
}


.cta-section{
	background: url(../images/banner2.webp);
	background-attachment: fixed;
	background-position: top !important;
	background-size: cover !important;
}
.cta-section:before {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    left: 0;
    background: rgba(50, 38, 127, .8);
}
.cta-section p{
	color: var(--white-color);
}
.cta-section .cta-img{
	height: 100%;
	width: 95%;
	background-size: cover !important;
	background-position: center !important;
	border-radius: calc(var(--site-radius) * 2);
	overflow: hidden;
	border-radius: 15px;
	border: solid 3px var(--white-color);
}
.cta-section .cta-img .cta-img-inner{
    width: 100%;
    height: 100%;
	min-height: 400px;
    background-size: cover !important;
    background-position: center !important;
    transition-duration: var(--duration);
}
.cta-section .cta-img-small{
	height: 47%;
    width: 95%;
    border-radius: calc(var(--site-radius) * 2);
    overflow: hidden;
    margin-bottom: 30px;
	border-radius: 15px;
	border: solid 3px var(--white-color);
}
.cta-section .cta-img-small:last-child{
	margin-bottom: 0;
}
.cta-section .cta-img-small .cta-img-small-inner{
    width: 100%;
    height: 100%;
	min-height: 165px;
    background-size: cover !important;
    background-position: center !important;
    transition-duration: var(--duration);
}

footer{
	background: var(--black-color);
	color: var(--white-color);
	padding-top: 90px;
}
footer .logo{
	filter: brightness(0) invert(1);
	margin: auto;
	display: table;
}
footer p{
	font-size: 14px;
	margin: 0;
}
footer h4{
	font-size: 18px;
	font-weight: bold;
	color: var(--yellow-color);
}
footer .menu li{
	float: left;
	width: 100%;
	color: var(--white-color);
	margin-bottom: 8px;
}
footer .menu li a{
	float: left;
	width: 100%;
	color: var(--white-color);
	text-decoration: none;
	transition-duration: .3s;
}
footer .menu li a:hover{
	transition-duration: .3s;
	color: var(--yellow-color);
}
footer .contact-info{
	display: block;
	text-align: center;
	margin-top: 25px !important;
}
footer .contact-info li{
	display: inline-block;
	position: relative;
	padding-left: 20px;
	float: none;
	width: auto;
	margin-right: 20px;
}
footer .contact-info li i{
	position: absolute;
	left: 0;
	top: 5px;
	color: var(--yellow-color);
}
footer .contact-info img{
	filter: brightness(0) invert(1);
}
footer .contact-info li p{
	margin-bottom: 5px;
}
footer .Cright{
	border-top: solid 1px rgba(255,255,255,.3);
}

.footer-sticky{
	display: none;
}
.thank-you .sub-title{
	font-size: 20px;
	font-weight: 600;
	color: var(--content-color);
}
.thank-you .call-us{
	background: var(--yellow-color);
}
.thank-you .whats-app{
	background: #25D366;
}


@media (min-width: 992px) and (max-width: 1199px) {
	.site-banner .compliance-form{
		width: 45%;
	}
	.cta-section .cta-img .cta-img-inner{
		min-height: 300px;
	}
}

@media (min-width: 768px) and (max-width: 991px) {
	header{
		z-index: 999;
	}
	header .menu-btn{
		display: block;
		float: right;
		width: 50px;
		height: 50px;
		border-radius: 6px;
		background: var(--main-color);
		padding: 12px 10px;
		margin-top: 20px;
	}
	header .menu-btn span{
		float: left;
		width: 100%;
		height: 2px;
		background: #fff;
		margin:0 0 8px 0;
		position: relative;
		transition-duration: .4s;
	}
	header .menu-btn.active span:nth-child(2){
		opacity: 0; 
	}
	header .menu-btn.active span:nth-child(1){
		transform: rotate(45deg);
		top: 12px;
	}
	header .menu-btn.active span:nth-child(3){
		transform: rotate(-45deg);
		top: -8px;
	}
	header nav{
		position: absolute;
		left: 0;
		right: 0;
		background: #f4f4f4;
		top: 100%;
		margin: 0;
		padding: 10px 40px;
		display: none;
	}
	header nav ul{
		width: 100%;
	}
	header nav ul li{
		float: left;
		width: 100%;
		margin: 0;
		color: #000;
	}
	header nav ul li a{
		float: left;
		width: 100%;
		margin: 0;
		color: #000;
		padding: 20px 0 !important;
		height: auto;
		line-height: normal;
	}
	

	.site-banner .compliance-form{
		width: 45%;
	}
	
	.content-section{
		order: 2;		
	}
	.about-section .img-section,
	.core-value .img-section,
	.cta-section .img-section{
		margin-bottom: 30px;
	}
	.about-section .content-section,
	.about-section .img-section,
	.core-value .content-section,
	.core-value .img-section,
	.cta-section .content-section,
	.cta-section .img-section{
		width: 100% !important;
	}
	.about-section .content-section,
	.cta-section .content-section{
		text-align: center !important;
	}
	.about-section .content-section .site-btn{
		float: none !important;
		display: table !important;
		margin: auto;
	}
	
	.about-section {
		padding-top: 0;
	}
	.about-section-img{
		position: relative;
		height: 450px;
		width: 100%;
	}
	
	.cta-section .img-section{
		width: 100% !important;
	}
	.cta-section .cta-img .cta-img-inner{
		min-height: 400px;
	}
	
	.marquee-content li{
		padding: 15px 20px;
	}

}


@media (min-width: 1px) and (max-width: 767px) {
	
	.top-bar ul{
		width: 100%;
		display: flex;
		justify-content: center;
	}
	.top-bar li:first-child{
		border-left: solid 1px rgba(0,0,0,.15);
	}
	.top-bar li{
		margin: 0;
	}
	.top-bar li a{
		padding: 15px 25px !important;
	}
	.top-bar li a span{
		display: none;
	}
	
	header{
		z-index: 999;
	}
	header .logo img{
		height: 30px;
	}
	header .menu-btn{
		display: block;
		float: right;
		width: 40px;
		height: 40px;
		border-radius: 6px;
		background: var(--main-color);
		padding: 12px 10px;
		margin-top: 20px;
	}
	header .menu-btn span{
		float: left;
		width: 100%;
		height: 1px;
		background: #fff;
		margin:0 0 7px 0;
		position: relative;
		transition-duration: .4s;
	}
	header .menu-btn.active span:nth-child(2){
		opacity: 0; 
	}
	header .menu-btn.active span:nth-child(1){
		transform: rotate(45deg);
		top: 12px;
	}
	header .menu-btn.active span:nth-child(3){
		transform: rotate(-45deg);
		top: -8px;
	}
	header nav{
		position: absolute;
		left: 0;
		right: 0;
		background: #f4f4f4;
		top: 100%;
		margin: 0;
		padding: 10px 40px;
		display: none;
	}
	header nav ul{
		width: 100%;
	}
	header nav ul li{
		float: left;
		width: 100%;
		margin: 0;
		color: #000;
	}
	header nav ul li a{
		float: left;
		width: 100%;
		margin: 0;
		color: #000;
		padding: 20px 0 !important;
		height: auto;
		line-height: normal;
	}
	

	.site-banner .compliance-form{
		width: 95%;
		padding: 20px;
	}
	.site-banner .compliance-form h2{
		font-size: 20px;
	}
	.site-banner .compliance-form button{
		font-size: 12px;
		padding-left: 0;
		padding-right: 0;
	}
	.site-banner .compliance-form .info{
		font-size: 12px;
	}
	.site-banner-row{
		display: block !important;
	}
	.site-spacing{
		padding: 30px 0;
	}
	.site-title{
		font-size: 32px;
		text-align: center;
	}
	.site-title-sub,
	.site-bannerInner p{
		text-align: center;
	}
	.site-bannerInner ul{
		float: none;
		display: block;
		text-align: center;
	}
	.site-bannerInner ul li{
		float: none;
		display: inline-block;
		text-align: center;
	}
	.site-bannerInner ul li:before{
		position: relative !important;
	}

	
	.core-value .row{
		margin-right: calc(-.5 * var(--bs-gutter-x));
		margin-left: calc(-.5 * var(--bs-gutter-x));
	}
	.core-value .col-sm-6{
		padding-right: calc(var(--bs-gutter-x) * .5);
		padding-left: calc(var(--bs-gutter-x) * .5);
	}
	.core-value .cv-item:after{
		left: -2%;
		top: 4%;
	}
	
	.content-section{
		order: 2;		
	}
	.about-section .img-section,
	.core-value .img-section,
	.cta-section .img-section{
		margin-bottom: 30px;
	}
	.about-section .content-section,
	.about-section .img-section,
	.core-value .content-section,
	.core-value .img-section,
	.cta-section .content-section,
	.cta-section .img-section,
	.site-bannerInner{
		width: 100% !important;
	}
	.about-section .content-section,
	.cta-section .content-section{
		text-align: center !important;
	}
	.about-section .content-section .site-btn{
		float: none !important;
		display: table !important;
		margin: auto;

	}
	.marquee-content li{
		padding: 15px 20px;
	}
	
	footer{
		padding-top: 50px;
		padding-bottom: 48px;
	}
	
	.footer-sticky{
		display: block;
		position: fixed;
		bottom: 0;
		left: 0;
		width: 100%;
		z-index: 999;
	}
	.footer-sticky li{
		width: 33.3%;
		background: var(--main-color);
	}
	.footer-sticky li a{
		width: 100%;
		text-align: center;
		padding: 15px 0;
		color: #fff;
		text-decoration: none;
		justify-content: center;
		background: var(--main-color);
	}
	.footer-sticky li:nth-child(2), .footer-sticky li:nth-child(2) a{
		background: #7e93cd;
	}
	.footer-sticky li:nth-child(3), .footer-sticky li:nth-child(3) a{
		background: #25D366;
	}
	.footer-sticky li img{
		filter: brightness(0) invert(1);
	}
	
	.about-section {
		padding-top: 0;
	}
	.about-section-img{
		position: relative;
		height: 300px;
		width: 100%;
	}
	
	.cta-section .cta-img{
		width: 100%;
	}
	.cta-section .img-section{
		width: 100% !important;
	}
	.cta-section .cta-img .cta-img-inner{
		min-height: 250px;
	}
	
	.cta-section .cta-img-small-wrap{
		display: none;
	}
	.cta-section .content-section{
		padding-right: calc(var(--bs-gutter-x) * .5) !important;
	}
	
	.thank-you .btn-action{
		display: block !important;
	}
	.thank-you .btn-action{
		display: block !important;
	}
	.thank-you .btn-action a{
		margin: 0 auto 10px auto;
		display: table;
	}	
	.thank-you .btn-action a:last-child{
		margin: 0 auto 0 auto;
	}

}
