/* ----------------------------------------------------------------------------------------
* Author        : Awaiken
* Template Name : Sahaj Aarogyam
* File          : CSS File
* Version       : 1.0
* ---------------------------------------------------------------------------------------- */
/* INDEX
----------------------------------------------------------------------------------------
01. Global Variables
02. General css
03. Header css
04. Hero css
05. About Us css
06. Our Services css
07. What We Do css
08. Why Choose Us css
09. Our Benefits css
10. Intro Video css
11. How It Work css
12. Our Features css
13. Our Pricing css
14. Scrolling Ticker css
15. Our Testimonial css
16. Our FAQs css
17. Our Blog css
18. Footer css
19. About Us Page css
20. Services Page css
21. Service Single css
22. Blog Archive css
23. Blog Single css
24. Team Page css
25. Team Single css
26. Pricing Page css
27. Testimonials Page css
28. Image Gallery css
29. Video Gallery css
30. FAQs Page css
31. Contact Us Page css
32. Book Appointment css
33. 404 Error Page css
34. Responsive css
-------------------------------------------------------------------------------------- */

/************************************/
/*** 	 01. Global Variables	  ***/
/************************************/

:root{
	--primary-color				: #023320;
	--secondary-color			: #FAF9FA;
	--text-color				: #9C9C9C;
	--accent-color				: #023320;
	--accent-secondary-color	: #74A42A;
	--white-color				: #FFFFFF;
	--divider-color				: #0233201A;
	--dark-divider-color		: #FFFFFF1A;
	--error-color				: rgb(230, 87, 87);
	--default-font				: "Sora", sans-serif;
	--accent-font				: "Marcellus", serif;
}


/************************************/
/*** 	   02. General css		  ***/
/************************************/

body{
	position: relative;
	font-family: var(--default-font);
	font-size: 16px;
	font-weight: 400;
	line-height: 1em;
	color: var(--text-color);
	background: var(--secondary-color);
}

::-webkit-scrollbar-track{
	background-color: var(--secondary-color);
	border-left: 1px solid var(--secondary-color);
}
::-webkit-scrollbar{
	width: 7px;
	background-color: var(--secondary-color);
}
::-webkit-scrollbar-thumb{
	background: var(--accent-color);
}

::selection{
	color: var(--primary-color);
	background-color: var(--secondary-color);
	filter: invert(1);
}

p{
	line-height: 1.6em;
	margin-bottom: 1.5em;
}

h1,
h2,
h3,
h4,
h5,
h6{
	margin :0;
	font-family: var(--accent-font);
	font-weight: 400;
	line-height: 1.2em;
	color: var(--primary-color);
}

figure{
	margin: 0;
}

img{
	max-width: 100%;
}

a{
	text-decoration: none;
}

a:hover{
	text-decoration: none;
	outline: 0;
}

a:focus{
	text-decoration: none;
	outline: 0;
}

html,
body{
	width: 100%;
	overflow-x: clip;
}

.container{
	max-width: 1300px;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl{
	position: relative;
    padding-right: 15px;
    padding-left: 15px;
	z-index: 1;
}

.image-anime{
	position: relative;
	overflow: hidden;
}

.image-anime:after{
	content: "";
	position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255,255,255,.3);
    transform: translate(-50%,-50%) rotate(-45deg);
    z-index: 1;
}

.image-anime:hover:after{
    height: 250%;
    transition: all 600ms linear;
    background-color: transparent;
}

.reveal{
	position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    visibility: hidden;
    overflow: hidden;
}

.reveal img{
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transform-origin: left;
    transform-origin: left;
}

.row{
    margin-right: -15px;
    margin-left: -15px;
}

.row > *{
	padding-right: 15px;
	padding-left: 15px;
}

.row.no-gutters{
    margin-right: 0px;
    margin-left: 0px;
}

.row.no-gutters > *{
    padding-right: 0px;
    padding-left: 0px;
}

.btn-default{
	position: relative;
    display: inline-block;
    background: var(--accent-color);
	border-radius: 10px;
    font-size: 16px;
    font-weight: 500;
    line-height: 1em;
    text-transform: capitalize;
    color: var(--white-color);
    border: none;
    padding: 17px 44px 17px 20px;
    transition: all 0.5s ease-in-out;
    overflow: hidden;
    z-index: 0;
}

.btn-default:hover{
	background: transparent;
}

.btn-default::before{
	content: '';
    position: absolute;
    top: 50%;
    right: 0;
    width: 14px;
    height: 14px;
    background-image: url(../images/arrow-white.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    transform: translate(-20px, -50%);
    transition: all 0.4s ease-in-out;
}

.btn-default:hover::before{
	transform: translate(-20px, -50%) rotate(45deg);
}

.btn-default::after{
	content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: -15%;
	right: 0;
    width: 0;
    height: 106%;
    background: var(--accent-secondary-color);
    transform: skew(30deg);
    transition: all 0.4s ease-in-out;
    z-index: -1;
}

.btn-default:hover:after{
	width: 100%;
    transform: skew(0deg);
    left: 0;
}

.btn-default.btn-highlighted{
	background: var(--accent-secondary-color);
}

.btn-default.btn-highlighted::after{
	background: var(--primary-color);
}

.readmore-btn{
	position: relative;
	display: inline-block;
	font-size: 16px;
	font-weight: 500;
	line-height: normal;
	text-transform: capitalize;
	color: var(--accent-color);
	padding: 5px 40px 5px 0;
	transition: all 0.3s ease-in-out;
}

.readmore-btn:hover{
	color: var(--accent-secondary-color);
}

.readmore-btn:after{
	content: '';
    position: absolute;
	right: 0;
	top: 50%;
    transform: translateY(-50%);
	background-color: var(--accent-color);
    background-image: url('../images/arrow-white.svg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 8px auto;
	border-radius: 50%;
	width: 30px;
	height: 30px;
	transition: all 0.3s ease-in-out;
}

.readmore-btn:hover:after{
	background-color: var(--accent-secondary-color);
	transform: translateY(-50%) rotate(45deg);
}

.cb-cursor:before{
	background: var(--accent-secondary-color);
}

.preloader{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1000;
	background: var(--accent-color);
	display: flex;
	align-items: center;
	justify-content: center;
}

.loading-container,
.loading{
	height: 100px;
	position: relative;
	width: 100px;
	border-radius: 100%;
}

.loading-container{
	margin: 40px auto;
}

.loading{
	border: 1px solid transparent;
	border-color: transparent var(--accent-secondary-color) transparent var(--accent-secondary-color);
	animation: rotate-loading 1.5s linear 0s infinite normal;
	transform-origin: 50% 50%;
}

.loading-container:hover .loading,
.loading-container .loading{
	transition: all 0.5s ease-in-out;
}

#loading-icon{
	position: absolute;
	top: 50%;
	left: 50%;
	max-width: 66px;
	transform: translate(-50%, -50%);
}

@keyframes rotate-loading{
	0%{
		transform: rotate(0deg);
	}

	100%{
		transform: rotate(360deg);
	}
}

.section-row{
	margin-bottom: 80px;
}

.section-row .section-title{
	margin-bottom: 0;
}

.section-title{
	margin-bottom: 40px;
}

.section-title h3{
	display: inline-block;
	position: relative;
	font-family: var(--default-font);
	font-size: 14px;
    font-weight: 500;
	line-height: 1.6em;
	letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--accent-color);
	background: url('../images/icon-sub-heading.svg') no-repeat;
	background-position: left center;
	background-size: 18px auto;
	padding-left: 28px;
    margin-bottom: 10px;
}

.section-title h1{
	font-size: 60px;
	text-transform: uppercase;
	margin-bottom: 0;
	cursor: none;
}

.section-title h2{
	font-size: 48px;
	margin-bottom: 0;
	cursor: none;
}

.section-title h1 span,
.section-title h2 span{
	color: var(--accent-secondary-color);
}

.section-title p{
	margin-top: 20px;
	margin-bottom: 0;
}

.section-title-content p{
	margin: 0;
}

.section-btn{
	text-align: right;
}

.section-content-btn .section-btn{
	text-align: left;
	margin-top: 30px;
}

.help-block.with-errors ul{
	margin: 0;
	text-align: left;
}

.help-block.with-errors ul li{
	color: var(--error-color);
	font-weight: 500;
	font-size: 14px;
}

/************************************/
/**** 	   03. Header css		 ****/
/************************************/

header.main-header{
	position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(2, 51, 32, 0.28);
    backdrop-filter: blur(14px) saturate(130%);
    -webkit-backdrop-filter: blur(14px) saturate(130%);
    transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
    z-index: 1000;
}

header.main-header .header-sticky{
	position: relative;
	top: 0;
	z-index: 1000;
}

header.main-header .header-sticky.hide{
	transform: translateY(-100%);
	transition: transform 0.3s ease-in-out;
	border-radius: 0;
}

header.main-header .header-sticky.active{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	border-radius: 0;
    transform: translateY(0);
	background: rgba(2, 51, 32, 0.96);
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	box-shadow: 0 10px 30px rgba(2, 51, 32, 0.18);
	z-index: 1000;
}

.navbar{
	padding: 10px 0;
	align-items: center;
}

.navbar-brand{
	padding: 0;
	margin: 0;
}

.navbar-brand img{
	max-height: 80px;
	width: auto;
	display: block;
}

.main-menu .nav-menu-wrapper{
	flex: 1;
	text-align: center;
	margin: 0 20px;
}

.main-menu .nav-menu-wrapper > ul{
	align-items: center;
	display: inline-flex;
}

.main-menu ul li{
	margin: 0;
	position: relative;
}

.main-menu ul li a{
	font-size: 15px;
	font-weight: 500;
	line-height: 1.2em;
	padding: 12px 14px !important;
	color: rgba(255, 255, 255, 0.92);
	text-transform: capitalize;
	transition: all 0.3s ease-in-out;
}

.main-menu ul li.submenu > a:after{
	content: '\f107';
	font-family: 'FontAwesome';
	font-weight: 900;
	font-size: 14px;
	margin-left: 8px;
}

.main-menu ul li a:hover,
.main-menu ul li a:focus{
	color: var(--accent-secondary-color);
}

.main-menu ul ul{
	visibility: hidden;
	opacity: 0;
	transform: scaleY(0.8);
	transform-origin: top;
	padding: 0;
	margin: 0;
	list-style: none;
	width: 235px;
	border-radius: 20px;
	position: absolute;
	left: 0;
	top: 100%;
	background: var(--accent-color);
	transition: all 0.3s ease-in-out;
	text-align: left;
}

.main-menu ul li.submenu:first-child ul{
    width: 235px;
}

.main-menu ul ul ul{
	left: 100%;
	top: 0;
	text-align: left;
}

.main-menu ul li:hover > ul{
	visibility: visible;
	opacity: 1;
	transform: scaleY(1);
    padding: 5px 0;
}

.main-menu ul li.submenu ul li.submenu > a:after{
    content: '\f105';
    float: right;
}

.main-menu ul ul li{
	margin: 0;
	padding: 0;
}

.main-menu ul ul li a{
	color: var(--white-color);
	padding: 8px 20px !important;
	transition: all 0.3s ease-in-out;
}

.main-menu ul ul li a:hover,
.main-menu ul ul li a:focus{
	color: var(--accent-secondary-color);
	background-color: transparent;
	padding: 8px 20px 8px 23px !important;
}

.header-contact-btn{
	display: flex;
	align-items: center;
	gap: 30px;
}

.header-contact-btn .btn-default{
	padding: 12px 34px 12px 16px;
	font-size: 14px;
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.28);
}

.header-contact-btn .btn-default:hover{
	background: var(--accent-secondary-color);
	border-color: var(--accent-secondary-color);
}

.header-contact-now{
	font-family: var(--accent-font);
	font-size: 20px;
	font-weight: 400;
	line-height: normal;
	color: var(--white-color);
}

.header-contact-now i{
	background-color: var(--accent-color);
	border-radius: 10px;
	width: 40px;
	height: 40px;
	text-align: center;
	align-content: center;
	font-size: 18px;
	color: var(--white-color);
	margin-right: 15px;
}

.main-menu ul li.highlighted-menu{
    display: none;
}

.responsive-menu,
.navbar-toggle{
	display: none;
}

.responsive-menu{
	top: 0;
	position: relative;
}

.slicknav_btn{
	background: var(--accent-color);
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	margin: 0;
	border-radius: 5px;
}

.slicknav_icon .slicknav_icon-bar{
	display: block;
	width: 100%;
	height: 3px;
	width: 22px;
	background-color: var(--white-color);
	border-radius: 6px;
	margin: 4px auto !important;
	transition: all 0.1s ease-in-out;
}

.slicknav_icon .slicknav_icon-bar:first-child{
	margin-top: 0 !important;
}

.slicknav_icon .slicknav_icon-bar:last-child{
	margin-bottom: 0 !important;
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(1){
    transform: rotate(-45deg) translate(-5px, 5px);
	background-color: var(--white-color);
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(2){
    opacity: 0;
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(3){
    transform: rotate(45deg) translate(-5px, -5px);
	background-color: var(--white-color);
}

.slicknav_menu{
	position: absolute;
    width: 100%;
	padding: 0;
	background: var(--accent-color);
}

.slicknav_menu ul{
	margin: 5px 0;
}

.slicknav_menu ul ul{
	margin: 0;
}

.slicknav_nav .slicknav_row,
.slicknav_nav li a{
	position: relative;
	font-size: 16px;
	font-weight: 400;
	text-transform: capitalize;
	padding: 8px 20px;
	color: var(--white-color);
	line-height: normal;
	margin: 0;
	border-radius: 0 !important;
	transition: all 0.3s ease-in-out;
}

.slicknav_nav a:hover,
.slicknav_nav a:focus,
.slicknav_nav .slicknav_row:hover{
	background-color: transparent;
	color: var(--accent-secondary-color);
}

.slicknav_menu ul ul li a{
    padding: 8px 20px 8px 30px;
}

.slicknav_arrow{
	font-size: 0 !important;
}

.slicknav_arrow:after{
	content: '\f107';
	font-family: 'FontAwesome';
	font-weight: 900;
	font-size: 12px;
	margin-left: 8px;
	color: var(--white-color);
	position: absolute;
	right: 15px;
	top: 50%;
	transform: translateY(-50%);
	transition: all 0.3s ease-out;
}

.slicknav_open > a .slicknav_arrow:after{
    transform: translateY(-50%) rotate(-180deg);
	color: var(--accent-secondary-color);
}

body.mobile-menu-open{
	overflow: hidden;
}

@media only screen and (max-width: 991px){

	.responsive-menu{
		position: static;
	}

	body.mobile-menu-open .slicknav_menu{
		position: fixed;
		inset: 0;
		width: 100%;
		height: 100vh;
		height: 100dvh;
		padding: 96px 0 32px;
		background: linear-gradient(165deg, #011f14 0%, var(--accent-color) 52%, #023320 100%);
		overflow-x: hidden;
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
		z-index: 999;
	}

	body.mobile-menu-open .slicknav_menu::before{
		content: '';
		position: absolute;
		top: -80px;
		right: -60px;
		width: 220px;
		height: 220px;
		border-radius: 50%;
		background: rgba(116, 164, 42, 0.12);
		pointer-events: none;
	}

	body.mobile-menu-open .slicknav_menu::after{
		content: '';
		position: absolute;
		bottom: -40px;
		left: -40px;
		width: 180px;
		height: 180px;
		border-radius: 50%;
		background: rgba(255, 255, 255, 0.04);
		pointer-events: none;
	}

	body.mobile-menu-open .slicknav_menu .slicknav_nav{
		position: relative;
		z-index: 1;
		max-width: 520px;
		margin: 0 auto;
		padding: 0 20px;
	}

	body.mobile-menu-open .slicknav_menu .slicknav_nav::before{
		content: 'Menu';
		display: block;
		font-size: 12px;
		font-weight: 600;
		letter-spacing: 0.14em;
		text-transform: uppercase;
		color: rgba(255, 255, 255, 0.45);
		margin-bottom: 14px;
		padding: 0 6px;
	}

	body.mobile-menu-open .slicknav_menu ul{
		margin: 0;
	}

	body.mobile-menu-open .slicknav_nav li{
		border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	}

	body.mobile-menu-open .slicknav_nav li:last-child{
		border-bottom: none;
	}

	body.mobile-menu-open .slicknav_nav .slicknav_row,
	body.mobile-menu-open .slicknav_nav li a{
		font-size: 18px;
		font-weight: 500;
		padding: 17px 6px;
		color: rgba(255, 255, 255, 0.95);
		border-radius: 0 !important;
	}

	body.mobile-menu-open .slicknav_nav a:hover,
	body.mobile-menu-open .slicknav_nav a:focus,
	body.mobile-menu-open .slicknav_nav .slicknav_row:hover{
		background-color: transparent;
		color: var(--accent-secondary-color);
	}

	body.mobile-menu-open .slicknav_menu ul ul{
		margin: 0;
		padding: 6px 0 10px;
		background: rgba(0, 0, 0, 0.14);
		border-radius: 12px;
	}

	body.mobile-menu-open .slicknav_menu ul ul li{
		border-bottom: none;
	}

	body.mobile-menu-open .slicknav_menu ul ul li a{
		padding: 13px 16px 13px 28px;
		font-size: 16px;
		font-weight: 400;
		color: rgba(255, 255, 255, 0.88);
	}

	body.mobile-menu-open .slicknav_menu ul ul li a:hover,
	body.mobile-menu-open .slicknav_menu ul ul li a:focus{
		color: var(--accent-secondary-color);
	}

	body.mobile-menu-open .slicknav_arrow:after{
		font-size: 14px;
		right: 6px;
		color: rgba(255, 255, 255, 0.75);
	}

	body.mobile-menu-open .slicknav_nav li.highlighted-menu{
		margin-top: 22px;
		padding-top: 8px;
		border-bottom: none;
	}

	body.mobile-menu-open .slicknav_nav li.highlighted-menu a{
		display: block;
		padding: 16px 24px !important;
		border-radius: 12px !important;
		background: var(--accent-secondary-color);
		color: var(--white-color) !important;
		font-size: 16px;
		font-weight: 600;
		text-align: center;
		box-shadow: 0 12px 28px rgba(116, 164, 42, 0.28);
		transition: background 0.3s ease, transform 0.3s ease;
	}

	body.mobile-menu-open .slicknav_nav li.highlighted-menu a:hover,
	body.mobile-menu-open .slicknav_nav li.highlighted-menu a:focus{
		background: var(--white-color);
		color: var(--accent-color) !important;
		transform: translateY(-1px);
	}

	.navbar-toggle{
		position: relative;
		z-index: 1001;
	}

	.slicknav_btn{
		width: 42px;
		height: 42px;
		border-radius: 10px;
		background: rgba(255, 255, 255, 0.12);
		border: 1px solid rgba(255, 255, 255, 0.18);
		transition: background 0.3s ease, border-color 0.3s ease;
	}

	.slicknav_btn.slicknav_open{
		background: var(--accent-secondary-color);
		border-color: var(--accent-secondary-color);
	}
}

/************************************/
/***        04. Hero css	      ***/
/************************************/

.hero{
	position: relative;
	background: url('../images/hero-bg.jpg') no-repeat;
	background-position: center center;
	background-size: cover;
	padding: 240px 0 140px;
	min-height: 100vh;
	align-content: center;
}

.hero::before{
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(269.99deg, rgba(2, 51, 32, 0) 15.73%, rgba(2, 51, 32, 0.828125) 66.76%, #023320 101.51%), linear-gradient(360deg, rgba(2, 51, 32, 0) 87.87%, #023320 102.84%);
	width: 100%;
	height: 100%;
	z-index: 1;
}

.hero.hero-video .hero-bg-video{
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
}

.hero.hero-video .hero-bg-video video{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero.hero-slider-layout{
	background: none;
	padding: 0;
	overflow: hidden;
	position: relative;
	z-index: 1;
	margin-top: 0;
}

.hero.hero-slider-layout .hero-main-swiper,
.hero.hero-slider-layout .swiper{
	position: relative;
	z-index: 1;
	height: 100%;
}

.hero.hero-slider-layout .swiper-wrapper,
.hero.hero-slider-layout .swiper-slide{
	height: auto;
}

.hero.hero-slider-layout .hero-slide{
	position: relative;
	padding: calc(120px + 4vw) 0 120px;
	min-height: 100vh;
	align-content: center;
}

.hero.hero-slider-layout .hero-slide::before{
	content: '';
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background:
		linear-gradient(180deg, rgba(2, 51, 32, 0.45) 0%, rgba(2, 51, 32, 0.18) 160px, rgba(2, 51, 32, 0.05) 280px),
		linear-gradient(105deg, rgba(2, 51, 32, 0.88) 0%, rgba(2, 51, 32, 0.62) 42%, rgba(2, 51, 32, 0.22) 100%),
		linear-gradient(180deg, rgba(2, 51, 32, 0.1) 70%, rgba(2, 51, 32, 0.82) 100%);
	width: 100%;
	height: 100%;
	z-index: 1;
}

.hero.hero-slider-layout .hero-slide .hero-slider-image{
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	overflow: hidden;
	z-index: 0;
	min-height: 100vh;
}

.hero.hero-slider-layout .hero-slide .hero-slider-image img{
	width: 100%;
	height: 100%;
	min-height: 100vh;
	object-fit: cover;
	object-position: center 18%;
	transform: scale(1.02);
}

.hero.hero-slider-layout .hero-slide .container{
	position: relative;
	z-index: 2;
}

.hero-eyebrow{
	display: inline-block;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--accent-secondary-color);
	margin-bottom: 16px;
}

.hero-content .section-title h1{
	font-family: var(--accent-font);
	font-size: clamp(34px, 4.8vw, 58px);
	line-height: 1.15;
	color: var(--white-color);
	margin-bottom: 18px;
}

.hero-content .section-title p{
	border-top: 1px solid var(--dark-divider-color);
	margin-top: 30px;
	padding-top: 30px;
}

.hero.hero-slider-layout .hero-content .section-title p{
	border-top: none;
	margin-top: 0;
	padding-top: 0;
	font-size: 17px;
	line-height: 1.7;
	max-width: 620px;
	color: rgba(255, 255, 255, 0.88);
}

.hero-btn-secondary .btn-highlighted{
	background: transparent;
	border: 1px solid rgba(255, 255, 255, 0.55);
	color: var(--white-color);
}

.hero-btn-secondary .btn-highlighted:hover{
	background: var(--white-color);
	border-color: var(--white-color);
	color: var(--primary-color);
}

.hero.hero-slider-layout .hero-pagination{
	position: absolute;
	bottom: 42px;
	left: 0;
	right: 0;
	text-align: center;
	padding-left: 0;
	z-index: 3;
}

.hero.hero-slider-layout .hero-pagination .swiper-pagination-bullet{
	width: 10px;
	height: 10px;
	background: rgba(255, 255, 255, 0.45);
	opacity: 1;
	transition: all 0.35s ease-in-out;
	margin: 0 6px;
}

.hero.hero-slider-layout .hero-pagination .swiper-pagination-bullet-active{
	width: 34px;
	border-radius: 999px;
	background-color: var(--accent-secondary-color);
}

.hero-slider-nav{
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 5;
	width: 52px;
	height: 52px;
	border: 1px solid rgba(255, 255, 255, 0.35);
	border-radius: 50%;
	background: rgba(2, 51, 32, 0.55);
	backdrop-filter: blur(6px);
	color: var(--white-color);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease-in-out;
}

.hero-slider-nav:hover{
	background: var(--accent-secondary-color);
	border-color: var(--accent-secondary-color);
	transform: translateY(-50%) scale(1.05);
}

.hero-slider-nav i{
	font-size: 16px;
}

.hero-slider-prev{
	left: 24px;
}

.hero-slider-next{
	right: 24px;
}

.hero-content{
	position: relative;
	z-index: 2;
}

.hero-content .section-title p,
.hero-content .section-title h1,
.hero-content .section-title h3{
	color: var(--white-color);
}

.hero-content .section-title h3{
	margin-bottom: 30px;
}

.hero-body{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px 40px;
}

.hero-body .video-play-button{
	display: inline-flex;
	align-items: center;
	gap: 10px;
}

.hero-body .video-play-button p{
	font-weight: 500;
	text-transform: capitalize;
	color: var(--white-color);
	margin: 0;
}

.video-play-button a{
	height: 50px;
	width: 50px;
	border: 2px solid var(--white-color);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: none;
	transition: all 0.3s ease-in-out;
}

.video-play-button:hover a{
	border-color: var(--accent-color);
}

.video-play-button a i{
	font-size: 18px;
	color: var(--white-color);
	transition: all 0.3s ease-in-out;
}

.video-play-button:hover a i{
	color: var(--accent-color);
}

.down-arrow-circle{
	position: absolute;
	right: 15px;
	bottom: 30px;
	text-align: center;
	z-index: 3;
}

.down-arrow-circle a{
	position: relative;
	display: inline-block;
	border-radius: 50%;
}

.down-arrow-circle a img{
	max-width: 150px;
	border-radius: 50%;
	animation: infiniterotate 20s infinite linear;
}

@keyframes infiniterotate{
	from{
		transform: rotate(0deg);
	  }
	to{
		transform: rotate(360deg);
	}
}

.down-arrow-circle a i{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: var(--white-color);
	font-size: 50px;
}

/************************************/
/***       05. About Us css	      ***/
/************************************/

.about-us{
	position: relative;
	padding: 100px 0 50px;
}

.about-us::before{
    content: '';
    position: absolute;
    bottom: -80px;
    right: -25px;
    background-image: url('../images/section-bg-img-1.svg');
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: cover;
    height: 251px;
    width: 308px;
    z-index: 0;
}

.about-images{
	position: relative;
	text-align: center;
	margin: 20px 0px 20px 0;
	padding-left: 20px;
}

.about-images::before{
	content: '';
	position: absolute;
	top: 20px;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(90deg, var(--accent-color) 50%, transparent 50%);
	border-radius: 50%;
	width: 100%;
	height: 100%;
}

.about-images::after{
	content: '';
	position: absolute;
	top: -19px;
	bottom: 0;
	left: 0;
	right: 0;
	background: url('../images/about-img-bg-shape.png') no-repeat;
	background-position: left top;
	background-size: auto;
	width: 100%;
	height: 100%;
}

.about-image{
	position: relative;
	z-index: 1;
}

.about-image figure{
	display: block;
}

.about-image img{
	width: 100%;
	max-width: 405px;
	margin: 0 auto;
	aspect-ratio: 1 / 1.613;
	object-fit: cover;
}

.about-image-title{
	position: absolute;
	top: 0;
	right: 40px;
	transform: rotate(-180deg);
    writing-mode: vertical-rl;
	height: 100%;
	align-content: center;
}

.about-image-title h2{
	font-family: var(--default-font);
	font-size: 5.625vw;
	font-weight: 800;
	line-height: 1em;
	text-transform: uppercase;
	background: var(--divider-color);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-stroke: 4px transparent;
	color: var(--secondary-color);
	cursor: none;
	transition: all 0.3s ease-in-out;
	z-index: 0;
}

.about-images:hover .about-image-title h2{
	color: var(--accent-color);
}

.about-us-content{
	margin-left: 15px;
}

.about-content-body{
	margin-bottom: 40px;
}

.about-benefit-item{
	display: flex;
	margin-bottom: 30px;
}

.about-benefit-item:last-child{
	margin-bottom: 0;
}

.about-benefit-item .icon-box{
	position: relative;
	margin-right: 20px;
}

.about-benefit-item .icon-box::before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	background: var(--accent-secondary-color);
	border-radius: 50%;
	width: 36px;
	height: 36px;
}

.about-benefit-item .icon-box img{
	position: relative;
	max-width: 60px;
	z-index: 1;
}

.about-benefit-item-content{
	width: calc(100% - 80px);
}

.about-benefit-item-content h3{
	font-size: 20px;
	margin-bottom: 10px;
}

.about-benefit-item-content p{
	margin: 0;
}

/************************************/
/***     06. Our Services css     ***/
/************************************/

.our-services{
	padding: 50px 0;
}

.service-item{
	position: relative;
	border: 1px solid var(--divider-color);
	background: var(--white-color);
	border-radius: 30px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	padding: 30px 25px;
	overflow: hidden;
}

.service-item::before{
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: var(--accent-color);
	border-radius: 500px 500px 0 0;
	width: 100%;
	height: 0;
	transition: all 0.4s ease-in-out;
	z-index: 0;
}

.service-item:hover:before{
	border-radius: 0;
	height: 100%;
}

.service-header{
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 80px;
	z-index: 1;
}

.service-header .icon-box img{
	max-width: 80px;
	transition: all 0.4s ease-in-out;
}

.service-item:hover .service-header .icon-box img{
	filter: brightness(0) invert(1);
}

.service-btn a{
	display: block;
	background: var(--accent-color);
	border-radius: 50%;
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.4s ease-in-out;
}

.service-item:hover .service-btn a{
	background: var(--accent-secondary-color);
}

.service-btn a img{
	max-width: 14px;
	transition: all 0.3s ease-in-out;
}

.service-btn a:hover img{
	transform: rotate(45deg);
}

.service-content{
	position: relative;
	z-index: 1;
}

.service-content h3{
	font-size: 20px;
	margin-bottom: 15px;
	transition: all 0.3s ease-in-out;
}

.service-content h3 a{
	color: inherit;
}

.service-content p{
	margin: 0;
	transition: all 0.3s ease-in-out;
}

.service-item:hover .service-content p,
.service-item:hover .service-content h3{
	color: var(--white-color);
}

.section-footer-text{
	margin-top: 30px;
	text-align: center;
}

.section-footer-text p{
	margin: 0;
}

.section-footer-text p span{
	font-weight: 500;
	color: var(--white-color);
	background: var(--accent-secondary-color);
	border-radius: 24px;
	padding: 2px 8px;
	margin-right: 10px;
}

.section-footer-text p a{
	color: var(--accent-secondary-color);
	font-weight: 600;
	text-transform: capitalize;
	text-decoration: underline;
	transition: all 0.3s ease-in-out;
}

.section-footer-text p a:hover{
	color: var(--primary-color);
}

/************************************/
/***      07. What We Do css      ***/
/************************************/

.what-we-do{
	position: relative;
	padding: 50px 0;
}

.what-we-do::before{
    content: '';
    position: absolute;
    top: -70px;
    left: -70px;
    background-image: url('../images/section-bg-img-2.svg');
    background-repeat: no-repeat;
    background-position: top left;
    background-size: cover;
    height: 379px;
    width: 262px;
    z-index: 0;
}

.what-we-image{
	background: url('../images/what-we-bg-shape.svg') no-repeat;
	background-position: center center;
	background-size: auto;
	text-align: center;
	margin: 0 20px 0 30px;
}

.what-we-image img{
	width: 100%;
	aspect-ratio: 1 / 1.03;
	object-fit: cover;
}

.what-we-body{
	margin-bottom: 40px;
}

.what-we-body ul{
    list-style: disc;
    margin: 0;
    padding-left: 20px;
	display: flex;
	flex-wrap: wrap;
	gap: 20px 40px;
}

.what-we-body ul li{
	width: calc(50% - 20px);
	text-transform: capitalize;
	line-height: 1.6em;
}

.what-we-body ul li:last-child{
	margin-bottom: 0;
}

.what-we-body ul li::marker{
    color: var(--accent-color);
}

.what-we-benefits-box{
	display: flex;
	flex-wrap: wrap;
	border-radius: 30px;
	overflow: hidden;
}

.what-we-benefits-list{
	width: calc(100% - 417px);
	background: var(--primary-color);
	display: flex;
	flex-wrap: wrap;
	align-content: center;
	gap: 50px 30px;
	padding: 60px;
}

.what-we-item{
	width: calc(50% - 15px);
	display: flex;
}

.what-we-item .icon-box{
	margin-right: 20px;
}

.what-we-item .icon-box img{
	max-width: 40px;
}

.what-we-item-content{
	width: calc(100% - 60px);
}

.what-we-item-content h3{
	font-size: 20px;
	color: var(--white-color);
	margin-bottom: 10px;
}

.what-we-item-content p{
	color: var(--white-color);
	margin: 0;
}

.what-we-benefit-image{
	width: 417px;
	border-left: 4px solid var(--white-color);
}

.what-we-benefit-image figure{
	display: block;
	height: 100%;
}

.what-we-benefit-image img{
	width: 100%;
	height: 100%;
	aspect-ratio: 1 / 0.862;
	object-fit: cover;
}

/************************************/
/***    08. Why Choose Us css     ***/
/************************************/

.why-choose-us{
	padding: 50px 0;
}

.why-choose-content{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.why-choose-image{
	width: calc(50% - 20px);
}

.why-choose-image figure{
	display: block;
	border-radius: 20px;
}

.why-choose-image img{
	width: 100%;
	aspect-ratio: 1 / 0.5512;
	object-fit: cover;
	border-radius: 20px;
}

.why-choose-item{
	position: relative;
	width: calc(25% - 20px);
	background: var(--white-color);
	border: 1px solid var(--divider-color);
	border-radius: 20px;
	padding: 30px 25px;
	overflow: hidden;
}

.why-choose-item::before{
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: var(--accent-color);
	border-radius: 500px 500px 0 0;
	width: 100%;
	height: 0;
	transition: all 0.4s ease-in-out;
	z-index: 0;
}

.why-choose-item:hover:before{
	border-radius: 0;
	height: 100%;
}

.why-choose-item .icon-box{
	position: relative;
	margin-bottom: 60px;
	z-index: 1;
}

.why-choose-item .icon-box img{
	max-width: 80px;
	transition: all 0.4s ease-in-out;
}

.why-choose-item:hover .icon-box img{
	filter: brightness(0) invert(1);
}

.why-choose-item-content{
	position: relative;
	z-index: 1;
}

.why-choose-item-content h3{
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 10px;
	transition: all 0.3s ease-in-out;
}

.why-choose-item-content p{
	margin: 0;
	transition: all 0.3s ease-in-out;
}

.why-choose-item:hover .why-choose-item-content p,
.why-choose-item:hover .why-choose-item-content h3{
	color: var(--white-color);
}

.why-choose-counter-box{
	display: flex;
	flex-wrap: wrap;
	gap: 50px;
	border-top: 1px solid var(--divider-color);
	margin-top: 60px;
	padding-top: 60px;
}

.why-choose-counter-item{
	position: relative;
	width: calc(25% - 37.5px);
	display: flex;
}

.why-choose-counter-item::before{
	content: '';
	position: absolute;
	right: -25px;
	background: var(--divider-color);
	width: 1px;
	height: 100%;
}

.why-choose-counter-item:nth-child(4n + 4):before,
.why-choose-counter-item:last-child:before{
	display: none;
}

.why-choose-counter-item .icon-box{
	margin-right: 20px;
}

.why-choose-counter-item .icon-box img{
	max-width: 50px;
}

.why-choose-counter-content h3{
	font-size: 30px;
	margin-bottom: 5px;
}

.why-choose-counter-content p{
	text-transform: capitalize;
	margin: 0;
}

/************************************/
/***     09. Our Benefits css     ***/
/************************************/

.our-benefits{
	position: relative;
	padding: 50px 0 100px;
}

.our-benefits::before{
    content: '';
    position: absolute;
    bottom: 10px;
    right: -75px;
    background-image: url('../images/section-bg-img-3.svg');
    background-repeat: no-repeat;
    background-position: bottom right;
    background-size: cover;
    height: 417px;
    width: 431px;
    z-index: 0;
}

.benefit-item{
	border-bottom: 1px solid var(--divider-color);
	margin-bottom: 50px;
	padding-bottom: 50px;
}

.benefit-item:last-child{
	border-bottom: none;
	margin-bottom: 0px;
	padding-bottom: 0px;
}

.benefit-item .icon-box{
	margin-bottom: 30px;
}

.benefit-item .icon-box img{
	max-width: 80px;
}

.benefit-item-content h3{
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 15px;
}

.benefit-item-content p{
	margin: 0;
}

.our-benefits-image{
	position: relative;
	text-align: center;
	margin: 0 30px;
}

.our-benefits-image::before{
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: var(--accent-color);
	opacity: 10%;
	width: 445px;
	height: 410px;
	z-index: 0;
}

.our-benefits-image figure{
	position: relative;
	background: url('../images/benefits-image-bg-shape.svg') no-repeat;
	background-position: top center;
	background-size: auto;
	z-index: 1;
}

.our-benefits-image img{
	width: 100%;
	max-width: 474px;
	margin: 0 auto;
}

/************************************/
/***      10. Intro Video css     ***/
/************************************/

.intro-video .container-fluid{
	padding: 0;
}

.intro-video-box{
	position: relative;
	overflow: hidden;
	height: 700px;
}

.intro-bg-video{
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
}

.intro-bg-video::before{
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: var(--primary-color);
	opacity: 30%;
	width: 100%;
	height: 100%;
}

.intro-bg-video video{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.intro-video-box .video-play-button{
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 1;
}

.intro-video-box .video-play-button a{
	width: 100px;
	height: 100px;
	font-size: 20px;
	font-weight: 500;
	text-transform: capitalize;
	color: var(--white-color);
}

.video-play-button:hover a{
	border-color: var(--accent-color);
	color: var(--accent-color);
}

.cta-box{
	background: var(--accent-color);
	padding: 50px 0;
}

.cta-box .section-title{
	margin-bottom: 0;
}

.cta-box .section-title h2{
	color: var(--white-color);
}

/************************************/
/***      11. How It Work css     ***/
/************************************/

.how-it-work{
	padding: 100px 0 50px;
}

.how-work-content{
	margin-right: 30px;
}

.how-work-stpes-box{
	border-top: 1px solid var(--divider-color);
	padding-top: 40px;
}

.how-work-step{
	display: flex;
	margin-bottom: 40px;
}

.how-work-step:last-child{
	margin-bottom: 0;
}

.how-work-step-no{
	margin-right: 20px;
}

.how-work-step-no h2{
	font-size: 40px;
}

.how-work-step-content h3{
	font-size: 20px;
	margin-bottom: 10px;
}

.how-work-step-content p{
	margin: 0;
}

.how-work-image{
	position: relative;
	padding-bottom: 40px
}

.how-work-image::before{
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(90deg, transparent 46%, var(--accent-color) 46%);
    border-radius: 50%;
    width: 100%;
    height: 100%;
}

.how-work-image::after{
    content: '';
    position: absolute;
    top: 30px;
    bottom: 30px;
    left: 30px;
    background: linear-gradient(90deg, var(--divider-color) 39%, transparent 39%);
    border-radius: 50%;
    width: 100%;
    height: calc(100% - 60px);
}

.how-work-image figure{
	position: relative;
	background: url('../images/how-work-image-bg-shape.svg') no-repeat;
	background-position: right 10px top;
	background-size: auto;
	z-index: 1;
}

.how-work-image img{
	width: 100%;
	aspect-ratio: 1 / 0.92;
	object-fit: cover;
}

/************************************/
/***     12. Our Features css     ***/
/************************************/

.our-features{
	padding: 50px 0;
}

.features-item{
	background: var(--white-color);
	border: 1px solid var(--divider-color);
	border-radius: 30px;
	overflow: hidden;
	align-content: end;
	padding: 30px 0 0 30px;
}

.features-item-image{
	text-align: right;
	margin-right: -110px;
	margin-bottom: -40px;
}

.features-item-image img{
	width: 100%;
	aspect-ratio: 1 / 0.816;
	object-fit: contain;
}

.our-features-boxes{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.features-box{
	position: relative;
	width: calc(50% - 15px);
	border-radius: 30px;
	overflow: hidden;
}

.features-box .features-box-content{
	position: absolute;
	top: 30px;
	left: 30px;
}

.features-box-image img{
	width: 100%;
	aspect-ratio: 1 / 0.5;
	border-radius: 30px;
	object-fit: cover;
}

.features-box.box-1{
	width: 100%;
}

.features-box.box-2 .features-box-image img{
	aspect-ratio: 1 / 1.051;
	filter: brightness(70%);
}

.features-box.box-2 .features-box-content{
	position: absolute;
	top: auto;
	left: 30px;
	bottom: 30px;
	right: 30px;
	max-width: calc(100% - 60px);
}

.features-box.box-2 .features-box-content{
	position: absolute;
	top: auto;
	left: 30px;
	bottom: 30px;
}

.features-box.box-3 .features-item-image{
	margin-right: -40px;
	margin-bottom: -17px;
}

.features-box.box-3 .features-item-image img{
	max-width: 188px;
	aspect-ratio: 1 / 1.57;
}

.features-box.box-3 .features-box-content{
	position: absolute;
	top: auto;
	left: 30px;
	bottom: 30px;
	max-width: 140px;
}

.features-box.box-2 .features-box-content p,
.features-box.box-2 .features-box-content h3{
	color: var(--white-color);
}

.features-box-content,
.features-item-content{
	position: relative;
	width: 100%;
	max-width: 285px;
	z-index: 1;
}

.features-box-content p,
.features-item-content p{
	font-size: 14px;
	font-weight: 500;
	text-transform: uppercase;
	color: var(--primary-color);
	margin-bottom: 10px;
}

.features-box-content h3,
.features-item-content h3{
	font-size: 20px;
	line-height: 1.4em;
	text-transform: capitalize;
}

/************************************/
/***      13. Our Pricing css     ***/
/************************************/

.our-pricing{
	position: relative;
	padding: 50px 0 20px;
}

.our-pricing::before{
    content: '';
    position: absolute;
    top: -120px;
    left: -80px;
    background-image: url('../images/section-bg-img-1.svg');
    background-repeat: no-repeat;
    background-position: top left;
    background-size: cover;
    transform: rotateY(180deg);
    height: 274px;
    width: 337px;
    z-index: 0;
}

.our-pricing::after{
    content: '';
    position: absolute;
    bottom: 10px;
    right: -50px;
    background-image: url('../images/section-bg-img-4.svg');
    background-repeat: no-repeat;
    background-position: bottom right;
    background-size: cover;
    height: 136px;
    width: 381px;
    z-index: 0;
}

.pricing-item{
	background: var(--white-color);
	border: 1px solid var(--divider-color);
	border-radius: 30px;
	text-align: center;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	overflow: hidden;
}

.pricing-image figure{
	display: block;
}

.pricing-image img{
	width: 100%;
	aspect-ratio: 1 / 0.484;
	object-fit: cover;
}

.pricing-content{
	padding: 30px;
	border-bottom: 1px solid var(--divider-color);
}

.pricing-title{
	margin-top: -52px;
	margin-bottom: 30px;
}

.pricing-content h3{
	position: relative;
	display: inline-block;
	font-family: var(--default-font);
	font-size: 16px;
	font-weight: 500;
	text-transform: capitalize;
	color: var(--primary-color);
	background-color: var(--white-color);
	box-shadow: 0px 0px 30px 0px #00000014;
	border: 1px solid var(--divider-color);
	border-radius: 100px;
	padding: 12px 30px;
}

.pricing-content h2{
	font-size: 48px;
}

.pricing-content p{
	text-transform: capitalize;
	margin: 0;
}

.pricing-body{
	padding: 30px;
}

.pricing-list{
	margin-bottom: 40px;
}

.pricing-list ul{
    list-style: disc;
    display: inline-block;
    margin: 0;
    padding-left: 20px;
    text-align: left;
}

.pricing-list ul li{
	text-transform: capitalize;
	line-height: 1.6em;
	margin-bottom: 15px;
}

.pricing-list ul li:last-child{
	margin-bottom: 0;
}

.pricing-list ul li::marker{
    color: var(--accent-color);
}

.pricing-item.highlighted-box{
	background: var(--accent-color);
	border: none;
}

.pricing-item.highlighted-box .pricing-content{
	border-color: var(--dark-divider-color);
}

.pricing-item.highlighted-box .pricing-list ul li::marker,
.pricing-item.highlighted-box .pricing-list ul li,
.pricing-item.highlighted-box .pricing-content p,
.pricing-item.highlighted-box .pricing-content h2{
	color: var(--white-color);
}

/************************************/
/***   14. Scrolling Ticker css	  ***/
/************************************/

.scrolling-ticker{
	padding: 50px 0;
}

.scrolling-ticker-box{
	position: relative;
	--gap: 40px;
	display: flex;
	user-select: none;
	gap: var(--gap);
	align-items: center;
	border-top: 1px solid var(--divider-color);
	border-bottom: 1px solid var(--divider-color);
	padding: 80px 0;
	margin: 40px 0;
}

.scrolling-content{
	flex-shrink: 0;
	display: flex;
	gap: var(--gap);
	min-width: 100%;
	animation: scroll 50s linear infinite;
}

@keyframes scroll{
	from{
		transform: translateX(0);
	}

	to{
		transform: translateX(calc(-100% - var(--gap)));
	}
}

.scrolling-ticker-box .scrolling-content span{
	font-family: var(--accent-font);
	display: flex;
	align-items: center;
	text-transform: capitalize;
	font-size: 60px;
	line-height: 1em;
	font-weight: 400;
	color: var(--accent-color);
}

.scrolling-ticker-box .scrolling-content span img{
	width: 20px;
	margin-right: 40px;
}

.scrolling-ticker-images{
	display: flex;
	min-width: 100%;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	display: flex;
	height: 100%;
}

.scrolling-ticker-image{
	position: relative;
	text-align: center;
	transform: translateY(40px);
	align-content: end;
	width: 25%;
}

.scrolling-ticker-images .scrolling-ticker-image:nth-child(even){
	align-content: start;
	transform: translateY(-40px);
}

.scrolling-ticker-image figure{
	display: block;
	border-radius: 50%;
}

.scrolling-ticker-image img{
	border-radius: 50%;
	max-width: 80px;
}

/************************************/
/***   14b. Home Trust Strip css    ***/
/************************************/

.home-trust-strip{
	position: relative;
	background: linear-gradient(135deg, #012819 0%, var(--accent-color) 45%, #034528 100%);
	padding: 0;
	border-top: 3px solid var(--accent-secondary-color);
	border-bottom: 3px solid var(--accent-secondary-color);
}

.home-trust-strip::before{
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 20% 50%, rgba(116, 164, 42, 0.12) 0%, transparent 55%),
		radial-gradient(circle at 80% 50%, rgba(116, 164, 42, 0.1) 0%, transparent 50%);
	pointer-events: none;
}

.trust-strip-inner{
	position: relative;
	padding: 42px 0;
	overflow: hidden;
}

.trust-strip-inner .container-fluid{
	position: relative;
	z-index: 1;
	padding-left: 28px;
	padding-right: 28px;
}

.trust-strip-swiper{
	overflow: visible;
}

.trust-strip-swiper .swiper-slide{
	height: auto;
}

.trust-strip-item{
	display: flex;
	align-items: center;
	gap: 16px;
	height: 100%;
	min-height: 88px;
	padding: 18px 20px;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 16px;
	backdrop-filter: blur(6px);
	transition: transform 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}

.trust-strip-swiper .swiper-slide-active .trust-strip-item,
.trust-strip-item:hover{
	transform: translateY(-2px);
	border-color: rgba(116, 164, 42, 0.55);
	background: rgba(255, 255, 255, 0.07);
}

.trust-strip-icon{
	flex-shrink: 0;
	width: 58px;
	height: 58px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: var(--accent-color);
	border: none;
	box-shadow: none;
	overflow: hidden;
}

.trust-strip-icon img{
	width: 46px;
	height: auto;
	display: block;
	mix-blend-mode: lighten;
	filter: brightness(1.08) contrast(1.05);
}

.trust-strip-item p{
	color: var(--white-color);
	font-size: 15px;
	font-weight: 600;
	line-height: 1.4;
	margin: 0;
	letter-spacing: 0.01em;
}

.trust-strip-edge{
	position: absolute;
	top: 0;
	bottom: 0;
	width: 72px;
	z-index: 2;
	pointer-events: none;
}

.trust-strip-edge-left{
	left: 0;
	background: linear-gradient(90deg, var(--accent-color) 0%, transparent 100%);
}

.trust-strip-edge-right{
	right: 0;
	background: linear-gradient(270deg, var(--accent-color) 0%, transparent 100%);
}

/************************************/
/***   Book Appointment Modal css ***/
/************************************/

.book-appointment-modal .modal-content{
	border: none;
	border-radius: 24px;
	overflow: hidden;
	box-shadow: 0 24px 60px rgba(2, 51, 32, 0.25);
}

.book-appointment-modal .modal-header{
	background: linear-gradient(135deg, #012819 0%, var(--accent-color) 55%, #034528 100%);
	border-bottom: 3px solid var(--accent-secondary-color);
	padding: 28px 32px;
	align-items: flex-start;
}

.book-appointment-modal-heading{
	padding-right: 24px;
}

.book-appointment-modal .modal-eyebrow{
	display: inline-block;
	font-size: 13px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--accent-secondary-color);
	margin-bottom: 8px;
}

.book-appointment-modal .modal-title{
	font-family: var(--accent-font);
	font-size: 30px;
	color: var(--white-color);
	margin-bottom: 8px;
}

.book-appointment-modal .modal-subtitle{
	font-size: 15px;
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.82);
	margin: 0;
}

.book-appointment-modal .modal-body{
	padding: 32px;
	background: var(--white-color);
}

.book-appointment-modal .form-label{
	display: block;
	font-size: 14px;
	font-weight: 600;
	color: var(--primary-color);
	margin-bottom: 8px;
}

.book-appointment-modal .appointment-form{
	width: 100%;
}

.book-appointment-modal .appointment-form form .form-control{
	background-color: var(--secondary-color);
	border-color: var(--divider-color);
}

.book-appointment-modal .appointment-form form .form-control:focus{
	border-color: var(--accent-secondary-color);
	box-shadow: 0 0 0 0.15rem rgba(116, 164, 42, 0.15);
}

.book-appointment-modal .contact-form-btn{
	margin-top: 4px;
}

.book-appointment-success{
	text-align: center;
	padding: 24px 12px 8px;
}

.book-appointment-success-icon{
	font-size: 52px;
	color: var(--accent-secondary-color);
	margin-bottom: 16px;
}

.book-appointment-success h3{
	font-family: var(--accent-font);
	font-size: 28px;
	color: var(--primary-color);
	margin-bottom: 10px;
}

.book-appointment-success p{
	max-width: 420px;
	margin: 0 auto 24px;
	color: var(--text-color);
	line-height: 1.6;
}

/************************************/
/***   Home About Intro css         ***/
/************************************/

.home-about-intro{
	padding: 70px 0;
	background: linear-gradient(180deg, var(--secondary-color) 0%, var(--white-color) 100%);
}

.home-about-intro-media{
	position: relative;
	max-width: 540px;
	padding-bottom: 28px;
}

.home-about-intro-photo{
	display: block;
	margin: 0;
	border-radius: 20px;
	overflow: hidden;
	line-height: 0;
	box-shadow: 0 18px 40px rgba(2, 51, 32, 0.1);
}

.home-about-intro-photo img{
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	object-position: center 22%;
	display: block;
}

.home-about-intro-badge{
	position: absolute;
	left: 20px;
	bottom: 0;
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding: 14px 18px;
	border-radius: 12px;
	background: var(--white-color);
	border: 1px solid rgba(2, 51, 32, 0.08);
	color: var(--primary-color);
	box-shadow: 0 10px 24px rgba(2, 51, 32, 0.08);
}

.home-about-intro-badge strong{
	font-family: var(--accent-font);
	font-size: 28px;
	font-weight: 400;
	line-height: 1;
	color: var(--accent-secondary-color);
}

.home-about-intro-badge span{
	font-size: 14px;
	font-weight: 600;
	line-height: 1.3;
	max-width: 120px;
	color: var(--primary-color);
}

.home-about-intro-content{
	padding-left: 10px;
}

.home-about-intro-content .section-title{
	margin-bottom: 32px;
}

.home-about-intro-content .section-title p{
	margin-top: 20px;
	margin-bottom: 0;
	max-width: 520px;
}

.home-about-intro-btn{
	margin-top: 8px;
}

/************************************/
/***   Home Why Choose css          ***/
/************************************/

.home-why-choose{
	position: relative;
	padding: 90px 0 100px;
	background: linear-gradient(180deg, var(--white-color) 0%, var(--secondary-color) 100%);
	overflow: hidden;
}

.home-why-choose::before{
	content: '';
	position: absolute;
	top: -120px;
	right: -80px;
	width: 280px;
	height: 280px;
	border-radius: 50%;
	background: rgba(116, 164, 42, 0.08);
	pointer-events: none;
}

.home-why-choose::after{
	content: '';
	position: absolute;
	bottom: -100px;
	left: -60px;
	width: 220px;
	height: 220px;
	border-radius: 50%;
	background: rgba(2, 51, 32, 0.05);
	pointer-events: none;
}

.home-why-choose-header{
	max-width: 720px;
	margin: 0 auto 50px;
	position: relative;
	z-index: 1;
}

.home-why-choose-eyebrow{
	display: inline-block;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--accent-secondary-color);
	margin-bottom: 14px;
}

.home-why-choose-header h2{
	font-family: var(--accent-font);
	font-size: clamp(30px, 4vw, 42px);
	color: var(--primary-color);
	margin-bottom: 16px;
	line-height: 1.2;
}

.home-why-choose-header p{
	font-size: 17px;
	line-height: 1.6;
	color: var(--text-color);
	margin: 0;
}

.home-why-choose-card{
	position: relative;
	height: 100%;
	padding: 30px 28px 28px;
	border-radius: 20px;
	background: var(--white-color);
	border: 1px solid rgba(2, 51, 32, 0.08);
	box-shadow: 0 10px 30px rgba(2, 51, 32, 0.06);
	transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
	overflow: hidden;
}

.home-why-choose-card::before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background: linear-gradient(90deg, var(--accent-color), var(--accent-secondary-color));
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.35s ease;
}

.home-why-choose-card:hover{
	transform: translateY(-6px);
	border-color: rgba(116, 164, 42, 0.35);
	box-shadow: 0 18px 40px rgba(2, 51, 32, 0.12);
}

.home-why-choose-card:hover::before{
	transform: scaleX(1);
}

.home-why-choose-card-number{
	position: absolute;
	top: 18px;
	right: 22px;
	font-size: 13px;
	font-weight: 700;
	color: rgba(2, 51, 32, 0.12);
	letter-spacing: 0.05em;
}

.home-why-choose-card-icon{
	width: 56px;
	height: 56px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 16px;
	margin-bottom: 22px;
	background: linear-gradient(135deg, rgba(2, 51, 32, 0.1) 0%, rgba(116, 164, 42, 0.18) 100%);
	color: var(--accent-color);
	font-size: 22px;
	transition: background 0.35s ease, color 0.35s ease;
}

.home-why-choose-card:hover .home-why-choose-card-icon{
	background: linear-gradient(135deg, var(--accent-color) 0%, #035c38 100%);
	color: var(--white-color);
}

.home-why-choose-card h3{
	font-family: var(--accent-font);
	font-size: 22px;
	color: var(--primary-color);
	margin-bottom: 12px;
	line-height: 1.3;
}

.home-why-choose-card p{
	font-size: 15px;
	line-height: 1.65;
	color: var(--text-color);
	margin: 0;
}

.home-why-choose .row{
	position: relative;
	z-index: 1;
}

/************************************/
/***   Home What We Treat css       ***/
/************************************/

.home-what-we-treat{
	position: relative;
	padding: 100px 0;
	background: url('../images/hero-bg.jpg') center center / cover no-repeat fixed;
	overflow: hidden;
}

.home-what-we-treat-overlay{
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(1, 40, 25, 0.88) 0%, rgba(2, 51, 32, 0.92) 100%);
}

.home-what-we-treat .container{
	position: relative;
	z-index: 1;
}

.home-what-we-treat-header{
	margin-bottom: 48px;
}

.home-what-we-treat-header h2{
	font-family: var(--accent-font);
	font-size: clamp(34px, 4.5vw, 48px);
	color: var(--white-color);
	margin: 0;
}

.home-treat-card{
	position: relative;
	display: flex;
	flex-direction: column;
	height: 100%;
	min-height: 260px;
	padding: 28px 26px 24px;
	border-radius: 18px;
	background: rgba(2, 51, 32, 0.72);
	border: 1px solid rgba(255, 255, 255, 0.12);
	backdrop-filter: blur(4px);
	transition: transform 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}

.home-treat-card:hover{
	transform: translateY(-5px);
	border-color: rgba(116, 164, 42, 0.55);
	background: rgba(2, 51, 32, 0.88);
}

.home-treat-card-icon{
	width: 54px;
	height: 54px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--white-color);
	color: var(--accent-color);
	font-size: 22px;
	margin-bottom: 22px;
	flex-shrink: 0;
	overflow: hidden;
}

.home-treat-card-icon img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.home-treat-card-body{
	flex: 1;
}

.home-treat-card-body h3{
	font-family: var(--accent-font);
	font-size: 22px;
	line-height: 1.35;
	color: var(--white-color);
	margin-bottom: 12px;
}

.home-treat-card-body p{
	font-size: 15px;
	line-height: 1.65;
	color: rgba(255, 255, 255, 0.82);
	margin: 0;
}

.home-treat-card-link{
	align-self: flex-end;
	margin-top: 20px;
	padding: 10px 18px;
	border-radius: 8px;
	background: var(--accent-secondary-color);
	color: var(--white-color);
	font-size: 14px;
	font-weight: 600;
	text-transform: capitalize;
	transition: background 0.3s ease;
}

.home-treat-card-link:hover{
	background: var(--white-color);
	color: var(--accent-color);
}

.home-what-we-treat-action{
	margin-top: 48px;
}

.home-what-we-treat-action .btn-default{
	min-width: 180px;
}

@media only screen and (max-width: 767px){
	.home-what-we-treat{
		padding: 70px 0;
		background-attachment: scroll;
	}

	.home-what-we-treat-header{
		margin-bottom: 32px;
	}

	.home-treat-card{
		min-height: auto;
		padding: 22px 20px;
	}

	.home-treat-card-body h3{
		font-size: 20px;
	}

	.home-what-we-treat-action{
		margin-top: 36px;
	}
}

/************************************/
/***   Home Core Services css       ***/
/************************************/

.home-core-services{
	padding: 100px 0;
	background: #f7f4ef;
}

.home-core-services-header{
	margin-bottom: 48px;
}

.home-core-services-header h2{
	font-family: var(--accent-font);
	font-size: clamp(34px, 4.5vw, 48px);
	color: var(--primary-color);
	margin: 0;
}

.home-core-service-card{
	height: 100%;
	background: var(--white-color);
	border-radius: 22px;
	overflow: hidden;
	border: 1px solid rgba(2, 51, 32, 0.06);
	box-shadow: 0 12px 32px rgba(2, 51, 32, 0.07);
	transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.home-core-service-card:hover{
	transform: translateY(-6px);
	box-shadow: 0 20px 44px rgba(2, 51, 32, 0.12);
}

.home-core-service-media{
	position: relative;
	line-height: 0;
}

.home-core-service-media img{
	width: 100%;
	aspect-ratio: 16 / 11;
	object-fit: cover;
	display: block;
}

.home-core-service-badge{
	position: absolute;
	left: 22px;
	bottom: -24px;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--accent-secondary-color);
	color: var(--white-color);
	font-size: 18px;
	box-shadow: 0 8px 20px rgba(116, 164, 42, 0.35);
	z-index: 1;
}

.home-core-service-content{
	padding: 38px 24px 26px;
}

.home-core-service-content h3{
	font-family: var(--accent-font);
	font-size: 24px;
	line-height: 1.3;
	color: var(--accent-color);
	margin-bottom: 12px;
}

.home-core-service-content p{
	font-size: 15px;
	line-height: 1.65;
	color: var(--text-color);
	margin-bottom: 18px;
}

.home-core-service-tags{
	list-style: none;
	margin: 0 0 20px;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 10px 18px;
}

.home-core-service-tags li{
	font-size: 14px;
	font-weight: 600;
	color: var(--primary-color);
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.home-core-service-tags li i{
	color: var(--accent-secondary-color);
	font-size: 13px;
}

.home-core-service-link{
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 15px;
	font-weight: 600;
	color: var(--accent-color);
	transition: gap 0.3s ease, color 0.3s ease;
}

.home-core-service-link:hover{
	color: var(--accent-secondary-color);
	gap: 12px;
}

.home-core-services-action{
	margin-top: 48px;
}

.home-core-services-action .btn-default{
	min-width: 180px;
}

@media only screen and (max-width: 767px){
	.home-core-services{
		padding: 70px 0;
	}

	.home-core-services-header{
		margin-bottom: 32px;
	}

	.home-core-service-content{
		padding: 34px 20px 22px;
	}

	.home-core-service-content h3{
		font-size: 22px;
	}

	.home-core-services-action{
		margin-top: 36px;
	}
}

/************************************/
/***  Home Programs & Camps css     ***/
/************************************/

.home-programs-camps{
	padding: 100px 0;
	background: var(--white-color);
	position: relative;
	overflow: hidden;
}

.home-programs-camps::before{
	content: '';
	position: absolute;
	top: 50%;
	left: -120px;
	width: 320px;
	height: 320px;
	border-radius: 50%;
	background: rgba(116, 164, 42, 0.06);
	transform: translateY(-50%);
	pointer-events: none;
}

.home-programs-camps-video{
	position: relative;
	border-radius: 24px;
	overflow: hidden;
	box-shadow: 0 24px 60px rgba(2, 51, 32, 0.14);
}

.home-programs-camps-video-frame{
	margin: 0;
	line-height: 0;
}

.home-programs-camps-video-frame img{
	width: 100%;
	aspect-ratio: 1;
	object-fit: cover;
	display: block;
}

.home-programs-camps-play{
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 14px;
	background: linear-gradient(180deg, rgba(2, 51, 32, 0.15) 0%, rgba(2, 51, 32, 0.55) 100%);
	color: var(--white-color);
	text-decoration: none;
	transition: background 0.35s ease;
}

.home-programs-camps-play:hover{
	background: linear-gradient(180deg, rgba(2, 51, 32, 0.25) 0%, rgba(2, 51, 32, 0.65) 100%);
	color: var(--white-color);
}

.home-programs-camps-play-icon{
	width: 72px;
	height: 72px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--accent-secondary-color);
	box-shadow: 0 12px 30px rgba(116, 164, 42, 0.45);
	font-size: 22px;
	padding-left: 4px;
	transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.home-programs-camps-play:hover .home-programs-camps-play-icon{
	transform: scale(1.08);
	box-shadow: 0 16px 36px rgba(116, 164, 42, 0.55);
}

.home-programs-camps-play-text{
	font-size: 15px;
	font-weight: 600;
	letter-spacing: 0.02em;
}

.home-programs-camps-content{
	position: relative;
	z-index: 1;
}

.home-programs-camps-eyebrow{
	display: inline-block;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--accent-secondary-color);
	margin-bottom: 14px;
}

.home-programs-camps-title{
	font-family: var(--accent-font);
	font-size: clamp(30px, 3.8vw, 44px);
	line-height: 1.2;
	color: var(--primary-color);
	margin-bottom: 16px;
}

.home-programs-camps-lead{
	font-size: 17px;
	line-height: 1.65;
	color: var(--text-color);
	margin-bottom: 28px;
	max-width: 620px;
}

.home-programs-camps-details{
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-bottom: 32px;
}

.home-programs-camps-detail{
	padding: 16px 20px 16px 24px;
	border-radius: 14px;
	border-left: 4px solid transparent;
	background: var(--secondary-color);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.home-programs-camps-detail:hover{
	transform: translateX(4px);
	box-shadow: 0 8px 24px rgba(2, 51, 32, 0.08);
}

.home-programs-camps-detail--primary{
	border-left-color: var(--primary-color);
	background: linear-gradient(90deg, rgba(2, 51, 32, 0.08) 0%, rgba(2, 51, 32, 0.02) 100%);
}

.home-programs-camps-detail--accent{
	border-left-color: var(--accent-secondary-color);
	background: linear-gradient(90deg, rgba(116, 164, 42, 0.12) 0%, rgba(116, 164, 42, 0.03) 100%);
}

.home-programs-camps-detail--warm{
	border-left-color: #c47a2c;
	background: linear-gradient(90deg, rgba(196, 122, 44, 0.12) 0%, rgba(196, 122, 44, 0.03) 100%);
}

.home-programs-camps-detail-label{
	display: block;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--accent-color);
	margin-bottom: 6px;
}

.home-programs-camps-detail--accent .home-programs-camps-detail-label{
	color: #5a7f1f;
}

.home-programs-camps-detail--warm .home-programs-camps-detail-label{
	color: #9a5f1f;
}

.home-programs-camps-detail-value{
	margin: 0;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.55;
	color: var(--primary-color);
}

.home-programs-camps-detail-value i{
	margin-right: 8px;
	color: var(--accent-secondary-color);
	font-size: 15px;
}

.home-programs-camps-detail--warm .home-programs-camps-detail-value i{
	color: #c47a2c;
}

.home-programs-camps-action .btn-default{
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: var(--accent-secondary-color);
	border-color: var(--accent-secondary-color);
}

.home-programs-camps-action .btn-default:hover{
	background: var(--accent-color);
	border-color: var(--accent-color);
}

.home-programs-camps--listing{
	padding: 80px 0;
}

.home-programs-camps--listing + .home-programs-camps--listing{
	padding-top: 0;
}

.home-programs-camps--listing:nth-of-type(even){
	background: rgba(116, 164, 42, 0.04);
}

.home-programs-camps--listing .home-programs-camps-title{
	margin-bottom: 24px;
}

@media only screen and (max-width: 991px){
	.home-programs-camps{
		padding: 80px 0;
	}

	.home-programs-camps-video{
		max-width: 520px;
		margin: 0 auto;
	}

	.home-programs-camps-lead{
		max-width: none;
	}
}

@media only screen and (max-width: 767px){
	.home-programs-camps{
		padding: 70px 0;
	}

	.home-programs-camps-title{
		font-size: 28px;
	}

	.home-programs-camps-lead{
		font-size: 16px;
		margin-bottom: 22px;
	}

	.home-programs-camps-details{
		gap: 10px;
		margin-bottom: 26px;
	}

	.home-programs-camps-detail{
		padding: 14px 16px 14px 18px;
	}

	.home-programs-camps-detail-value{
		font-size: 15px;
	}

	.home-programs-camps-play-icon{
		width: 62px;
		height: 62px;
		font-size: 20px;
	}
}

/************************************/
/***   Home Meet Experts css        ***/
/************************************/

.home-meet-experts{
	position: relative;
	padding: 100px 0;
	background: url('../images/home-about-team.jpg') center center / cover no-repeat;
	overflow: hidden;
}

.home-meet-experts-overlay{
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(18, 24, 22, 0.92) 0%, rgba(2, 51, 32, 0.94) 100%);
}

.home-meet-experts .container{
	position: relative;
	z-index: 1;
}

.home-meet-experts-header{
	max-width: 720px;
	margin: 0 auto 52px;
}

.home-meet-experts-eyebrow{
	display: inline-block;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--accent-secondary-color);
	margin-bottom: 14px;
}

.home-meet-experts-header h2{
	font-family: var(--accent-font);
	font-size: clamp(34px, 4.5vw, 48px);
	line-height: 1.2;
	color: var(--white-color);
	margin: 0;
}

.home-expert-card{
	height: 100%;
	display: flex;
	flex-direction: column;
	background: var(--white-color);
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
	border: 1px solid rgba(255, 255, 255, 0.08);
	transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.home-expert-card:hover{
	transform: translateY(-10px);
	box-shadow: 0 28px 56px rgba(0, 0, 0, 0.28);
}

.home-expert-card-media{
	line-height: 0;
	overflow: hidden;
}

.home-expert-card-media img{
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	display: block;
	transition: transform 0.45s ease;
}

.home-expert-card:hover .home-expert-card-media img{
	transform: scale(1.05);
}

.home-expert-card-body{
	flex: 1;
	display: flex;
	flex-direction: column;
	padding: 24px 22px 26px;
}

.home-expert-card-name{
	font-family: var(--accent-font);
	font-size: 24px;
	line-height: 1.25;
	color: var(--primary-color);
	margin-bottom: 6px;
}

.home-expert-card-role{
	font-size: 15px;
	font-weight: 600;
	color: var(--accent-secondary-color);
	margin-bottom: 10px;
}

.home-expert-card-specialty{
	font-size: 16px;
	font-weight: 700;
	color: var(--primary-color);
	margin-bottom: 16px;
}

.home-expert-card-divider{
	margin: 0 0 14px;
	border: 0;
	border-top: 1px solid rgba(2, 51, 32, 0.12);
	opacity: 1;
}

.home-expert-card-stats{
	font-size: 13px;
	font-weight: 700;
	line-height: 1.55;
	color: #4a4a4a;
	margin-bottom: 12px;
}

.home-expert-card-bio{
	font-size: 14px;
	line-height: 1.65;
	color: var(--text-color);
	margin: 0;
	flex: 1;
}

.home-meet-experts-action{
	margin-top: 48px;
}

.home-meet-experts-action .btn-default{
	display: inline-flex;
	align-items: center;
	gap: 10px;
	min-width: 190px;
	background: var(--accent-secondary-color);
	border-color: var(--accent-secondary-color);
}

.home-meet-experts-action .btn-default:hover{
	background: var(--white-color);
	color: var(--accent-color);
	border-color: var(--white-color);
}

@media only screen and (max-width: 991px){
	.home-meet-experts{
		padding: 80px 0;
	}

	.home-meet-experts-header{
		margin-bottom: 40px;
	}
}

@media only screen and (max-width: 767px){
	.home-meet-experts{
		padding: 70px 0;
	}

	.home-meet-experts-header{
		margin-bottom: 32px;
	}

	.home-expert-card-body{
		padding: 20px 18px 22px;
	}

	.home-expert-card-name{
		font-size: 22px;
	}

	.home-meet-experts-action{
		margin-top: 36px;
	}
}

/************************************/
/***  Home Patient Feedback css   ***/
/************************************/

.home-patient-feedback{
	padding: 100px 0;
	background: linear-gradient(180deg, #f7f4ef 0%, var(--secondary-color) 100%);
	overflow: hidden;
	position: relative;
}

.home-patient-feedback::before{
	content: '';
	position: absolute;
	top: -80px;
	right: -60px;
	width: 260px;
	height: 260px;
	border-radius: 50%;
	background: rgba(116, 164, 42, 0.08);
	pointer-events: none;
}

.home-patient-feedback::after{
	content: '';
	position: absolute;
	bottom: -100px;
	left: -70px;
	width: 300px;
	height: 300px;
	border-radius: 50%;
	background: rgba(2, 51, 32, 0.05);
	pointer-events: none;
}

.home-patient-feedback .container{
	position: relative;
	z-index: 1;
}

.home-patient-feedback-header{
	margin-bottom: 48px;
}

.home-patient-feedback-header h2{
	font-family: var(--accent-font);
	font-size: clamp(34px, 4.5vw, 48px);
	line-height: 1.2;
	color: var(--primary-color);
	margin-bottom: 24px;
}

.home-patient-feedback-rating{
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
}

.home-patient-feedback-rating-label{
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--accent-secondary-color);
}

.home-patient-feedback-stars{
	display: flex;
	align-items: center;
	gap: 4px;
	color: #f5b301;
	font-size: 20px;
}

.home-patient-feedback-count{
	margin: 0;
	font-size: 15px;
	color: var(--text-color);
}

.home-patient-feedback-count strong{
	color: var(--primary-color);
	font-weight: 600;
}

.home-patient-feedback-google{
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: 4px;
	padding: 6px 14px;
	border-radius: 999px;
	background: var(--white-color);
	border: 1px solid rgba(2, 51, 32, 0.1);
	color: var(--primary-color);
	font-size: 13px;
	font-weight: 600;
	box-shadow: 0 6px 18px rgba(2, 51, 32, 0.06);
}

.home-patient-feedback-google i{
	font-size: 16px;
	color: #4285f4;
}

.home-patient-feedback-slider-wrap{
	position: relative;
	padding: 0 56px;
}

.home-patient-feedback-nav{
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 2;
	width: 46px;
	height: 46px;
	border: 1px solid rgba(2, 51, 32, 0.12);
	border-radius: 50%;
	background: var(--white-color);
	color: var(--primary-color);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	cursor: pointer;
	transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease, color 0.3s ease;
	box-shadow: 0 8px 22px rgba(2, 51, 32, 0.1);
}

.home-patient-feedback-nav:hover{
	background: var(--accent-secondary-color);
	border-color: var(--accent-secondary-color);
	color: var(--white-color);
	transform: translateY(-50%) scale(1.05);
}

.home-patient-feedback-prev{
	left: 0;
}

.home-patient-feedback-next{
	right: 0;
}

.home-patient-feedback-swiper{
	overflow: hidden;
	padding: 8px 4px 16px;
}

.home-feedback-card{
	height: 100%;
	min-height: 280px;
	display: flex;
	flex-direction: column;
	padding: 22px 22px 20px;
	border-radius: 18px;
	background: #1a1f1d;
	border: 1px solid rgba(255, 255, 255, 0.08);
	box-shadow: 0 14px 36px rgba(0, 0, 0, 0.22);
	transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.home-feedback-card:hover{
	transform: translateY(-4px);
	border-color: rgba(116, 164, 42, 0.35);
	box-shadow: 0 20px 44px rgba(0, 0, 0, 0.3);
}

.home-feedback-card-top{
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 16px;
}

.home-feedback-author{
	display: flex;
	align-items: center;
	gap: 12px;
	min-width: 0;
}

.home-feedback-avatar{
	flex-shrink: 0;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 17px;
	font-weight: 700;
	color: var(--white-color);
}

.home-feedback-avatar--primary{
	background: var(--primary-color);
	border: 2px solid rgba(255, 255, 255, 0.15);
}

.home-feedback-avatar--accent{
	background: var(--accent-secondary-color);
}

.home-feedback-avatar--warm{
	background: #c47a2c;
}

.home-feedback-author h3{
	font-size: 16px;
	font-weight: 700;
	color: var(--white-color);
	margin: 0 0 2px;
	line-height: 1.3;
}

.home-feedback-author time{
	font-size: 13px;
	color: rgba(255, 255, 255, 0.55);
}

.home-feedback-google-badge{
	flex-shrink: 0;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.08);
	color: #ea4335;
	font-size: 14px;
}

.home-feedback-card-rating{
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px 10px;
	margin-bottom: 14px;
	color: #f5b301;
	font-size: 14px;
}

.home-feedback-verified{
	display: inline-flex;
	align-items: center;
	gap: 5px;
	font-size: 12px;
	font-weight: 600;
	color: #5b9cf5;
}

.home-feedback-card-text{
	flex: 1;
	display: flex;
	flex-direction: column;
}

.home-feedback-review-text{
	margin: 0;
	font-size: 14px;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.88);
	display: -webkit-box;
	-webkit-line-clamp: 4;
	-webkit-box-orient: vertical;
	overflow: hidden;
	transition: -webkit-line-clamp 0.3s ease;
}

.home-feedback-card.is-expanded .home-feedback-review-text{
	display: block;
	-webkit-line-clamp: unset;
	overflow: visible;
}

.home-feedback-read-more{
	align-self: flex-start;
	margin-top: 10px;
	padding: 0;
	border: 0;
	background: none;
	font-size: 13px;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.55);
	cursor: pointer;
	transition: color 0.3s ease;
}

.home-feedback-read-more:hover{
	color: var(--accent-secondary-color);
}

.home-feedback-card.is-expanded .home-feedback-read-more{
	color: var(--accent-secondary-color);
}

.home-patient-feedback-action{
	margin-top: 44px;
}

.home-patient-feedback-action .btn-default{
	display: inline-flex;
	align-items: center;
	gap: 10px;
	min-width: 220px;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	font-size: 14px;
	background: var(--accent-secondary-color);
	border-color: var(--accent-secondary-color);
}

.home-patient-feedback-action .btn-default:hover{
	background: var(--white-color);
	color: var(--accent-color);
	border-color: var(--white-color);
}

@media only screen and (max-width: 991px){
	.home-patient-feedback{
		padding: 80px 0;
	}

	.home-patient-feedback-slider-wrap{
		padding: 0 48px;
	}

	.home-patient-feedback-nav{
		width: 42px;
		height: 42px;
	}
}

@media only screen and (max-width: 767px){
	.home-patient-feedback{
		padding: 70px 0;
	}

	.home-patient-feedback-header{
		margin-bottom: 36px;
	}

	.home-patient-feedback-slider-wrap{
		padding: 0 40px;
	}

	.home-patient-feedback-nav{
		width: 36px;
		height: 36px;
		font-size: 12px;
	}

	.home-feedback-card{
		min-height: 260px;
		padding: 18px 18px 16px;
	}

	.home-patient-feedback-action{
		margin-top: 32px;
	}
}

@media only screen and (max-width: 575px){
	.home-patient-feedback-slider-wrap{
		padding: 0 34px;
	}
}

/************************************/
/***   Home Gallery Showcase css  ***/
/************************************/

.home-gallery-showcase{
	padding: 100px 0 40px;
	background: var(--white-color);
	overflow: hidden;
}

.home-gallery-showcase-header{
	margin-bottom: 48px;
}

.home-gallery-showcase-header h2{
	font-family: var(--accent-font);
	font-size: clamp(34px, 4.5vw, 48px);
	line-height: 1.2;
	color: var(--primary-color);
	margin: 0;
}

.home-gallery-accordion-wrap{
	max-width: 1320px;
	margin: 0 auto;
	padding: 0 24px;
}

.home-gallery-accordion{
	display: flex;
	height: clamp(320px, 42vw, 480px);
	border-radius: 22px;
	overflow: hidden;
	box-shadow: 0 24px 60px rgba(2, 51, 32, 0.14);
}

.home-gallery-panel{
	position: relative;
	flex: 1;
	min-width: 0;
	transition: flex 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

.home-gallery-panel.is-featured{
	flex: 2.15;
}

.home-gallery-accordion:hover .home-gallery-panel{
	flex: 0.9;
}

.home-gallery-accordion:hover .home-gallery-panel:hover,
.home-gallery-accordion .home-gallery-panel.is-featured{
	flex: 2.35;
}

.home-gallery-panel-link{
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
	overflow: hidden;
	text-decoration: none;
	color: var(--white-color);
}

.home-gallery-panel-link img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.6s ease;
}

.home-gallery-panel:hover .home-gallery-panel-link img,
.home-gallery-panel.is-featured .home-gallery-panel-link img{
	transform: scale(1.06);
}

.home-gallery-panel-shade{
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(2, 51, 32, 0.08) 0%, rgba(2, 51, 32, 0.72) 100%);
	opacity: 0.55;
	transition: opacity 0.4s ease;
}

.home-gallery-panel:hover .home-gallery-panel-shade,
.home-gallery-panel.is-featured .home-gallery-panel-shade{
	opacity: 0.88;
}

.home-gallery-panel-content{
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 24px 20px;
	transform: translateY(18px);
	opacity: 0;
	transition: transform 0.4s ease, opacity 0.4s ease;
}

.home-gallery-panel.is-featured .home-gallery-panel-content{
	transform: translateY(0);
	opacity: 1;
}

.home-gallery-panel:hover .home-gallery-panel-content{
	transform: translateY(0);
	opacity: 1;
}

.home-gallery-panel-icons{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px;
	margin-bottom: 14px;
}

.home-gallery-panel-icons span{
	width: 34px;
	height: 34px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.16);
	border: 1px solid rgba(255, 255, 255, 0.22);
	font-size: 13px;
	backdrop-filter: blur(4px);
}

.home-gallery-panel-content h3{
	font-family: var(--accent-font);
	font-size: clamp(18px, 2vw, 24px);
	line-height: 1.3;
	color: var(--white-color);
	margin-bottom: 8px;
}

.home-gallery-panel-content p{
	margin: 0;
	font-size: 14px;
	line-height: 1.65;
	color: rgba(255, 255, 255, 0.88);
	max-width: 360px;
}

.home-gallery-panel.is-featured .home-gallery-panel-content p{
	max-width: 420px;
	margin: 0 auto;
	text-align: center;
}

.home-gallery-panel.is-featured .home-gallery-panel-content h3{
	text-align: center;
}

.home-gallery-accordion-mobile{
	display: none;
}

.home-gallery-mobile-card{
	height: 100%;
	border-radius: 18px;
	overflow: hidden;
	box-shadow: 0 16px 40px rgba(2, 51, 32, 0.14);
}

.home-gallery-mobile-link{
	position: relative;
	display: block;
	height: 360px;
	color: var(--white-color);
	text-decoration: none;
}

.home-gallery-mobile-link img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.home-gallery-mobile-link .home-gallery-panel-content{
	transform: translateY(0);
	opacity: 1;
	padding: 22px 18px;
}

.home-gallery-mobile-pagination{
	position: relative;
	margin-top: 18px;
}

.home-gallery-mobile-pagination .swiper-pagination-bullet{
	width: 10px;
	height: 10px;
	background: rgba(2, 51, 32, 0.25);
	opacity: 1;
}

.home-gallery-mobile-pagination .swiper-pagination-bullet-active{
	background: var(--accent-secondary-color);
	width: 24px;
	border-radius: 999px;
}

.home-gallery-showcase-action{
	margin-top: 32px;
}

.home-gallery-showcase-action .btn-default{
	display: inline-flex;
	align-items: center;
	gap: 10px;
	min-width: 180px;
	background: var(--accent-secondary-color);
	border-color: var(--accent-secondary-color);
}

.home-gallery-showcase-action .btn-default:hover{
	background: var(--primary-color);
	border-color: var(--primary-color);
}

@media only screen and (max-width: 991px){
	.home-gallery-showcase{
		padding: 80px 0 32px;
	}

	.home-gallery-showcase-header{
		margin-bottom: 36px;
	}

	.home-gallery-accordion{
		height: clamp(280px, 50vw, 380px);
	}
}

@media only screen and (max-width: 767px){
	.home-gallery-showcase{
		padding: 70px 0 28px;
	}

	.home-gallery-accordion{
		display: none;
	}

	.home-gallery-accordion-mobile{
		display: block;
	}

	.home-gallery-showcase-action{
		margin-top: 36px;
	}
}

/************************************/
/***    Home Blog Posts css       ***/
/************************************/

.home-blog-posts{
	padding: 40px 0 100px;
	background: var(--white-color);
}

.home-blog-posts-header{
	margin-bottom: 48px;
}

.home-blog-posts-header h2{
	font-family: var(--accent-font);
	font-size: clamp(34px, 4.5vw, 48px);
	line-height: 1.2;
	color: var(--primary-color);
	margin: 0;
}

.home-blog-card{
	height: 100%;
	display: flex;
	flex-direction: column;
	background: var(--white-color);
	border-radius: 20px;
	overflow: hidden;
	border: 1px solid rgba(2, 51, 32, 0.08);
	box-shadow: 0 12px 32px rgba(2, 51, 32, 0.07);
	transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.home-blog-card:hover{
	transform: translateY(-6px);
	box-shadow: 0 22px 44px rgba(2, 51, 32, 0.12);
	border-color: rgba(116, 164, 42, 0.25);
}

.home-blog-card-image{
	display: block;
	line-height: 0;
	overflow: hidden;
}

.home-blog-card-image img{
	width: 100%;
	aspect-ratio: 16 / 10;
	object-fit: cover;
	display: block;
	transition: transform 0.45s ease;
}

.home-blog-card:hover .home-blog-card-image img{
	transform: scale(1.05);
}

.home-blog-card-body{
	flex: 1;
	display: flex;
	flex-direction: column;
	padding: 22px 22px 24px;
}

.home-blog-card-meta{
	list-style: none;
	margin: 0 0 14px;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 8px 16px;
}

.home-blog-card-meta li{
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 13px;
	font-weight: 600;
	color: var(--accent-secondary-color);
}

.home-blog-card-meta li i{
	font-size: 12px;
}

.home-blog-card-body h3{
	font-family: var(--accent-font);
	font-size: 22px;
	line-height: 1.35;
	margin-bottom: 12px;
}

.home-blog-card-body h3 a{
	color: var(--primary-color);
	text-decoration: none;
	transition: color 0.3s ease;
}

.home-blog-card-body h3 a:hover{
	color: var(--accent-secondary-color);
}

.home-blog-card-body p{
	font-size: 15px;
	line-height: 1.65;
	color: var(--text-color);
	margin: 0 0 20px;
	flex: 1;
}

.home-blog-readmore{
	display: inline-flex;
	align-items: center;
	align-self: flex-start;
	padding: 10px 22px;
	border-radius: 8px;
	background: var(--accent-secondary-color);
	color: var(--white-color);
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	transition: background 0.3s ease, transform 0.3s ease;
}

.home-blog-readmore:hover{
	background: var(--primary-color);
	color: var(--white-color);
	transform: translateY(-2px);
}

@media only screen and (max-width: 991px){
	.home-blog-posts{
		padding: 32px 0 80px;
	}

	.home-blog-posts-header{
		margin-bottom: 36px;
	}
}

@media only screen and (max-width: 767px){
	.home-blog-posts{
		padding: 28px 0 70px;
	}

	.home-blog-posts-header{
		margin-bottom: 32px;
	}

	.home-blog-card-body{
		padding: 18px 18px 20px;
	}

	.home-blog-card-body h3{
		font-size: 20px;
	}

	.home-blog-card-meta{
		gap: 6px 12px;
	}
}

/************************************/
/***   Blog Detail Related css    ***/
/************************************/

.blog-related-posts{
	padding: 0 0 100px;
	background: var(--secondary-color);
}

.blog-related-posts-header{
	max-width: 620px;
	margin: 0 auto 48px;
}

.blog-related-posts-header h2{
	font-family: var(--accent-font);
	font-size: clamp(32px, 4vw, 42px);
	color: var(--primary-color);
	margin-bottom: 12px;
}

.blog-related-posts-header p{
	font-size: 17px;
	line-height: 1.6;
	color: var(--text-color);
	margin: 0;
}

.blog-related-posts-action{
	margin-top: 48px;
}

@media only screen and (max-width: 767px){
	.blog-related-posts{
		padding-bottom: 70px;
	}

	.blog-related-posts-header{
		margin-bottom: 32px;
	}

	.blog-related-posts-action{
		margin-top: 36px;
	}
}

/************************************/
/***     About Page css           ***/
/************************************/

.about-stats-section{
	padding: 70px 0;
	background: var(--primary-color);
}

.about-stats-section .why-choose-counter-box{
	margin: 0;
	border-top: 0;
	padding-top: 0;
}

.about-stats-section .why-choose-counter-item{
	border-color: rgba(255, 255, 255, 0.12);
}

.about-stats-section .why-choose-counter-item::before{
	background: rgba(255, 255, 255, 0.15);
}

.about-stats-section .why-choose-counter-content h3,
.about-stats-section .why-choose-counter-content p{
	color: var(--white-color);
}

.about-page-values{
	padding-top: 90px;
}

@media only screen and (max-width: 767px){
	.about-stats-section{
		padding: 50px 0;
	}

	.about-page-values{
		padding-top: 70px;
	}
}

/************************************/
/***   Inner Page Green Section   ***/
/************************************/

.page-section-green.home-what-we-treat,
.page-section-green.home-meet-experts{
	background: var(--accent-color);
	background-image: none;
	padding-top: 80px;
	padding-bottom: 90px;
}

.page-section-green.home-what-we-treat .home-what-we-treat-overlay,
.page-section-green.home-meet-experts .home-meet-experts-overlay{
	display: none;
}

.page-section-green .home-treat-card{
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(255, 255, 255, 0.14);
}

.page-section-green .home-treat-card:hover{
	background: rgba(255, 255, 255, 0.12);
	border-color: rgba(116, 164, 42, 0.55);
}

@media only screen and (max-width: 767px){
	.page-section-green.home-what-we-treat,
	.page-section-green.home-meet-experts{
		padding-top: 60px;
		padding-bottom: 70px;
	}
}

/************************************/
/***      Home FAQ css            ***/
/************************************/

.home-faq{
	padding: 100px 0;
	background: linear-gradient(180deg, var(--secondary-color) 0%, #f7f4ef 100%);
	overflow: hidden;
}

.home-faq-header{
	margin-bottom: 28px;
}

.home-faq-eyebrow{
	display: inline-block;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--accent-secondary-color);
	margin-bottom: 12px;
}

.home-faq-header h2{
	font-family: var(--accent-font);
	font-size: clamp(30px, 3.8vw, 42px);
	line-height: 1.2;
	color: var(--primary-color);
	margin-bottom: 12px;
}

.home-faq-header p{
	font-size: 16px;
	line-height: 1.65;
	color: var(--text-color);
	margin: 0;
	max-width: 520px;
}

.home-faq-accordion{
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.home-faq-item{
	border: 1px solid rgba(2, 51, 32, 0.1);
	border-radius: 14px;
	background: var(--white-color);
	overflow: hidden;
	box-shadow: 0 8px 24px rgba(2, 51, 32, 0.05);
	transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.home-faq-item:has(.accordion-button:not(.collapsed)){
	border-color: rgba(116, 164, 42, 0.35);
	box-shadow: 0 12px 28px rgba(2, 51, 32, 0.08);
}

.home-faq-item .accordion-button{
	font-family: var(--accent-font);
	font-size: 17px;
	font-weight: 600;
	line-height: 1.45;
	color: var(--primary-color);
	background: transparent;
	padding: 18px 52px 18px 20px;
	box-shadow: none;
}

.home-faq-item .accordion-button:not(.collapsed){
	color: var(--accent-color);
	background: rgba(116, 164, 42, 0.08);
}

.home-faq-item .accordion-button:focus{
	box-shadow: none;
	border-color: transparent;
}

.home-faq-item .accordion-button::after{
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: rgba(2, 51, 32, 0.06);
	background-image: none;
	display: flex;
	align-items: center;
	justify-content: center;
	content: '\f067';
	font-family: 'Font Awesome 6 Free';
	font-weight: 900;
	font-size: 12px;
	color: var(--accent-secondary-color);
	transform: none;
	transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.home-faq-item .accordion-button:not(.collapsed)::after{
	content: '\f068';
	background: var(--accent-secondary-color);
	color: var(--white-color);
	transform: rotate(180deg);
}

.home-faq-item .accordion-body{
	padding: 0 20px 18px;
}

.home-faq-item .accordion-button:not(.collapsed) + .accordion-collapse .accordion-body{
	padding-top: 4px;
}

.home-faq-item .accordion-body p{
	margin: 0;
	font-size: 15px;
	line-height: 1.7;
	color: var(--text-color);
}

.home-faq-media{
	position: relative;
}

.home-faq-image{
	margin: 0;
	border-radius: 22px;
	overflow: hidden;
	box-shadow: 0 20px 50px rgba(2, 51, 32, 0.14);
}

.home-faq-image img{
	width: 100%;
	aspect-ratio: 4 / 5;
	object-fit: cover;
	display: block;
}

.home-faq-contact-box{
	position: absolute;
	left: 24px;
	right: 24px;
	bottom: 24px;
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 18px 20px;
	border-radius: 16px;
	background: var(--primary-color);
	color: var(--white-color);
	text-decoration: none;
	box-shadow: 0 14px 34px rgba(2, 51, 32, 0.25);
	transition: transform 0.3s ease, background 0.3s ease;
}

.home-faq-contact-box:hover{
	background: var(--accent-color);
	color: var(--white-color);
	transform: translateY(-4px);
}

.home-faq-contact-icon{
	flex-shrink: 0;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.12);
	font-size: 18px;
}

.home-faq-contact-text{
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.home-faq-contact-text strong{
	font-size: 16px;
	font-weight: 700;
}

.home-faq-contact-text span{
	font-size: 14px;
	opacity: 0.9;
}

@media only screen and (max-width: 991px){
	.home-faq{
		padding: 80px 0;
	}

	.home-faq-header p{
		max-width: none;
	}

	.home-faq-image img{
		aspect-ratio: 16 / 11;
	}
}

@media only screen and (max-width: 767px){
	.home-faq{
		padding: 70px 0;
	}

	.home-faq-item .accordion-button{
		font-size: 16px;
		padding: 16px 18px 16px 16px;
	}

	.home-faq-contact-box{
		left: 16px;
		right: 16px;
		bottom: 16px;
		padding: 16px;
	}
}

/************************************/
/***   Home Location Map css      ***/
/************************************/

.home-location-map{
	position: relative;
	padding: 90px 0;
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	background-attachment: fixed;
	overflow: hidden;
}

.home-location-map-overlay{
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, rgba(2, 51, 32, 0.94) 0%, rgba(2, 51, 32, 0.88) 52%, rgba(2, 51, 32, 0.78) 100%);
}

.home-location-map .container{
	position: relative;
	z-index: 1;
}

.home-location-eyebrow{
	display: inline-block;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--accent-secondary-color);
	margin-bottom: 14px;
}

.home-location-content h2{
	font-family: var(--accent-font);
	font-size: clamp(32px, 4.2vw, 44px);
	line-height: 1.2;
	color: var(--white-color);
	margin-bottom: 14px;
}

.home-location-content > p{
	font-size: 16px;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.86);
	margin-bottom: 28px;
	max-width: 520px;
}

.home-location-details{
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.home-location-details li{
	display: flex;
	align-items: flex-start;
	gap: 14px;
	padding: 16px 18px;
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.12);
	backdrop-filter: blur(8px);
}

.home-location-item-body{
	display: flex;
	flex-direction: column;
	gap: 4px;
	font-size: 15px;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.92);
}

.home-location-item-body strong{
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--accent-secondary-color);
}

.home-location-icon{
	flex-shrink: 0;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--accent-secondary-color);
	color: var(--white-color);
	font-size: 15px;
}

.home-location-details a{
	color: var(--white-color);
	text-decoration: none;
	transition: color 0.3s ease;
}

.home-location-details a:hover{
	color: var(--accent-secondary-color);
}

.home-location-action{
	margin-top: 28px;
}

.home-location-action .btn-default{
	background: var(--accent-secondary-color);
	border-color: var(--accent-secondary-color);
}

.home-location-action .btn-default:hover{
	background: var(--white-color);
	color: var(--primary-color);
}

.home-location-map-frame{
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.22);
	line-height: 0;
}

.home-location-map-frame iframe{
	display: block;
	width: 100%;
	height: 100%;
	min-height: 430px;
	border: 0;
}

@media only screen and (max-width: 991px){
	.home-location-map{
		padding: 70px 0;
		background-attachment: scroll;
	}

	.home-location-map-overlay{
		background: linear-gradient(180deg, rgba(2, 51, 32, 0.94) 0%, rgba(2, 51, 32, 0.9) 100%);
	}

	.home-location-content > p{
		max-width: none;
	}

	.home-location-map-frame iframe{
		min-height: 340px;
	}
}

@media only screen and (max-width: 767px){
	.home-location-map{
		padding: 60px 0;
	}

	.home-location-details li{
		padding: 14px 16px;
	}

	.home-location-item-body{
		font-size: 14px;
	}

	.home-location-map-frame iframe{
		min-height: 280px;
	}
}

/************************************/
/***    15. Our Testimonial css   ***/
/************************************/

.our-testimonials{
	padding: 50px 0;
}

.testimonial-image{
	margin-bottom: 30px;
}

.testimonial-image figure{
	display: block;
	border-radius: 30px;
}

.testimonial-image img{
	width: 100%;
	aspect-ratio: 1 / 0.7581;
	object-fit: cover;
	border-radius: 30px;
}

.testimonial-review-box{
	background: var(--primary-color);
	border-radius: 30px;
	padding: 40px;
}

.testimonial-review-header{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 15px 20px;
	margin-bottom: 60px;
}

.testimonial-review-title h3{
	font-size: 30px;
	text-transform: capitalize;
	color: var(--white-color);
}

.testimonial-review-counter{
	display: flex;
	align-items: center;
}

.testimonial-review-counter p{
	color: var(--white-color);
	line-height: normal;
	max-width: 100px;
	margin: 0;
}

.testimonial-review-counter span{
	background: var(--white-color);
	border-radius: 100px;
	font-weight: 500;
	line-height: normal;
	color: var(--primary-color);
	padding: 4px 10px;
	margin-right: 10px;
}

.testimonial-review-body{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 15px 50px;
}

.testimonial-review-content{
	width: calc(100% - 106px);
}

.testimonial-review-content p{
	color: var(--white-color);
	margin: 0;
}

.testimonial-review-btn a{
	background: var(--accent-secondary-color);
	border-radius: 50%;
	width: 56px;
	height: 56px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease-in-out;
}

.testimonial-review-btn a:hover{
	background: var(--accent-color);
}

.testimonial-review-btn a img{
	max-width: 16px;
	transition: all 0.3s ease-in-out;
}

.testimonial-review-btn a:hover img{
	transform: rotate(45deg);
}

.our-testimonial-box{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.testimonial-item{
	position: relative;
	width: 100%;
    background: var(--white-color);
	border: 1px solid var(--divider-color);
    border-radius: 30px;
    padding: 40px;
    overflow: hidden;
}

.testimonial-author{
	display: flex;
	align-items: center;
	margin-bottom: 30px;
}

.testimonial-author .author-image{
	margin-right: 15px;
}

.testimonial-author .author-image figure{
	border-radius: 50%;
}

.testimonial-author .author-image img{
	max-width: 60px;
	width: 100%;
	border-radius: 50%;
}

.testimonial-author .author-content{
	width: calc(100% - 75px);
}

.testimonial-author .author-content h3{
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 5px;
}

.testimonial-author .author-content p{
	margin: 0;
}

.testimonial-item-content{
	margin-bottom: 15px;
}

.testimonial-item-content p{
	margin: 0;
}

.testimonial-rating i{
	font-size: 16px;
	color: var(--accent-secondary-color);
}

/************************************/
/***        16. Our FAQs css      ***/
/************************************/

.our-faqs{
	padding: 50px 0;
}

.faq-accordion .accordion-item{
	position: relative;
	border: 1px solid var(--divider-color);
    background: var(--white-color);
	border-radius: 10px;
	margin-bottom: 30px;
    padding: 0;
	transition: all 0.3s ease-in-out;
	overflow: hidden;
}

.faq-accordion .accordion-item:last-child{
	margin-bottom: 0;
}

.faq-accordion .accordion-header .accordion-button{
	font-size: 20px;
	font-weight: 400;
	line-height: 1.2em;
	background: var(--accent-color);
	color: var(--white-color);
	padding: 18px 50px 18px 20px;
	transition: all 0.3s ease-in-out;
}

.faq-accordion .accordion-header .accordion-button.collapsed{
	color: var(--primary-color);
	background: transparent;
}

.faq-accordion .accordion-item .accordion-button::after,
.faq-accordion .accordion-item .accordion-button.collapsed::after{
	content: '\f0fe';
	font-family: "FontAwesome";
	position: absolute;
	right: 20px;
	top: 19px;
	font-size: 22px;
	font-weight: 900;
    line-height: normal;
    color: var(--white-color);
}

.faq-accordion .accordion-item .accordion-button.collapsed::after{
	content: '\f146';
	color: var(--accent-color);
}

.faq-accordion .accordion-item .accordion-body{
	background: var(--accent-color);
	border-top: 1px solid var(--dark-divider-color);
	padding: 18px 50px 18px 20px;
	z-index: 1;
}

.faq-accordion .accordion-item .accordion-body p{
    color: var(--white-color);
	margin: 0;
}

.faqs-image{
	position: relative;
	padding: 35px 35px 30px 45px;
	margin-left: 20px;
}

.faqs-image::before{
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	background: var(--accent-secondary-color);
	border-radius: 30px;
	width: 310px;
	height: 310px;
}

.faqs-image figure{
	position: relative;
	display: block;
	border-radius: 30px;
	z-index: 1;
}

.faqs-image img{
	width: 100%;
	aspect-ratio: 1 / 1.01;
	object-fit: cover;
	border-radius: 30px;
}

.faqs-contact-box{
	position: absolute;
	bottom: 0;
	left: 0;
	background: var(--white-color);
	border: 1px solid var(--divider-color);
	border-radius: 20px;
	display: inline-flex;
	align-items: center;
	padding: 20px;
	animation: contactbox 3s infinite linear;
	overflow: hidden;
	z-index: 1;
}

@keyframes contactbox{
	50%{
		left: 40px;
	}
}

.faqs-contact-box::before{
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: var(--accent-color);
	width: 100%;
	height: 0;
	transition: all 0.4s ease-in-out;
	z-index: 0;
}

.faqs-contact-box:hover:before{
	border-radius: 0;
	height: 100%;
}

.faqs-contact-box .icon-box{
	position: relative;
	background-color: var(--accent-secondary-color);
	border-radius: 50%;
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 15px;
	z-index: 1;
}

.faqs-contact-box .icon-box i{
	font-size: 18px;
	color: var(--white-color);
}

.faqs-contact-box-content{
	position: relative;
	width: calc(100% - 65px);
	z-index: 1;
}

.faqs-contact-box-content h3{
	font-size: 20px;
	margin-bottom: 5px;
	transition: all 0.3s ease-in-out;
}

.faqs-contact-box-content p{
	margin: 0;
	transition: all 0.3s ease-in-out;
}

.faqs-contact-box:hover .faqs-contact-box-content p,
.faqs-contact-box:hover .faqs-contact-box-content h3{
	color: var(--white-color);
}

.faqs-contact-box-content p a{
	color: inherit;
}

/************************************/
/***      17. Our Blog css        ***/
/************************************/

.our-blog{
	position: relative;
	padding: 50px 0 70px;
}

.our-blog::before{
    content: '';
    position: absolute;
    top: -90px;
    right: -60px;
    background-image: url('../images/section-bg-img-1.svg');
    background-repeat: no-repeat;
    background-position: right top;
    background-size: cover;
    height: 251px;
    width: 308px;
    z-index: 0;
}

.post-item{
	background-color: var(--white-color);
	border: 1px solid var(--divider-color);
	border-radius: 30px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	padding: 30px;
}

.post-featured-image{
	margin-bottom: 20px;
}

.post-featured-image a{
    cursor: none;	
    display: block;
	border-radius: 30px;
    overflow: hidden;
}

.post-featured-image figure{
	display: block;
}

.post-featured-image img{
    aspect-ratio: 1 / 0.645;
    object-fit: cover;
    transition: all 0.4s ease-in-out;
}

.post-item:hover .post-featured-image img{
	transform: scale(1.1);
}

.post-item-content{
	margin-bottom: 20px;
}

.post-item-content h2{
    font-size: 20px;
	line-height: 1.4em;
}

.post-item-content h2 a{
    color: inherit;
}

/************************************/
/***       18. Footer css	      ***/
/************************************/

.footer-main{
	position: relative;
	background: var(--white-color);
	padding: 70px 0 0;
	border-top: 1px solid rgba(2, 51, 32, 0.08);
}

.footer-main::before{
	display: none;
}

.footer-top{
	padding-bottom: 10px;
}

.footer-brand-logo{
	display: inline-block;
	margin-bottom: 18px;
}

.footer-brand-logo img{
	max-width: 200px;
	height: auto;
}

.footer-brand-text{
	font-size: 15px;
	line-height: 1.7;
	color: var(--text-color);
	margin-bottom: 22px;
}

.footer-social-links{
	text-align: left;
}

.footer-social-links ul{
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-social-links ul li{
	display: inline-block;
	margin: 0;
}

.footer-social-links ul li a{
	width: 40px;
	height: 40px;
	background: var(--accent-secondary-color);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	color: var(--white-color);
	transition: all 0.3s ease-in-out;
}

.footer-social-links ul li:hover a{
	background: var(--primary-color);
	transform: translateY(-2px);
}

.footer-social-links ul li a i{
	color: inherit;
	font-size: 17px;
}

.footer-links h3{
	font-family: var(--accent-font);
	font-size: 20px;
	font-weight: 700;
	color: var(--primary-color);
	text-transform: capitalize;
	margin-bottom: 22px;
}

.footer-links ul{
	margin: 0;
	padding: 0;
	list-style: none;
}

.footer-links ul li{
	line-height: 1.5;
	margin-bottom: 12px;
}

.footer-links ul li:last-child{
	margin-bottom: 0;
}

.footer-links ul li a{
	display: inline-flex;
	align-items: flex-start;
	gap: 8px;
	font-size: 15px;
	color: var(--text-color);
	transition: all 0.3s ease-in-out;
}

.footer-links ul li a i{
	color: var(--accent-secondary-color);
	font-size: 12px;
	margin-top: 5px;
	flex-shrink: 0;
}

.footer-links ul li a:hover{
	color: var(--primary-color);
}

.footer-contact-links{
	margin-right: 0;
}

.footer-contact-list li{
	display: flex;
	align-items: flex-start;
	gap: 12px;
	color: var(--text-color);
	font-size: 15px;
	line-height: 1.65;
}

.footer-contact-list li a{
	color: var(--text-color);
}

.footer-contact-list li a:hover{
	color: var(--primary-color);
}

.footer-contact-icon{
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: rgba(116, 164, 42, 0.12);
	color: var(--accent-secondary-color);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	font-size: 14px;
}

.footer-bottom-bar{
	background: var(--accent-color);
	margin-top: 50px;
}

.footer-copyright{
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 18px 0;
	border-top: none;
	margin-top: 0;
}

.footer-copyright-text p{
	color: var(--white-color);
	font-size: 14px;
	margin-bottom: 0;
}

.footer-privacy-policy ul{
	margin: 0;
	padding: 0;
	list-style: none;
}

.footer-privacy-policy ul li{
	position: relative;
	color: var(--white-color);
	text-transform: capitalize;
	display: inline-block;
	margin-right: 10px;
	padding-right: 16px;
	transition: all 0.3s ease-in-out;
}

.footer-privacy-policy ul li:hover{
	color: var(--accent-secondary-color);
}

.footer-privacy-policy ul li::before{
	content: '|';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	color: rgba(255, 255, 255, 0.45);
}

.footer-privacy-policy ul li:last-child{
	padding: 0;
	margin: 0;
}

.footer-privacy-policy ul li:last-child:before{
	display: none;
}

.footer-privacy-policy ul li a{
	color: inherit;
	font-size: 14px;
}

/************************************/
/***     19. About Us Page css    ***/
/************************************/

.page-header{
	position: relative;
	overflow: hidden;
	padding: 250px 0 140px;
}

.page-header-bg{
	position: absolute;
	inset: 0;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	filter: blur(6px);
	transform: scale(1.08);
	z-index: 0;
}

.page-header .container{
	position: relative;
	z-index: 2;
}

.page-header::before{
	content: '';
    display: block;
    position: absolute;
    top: 0;
	right: 0;
	bottom: 0;
    left: 0;
    background: linear-gradient(269.99deg, rgba(2, 51, 32, 0) 43.61%, rgba(2, 51, 32, 0.828125) 78.06%, #023320 101.51%),linear-gradient(360deg, rgba(2, 51, 32, 0.1) 78.13%, #023320 102.84%);
    width: 100%;
    height: 100%;
    z-index: 1;
}

.page-header-box{
	position: relative;
	z-index: 1;
}

.page-header-box h1{
	display: inline-block;
	color: var(--white-color);
    font-size: 60px;
    text-transform: uppercase;
	margin-bottom: 10px;
	cursor: none;
}

.page-header-box ol{
	margin: 0;
	padding: 0;
}

.page-header-box ol li.breadcrumb-item{
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5em;
	text-transform: capitalize;
	color: var(--white-color);
}

.page-header-box ol li.breadcrumb-item a{
    color: inherit;
}

.page-header-box ol li.breadcrumb-item.active{
	color: var(--white-color);
}

.page-header-box ol .breadcrumb-item+.breadcrumb-item::before{
	content: "/";
    color: var(--white-color);
}

.our-approach{
	padding: 50px 0;
}

.our-approach-body{
	background-color: var(--white-color);
	border: 1px solid var(--divider-color);
	border-radius: 20px;
	padding: 40px;
}

.mission-vision-item{
	border-bottom: 1px solid var(--divider-color);
	padding-bottom: 30px;
	margin-bottom: 30px;
}

.mission-vision-item:last-child{
	padding-bottom: 0px;
	margin-bottom: 0px;
	border-bottom: none;
}

.mission-vision-item h3{
	font-size: 20px;
	text-transform: capitalize;
	color: var(--accent-secondary-color);
	margin-bottom: 15px;
}

.mission-vision-item p{
	margin: 0;
}

.our-approach-image{
	position: relative;
	padding-right: 222px;
	margin-left: 15px;
}

.our-approach-img-1 figure,
.our-approach-img-2 figure{
	display: block;
}

.our-approach-img-1 img,
.our-approach-img-2 img{
	width: 100%;
	object-fit: cover;
}

.our-approach-img-1 figure{
	border-radius: 999px;
}

.our-approach-img-1 img{
	aspect-ratio: 1 / 1.796;
	border-radius: 999px;
}

.our-approach-img-2{
	max-width: 364px;
	position: absolute;
	right: 0;
	bottom: 0;
	border: 10px solid var(--secondary-color);
	border-radius: 999px;
	overflow: hidden;
	z-index: 1;
}

.our-approach-img-2 img{
	width: 100%;
	aspect-ratio: 1 / 1.291;
}

.approach-explore-more-circle{
	position: absolute;
	top: 30px;
	right: 20px;
}

.approach-explore-more-circle a{
	display: block;
	border-radius: 50%;
}

.approach-explore-more-circle img{
	width: 100%;
	max-width: 180px;
	border-radius: 50%;
	animation: infiniterotate 20s infinite linear;
}

@keyframes infiniterotate{
	from{
		transform: rotate(0deg);
	  }
	to{
		transform: rotate(360deg);
	}
}

.who-we-are{
	padding: 50px 0;
}

.who-we-are-image{
	position: relative;
}

.who-we-are-image:before{
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 380px;
	height: 380px;
	background: url('../images/who-we-are-image-bg.png') no-repeat;
	background-position: center center;
	background-size: cover;
	z-index: 0;
	animation: whoweimagebg 20s infinite linear;
}

@keyframes whoweimagebg{
	from{
		transform: translate(-50% , -50%) rotate(0deg);
	  }
	to{
		transform: translate(-50% , -50%) rotate(360deg);
	}
}

.who-we-are-image figure{
	position: relative;
	display: block;
	z-index: 1;
}

.who-we-are-image img{
	width: 100%;
	aspect-ratio: 1 / 0.83;
	object-fit: cover;
}

.who-we-are-body{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	margin-bottom: 40px;
}

.we-are-item{
	width: calc(50% - 15px);
	display: flex;
}

.we-are-item .icon-box{
	margin-right: 20px;
}

.we-are-item .icon-box img{
	width: 100%;
	max-width: 60px;
}

.we-are-item-content{
	width: calc(100% - 80px);
}

.we-are-item-content h3{
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 10px;
}

.we-are-item-content p{
	margin: 0;
}

.our-expertise{
	padding: 50px 0;
}

.our-expertise-body ul{
	list-style: disc;
    padding: 0;
	padding-left: 20px;
    margin-bottom: 40px;
	display: flex;
	flex-wrap: wrap;
	gap: 15px 40px;
}

.our-expertise-body ul li{
	width: calc(50% - 20px);
	line-height: 1.4em;
}

.our-expertise-body ul li::marker{
    color: var(--accent-color);
}

.skills-progress-bar{
	margin-bottom: 30px;
}

.skills-progress-bar:last-child{
	margin-bottom: 0px;
}

.skills-progress-bar .skill-data{
	display: flex;
    justify-content: space-between;
	gap: 10px;
    margin-bottom: 15px;
}

.skills-progress-bar .skill-data .skill-title{
	text-transform: capitalize;
}

.skills-progress-bar .skill-data .skill-no{
	color: var(--primary-color);
}

.skills-progress-bar .skillbar .skill-progress{
	position: relative;
	width: 100%;
	height: 16px;
	background: var(--divider-color);
	border-radius: 100px;
    overflow: hidden;
}

.skills-progress-bar .skillbar .skill-progress .count-bar{
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	background: var(--accent-color);
	border-radius: 100px;
}

.expertise-image{
	position: relative;
	padding: 0 0 60px 80px;
	overflow: hidden;
	margin-left: 15px;
}

.expertise-img figure{
	display: block;
	border-radius: 30px;
}

.expertise-img img{
	width: 100%;
	aspect-ratio: 1 / 0.891;
	object-fit: cover;
	border-radius: 30px;
}

.expertise-image-list{
	max-width: 216px;
	position: absolute;
	bottom: 0;
	left: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	z-index: 1;
}

.expertise-list-img{
	border: 6px solid var(--white-color);
	border-radius: 20px;
	overflow: hidden;
}

.expertise-list-img img{
	width: 100%;
	aspect-ratio: 1 / 0.99;
	object-fit: cover;
}

.expertise-explore-more-circle{
	position: absolute;
	right: 130px;
	bottom: 0;
	border: 6px solid var(--white-color);
	border-radius: 50%;
	overflow: hidden;
	z-index: 1;
}

.expertise-explore-more-circle a{
	display: block;
	border-radius: 50%;
}

.expertise-explore-more-circle img{
	width: 100%;
	max-width: 140px;
	animation: infiniterotate 20s infinite linear;
}

.our-features.about-our-features{
    position: relative;
}

.our-features.about-our-features::before{
    content: '';
    position: absolute;
    top: -105px;
    right: -140px;
    background-image: url(../images/section-bg-img-3.svg);
    background-repeat: no-repeat;
    background-position: top right;
    background-size: cover;
    height: 417px;
    width: 431px;
    z-index: 0;
}

.our-team{
	padding: 50px 0 20px;
}

.team-member-item{
	background-color: var(--white-color);
	border: 1px solid var(--divider-color);
	border-radius: 30px;
	display: flex;
	flex-wrap: wrap;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	overflow: hidden;
}

.team-member-item .team-image{
	width: 47%;
}

.team-image a{
	height: 100%;
    display: block;
	cursor: none;
}

.team-image figure{
	height: 100%;
}

.team-image img{
	height: 100%;
    width: 100%;
	aspect-ratio: 1 / 1.033;
    object-fit: cover;
	transition: all 0.4s ease-in-out;
}

.team-member-item:hover .team-image img{
	transform: scale(1.1);
}

.team-member-item .team-body{
	width: 53%;
}

.team-body{
	align-content: center;
	padding: 40px;
}

.team-content{
	margin-bottom: 15px;
}

.team-content p{
	color: var(--accent-secondary-color);
	text-transform: capitalize;
	margin-bottom: 5px;
}

.team-content h2{
	font-size: 20px;
	text-transform: capitalize;
}

.team-content h2 a{
	color: inherit;
}

.team-body-content{
	border-bottom: 1px solid var(--divider-color);
	margin-bottom: 30px;
	padding-bottom: 30px;
}

.team-body-content p{
	margin: 0;
}

.team-social-icon ul{
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.team-social-icon ul li a{
	width: 36px;
	height: 36px;
	color: var(--white-color);
	background: var(--accent-secondary-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.4s ease-in-out;
}

.team-social-icon ul li a:hover{
	background: var(--primary-color);
}

.team-social-icon ul li a i{
	color: inherit;
	font-size: 18px;
}

.our-testimonials.about-our-testimonials{
    position: relative;
}

.our-testimonials.about-our-testimonials::before{
    content: '';
    position: absolute;
    bottom: 0;
    right: -60px;
    background-image: url('../images/section-bg-img-1.svg');
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: cover;
    height: 251px;
    width: 308px;
    transform: translateY(68%);
    z-index: 0;
}

.our-appointment{
	padding: 50px 0;
}

.our-appointment-box{
	background: var(--white-color);
	border: 1px solid var(--divider-color);
	border-radius: 30px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 70px;
	padding: 100px;
}

.our-appointment-content,
.appointment-form{
	width: calc(50% - 35px);
}

.appointment-form form .form-control{
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5em;
    color: var(--text-color);
    background-color: transparent;
    border: 1px solid var(--divider-color);
    border-radius: 10px;
    padding: 17px 20px;
    outline: none;
    box-shadow: none;
}

.appointment-form form .form-control::placeholder{
	text-transform: capitalize;
    color: var(--text-color);
}

.appointment-form form .form-group select{
	padding: 16px 30px 16px 20px;
}

.appointment-form form .form-group select option{
	color: var(--primary-color);
}

.appointment-item{
	display: flex;
	align-items: center;
	border-bottom: 1px solid var(--divider-color);
	margin-bottom: 40px;
	padding-bottom: 40px;
}

.appointment-item:last-child{
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}

.appointment-item .icon-box{
	margin-right: 20px;
}

.appointment-item .icon-box img{
	max-width: 60px;
}

.appointment-item-content{
	width: calc(100% - 80px);
}

.appointment-item-content h3{
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 5px;
}

.appointment-item-content p{
	margin: 0;
}

.appointment-item-content p a{
	color: inherit;
	transition: all 0.3s ease-in-out;
}

.appointment-item-content p a:hover{
	color: var(--primary-color);
}

.our-faqs.about-faqs{
	padding: 50px 0 100px;
}

/************************************/
/***     20. Services Page css    ***/
/************************************/

.page-services{
	position: relative;
	padding: 100px 0 50px;
}

.page-services::before{
    content: '';
    position: absolute;
    bottom: 50px;
    left: -70px;
    background-image: url('../images/section-bg-img-2.svg');
    background-repeat: no-repeat;
    background-position: bottom left;
    background-size: cover;
    height: 379px;
    width: 262px;
    z-index: 0;
}

/************************************/
/***    21. Service Single css    ***/
/************************************/

.page-service-single{
	position: relative;
    padding: 100px 0;
}

.page-service-single::before{
    content: '';
    position: absolute;
    top: 15%;
    left: -70px;
    background-image: url('../images/section-bg-img-2.svg');
    background-repeat: no-repeat;
    background-position: top left;
    background-size: cover;
    height: 379px;
    width: 262px;
    z-index: 0;
}

.page-service-single::after{
    content: '';
    position: absolute;
    top: 40%;
    right: -95px;
    background-image: url('../images/section-bg-img-1.svg');
    background-repeat: no-repeat;
    background-position: right center;
    background-size: cover;
    height: 251px;
    width: 308px;
    z-index: 0;
}

.page-single-sidebar{
    position: sticky;
    top: 20px;
	margin-right: 20px;
}

.page-catagery-list{
	background-color: var(--white-color);
    border: 1px solid var(--divider-color);
    border-radius: 30px;
    margin-bottom: 60px;
	overflow: hidden;
}

.page-catagery-list h3{
    font-size: 20px;
    text-transform: capitalize;
    border-bottom: 1px solid var(--divider-color);
    padding: 30px;
}

.page-catagery-list ul{
    list-style: none;
    margin: 0;
	padding: 30px;
}

.page-catagery-list ul li{
    margin-bottom: 20px;
}

.page-catagery-list ul li:last-child{
    margin: 0;
}

.page-catagery-list ul li a{
	position: relative;
    display: block;
	line-height: 1.3em;
    text-transform: capitalize;
    color: var(--text-color);
	background-color: var(--secondary-color);
	border-radius: 15px;
	padding: 17px 45px 17px 20px;
	overflow: hidden;
    transition: all 0.4s ease-in-out;
	z-index: 1;
}

.page-catagery-list ul li:hover a{
    color: var(--white-color);
}

.page-catagery-list ul li a::before{
    content: '';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translate(0px, -50%);
    background: url('../images/arrow-text.svg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    width: 14px;
    height: 14px;
    transition: all 0.3s ease-in-out;
}

.page-catagery-list ul li a:hover::before{
    filter: brightness(0) invert(1);
    transform: translate(0px, -50%) rotate(45deg);
}

.page-catagery-list ul li a::after{
	content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: var(--accent-color);
    transition: all 0.4s ease-in-out;
    z-index: -1;
}

.page-catagery-list ul li:hover a::after{
	top: 0;
	height: 100%;
}

.page-catagery-list ul li.active a{
	color: var(--white-color);
}

.page-catagery-list ul li.active a::after{
	top: 0;
	height: 100%;
}

.page-catagery-list ul li.active a::before{
	filter: brightness(0) invert(1);
}

.sidebar-cta-box{
    background: var(--white-color);
    border: 1px solid var(--divider-color);
    border-radius: 30px;
    padding: 30px;
}

.sidebar-cta-image{
    margin-bottom: 20px;
}

.sidebar-cta-image figure{
    display: block;
    border-radius: 30px;
}

.sidebar-cta-image img{
    width: 100%;
    aspect-ratio: 1 / 0.68;
    object-fit: cover;
    border-radius: 30px;
    transition: all 0.4s ease-in-out;
}

.sidebar-cta-box:hover .sidebar-cta-image img{
    transform: scale(1.1);
}

.sidebar-cta-content h3{
    font-size: 20px;
	line-height: 1.3em;
    margin-bottom: 20px;
}

.service-featured-image{
    margin-bottom: 40px;
}

.service-featured-image figure{
    display: block;
    border-radius: 30px;
}

.service-featured-image img{
    width: 100%;
    aspect-ratio: 1 / 0.598;
    object-fit: cover;
    border-radius: 30px;
}

.service-entry{
    margin-bottom: 60px;
}

.service-entry p{
    margin-bottom: 20px;
}

.service-entry p:last-child{
    margin-bottom: 0;
}

.service-entry h2{
    font-size: 48px;
    margin-bottom: 20px;
}

.service-entry h2 span{
    color: var(--accent-secondary-color);
}

.service-entry ul{
    list-style: disc;
    margin: 0;
    padding-left: 20px;
	display: flex;
	flex-wrap: wrap;
	gap: 20px 40px;
}

.service-entry ul li{
	width: calc(33.33% - 26.66px);
	text-transform: capitalize;
	line-height: 1.6em;
}

.service-entry ul li:last-child{
	margin-bottom: 0;
}

.service-entry ul li::marker{
    color: var(--accent-color);
}

.discover-peace-box,
.service-benefits-box,
.service-process-box{
    margin-top: 60px;
}

.discover-peace-item-list{
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.discover-peace-item{
    position: relative;
    width: calc(50% - 15px);
    display: flex;
    background: var(--white-color);
    border: 1px solid var(--divider-color);
    border-radius: 20px;
    padding: 30px 25px;
    overflow: hidden;
}

.discover-peace-item::before{
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: var(--accent-color);
	width: 100%;
	height: 0;
	transition: all 0.4s ease-in-out;
	z-index: 0;
}

.discover-peace-item:hover:before{
	height: 100%;
}

.discover-peace-item .icon-box{
    position: relative;
    margin-right: 20px;
    z-index: 1;
}

.discover-peace-item .icon-box img{
    width: 100%;
    max-width: 60px;
    transition: all 0.4s ease-in-out;
}

.discover-peace-item .icon-box i{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: var(--secondary-color);
	font-size: 24px;
	color: var(--accent-color);
	transition: all 0.4s ease-in-out;
}

.discover-peace-item:hover .icon-box i{
	background: transparent;
	color: var(--white-color);
}

.discover-peace-item:hover .icon-box img{
    filter: brightness(0) invert(1);
}

.discover-peace-item-content{
    position: relative;
    width: calc(100% - 80px);
    z-index: 1;
}

.discover-peace-item-content h3{
    font-size: 20px;
    margin-bottom: 15px;
    text-transform: capitalize;
    transition: all 0.4s ease-in-out;
}

.discover-peace-item-content p{
	margin: 0;
    transition: all 0.4s ease-in-out;
}

.discover-peace-item:hover .discover-peace-item-content h3,
.discover-peace-item:hover .discover-peace-item-content p{
    color: var(--white-color);
}

.discover-peace-info-box{
    display: flex;
    align-items: center;
    background: var(--accent-color);
    border-radius: 20px;
    padding: 20px;
    margin: 30px 0 40px;
}

.discover-peace-info-box .icon-box{
    border-right: 1px solid var(--dark-divider-color);
    margin-right: 30px;
    padding-right: 30px;
}

.discover-peace-info-box .icon-box img{
    width: 100%;
    max-width: 80px;
}

.discover-peace-info-box .icon-box i{
	font-size: 42px;
	color: var(--accent-secondary-color);
}

.discover-peace-info-content{
    width: calc(100% - 140px);
}

.discover-peace-info-content h3{
    font-size: 20px;
	line-height: 1.3em;
    color: var(--white-color);
}

.service-benefits-image{
    margin-top: 40px;
}

.service-benefits-image figure{
    width: 100%;
    border-radius: 30px;
}

.service-benefits-image img{
    width: 100%;
    aspect-ratio: 1 / 0.479;
    object-fit: cover;
    border-radius: 30px;
}

.service-process-steps{
    margin-top: 40px;
}

.service-process-steps .how-work-step .how-work-step-no h2{
    font-size: 40px;
    margin-bottom: 0;
}

.page-single-faqs{
	margin-top: 10px;
}

.page-single-faqs .section-title{
	margin-bottom: 30px;
}

.home-core-service-content h3 a{
	color: inherit;
	transition: color 0.3s ease;
}

.home-core-service-content h3 a:hover{
	color: var(--accent-secondary-color);
}

.home-core-service-media{
	display: block;
}

/************************************/
/***      22. Blog Archive css    ***/
/************************************/

.page-blog{
	padding: 100px 0;
}

.page-pagination{
    margin-top: 30px;
    text-align: center;
}

.page-pagination ul{
    justify-content: center;
    padding: 0;
    margin: 0;
}

.page-pagination ul li a,
.page-pagination ul li span{
    display: flex;
    text-decoration: none;
    justify-content: center;
    align-items: center;
    background: var(--white-color);
    color: var(--accent-color);
	border-radius: 10px;
    width: 40px;
    height: 40px;
    margin: 0 5px;
    font-weight: 700;
	line-height: 1em;
    transition: all 0.3s ease-in-out;
}

.page-pagination ul li.active a, 
.page-pagination ul li a:hover{
    background: var(--accent-color);
	color: var(--white-color);
}

.service-sub-services-section{
	padding: 90px 0;
	background: linear-gradient(180deg, #023320 0%, #0a4d35 100%);
}

.service-sub-services-header{
	max-width: 760px;
	margin: 0 auto 48px;
}

.service-sub-services-header h2{
	font-family: var(--accent-font);
	font-size: clamp(30px, 4vw, 42px);
	color: var(--white-color);
	margin: 0;
}

.service-sub-service-card{
	height: 100%;
	border: 1px solid rgba(116, 164, 42, 0.55);
	border-radius: 0;
	padding: 28px 24px;
	background: transparent;
}

.service-sub-service-card h3{
	font-size: 22px;
	line-height: 1.35;
	color: var(--white-color);
	margin-bottom: 14px;
}

.service-sub-service-card p{
	color: rgba(255, 255, 255, 0.88);
	margin: 0;
	line-height: 1.65;
}

.service-dynamic-benefits-box{
	margin-top: 40px;
	padding: 32px 30px;
	border: 1px solid rgba(2, 51, 32, 0.18);
	border-radius: 18px;
	background: var(--white-color);
}

.service-dynamic-benefits-box h2{
	font-family: var(--accent-font);
	font-size: clamp(26px, 3vw, 34px);
	color: var(--primary-color);
	margin-bottom: 24px;
}

.service-dynamic-benefits-box ul{
	list-style: none;
	padding: 0;
	margin: 0;
}

.service-dynamic-benefits-box li{
	display: flex;
	align-items: flex-start;
	gap: 14px;
	margin-bottom: 14px;
	color: var(--text-color);
	font-size: 17px;
	line-height: 1.5;
}

.service-dynamic-benefits-box li:last-child{
	margin-bottom: 0;
}

.service-dynamic-benefits-box li i{
	flex: 0 0 auto;
	width: 24px;
	height: 24px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: var(--accent-color);
	color: var(--white-color);
	font-size: 12px;
	margin-top: 2px;
}

/************************************/

.page-single-post{
	position: relative;
	padding: 100px 0;
}

.page-single-post::before{
    content: '';
    position: absolute;
    top: 15%;
    left: -70px;
    background-image: url('../images/section-bg-img-2.svg');
    background-repeat: no-repeat;
    background-position: top left;
    background-size: cover;
    height: 379px;
    width: 262px;
    z-index: 0;
}

.page-single-post::after{
    content: '';
    position: absolute;
    top: 40%;
    right: -95px;
    background-image: url('../images/section-bg-img-1.svg');
    background-repeat: no-repeat;
    background-position: right center;
    background-size: cover;
    height: 251px;
    width: 308px;
    z-index: 0;
}

.post-single-meta ol li{
	font-size: 18px;
	color: var(--white-color);
	margin-right: 15px;
}

.post-single-meta ol li:last-child{
	margin-right: 0;
}

.post-single-meta ol li i{
    font-size: 18px;
    color: var(--white-color);
    margin-right: 5px;
}

.post-image{
	position: relative;
	margin-bottom: 30px;
}

.post-image figure{
	display: block;	
	border-radius: 30px;
	overflow: hidden;
}

.post-image img{
	width: 100%;
	aspect-ratio: 1 / 0.50;
	object-fit: cover;
	border-radius: 30px;
}

.post-content{
	width: 100%;
	max-width: 1100px;
	margin: 0 auto;
}

.post-entry{
	border-bottom: 1px solid var(--divider-color);
	padding-bottom: 30px;
    margin-bottom: 30px;
}

.post-entry:after{
    content: '';
    display: block;
    clear: both;
}

.post-entry a{
    color: var(--accent-color);
}

.post-entry h1,
.post-entry h2,
.post-entry h3,
.post-entry h4,
.post-entry h5,
.post-entry h6{
	font-weight: 400;
	line-height: 1.2em;
	margin: 0 0 0.42em;
}

.post-entry h1{
	font-size: 60px;
}

.post-entry h2{
	font-size: 48px;
}

.post-entry h3{
	font-size: 40px;
}

.post-entry h4{
	font-size: 30px;
}

.post-entry h5{
	font-size: 24px;
}

.post-entry h6{
	font-size: 18px;
}

.post-entry p{
	margin-bottom: 20px;
}

.post-entry p:last-child{
	margin-bottom: 0;
}

.post-entry p strong{
	color: var(--primary-color);
	font-size: 18px;
	font-weight: 600;
}

.post-entry ol{
    margin: 0 0 30px;
}

.post-entry ul{
	padding: 0;
	margin: 20px 0 20px;
	padding-left: 20px;
}

.post-entry ol li,
.post-entry ul li{
    position: relative;
	font-size: 18px;
    font-weight: 500;
    line-height: 1.5em;
    color: var(--text-color);
    margin-bottom: 15px;
}

.post-entry ul li:last-child{
	margin-bottom: 0;
}

.post-entry ul ul,
.post-entry ul ol,
.post-entry ol ol,
.post-entry ol ul{
    margin-top: 20px;
    margin-bottom: 0;
}

.post-entry ul ul li:last-child,
.post-entry ul ol li:last-child,
.post-entry ol ol li:last-child,
.post-entry ol ul li:last-child{
    margin-bottom: 0;
}

.post-entry blockquote{
	background: url('../images/icon-blockquote.svg'), var(--accent-color);
	background-repeat: no-repeat;
	background-position: 30px 30px;
    background-size: 45px;
	border-radius: 20px;
    padding: 30px 30px 30px 90px;
    margin-bottom: 30px;
}

.post-entry blockquote p{
	font-family: var(--accent-font);
	font-size: 20px;
	font-weight: 400;
	line-height: 1.5em;
	color: var(--white-color);
}

.post-entry blockquote p:last-child{
	margin-bottom: 0;
}

.tag-links{
	font-family: var(--accent-font);
    font-size: 20px;
	font-weight: 400;
    text-transform: capitalize;
	color: var(--primary-color);
	display: inline-flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 15px;
}

.post-tags .tag-links a{
    display: inline-block;
	font-family: var(--default-font);
    font-size: 16px;
	font-weight: 500;
	line-height: 1em;
	text-transform: capitalize;
	background: var(--accent-color);
	color: var(--white-color);
	border-radius: 10px;
    padding: 12px 20px;
	transition: all 0.3s ease-in-out;
}

.post-tags .tag-links a:hover{
	background: var(--accent-secondary-color);
}

.post-social-sharing{
    text-align: right;
}

.post-social-sharing ul{
    list-style: none;
    padding: 0;
    margin: 0;
}

.post-social-sharing ul li{
    display: inline-block;
    margin-right: 10px;
}

.post-social-sharing ul li:last-child{
	margin-right: 0;
}

.post-social-sharing ul li a{
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
	background: var(--accent-color);
	color: var(--white-color);
	border-radius: 10px;
    width: 40px;
    height: 40px;
    transition: all 0.3s ease-in-out;
}

.post-social-sharing ul li:hover a{
	background: var(--accent-secondary-color);
}

.post-social-sharing ul li a i{
    font-size: 18px;
    color: inherit;
}

/************************************/
/***      24. Team Page css       ***/
/************************************/

.page-team{
	padding: 100px 0 70px;
}

.team-item{
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.team-item .team-image{
	position: relative;
	margin-bottom: 20px;
}

.team-item .team-image figure:before{
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	top: 100%;
	right: 0;
	bottom: 0;
	left: 0;
	background: linear-gradient(180deg, rgba(61, 73, 58, 0) 61.53%, rgba(61, 73, 58, 0.6) 100%);
	transition: all 0.3s ease-in-out;
	z-index: 1;
}

.team-item:hover .team-image figure:before{
	top: 0;
}

.team-item .team-social-icon{
	position: absolute;
	right: 30px;
	bottom: 0;
	left: 30px;
	opacity: 0;
	visibility: hidden;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.team-item:hover .team-social-icon{
	bottom: 30px;
	opacity: 1;
	visibility: visible;
}

.team-item .team-social-icon ul{
	justify-content: center;
}

.team-item .team-social-icon ul a{
	display: flex;
	cursor: pointer;
}

.team-item .team-image a{
	border-radius: 20px;
    display: block;
	cursor: none;
	overflow: hidden;
}

.team-item .team-image img{
    width: 100%;
	aspect-ratio: 1 / 1.19;
    object-fit: cover;
	transition: all 0.4s ease-in-out;
}

.team-item:hover .team-image img{
	transform: scale(1.1);
}

.team-item .team-content{
	text-align: center;
	margin-bottom: 0;
}

.team-item .team-content h2{
	margin-bottom: 5px;
}

.team-item .team-content p{
	margin: 0;
}

/************************************/
/***      25. Team Single css     ***/
/************************************/

.page-team-single{
	position: relative;
	padding: 100px 0;
}

.page-team-single::before{
    content: '';
    position: absolute;
    top: 15%;
    left: -70px;
    background-image: url('../images/section-bg-img-2.svg');
    background-repeat: no-repeat;
    background-position: top left;
    background-size: cover;
    height: 379px;
    width: 262px;
    z-index: 0;
}

.page-team-single::after{
    content: '';
    position: absolute;
    top: 40%;
    right: -95px;
    background-image: url('../images/section-bg-img-1.svg');
    background-repeat: no-repeat;
    background-position: right center;
    background-size: cover;
    height: 251px;
    width: 308px;
    z-index: 0;
}

.page-team-single-box{
	display: flex;
	flex-wrap: wrap;
	gap: 100px 0;
}

.team-member-info-box{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 30px 60px;
}

.team-member-image,
.team-member-content{
	width: calc(50% - 30px);
}

.team-member-image{
	border-radius: 30px;
	overflow: hidden;
}

.team-member-image figure{
	display: block;
}

.team-member-image img{
	width: 100%;
    aspect-ratio: 1 / 1.022;
	object-fit: cover;
}

.member-social-list{
	background-color: var(--accent-color);
	padding: 20px 40px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 15px 20px;
}

.member-social-list h3{
	color: var(--white-color);
	font-size: 20px;
	text-transform: capitalize;
}

.member-social-list ul{
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.member-social-list ul li a{
	width: 38px;
	height: 38px;
	color: var(--white-color);
	background: var(--accent-secondary-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.4s ease-in-out;
}

.member-social-list ul li a:hover{
	background: var(--white-color);
	color: var(--primary-color);
}

.member-social-list ul li a i{
	color: inherit;
	font-size: 18px;
}

.member-info-list ul{
    display: flex;
    flex-wrap: wrap;
    gap: 60px 30px;
    list-style: none;
    margin: 0;
    padding: 0;
    margin-bottom: 40px;
}

.member-info-list ul li{
	position: relative;
    width: calc(50% - 15px);
	font-family: var(--accent-font);
    font-size: 20px;
    font-weight: 400;
    text-transform: capitalize;
    color: var(--primary-color);
    display: flex;
    justify-content: space-between;
}

.member-info-list ul li:before{
	content: '';
	position: absolute;
	right: 0;
	bottom: -30px;
	left: 0;
	width: 100%;
	height: 1px;
	background-color: var(--divider-color);
}

.member-info-list ul li:nth-last-child(-n + 2):before{
	display: none;
}

.member-info-list ul li span{
    width: 58%;
    font-size: 16px;
    font-weight: 400;
    text-transform: none;
    color: var(--text-color);
}

.member-about-list{
	background-color: var(--white-color);
	border: 1px solid var(--divider-color);
	border-radius: 20px;
	padding: 30px;
}

.member-about-list ul{
    list-style: disc;
    margin: 0;
    padding-left: 20px;
	display: flex;
	flex-wrap: wrap;
	gap: 20px 40px;
}

.member-about-list ul li{
	width: calc(50% - 20px);
	line-height: 1.6em;
}

.member-about-list ul li::marker{
    color: var(--accent-color);
}

.team-member-about .section-title{
	margin-bottom: 0;
}

.team-member-Skill-box{
	display: flex;
	flex-wrap: wrap;
	gap: 30px 60px;
}

.team-member-Skill-feature,
.team-contact-form{
	width: calc(50% - 30px);
}

.member-feature-content{
	border-bottom: 1px solid var(--divider-color);
	margin-bottom: 40px;
	padding-bottom: 40px;
}

.member-feature-content .member-about-list{
	background: transparent;
	border-radius: 0;
	border: none;
	padding: 0;
}

/************************************/
/*** 	 26. Pricing Page css	  ***/
/************************************/

.page-pricing{
	position: relative;
	padding: 100px 0 20px;
}

.page-pricing::before{
    content: '';
    position: absolute;
    bottom: 20px;
    left: -100px;
    background-image: url('../images/section-bg-img-2.svg');
    background-repeat: no-repeat;
    background-position: bottom left;
    background-size: cover;
    height: 379px;
    width: 262px;
    z-index: 0;
}

/************************************/
/***   27. Testimonials Page css  ***/
/************************************/

.page-testimonials{
	position: relative;
	padding: 100px 0 50px;
}

.page-testimonials::before{
    content: '';
    position: absolute;
    bottom: 150px;
    left: -100px;
    background-image: url('../images/section-bg-img-2.svg');
    background-repeat: no-repeat;
    background-position: bottom left;
    background-size: cover;
    height: 379px;
    width: 262px;
    z-index: 0;
}

.page-testimonials .our-testimonial-box .testimonial-item{
	width: calc(50% - 15px);
}

/************************************/
/*** 	 28. Image Gallery css	  ***/
/************************************/

.page-gallery{
	padding: 100px 0 70px;
}

.page-gallery-box .photo-gallery{
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.page-gallery-box .photo-gallery a{
	cursor: none;
}

.page-gallery-box .photo-gallery figure{
	display: block;
	border-radius: 20px;
}

.page-gallery-box .photo-gallery img{
	width: 100%;
	aspect-ratio: 1 / 0.794;
	object-fit: cover;
	border-radius: 20px;
}

/************************************/
/*** 	 29. Video Gallery css	  ***/
/************************************/

.page-video-gallery{
	padding: 100px 0 70px;
}

.video-gallery-image{
	height: calc(100% - 30px);
	margin-bottom: 30px;
	overflow: hidden;
}

.video-gallery-image a{
	position: relative;
	display: block;
	cursor: none;
}

.video-gallery-image a::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--primary-color);
	border-radius: 20px;
    opacity: 0%;
    visibility: hidden;
    width: 100%;
    height: 100%;
    z-index: 1;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
}

.video-gallery-image:hover a::before{
    opacity: 40%;
    visibility: visible;
    transform: scale(1);
}

.video-gallery-image a::after{
    content: '\f04b';
	font-family: 'FontAwesome';
    position: absolute;
    top: 50%;
    left: 50%;
    right: 0;
    transform: translate(-50%, -50%);
	font-size: 20px;
	background: var(--accent-color);
	color: var(--white-color);
    border-radius: 50%;
    height: 60px;
    width: 60px;
    cursor: none;
	display: flex;
	align-items: center;
	justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease-in-out;
    z-index: 1;
}

.video-gallery-image:hover a::after{
    opacity: 1;
    visibility: visible;
}

.video-gallery-image img{
	width: 100%;
	aspect-ratio: 1 / 0.794;
	object-fit: cover;
	border-radius: 20px;
}

/************************************/
/*** 	  30. FAQs Page css 	  ***/
/************************************/

.page-faqs{
	position: relative;
	padding: 100px 0;
}

.page-faqs::before{
    content: '';
    position: absolute;
    top: 15%;
    left: -70px;
    background-image: url('../images/section-bg-img-2.svg');
    background-repeat: no-repeat;
    background-position: top left;
    background-size: cover;
    height: 379px;
    width: 262px;
    z-index: 0;
}

.page-faqs::after{
    content: '';
    position: absolute;
    top: 40%;
    right: -95px;
    background-image: url('../images/section-bg-img-1.svg');
    background-repeat: no-repeat;
    background-position: right center;
    background-size: cover;
    height: 251px;
    width: 308px;
    z-index: 0;
}

.page-faqs-catagery .page-faq-accordion{
    margin-bottom: 60px;
}

.page-faqs-catagery .page-faq-accordion:last-child{
    margin-bottom: 0px;
}

/************************************/
/*** 	31. Contact Us Page css   ***/
/************************************/

.page-contact-us{
	padding: 100px 0;
}

.contact-us-content{
	margin-right: 30px;
}

.contact-info-list{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	margin-bottom: 50px;
}

.contact-info-item{
	width: calc(50% - 15px);
	background-color: var(--white-color);
	border: 1px solid var(--divider-color);
	border-radius: 20px;
	display: flex;
	align-items: center;
	padding: 20px;
}

.contact-info-item .icon-box{
	width: 50px;
	height: 50px;
	background-color: var(--accent-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 20px;
}

.contact-info-item .icon-box img{
	width: 100%;
	max-width: 25px;
}

.contact-item-content{
	width: calc(100% - 70px);
}

.contact-item-content h3{
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 5px;
}

.contact-item-content p{
	margin: 0;
}

.contact-item-content p a{
	color: inherit;
	transition: all  0.3s ease-in-out;
}

.contact-item-content p a:hover{
	color: var(--primary-color);
}

.contact-social-list{
	display: flex;
	align-items: center;
	gap: 15px 20px;
}

.contact-social-list h3{
	font-size: 20px;
	text-transform: capitalize;
}

.contact-social-list ul{
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.contact-social-list ul li a{
	width: 38px;
	height: 38px;
	color: var(--white-color);
	background: var(--accent-secondary-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.4s ease-in-out;
}

.contact-social-list ul li a:hover{
	background: var(--primary-color);
}

.contact-social-list ul li a i{
	color: inherit;
	font-size: 18px;
}

.contact-us-form{
	background-color: var(--white-color);
	border: 1px solid var(--divider-color);
	border-radius: 30px;
	padding: 50px;
}

.contact-form .form-control{
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5em;
	color: var(--text-color);
	background-color: var(--white-color);
	border: 1px solid var(--divider-color);
	border-radius: 10px;
	padding: 17px 20px;
	box-shadow: none;
	outline: none;
}

.contact-form .form-control::placeholder{
	color: var(--text-color);
}

/************************************/
/***  Contact Page (Sahaj) css      ***/
/************************************/

.contact-locations-section{
	padding: 90px 0 70px;
	background: var(--secondary-color);
}

.contact-locations-header{
	max-width: 680px;
	margin: 0 auto 48px;
}

.contact-locations-header h2{
	font-family: var(--accent-font);
	font-size: clamp(32px, 4vw, 44px);
	color: var(--primary-color);
	margin-bottom: 14px;
}

.contact-locations-header p{
	font-size: 17px;
	line-height: 1.6;
	color: var(--text-color);
	margin: 0;
}

.contact-locations-info{
	display: flex;
	flex-direction: column;
	gap: 28px;
}

.contact-locations-item{
	display: flex;
	align-items: flex-start;
	gap: 18px;
}

.contact-locations-icon{
	flex-shrink: 0;
	width: 52px;
	height: 52px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--accent-secondary-color);
	color: var(--white-color);
	font-size: 20px;
}

.contact-locations-content h3{
	font-family: var(--accent-font);
	font-size: 22px;
	color: var(--primary-color);
	margin-bottom: 8px;
	line-height: 1.3;
}

.contact-locations-content p{
	font-size: 15px;
	line-height: 1.6;
	color: var(--text-color);
	margin: 0 0 4px;
}

.contact-locations-content p a{
	color: inherit;
	transition: color 0.3s ease;
}

.contact-locations-content p a:hover{
	color: var(--accent-secondary-color);
}

.contact-locations-social{
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	padding-top: 8px;
}

.contact-social-link{
	width: 44px;
	height: 44px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--accent-secondary-color);
	color: var(--white-color);
	font-size: 18px;
	transition: background 0.3s ease, transform 0.3s ease;
}

.contact-social-link:hover{
	background: var(--accent-color);
	color: var(--white-color);
	transform: translateY(-2px);
}

.contact-locations-map{
	border-radius: 20px;
	overflow: hidden;
	border: 1px solid rgba(2, 51, 32, 0.08);
	box-shadow: 0 18px 40px rgba(2, 51, 32, 0.1);
	background: var(--white-color);
	min-height: 420px;
}

.contact-locations-map iframe{
	width: 100%;
	height: 100%;
	min-height: 420px;
	border: 0;
	display: block;
}

.contact-message-section{
	padding: 0 0 100px;
	background: var(--secondary-color);
}

.contact-message-box{
	background: linear-gradient(145deg, #012819 0%, var(--accent-color) 100%);
	border-radius: 24px;
	padding: 48px;
	box-shadow: 0 24px 50px rgba(2, 51, 32, 0.18);
}

.contact-message-header{
	margin-bottom: 32px;
}

.contact-message-header h2{
	font-family: var(--accent-font);
	font-size: clamp(28px, 3.5vw, 38px);
	color: var(--white-color);
	margin-bottom: 10px;
}

.contact-message-header p{
	font-size: 16px;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.85);
	margin: 0;
}

.contact-message-box .form-label{
	display: block;
	font-size: 14px;
	font-weight: 600;
	color: var(--white-color);
	margin-bottom: 8px;
}

.contact-message-box .form-label span{
	color: var(--accent-secondary-color);
}

.contact-message-box .form-control{
	font-size: 15px;
	color: var(--primary-color);
	background: #f8f6f1;
	border: 1px solid transparent;
	border-radius: 12px;
	padding: 14px 16px;
	box-shadow: none;
}

.contact-message-box .form-control:focus{
	border-color: var(--accent-secondary-color);
	box-shadow: 0 0 0 0.15rem rgba(116, 164, 42, 0.2);
}

.contact-message-submit{
	width: 100%;
	margin-top: 8px;
}

.contact-message-submit:disabled{
	opacity: 0.85;
	cursor: wait;
}

.contact-message-error{
	margin-bottom: 12px;
}

.contact-message-success{
	text-align: center;
	padding: 40px 20px;
	color: var(--white-color);
}

.contact-message-success i{
	font-size: 48px;
	color: var(--accent-secondary-color);
	margin-bottom: 16px;
}

.contact-message-success h3{
	font-family: var(--accent-font);
	font-size: 28px;
	margin-bottom: 10px;
}

.contact-message-success p{
	font-size: 16px;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.85);
	margin: 0 auto;
	max-width: 480px;
}

.google-map .container-fluid{
	padding: 0;
}

.google-map-iframe,
.google-map-iframe iframe{
	width: 100%;
	height: 600px;
}

/************************************/
/*** 	32. Book Appointment css  ***/
/************************************/

.page-book-appointment{
	position: relative;
	padding: 100px 0 50px;
}

.page-book-appointment::before{
    content: '';
    position: absolute;
    bottom: 10px;
    left: -70px;
    background-image: url('../images/section-bg-img-2.svg');
    background-repeat: no-repeat;
    background-position: bottom left;
    background-size: cover;
    height: 379px;
    width: 262px;
    z-index: 0;
}

/************************************/
/*** 	 33. 404 Error Page css	  ***/
/************************************/

.error-page{
	padding: 100px 0;
}

.error-page-image{
	text-align: center;
	margin-bottom: 30px;
}

.error-page-image img{
	width: 100%;
	max-width: 60%;
}

.error-page-content{
	text-align: center;
}

.error-page-content .section-title,
.error-page-content-body p{
	margin-bottom: 20px;
}

/************************************/
/***      34. Responsive css      ***/
/************************************/


@media only screen and (max-width: 1300px){
	.our-pricing::before{
        top: -25px;
        height: 197px;
        width: 240px;
    }
}


@media only screen and (max-width: 1024px){

	.header-contact-now{
		display: none;
	}
}

@media only screen and (max-width: 991px){

	.btn-default{
		padding: 15px 40px 15px 15px;
	}

	.btn-default::before{
		width: 12px;
		height: 12px;
	}

	.navbar{
		padding: 10px 0;
		position: relative;
		z-index: 1001;
	}

	.slicknav_nav li,
	.slicknav_nav ul{
        display: block;
    }

	.responsive-menu,
    .navbar-toggle{
        display: block;
    }

	.header-btn{
		display: none;
	}

	.section-row{
		margin-bottom: 40px;
	}

	.section-title{
		margin-bottom: 30px;
	}

	.section-title h1{
		font-size: 45px;
	}

	.section-title h2{
		font-size: 36px;
	}

	.section-title p{
		margin-top: 10px;
	}

	.section-title-content{
		margin-top: 15px;
	}

	.section-btn{
		text-align: left;
		margin-top: 15px;
	}

	.section-content-btn .section-btn{
		margin-top: 15px;
	}

	.hero{
		padding: 190px 0 100px;
		min-height: auto;
	}

	.hero.hero-slider-layout .hero-slide{
		padding: calc(100px + 4vw) 0 100px;
		min-height: 100vh;
	}

	.hero.hero-slider-layout .hero-slide .hero-slider-image img{
		object-position: center 12%;
	}

	.hero-content .section-title h1{
		font-size: clamp(30px, 6vw, 42px);
	}

	.hero-slider-prev,
	.hero-slider-next,
	.hero-slider-nav{
		display: none;
	}
	
	.hero.hero-slider-layout .hero-pagination{
		bottom: 24px;
		padding-left: 0;
	}

	.hero-content .section-title p{
		margin-top: 20px;
		padding-top: 20px;
	}

	.hero-content .section-title h3{
		margin-bottom: 20px;
	}

	.down-arrow-circle{
		bottom: 10px;
	}

	.down-arrow-circle a img{
		max-width: 100px;
	}

	.down-arrow-circle a i{
		font-size: 30px;
	}

	.about-us{
		padding: 50px 0 25px;
	}

	.about-us::before{
        bottom: -40px;
        height: 170px;
        width: 208px;
    }

	.about-images{
		max-width: 80%;
		margin: 20px auto 50px;
	}

	.about-image-title h2{
		font-size: 88px;
	}

	.about-us-content{
		margin-left: 0px;
	}

	.about-content-body{
		margin-bottom: 30px;
	}

	.about-benefit-item{
		margin-bottom: 20px;
	}

	.about-benefit-item .icon-box{
		margin-right: 10px;
	}

	.about-benefit-item .icon-box img{
		max-width: 50px;
	}

	.about-benefit-item-content{
		width: calc(100% - 60px);
	}

	.our-services{
		padding: 25px 0;
	}

	.service-item{
		border-radius: 20px;
		padding: 20px;
	}

	.service-header{
		margin-bottom: 50px;
	}

	.service-header .icon-box img{
		max-width: 60px;
	}

	.service-btn a{
		width: 40px;
		height: 40px;
	}

	.service-btn a img{
		max-width: 12px;
	}

	.service-content h3{
		margin-bottom: 10px;
	}

	.section-footer-text{
		margin-top: 10px;
	}

	.section-footer-text p span{
		font-size: 14px;
	}

	.what-we-do{
		padding: 25px 0;
	}

	.what-we-do::before{
        left: -50px;
        height: 260px;
        width: 180px;
    }

	.what-we-content,
	.what-we-body{
		margin-bottom: 30px;
	}

	.what-we-body ul{
		gap: 15px 40px;
	}

	.what-we-image{
		max-width: 80%;
		margin: 0 auto;
	}

	.what-we-benefits-box{
		border-radius: 20px;
	}

	.what-we-benefits-list{
		width: 100%;
		gap: 30px;
		padding: 30px;
	}

	.what-we-item .icon-box{
		margin-right: 10px;
	}

	.what-we-item-content{
		width: calc(100% - 50px);
	}

	.what-we-item-content p{
		font-size: 14px;
	}

	.what-we-benefit-image{
		width: 100%;
		border: none;
	}

	.what-we-benefit-image figure{
		height: auto;
	}

	.what-we-benefit-image img{
		height: auto;
		aspect-ratio: 1 / 0.6;
	}

	.why-choose-us{
		padding: 25px 0;
	}

	.why-choose-image{
		width: 100%;
	}

	.why-choose-item{
		width: calc(50% - 15px);
		padding: 20px;
	}

	.why-choose-item .icon-box{
		margin-bottom: 30px;
	}

	.why-choose-item .icon-box img{
		max-width: 60px;
	}

	.why-choose-counter-box{
		gap: 30px;
		margin-top: 40px;
		padding-top: 40px;
	}

	.why-choose-counter-item{
		display: block;
		width: calc(25% - 22.5px);
	}

	.why-choose-counter-item::before{
		right: -15px;
	}

	.why-choose-counter-item .icon-box{
        margin: 0 0 10px 0;
    }

	.why-choose-counter-item .icon-box img{
		max-width: 40px;
	}

	.why-choose-counter-content h3{
		font-size: 26px;
	}

	.why-choose-counter-content p{
		font-size: 14px;
	}

	.why-choose-counter-item .icon-box{
		margin-right: 10px;
	}

	.our-benefits{
		padding: 25px 0 50px;
	}

	.our-benefits::before{
        height: 260px;
        width: 268px;
    }

	.benefit-item{
		margin-bottom: 30px;
		padding-bottom: 30px;
	}

	.benefit-item .icon-box{
		margin-bottom: 20px;
	}

	.benefit-item .icon-box img{
		max-width: 60px;
	}

	.our-benefits-image{
		width: 100%;
		max-width: 70%;
		margin: 0 auto;
		margin-top: 30px;
	}

	.intro-video-box{
		height: 500px;
	}

	.intro-video-box .video-play-button a{
		width: 80px;
		height: 80px;
		font-size: 18px;
	}

	.cta-box{
		padding: 25px 0;
	}

	.cta-box .section-title,
	.cta-box .section-btn{
		text-align: center;
	}

	.how-it-work{
		padding: 50px 0 25px;
	}

	.how-work-content{
		margin-right: 0px;
		margin-bottom: 30px;
	}

	.how-work-stpes-box{
		padding-top: 30px;
	}

	.how-work-step{
		margin-bottom: 30px;
	}

	.how-work-step-no{
		margin-right: 15px;
	}

	.how-work-step-no h2{
		font-size: 34px;
	}

	.how-work-image{
		max-width: 80%;
		margin: 0 auto;
	}

	.our-features{
		padding: 25px 0;
	}

	.our-features.about-our-features::before{
		top: -50px;
        right: -75px;
        height: 310px;
        width: 320px;
    }

	.features-item{
		border-radius: 20px;
		padding: 20px 0 0 20px;
		margin-bottom: 30px;
	}

	.features-item-image img{
		aspect-ratio: 1 / 0.5;
	}

	.features-box{
		border-radius: 20px;
	}

	.features-box .features-box-content{
		top: 20px;
		left: 20px;
	}

	.features-box-image img{
		border-radius: 20px;
	}

	.features-box.box-2 .features-box-content{
		left: 20px;
		bottom: 20px;
	}

	.features-box.box-2 .features-box-image img{
		aspect-ratio: 1 / 0.9;
	}

	.features-item.features-box{
		margin-bottom: 0;
	}

	.our-pricing{
		padding: 25px 0 0;
	}

	.our-pricing::after{
        height: 105px;
        width: 290px;
    }

	.pricing-item{
		border-radius: 20px;
	}

	.pricing-content{
		padding: 20px;
	}

	.pricing-title{
		margin-top: -38px;
		margin-bottom: 20px;
	}

	.pricing-content h3{
		padding: 8px 20px;
	}

	.pricing-content h2{
		font-size: 36px;
	}

	.pricing-content p{
		font-size: 14px;
	}

	.pricing-body{
		padding: 20px;
	}

	.pricing-list{
		margin-bottom: 30px;
	}

	.pricing-list ul li{
		margin-bottom: 10px;
	}

	.scrolling-ticker{
		padding: 25px 0;
	}

	.scrolling-ticker-box{
		--gap: 30px;
		padding: 60px 0;
		margin: 30px 0;
	}

	.scrolling-ticker-box .scrolling-content span{
		font-size: 45px;
	}

	.scrolling-ticker-box .scrolling-content span img{
		margin-right: 30px;
	}

	.scrolling-ticker-image img{
		max-width: 60px;
	}

	.scrolling-ticker-image{
		transform: translateY(30px);
	}
	
	.scrolling-ticker-images .scrolling-ticker-image:nth-child(even){
		transform: translateY(-30px);
	}

	.home-trust-strip{
		border-top-width: 2px;
		border-bottom-width: 2px;
	}

	.trust-strip-inner{
		padding: 32px 0;
	}

	.trust-strip-inner .container-fluid{
		padding-left: 20px;
		padding-right: 20px;
	}

	.trust-strip-item{
		min-height: 80px;
		padding: 16px;
	}

	.trust-strip-icon{
		width: 52px;
		height: 52px;
	}

	.trust-strip-icon img{
		width: 40px;
	}

	.trust-strip-item p{
		font-size: 14px;
	}

	.trust-strip-edge{
		width: 48px;
	}
	
	.our-testimonials{
		padding: 25px 0;
	}

	.testimonial-image-content{
		margin-bottom: 30px;
	}

	.testimonial-image figure{
		border-radius: 20px;
	}

	.testimonial-image img{
		aspect-ratio: 1 / 0.64;
		border-radius: 20px;
	}

	.testimonial-review-box{
		border-radius: 20px;
		padding: 30px;
	}

	.testimonial-review-header{
		margin-bottom: 40px;
	}

	.testimonial-review-title h3{
		font-size: 26px;
	}

	.testimonial-item{
		border-radius: 20px;
		padding: 30px;
	}

	.testimonial-author{
		margin-bottom: 20px;
	}

	.our-faqs{
		padding: 25px 0;
	}

	.our-faqs-content{
		margin-bottom: 30px;
	}

	.faq-accordion .accordion-item{
		margin-bottom: 20px;
	}

	.faq-accordion .accordion-header .accordion-button{
		padding: 15px 40px 15px 15px;
	}

	.faq-accordion .accordion-item .accordion-button::after,
	.faq-accordion .accordion-item .accordion-button.collapsed::after{
		top: 16px;
		right: 15px;
		font-size: 20px;
	}

	.faq-accordion .accordion-item .accordion-body{
		padding: 15px 45px 15px 15px;
	}

	.faqs-image{
		padding: 35px 35px 30px 45px;
		margin-left: 0;
	}

	.faqs-image::before{
		border-radius: 20px;
	}

	.faqs-image figure{
		border-radius: 20px;
	}

	.faqs-image img{
		aspect-ratio: 1 / 0.8;
		border-radius: 20px;
	}

	.faqs-contact-box{
		border-radius: 12px;
		padding: 15px;
	}

	.our-blog{
		padding: 25px 0 20px;
	}

	.our-blog::before{
        top: -65px;
        right: -40px;
        height: 180px;
        width: 220px;
    }

	.post-item{
		border-radius: 20px;
		padding: 20px;
	}

	.post-featured-image,
	.post-item-content{
		margin-bottom: 15px;
	}

	.post-featured-image a{
		border-radius: 20px;
	}

	.footer-main{
        padding: 50px 0 0;
    }

    .footer-bottom-bar{
        margin-top: 36px;
    }

    .footer-links{
        margin-bottom: 24px;
    }

    .footer-links h3{
        margin-bottom: 18px;
    }

    .footer-links ul li{
        margin-bottom: 10px;
    }

    .footer-copyright{
        padding: 16px 0;
    }

    .footer-privacy-policy ul li{
        margin-right: 3px;
        padding-right: 12px;
    }

	.page-header{
		padding: 170px 0 80px;
	}
	
	.page-header-box h1{
		font-size: 45px;
		margin-bottom: 5px;
	}

	.our-approach{
		padding: 25px 0;
	}

	.our-approach-content{
		margin-bottom: 30px;
	}

	.our-approach-body{
		padding: 30px;
	}

	.mission-vision-item{
		padding-bottom: 20px;
		margin-bottom: 20px;
	}

	.mission-vision-item h3{
		margin-bottom: 10px;
	}

	.our-approach-image{
		max-width: 80%;
		margin: 0 auto;
		padding-right: 180px;
	}

	.our-approach-img-1 img{
		aspect-ratio: 1 / 1.65;
	}

	.approach-explore-more-circle img{
		max-width: 140px;
	}

	.who-we-are{
		padding: 25px 0;
	}

	.who-we-are-image{
		max-width: 75%;
		margin: 0 auto;
		margin-bottom: 30px;
	}

	.who-we-are-image:before{
		width: 330px;
		height: 330px;
	}

	.who-we-are-body{
		margin-bottom: 30px;
	}

	.we-are-item .icon-box{
		margin-right: 10px;
	}

	.we-are-item .icon-box img{
		max-width: 50px;
	}

	.we-are-item-content{
		width: calc(100% - 60px);
	}

	.our-expertise{
		padding: 25px 0;
	}

	.our-expertise-content{
		margin-bottom: 30px;
	}

	.our-expertise-body ul{
		margin-bottom: 30px;
	}

	.skills-progress-bar{
		margin-bottom: 20px;
	}

	.skills-progress-bar .skill-data{
		margin-bottom: 10px;
	}

	.expertise-image{
		margin-left: 0;
	}

	.expertise-image-list{
		max-width: 190px;
	}

	.expertise-explore-more-circle{
		right: 90px;
	}

	.expertise-explore-more-circle img{
		max-width: 110px;
	}

	.team-image img{
		aspect-ratio: 1 / 0.95;
	}

	.team-body{
		padding: 30px;
	}

	.team-content{
		margin-bottom: 10px;
	}

	.team-body-content{
		margin-bottom: 20px;
		padding-bottom: 20px;
	}

	.our-testimonials.about-our-testimonials::before{
        right: -40px;
        height: 180px;
        width: 220px;
    }

	.our-appointment{
		padding: 25px 0;
	}

	.our-appointment-box{
        padding: 50px;
		gap: 30px;
    }

	.our-appointment-content,
	.appointment-form{
		width: 100%;
	}

	.appointment-form form .form-control{
		padding: 12px 15px;
	}

	.appointment-form form .form-group select{
		padding: 10px 30px 10px 15px;
	}

	.appointment-item{
		margin-bottom: 30px;
		padding-bottom: 30px;
	}

	.appointment-item .icon-box{
		margin-right: 10px;
	}

	.appointment-item .icon-box img{
		max-width: 50px;
	}

	.appointment-item-content{
		width: calc(100% - 60px);
	}

	.our-faqs.about-faqs{
		padding: 25px 0 50px;
	}

	.page-services{
		padding: 50px 0 25px;
	}

	.page-services::before{
        bottom: -15px;
        height: 260px;
        width: 180px;
    }

	.page-service-single{
        padding: 50px 0;
    }

	.page-service-single::before{
        height: 260px;
        width: 180px;
    }

    .page-service-single::after{
        bottom: -40px;
        height: 170px;
        width: 208px;
    }

    .page-single-sidebar{
        position: initial;
        margin: 0 0 30px 0;
    }

    .page-catagery-list{
        border-radius: 20px;
        margin-bottom: 30px;
    }

    .page-catagery-list h3,
    .page-catagery-list ul{
        padding: 20px;
    }

    .page-catagery-list ul li a{
        border-radius: 10px;
        padding: 13px 35px 13px 15px;
        overflow: hidden;
        transition: all 0.4s ease-in-out;
        z-index: 1;
    }

    .page-catagery-list ul li a::before{
        right: 15px;
        width: 12px;
        height: 12px;
    }

    .sidebar-cta-box{
        border-radius: 20px;
        padding: 20px;
    }

    .sidebar-cta-image figure{
        border-radius: 20px;
    }
    
    .sidebar-cta-image img{
        aspect-ratio: 1 / 0.5;
        border-radius: 20px;
    }

    .sidebar-cta-content h3{
        margin-bottom: 15px;
    }

    .service-featured-image{
        margin-bottom: 30px;
    }

    .service-featured-image figure{
        border-radius: 20px;
    }

    .service-featured-image img{
        aspect-ratio: 1 / 0.51;
        border-radius: 20px;
    }

    .service-entry{
        margin-bottom: 40px;
    }

    .service-entry p{
        margin-bottom: 15px;
    }

    .service-entry h2{
        font-size: 36px;
        margin-bottom: 15px;
    }

    .service-entry ul{
        gap: 15px 40px;
    }

    .service-entry ul li{
        font-size: 14px;
    }

    .discover-peace-box,
    .service-benefits-box,
    .service-process-box{
        margin-top: 40px;
    }

    .discover-peace-item-list{
        gap: 20px;
        margin-top: 30px;
    }

    .discover-peace-item{
        width: calc(50% - 10px);
        padding: 20px 15px;
    }

    .discover-peace-item .icon-box{
        margin-right: 10px;
    }

    .discover-peace-item .icon-box img{
        max-width: 50px;
    }

    .discover-peace-item-content{
        width: calc(100% - 60px);
    }

    .discover-peace-info-box{
        margin: 20px 0 30px;
    }

    .discover-peace-info-box .icon-box{
        margin-right: 20px;
        padding-right: 20px;
    }

    .discover-peace-info-box .icon-box img{
        max-width: 60px;
    }

    .discover-peace-info-content{
        width: calc(100% - 100px);
    }

    .service-benefits-image{
        margin-top: 30px;
    }

    .service-benefits-image figure,
    .service-benefits-image img{
        border-radius: 20px;
    }

    .service-process-steps{
        margin-top: 30px;
    }

    .service-process-steps .how-work-step .how-work-step-no h2{
        font-size: 34px;
    }

	.page-blog{
		padding: 50px 0;
	}

	.page-pagination{
		margin-top: 10px;
	}

	.page-single-post{
		padding: 50px 0;
	}

	.page-single-post::before{
        left: -80px;
        height: 260px;
        width: 180px;
    }

    .page-single-post::after{
        bottom: -40px;
        height: 170px;
        width: 208px;
    }

	.post-single-meta ol li,
	.post-single-meta ol li i{
		font-size: 16px;
	}
	
	.post-image{
		margin-bottom: 20px;
	}

	.post-image figure,
	.post-image img{
		border-radius: 20px;
	}
		
	.post-entry h1,
	.post-entry h2,
	.post-entry h3,
	.post-entry h4,
	.post-entry h5,
	.post-entry h6{
		margin: 0 0 0.417em;
	}

	.post-entry h2{
		font-size: 36px;
	}

	.post-entry p{
		margin-bottom: 15px;
	}

	.post-entry ol li,
	.post-entry ul li{
		font-size: 16px;
		margin-bottom: 10px;
	}

	.post-entry blockquote{
		background-position: 20px 20px;
		background-size: 40px;
		padding: 20px 20px 20px 70px;
		margin-bottom: 20px;
	}

	.post-entry blockquote p{
		font-size: 18px;
	}

	.post-tags{
		margin-bottom: 20px;
	}

	.post-tags .tag-links a{
		padding: 12px 15px;
	}

	.post-social-sharing ul{
		text-align: left;
	}

	.page-team{
		padding: 50px 0 20px;
	}

	.team-item .team-image{
		margin-bottom: 15px;
	}

	.team-item .team-image img{
		aspect-ratio: 1 / 0.98;
	}

	.team-social-icon{
		left: 20px;
		right: 20px;
	}

	.team-item:hover .team-social-icon{
		bottom: 20px;
	}

	.page-team-single{
		padding: 50px 0;
	}

	.page-team-single::before{
        height: 260px;
        width: 180px;
    }

    .page-team-single::after{
        bottom: -40px;
        height: 170px;
        width: 208px;
    }

	.page-team-single-box{
		gap: 50px 0;
	}

	.team-member-image,
	.team-member-content{
		width: 100%;
	}

	.team-member-image img{
		aspect-ratio: 1 / 0.7;
	}

	.member-social-list{
		padding: 20px;
	}

	.member-info-list ul{
		gap: 40px 30px;
		margin-bottom: 30px;
	}

	.member-info-list ul li:before{
		bottom: -20px;
	}

	.member-about-list{
		padding: 20px;
	}

	.member-about-list ul{
		gap: 10px 40px;
	}

	.team-member-Skill-feature,
	.team-contact-form{
		width: 100%;
	}

	.member-feature-content{
		margin-bottom: 30px;
		padding-bottom: 30px;
	}

	.page-pricing{
		padding: 50px 0 0px;
	}

	.page-pricing::before{
        height: 260px;
        width: 180px;
    }

	.page-testimonials{
		padding: 50px 0 25px;
	}

	.page-testimonials::before{
        height: 260px;
        width: 180px;
    }

	.page-gallery{
		padding: 50px 0 20px;
	}

	.page-video-gallery{
		padding: 50px 0 20px;
	}

	.page-faqs{
		padding: 50px 0;
	}

	.page-faqs::before{
        height: 260px;
        width: 180px;
    }
    
    .page-faqs::after{
        bottom: -40px;
        height: 170px;
        width: 208px;
    }
	
	.page-faqs-catagery .page-faq-accordion{
		margin-bottom: 40px;
	}

	.page-contact-us{
		padding: 50px 0;
	}

	.contact-us-content{
		margin-right: 0;
		margin-bottom: 30px;
	}

	.contact-info-list{
		margin-bottom: 30px;
	}

	.contact-info-item .icon-box{
		margin-right: 10px;
	}

	.contact-item-content{
		width: calc(100% - 60px);
	}

	.contact-us-form{
		border-radius: 20px;
		padding: 30px;
	}

	.contact-form .form-control{
		padding: 12px 15px;
	}

	.google-map-iframe,
	.google-map-iframe iframe{
		height: 450px;
	}

	.page-book-appointment{
		padding: 50px 0 25px;
	}

	.page-book-appointment::before{
        height: 260px;
        width: 180px;
    }

	.error-page{
		padding: 50px 0;
	}

	.error-page-image{
		margin-bottom: 20px;
	}

	.error-page-image img{
		max-width: 80%;
	}

	.error-page-content .section-title,
	.error-page-content-body p{
		margin-bottom: 15px;
	}
}

@media only screen and (max-width: 767px){

	body{
		font-size: 16px;
	}

	.navbar-brand img{
		max-height: 70px;
	}

	.book-appointment-modal .modal-header{
		padding: 22px 20px;
	}

	.book-appointment-modal .modal-body{
		padding: 22px 20px;
	}

	.book-appointment-modal .modal-title{
		font-size: 24px;
	}

	.home-about-intro{
		padding: 60px 0 70px;
	}

	.home-about-intro-media{
		max-width: 100%;
		padding-bottom: 24px;
		margin-bottom: 28px;
	}

	.home-about-intro-photo{
		border-radius: 16px;
	}

	.home-about-intro-badge{
		left: 16px;
		padding: 12px 16px;
	}

	.home-about-intro-badge strong{
		font-size: 24px;
	}

	.home-about-intro-content{
		padding-left: 0;
		margin-top: 10px;
	}

	.home-about-intro-content .section-title{
		margin-bottom: 24px;
	}

	.home-why-choose{
		padding: 60px 0 70px;
	}

	.home-why-choose-header{
		margin-bottom: 36px;
	}

	.home-why-choose-header h2{
		font-size: 28px;
	}

	.home-why-choose-header p{
		font-size: 16px;
	}

	.home-why-choose-card{
		padding: 24px 22px;
	}

	.home-why-choose-card h3{
		font-size: 20px;
	}

	.contact-locations-section{
		padding: 60px 0 50px;
	}

	.contact-locations-header{
		margin-bottom: 32px;
	}

	.contact-locations-map,
	.contact-locations-map iframe{
		min-height: 320px;
	}

	.contact-message-section{
		padding-bottom: 70px;
	}

	.contact-message-box{
		padding: 28px 22px;
		border-radius: 18px;
	}

	.readmore-btn{
		padding: 2px 32px 2px 0;
	}

	.readmore-btn:after{
		width: 24px;
		height: 24px;
	}

	.section-row{
		margin-bottom: 30px;
	}

	.section-title h1{
		font-size: 30px;
	}

	.section-title h2{
		font-size: 26px;
	}

	.section-title p{
        margin-top: 10px;
    }

	.section-title-content{
        margin-top: 10px;
    }

	.hero-body{
		gap: 20px;
	}

	.video-play-button a{
		height: 45px;
		width: 45px;
	}

	.video-play-button a i{
		font-size: 16px;
	}

	.hero-body .video-play-button p{
		font-size: 14px;
	}

	.down-arrow-circle{
		right: 0;
		left: 0;
	}

	.down-arrow-circle a img{
        max-width: 80px;
    }

	.down-arrow-circle a i{
        font-size: 24px;
    }

	.about-us::before{
        height: 135px;
        width: 166px;
    }

	.about-images{
		max-width: 100%;
		margin: 0 0 50px 0;
	}

	.about-images::after{
		top: 0;
		background-size: contain;
		max-width: 60%;
	}

	.about-image img{
		max-width: 100%;
		aspect-ratio: 1 / 1.3;
		object-fit: contain;
	}

	.about-image-title{
		right: 20px;
	}

	.about-image-title h2{
        font-size: 58px;
    }

	.about-benefit-item-content h3{
		font-size: 18px;
	}

	.service-header{
        margin-bottom: 30px;
    }

	.service-content h3{
		font-size: 18px;
	}

	.what-we-do::before{
        left: -30px;
        height: 200px;
        width: 138px;
    }

	.what-we-body ul{
        gap: 10px;
    }

	.what-we-body ul li{
		width: 100%;
	}

	.what-we-image{
		background-size: 80% auto;
        max-width: 100%;
    }

	.what-we-benefits-list{
        padding: 30px 20px;
    }

	.what-we-item{
		width: 100%;
	}

	.what-we-item-content h3{
		font-size: 18px;
	}

	.what-we-benefit-image img{
        aspect-ratio: 1 / 0.682;
    }

	.why-choose-content{
		gap: 20px;
	}

	.why-choose-item{
        width: 100%;
    }

	.why-choose-item .icon-box img{
        max-width: 50px;
    }

	.why-choose-item-content h3{
		font-size: 18px;
	}

	.why-choose-counter-item{
        width: calc(50% - 15px);
    }

	.why-choose-counter-item .icon-box img{
		max-width: 30px;
	}

	.why-choose-counter-content h3{
        font-size: 22px;
    }

	.our-benefits::before{
        height: 190px;
        width: 198px;
    }

	.benefit-item{
        margin-bottom: 20px;
        padding-bottom: 20px;
    }

	.benefit-item .icon-box img{
        max-width: 50px;
    }

	.benefit-item-content h3{
		font-size: 18px;
		margin-bottom: 10px;
	}

	.our-benefits-image{
        max-width: 100%;
        margin: 30px 0;
    }

	.our-benefits-image::before{
		width: 100%;
		height: 350px;
	}

	.our-benefits-image figure{
		background-size: 90%;
	}

	.our-benefits-image img{
		max-width: 100%;
	}

	.intro-video-box{
		height: 350px;
	}

	.intro-video-box .video-play-button a{
        width: 70px;
        height: 70px;
        font-size: 16px;
    }

	.how-work-step-no h2{
        font-size: 28px;
    }

	.how-work-step-content h3{
		font-size: 18px;
	}

	.how-work-image{
        max-width: 100%;
    }

	.how-work-image::after{
		top: 20px;
		bottom: 20px;
		left: 15px;
		height: calc(100% - 40px);
	}

	.how-work-image figure{
		background-size: 38% auto;
	}

	.features-item{
		margin-bottom: 20px;
	}

	.our-features-boxes{
		gap: 20px;
	}

	.features-box{
		width: 100%;
	}

	.features-box.box-2 .features-box-image img,
	.features-box-image img{
		aspect-ratio: 1 / 0.7;
	}

	.features-box.box-3 .features-item-image img{
		aspect-ratio: 1 / 1.1;
	}

	.features-box-content h3,
	.features-item-content h3{
		font-size: 18px;
	}

	.our-pricing::before{
        top: 0;
        left: -50px;
        height: 163px;
        width: 180px;
    }

    .our-pricing::after{
        right: -30px;
        height: 75px;
        width: 208px;
    }

	.pricing-content h2{
        font-size: 26px;
    }

	.scrolling-ticker-box{
		--gap: 20px;
		padding: 40px 0;
		margin: 25px 0;
	}

	.scrolling-ticker-box .scrolling-content span{
		font-size: 30px;
	}

	.scrolling-ticker-box .scrolling-content span img{
		max-width: 18px;
		margin-right: 20px;
	}

	.scrolling-ticker-image img{
		max-width: 50px;
	}

	.scrolling-ticker-image{
		transform: translateY(25px);
	}
	
	.scrolling-ticker-images .scrolling-ticker-image:nth-child(even){
		transform: translateY(-25px);
	}

	.home-trust-strip{
		border-top-width: 2px;
		border-bottom-width: 2px;
	}

	.trust-strip-inner{
		padding: 26px 0;
	}

	.trust-strip-inner .container-fluid{
		padding-left: 14px;
		padding-right: 14px;
	}

	.trust-strip-item{
		min-height: 74px;
		padding: 14px;
		gap: 12px;
		border-radius: 14px;
	}

	.trust-strip-icon{
		width: 46px;
		height: 46px;
	}

	.trust-strip-icon img{
		width: 36px;
	}

	.trust-strip-item p{
		font-size: 13px;
		line-height: 1.35;
	}

	.trust-strip-edge{
		width: 32px;
	}

	.testimonial-review-box{
        padding: 20px;
    }

	.testimonial-review-header{
		margin-bottom: 30px;
	}

	.testimonial-review-counter p{
		max-width: 100%;
	}

	.testimonial-review-content{
		width: 100%;
	}

	.testimonial-review-btn a{
		width: 46px;
		height: 46px;
	}

	.testimonial-review-btn a img{
		max-width: 12px;
	}

	.testimonial-item{
        padding: 20px;
    }

	.testimonial-author .author-image{
		margin-right: 10px;
	}

	.testimonial-author .author-image img{
		max-width: 50px;
	}

	.testimonial-author .author-content h3{
		font-size: 18px;
	}

	.testimonial-author .author-content p{
		font-size: 14px;
	}

	.testimonial-item-content p{
		font-size: 14px;
	}

	.testimonial-author .author-content{
		width: calc(100% - 60px);
	}

	.faq-accordion .accordion-header .accordion-button{
		font-size: 18px;
		padding: 12px 40px 12px 15px;
	}

	.faq-accordion .accordion-item .accordion-body{
        padding: 12px 15px;
    }

	.faq-accordion .accordion-item .accordion-body p{
		font-size: 14px;
	}

	.faqs-image{
        padding: 15px 15px 30px 25px;
    }

	.faqs-image::before{
		width: 210px;
		height: 210px;
	}

	.faqs-contact-box{
        padding: 10px 15px;
    }

	.faqs-contact-box .icon-box{
		width: 40px;
		height: 40px;
		margin-right: 10px;
	}

	.faqs-contact-box-content{
		width: calc(100% - 50px);
	}

	.faqs-contact-box-content h3{
		font-size: 18px;
	}

	.our-blog::before{
        height: 135px;
        width: 166px;
    }

	.post-item-content h2{
		font-size: 18px;
	}

	.footer-main{
        padding: 40px 0 0;
    }

    .footer-bottom-bar{
        margin-top: 28px;
    }

    .footer-brand-logo img{
        max-width: 170px;
    }

    .footer-links h3{
        font-size: 18px;
        margin-bottom: 14px;
    }

	.footer-links ul li{
        margin-bottom: 8px;
    }

    .footer-copyright{
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 16px 0;
    }

	.page-header-box h1{
		font-size: 30px;
	}

	.page-header-box ol li.breadcrumb-item{
		font-size: 14px;
	}

	.our-approach-body{
        padding: 20px;
    }

	.mission-vision-item h3{
		font-size: 18px;
	}

	.our-approach-image{
		max-width: 100%;
		padding-right: 120px;
	}

	.our-approach-img-2{
		max-width: 190px;
		border-width: 5px;
	}

	.approach-explore-more-circle{
		position: absolute;
		top: 15px;
		right: 10px;
	}

	.approach-explore-more-circle img{
        max-width: 100px;
    }

	.who-we-are-image{
		max-width: 100%;
	}

	.who-we-are-image:before{
		width: 220px;
		height: 220px;
	}

	.who-we-are-body{
		gap: 20px;
	}

	.we-are-item{
		width: 100%;
	}

	.we-are-item-content h3{
		font-size: 18px;
		margin-bottom: 5px;
	}

	.our-expertise-body ul{
		gap: 10px 40px;
	}

	.our-expertise-body ul li{
		width: 100%;
	}

	.skills-progress-bar .skillbar .skill-progress{
		height: 12px;
	}

	.expertise-image{
		padding: 0 0 40px 40px;
	}

	.expertise-img figure,
	.expertise-img img{
		border-radius: 20px;
	}

    .expertise-image-list{
        max-width: 120px;
    }

	.expertise-list-img{
		border-width: 3px;
		border-radius: 12px;
	}

	.expertise-explore-more-circle{
		right: 40px;
		border-width: 3px;
	}

	.expertise-explore-more-circle img{
        max-width: 80px;
    }

	.our-features.about-our-features::before{
		right: -40px;
        height: 190px;
        width: 198px;
    }

	.team-member-item .team-image,
	.team-member-item .team-body{
		width: 100%;
	}
	
	.team-image a,
	.team-image figure,
	.team-image img{
		height: auto;
	}

	.team-body{
        padding: 20px;
    }

	.team-content h2{
		font-size: 18px;
	}

	.our-testimonials.about-our-testimonials::before{
        height: 135px;
        width: 166px;
    }

	.our-appointment-box{
		border-radius: 20px;
        padding: 20px;
    }

	.appointment-item{
        margin-bottom: 20px;
        padding-bottom: 20px;
    }

	.appointment-item-content h3{
		font-size: 18px;
	}

	.page-services::before{
        left: -50px;
        height: 200px;
        width: 138px;
    }    
    
    .page-service-single::before{
        left: -50px;
        height: 200px;
        width: 138px;
    }
    
    .page-service-single::after{
        top: 50%;
        height: 135px;
        width: 166px;
    }

	.page-catagery-list h3{
        font-size: 18px;
        padding: 15px 20px;
    }

    .sidebar-cta-image img{
        aspect-ratio: 1 / 0.64;
    }

    .sidebar-cta-content h3{
        font-size: 18px;
    }

    .service-featured-image{
        margin-bottom: 20px;
    }

    .service-featured-image img{
        aspect-ratio: 1 / 0.65;
    }

    .service-entry h2{
        font-size: 26px;
    }

    .service-entry ul{
        gap: 10px;
    }

    .service-entry ul li{
        width: 100%;
    }

	.discover-peace-box,
	.service-benefits-box,
	.service-process-box{
        margin-top: 30px;
    }

    .discover-peace-item{
        width: 100%;
    }

    .discover-peace-item-content h3{
        font-size: 18px;
        margin-bottom: 10px;
    }

    .discover-peace-item-content p{
        font-size: 14px;
    }

    .discover-peace-info-box{
		display: block;
        margin: 20px 0;
    }

    .discover-peace-info-box .icon-box{
		border-right: none;
        margin-right: 0px;
        padding-right: 0px;
		margin-bottom: 10px;
    }

    .discover-peace-info-content{
        width: 100%;
    }

    .discover-peace-info-content h3{
        font-size: 18px;
    }

    .service-benefits-image img{
        aspect-ratio: 1 / 0.58;
    }

    .service-process-steps .how-work-step{
        margin-bottom: 20px;
    }

    .service-process-steps .how-work-step .how-work-step-no h2{
        font-size: 28px;
    }

	.page-single-post::before{
        left: -50px;
        height: 200px;
        width: 138px;
    }
    
    .page-single-post::after{
        top: 50%;
        height: 135px;
        width: 166px;
    }

	.post-image img{
        aspect-ratio: 1 / 0.7;
    }
    
    .post-entry blockquote{
        background-position: 15px 15px;
        padding: 60px 15px 15px 15px;
    }
    
    .post-entry blockquote p{
        font-size: 16px;
    }
    
    .post-entry h2{
        font-size: 26px;
    }
    
    .tag-links{
        font-size: 18px;
    }

	.page-team-single::before{
        left: -50px;
        height: 200px;
        width: 138px;
    }
    
    .page-team-single::after{
        top: 50%;
        height: 135px;
        width: 166px;
    }

	.team-member-image img{
        aspect-ratio: 1 / 0.9;
    }

	.member-social-list h3{
		font-size: 18px;
	}

	.member-info-list ul{
		gap: 30px;
	}

	.member-info-list ul li{
		width: 100%;
		font-size: 18px;
	}

	.member-info-list ul li:before{
        bottom: -15px;
    }

	.member-info-list ul li:nth-last-child(-n + 2):before{
		display: block;
	}

	.member-info-list ul li:last-child::before{
		display: none;
	}

	.member-info-list ul li span{
		width: 65%;
	}

	.member-about-list ul li{
		width: 100%;
	}

	.page-pricing::before{
        left: -50px;
        height: 200px;
        width: 138px;
    }
    
    .page-testimonials::before{
        left: -50px;
        height: 200px;
        width: 138px;
    }

	.page-testimonials .our-testimonial-box .testimonial-item{
		width: 100%;
	}

	.page-faqs::before{
        left: -50px;
        height: 200px;
        width: 138px;
    }
    
    .page-faqs::after{
        top: 50%;
        height: 135px;
        width: 166px;
    }

	.contact-info-list{
		gap: 20px;
	}
	
	.contact-info-item{
		width: 100%;
	}

	.contact-item-content h3{
		font-size: 18px;
	}

	.contact-social-list{
		display: block;
	}

	.contact-social-list h3{
		font-size: 18px;
		margin-bottom: 10px;
	}

	.contact-social-list ul li a i{
		font-size: 16px;
	}

	.contact-us-form{
		padding: 20px;
	}

	.google-map-iframe,
	.google-map-iframe iframe{
		height: 350px;
	}

	.page-book-appointment::before{
        left: -50px;
        height: 200px;
        width: 138px;
    }
}

/************************************/
/**** Video Feedback Reels css ******/
/************************************/

.video-feedback-section{
	position: relative;
	padding: 100px 0 90px;
	background: linear-gradient(180deg, #f4f8f1 0%, var(--white-color) 45%, #f7faf5 100%);
	overflow: hidden;
}

.video-feedback-section::before,
.video-feedback-section::after{
	content: '';
	position: absolute;
	border-radius: 50%;
	pointer-events: none;
}

.video-feedback-section::before{
	top: -120px;
	right: -80px;
	width: 320px;
	height: 320px;
	background: rgba(116, 164, 42, 0.12);
}

.video-feedback-section::after{
	bottom: -140px;
	left: -90px;
	width: 340px;
	height: 340px;
	background: rgba(2, 51, 32, 0.06);
}

.video-feedback-header{
	position: relative;
	z-index: 1;
	max-width: 720px;
	margin: 0 auto 44px;
}

.video-feedback-eyebrow{
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--accent-secondary-color);
	margin-bottom: 14px;
}

.video-feedback-eyebrow::before{
	content: '';
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--accent-secondary-color);
	box-shadow: 0 0 0 4px rgba(116, 164, 42, 0.18);
}

.video-feedback-header h2{
	font-family: var(--accent-font);
	font-size: clamp(34px, 4.2vw, 48px);
	line-height: 1.15;
	font-weight: 400;
	color: var(--primary-color);
	margin: 0 0 14px;
}

.video-feedback-lead{
	margin: 0;
	font-size: 16px;
	line-height: 1.7;
	color: var(--text-color);
}

.video-feedback-slider-wrap{
	position: relative;
	z-index: 1;
	max-width: 1320px;
	margin: 0 auto;
	padding: 0 58px;
}

.video-feedback-nav{
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 2;
	width: 48px;
	height: 48px;
	border: 1px solid rgba(2, 51, 32, 0.12);
	border-radius: 50%;
	background: var(--white-color);
	color: var(--primary-color);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	cursor: pointer;
	transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
	box-shadow: 0 10px 24px rgba(2, 51, 32, 0.12);
}

.video-feedback-nav:hover{
	background: var(--accent-secondary-color);
	border-color: var(--accent-secondary-color);
	color: var(--white-color);
	transform: translateY(-50%) scale(1.05);
	box-shadow: 0 12px 28px rgba(116, 164, 42, 0.28);
}

.video-feedback-prev{
	left: 12px;
}

.video-feedback-next{
	right: 12px;
}

.video-feedback-swiper{
	overflow: hidden;
	padding: 10px 4px 18px;
}

.video-feedback-swiper .swiper-slide{
	height: auto;
	display: flex;
	justify-content: center;
}

.video-feedback-reel{
	position: relative;
	display: block;
	width: 100%;
	max-width: 100%;
	height: clamp(380px, 42vw, 520px);
	border-radius: 22px;
	overflow: hidden;
	border: 2px solid rgba(116, 164, 42, 0.18);
	box-shadow: 0 16px 40px rgba(2, 51, 32, 0.14);
	background: #000;
	transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.video-feedback-reel-poster{
	position: absolute;
	inset: 0;
	z-index: 1;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}

.video-feedback-reel.is-playing .video-feedback-reel-poster{
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}

.video-feedback-reel-player{
	position: absolute;
	inset: 0;
	z-index: 4;
	display: none;
	background: #000;
}

.video-feedback-reel.is-playing .video-feedback-reel-player{
	display: block;
}

.video-feedback-reel-player iframe,
.video-feedback-reel-player video{
	width: 100%;
	height: 100%;
	border: 0;
	display: block;
	object-fit: cover;
	background: #000;
}

.video-feedback-reel.is-playing{
	border-color: rgba(116, 164, 42, 0.65);
	box-shadow: 0 18px 42px rgba(2, 51, 32, 0.18);
}

.video-feedback-reel.is-playing:hover{
	transform: none;
}

.video-feedback-reel::before{
	content: '';
	position: absolute;
	inset: 0;
	border-radius: inherit;
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
	pointer-events: none;
	z-index: 2;
}

.video-feedback-reel:hover{
	transform: translateY(-6px);
	border-color: rgba(116, 164, 42, 0.55);
	box-shadow: 0 22px 48px rgba(2, 51, 32, 0.2);
}

.video-feedback-reel img,
.video-feedback-reel-poster-media,
.video-feedback-thumb-media{
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	background: #0f2419;
}

.video-feedback-thumb-fallback{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	min-height: 72px;
	background: linear-gradient(135deg, #023320 0%, #0a4d35 100%);
	color: var(--accent-secondary-color);
	font-size: 20px;
}

.video-feedback-admin-thumb.video-feedback-thumb-fallback{
	min-height: 72px;
	width: 40px;
}

.video-feedback-reel-overlay{
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(2, 51, 32, 0.08) 20%, rgba(2, 51, 32, 0.08) 45%, rgba(2, 51, 32, 0.72) 100%);
	pointer-events: none;
	z-index: 1;
}

.video-feedback-play{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 64px;
	height: 64px;
	border: none;
	padding: 0;
	border-radius: 50%;
	background: var(--white-color);
	color: var(--accent-secondary-color);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	box-shadow: 0 10px 28px rgba(2, 51, 32, 0.22);
	transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
	z-index: 3;
	cursor: pointer;
}

.video-feedback-reel:hover .video-feedback-play{
	transform: translate(-50%, -50%) scale(1.08);
	background: var(--accent-secondary-color);
	color: var(--white-color);
}

.video-feedback-play i{
	margin-left: 3px;
}

@media only screen and (max-width: 1199px){
	.video-feedback-slider-wrap{
		max-width: none;
		padding: 0 52px;
	}

	.video-feedback-reel{
		height: clamp(360px, 58vw, 480px);
	}
}

@media only screen and (max-width: 767px){
	.video-feedback-section{
		padding: 72px 0 64px;
	}

	.video-feedback-header{
		margin-bottom: 32px;
	}

	.video-feedback-lead{
		font-size: 15px;
	}

	.video-feedback-slider-wrap{
		padding: 0 46px;
	}

	.video-feedback-nav{
		width: 42px;
		height: 42px;
		font-size: 13px;
	}

	.video-feedback-prev{
		left: 6px;
	}

	.video-feedback-next{
		right: 6px;
	}

	.video-feedback-reel{
		height: clamp(340px, 72vw, 440px);
		border-radius: 18px;
	}
}

@media only screen and (max-width: 575px){
	.video-feedback-slider-wrap{
		padding: 0 40px;
	}

	.video-feedback-reel{
		height: 420px;
	}
}