@import url('https://fonts.googleapis.com/css2?family=Kumbh+Sans:wght@100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
html {
	font-size: 16px;
}
body {
	position: relative;
	background: #fff;
	font-family: "Montserrat", sans-serif;
	overflow-x: hidden;
}
:root {
	--white: #ffffff;
	--black: #000;
	--theme-color: #014126;
	--primary:#333333;
	--para-color: #5a5a5a;
}
::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: 1.125rem;
	font-weight: 400;
	line-height: 1.8;
	margin-bottom: 2rem;
	color: #6C6C6C;
}
h1, h2, h3, h4, h5, h6 {  font-family: "Kumbh Sans", sans-serif;}
.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: transparent;
}
.loader-wrap svg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100vw;
	height: 110vh;
	fill: var(--theme-color);
}
.loader-wrap .loader-wrap-heading h2 {
	font-size: 50px;
	z-index: 20;
	color: #fff;
	text-transform: uppercase;
}
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: 15px 35px;
	font-size: 1rem;
	font-weight: 600;
	color: var(--white);
	display: inline-block;
	border: none;
	overflow: hidden;
	position: relative;
	z-index: 1;
	text-transform: uppercase;
	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: 0;
	transition: transform 0.4s ease, background-color 0.4s ease;
}
.themeBtn:before {
	background: #437a09;
	transform: scaleX(0);
	transform-origin: right center;
}
.themeBtn:after {
	background: var(--primary);
	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);
}
/* btn css */

.reveal {
	visibility: hidden;
	position: relative;
	max-width: 100%;
	overflow: hidden;
}
.reveal img {
	width: 100%;
}
/* Begin: Header CSS */

/* Header Css */

.main-header {
	padding: 1rem 0;
	position: relative;
	z-index: 1;
}
.main-header:before {
	content: none;
	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;
	border-top: 5px solid var(--theme-color);
}
/* 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;
	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 {
	font-size: 1.125rem;
	color: var(--primary);
	display: block;
	font-weight: 600;
}
/* .menu > li:hover > a, */

.menu>li.active>a, .menu>li:hover>a {
	color: var(--theme-color);
}
/* 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*/
.menuWrap {
    display: flex;
    align-items: center;
    gap: 3rem;
    justify-content: end;
}
/* END: Header */

.main-Banner {
	height: 100vh;
	display: flex;
	align-items: center;
}
.innerBanner {
	height: 50vh;
	padding-top: 9rem;
}
.bannertext h1 {
	font-size: 4.75rem;
	text-transform: capitalize;
	font-weight: 700;
	color: var(--white);
}

.themeBtn i {
    padding-right: 5px;
}
.bannertext h6 {
    color: #D77B1A;
    text-transform: uppercase;
    font-size: 1.125rem;
    font-weight: 700;
}

.bannertext p {
    font-size: 1.125rem;
    color: #fff;
}

.bannertext {
    text-align: center;
    background: #00000099;
    padding: 6rem 8rem;
    backdrop-filter: blur(4px);
}

.btnSec {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.themeBtnDark {
    background: var(--primary);
}

.themeBtnDark::after {
    background: var(--theme-color);
}

.boxesSec {
    background: #f3f5ed;
	padding-top: 0;
}

.boxesSec .whiteBox {
    background: #fff;
    padding: 3rem;
    height: 340px;
    margin-top: -5rem;
    transition: all 0.5s ease;
}

.boxesSec .whiteBox h3 {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--primary);
    margin: 1.5rem 0 1rem;
}

.boxesSec .whiteBox p {
    margin: 0;
}

.boxesSec h5 {
    font-size: 2.35rem;
    font-style: italic;
    font-weight: 300;
}

.boxesSec .row + .row {
    margin: 5rem 0 0;
}
.boxesSec .whiteBox:hover {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 0 30px #00000021;
}

h6 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--theme-color);
}

h4 {
    font-size: 3.35rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
}

.numAni {
    border-bottom: 2px solid #00000029;
    text-align: center;
    padding: 1rem;
}

.numBox {
    display: flex;
    justify-content: center;
    font-size: 3.25rem;
    font-weight: 600;
}

.numAni h3 {
    font-size: 1.125rem;
}

.serviceSec:before{
	content: '';
	position: absolute;
	inset: 0;
	background: url(../images/bg/1.png) bottom center /cover  no-repeat;
	height: 560px;
	width: 100%;
}
.serviceSec h6 span{
	color: #000;
}
.serviceSec h6 a{
	color: var(--theme-color);
}
.serviceSec h6 a:hover{
	color: var(--primary);
}
.serBox img {
    width: 100%;
    transition: all 0.5s ease;
}

.serBox h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.serBox p {
    font-size: 1rem;
    height: 90px;
}

.serBox a {
    color: var(--theme-color);
    font-size: 1.25rem;
    font-weight: 600;
    padding: 10px 1.5rem;
    border-bottom: 2px solid var(--theme-color);
}
.serBox:hover a{
	color: var(--primary);
	border-color: var(--primary);
}
.serBox {
    text-align: center;
    margin-top: 3rem;
}

.serContnt {
    border: 2px solid #0000002b;
    border-top: 0;
    padding: 2rem 3rem;
    background: #fff;
}

.serBox:hover img {
    transform: scale(1.08);
}

.serBox figure {
    overflow: hidden;
}

.betterBox {
    display: flex;
    align-items: start;
    gap: 2rem;
    margin: 8rem 0;
}

.betterBox .iconBox i {
    background: var(--theme-color);
    width: 90px;
    height: 90px;
    font-size: 2.75rem;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
}

.betterContnt h3 {
    font-size: 1.55rem;
    font-weight: 600;
}

.betterContnt p {
    font-size: 1rem;
}

.betterRight {
    flex-direction: row-reverse;
}

.betterRight .betterContnt {
    text-align: right;
}

.reviewSec{
	background: url(../images/bg/2.png) bottom center /cover fixed no-repeat;
}
.reviewSlide {
    background: #fff;
    padding: 2rem;
    border-radius: 5px;
}

.reviewBox .userBox {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.reviewBox .userBox h5 {
    color: #000;
    font-weight: 600;
    line-height: 1.5;
    margin: 0;
}

.reviewBox .userBox h5 span {
    display: flex;
    font-size: 14px;
    font-weight: 400;
}

.reviewBox .quote {
    position: absolute;
    right: 1rem;
    z-index: 1;
    bottom: 0;
    font-size: 3rem;
    color: #8ec0384f;
}

.reviewBox {
    position: relative;
}

.reviewBox p {
    margin: 2rem 0 3rem;
}


.healtBox img {
    width: 100%;
}

.healtBox {
    position: relative;
    overflow: hidden;
}

.healtBox .healthContnt {
    position: absolute;
    bottom: -16rem;
    text-align: center;
    padding: 2rem 3rem;
    transition: all 0.8s ease;
}

.healtBox .healthContnt h3 {
    font-size: 1.45rem;
    font-weight: 600;
    color: #fff;
}

.healtBox .healthContnt p {
    font-size: 15px;
    color: #fff;
}

.healtBox:hover .healthContnt {
    bottom: 0;
}

.healtBox:before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(5deg, #8ec038, transparent);
}

.healtBox .healthContnt .themeBtn {
    background: var(--primary);
}

.appSec{
	background: url(../images/bg/3.png) bottom center /cover fixed no-repeat;
	padding-bottom: 0;
}
.appSec *{
	color: #fff;
}
.appSec h5 {
    font-size: 3rem;
    font-weight: 700;
    opacity: 0.4;
}

.appSec h3 {
    margin-bottom: 1rem;
}


/* accordion css */
.accordian {
	margin-top: 2rem;
  }
  .accordian li {
	margin-bottom: 25px;
	border: 1px solid #dedede87;
	border-radius: 12px;
  }
  
  .accordian li h4 {
	color: #041e0c;
	font-size: 1.25rem;
	padding: 1.4rem;
	position: relative;
	cursor: pointer;
	background-color: #f8f8f8;
	border-radius: 12px;
	margin: 0;
	line-height: 1.3;
  }
  
  .accordian h4::after {
	content: "\f067";
	font-family: "Font Awesome 5 Pro";
	font-size: 20px;
	position: absolute;
	top: 25px;
	right: 35px;
	line-height: normal;
	transition: all 0.3s ease-in-out;
  }
  
  .accordian p {
	margin: 0;
	color: #869289;
	font-weight: 400;
	margin-bottom: 10px;
	font-size: 1rem;
  }
  
  .accordian li > div {
	display: none;
	background: #fff;
	border-radius: 0 0 10px 10px;
	padding: 1rem;
  }
  .accordian li.active h4::after {
	content: "\f068";
  }
  .accordian li.active {
	border-color: var(--theme-color);
	background: var(--theme-color);
  }
  
  .accordian li.active h4 {
	color: var(--theme-color);
	background: var(--theme-color);
	color: #fff;
  }
  .accordian li.active > div {
	background: var(--theme-color);
  }
  
  .accordian li.active > div p {
	color: #fff;
  }
  /* accordian End */

  .videoSec{
	background: url(../images/bg/4.png) bottom center /cover fixed no-repeat;
  }

  .videoSec *{
	color: #fff;
  }
  .playBtn {
    border: 2px solid #fff;
    width: 100px;
    height: 100px;
    font-size: 1.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    margin: 0 auto 2rem;
}


footer {
    background: var(--primary);
    padding-top: 4rem;
}

footer h3 {
    font-size: 1.45rem;
    color: #fff;
    margin-bottom: 1rem;
}

footer * {
    color: #a2a2a2;
}

footer p {
    font-size: 1rem;
    margin: 2rem 0;
}

footer ul li a {
    font-size: 15px;
    padding: 7px 0;
    display: inline-block;
}

footer ul li a i {
    color: var(--theme-color);
    padding-right: 5px;
}

footer ul li a:hover {
    color: var(--white);
}

.copyRight {
    border-top: 1px solid #8ec0384d;
    padding: 1rem 0;
}

.copyRight p {
    margin: 0;
}



.innerBanner .bannertext {
    padding: 0;
    background: transparent;
    text-align: left;
    backdrop-filter: none;
}

.innerBanner .bannertext ul {
    display: flex;
    gap: 10px;
    margin: 1rem 0;
}

.innerBanner .bannertext ul li, .innerBanner .bannertext ul li a {
    color: #fff;
}

.abtSec h5 {
    color: #7a7a7a;
    font-size: 2rem;
    font-weight: 600;
}

.abtSec ul {
    margin: 2rem 0;
    list-style-type: disc;
    padding-left: 1rem;
}

.abtSec ul li {
    font-size: 1.125rem;
    font-weight: 400;
    color: #6C6C6C;
}

.innerBanner .bannertext h1 {
    font-size: 3.25rem;
}

.serInner figure{
margin: 1rem 0;
}

.infoBox {
	background: #F4F7FC;
	padding: 3rem;
	border-radius: 20px;
	text-align: center;
  }
  
  .infoBox i {
	font-size: 4rem;
	display: block;
	margin-bottom: 1rem;
  }
  
  .infoBox h6  , .infoBox a{
	font-size: 1.75rem;
	font-family: "Jost", sans-serif;
	font-weight: 600;
	margin-top: 10px;
	color: #000;
  }
  
  .infoBox h6 span , .infoBox a span {
	display: block;
	font-size: 16px;
	font-weight: 400;
  }
  
  .contactForm h4 {
	font-size: 60px;
	margin-top: 4rem;
  }
  
  .contactForm form input , .contactForm form textarea {
	width: 100%;
	height: 3.5rem;
	padding: 1rem;
	border: none;
	border-bottom: 2px solid #b3b3b3;
	margin: 10px 0;
  }
  
  .contactForm form textarea {
	height: 150px;
  }