@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&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');

html {
	font-size: 16px;
}
body {
	position: relative;
	background: #fff;
	font-family: "Plus Jakarta Sans", sans-serif;
}
:root {
	--white: #ffffff;
	--black: #000;
	--theme-color: #001650;
	--secondary-color: #f57423;
	--para-color: #525252;
	--head-color: #13131A;
}
::selection {
	background: var(--theme-color);
	color: var(--white);
}
::-webkit-scrollbar {
	width: 5px;
}
::-webkit-scrollbar-track {
	background: rgb(0 0 0 / 0%);
}
::-webkit-scrollbar-thumb {
	background: rgb(0 0 0 / 0.5);
}
::-webkit-scrollbar-thumb:hover {
	background: rgb(0 0 0 / 0.8);
}
p {
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.67;
	margin-bottom: 2rem;
	color: var(--para-color);
}
h1, h2, h3, h4, h5, h6 { font-family: "Roboto", system-ui; }
h2{ font-size: 3.438rem;  }
.img-auto {
	display: block;
	max-width: 100%;
	margin: 0 auto;
}
a, button {
	text-decoration: none !important;
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
}
a:hover, button:hover {
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
}
ul {
	padding: 0;
	margin: 0;
	list-style: none;
}
figure {
	margin: 0;
}
section {
	padding: 5rem 0;
	position: relative;
}
.swiper-button-next, .swiper-button-prev {
	border: 1px solid #fff;
	width: 50px;
	height: 50px;
	border-radius: 100%;
}
.swiper-button-next:after, .swiper-button-prev:after {
	font-size: 14px;
	color: var(--white);
}
.swiper-pagination-bullet {
	width: 15px;
	height: 15px;
	transition: all 0.3s ease;
	border-radius: 20px;
}
.swiper-pagination-bullet-active {
	width: 25px;
}
.swiper-slide-shadow-left {
	display: none;
}
.swiper-slide-shadow-right {
	display: none;
}
.swiper-pagination-bullet-active {
	background-image: var(--primary);
}
/* loader */

.loader-wrap span {
	overflow: hidden;
	display: block;
}
.loader-wrap {
	position: fixed;
	z-index: 9999;
	height: 100vh;
	width: 100vw;
	display: flex;
	overflow: hidden;
	align-items: center;
	justify-content: center;
	background: #fff;
}
.loader-wrap svg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100vw;
	height: 110vh;
	fill: var(--white);
}
.loader-wrap .loader-wrap-heading h2 {
	font-size: 50px;
	z-index: 20;
	color: #fff;
	text-transform: uppercase;
}
.loader-wrap img{ width: 350px; }

body:not(.home) .loader-wrap {
	display: none;
}
/* loader */

/* Cursor Start */

.mouse-cursor {
	position: fixed;
	left: 0;
	top: 0;
	pointer-events: none;
	border-radius: 50%;
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
	visibility: hidden;
}
.cursor-inner {
	margin-left: 2px;
	margin-top: 2px;
	width: 20px;
	height: 20px;
	z-index: 10000001;
	background-color: var(--theme-color);
	-webkit-transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
	-o-transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
	transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
}
.cursor-inner:before {
	content: "Click Me";
	width: 100%;
	height: 100%;
	position: absolute;
	font-size: 1rem;
	top: 8px;
	left: 2px;
	display: flex;
	border-radius: 100%;
	opacity: 0;
	color: #fff;
	text-align: center;
	justify-content: center;
	align-items: center;
	-webkit-transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
	-o-transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
	transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
}
.cursor-inner.active::before {
	opacity: 1;
	top: 0;
}
.cursor-inner.cursor-hover {
	margin-left: -10px;
	margin-top: -10px;
	width: 50px;
	height: 50px;
	background-color: var(--theme-color);
	opacity: 0.3;
}
.cursor-inner.cursor-hover.active {
	margin-left: -40px;
	margin-top: -40px;
	width: 120px;
	height: 120px;
	opacity: 1;
	background-color: #53be8470;
}
/* Cursor End */

/* btn css */

.themeBtn {
	background: var(--theme-color);
	padding: 12px 40px;
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.63;
	color: var(--white);
	display: inline-block;
	border: none;
	border-radius: 50px;
	overflow: hidden;
	position: relative;
	z-index: 1;
	text-transform: capitalize;
	text-align: center;
	cursor: pointer;
	transition: color 0.3s ease, transform 0.3s ease;
}
.themeBtn:before, .themeBtn:after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	border-radius: 50px;
	transition: transform 0.4s ease, background-color 0.4s ease;
}
.themeBtn:before {
	background: var(--secondary-color);
	transform: scaleX(0);
	transform-origin: right center;
}
.themeBtn:after {
	background: var(--secondary-color);
	transform: scaleX(0);
	transform-origin: left center;
}
.themeBtn:hover {
	color: var(--white);
	transform: scale(1.05);
}
.themeBtn:hover:before {
	transform: scaleX(1);
}
.themeBtn:hover:after {
	transform: scaleX(1);
}
.themeBtn.orangeBtn{ background: var(--secondary-color); }
.themeBtn.whiteBtn{ background: var(--white); color:var(--black) }
.themeBtn.whiteBtn:hover{  color:var(--white) }

/* btn css */

.reveal {
	visibility: hidden;
	position: relative;
	max-width: 100%;
	overflow: hidden;
}
/* .reveal img {
	width: 100%;
} */
/* Begin: Header CSS */

.smallhead{ font-size: 1.125rem; padding: 8px 20px; color: var(--theme-color); border: 1px solid var(--theme-color); border-radius: 30px; display: inline-block; }

/* Header Css */

.main-header {
	padding: 0px 0;
	position: relative;
	z-index: 1;
}
/* .main-header:before {
	content: '';
	position: absolute;
	top: 0;
	width: 100%;
	background-image: linear-gradient(to bottom, #000 0%, rgba(0, 0, 0, 0) 100%);
	height: 100%;
	z-index: -1;
} */
header {
	position: relative;
	left: 0;
	right: 0;
	top: 0;
	z-index: 99;
	width: 100%;
	transition: all 0.3s ease;
}


.topBar{ background: var(--secondary-color);  }
.topBar i{ margin-right: 10px; }
.topBar .left{ display: flex; align-items: center; padding-right:2rem; }
.topBar .left p{ color: var(--white); margin-bottom: 0; padding: 1rem 2rem; padding-left: 0;  }
.topBar .left p+p{ padding-left: 2rem; border-left: 1px solid #d7d7d714; }
.topBar .right{ display: flex; align-items: center; }
.topBar .right a,.topBar .left a{ color: var(--white); }
.socialBtns{display: flex;align-items: center;justify-content: center;margin-left: 2rem;border-left: 1px solid #d7d7d714;padding: 1rem 2rem;gap: 10px;}
.socialBtns a{ margin: 0; }
.socialBtns a i{ font-size: 1rem; margin: 0; }
.socialBtns a svg{ width: 16px; fill: var(--white); margin: 0;  }

.languageSelector {display: inline-flex;position: relative;align-items: center;}
.languageSelector a{
	width: 46px;
	height: 46px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 8px;
	color: #1679D6;
	background: #E1EAFF;
	border-radius: 50%;
	margin-bottom: 3px;
	margin-left: 24px;
	font-size: 16px;
	font-weight: 500;
	}
.languageSelector .toggleLanguage{ display: none; position: absolute; top: 100%; }
.languageSelector:hover .languageSelector { display: block; }

.languageSelector {
	position: relative;
	display: inline-block;
}
.toggleLanguage {
	display: none;
	position: absolute;
	z-index: 1;
}
.toggleLanguage a {
	color: black;
	padding: 8px 12px;
	text-decoration: none;
	display: block;
}
.toggleLanguage a:hover {
	background-color: #f1f1f1;
}
.languageSelector:hover .toggleLanguage {
	display: block;
}


/* Hamburger Menu */

.menu-Bar {
	width: 30px;
	height: 20px;
	cursor: pointer;
	position: absolute;
	right: 15px;
	top: 0;
	bottom: 0px;
	margin: auto;
	z-index: 22;
	display: none;
}
.menu-Bar span {
	display: block;
	height: 4px;
	width: 100%;
	background: var(--theme-color);
	position: absolute;
	transition: 0.6s all;
	border-radius: 100px;
}
.menu-Bar span:nth-child(1) {
	top: 0;
}
.menu-Bar span:nth-child(2) {
	top: 8px;
	transform-origin: left;
}
.menu-Bar span:nth-child(3) {
	top: 16px;
}
.menu-Bar.open span {
	background: #b70404;
}
.menu-Bar.open span:nth-child(1) {
	transform: rotate(45deg);
	top: 12px;
	transform-origin: right-center;
}
.menu-Bar.open span:nth-child(2) {
	width: 0;
	opacity: 0;
}
.menu-Bar.open span:nth-child(3) {
	transform: rotate(-45deg);
	top: 12px;
	transform-origin: right-center;
}
/* Menu Css */

.menuWrap .menu {
	display: flex;
	align-items: center;
	justify-content: end;
	flex-direction: initial;
	gap: 3rem;
}
.main_nav {
	background: var(--theme-color);
}
.menu {
	font-size: 0px;
	display: inline-block;
	vertical-align: middle;
}
.menu li {
	display: inline-block;
	vertical-align: middle;
	position: relative;
}
.menu li:last-child {
	padding-right: 0;
}
.menu li a {
	display: block;
	font-size: 1.125rem;
	color: #959595;
	font-weight: normal;
	line-height: 1.56;
	display: block;
	font-weight: 300;
	font-family: "Roboto", system-ui;
	font-weight: 500;
}

/* .menu > li:hover > a, */

.menu>li.active>a, .menu>li:hover>a {
	color: var(--theme-color);
	
}
.menu li a.themeBtn{ color: var(--white); }
/* Menu Dropdown CSS */

.has-child, .menu-item-has-children {
	position: relative;
	z-index: 1;
}
.dropdown, .sub-menu {
	position: absolute;
	background: #1c7347;
	border-radius: 0px 0px 10px 10px;
	top: 100%;
	width: 190px;
	box-shadow: 0 10px 20px rgb(0 0 0 / 10%), 0 6px 6px rgb(0 0 0 / 10%);
	display: none;
}
.dropdown .dropdown, .sub-menu .sub-menu {
	left: 100%;
	top: 0;
}
.dropdown ul li a, .sub-menu li a {
	font-size: 16px;
	line-height: 30px;
	color: #fff;
	padding: 10px 20px;
}
.dropdown li:not(:last-child), .sub-menu li:not(:last-child) {
	border-bottom: 1px solid #ddd;
}
.chev.rotate {
	transform: rotate(180deg);
}
.chev {
	transition: .5s ease;
}
/* Dropdown CSS*/

/* END: Header */

.main-Banner {
	display: flex;
	align-items: center;
	background-repeat: no-repeat;
	background-size: cover;
	padding: 8rem 0;
}
.main-Banner p{ color: var(--para-color); }
.innerBanner { height: 50vh; padding: 5rem 0; background-position: center; }
.bannertext h5{ margin-bottom: 2rem;font-size: 1.75rem; }
.bannertext h1 {
	font-size: 3.225rem;
	font-weight: 600;
	color: var(--head-color);
}
.bannertext h1 span{position: relative;}
.bannertext h1 span:before{ content: ''; position: absolute; left: -10px; top: -22px; background: url(../images/mix/head-pattren.png) no-repeat; 
	width: 100%; height: 110px; background-size: contain; z-index: -1; }

.stepsSec{ background: var(--theme-color); padding: 0;position:relative; }
.stepsSec:before{
	    content: '';
    position: absolute;
    left: 0;
    top: 0;
    background: url(../images/mix/counterbg.png) no-repeat;
    background-size: cover;
    width: 100%;
    height: 100%;
}
.benefitsflex{ display: flex; position: relative; } 
.benefitsflex .posset{ position: absolute; top: -52px; background: var(--secondary-color); padding: 1rem 2rem; color: var(--white);
	 border-top-left-radius: 10px; border-top-right-radius: 10px; } 
.benefitsflex .posset h3{ font-size: 1.125rem; margin-bottom: 0; }
/* .stepsSec .items:first-child{ padding-left: 0; } */
/* .stepsSec .items:last-child{ padding-right: 0; } */
.stepsSec .items{padding: 2rem 2rem;display: flex;gap: 10px;width: 20%;}
.stepsSec .items .icons{ display: none; }
.stepsSec .items .cont h3{color: var(--white);font-size: 1.375rem;font-weight: 600;margin-bottom: 1rem;}
.stepsSec .items .cont p{ color: var(--white); margin-bottom: 0; font-size: 1rem; }
/* .stepsSec .items:nth-child(2n){ background: var(--theme-color); } */


.wrapImg{ position: relative; }
.wrapImg .imgBx { max-width: 600px; }
.wrapImg .imgBx.text-right{ margin-left: auto; }
.wrapImg img{ border-radius: 18px; }
.wrapImg:before{ content: '';position: absolute;left: -3rem;top: -3rem;background: url(../images/mix/dot.png) no-repeat;width: 155px;height: 131px;z-index: -1;}
.wrapImg .posImg{ position: absolute; bottom: -5rem; right: -5rem; width: 300px; }
.aboutSec h2{ font-size: 3.338rem; font-weight: 600; margin-bottom: 1.5rem; }

.counterSec .Wrap{background: var(--theme-color);border-radius: 24px;overflow: hidden;position: relative;}
.counterSec .Wrap:before{content: '';position: absolute;left: 0;top: 0;background: url(../images/mix/counterbg.png) no-repeat;background-size: cover;width: 100%;height: 100%;}
.counterSec .items{ padding: 2rem 1rem;text-align: center;}
.counterSec .items h2{ color: var(--white); font-size: 4.688rem; margin-bottom: 0px;}
.counterSec .items p{ color: var(--white); font-size: 1rem; color: #faf9f994; font-weight: 500; margin-bottom: 0; }
.counterSec .col-md-3:nth-child(1) .items:before{ display: none; }
.counterSec .items:before{ content: ''; position: absolute; left: 0; width: 2px; height: 40%; top: 0; bottom: 0; margin: auto; background: #ffffff1c; }

.serviceSec{ background: rgb(4 59 178 / 10%); }
.serviceSec .items{ text-align: center; }
.serviceSec .items img{ border-radius: 42px; width: 100%; }
.serviceSec .items figure{ margin-bottom: 1.5rem; }
.serviceSec .items h3{ color: #313131; font-size: 1.875rem; font-weight: 600; margin-bottom: 0; }
.serviceSec .items p{ margin-bottom: 1rem; }
.serviceSec .items a.themeBtn.orangeBtn{ background: var(--secondary-color); }

.whychooseSec{ background: var(--theme-color); }
.whychooseSec .smallhead{ color: var(--white); border-color: var(--white); }
.whychooseSec p{ color: var(--white); font-size: 2.5rem; font-weight: 600; }

.lists { width: 100%; }
.lists li{color: var(--white);font-size: 1rem;width: 100%;padding: 10px 0;}
.lists li i{ margin-right: 10px; }

.whychooseSec { padding-bottom: 10rem; }
.whychooseSec .wrapImg:before{left: initial;top: initial;bottom: -50px;right: 5rem;background: url(../images/mix/dots2.png)no-repeat;width: 157px;height: 30px;z-index: 1;}
.whychooseSec .wrapImg .posImg{ right: initial; left: 0; }
.whychooseSec .wrapImg img{ border-radius: 10px; }

.testimonailSec .items{background: #eff3ff;padding: 2rem 3rem;text-align: center;border-radius: 20px;transition: all 0.5s ease;margin-bottom: 2.5rem;border-radius: 100%;}
.testimonailSec .items .ratings i {color: #f57423; font-size: 1.25rem; padding: 0 2px;}
.testimonailSec .items p {margin: 0;}
.testimonailSec .items .ratings { margin: 1.5rem 0;}
.testimonailSec .items .quotes {font-size: 2.25rem; color: #B6BAB7;margin-top: 1rem;}
.testimonailSec .items h3 { font-size: 25px; margin-top: 1.25rem;}
.testimonailSec .items:hover {transform: scale(1.03); background: #fff; box-shadow: 0 25.5px 54.4px 0 rgba(0, 0, 0, 0.11);}
.testimonailSec .items:hover .ratings i{color: var(--theme-color);}

.trustedPartners { text-align: center; }
.trustedPartners h2{ margin-bottom: 3rem; }
.trustedPartners .items{ background: #F5F5F5; padding: 1rem 1rem; display: flex; align-items: center; justify-content: center; min-height: 172px; transition: all 0.3s ease; }
.trustedPartners .items:hover { background: var(--white); box-shadow: 0 25.5px 54.4px 0 rgba(0, 0, 0, 0.11);  }
.trustedPartners .items img{ transition: all 0.3s ease; }
.trustedPartners .items:hover img{ transform: scale(1.1); }

.ctaSec { padding: 0; }
.ctaSec .wrapCta{ background: url(../images/bg/ctaBg.png) no-repeat #f57423; background-size: cover; border-radius: 30px; text-align: center; padding: 5rem 5rem; }
.ctaSec .wrapCta h2,
.ctaSec .wrapCta p{ color: var(--white); }


footer{ padding: 5rem 0 0; }
footer .flogo{ margin-bottom: 1rem; display: inline-block; } 
footer .contlist li{padding: 4px 0;padding-left: 1.8rem;position: relative;}
footer .contlist li a{ color: var(--para-color); font-size: 1rem; }
footer .contlist li i{position: absolute;left: 0;top: 7px;font-size: 1.2rem;}
footer p,
footer a{ color: #737373; font-size: 1rem; }
footer a:hover{ color: var(--secondary-color); }
footer p{ margin-bottom: 1rem; }

footer .links li{ padding: 3px 0; }
footer .socialBtns{display: flex;align-items: center;margin-left: 0;justify-content: flex-start;padding: 0;margin-top: 1rem;}
footer .socialBtns a{ width: 41px; height: 41px; border-radius: 100%; border: 1px solid #E5E5E5; display: flex; align-items: center; justify-content: center; }
footer .socialBtns a i{ color: #0D062D; }
footer .socialBtns a svg{ fill: #0D062D; }
footer .socialBtns a svg,
footer .socialBtns a i{ margin-right: 0; }

footer .socialBtns a:hover{ background: var(--secondary-color); }
footer .socialBtns a:hover i{ color: var(--white); }
footer .socialBtns a:hover svg{ fill:var(--white) }

footer form input{ padding: 10px 20px; border: 1px solid #B5B8B6; border-radius: 30px; max-width: 300px; width: 100%; margin-right: 10px; } 

.copyRight{ padding: 1rem 0; border-top: 1px solid #d3d3d3; margin-top: 3rem; text-align: center; }
.copyRight p{ margin-bottom: 0; color: #737373; font-size: 1rem; }

.serviceSecs { background: rgb(4 59 178 / 10%); }
.serviceSecs .contBx{ padding: 2rem 3rem; background: var(--white); border-radius: 30px; width: 100%; height: 100%; display: flex; align-items: center; flex-flow: wrap; }
.serviceSecs .contBx p{ margin-bottom: 1rem; }
.serviceSecs .contBx li{ color: var(--para-color); padding: 4px 0; }

.contactSec{  background: rgb(4 59 178 / 10%); }
.gmap{ border: 10px solid var(--white); border-radius: 10px; margin-bottom: 2rem; }

.contactSec .contdetails p{ margin-bottom: 0; }
.contactSec .contdetails li{ padding: 5px 0; }
.contactSec .contdetails a{ font-size: 1rem; color: var(--para-color); margin-bottom: 1rem; }
.contForm { background: var(--white); border-radius: 10px; padding: 3rem 3rem; }
.contForm .field{ width: 100%; padding: 1rem 0; }
.contForm .field label{ display: block; color: var(--para-color); font-size: 1rem; }
.contForm .field input,
.contForm .field textarea{ width: 100%; border: 1px solid #E7E7E7; padding: 15px 20px; border-radius: 10px; }
.contForm .policy{ padding: 0 0 1rem; }
.contForm .policy label{ position: relative; padding-left: 1.5rem; }
.contForm .policy input{ position: absolute; left: 0; top: 5px; }

.counternewSec{ min-height: initial; }
.counternewSec .allcounters{ display: flex; }
.counternewSec .items{width: 25%;text-align: center;}
.counternewSec .items .circle-counter{
	background: url(../images/mix/counters-bg.webp) no-repeat;
	width: 270px;
	height: 270px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-size: 100% 100%;
	margin: auto auto 1rem;
	}
.counternewSec .items .circle-counter h2{color: var(--theme-color);font-size: 5rem;}

.healthForms label { margin-bottom: 10px; font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    text-align: left; }
.healthForms label span{ display: block; font-size: 12px; }
.healthForms .fields { width: 100%; }
.healthForms .fields input,
.healthForms .fields select{ width: 100%; outline: none; padding: 10px 10px; margin-bottom: 1rem; }
.healthForms p{ font-size: 12px; margin-bottom: unset;}

.logo img,
.flogo img{ width: 300px; }