/* ----------------------------------------------------------------------------------------
* Author        : Awaiken
* Template Name : Glowix - Plastic Surgery & Beauty Clinic HTML Template
* 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. Intro Video css
09. Case Study css
10. Why Choose Us css
11. How It Work css
12. Our Testimonial css
13. Our Result css
14. Our Appointment css
15. Our Blog css
16. Footer css
17. About Us Page css
18. Services Page css
19. Services Single css
20. Blog Archive css
21. Blog Single css
22. Case Study Page css
23. Case Study Single css
24. Team Page css
25. Team Single css
26. Testimonials Page css
27. Image Gallery css
28. Video Gallery css
29. FAQs Page css
30. Contact Us Page css
31. Book Appointment css
32. 404 Error Page css
33. Responsive css
-------------------------------------------------------------------------------------- */

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

:root{
	--primary-color			: #361319;
	--secondary-color			: #C6B39A;
	--header-link-color			: #361319;
	--text-color			: #7B694E;
	--accent-color			: #6D3A3C;
	--white-color			: #FFFFFF;
	--divider-color			: #6D3A3C1A;
	--dark-divider-color			: #FFFFFF1A;
	--black-color			: #280B0F;
	--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(--black-color);
}

::-webkit-scrollbar-track{
	background-color: var(--primary-color);
	border-left: 1px solid var(--primary-color);
}
::-webkit-scrollbar{
	width: 7px;
	background-color: var(--primary-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{
	width: 100%;
	overflow-x: visible;
}

body{
	width: 100%;
	overflow-x: hidden;
}

.container{
	max-width: 1300px;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl{
    padding-right: 15px;
    padding-left: 15px;
}

.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;
	font-size: 16px;
	font-weight: 600;
	line-height: 1em;
	text-transform: capitalize;
	background: var(--accent-color);
	color: var(--white-color);
	border-radius: 100px;
	padding: 17px 25px;
	margin-right: 50px;
	border: none;
	transition: all 0.5s ease-in-out;
	z-index: 1;
}

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

.btn-default:hover::before{
	transform: translateY(-50%) rotate(45deg);
}

.btn-default::after{
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
  	left: 50%;
  	right: 50%;
  	opacity: 0;
	background: var(--primary-color);
	border-radius: 100px;
	transition: all 0.4s ease-in-out;
	z-index: -1;
}
  
.btn-default:hover::after{
	left: 0;
  	right: 0;
	opacity: 1;
}

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

.btn-default.btn-highlighted::before{
	background-color: var(--white-color);
	background-image: url('../images/arrow-primary.svg');
}

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

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

.readmore-btn:hover{
	background: var(--primary-color);
}

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

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

.cb-cursor{
	color: #7B694E;
}

.cb-cursor:before{
	background: #7B694E;
}

.cb-cursor.-text:before{
	background: #7B694E;
	opacity: 1;
}

@supports (mix-blend-mode: exclusion){
	.cb-cursor.-exclusion:before,
	.cb-cursor.-opaque:before{
		background: #7B694E;
	}
}

.preloader{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 10050;
	background: #361319;
	display: flex;
	align-items: center;
	justify-content: center;
}

.preloader.is-dismissed{
	display: none !important;
}

body.is-preloading{
	overflow: hidden;
}

/* Preloader is a full-screen overlay — do not hide page children (causes blank page if JS is delayed) */
body.is-preloading .wow{
	animation-name: none !important;
}

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

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

.loading{
	border: 1px solid transparent;
	border-color: #7B694E transparent #7B694E transparent;
	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);
	}
}

.bg-section{
	width: 100%;
	max-width: 1800px;
	margin: 0 auto;
	background-color: var(--secondary-color);
	border-radius: 30px;
}

.bg-section.dark-section{
	background-color: var(--primary-color);
}

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

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

.section-row .section-title.section-title-center{
	width: 100%;
	max-width: 700px;
	text-align: center;
	margin: 0 auto;
}

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

.section-title h3{
	display: inline-block;
	position: relative;
	font-family: var(--default-font);
	font-size: 14px;
    font-weight: 400;
	line-height: 1.7em;
	letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent-color);
	padding-left: 34px;
    margin-bottom: 10px;
}

.section-title h3::before{
	content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    background: url('../images/icon-sub-heading.svg') no-repeat;
	background-position: left center;
	background-size: cover;
    width: 24px;
    height: 24px;
}

.dark-section .section-title h3{
	color: var(--white-color);
}

.dark-section .section-title h3::before{
	filter: brightness(0) invert(1);
}

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

.section-title h1.text-anime-style-3{
	text-transform: none !important;
}

.section-title h1.text-anime-style-3,
.section-title h1.text-anime-style-3 .split-line,
.section-title h1.text-anime-style-3 .split-line > div,
.section-title h1.text-anime-style-3 .split-line > div > div,
.section-title h2.text-anime-style-3,
.section-title h2.text-anime-style-3 .split-line,
.section-title h2.text-anime-style-3 .split-line > div,
.section-title h2.text-anime-style-3 .split-line > div > div{
	text-transform: none !important;
}

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

.section-title h2.text-anime-style-3{
	text-transform: none !important;
}

.page-services .section-title h2{
	margin-bottom: 60px;
}
.common-areas-title{
	margin-bottom: 60px;
	display: inline-block;
}
.section-title .common-areas-title{
	display: block;
	margin-bottom: 80px !important;
}
.section-title-gap{
	margin-top: 60px;
}
.section-gap{
	margin-bottom: 64px;
}

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

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

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

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

.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: relative;
	z-index: 100;
	overflow: visible;
}

body.home-page > header.main-header{
	--header-blur-top-extend: 24px;
}

body:not(.home-page) > header.main-header{
	--header-blur-top-extend: 0;
	overflow: visible !important;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	width: 100vw;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	z-index: 1000;
	background: transparent;
}

body:not(.home-page) > header.main-header .header-sticky,
body:not(.home-page) > header.main-header .header-sticky.active{
	overflow: visible !important;
	position: relative;
	top: 0;
	left: auto;
	right: auto;
	width: 100%;
	max-width: none;
	transform: none;
}

body:not(.home-page) > header.main-header .header-sticky::before,
body:not(.home-page) > header.main-header .header-sticky.active::before{
	content: none;
	display: none;
}

body:not(.home-page) > header.main-header .header-sticky.bg-section{
	max-width: none;
	width: 100%;
	margin-left: 0;
	margin-right: 0;
}

.main-header .bg-section{
	background: transparent;
	max-width: 1720px;
}

header.main-header .header-sticky{
	position: relative;
	top: 0;
	z-index: 100;
	isolation: isolate;
	overflow: visible;
}

header.main-header .header-sticky::before{
	content: '';
	position: absolute;
	top: calc(-1 * (env(safe-area-inset-top, 0px) + var(--header-blur-top-extend, 0px)));
	left: 50%;
	right: auto;
	width: 100vw;
	bottom: 0;
	transform: translateX(-50%);
	z-index: -1;
	pointer-events: none;
	background: linear-gradient(
		to bottom,
		rgba(40, 11, 15, 0.22) 0%,
		rgba(40, 11, 15, 0.1) 55%,
		rgba(40, 11, 15, 0) 100%
	);
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
}

body:not(.home-page) > header.main-header .header-sticky > *{
	position: relative;
	z-index: 1;
}

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;
	width: 100%;
	border-radius: 0;
    transform: translateY(0);
	background: transparent;
	border: none;
	border-top: none;
	box-shadow: none;
	z-index: 1001;
}

body.home-page header.main-header .header-sticky{
	background: transparent;
	border: none;
	border-radius: 0;
	box-shadow: none;
}

body.home-page header.main-header .header-sticky.active{
	background: transparent;
	border: none;
	border-radius: 0;
	box-shadow: none;
}

body.home-page header.main-header .header-sticky.bg-section,
body.home-page #home-hero.bg-section{
	max-width: none;
	width: 100%;
	margin: 0;
	border-radius: 0;
	box-shadow: none;
}

body.home-page header.main-header .header-sticky.bg-section{
	background-color: transparent;
	padding-left: 0;
	padding-right: 0;
}

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

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

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

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

.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-family: 'Sora', sans-serif;
	font-style: normal;
	font-weight: 400;
	font-size: 16px;
	line-height: 1em;
	padding: 15px !important;
	color: var(--header-link-color);
	text-transform: capitalize;
	transition: all 0.3s ease-in-out;
}

body.home-page > header.main-header .main-menu ul li a{
	color: #361319;
}

body.home-page header.main-header .collapse .nav-menu-wrapper > ul > li > a.nav-link{
	color: #361319;
}

body.home-page header.main-header .hero-btn .btn-default{
	color: var(--white-color);
}

@media only screen and (min-width: 992px){
	.main-menu .nav-menu-wrapper > ul > li > a{
		padding: 12px 8px !important;
	}

	.main-menu .nav-menu-wrapper > ul > li.submenu > a:after{
		margin-left: 5px;
	}
}

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

.main-menu ul li a:hover,
.main-menu ul li a:focus{
	color: var(--accent-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;
	width: auto;
	min-width: 280px;
	max-width: 320px;
}
.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;
	border-left: 3px solid transparent;
	transition: color 0.3s ease-in-out, border-color 0.3s ease-in-out;
}

@media only screen and (min-width: 992px){
	.main-menu ul ul li a{
		line-height: 1.35em;
	}

	br.nav-desktop-br{
		display: block;
	}

	br.footer-mobile-br{
		display: none;
	}
}

@media only screen and (max-width: 991px){
	br.nav-desktop-br{
		display: none;
	}

	br.footer-mobile-br{
		display: block;
	}

	/* Hamburger menu: break after & (Facials & / Chemical Peels, etc.) */
	.slicknav_menu br.nav-desktop-br{
		display: block;
	}

	.slicknav_nav li a,
	.slicknav_nav .slicknav_row,
	.slicknav_nav .slicknav_row a{
		white-space: normal;
	}
}

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

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

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

.header-contact-now{
	font-family: 'Sora', sans-serif;
	font-size: 16px;
	line-height: 1em;
	color: var(--primary-color);
	transition: all 0.3s ease-in-out;
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	text-align: left;
}

.header-contact-now .contact-lines{
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	gap: 0.15rem;
}

.header-contact-now .contact-line{
	display: inline-block;
}

.header-contact-now .contact-line + .contact-line{
	margin-left: 0.25rem;
}

.spa-contact-phone{
	display: inline-flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	gap: 0.08em;
	text-align: left;
	vertical-align: middle;
	line-height: 1.25;
}

.spa-contact-phone-line{
	display: block;
	white-space: nowrap;
}

.spa-contact-phone-line a{
	color: inherit;
	text-decoration: none;
	transition: color 0.3s ease-in-out;
}

.spa-contact-phone-line a:hover,
.spa-contact-phone-line a:focus{
	color: var(--accent-color);
}

.header-contact-now.header-phone{
	cursor: default;
}

.header-phone-icon{
	display: inline-flex;
	flex-shrink: 0;
	color: inherit;
	text-decoration: none;
}

.header-phone-icon:hover,
.header-phone-icon:focus{
	color: var(--accent-color);
}

.header-contact-now.header-phone .spa-contact-phone-line a{
	color: inherit;
}

.header-contact-now.header-phone .spa-contact-phone-line a:hover,
.header-contact-now.header-phone .spa-contact-phone-line a:focus{
	color: var(--accent-color);
}

.spa-contact-phone--cta .spa-contact-phone-line a:hover,
.spa-contact-phone--cta .spa-contact-phone-line a:focus{
	color: #6D3A3C !important;
	-webkit-text-fill-color: #6D3A3C !important;
}

.footer-links .spa-contact-phone-line a:hover,
.footer-links .spa-contact-phone-line a:focus{
	color: var(--accent-color);
}

.header-contact-now:hover{
	color: var(--accent-color);
}

.header-contact-now i{
	background-color: #7B694E;
    border-radius: 50%;
    width: 34px;
    height: 34px;
    font-size: 15px;
    color: var(--white-color);
	-webkit-text-fill-color: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-location .contact-lines{
	line-height: 1.2;
}

@media only screen and (min-width: 992px){
	.header-contact-btn{
		gap: 14px;
	}

	.header-contact-now{
		font-size: 16px;
		line-height: 1.2;
		gap: 0.45rem;
		flex-shrink: 0;
	}

	.header-contact-now .contact-lines,
	.header-location .contact-lines,
	.header-contact-now.header-phone .spa-contact-phone,
	.header-contact-now.header-phone .spa-contact-phone-line{
		font-size: inherit;
		line-height: inherit;
		white-space: nowrap;
	}

	.header-contact-now.header-phone .spa-contact-phone{
		gap: 0.06em;
	}

	.header-contact-now i{
		width: 26px;
		height: 26px;
		font-size: 11px;
		flex-shrink: 0;
	}
}

.header-contact-btn .btn-default{
	margin-right: 0;
}

.header-contact-btn .btn-default::before{
	display: none;
}

/************************************/
/***  Homepage Header Gold Unify  ***/
/************************************/

body.home-page{
	--header-gold: #280B0F;
	--header-gold-bright: #361219;
	--header-gold-active: var(--secondary-color);
	--header-gold-text: var(--header-link-color);
	--header-gold-text-hover: #7B694E;
	--header-gold-icon-bg: #7B694E;
	--header-gold-icon: var(--white-color);
}

body.home-page header.main-header .header-sticky.active{
	background: var(--secondary-color);
	border-color: rgba(40, 11, 15, 0.12);
}

body.home-page .main-menu .nav-menu-wrapper{
	margin-left: 22px;
}

body.home-page .main-menu .nav-menu-wrapper > ul > li > a{
	color: #7B694E;
}

body.home-page > header.main-header[data-nav-color="361319"] .main-menu .nav-menu-wrapper > ul > li > a{
	color: #361319;
}

body.home-page .main-menu .nav-menu-wrapper > ul > li > a:hover,
body.home-page .main-menu .nav-menu-wrapper > ul > li > a:focus{
	color: var(--header-gold-text-hover);
}

body.home-page > header.main-header[data-nav-color="7B694E"] .main-menu .nav-menu-wrapper > ul > li > a:active,
body.home-page > header.main-header[data-nav-color="7B694E"] .main-menu .nav-menu-wrapper > ul > li.active > a,
body.home-page > header.main-header[data-nav-color="7B694E"] .main-menu .nav-menu-wrapper > ul > li > a[aria-current="page"]{
	color: #7B694E;
}

body.home-page > header.main-header[data-nav-color="361319"] .main-menu .nav-menu-wrapper > ul > li > a:active,
body.home-page > header.main-header[data-nav-color="361319"] .main-menu .nav-menu-wrapper > ul > li.active > a,
body.home-page > header.main-header[data-nav-color="361319"] .main-menu .nav-menu-wrapper > ul > li > a[aria-current="page"]{
	color: #361319;
}

body.home-page > header.main-header.header-over-page-bg .main-menu .nav-menu-wrapper > ul > li > a:active,
body.home-page > header.main-header.header-over-page-bg .main-menu .nav-menu-wrapper > ul > li.active > a,
body.home-page > header.main-header.header-over-page-bg .main-menu .nav-menu-wrapper > ul > li > a[aria-current="page"]{
	color: #7B694E !important;
}

body.home-page .main-menu .nav-menu-wrapper > ul > li.submenu > a:after{
	color: inherit;
	opacity: 0.85;
}

body.home-page .main-menu ul ul li a{
	color: #361319;
}

body.home-page .main-menu ul ul{
	background: #7B694E;
}

body.home-page .main-menu ul ul li a:hover,
body.home-page .main-menu ul ul li a:focus{
	color: #280B0F;
}

body.home-page .main-menu ul ul li a:active{
	color: #280B0F;
}

body.home-page > header.main-header[data-nav-color="7B694E"] .header-contact-now,
body.home-page > header.main-header[data-nav-color="7B694E"] .header-contact-now .contact-lines{
	color: #7B694E;
}

body.home-page > header.main-header[data-nav-color="361319"] .header-contact-now,
body.home-page > header.main-header[data-nav-color="361319"] .header-contact-now .contact-lines{
	color: #361319;
}

body.home-page .header-contact-now:hover,
body.home-page .header-contact-now:focus{
	color: var(--header-gold-text-hover);
}

body.home-page .header-contact-now:active{
	color: var(--header-gold-active);
}

body.home-page .header-contact-now i{
	background-color: var(--header-gold-icon-bg);
	color: var(--header-gold-icon);
	-webkit-text-fill-color: var(--header-gold-icon);
	box-shadow: none;
}

body.home-page .header-contact-btn .btn-default{
	background: #7B694E;
	color: var(--white-color) !important;
	font-size: 14px;
	padding: 13px 20px;
}

body.home-page .header-contact-btn .btn-default::after{
	background: #7B694E;
}

body.home-page .header-contact-btn .btn-default:hover,
body.home-page .header-contact-btn .btn-default:focus{
	background: transparent;
	color: var(--white-color) !important;
}

body.home-page .header-contact-btn .btn-default:hover::after,
body.home-page .header-contact-btn .btn-default:focus::after,
body.home-page > header.main-header .header-sticky .header-contact-btn .btn-default:hover::after,
body.home-page > header.main-header .header-sticky .header-contact-btn .btn-default:focus::after{
	background: #361319 !important;
}

body.home-page #home-hero .hero-btn .btn-default.btn-highlighted{
	background: #7B694E;
	color: var(--white-color);
}

body.home-page #home-hero .hero-btn .btn-default.btn-highlighted::before{
	background-color: #280B0F;
	background-image: url('../images/arrow-white.svg');
}

body.home-page #home-hero .hero-btn .btn-default.btn-highlighted::after{
	background: #280B0F;
}

body.home-page #home-hero .hero-btn .btn-default.btn-highlighted:hover,
body.home-page #home-hero .hero-btn .btn-default.btn-highlighted:focus{
	background: transparent;
	color: var(--white-color);
}

body.home-page #home-hero .hero-btn .btn-default.btn-highlighted:hover::after,
body.home-page #home-hero .hero-btn .btn-default.btn-highlighted:focus::after{
	background: #280B0F;
}

body.home-page #home-hero .hero-btn .btn-default.btn-highlighted:hover::before,
body.home-page #home-hero .hero-btn .btn-default.btn-highlighted:focus::before{
	background-color: #280B0F;
	background-image: url('../images/arrow-white.svg');
}

body.home-page header.main-header .header-sticky:not(.active) .main-menu .nav-menu-wrapper > ul > li > a,
body.home-page header.main-header .header-sticky:not(.active) .header-contact-now,
body.home-page header.main-header .header-sticky:not(.active) .header-contact-now .contact-lines{
	text-shadow: none;
}

body.home-page header.main-header .header-sticky:not(.active) .header-contact-now i{
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

body.home-page header.main-header .header-sticky,
body.home-page header.main-header .header-sticky.active{
	background: transparent !important;
	border: none !important;
	border-radius: 0 !important;
	box-shadow: none !important;
}

body.home-page #home-hero.bg-section{
	background-color: transparent !important;
	width: 100%;
	max-width: none !important;
	margin: 0;
	border-radius: 0;
	padding: 0;
	box-shadow: none;
}

.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: none;
	border-radius: 8px;
	box-shadow: none;
	outline: none;
}

.slicknav_btn:hover,
.slicknav_btn:focus,
.slicknav_btn:active,
.slicknav_btn.slicknav_open{
	border: none;
	outline: none;
	box-shadow: none;
}

.slicknav_icon{
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 22px;
	height: 17px;
	margin: 0;
	float: none;
	position: relative;
}

.slicknav_icon .slicknav_icon-bar{
	display: block;
	width: 100%;
	height: 3px;
	width: 22px;
	background-color: var(--white-color);
	border: none;
	border-radius: 6px;
	box-shadow: none;
	margin: 4px auto !important;
	transition: transform 0.2s ease-in-out, opacity 0.2s ease-in-out, background-color 0.2s ease-in-out;
	transform-origin: center;
}

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

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

/* Disable default slicknav pseudo-icon; use custom hamburger / X swap */
.slicknav_menu .slicknav_icon:before{
	content: none !important;
	display: none !important;
	background: none !important;
	width: auto !important;
	height: auto !important;
	position: static !important;
}

.slicknav_icon::before,
.slicknav_icon::after{
	content: none;
	display: none;
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon .slicknav_icon-bar{
	opacity: 0;
	transform: none;
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon::before,
.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon::after{
	content: '';
	display: block;
	position: absolute;
	left: 50%;
	top: 50%;
	width: 20px;
	height: 2.5px;
	margin: 0;
	background-color: var(--white-color);
	border: none;
	border-radius: 2px;
	box-shadow: none;
	transform-origin: center;
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon::before{
	transform: translate(-50%, -50%) rotate(45deg);
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon::after{
	transform: translate(-50%, -50%) rotate(-45deg);
}

.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(--primary-color);
}

.slicknav_nav li.active > a,
.slicknav_nav li.active > .slicknav_row,
.slicknav_nav li.active > .slicknav_row a,
.slicknav_nav li.active > .slicknav_parent-link,
.slicknav_nav li.active > .slicknav_parent-link a,
.slicknav_nav li.active .slicknav_row .nav-link,
.slicknav_nav a.nav-link[aria-current="page"],
.slicknav_nav .slicknav_row a.nav-link[aria-current="page"],
.slicknav_nav .slicknav_parent-link a.nav-link[aria-current="page"]{
	color: #361319 !important;
	-webkit-text-fill-color: #361319 !important;
}

.slicknav_nav li.active > a:hover,
.slicknav_nav li.active > a:focus,
.slicknav_nav li.active > .slicknav_row:hover,
.slicknav_nav li.active > .slicknav_row:focus,
.slicknav_nav li.active > .slicknav_row a:hover,
.slicknav_nav li.active > .slicknav_row a:focus,
.slicknav_nav li.active > .slicknav_parent-link a:hover,
.slicknav_nav li.active > .slicknav_parent-link a:focus,
.slicknav_nav a.nav-link[aria-current="page"]:hover,
.slicknav_nav a.nav-link[aria-current="page"]:focus,
.slicknav_nav .slicknav_row a.nav-link[aria-current="page"]:hover,
.slicknav_nav .slicknav_row a.nav-link[aria-current="page"]:focus{
	color: #361319 !important;
	-webkit-text-fill-color: #361319 !important;
}

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

.slicknav_menu ul ul li.slicknav_parent > a.slicknav_row,
.slicknav_menu ul ul li.slicknav_parent > .slicknav_row{
	display: block;
	position: relative;
	padding: 8px 20px 8px 30px !important;
}

.slicknav_menu ul ul li.slicknav_parent > a.slicknav_row .nav-link,
.slicknav_menu ul ul li.slicknav_parent > a.slicknav_row a,
.slicknav_menu ul ul li.slicknav_parent > .slicknav_row .nav-link,
.slicknav_menu ul ul li.slicknav_parent > .slicknav_row a.nav-link{
	padding: 0 !important;
	display: inline;
}

.slicknav_menu ul ul li.slicknav_parent > .slicknav_row > a.slicknav_item{
	padding: 0 !important;
}

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

/* Mobile submenu arrows — right-aligned (Services, Medical Wellness) */
.slicknav_nav li.slicknav_parent{
	position: relative;
}

.slicknav_nav li.slicknav_parent > .slicknav_row,
.slicknav_nav li.slicknav_parent > a.slicknav_row{
	padding-right: 45px !important;
}

.slicknav_nav li.slicknav_parent > a.slicknav_item,
.slicknav_nav li.slicknav_parent > .slicknav_row > a.slicknav_item,
.slicknav_nav li.slicknav_parent > a.slicknav_row > a.slicknav_item{
	position: absolute;
	right: 15px;
	top: 50%;
	transform: translateY(-50%);
	padding: 0 !important;
	margin: 0;
	width: 24px;
	height: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 2;
}

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

.slicknav_arrow:after{
	content: '\f107';
	font-family: 'Font Awesome 6 Free';
	font-weight: 900;
	font-size: 12px;
	margin-left: 0;
	color: var(--white-color) !important;
	-webkit-text-fill-color: var(--white-color) !important;
	position: static;
	right: auto;
	top: auto;
	transform: none;
	transition: transform 0.3s ease-out;
}

.slicknav_nav li.slicknav_parent.slicknav_open .slicknav_arrow:after,
.slicknav_open > a .slicknav_arrow:after{
	transform: rotate(-180deg);
	color: var(--white-color) !important;
	-webkit-text-fill-color: var(--white-color) !important;
}

.slicknav_nav a:hover .slicknav_arrow:after,
.slicknav_nav a:focus .slicknav_arrow:after,
.slicknav_nav .slicknav_row:hover .slicknav_arrow:after,
.slicknav_nav .slicknav_row:focus .slicknav_arrow:after,
.slicknav_nav li.slicknav_parent.slicknav_open > a:hover .slicknav_arrow:after,
.slicknav_nav li.slicknav_parent.slicknav_open > .slicknav_row:hover .slicknav_arrow:after{
	color: var(--white-color) !important;
	-webkit-text-fill-color: var(--white-color) !important;
}

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

.hero{
	position: relative;
	background-image: url('../images/hero-bg-shape.svg');
	background-repeat: no-repeat;
	background-position: top center;
	background-size: 100% auto;
	padding: 180px 0;
	overflow: clip;
}

.hero.hero-bg-image{
	position: relative;
	background: url('../images/hero-img.png') no-repeat;
	background-position: center center;
	background-size: cover;
	padding: 200px 0;
}

#home-hero{
	position: relative;
}

body.home-page #home-hero{
	display: flex;
	flex-direction: column;
	align-items: stretch;
}

body.home-page > header.main-header{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	width: 100vw;
	margin: 0;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	z-index: 1000;
	padding: 0;
	background: transparent;
	isolation: isolate;
	overflow: visible;
	--header-blur-top-extend: 0px;
}

body.home-page > header.main-header::before{
	content: none;
}

body.home-page > header.main-header > *{
	position: relative;
	z-index: 1;
}

body.home-page > header.main-header .header-sticky{
	position: relative;
	top: 0;
	background: transparent;
	backdrop-filter: none;
	-webkit-backdrop-filter: none;
	border: none;
	box-shadow: none;
	border-radius: 0;
	padding: 0;
	isolation: isolate;
	overflow: visible;
}

body.home-page > header.main-header[data-nav-color="7B694E"] .header-sticky .main-menu .nav-menu-wrapper > ul > li > a.nav-link,
body.home-page > header.main-header[data-nav-color="7B694E"] .header-sticky .main-menu .nav-menu-wrapper > ul > li > a,
body.home-page > header.main-header[data-nav-color="7B694E"] .header-sticky .header-contact-now,
body.home-page > header.main-header[data-nav-color="7B694E"] .header-sticky .header-contact-now .contact-lines,
body.home-page > header.main-header[data-nav-color="7B694E"] .header-sticky .main-menu .nav-menu-wrapper > ul > li.submenu > a:after{
	color: #7B694E !important;
	-webkit-text-fill-color: #7B694E !important;
}

body.home-page > header.main-header[data-nav-color="361319"] .header-sticky .main-menu .nav-menu-wrapper > ul > li > a.nav-link,
body.home-page > header.main-header[data-nav-color="361319"] .header-sticky .main-menu .nav-menu-wrapper > ul > li > a,
body.home-page > header.main-header[data-nav-color="361319"] .header-sticky .header-contact-now,
body.home-page > header.main-header[data-nav-color="361319"] .header-sticky .header-contact-now .contact-lines,
body.home-page > header.main-header[data-nav-color="361319"] .header-sticky .main-menu .nav-menu-wrapper > ul > li.submenu > a:after{
	color: #361319 !important;
	-webkit-text-fill-color: #361319 !important;
}

body.home-page > header.main-header .header-sticky .header-contact-btn .btn-default{
	color: var(--white-color) !important;
	background: #7B694E !important;
	font-weight: 600 !important;
	font-size: 14px !important;
	line-height: 1.2 !important;
	padding: 13px 20px !important;
}

body.home-page > header.main-header .header-sticky .header-contact-btn .btn-default::after{
	background: #7B694E !important;
}

body.home-page > header.main-header .header-sticky .header-contact-btn .btn-default:hover,
body.home-page > header.main-header .header-sticky .header-contact-btn .btn-default:focus{
	background: transparent !important;
	color: var(--white-color) !important;
}

body.home-page > header.main-header .header-sticky:not(.active) .header-contact-btn .btn-default:hover::after,
body.home-page > header.main-header .header-sticky:not(.active) .header-contact-btn .btn-default:focus::after{
	background: #361319 !important;
}

body.home-page > header.main-header .header-sticky.active .header-contact-btn .btn-default:hover::after,
body.home-page > header.main-header .header-sticky.active .header-contact-btn .btn-default:focus::after{
	background: #361319 !important;
}

body.home-page > header.main-header .header-sticky:not(.active) .header-contact-btn .btn-default:hover,
body.home-page > header.main-header .header-sticky:not(.active) .header-contact-btn .btn-default:focus{
	color: var(--white-color) !important;
}

body.home-page > header.main-header .header-sticky .header-contact-now i,
body.home-page > header.main-header .header-sticky .header-contact-now:hover i,
body.home-page > header.main-header .header-sticky .header-contact-now:focus i,
body.home-page > header.main-header .header-sticky .header-contact-now:active i{
	background-color: #7B694E !important;
	color: var(--white-color) !important;
	-webkit-text-fill-color: var(--white-color) !important;
	box-shadow: none !important;
	width: 34px !important;
	height: 34px !important;
	font-size: 15px !important;
}

body.home-page > header.main-header .navbar{
	padding: 35px 0 13px !important;
}

body.home-page > header.main-header .navbar .container-fluid{
	padding-left: 48px;
	padding-right: 48px;
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
}

body.home-page #home-hero > .container{
	flex: 1 1 auto;
	position: relative;
	z-index: 2;
	padding: 320px 32px 220px 96px;
	display: flex;
	align-items: center;
}

#home-hero.hero.hero-bg-image{
	background-image: url('../images/hero-img.png');
	background-repeat: no-repeat;
	background-position: 50% 50%;
	background-size: cover;
	background-attachment: fixed;
	--hero-overlay-opacity: 0.6;
	--hero-overlay-color: #481E0B;
	--hero-viewport-vh: 100vh;
	--hero-viewport-vh: 100svh;
	--hero-viewport-vh: 100dvh;
	--hero-viewport-vh: 100lvh;
	min-height: var(--hero-vh-px, var(--hero-viewport-vh));
	min-height: var(--hero-vh-px, -webkit-fill-available);
	box-sizing: border-box;
}

#home-hero.hero.hero-video{
	background: none;
	background-image: none;
	padding: 0;
	--hero-viewport-vh: 100lvh;
	height: var(--hero-vh-px, 100vh);
	height: var(--hero-vh-px, var(--hero-viewport-vh));
	min-height: var(--hero-vh-px, 100vh);
	min-height: var(--hero-vh-px, var(--hero-viewport-vh));
	max-height: var(--hero-vh-px, var(--hero-viewport-vh));
	box-sizing: border-box;
	overflow: hidden;
}

#home-hero.hero.hero-video .hero-bg-video{
	position: absolute;
	top: calc(-1 * env(safe-area-inset-top, 0px));
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: calc(100% + env(safe-area-inset-top, 0px));
	z-index: 0;
	pointer-events: none;
	overflow: hidden;
}

#home-hero.hero.hero-video .hero-bg-video video{
	display: block;
	width: 100%;
	height: 100%;
	min-width: 100%;
	min-height: 100%;
	object-fit: cover;
	object-position: center center;
}

@media only screen and (max-width: 991px){
	header.main-header{
		position: fixed !important;
		top: 0;
		left: 0;
		right: 0;
		width: 100% !important;
		margin-left: 0 !important;
		margin-right: 0 !important;
		transform: translate3d(0, 0, 0);
		z-index: 1002;
	}

	header.main-header .header-sticky,
	header.main-header .header-sticky.active{
		position: relative !important;
		top: 0 !important;
		left: 0;
		right: 0;
		width: 100% !important;
		transform: none !important;
	}

	header.main-header .header-sticky.hide{
		transform: none !important;
	}

	#home-hero.hero.hero-bg-image{
		--hero-viewport-vh: 100lvh;
		height: 100vh;
		height: 100lvh;
		min-height: 100vh;
		min-height: 100lvh;
		max-height: none;
		padding: 0 !important;
		background-size: cover !important;
		background-position: center center !important;
	}

	body.home-page > header.main-header{
		padding: 20px 0 10px;
		--header-blur-top-extend: 20px;
	}

	body.home-page > header.main-header .navbar .container-fluid{
		padding-left: 20px;
		padding-right: 20px;
	}

	body.home-page #home-hero > .container{
		padding: 170px 16px 100px 32px;
	}

	body.home-page #home-hero > .container{
		flex: 1;
		display: flex;
		align-items: center;
	}

	#home-hero .container > .row{
		width: 100%;
	}

	#home-hero.hero.hero-bg-image,
	#home-hero.hero.hero-bg-image.hero-bg-mobile-left,
	#home-hero.hero.hero-bg-image.hero-is-animating,
	#home-hero.hero.hero-bg-image.hero-is-ready{
		background-size: auto 114%;
		background-position: 6% 44%;
	}

	#home-hero.hero.hero-bg-image.hero-bg-mobile-pan{
		background-size: auto 114%;
		background-position: 6% 44%;
		animation: hm-hero-mobile-pan 56s ease-in-out infinite;
		will-change: background-position;
	}

	#home-hero.hero.hero-video{
		--hero-viewport-vh: 100lvh;
		height: 100vh;
		height: 100lvh;
		min-height: 100vh;
		min-height: 100lvh;
		max-height: none;
		padding: 0 !important;
	}

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

	#home-hero.hero.hero-video .hero-bg-video video{
		width: 100%;
		height: 100%;
		min-width: 100%;
		min-height: 100%;
		object-fit: cover;
		object-position: center center;
	}
}

@keyframes hm-hero-mobile-pan{
	0%{
		background-position: 6% 44%;
	}
	16%{
		background-position: 38% 36%;
	}
	33%{
		background-position: 88% 42%;
	}
	50%{
		background-position: 96% 52%;
	}
	66%{
		background-position: 62% 58%;
	}
	82%{
		background-position: 22% 54%;
	}
	100%{
		background-position: 6% 44%;
	}
}

#home-hero.hero.hero-bg-image::before{
	content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
	background: var(--hero-overlay-color, #481E0B);
    opacity: var(--hero-overlay-opacity, 0.6);
    width: 100%;
    height: 100%;
    z-index: 1;
}

body.home-page #home-hero{
	margin: 0;
	padding: 0;
	padding-top: 0 !important;
	width: 100vw;
	left: 0;
	right: 0;
	position: relative;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
}

body.home-page #home-hero::before{
	top: 0;
	height: 100%;
}

body.home-page #home-hero.bg-section{
	max-width: none !important;
	margin: 0 !important;
	border-radius: 0 !important;
	padding-left: 0;
	padding-right: 0;
	width: 100% !important;
}

body.home-page #home-hero .container-fluid{
	max-width: none !important;
	width: 100% !important;
	margin: 0;
}

#home-hero .hero-pollen{
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	pointer-events: none;
	opacity: 0;
	transition: opacity 1.4s ease;
}

#home-hero.hero-pollen-active .hero-pollen{
	opacity: 1;
}

#home-hero .container{
	position: relative;
	z-index: 2;
}

#home-hero .hero-animate-item{
	visibility: hidden;
}

#home-hero.hero-is-ready .hero-animate-item,
#home-hero.hero-is-animating .hero-animate-item{
	visibility: visible;
}

@media only screen and (max-width: 991px){
	#home-hero .hero-animate-item{
		visibility: visible;
	}

	#home-hero .hero-pollen{
		transition: opacity 0.45s ease;
	}
}

#home-hero .hero-content .text-anime-style-3{
	min-height: 1.15em;
}

#home-hero .hero-content .text-anime-style-3 .split-line{
	text-align: left;
}

@media only screen and (max-width: 991px){
	#home-hero .hero-content .section-title h1.text-anime-style-3,
	#home-hero .hero-content .section-title h1.text-anime-style-3 .split-line,
	#home-hero .hero-content .section-title h1.text-anime-style-3 .split-line > div,
	#home-hero .hero-content .section-title h1.text-anime-style-3 .split-line > div > div{
		font-size: 52px;
		line-height: 1.12em;
	}
}

@media only screen and (max-width: 767px){
	#home-hero .hero-content .section-title h1.text-anime-style-3,
	#home-hero .hero-content .section-title h1.text-anime-style-3 .split-line,
	#home-hero .hero-content .section-title h1.text-anime-style-3 .split-line > div,
	#home-hero .hero-content .section-title h1.text-anime-style-3 .split-line > div > div{
		font-size: 40px;
		line-height: 1.15em;
	}
}

@media (prefers-reduced-motion: reduce){
	#home-hero .hero-animate-item{
		visibility: visible;
	}

	#home-hero.hero.hero-bg-image::before{
		opacity: 0.6;
	}

	#home-hero .hero-pollen{
		display: none;
	}

	#home-hero.hero.hero-bg-image.hero-bg-mobile-pan{
		animation: none;
		background-size: auto 100%;
		background-position: 6% 44%;
	}
}

.hero.hero-bg-image::before{
	content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
	background: var(--primary-color);
    opacity: 60%;
    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-bg-image.hero-slider-layout{
	background: none;
	padding: 0;
}

.hero.hero-bg-image.hero-slider-layout .hero-slide{
	position: relative;
    padding: 200px 0;
}

.hero.hero-bg-image.hero-slider-layout .hero-slide::before{
	content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
	opacity: 60%;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero.hero-bg-image.hero-slider-layout .hero-slide .hero-slider-image{
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
}

.hero.hero-bg-image.hero-slider-layout .hero-slide .hero-slider-image img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero.hero-bg-image.hero-slider-layout .hero-pagination{
	position: absolute;
    bottom: 50px;
	text-align: left;
	left: calc(((1800px - 1300px) / 2) + 15px);
	z-index: 2;
}

.hero.hero-bg-image.hero-slider-layout .hero-pagination .swiper-pagination-bullet{
    width: 12px;
    height: 12px;
    background: var(--dark-divider-color);
    opacity: 1;
    transition: all 0.3s ease-in-out;
    margin: 0 5px;
}

.hero.hero-bg-image.hero-slider-layout .hero-pagination .swiper-pagination-bullet-active{
    background-color: var(--accent-color);
}

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

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

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

.hero-body .video-play-button-label{
	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);
}

.hero-review-box{
	margin-top: 40px;
}

.hero-review-box ul{
	margin: 0;
	padding: 0;
	list-style: none;
}

.hero-review-box ul li{
	display: inline-block;
	color: var(--secondary-color);
	margin-right: 10px;
}

.hero-review-box ul li:last-child{
	margin: 0;
}

.hero-review-box ul li img{
	max-width: 20px;
}

.hero-review-box ul li i{
	color: var(--accent-color);
}

.hero-image{
	background: url('../images/hero-image-bg-star.svg') no-repeat;
	background-position: center bottom;
	background-size: contain;
	height: 100%;
	align-content: end;
	text-align: center;
}

.hero-image img{
	margin-bottom: -180px;
    margin-top: -120px;
    max-width: initial;
}

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

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

.about-us-images{
	background: url('../images/about-us-image-bg-shape.svg') no-repeat;
	background-position: top 30px left 70px;
	background-size: 76px auto;
	display: flex;
	flex-wrap: wrap;
	margin-right: 20px;
	position: relative;
}

.about-img-2,
.about-img-1{
	width: 100%;
}

.about-img-1{
	position: relative;
	padding-left: 240px;
}

.about-img-2{
	max-width: 360px;
	margin-top: -312px;
}

.about-img-2 figure,
.about-img-1 figure{
	display: block;
	border-radius: 30px;
}

.about-img-2 img,
.about-img-1 img{
	width: 100%;
	object-fit: cover;
	border-radius: 30px;
}

.about-img-2 figure img,
.about-img-1 figure img{
	aspect-ratio: 1 / 1.257;
}

.about-image-card{
	position: absolute;
	width: 150px;
	border-radius: 24px;
	overflow: hidden;
	box-shadow: 0 20px 45px rgba(54, 19, 25, 0.25);
	border: 5px solid rgba(255,255,255,0.5);
}

.about-image-card figure{
	margin: 0;
}

.about-image-card img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.about-image-card-1{
	top: -20px;
	right: -40px;
}

.about-image-card-2{
	bottom: -20px;
	left: -30px;
}

.company-experience-circle{
	position: absolute;
	right: 50%;
	bottom: 0;
	transform: translate(100%, 50%);
	border-radius: 50%;
	z-index: 20;
	pointer-events: none;
}

.company-experience-circle img{
	width: 100%;
	max-width: 180px;
	border-radius: 50%;
	animation: infiniterotate 25s infinite linear;
}

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

.about-experience-box{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 20px 30px;
}

.about-experience-list,
.about-experience-image{
	width: calc(50% - 15px);
}

.about-experience-list.about-experience-list--wide{
	width: calc(65% - 15px);
}

.about-experience-list ul{
	list-style: none;
	padding: 0;
	margin: 0;
}

.about-experience-list ul li{
	position: relative;
	line-height: 1.5em;
	margin-bottom: 15px;
	padding-left: 30px;
}

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

.about-experience-list ul li::before{
	content: '\f14a';
    font-family: "Font Awesome 6 Free";
    position: absolute;
    left: 0;
	top: 0;
    font-size: 20px;
    font-weight: 900;
    color: var(--accent-color);
}

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

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

.about-us-body{
	background: var(--secondary-color);
	border-radius: 30px;
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	align-items: flex-start;
	justify-content: flex-start;
	gap: 24px;
	padding: 30px;
	margin-top: 40px;
}

.about-us-btn{
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	align-items: flex-start;
	justify-content: flex-start;
	gap: 0;
	width: 100%;
}

.about-us-btn .btn-default{
	display: inline-block;
	margin-left: 0;
	margin-top: 0;
	width: max-content;
	max-width: 100%;
}

.about-us-btn .btn-book-cta{
	margin-bottom: 10px !important;
}

.about-us-btn .btn-schedule-cta{
	margin-top: 0 !important;
}

.about-contact-box{
	display: flex;
	align-items: center;
}

.about-contact-box .icon-box{
	background: var(--white-color);
	border-radius: 50%;
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 10px;
}

.about-contact-box .icon-box i{
	font-size: 22px;
	color: var(--accent-color);
}

.about-contact-box-content{
	width: calc(100% - 60px);
}

.about-contact-box-content p{
	margin-bottom: 5px;
}

.about-contact-box-content p a{
	color: inherit;
	transition: all 0.3s ease-in-out;
}

.about-contact-box-content p a:hover{
	color: var(--accent-color);
}

.about-contact-box-content h3{
	font-size: 20px;
	text-transform: none !important;
}

.about-contact-box-content h3 a{
	color: inherit;
	transition: all 0.3s ease-in-out;
	text-transform: none !important;
}

.about-contact-box-content h3:hover a{
	color: var(--accent-color);
}

/* Homepage about preview (distinct from full about-us page layout) */
.home-about-preview{
	padding: 100px 0;
	margin-top: 30px;
}

.home-about-content{
	padding-right: 30px;
}

.home-about-pillars{
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin-top: 35px;
}

.home-about-pillar{
	display: flex;
	align-items: flex-start;
	gap: 18px;
	background: var(--white-color);
	border: 1px solid var(--divider-color);
	border-radius: 20px;
	padding: 22px 24px;
	transition: border-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.home-about-pillar:hover{
	border-color: transparent;
	box-shadow: 0 18px 40px rgba(54, 19, 25, 0.08);
}

.home-about-pillar__icon{
	flex-shrink: 0;
	width: 52px;
	height: 52px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--primary-color);
	border-radius: 50%;
	color: var(--white-color);
	font-size: 20px;
	transition: background-color 0.3s ease-in-out;
}

.home-about-pillar:hover .home-about-pillar__icon{
	background: var(--accent-color);
}

.home-about-pillar__body h4{
	font-family: var(--accent-font);
	font-size: 20px;
	color: var(--primary-color);
	margin-bottom: 6px;
}

.home-about-pillar__body p{
	margin: 0;
	line-height: 1.6em;
}

.home-about-actions{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 20px 28px;
	margin-top: 35px;
	padding-top: 30px;
	border-top: 1px solid var(--divider-color);
}

.home-about-phone{
	display: inline-flex;
	align-items: center;
	gap: 14px;
	color: var(--primary-color);
	text-decoration: none;
	transition: color 0.3s ease-in-out;
}

.home-about-phone:hover{
	color: var(--accent-color);
}

.home-about-phone__icon{
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--white-color);
	border-radius: 50%;
	color: var(--accent-color);
	font-size: 20px;
	box-shadow: 0 8px 24px rgba(54, 19, 25, 0.08);
}

.home-about-phone__text{
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.home-about-phone__text small{
	font-size: 13px;
	line-height: 1.3em;
	color: var(--text-color);
	text-transform: capitalize;
}

.home-about-phone__text strong{
	font-family: var(--accent-font);
	font-size: 20px;
	font-weight: 400;
	line-height: 1.3em;
}

.home-about-visual{
	position: relative;
	padding: 40px 0 40px 50px;
}

.home-about-visual__accent{
	position: absolute;
	top: 0;
	left: 0;
	width: calc(100% - 40px);
	height: calc(100% - 30px);
	background: var(--accent-color);
	border-radius: 30px;
	opacity: 0.12;
}

.home-about-visual figure{
	position: relative;
	display: block;
	margin: 0;
	border-radius: 30px;
	overflow: hidden;
	z-index: 1;
}

.home-about-visual img{
	width: 100%;
	aspect-ratio: 1 / 1.15;
	object-fit: cover;
	border-radius: 30px;
}

.home-about-visual__badge{
	position: absolute;
	left: 0;
	bottom: 55px;
	z-index: 2;
	background: var(--primary-color);
	color: var(--white-color);
	border-radius: 16px;
	padding: 18px 22px;
	min-width: 170px;
	box-shadow: 0 16px 36px rgba(54, 19, 25, 0.2);
}

.home-about-visual__badge-label{
	display: block;
	font-size: 12px;
	letter-spacing: 0.14em;
	text-transform: capitalize;
	opacity: 0.75;
	margin-bottom: 4px;
}

.home-about-visual__badge strong{
	display: block;
	font-family: var(--accent-font);
	font-size: 22px;
	font-weight: 400;
	line-height: 1.2em;
}

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

body.home-page h1:not(.text-anime-style-3),
body.home-page h2:not(.text-anime-style-3){
	text-transform: capitalize !important;
}

body.home-page h2.text-anime-style-3,
body.home-page h2.text-anime-style-3 .split-line,
body.home-page h2.text-anime-style-3 .split-line > div,
body.home-page h1.text-anime-style-3,
body.home-page h1.text-anime-style-3 .split-line,
body.home-page h1.text-anime-style-3 .split-line > div,
body.home-page h1.text-anime-style-3 .split-line > div > div,
body.home-page h2.text-anime-style-3 .split-line > div > div,
body.home-page .text-anime-style-3,
body.home-page .text-anime-style-3 .split-line,
body.home-page .text-anime-style-3 .split-line > div,
body.home-page .text-anime-style-3 .split-line > div > div{
	text-transform: none !important;
}

body.home-page h3{
	text-transform: uppercase;
}

body.home-page h3.text-anime-style-3,
body.home-page h3.text-anime-style-3 .split-line{
	text-transform: uppercase;
}

body.home-page :is(.about-us, .what-we-do, .how-it-work, .our-results, .our-testimonials, .our-services, .why-choose-us, .our-appointment){
	--accent-color: #7B694E;
	--divider-color: #7B694E1A;
}

body.home-page #home-hero{
	--accent-color: #7B694E;
}

body.home-page #home-hero .hero-content .section-title h3{
	color: #FFFFFF;
}

body.home-page .our-testimonials.dark-section .our-testimonial-content .section-title h3{
	color: #7B694E !important;
}

body.home-page .section-title h3::before{
	background: none;
	background-color: currentColor;
	mask: url('../images/icon-sub-heading.svg') no-repeat center / cover;
	-webkit-mask: url('../images/icon-sub-heading.svg') no-repeat center / cover;
	filter: none;
}

body.home-page .dark-section .section-title h3::before{
	filter: none;
}

body.home-page :is(.about-us, .what-we-do, .how-it-work, .our-results, .our-testimonials, .our-services, .why-choose-us, .our-appointment) .section-title h3{
	color: #7B694E;
}

body.home-page .about-us .btn-default{
	background: #7B694E;
	color: var(--white-color);
}

body.home-page .about-us .btn-default::before{
	background-color: #280B0F;
	background-image: url('../images/arrow-white.svg');
}

body.home-page .about-us .btn-default::after{
	background: #280B0F;
}

body.home-page .about-us .btn-default:hover,
body.home-page .about-us .btn-default:focus{
	background: transparent;
	color: var(--white-color);
}

body.home-page .about-us .btn-default:hover::after,
body.home-page .about-us .btn-default:focus::after{
	background: #280B0F;
}

body.home-page .about-us .btn-default:hover::before,
body.home-page .about-us .btn-default:focus::before{
	background-color: #280B0F;
	background-image: url('../images/arrow-white.svg');
}

body.home-page :is(.what-we-do, .how-it-work) .btn-default{
	background: #7B694E;
	color: var(--white-color);
}

body.home-page :is(.what-we-do, .how-it-work) .btn-default::before{
	background-color: #C6B39A;
	background-image: url('../images/arrow-primary.svg');
}

body.home-page :is(.what-we-do, .how-it-work) .btn-default::after{
	background: #C6B39A;
}

body.home-page :is(.what-we-do, .how-it-work) .btn-default:hover,
body.home-page :is(.what-we-do, .how-it-work) .btn-default:focus{
	background: transparent;
	color: #361319;
}

body.home-page :is(.what-we-do, .how-it-work) .btn-default:hover::after,
body.home-page :is(.what-we-do, .how-it-work) .btn-default:focus::after{
	background: #C6B39A;
}

body.home-page :is(.what-we-do, .how-it-work) .btn-default:hover::before,
body.home-page :is(.what-we-do, .how-it-work) .btn-default:focus::before{
	background-color: #C6B39A;
	background-image: url('../images/arrow-primary.svg');
}

body.home-page .our-results .btn-default::before{
	background-color: #C6B39A;
	background-image: url('../images/arrow-primary.svg');
}

body.home-page .our-results .btn-default:hover,
body.home-page .our-results .btn-default:focus{
	background: transparent;
	color: #280B0F;
}

body.home-page .our-results .btn-default:hover::after,
body.home-page .our-results .btn-default:focus::after{
	background: #C6B39A;
}

body.home-page .our-results .btn-default:hover::before,
body.home-page .our-results .btn-default:focus::before{
	background-color: #C6B39A;
	background-image: url('../images/arrow-primary.svg');
}

body.home-page > header.main-header[data-nav-color="361319"] .header-sticky:not(.active) .main-menu .nav-menu-wrapper > ul > li > a:hover,
body.home-page > header.main-header[data-nav-color="361319"] .header-sticky:not(.active) .main-menu .nav-menu-wrapper > ul > li > a:focus,
body.home-page > header.main-header[data-nav-color="361319"] .header-sticky:not(.active) .main-menu .nav-menu-wrapper > ul > li > a:active,
body.home-page > header.main-header[data-nav-color="361319"] .header-sticky:not(.active) .main-menu .nav-menu-wrapper > ul > li.active > a,
body.home-page > header.main-header[data-nav-color="361319"] .header-sticky:not(.active) .main-menu .nav-menu-wrapper > ul > li > a[aria-current="page"],
body.home-page > header.main-header[data-nav-color="361319"] .header-sticky:not(.active) .header-contact-now:hover,
body.home-page > header.main-header[data-nav-color="361319"] .header-sticky:not(.active) .header-contact-now:focus,
body.home-page > header.main-header[data-nav-color="361319"] .header-sticky:not(.active) .header-contact-now:active{
	color: #361319 !important;
	-webkit-text-fill-color: #361319 !important;
}

body.home-page > header.main-header[data-nav-color="7B694E"] .header-sticky:not(.active) .main-menu .nav-menu-wrapper > ul > li > a:hover,
body.home-page > header.main-header[data-nav-color="7B694E"] .header-sticky:not(.active) .main-menu .nav-menu-wrapper > ul > li > a:focus,
body.home-page > header.main-header[data-nav-color="7B694E"] .header-sticky:not(.active) .main-menu .nav-menu-wrapper > ul > li > a:active,
body.home-page > header.main-header[data-nav-color="7B694E"] .header-sticky:not(.active) .main-menu .nav-menu-wrapper > ul > li.active > a,
body.home-page > header.main-header[data-nav-color="7B694E"] .header-sticky:not(.active) .main-menu .nav-menu-wrapper > ul > li > a[aria-current="page"],
body.home-page > header.main-header[data-nav-color="7B694E"] .header-sticky:not(.active) .header-contact-now:hover,
body.home-page > header.main-header[data-nav-color="7B694E"] .header-sticky:not(.active) .header-contact-now:focus,
body.home-page > header.main-header[data-nav-color="7B694E"] .header-sticky:not(.active) .header-contact-now:active{
	color: #7B694E !important;
	-webkit-text-fill-color: #7B694E !important;
}

body.home-page :is(.about-us, .what-we-do, .how-it-work, .our-results) .section-title > :is(h1, h2).text-anime-style-3,
body.home-page :is(.about-us, .what-we-do, .how-it-work, .our-results) .section-title > :is(h1, h2).text-anime-style-3 .split-line,
body.home-page :is(.about-us, .what-we-do, .how-it-work, .our-results) .section-title > :is(h1, h2).text-anime-style-3 .split-line > div,
body.home-page :is(.about-us, .what-we-do, .how-it-work, .our-results) .section-title > :is(h1, h2).text-anime-style-3 .split-line > div > div{
	color: #C6B39A;
}

body.home-page #home-hero .hero-content .section-title h3{
	color: #FFFFFF;
}

body.home-page .our-testimonials.dark-section .our-testimonial-content .section-title h3{
	color: #7B694E !important;
}

body.home-page :is(.about-us, .what-we-do) .about-experience-list ul li::before{
	color: #7B694E;
}

body.home-page .about-us .about-us-images{
	background: none;
}

body.home-page .about-us .about-us-images::before{
	content: '';
	position: absolute;
	top: 30px;
	left: 70px;
	width: 76px;
	height: 77px;
	background-color: #7B694E;
	mask: url('../images/about-us-image-bg-shape.svg') no-repeat center / contain;
	-webkit-mask: url('../images/about-us-image-bg-shape.svg') no-repeat center / contain;
	pointer-events: none;
	z-index: 15;
}

body.home-page .about-us .about-us-images :is(.about-img-1, .about-img-2),
.about-us .about-us-images :is(.about-img-1, .about-img-2){
	position: relative;
	z-index: 1;
}

body.home-page .about-us .about-us-images .company-experience-circle,
.about-us .about-us-images .company-experience-circle{
	position: absolute;
	z-index: 20;
	left: 58%;
	right: auto;
	bottom: auto;
	top: calc(100% - 140px);
	transform: translate(-50%, -50%);
}

body.home-page .what-we-do .experirnce-box{
	background: #7B694E;
}

body.home-page .how-it-work .how-work-step-item .icon-box{
	background: #7B694E;
}

body.home-page .how-it-work .how-work-step-item .icon-box::before{
	background-color: #7B694E;
}

body.home-page .our-results .facts-counter-item .icon-box img{
	filter: brightness(0) saturate(100%) invert(55%) sepia(18%) saturate(620%) hue-rotate(355deg) brightness(94%) contrast(90%);
}

body.home-page .about-us :is(.section-title p, .about-experience-list ul li),
body.home-page .what-we-do :is(.section-title p, .about-experience-list ul li),
body.home-page .how-it-work :is(.section-title p, .how-work-step-content h3, .how-work-step-content p){
	color: var(--white-color);
}

body.home-page .our-results .facts-counter-content :is(h3, p){
	color: var(--white-color);
}

.our-services{
	background-image: url(../images/service-bg-shape.svg);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: 100% auto; 
	padding: 100px 0;
}

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

.our-services .row:has(> [class*="col-"] > .service-item),
#services-overview .row:has(> [class*="col-"] > .service-item){
	--service-card-gap: 30px;
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--service-card-gap);
	align-items: stretch;
	margin-left: 0;
	margin-right: 0;
}

@media (min-width: 768px){
	.our-services .row:has(> [class*="col-"] > .service-item),
	#services-overview .row:has(> [class*="col-"] > .service-item){
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 992px){
	.our-services .row:has(> [class*="col-"] > .service-item),
	#services-overview .row:has(> [class*="col-"] > .service-item){
		grid-template-columns: repeat(3, 1fr);
	}
}

.our-services .row:has(> [class*="col-"] > .service-item) > [class*="col-"],
#services-overview .row:has(> [class*="col-"] > .service-item) > [class*="col-"]{
	display: flex;
	flex-direction: column;
	width: 100%;
	max-width: 100%;
	flex: none;
	margin-bottom: 0;
	padding-left: 0;
	padding-right: 0;
}

.our-services .row:has(> [class*="col-"] > .service-item) > [class*="col-"]:has(.section-footer-text),
#services-overview .row:has(> [class*="col-"] > .service-item) > [class*="col-"]:has(.section-footer-text){
	grid-column: 1 / -1;
	width: 100%;
	max-width: 100%;
	align-items: stretch;
	justify-content: center;
	text-align: center;
}

.our-services .services-footer-row,
#services-overview .services-footer-row{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	width: 100%;
	margin-top: 30px;
	text-align: center;
}

.our-services .services-footer-row .section-footer-text,
#services-overview .services-footer-row .section-footer-text{
	margin-top: 0;
	width: 100%;
	max-width: 100%;
	text-align: center;
}

.our-services .services-footer-row .section-footer-text p,
#services-overview .services-footer-row .section-footer-text p{
	text-align: center;
	width: 100%;
}

.our-services .service-item,
#services-overview .service-item{
	display: flex;
	flex-direction: column;
	flex: 1 1 auto;
	width: 100%;
	height: 100%;
	min-height: 100%;
	margin-bottom: 0;
}

.our-services .service-content,
#services-overview .service-content{
	flex: 1 1 auto;
	margin-bottom: 30px;
}

.our-services .service-image,
#services-overview .service-image{
	margin-top: auto;
	flex-shrink: 0;
}

.our-services .service-image picture,
#services-overview .service-image picture{
	display: block;
	width: 100%;
}

.service-content{
	margin-bottom: 30px;
}

.service-content-title{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
	margin-bottom: 20px;
}

.service-content-title h2{
	width: calc(100% - 90px);
	font-size: 22px;
	text-transform: capitalize;
	line-height: 1.4em;
}

.service-content-title h2 a{
	color: inherit;
}

.service-content p{
	margin: 0;
}

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

.service-image img{
	width: 100%;
	aspect-ratio: 1 / 0.667;
	object-fit: cover;
	border-radius: 30px;
	transition: all 0.5s ease-out;
}

.service-item:hover .service-image img{
	transform: scale(1.1)
}

.section-footer-text{
	margin-top: 30px;
	display: block;
	text-align: center;
	width: 100%;
	max-width: 100%;
}

.our-services .section-footer-text,
#services-overview .section-footer-text{
	margin-left: auto;
	margin-right: auto;
}

.section-footer-text p{
	margin: 0 auto;
	text-align: center;
	width: 100%;
	max-width: 100%;
}

.section-footer-text p span:not(.spa-contact-phone):not(.spa-contact-phone-line){
	font-family: var(--accent-font);
	color: var(--white-color);
	background: var(--accent-color);
	border-radius: 30px;
	padding: 4px 12px;
	margin-right: 10px;
}

.section-footer-text p .spa-contact-phone,
.section-footer-text p .spa-contact-phone-line,
.what-we-do .section-title p .spa-contact-phone,
.what-we-do .section-title p .spa-contact-phone-line{
	background: transparent;
	background-color: transparent;
	border-radius: 0;
	padding: 0;
	margin-right: 0;
	color: inherit;
	font-family: inherit;
}

.section-footer-text p a{
	color: var(--primary-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(--accent-color);
}

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

.what-we-do{
	padding: 100px 0;
}

.what-we-image-1{
	position: relative;
	margin-right: 10px;
}

.what-we-image-1::before{
	content: '';
	position: absolute;
	top: auto;
	bottom: 0;
	left: 0;
	right: 0;
	background: var(--secondary-color);
	border-radius: 999px 999px 0 0;
	width: 100%;
	height: 80%;
}

.what-we-image-1 img{
	position: relative;
	width: 100%;
	aspect-ratio: 1 / 1.668;
	object-fit: cover;
	z-index: 1;
}

.what-we-content .about-experience-list{
	width: 100%;
}

.why-choose-content .about-experience-list{
	width: 100%;
}

.what-we-btn{
	margin-top: 40px;
}

.what-we-image-2{
	position: relative;
	padding-left: 30px;
}

.what-we-image-2 figure{
	display: block;
	border-radius: 999px;
}

.what-we-image-2 img{
	width: 100%;
	aspect-ratio: 1 / 1.661;
	object-fit: cover;
	border-radius: 999px;
}

.experirnce-box{
	position: absolute;
	bottom: 100px;
	left: 0;
	background: var(--accent-color);
	border-radius: 999px;
	max-width: 130px;
	text-align: center;
	padding: 30px 20px;
	z-index: 1;
}

.experirnce-box h2{
	position: relative;
	font-size: 46px;
	color: var(--white-color);
	margin-bottom: 5px;
	z-index: 1;
}

.experirnce-box p{
	position: relative;
	color: var(--white-color);
	margin: 0;
	z-index: 1;
}

/************************************/
/***      08. Intro Video css     ***/
/************************************/

.intro-video{
	border-radius: 30px;
	overflow: hidden;
}

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

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

.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);
	border-radius: 30px;
	opacity: 40%;
	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);
}

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

/************************************/
/***      09. Case Study css      ***/
/************************************/

.case-study{
	padding: 100px 0 70px;
}

.case-study-content{
	position: sticky;
	top: 30px;
	margin-bottom: 30px;
}

.case-study-item{
    position: relative;
	border-radius: 12px;
    height: calc(100% - 30px);
    margin-bottom: 30px;
    overflow: hidden;
}

.case-study-image a,
.case-study-image figure{
    display: block;
    cursor: none;
}

.case-study-image figure::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(54, 19, 25, 0) 66.06%, #361319 100%);
    width: 100%;
    height: 100%;
    z-index: 1;
}

.case-study-image img{
    width: 100%;
    aspect-ratio: 1 / 0.967;
    object-fit: cover;
	transition: all 0.4s ease-in-out;
}

.case-study-item:hover .case-study-image img{
	transform: scale(1.1);
}

.case-study-body{
	position: absolute;
	left: 30px;
	bottom: 30px;
	right: 30px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
	z-index: 2;
}

.case-study-item-content{
	width: calc(100% - 90px);
}

.case-study-item-content h3{
	font-size: 22px;
	line-height: 1.4em;
	color: var(--white-color);
}

.case-study-item-content h3 a{
	color: inherit;
}

/************************************/
/***     10. Why Choose Us css	  ***/
/************************************/

.why-choose-us{
	background-image: url('../images/why-choose-bg-shape.svg');
	background-repeat: no-repeat;
	background-position: top center;
	background-size: 100% auto;
	padding: 100px 0;
}

.why-choose-images{
	position: relative;
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	padding: 0 50px 25px 0;
	margin-right: 10px;
}

.why-choose-images::before{
	content: '';
	position: absolute;
	right: 0;
	bottom: 0;
	background: var(--accent-color);
	border-radius: 30px;
	width: 415px;
	height: 345px;
}

.why-choose-image{
	position: relative;
	width: calc(50% - 15px);
	z-index: 1;
}

.why-choose-image.img-2{
	margin-top: 90px;
}

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

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

.years-experience-text{
	position: absolute;
	right: 12px;
	bottom: 35px;
	transform: rotate(-180deg);
    writing-mode: vertical-rl;
}

.years-experience-text p{
	font-family: var(--accent-font);
	letter-spacing: 0.2em;
	text-transform: capitalize;
	color: var(--white-color);
	margin: 0;
}

.why-choose-contact-box{
	border-top: 1px solid var(--divider-color);
	margin-top: 40px;
	padding-top: 40px;
}

.why-choose-contact-box h3,
.why-choose-contact-quote{
	font-size: 22px;
	line-height: 1.4em;
}

.why-choose-contact-quote{
	margin: 30px 0 0;
	font-weight: 400;
	text-transform: none !important;
	font-family: var(--default-font);
	letter-spacing: normal;
}

body.home-page .why-choose-contact-quote{
	text-transform: none !important;
	font-size: 20px;
}

.why-choose-contact-item{
	display: flex;
	align-items: center;
	border-top: none;
	margin-top: 0;
	padding-top: 0;
}

.why-choose-contact-item .icon-box{
	display: flex;
	align-items: center;
	margin-right: 20px;
}

.why-choose-contact-item .icon-box img{
	max-width: 60px;
	border-radius: 50%;
}

.why-choose-contact-item .icon-box i{
	position: relative;
	background: var(--accent-color);
	border-radius: 50%;
	width: 36px;
	height: 36px;
	font-size: 18px;
	color: var(--white-color);
	text-align: center;
	align-content: center;
	margin-left: -18px;
}

.why-choose-contact-item-content p{
	margin: 0;
}

.why-choose-contact-item-content p a{
	font-family: var(--accent-font);
	font-size: 22px;
	color: var(--primary-color);
	margin-left: 5px;
	transition: all 0.3s ease-in-out;
}

.why-choose-contact-item-content p a:hover{
	color: var(--accent-color);
}

.why-choose-contact-item-content :is(h1, h2, h3, h4, h5, h6, p, a, li, span){
	text-transform: none !important;
}

/************************************/
/***     11. How It Wwork css	  ***/
/************************************/

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

.how-work-content{
	position: sticky;
	top: 30px;
	margin-right: 20px;
}

.how-work-step-item{
	position: relative;
	display: flex;
	margin-bottom: 80px;
}

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

.how-work-step-item::before{
	content: "";
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    transform: translate(30px, 60px);
    border-left: 1px solid var(--divider-color);
    height: 85%;
    z-index: 0;
}

.how-work-step-item:last-child:before{
	display: none;
}

.how-work-step-item .icon-box{
	position: relative;
	background: var(--primary-color);
	border-radius: 50%;
	width: 60px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 20px;
}

.how-work-step-item .icon-box::before{
	content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--accent-color);
    border-radius: 50%;
    height: 100%;
    width: 100%;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
}

.how-work-step-item:hover .icon-box::before{
	transform: scale(1);
}

.how-work-step-item .icon-box img{
	position: relative;
	max-width: 34px;
	z-index: 1;
}

.how-work-step-content{
	width: calc(100% - 80px);
}

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

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

/************************************/
/***    12. Our Testimonial css	  ***/
/************************************/

.our-testimonials{
	background-image: url('../images/testimonials-bg-shape.png');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	padding: 100px 0;
}

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

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

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

.testimonial-author-details{
	border-top: 1px solid var(--dark-divider-color);
	margin-top: 40px;
	padding-top: 40px;
}

.testimonial-author-details h3{
	font-size: 22px;
	text-transform: capitalize;
	color: var(--white-color);
	margin-bottom: 5px;
}

.testimonial-author-details p{
	color: var(--white-color);
	margin: 0;
	text-transform: capitalize;
}

.testimonial-slider{
	margin-top: 60px;
}

.testimonial-slider .swiper-wrapper{
	cursor: none;
}

.testimonial-item-content{
	border-bottom: 1px solid var(--dark-divider-color);
	margin-bottom: 30px;
	padding-bottom: 30px;
}

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

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

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

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

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

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

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

.testimonial-author .author-content p{
	color: var(--white-color);
	margin: 0;
	text-transform: capitalize;
}

.testimonial-btn{
	position: relative;
	bottom: 0;
	right: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 30px;
	z-index: 2;
}

.testimonial-slider .testimonial-button-next,
.testimonial-slider .testimonial-button-prev{
	position: relative;
	width: 40px;
	height: 40px;
	background: var(--white-color);
	border-radius: 50%;
	transition: all 0.4s ease-in-out;
}

.testimonial-slider .testimonial-button-next{
	margin-left: 15px;
}

.testimonial-slider .testimonial-button-next:hover,
.testimonial-slider .testimonial-button-prev:hover{
	background: var(--accent-color);
}

.testimonial-slider .testimonial-button-next::before,
.testimonial-slider .testimonial-button-prev::before{
	content: '';
	position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
	background-image: url('../images/arrow-primary.svg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 14px auto;
    display: flex;
    align-items: center;
    justify-content: center;
	transform: rotate(45deg);
    transition: all 0.4s ease-in-out;
}

.testimonial-slider .testimonial-button-prev::before{
	transform: rotate(225deg);
}

/************************************/
/***      13. Our Result css	  ***/
/************************************/

.our-results{
	padding: 100px 0;
}

.transformation-image{
	position: relative;
	display: flex;
	flex-wrap: wrap;
	border-radius: 30px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	overflow: hidden;
}

.transformation-image::before{
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(180deg, rgba(54, 19, 25, 0) 66.37%, #361319 103.38%);
	width: 100%;
	height: 100%;
	z-index: 1;
}

.transformation-image figure{
	position: relative;
	display: block;
	width: 50%;
	overflow: hidden;
}

.transformation-image--split .transform-img-1,
.transformation-image--split .transform-img-2{
	aspect-ratio: 1 / 1.626;
}

.transformation-image--split .transform-img-1 img,
.transformation-image--split .transform-img-2 img{
	position: absolute;
	top: 0;
	height: 100%;
	width: 200%;
	max-width: none;
	aspect-ratio: auto;
	object-fit: cover;
}

.transformation-image--split .transform-img-1 img{
	left: 0;
	object-position: left center;
}

.transformation-image--split .transform-img-2 img{
	left: -100%;
	object-position: left center;
}

.transformation-image .transform-img-2::before,
.transformation-image .transform-img-1::before{
	content: 'before';
	position: absolute;
	top: auto;
	bottom: 30px;
	left: 0;
	right: 0;
	text-align: center;
	font-family: var(--accent-font);
	font-size: 30px;
	text-transform: capitalize;
	color: var(--white-color);
	z-index: 1;
}

.transformation-image .transform-img-2::before{
	content: 'After';
}

.transformation-image img{
	position: relative;
	width: 100%;
	aspect-ratio: 1 / 1.626;
	border-right: 5px solid var(--white-color);
	object-fit: cover;
}

.transformation-image figure:last-child img{
	border: none;
}

.transformation-button{
	text-align: center;
	margin-top: 30px;
}

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

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

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

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

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

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

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

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

/************************************/
/***    14. Our Appointment css	  ***/
/************************************/

.our-appointment{
	background-image: url('../images/appointment-bg-shape.svg');
	background-repeat: no-repeat;
	background-position: top center;
	background-size: 100% auto;
	padding: 100px 0 100px;
	position: relative;
	z-index: 1;
}

.our-appointment .row.align-items-center{
	row-gap: 50px;
}

.our-appointment + .main-footer{
	margin-top: 50px;
}

.our-appointment-image{
	position: relative;
	text-align: center;
	margin-right: 40px;
	padding: 0 57px;
}

.our-appointment-image::before{
    content: '';
    position: absolute;
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, #C6B39A 0%, rgba(198, 179, 154, 0) 97.53%);
    border-radius: 999px 999px 0 0;
    width: 100%;
    height: 85%;
}

.our-appointment-image figure{
	position: relative;
	z-index: 1;
}

.our-appointment-image img{
	width: 100%;
	aspect-ratio: 1 / 1.538;
	object-fit: cover;
}

.appointment-form form .form-control{
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5em;
    color: var(--text-color);
    background-color: var(--white-color);
    border-radius: 100px;
    padding: 17px 20px;
	border: none;
    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);
}

.contact-form-btn .btn-default{
	width: 100%;
	margin-right: 0;
}

.contact-form-btn .btn-default::before{
	display: none;
}

/************************************/
/*** 	   15. Our Blog css 	  ***/
/************************************/

.our-blog{
	padding: 100px 0 70px;
}

.post-item{
	height: calc(100% - 30px);
	margin-bottom: 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.967;
    object-fit: cover;
    transition: all 0.5s ease-in-out;
}

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

.post-item-body{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 30px;
	margin: 0 15px;
}

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

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

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

/************************************/
/***         16. Footer css	      ***/
/************************************/

.main-footer{
	background-image: url('../images/footer-bg-shape.svg');
	background-repeat: no-repeat;
	background-position: top center;
	background-size: 100% auto;
	padding: 80px 0 0;
	margin-bottom: 60px;
}

.footer-header{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 20px 30px;
	border-bottom: 1px solid rgba(198, 179, 154, 0.22);
	margin-bottom: 60px;
	padding-bottom: 60px;
}

.section-title.footer-newsletter-title{
	width: calc(58% - 15px);
	margin: 0;
}

.section-title.footer-newsletter-title h2{
	color: #C6B39A;
}

.footer-newsletter-form{
	width: calc(42% - 15px);
}

.footer-newsletter-form .form-group{
	display: flex;
}

.footer-newsletter-form .form-group .form-control{
	width: calc(100% - 50px);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.4em;
	color: #C6B39A;
	background: rgba(198, 179, 154, 0.12);
	border: none;
	border-radius: 100px;
	outline: none;
	box-shadow: none;
	padding: 14px 20px;
}

.footer-newsletter-form .form-group .form-control::placeholder{
	color: #7B694E;
}

.footer-newsletter-form .form-group .readmore-btn{
	border: none;
	padding: 0;
	background: #7B694E;
}

.footer-newsletter-form .form-group .readmore-btn:hover,
.footer-newsletter-form .form-group .readmore-btn:focus{
	background: #C6B39A;
}

.footer-newsletter-form .form-group .readmore-btn img{
	filter: brightness(0) saturate(100%) invert(84%) sepia(14%) saturate(628%) hue-rotate(358deg) brightness(94%) contrast(88%);
}

.footer-newsletter-form .form-group .readmore-btn:hover img,
.footer-newsletter-form .form-group .readmore-btn:focus img{
	filter: brightness(0) saturate(100%) invert(43%) sepia(12%) saturate(1018%) hue-rotate(358deg) brightness(92%) contrast(88%);
	transform: rotate(45deg);
}

.about-footer{
    margin-right: 70px;
}

.footer-logo{
    margin-bottom: 20px;
}

.footer-logo img{
    width: 100%;
    max-width: 220px;
}

.footer-logo img[src*="logo"]{
    max-width: 250px;
}

.about-footer-content{
    margin-bottom: 30px;
}

.about-footer-content p{
    color: #C6B39A;
    margin-bottom: 0;
}

.footer-social-links ul{
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-social-links ul li{
	display: inline-block;
	margin-right: 12px;
}

.footer-social-links ul li:last-child{
	margin-right: 0;
}

.footer-social-links ul li a{
	width: 38px;
	height: 38px;
	color: #C6B39A;
    border: 1px solid #C6B39A;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease-in-out;
}

.footer-social-links ul li a:hover,
.footer-social-links ul li a:focus{
	color: #7B694E;
	border-color: #7B694E;
}

.footer-social-links ul li a i{
	font-size: 18px;
	color: inherit;
}

.footer-links-box{
	display: flex;
	flex-wrap: wrap;
	gap: 60px;
}

.footer-links{
	width: calc(50% - 30px);
}

.footer-links h3{
    font-size: 22px;
    color: #C6B39A;
    text-transform: capitalize;
    margin-bottom: 20px;
}

.footer-links ul{
    list-style: none;
    margin: 0;
    padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 15px 25px;
}

.footer-links ul li:not(.footer-email-item){
	display: inline-block;
    color: #C6B39A;
	text-transform: capitalize;
	line-height: 1.6em;
}

.footer-links ul li.footer-email-item{
	display: inline-block;
	color: #C6B39A;
	text-transform: none;
	line-height: 1.6em;
}

.footer-links ul li a{
	color: inherit;
	transition: all 0.3s ease-in-out;
}

.footer-links ul li a:hover,
.footer-links ul li a:focus{
    color: #7B694E;
}

.footer-links ul li:has(a[href^="mailto:"]),
.footer-links ul li.footer-email-item{
	text-transform: none;
}

.footer-links ul li a[href^="mailto:"],
.footer-links ul li a.footer-email,
.main-footer a[href^="mailto:"]{
	text-transform: lowercase !important;
}

.footer-contact-box{
	display: flex;
	flex-wrap: nowrap;
	align-items: flex-start;
	gap: 30px 60px;
	border-top: 1px solid rgba(198, 179, 154, 0.22);
	margin-top: 40px;
	padding-top: 40px;
}

.footer-contact-item{
	width: auto;
	position: relative;
}

.footer-contact-item::before{
	content: '';
	position: absolute;
	right: -30px;
	top: 0;
	bottom: 0;
	border-right: 1px solid rgba(198, 179, 154, 0.22);
	height: 100%;
}

.footer-contact-item:nth-child(3n + 3):before,
.footer-contact-item:last-child:before{
	display: none;
}

.footer-contact-item ul li i{
	font-size: 16px;
	color: #C6B39A;
	margin-right: 10px;
}

.footer-copyright{
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: nowrap;
	gap: 20px;
	border-top: 1px solid rgba(198, 179, 154, 0.22);
	margin-top: 50px;
	padding: 50px 0;
}

.footer-copyright-text{
	flex: 0 0 auto;
}

.footer-copyright-text p{
	color: #C6B39A;
	margin-bottom: 0;
	white-space: nowrap;
}

.footer-credit-logo{
	margin-top: 10px;
	display: flex;
	justify-content: flex-end;
}

.footer-credit-logo img{
	display: block;
	max-width: 220px;
	width: 100%;
	height: auto;
}

.footer-privacy-policy ul{
	margin: 0;
	padding: 0;
	list-style: none;
	white-space: nowrap;
}

.footer-privacy-policy ul li{
	position: relative;
    color: #C6B39A;
	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,
.footer-privacy-policy ul li:focus-within{
	color: #7B694E;
}

.footer-privacy-policy ul li::before{
	content: '/';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	color: #7B694E;
}

.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;
}

/* Footer — brand palette only (#C6B39A light, #7B694E middle) */
.main-footer.dark-section :is(
	.section-title.footer-newsletter-title h2,
	.section-title.footer-newsletter-title h2.text-anime-style-3,
	.section-title.footer-newsletter-title h2.text-anime-style-3 .split-line,
	.section-title.footer-newsletter-title h2.text-anime-style-3 .split-line > div,
	.section-title.footer-newsletter-title h2.text-anime-style-3 .split-line > div > div,
	.about-footer-content p,
	.footer-links h3,
	.footer-links ul li,
	.footer-links ul li a,
	.footer-copyright-text p,
	.footer-privacy-policy ul li,
	.footer-privacy-policy ul li a,
	.footer-contact-item ul li,
	.footer-contact-item ul li a,
	.footer-links ul li.footer-hours-line,
	.footer-links ul li.footer-hours-sunday,
	.footer-links ul li.footer-hours-line .footer-hours-days,
	.footer-links ul li.footer-hours-line .footer-hours-time
){
	color: #C6B39A;
}

.main-footer.dark-section :is(
	.footer-links ul li a:hover,
	.footer-links ul li a:focus,
	.footer-privacy-policy ul li:hover,
	.footer-privacy-policy ul li a:hover,
	.footer-privacy-policy ul li a:focus,
	.footer-contact-item ul li a:hover,
	.footer-contact-item ul li a:focus
){
	color: #7B694E;
}

.main-footer.dark-section .footer-contact-item ul li a:hover i,
.main-footer.dark-section .footer-contact-item ul li a:focus i{
	color: #7B694E;
}

.main-footer.dark-section :is(
	.footer-social-links ul li a,
	.footer-contact-item ul li i,
	.footer-privacy-policy ul li::before
){
	color: #C6B39A;
}

.main-footer.dark-section :is(
	.footer-social-links ul li a:hover,
	.footer-social-links ul li a:focus
){
	color: #7B694E;
}

.main-footer.dark-section .footer-social-links ul li a i{
	color: inherit;
}

.main-footer.dark-section .footer-privacy-policy ul li::before{
	color: #7B694E;
}

/************************************/
/***     17. About Us Page css	  ***/
/************************************/

.page-header{
    position: relative;
	background-image: url('../images/page-header-bg.svg?v=2');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 100% auto;
	padding: 130px 0;
}

body:not(.home-page) .page-header.bg-section.dark-section{
	background-color: #C6B39A !important;
	background-image: none !important;
	width: 100vw;
	max-width: none;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	margin-top: 0 !important;
	border-radius: 0;
	overflow: hidden;
}

body:not(.home-page) .page-header.bg-section.dark-section::before{
	content: "";
	position: absolute;
	inset: 0;
	background-color: #361319;
	opacity: 0.18;
	pointer-events: none;
	-webkit-mask-image: url('../images/page-header-bg.svg?v=2');
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center center;
	-webkit-mask-size: cover;
	mask-image: url('../images/page-header-bg.svg?v=2');
	mask-repeat: no-repeat;
	mask-position: center center;
	mask-size: cover;
}

.page-header-box{
	position: relative;
	z-index: 1;
	text-align: center;
}

.page-header-box h1{
	display: inline-block;
	color: #361319;
	font-size: 60px;
    font-weight: 400;
	text-transform: capitalize;
	margin-bottom: 10px;
	cursor: none;
}

.page-header-box h1.text-anime-style-3,
.page-header-box h1.text-anime-style-3 .split-line,
.page-header-box h1.text-anime-style-3 .split-line > div,
.page-header-box h1.text-anime-style-3 .split-line > div > div{
	color: #361319;
}

.page-header-box h1.heading-sentence-case,
.page-header-box h1.heading-word-initial-cap,
.page-header-box h1.heading-sentence-case .split-line,
.page-header-box h1.heading-word-initial-cap .split-line,
.page-header-box h1.heading-sentence-case .split-line > div,
.page-header-box h1.heading-word-initial-cap .split-line > div,
.page-header-box h1.heading-sentence-case .split-line > div > div,
.page-header-box h1.heading-word-initial-cap .split-line > div > div{
	text-transform: none !important;
}

.page-header-box ol{
	margin: 0;
	padding: 0;
	justify-content: center;
}

.page-header-box ol li.breadcrumb-item{
	font-size: 16px;
	font-weight: 400;
	text-transform: capitalize;
	color: #7B694E;
}

.page-header-box ol li.breadcrumb-item a{
    color: inherit;
	transition: color 0.3s ease-in-out;
}

.page-header-box ol li.breadcrumb-item a:hover,
.page-header-box ol li.breadcrumb-item a:focus{
	color: #361319;
}

.page-header-box ol .breadcrumb-item+.breadcrumb-item::before{
    color: #7B694E;
}

/* Page header — brand palette only (#C6B39A light, #7B694E middle) */
.page-header.bg-section.dark-section .page-header-box :is(
	h1,
	h1.text-anime-style-3,
	h1.heading-sentence-case,
	h1.heading-word-initial-cap,
	h1.text-anime-style-3 .split-line,
	h1.heading-sentence-case .split-line,
	h1.heading-word-initial-cap .split-line,
	h1.text-anime-style-3 .split-line > div,
	h1.heading-sentence-case .split-line > div,
	h1.heading-word-initial-cap .split-line > div,
	h1.text-anime-style-3 .split-line > div > div,
	h1.heading-sentence-case .split-line > div > div,
	h1.heading-word-initial-cap .split-line > div > div
){
	color: #361319;
}

.page-header.bg-section.dark-section .page-header-box :is(
	ol li.breadcrumb-item,
	ol li.breadcrumb-item.active
){
	color: #7B694E;
}

.page-header.bg-section.dark-section .page-header-box ol .breadcrumb-item+.breadcrumb-item::before{
	color: #7B694E;
}

.page-header.bg-section.dark-section .page-header-box ol li.breadcrumb-item a:hover,
.page-header.bg-section.dark-section .page-header-box ol li.breadcrumb-item a:focus{
	color: #361319;
}

.our-approach{
	background-image: url('../images/approach-bg-shape.svg');
	background-repeat: no-repeat;
	background-position: top center;
	background-size: 100% auto;
	padding: 100px 0;
}

.our-approach-body{
	background-color: var(--white-color);
	border: 1px solid var(--divider-color);
	border-radius: 30px;
	padding: 40px;
}

.mission-vison-item{
	display: flex;
	border-bottom: 1px solid var(--divider-color);
	margin-bottom: 40px;
	padding-bottom: 40px;
}

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

.mission-vison-item .icon-box{
	position: relative;
	width: 60px;
	height: 60px;
	background-color: var(--primary-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 20px;
}

.mission-vison-item .icon-box::before{
	content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--accent-color);
    border-radius: 50%;
    height: 100%;
    width: 100%;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
}

.mission-vison-item:hover .icon-box::before{
	transform: scale(1);
}

.mission-vison-item .icon-box img{
	position: relative;
	width: 100%;
	max-width: 34px;
	z-index: 1;
}

.mission-vison-content{
	width: calc(100% - 80px);
}

.mission-vison-content h3{
	font-size: 22px;
	text-transform: capitalize;
	margin-bottom: 10px;
}

.mission-vison-content p{
	margin: 0;
}

.approach-image{
	position: relative;
	padding: 55px 6px 35px 70px;
	margin-left: 20px;
}

.approach-img-1 figure{
	display: block;
	border-radius: 30px;
}

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

.approach-img-2{
	max-width: 242px;
	position: absolute;
	bottom: 0;
	left: 0;
	border: 10px solid var(--secondary-color);
	border-radius: 999px;
	overflow: hidden;
	z-index: 1;
}

.approach-img-2 img{
	width: 100%;
    aspect-ratio: 1 / 1.69;
	object-fit: cover;
}

.approach-support-box{
	position: absolute;
	top: 0;
	right: 0;
	display: flex;
	align-items: center;
	padding: 20px;
	background-color: var(--primary-color);
	border: 6px solid var(--secondary-color);
	border-radius: 20px 20px 0 20px;
	overflow: hidden;
	z-index: 1;
}

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

.approach-support-box:hover::before{
	right: auto;
	left: 0;
    width: 100%;
}

.approach-support-box .icon-box{
	position: relative;
	width: 50px;
	height: 50px;
	background-color: var(--dark-divider-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 20px;
	z-index: 1;
}

.approach-support-box .icon-box::before{
	content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    border-radius: 50%;
    height: 100%;
    width: 100%;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
}

.approach-support-box:hover .icon-box::before{
	transform: scale(1);
}

.approach-support-box .icon-box img{
	position: relative;
	width: 100%;
	max-width: 30px;
	z-index: 1;
}

.approach-support-box-content{
	position: relative;
	width: calc(100% - 70px);
	z-index: 1;
}

.approach-support-box-content h3{
	font-size: 22px;
	text-transform: capitalize;
	color: var(--white-color);
	margin-bottom: 5px;
}

.approach-support-box-content p{
	color: var(--white-color);
	margin: 0;
}

.approach-support-box-content p a{
	color: inherit;
	transition: all 0.3s ease-in-out;
}

.approach-support-box-content p a:hover{
	color: var(--primary-color);
}

.our-journey{
	background-image: url('../images/journey-bg-shape.svg');
	background-repeat: no-repeat;
	background-position: bottom center;
	background-size: 100% auto;
	padding: 100px 0;
}

.our-journey-image{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.journey-img{
	width: calc(50% - 15px);
}

.journey-img figure{
	display: block;
	border-radius: 30px;
}

.journey-img img{
	width: 100%;
	object-fit: cover;
	border-radius: 30px;
}

.journey-img img{
	aspect-ratio: 1 / 0.872;
}

.journey-image-box{
	position: relative;
	width: 100%;
	padding-left: 80px;
}

.journey-image-box .journey-img{
	width: 100%;
}

.journey-image-box .journey-img img{
	aspect-ratio: 1 / 0.591;
}

.journey-experience-circle{
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 0;
	z-index: 20;
}

.journey-experience-circle img{
	width: 100%;
	max-width: 160px;
	animation: infiniterotate 25s infinite linear;
}

.our-journey-content{
	margin-left: 30px;
}

.our-journey-list{
	border-bottom: 1px solid var(--dark-divider-color);
	margin-bottom: 40px;
	padding-bottom: 40px;
}

.our-journey-list ul{
	display: flex;
	flex-wrap: wrap;
	gap: 20px 30px;
	list-style: none;
	padding: 0;
	margin: 0;
}

.our-journey-list ul li{
	position: relative;
	width: calc(50% - 15px);
	color: var(--white-color);
	line-height: 1.5em;
	padding-left: 30px;
}

.our-journey-list ul li::before{
	content: '\f14a';
    font-family: "Font Awesome 6 Free";
    position: absolute;
    left: 0;
	top: 0;
    font-size: 20px;
    font-weight: 900;
    color: var(--accent-color);
}

.our-journey-body{
	display: flex;
	flex-wrap: wrap;
	gap: 20px 30px;
	margin-bottom: 40px;
}

.journey-item{
	width: calc(50% - 15px);
	display: flex;
	align-items: center;
}

.journey-item .icon-box{
	position: relative;
	width: 60px;
	height: 60px;
	background-color: var(--accent-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 20px;
}

.journey-item .icon-box::before{
	content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--white-color);
    border-radius: 50%;
    height: 100%;
    width: 100%;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
}

.journey-item:hover .icon-box::before{
	transform: scale(1);
}

.journey-item .icon-box img{
	position: relative;
	width: 100%;
	max-width: 34px;
	z-index: 1;
	transition: all 0.4s ease-in-out;
}

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

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

.journey-item-content h3{
	color: var(--white-color);
	font-size: 20px;
	line-height: 1.4em;
	text-transform: capitalize;
}

.our-team{
	padding: 100px 0 70px;
}

.team-item{
	height: calc(100% - 30px);
	text-align: center;
	margin-bottom: 30px;
}

.team-image{
	margin-bottom: 20px;
}

.team-image a,
.team-image figure{
	display: block;
	cursor: none;
	border-radius: 30px;
}

.team-image img{
	width: 100%;
	aspect-ratio: 1 / 1.187;
	object-fit: cover;
	border-radius: 30px;
	transition: all 0.4s ease-in-out;
}

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

.team-content{
	margin-bottom: 20px;
}

.team-content h3{
	font-size: 22px;
	text-transform: capitalize;
}

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

.team-social-icons ul{
    list-style: none;
    padding: 0;
    margin: 0;
}

.team-social-icons ul li{
    display: inline-block;
    margin-right: 10px;
}

.team-social-icons ul li:last-child{
    margin: 0;
}

.team-social-icons ul li a{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: var(--accent-color);
	color: var(--secondary-color);
    border-radius: 50%;
	transition: all 0.3s ease-in-out;
}

.team-social-icons ul li i{
	color: inherit;
    font-size: 18px;
}

.team-social-icons ul li:hover a{
	background: var(--primary-color);
	color: var(--white-color);
}

.meet-your-provider .provider-image{
	margin-bottom: 30px;
}

.meet-your-provider .provider-image figure{
	display: block;
	border-radius: 30px;
	overflow: hidden;
}

.meet-your-provider .provider-image img{
	width: 100%;
	aspect-ratio: 3 / 4;
	object-fit: cover;
	border-radius: 30px;
}

.meet-your-provider .provider-bio p{
	margin-bottom: 1.25em;
}

.meet-your-provider .provider-bio p:last-child{
	margin-bottom: 0;
}

#meet-your-provider{
	scroll-margin-top: 120px;
}

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

.our-faqs-images{
	position: relative;
	background: url('../images/faq-dot-img.svg') no-repeat;
	background-position: left 187px bottom 46px;
	background-size: 84px auto;
	display: flex;
	flex-wrap: wrap;
	margin-right: 20px;
	padding: 0 242px 105px 0;
}

.faqs-img-2{
	max-width: 353px;
	position: absolute;
	right: 0;
	bottom: 0;
}

.faqs-img-1 figure,
.faqs-img-2 figure{
	display: block;
	border-radius: 30px;
}

.faqs-img-1 img,
.faqs-img-2 img{
	width: 100%;
	object-fit: cover;
	border-radius: 30px;
}

.faqs-img-1 img{
	aspect-ratio: 1 / 1.514;
}

.faqs-img-2 img{
	aspect-ratio: 1 / 1.155;	
}

.faqs-circle{
	position: absolute;
	top: 35px;
	right: 35px;
}

.faqs-circle a{
	display: block;
	border-radius: 50%;
}

.faqs-circle a img{
	width: 100%;
	max-width: 170px;
	border-radius: 50%;
	animation: infiniterotate 25s infinite linear;
}

.faq-accordion .accordion-item{
    border-bottom: 1px solid var(--divider-color);
    margin-bottom: 30px;
    padding-bottom: 30px;
}

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

.faq-accordion .accordion-header .accordion-button{
    font-size: 22px;
    font-weight: 400;
    line-height: 1.4em;
    color: var(--primary-color);
    padding-right: 30px;
    transition: all 0.3s ease-in-out;
}

.faq-accordion .accordion-button:not(.collapsed){
    color: var(--accent-color);
    padding-bottom: 10px;
}

.faq-accordion .accordion-item .accordion-button::after, 
.faq-accordion .accordion-item .accordion-button.collapsed::after{
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    line-height: 1;
    color: var(--primary-color);
    background-image: none;
    background-size: auto;
    width: auto;
    height: auto;
    flex-shrink: unset;
    margin-left: 0;
    transition: all 0.3s ease-in-out;
}

.faq-accordion .accordion-button:not(.collapsed)::after{
    transform: translateY(-50%) rotate(180deg);
    color: var(--accent-color);
}

.faq-accordion .accordion-item .accordion-body{
    padding-right: 30px;
}

.faq-accordion .accordion-item .accordion-body p{
    color: var(--text-color);
    margin-bottom: 15px;
}

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

/************************************/
/***    18. Services Page css	  ***/
/************************************/

.page-services{
	padding: 100px 0 70px;
}

.page-services .service-item{
	background-color: var(--white-color);
	background: var(--white-color);
}

.page-addons{
	padding: 100px 0;
}

.page-addons.bg-section{
	background: #C6B39A !important;
	background-color: #C6B39A !important;
	background-image: none !important;
}

.page-addons .section-title{
	text-align: center;
}

.page-addons .section-title h3{
	display: inline-flex;
	align-items: center;
	padding-left: 34px;
	margin: 0 auto 10px;
}

@media (min-width: 0px){
.page-addons .section-title h3{
	padding-left: 34px !important;
	display: inline-flex !important;
	margin: 0 auto 10px !important;
}

.page-addons .section-title h3::before{
	left: 0 !important;
}
}

.page-addons .section-title .text-anime-style-3 .split-line{
	text-align:center;
}

.page-addons .section-title .text-anime-style-3 .split-line > div{
	display:flex;
	justify-content:center;
}

.page-addons .service-item{
	background-color: #C6B39A !important;
	box-shadow: 0 20px 30px rgba(54, 19, 25,0.08);
}

.page-addons .addon-card{
	background: #C6B39A !important;
	box-shadow: 0 12px 24px rgba(54, 19, 25,0.06);
}

.page-addons .service-content{
	text-align: left;
}

.page-addons .service-image{
	margin-top: 24px;
}

.page-addons .service-content-title{
	justify-content: space-between;
	gap: 20px;
}

.page-addons .readmore-btn{
	align-self: flex-end;
}

/************************************/
/***   19. Services Single css    ***/
/************************************/

.page-service-single{
	padding: 100px 0;
}

.page-single-sidebar{
	position: sticky;
	top: 20px;
	margin-right: 20px;
}

.page-single-category-list{
	background: var(--secondary-color);
	border-radius: 20px;
    margin-bottom: 60px;
	overflow: hidden;
}

.page-single-category-list h3{
    font-size: 22px;
    color: var(--white-color);
    text-transform: uppercase;
	background: var(--primary-color);
    padding: 20px 30px;
}

.page-single-category-list ul{
    list-style: none;
    margin: 0;
    padding: 30px;
}

.page-single-category-list ul li{
    border-bottom: 1px solid var(--divider-color);
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.page-single-category-list ul li:last-child{
    margin: 0;
    padding: 0;
    border-bottom: none;
}

.page-single-category-list ul li a{
    position: relative;
    display: block;
	line-height: 1.4em;
    text-transform: capitalize;
    color: var(--text-color);
    padding-right: 30px;
    transition: all 0.4s ease-in-out;
}

.page-single-category-list ul li:hover a{
    color: var(--primary-color);
}

.page-single-category-list ul li a::before{
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: url('../images/arrow-text.svg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    width: 22px;
    height: 22px;
    transition: all 0.4s ease-in-out;
}

.page-single-category-list ul li a:hover::before{
    transform: translateY(-50%) rotate(45deg);
    filter: brightness(0) invert(0);
}

.sidebar-cta-box{
    position: relative;
}

.sidebar-cta-image{
	position: relative;
	border-radius: 20px;
	overflow: hidden;
}

.sidebar-cta-image::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(179.96deg, rgba(54, 19, 25, 0) 50.09%, rgba(54, 19, 25, 0.9) 99.23%);
    width: 100%;
    height: 100%;
	z-index: 1;
}

.sidebar-cta-image figure img{
	width: 100%;
	aspect-ratio: 1 / 1.22;
	object-fit: cover;
	transition: all 0.4s ease-in-out;
}

.sidebar-cta-box:hover .sidebar-cta-image figure img{
	transform: scale(1.05);
}

.sidebar-cta-item{
	position: absolute;
	bottom: 30px;
	left: 30px;
	right: 30px;
	display: flex;
	z-index: 1;
}

.sidebar-cta-item .icon-box{
	margin-right: 20px;
}

.sidebar-cta-item .icon-box img{
	max-width: 40px;
}

.sidebar-cta-content h3{
    font-size: 22px;
    text-transform: capitalize;
    color: var(--white-color);
    margin-bottom: 15px;
}

.sidebar-cta-content p{
    color: var(--white-color);
    margin-bottom: 5px;
}

.sidebar-cta-content p:last-child{
	margin-bottom: 0;
}

.page-single-image{
	margin-bottom: 40px;
}

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

.page-single-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 ul{
	list-style: none;
	padding: 0;
	margin: 0 0 20px 0;
}

.service-enhance-box,
.service-achieve-box{
	margin-top: 40px;
}

.service-enhance-item-list{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	margin-top: 40px;
}

.service-enhance-item{
	width: calc(33.33% - 20px);
	border: 1px solid var(--divider-color);
	border-radius: 30px;
	padding: 20px;
}

.service-enhance-item .icon-box{
	position: relative;
	background: var(--primary-color);
	border-radius: 50%;
	width: 60px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 35px;
}

.service-enhance-item .icon-box::before{
	content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--accent-color);
    border-radius: 50%;
    height: 100%;
    width: 100%;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
}

.service-enhance-item:hover .icon-box::before{
	transform: scale(1);
}

.service-enhance-item .icon-box img{
	position: relative;
	max-width: 34px;
	z-index: 1;
}

.service-enhance-item-content h3{
	font-size: 22px;
	text-transform: capitalize;
	margin-bottom: 10px;
}

.servie-entry-video-image.intro-video-box{
	position: relative;
	height: auto;
	margin: 40px 0;
}

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

.servie-entry-image figure::before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: var(--primary-color);
	opacity: 40%;
	width: 100%;
	height: 100%;
	z-index: 1;
}

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

.service-achieve-list{
	margin-top: 40px;
}

.service-achieve-list .how-work-step-item{
	margin-bottom: 40px;
}

.service-achieve-list .how-work-step-item::before{
	display: none;
}

/************************************/
/***     20. 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(--secondary-color);
    color: var(--primary-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);
}

/************************************/
/***     21. Blog Single css	  ***/
/************************************/

.page-single-post{
	padding: 100px 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.417em;
}

.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: 20px;
}

.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(--primary-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: 22px;
	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: 22px;
	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: 600;
    text-transform: capitalize;
    line-height: 1em;
	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(--primary-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(--primary-color);
}

.post-social-sharing ul li a i{
    font-size: 18px;
    color: inherit;
}

/************************************/
/***    22. Case Study Page css   ***/
/************************************/

.page-case-study{
	padding: 100px 0 70px;
}

/************************************/
/***   23. Case Study Single css  ***/
/************************************/

.page-case-study-single{
	padding: 100px 0;
}

.case-study-detail-list{
    background: var(--secondary-color);
	box-shadow: 0px 4px 30px 0px rgba(54, 19, 25, 0.04);
	border-radius: 20px;
	margin-bottom: 60px;
    padding: 40px;
}

.case-study-detail-item{
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	border-bottom: 1px solid var(--divider-color);
    margin-bottom: 25px;
	padding-bottom: 25px;
}

.case-study-detail-item:last-child{
	border-bottom: none;
	padding-bottom: 0;
	margin-bottom: 0;
}

.case-study-detail-item .icon-box{
	position: relative;
	background: var(--primary-color);
	border-radius: 50%;
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 20px;
}

.case-study-detail-item .icon-box::before{
	content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--accent-color);
    border-radius: 50%;
    height: 100%;
    width: 100%;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
}

.case-study-detail-item:hover .icon-box::before{
	transform: scale(1);
}

.case-study-detail-item .icon-box img{
	position: relative;
	width: 100%;
	max-width: 30px;
	z-index: 1;
}

.case-study-detail-content{
	width: calc(100% - 70px);
}

.case-study-detail-item h3{
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 5px;
}

.case-study-detail-content p{
	text-transform: capitalize;
	margin-bottom: 0;
}

.case-study-detail-item ul{
	width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
}

.case-study-detail-item ul li{
	display: inline-block;
	margin-right: 15px;
}

.case-study-detail-item ul li:last-child{
	margin-right: 0;
}

.case-study-detail-item ul li a{
	width: 40px;
	height: 40px;
	color: var(--primary-color);
	border: 1px solid var(--primary-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease-in-out;
}

.case-study-detail-item ul li a:hover{
    color: var(--accent-color);
	border-color: var(--accent-color);
}

.case-study-detail-item ul li a i{
	font-size: 20px;
	color: inherit;
}

.case-study-entry{
	margin-bottom: 60px;
}

.case-study-entry p{
	margin-bottom: 20px;
}

.case-study-entry p:last-child{
	margin-bottom: 0;
}

.case-study-entry h2{
	font-size: 48px;
    margin-bottom: 20px;
}

.case-study-entry ul{
	list-style: none;
	padding: 0;
	margin: 0 0 20px 0;
}

.case-study-entry ul li{
	position: relative;
	line-height: 1.5em;
	margin-bottom: 15px;
	padding-left: 30px;
}

.case-study-entry ul li:last-child{
	margin-bottom: 0;
}

.case-study-entry ul li::before{
	content: '\f14a';
    font-family: "Font Awesome 6 Free";
    position: absolute;
    left: 0;
	top: 0;
    font-size: 20px;
    font-weight: 900;
    color: var(--accent-color);
}

.transformative-beauty-box,
.glow-up-box,
.real-transformation-box{
	margin-top: 40px;
}

.transformative-beauty-list{
	display: flex;
	gap: 40px 30px;
	flex-wrap: wrap;
	margin-top: 40px;
}

.transformative-beauty-list .how-work-step-item{
	width: calc(50% - 15px);
	margin-bottom: 0;
}

.transformative-beauty-list .how-work-step-item::before{
	display: none;
}

.glow-up-box{
	display: flex;
	flex-wrap: wrap;
	gap: 20px 30px;
}

.glow-up-image,
.glow-up-content{
	width: calc(50% - 15px);
}

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

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

.glow-up-content ul{
	margin: 40px 0;
}

.glow-up-content .how-work-step-item{
	border: 1px solid var(--divider-color);
	box-shadow: 0px 0px 50px 2px rgba(54, 19, 25, 0.03);
	border-radius: 30px;
	padding: 20px;
}

.real-transformation-box ul{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.real-transformation-box ul li{
	width: calc(50% - 15px);
	border: 1px solid var(--divider-color);
	border-radius: 16px;
	padding: 20px 16px 20px 46px;
	overflow: hidden;
	transition: all 0.4s ease-in-out;
	margin-bottom: 0;
	z-index: 0;
}

.real-transformation-box ul li::before{
	top: 20px;
	left: 16px;
	transition: all 0.4s ease-in-out;
}

.real-transformation-box ul li:hover,
.real-transformation-box ul li:hover::before{
	color: var(--white-color);
}

.real-transformation-box ul li::after{
	content: '';
	position: absolute;
	top: 100%;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: var(--accent-color);
	height: 100%;
	width: 100%;
	z-index: -1;
	transition: all 0.4s ease-in-out;
}

.real-transformation-box ul li:hover::after{
	top: 0;
}

/************************************/
/***      24. Team Page css       ***/
/************************************/

.page-team{
	padding: 100px 0 70px;
}

/************************************/
/***      25. Team Single css     ***/
/************************************/

.page-team-single{
	padding: 100px 0;
}

.team-member-info-box,
.team-member-about{
	margin-bottom: 80px;
}

.team-member-info-box{
	display: flex;
	gap: 30px 60px;
	align-items: center;
	flex-wrap: wrap;
}

.team-member-image,
.team-member-content{
	width: calc(50% - 30px);
}

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

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

.member-info-list ul{
    list-style: none;
    margin: 0;
    padding: 0;
}

.member-info-list ul li{
	font-family: var(--accent-font);
    font-size: 22px;
	line-height: 1.4em;
    color: var(--primary-color);
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

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

.member-info-list ul li span{
	font-family: var(--default-font);
    width: 75%;
    font-size: 16px;
    color: var(--text-color);
}

.member-social-list{
	border-top: 1px solid var(--divider-color);
	margin-top: 40px;
	padding-top: 40px;
}

.member-social-list ul{
    list-style: none;
    padding: 0;
    margin: 0;
}

.member-social-list ul li{
    display: inline-block;
    margin-right: 10px;
}

.member-social-list ul li:last-child{
    margin-right: 0;
}

.member-social-list ul li a{
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
	border-radius: 50%;
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease-in-out;
}

.member-social-list ul li a:hover{
    color: var(--accent-color);
	border-color: var(--accent-color);    
}

.member-social-list ul li a i{
    color: inherit;
    font-size: 18px;
}

.team-member-list ul{
	list-style: none;
	padding: 0;
	margin: 0;
}

.team-member-list ul li{
	position: relative;
	line-height: 1.5em;
	margin-bottom: 15px;
	padding-left: 30px;
}

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

.team-member-list ul li::before{
	content: '\f14a';
    font-family: "Font Awesome 6 Free";
    position: absolute;
    left: 0;
	top: 0;
    font-size: 20px;
    font-weight: 900;
    color: var(--accent-color);
}

.team-member-skills-box{
	display: flex;
	gap: 30px 60px;
	align-items: center;
	flex-wrap: wrap;
}

.team-member-skills-info,
.team-contact-form{
	width: calc(50% - 30px);
}

.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;
    margin-bottom: 15px;
}

.skills-progress-bar .skill-data .skill-title{
	font-family: var(--accent-font);
	font-size: 18px;
	line-height: 1.5em;
	text-transform: capitalize;
	color: var(--primary-color);
}

.skills-progress-bar .skill-data .skill-no{
	font-size: 16px;
	line-height: 1.5em;
	color: var(--primary-color);
}

.skills-progress-bar .skillbar .skill-progress{
	position: relative;
	width: 100%;
	height: 16px;
	background: var(--secondary-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;
}

.team-member-skills-info .team-member-list{
	border-top: 1px solid var(--divider-color);
	margin-top: 40px;
	padding-top: 40px;
}

.team-member-skills-info .team-member-list ul{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.team-member-skills-info .team-member-list ul li{
	width: calc(50% - 15px);
	margin-bottom: 0;
}

.team-contact-form .contact-form{
	border-radius: 30px;
}

/************************************/
/***  26. Testimonials Page css   ***/
/************************************/

.page-testimonials{
	padding: 100px 0 70px;
}

.page-testimonials .testimonial-item{
	position: relative;
	background: var(--secondary-color);
	border-radius: 30px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	padding: 30px 25px;
	overflow: hidden;
}

.page-testimonials .testimonial-item .testimonial-item-content{
	border-color: var(--divider-color);
}

.page-testimonials .testimonial-item .testimonial-author .author-content p,
.page-testimonials .testimonial-item .testimonial-item-content p{
	color: var(--text-color);
}

.page-testimonials .testimonial-item .testimonial-author .author-content h3{
	color: var(--primary-color);
}

/************************************/
/***    27.  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;
}

/************************************/
/***     28. 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: 'Font Awesome 6 Free';
    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;
}

/************************************/
/***       29. FAQs Page css      ***/
/************************************/

.page-faqs{
    padding: 100px 0;
}

.page-faqs-catagery .page-single-faqs{
    margin-bottom: 60px;
}

.page-faqs-catagery .page-single-faqs:last-child{
    margin-bottom: 0px;
}

/************************************/
/***    30. Contact Us Page css   ***/
/************************************/

.page-contact-us{
	padding: 100px 0 50px;
}

.contact-us-content .section-title{
	margin-bottom: 0;
}

.contact-us-content .section-title h2.text-anime-style-3,
.contact-us-content .section-title h2.text-anime-style-3 .split-line,
.contact-us-content .section-title h2.text-anime-style-3 .split-line > div,
.contact-us-content .section-title h2.text-anime-style-3 .split-line > div > div{
	text-transform: none !important;
}

.contact-us-content .section-title .text-acronym{
	text-transform: uppercase !important;
}

.contact-info-list{
	display: flex;
	gap: 30px;
	flex-wrap: wrap;
}

.contact-info-item{
	width: calc(33.33% - 20px);
	background: var(--secondary-color);
	border-radius: 20px;
	padding: 30px;
}

.contact-info-item .icon-box{
	position: relative;
	background: var(--primary-color);
	border-radius: 50%;
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 30px;
}

.contact-info-item .icon-box::before{
	content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--accent-color);
    border-radius: 50%;
    height: 100%;
    width: 100%;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
}

.contact-info-item:hover .icon-box::before{
	transform: scale(1);
}

.contact-info-item .icon-box img{
	position: relative;
	max-width: 26px;
	z-index: 1;
}

.contact-info-content h3{
	font-size: 22px;
	text-transform: capitalize;
	margin-bottom: 5px;
}

.contact-info-content p{
	margin-bottom: 5px;
}

.contact-info-content p:last-child{
	margin-bottom: 0;
}

.contact-info-content p a{
	color: inherit;
	transition: all 0.3s ease-in-out;
	display: inline-block;
	word-break: break-word;
	max-width: 100%;
	white-space: normal;
}

.contact-info-content p a:hover{
	color: var(--accent-color);
}

.conatct-us-form{
	padding: 50px 0 100px;
}

.contact-form{
	background-color: var(--secondary-color);
	border-radius: 40px 0 0 40px;
	padding: 40px;
}

.contact-form form .form-control{
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5em;
    color: var(--text-color);
    background-color: var(--white-color);
    border-radius: 40px;
    padding: 17px 20px;
	border: none;
    outline: none;
    box-shadow: none;
}

.contact-form form .form-control::placeholder{
    color: var(--text-color);
}

.google-map-iframe{
	height: 100%;
	border-radius: 0 40px 40px 0;
	overflow: hidden;
}

.google-map-iframe iframe,
.google-map-iframe .hm-contact-map{
	height: 100%;
	width: 100%;
}

/************************************/
/***   31. Book Appointment css   ***/
/************************************/

body.page-book-appointment > .page-book-appointment{
	padding: 100px 0;
}

@media only screen and (min-width: 992px){
	body.page-thank-you > .thank-you-page.bg-section{
		margin-top: calc(var(--header-blur-height, 108px) + 40px);
	}

	body.page-thank-you > header.main-header[data-nav-color="7B694E"] .header-sticky :is(
		.main-menu .nav-menu-wrapper > ul > li > a.nav-link,
		.main-menu .nav-menu-wrapper > ul > li > a,
		.header-contact-now,
		.header-contact-now .contact-lines,
		.main-menu .nav-menu-wrapper > ul > li.submenu > a:after
	){
		color: #7B694E !important;
		-webkit-text-fill-color: #7B694E !important;
	}

	body.page-thank-you > header.main-header[data-nav-color="7B694E"] .header-sticky .main-menu .nav-menu-wrapper > ul > li > a:hover,
	body.page-thank-you > header.main-header[data-nav-color="7B694E"] .header-sticky .main-menu .nav-menu-wrapper > ul > li > a:focus,
	body.page-thank-you > header.main-header[data-nav-color="7B694E"] .header-sticky .header-contact-now:hover,
	body.page-thank-you > header.main-header[data-nav-color="7B694E"] .header-sticky .header-contact-now:focus{
		color: #C6B39A !important;
		-webkit-text-fill-color: #C6B39A !important;
	}
}

@media only screen and (max-width: 991px){
	body.page-book-appointment.page-thank-you > .thank-you-page.bg-section,
	body.page-thank-you > .thank-you-page.bg-section{
		width: auto !important;
		max-width: none !important;
		margin-left: 12px !important;
		margin-right: 12px !important;
		margin-top: calc(env(safe-area-inset-top, 0px) + var(--header-blur-height, 108px) + 32px) !important;
		padding: 48px 20px 52px !important;
		background: #C6B39A !important;
		background-color: #C6B39A !important;
		background-image: none !important;
		border-radius: 20px !important;
		box-shadow: none !important;
		overflow: hidden;
	}

	body.page-thank-you > .thank-you-page.bg-section > .container{
		position: relative;
		padding: 0;
		max-width: 100%;
		background: #C6B39A !important;
		background-color: #C6B39A !important;
		background-image: none !important;
	}

	body.page-thank-you > .thank-you-page.bg-section > .container > .row,
	body.page-thank-you > .thank-you-page.bg-section > .container > .row > [class*="col-"],
	body.page-thank-you > .thank-you-page.bg-section .thank-you-content,
	body.page-thank-you > .thank-you-page.bg-section .why-choose-images{
		background: #C6B39A !important;
		background-color: #C6B39A !important;
		background-image: none !important;
	}

	body.page-thank-you > .thank-you-page.bg-section > .container::before{
		content: none;
		display: none;
	}

	body.page-thank-you .why-choose-images{
		padding: 0 24px 12px 0;
		margin-bottom: 36px;
	}

	body.page-thank-you .why-choose-images::before{
		background: #7B694E !important;
		border-radius: 20px;
		width: min(74%, 290px);
		height: clamp(210px, 52vw, 260px);
		right: 0;
		bottom: -20px;
	}

	body.page-thank-you .thank-you-content{
		margin-top: 0;
	}

	body.page-thank-you .thank-you-content .section-title h2,
	body.page-thank-you .thank-you-signoff{
		color: #361319 !important;
	}

	body.page-thank-you .thank-you-content .section-title h3{
		color: #7B694E !important;
	}

	body.page-thank-you .thank-you-content .section-title p{
		color: #361319 !important;
	}

	body.page-thank-you .years-experience-text p{
		color: #C6B39A !important;
	}
}

.appointment-item{
	display: flex;
	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{
	width: 100%;
	max-width: 40px;
}

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

.appointment-item-content h3{
	font-size: 22px;
	text-transform: capitalize;
	margin-bottom: 10px;
}

.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);
}

.page-book-appointment .appointment-form{
	background: var(--secondary-color);
	border-radius: 30px;
	padding: 40px;
}

/************************************/
/***    32. 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: 40%;
}

.error-page-content{
	text-align: center;
}

.error-page-content .section-title,
.error-page-content-body p{
	margin-bottom: 20px;
}

/************************************/
/***      33. Responsive css      ***/
/************************************/

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

	.bg-section{
		width: calc(100% - 100px);
		margin-left: 50px;
		margin-right: 50px;
		max-width: 100%;
	}

	.hero.hero-bg-image.hero-slider-layout .hero-pagination{
		padding-left: calc(((100vw - 1300px) / 2) - 30px);
		left: 0;
	}

	.main-footer{
		margin-bottom: 50px;
	}
}

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

	.bg-section{
		width: calc(100% - 30px);
		margin-left: 15px;
		margin-right: 15px;
	}

	.hero.hero-bg-image.hero-slider-layout .hero-pagination{
		padding-left: calc(((100vw - 1300px) / 2));
	}

	.main-footer{
		margin-bottom: 15px;
	}
}

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

	.header-contact-now{
		display: none;
	}

	.hero{
		padding: 100px 0;
	}

	.hero.hero-bg-image.hero-slider-layout .hero-pagination{
		padding-left: 15px;
	}

	.hero-image img{
		margin-bottom: -100px;
		margin-top: -40px;
		max-width: 100%;
	}
}

body.home-page #home-hero.bg-section{
	width: 100vw !important;
	margin-left: 0 !important;
	margin-right: 0 !important;
	padding-left: 0 !important;
	padding-right: 0 !important;
}

body.home-page #home-hero.bg-section .container-fluid{
	max-width: 100% !important;
	width: 100% !important;
	margin: 0 auto;
}

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

	.btn-default{
		padding: 15px 20px;
		margin-right: 46px;
	}

	.btn-default::before{
		right: -46px;
		width: 46px;
		height: 46px;
	}

	.navbar{
		padding: 20px 0;
	}

	body.home-page > header.main-header{
		--header-blur-top-extend: 20px;
	}

	body:not(.home-page) > header.main-header{
		--header-blur-top-extend: 0;
	}

	.navbar-brand img{
		max-height: 56px;
	}

	header.main-header .header-sticky.active{
		border-left: none;
		border-right: none;
		border-radius: 0;
	}

	.slicknav_nav li,
	.slicknav_nav ul{
        display: block;
    }

	body.mobile-nav-open{
		overflow: hidden;
		position: fixed;
		width: 100%;
		left: 0;
		right: 0;
	}

	.slicknav_menu{
		max-height: calc(100dvh - 88px);
		max-height: calc(100svh - 88px);
		overflow-y: auto;
		overflow-x: hidden;
		-webkit-overflow-scrolling: touch;
		overscroll-behavior: contain;
	}

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

	.header-btn{
		display: none;
	}

	.bg-section{
		width: 100%;
		margin-left: 0px;
		margin-right: 0px;
		border-radius: 0;
	}

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

	.section-row .section-title.section-title-center{
		max-width: 100%;
	}

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

	.section-title h3{
		padding-left: 30px
	}

	.section-title h3::before{
		width: 20px;
		height: 20px;
	}

	.section-title h1{
		font-size: 45px;
	}

	.section-title h2{
		font-size: 38px;
	}

	.section-title p{
		margin-top: 15px;
	}

	.section-title p span{
		font-size: 18px;
	}

	.section-title-content{
		margin-top: 15px;
	}

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

	.section-content-btn .section-btn{
		margin-top: 15px;
	}

	.hero{
		padding: 50px 0;
	}

	.hero.hero-bg-image,
	.hero.hero-bg-image.hero-slider-layout .hero-slide{
		padding: 100px 0;
	}

	#home-hero.hero.hero-bg-image{
		padding-top: 0;
		padding-bottom: calc(44px + env(safe-area-inset-bottom, 0px));
	}

	#home-hero.hero.hero-bg-image:not(.hero-bg-mobile-pan),
	.hero.hero-bg-image{
		background-position: left center;
	}

	.hero.hero-bg-image.hero-slider-layout .hero-pagination{
		bottom: 30px;
	}

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

	.hero-body{
		justify-content: flex-end;
		align-items: center;
		gap: 15px 24px;
	}

	.hero-review-box{
		margin-top: 30px;
	}

	.hero-image{
		max-width: 80%;
		margin: 0;
		text-align: left;
	}

	.hero-image img{
		margin-bottom: -50px;
		margin-top: 0px;
		max-width: 100%;
	}

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

	.home-about-preview{
		padding: 50px 0;
		margin-top: 15px;
	}

	.home-about-content{
		padding-right: 0;
		margin-bottom: 40px;
	}

	.home-about-pillars{
		margin-top: 25px;
	}

	.home-about-pillar{
		padding: 18px 20px;
		border-radius: 16px;
	}

	.home-about-actions{
		margin-top: 25px;
		padding-top: 25px;
	}

	.home-about-visual{
		padding: 30px 0 30px 35px;
		max-width: 520px;
		margin: 0 auto;
	}

	.home-about-visual figure,
	.home-about-visual img{
		border-radius: 20px;
	}

	.home-about-visual__badge{
		bottom: 35px;
		padding: 14px 18px;
	}

	.about-us-images{
		background-position: top 16px left 0;
		background-size: 76px auto;
		max-width: 80%;
		margin: 0 auto;
		margin-bottom: 30px;
	}

	body:is(.home-page, .page-about, .page-service-detail) .about-us .about-us-images::before{
		top: 16px;
		left: 0;
		width: 76px;
		height: 77px;
		z-index: 1;
	}

	body:is(.home-page, .page-about, .page-service-detail) .about-us .about-us-images :is(.about-img-1, .about-img-2){
		position: relative;
		z-index: 2;
	}

	.about-img-1{
		padding-left: 180px;
	}

	.about-img-2{
		max-width: 260px;
		margin-top: -210px;
	}

	body:is(.home-page, .page-about, .page-service-detail) .about-us .about-us-images .company-experience-circle{
		left: 56%;
		top: calc(100% - 140px);
		z-index: 20;
	}

	.about-img-2 figure,
	.about-img-1 figure,
	.about-img-2 img,
	.about-img-1 img{
		border-radius: 20px;
	}

	.company-experience-circle img{
		max-width: 140px;
	}

	.about-experience-image figure,
	.about-experience-image img{
		border-radius: 20px;
	}

	.about-us-body{
		border-radius: 20px;
		padding: 20px;
		margin-top: 30px;
		gap: 20px;
	}

	.about-us-btn .btn-book-cta{
		margin-bottom: 8px !important;
	}

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

	.our-services .services-footer-row{
		margin-top: 14px;
	}

	.our-services .row:has(> [class*="col-"] > .service-item),
	#services-overview .row:has(> [class*="col-"] > .service-item){
		--service-card-gap: 24px;
	}

	.service-item{
		border-radius: 20px;
		padding: 30px;
	}

	.service-content-title{
		gap: 10px;
		margin-bottom: 15px;
	}

	.service-content-title h2{
		width: calc(100% - 60px);
	}

	.service-content{
		margin-bottom: 20px;
	}

	.our-services .service-content,
	#services-overview .service-content{
		margin-bottom: 20px;
	}

	.service-image a,
	.service-image img{
		border-radius: 20px;
	}

	.section-footer-text{
		margin-top: 10px;
	}

	.section-footer-text p span:not(.spa-contact-phone):not(.spa-contact-phone-line){
		padding: 2px 8px;
		margin-right: 5px;
	}

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

	.what-we-btn{
		margin-top: 30px;
	}

	.what-we-image-2{
		max-width: 55%;
		margin: 0 auto;
		margin-top: 30px;
	}

	.experirnce-box h2{
		font-size: 34px;
	}

	.experirnce-box p{
		font-size: 14px;
	}

	.intro-video-box{
		height: 500px;
	}

	.intro-bg-video::before{
		border-radius: 0px;
	}

	.intro-video-box .video-play-button a{
		width: 80px;
		height: 80px;
		font-size: 18px;
	}

	.case-study{
		padding: 50px 0 20px;
	}

	.case-study-image img{
		aspect-ratio: 1 / 0.9;
	}

	.case-study-content{
		position: initial;
		top: 0;
	}

	.case-study-body{
		left: 20px;
		bottom: 20px;
		right: 20px;
	}

	.case-study-item-content h3{
		font-size: 20px;
	}

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

	.why-choose-images{
		margin-right: 0px;
		margin-bottom: 30px;
	}

	.why-choose-image figure,
	.why-choose-image img{
		border-radius: 20px;
	}

	.why-choose-contact-box h3,
	.why-choose-contact-quote{
		font-size: 20px;
	}

	.why-choose-contact-box{
		margin-top: 30px;
		padding-top: 30px;
	}

	.why-choose-contact-quote{
		margin-top: 24px;
	}

	body.home-page .why-choose-contact-quote{
		font-size: 19px;
	}

	.why-choose-contact-item{
		margin-top: 0;
		padding-top: 0;
	}

	.why-choose-contact-item-content p{
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		gap: 4px;
	}

	.why-choose-contact-item-content p a{
		font-size: 20px;
		margin-left: 0;
	}

	/* Homepage: white inset cards on mobile (About, Vision, Why Choose Us, How It Works) */
	body.home-page .about-us,
	body.home-page .what-we-do,
	body.home-page .how-it-work{
		padding: 24px 16px;
		background: transparent;
		background-image: none;
	}

	body.home-page .why-choose-us{
		margin-top: 40px;
		padding: 40px 16px;
		background-color: #C6B39A !important;
		background-image: none !important;
	}

	body.home-page .about-us > .container,
	body.home-page .what-we-do > .container,
	body.home-page .how-it-work > .container{
		background: var(--white-color);
		border-radius: 20px;
		padding-top: 32px;
		padding-bottom: 32px;
		padding-left: 24px;
		padding-right: 24px;
		box-shadow: 0 8px 32px rgba(54, 19, 25, 0.08);
	}

	/* Mobile homepage: "Our Vision" card should blend with body background */
	body.home-page .what-we-do > .container{
		background: transparent !important;
		background-color: transparent !important;
		background-image: none !important;
		box-shadow: none !important;
	}

	body.home-page .what-we-do{
		background: transparent !important;
		background-color: transparent !important;
		background-image: none !important;
	}

	/* Mobile homepage: "About Us" card should blend with body background */
	body.home-page .about-us > .container{
		background: transparent !important;
		background-color: transparent !important;
		background-image: none !important;
		box-shadow: none !important;
	}

	body.home-page .about-us{
		background: transparent !important;
		background-color: transparent !important;
		background-image: none !important;
	}

	body.home-page .how-it-work > .container{
		background: transparent !important;
		background-color: transparent !important;
		background-image: none !important;
		box-shadow: none !important;
		border-radius: 0 !important;
	}

	body.home-page .how-it-work{
		background: transparent !important;
		background-color: transparent !important;
		background-image: none !important;
	}

	body.home-page .why-choose-us > .container{
		background: #C6B39A !important;
		background-color: #C6B39A !important;
		background-image: none !important;
		border-radius: 0;
		padding-top: 40px;
		padding-bottom: 40px;
		padding-left: 24px;
		padding-right: 24px;
		box-shadow: none;
	}

	body.home-page .why-choose-us.bg-section{
		border-radius: 20px;
		margin-top: 40px;
		margin-left: 16px;
		margin-right: 16px;
		width: auto;
		max-width: none;
		background-color: #C6B39A !important;
		background-image: none !important;
	}

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

	.how-work-content{
		position: inherit;
		top: 0;
		margin-right: 0;
		margin-bottom: 30px;
	}

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

	.how-work-step-item::before{
        transform: translate(30px, 32px);
        height: 60%;
    }

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

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

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

	.our-testimonial-image figure{
		border-radius: 20px;
	}

	.our-testimonial-image img{
		aspect-ratio: 1 / 0.7;
		border-radius: 20px;
	}

	.our-testimonial-content .section-title{
		margin-bottom: 20px;
	}

	.testimonial-author-details{
		margin-top: 20px;
		padding-top: 20px;
	}

	.testimonial-author-details h3{
		font-size: 20px;
	}

	.testimonial-slider{
		margin-top: 40px;
	}

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

	.transformation-image{
		border-radius: 20px;
	}

	.transformation-image .transform-img-2::before,
	.transformation-image .transform-img-1::before{
		bottom: 20px;
		font-size: 24px;
	}

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

	.facts-counter-box{
		gap: 30px;
		margin-top: 10px;
		padding-top: 40px;
	}

	.facts-counter-item{
		display: block;
		width: calc(25% - 22.5px);
	}

	.facts-counter-item::before{
		right: -15px;
	}

	.facts-counter-item .icon-box{
        margin: 0 0 10px 0;
    }

	.facts-counter-item .icon-box img{
		max-width: 40px;
	}

	.facts-counter-content h3{
		font-size: 26px;
	}

	.facts-counter-content p{
		font-size: 14px;
	}

	.our-appointment{
		padding: 50px 0 70px;
	}

	.our-appointment + .main-footer{
		margin-top: 0 !important;
	}

	.appointment-form{
		margin-bottom: 30px;
	}

	body.home-page .our-appointment .appointment-form{
		margin-bottom: 0;
	}

	body.home-page .our-appointment .appointment-form .section-title{
		padding-left: 10px;
	}

	.appointment-form form .form-control{
		padding: 14px 20px;
	}

	.our-appointment-image{
		max-width: 80%;
		margin-right: 0px;
		margin: 0 auto 40px;
		padding: 0 57px;
	}

	.our-blog{
		padding: 50px 0 20px;
	}

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

	.post-featured-image a{
		border-radius: 20px;
	}

	.post-item-content h2{
		font-size: 20px;
	}

	.main-footer{
		padding: 40px 0 0;
		margin-bottom: 0px;
	}

	.footer-header{
		margin-bottom: 40px;
		padding-bottom: 40px;
	}

	.about-footer{
		margin-right: 0px;
		margin-bottom: 30px;
	}

	.footer-logo{
		margin-bottom: 15px;
	}

	.about-footer-content{
		margin-bottom: 20px;
	}

	.footer-links-box{
		gap: 20px;
	}

	.footer-links{
		width: calc(50% - 10px);
	}

	.footer-links h3{
		font-size: 20px;
		margin-bottom: 15px;
	}

	.footer-links ul{
		gap: 10px 20px;
	}

	.footer-contact-box{
		flex-wrap: wrap;
		gap: 30px 20px;
		margin-top: 30px;
    	padding-top: 30px;
	}

	.footer-contact-item{
		width: auto;
	}

	.footer-contact-item::before{
		right: -10px;
	}

	.footer-contact-item ul li i{
		margin-right: 5px;
	}

	.footer-copyright{
		margin-top: 30px;
		padding: 30px 0;
	}

	.page-header{
		padding: 60px 0;
	}

	body:not(.home-page) .page-header.bg-section.dark-section{
		margin-top: 0 !important;
	}

	.page-header-box h1{
		font-size: 45px;
	}

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

	.our-approach-content{
		margin-bottom: 30px;
	}

	.our-approach-body{
		padding: 20px;
		border-radius: 20px;
	}

	.mission-vison-item{
		margin-bottom: 30px;
		padding-bottom: 30px;
	}

	.mission-vison-content h3{
		font-size: 20px;
	}

	.approach-image{
		max-width: 80%;
		margin: 0 auto;
	}

	.approach-img-1 figure,
	.approach-img-1 img{
		border-radius: 20px;
	}

	.approach-support-box{
		padding: 15px;
	}

	.approach-support-box-content h3{
		font-size: 20px;
	}

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

	.our-journey-image{
		margin-bottom: 30px;
	}

	.journey-img figure,
	.journey-img img{
		border-radius: 20px;
	}

	.journey-image-box{
		padding-left: 60px;
	}

	.journey-experience-circle img{
		max-width: 130px;
	}

	.our-journey-content{
		margin-left: 0;
	}

	.our-journey-list{
		margin-bottom: 30px;
		padding-bottom: 30px;
	}

	.our-journey-body{
		margin-bottom: 30px;
	}

	.our-team{
		padding: 50px 0 20px;
	}

	.team-image{
		margin-bottom: 15px;
	}

	.team-image figure{
		border-radius: 20px;
	}

	.team-image img{
		aspect-ratio: 1 / 1.03;
		border-radius: 20px;
	}

	.team-content{
		margin-bottom: 15px;
	}

	.team-content h3{
		font-size: 20px;
	}

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

	.our-faqs-images{
		max-width: 75%;
		margin: 0 auto;
		margin-bottom: 30px;
	}

	.faqs-img-1 figure,
	.faqs-img-2 figure,
	.faqs-img-1 img,
	.faqs-img-2 img{
		border-radius: 20px;
	}

	.faqs-img-2{
		max-width: 300px;
	}

	.faqs-circle{
		top: 25px;
		right: 25px;
	}

	.faqs-circle a img{
		max-width: 140px;
	}

	.faq-accordion .accordion-item{
		margin-bottom: 20px;
		padding-bottom: 20px;
	}

	.faq-accordion .accordion-header .accordion-button{
		font-size: 20px;
		padding-right: 25px;
	}

	.faq-accordion .accordion-item .accordion-body{
		padding-right: 25px;
	}

	.page-services{
		padding: 50px 0 20px;
	}

	.page-service-single{
		padding: 50px 0;
	}

	.page-single-sidebar{
		position: initial;
		margin: 0 0 30px 0;
	}

	.page-single-category-list{
		margin-bottom: 30px;
	}

	.page-single-category-list h3{
		font-size: 20px;
		padding: 15px 20px;
	}

	.page-single-category-list ul{
		padding: 20px;
	}

	.page-single-category-list ul li{
		padding-bottom: 15px;
		margin-bottom: 15px;
	}

	.page-single-category-list ul li a::before{
		width: 20px;
		height: 20px;
	}

	.sidebar-cta-image figure img{
		aspect-ratio: 1 / 0.56;
	}

	.sidebar-cta-item{
		bottom: 20px;
		left: 20px;
		right: 20px;
	}

	.sidebar-cta-content h3{
		font-size: 20px;
		margin-bottom: 10px;
	}

	.page-single-image{
		margin-bottom: 30px;
	}

	.page-single-image figure,
	.page-single-image img{
		border-radius: 20px;
	}

	.service-entry{
		margin-bottom: 40px;
	}

	.service-entry p{
		margin-bottom: 15px;
	}

	.service-entry h2{
		font-size: 38px;
		margin-bottom: 15px;
	}

	.service-enhance-box,
	.service-achieve-box{
		margin-top: 30px;
	}

	.service-enhance-item-list{
		margin-top: 30px;
	}

	.service-enhance-item{
		border-radius: 20px;
		padding: 16px;
	}
	
	.service-enhance-item .icon-box{
		width: 50px;
		height: 50px;
		margin-bottom: 20px;
	}

	.service-enhance-item .icon-box img{
		max-width: 26px;
	}

	.service-enhance-item-content h3{
		font-size: 20px;
	}

	.service-enhance-item-content p{
		font-size: 14px;
	}

	.servie-entry-video-image.intro-video-box{
		margin: 30px 0;
	}

	.servie-entry-image figure,
	.servie-entry-image img{
		border-radius: 20px;
	}

	.service-achieve-list .how-work-step-item{
		margin-bottom: 30px;
	}

	.page-blog{
        padding: 50px 0;
    }
    
    .page-pagination{
        margin-top: 10px;
    }

	.page-single-post{
        padding: 50px 0;
    }
    
    .post-image{
        margin-bottom: 20px;
    }
    
    .post-entry h1,
    .post-entry h2,
    .post-entry h3,
    .post-entry h4,
    .post-entry h5,
    .post-entry h6{
        margin: 0 0 0.442em;
    }
    
    .post-entry h2{
        font-size: 34px;
    }
    
    .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: 35px;
        padding: 20px 20px 20px 70px;
        margin-bottom: 20px;
    }
    
    .post-entry blockquote p{
        font-size: 20px;
    }
    
    .post-tags{
        margin-bottom: 20px;
    }

	.tag-links{
		font-size: 20px;
	}
    
    .post-tags .tag-links a{
        padding: 12px 15px;
    }
    
    .post-social-sharing ul{
        text-align: left;
    }

	.page-case-study{
		padding: 50px 0 20px;
	}

	.page-case-study-single{
		padding: 50px 0;
	}

	.case-study-detail-list{
		margin-bottom: 30px;
		padding: 20px;
	}

	.case-study-detail-item{
		margin-bottom: 15px;
		padding-bottom: 15px;
	}

	.case-study-entry{
		margin-bottom: 40px;
	}

	.case-study-entry p{
		margin-bottom: 15px;
	}

	.case-study-entry h2{
		font-size: 38px;
		margin-bottom: 15px;
	}

	.case-study-entry ul li{
		font-size: 14px;
		margin-bottom: 10px;
		padding-left: 25px;
	}
	
	.case-study-entry ul li::before{
		font-size: 18px;
	}

	.transformative-beauty-box,
	.glow-up-box,
	.real-transformation-box{
		margin-top: 30px;
	}

	.transformative-beauty-list{
		gap: 30px 20px;
		margin-top: 30px;
	}

	.transformative-beauty-list .how-work-step-item{
		width: calc(50% - 10px);
	}

	.glow-up-image figure{
		border-radius: 20px;
	}

	.glow-up-image img{
		aspect-ratio: 1 / 1.27;
		border-radius: 20px;
	}

	.glow-up-content ul{
		margin: 30px 0;
	}

	.glow-up-content .how-work-step-item{
		border-radius: 20px;
		padding: 15px;
	}

	.real-transformation-box ul{
		gap: 20px;
	}

	.real-transformation-box ul li{
		width: calc(50% - 10px);
		border-radius: 10px;
		padding: 10px 10px 10px 32px;
		margin-bottom: 0;
	}

	.real-transformation-box ul li::before{
		top: 10px;
		left: 10px;
	}

	.page-team{
		padding: 50px 0 20px;
	}

	.page-team-single{
		padding: 50px 0;
	}

	.team-member-info-box,
	.team-member-about{
		margin-bottom: 40px;
	}

	.team-member-image,
	.team-member-content{
		width: 100%;
	}

	.team-member-image figure{
		border-radius: 20px;
	}

	.team-member-image img{
		aspect-ratio: 1 / 0.67;
		border-radius: 20px;
	}

	.member-info-list ul li{
		font-size: 20px;
		margin-bottom: 10px;
	}

	.member-social-list{
		margin-top: 30px;
		padding-top: 30px;
	}

	.team-member-list ul li{
		margin-bottom: 10px;
		padding-left: 25px;
	}

	.team-member-list ul li::before{
		font-size: 18px;
	}

	.team-member-skills-info,
	.team-contact-form{
		width: 100%;
	}

	.skills-progress-bar{
		margin-bottom: 20px;
	}

	.skills-progress-bar .skill-data{
		margin-bottom: 10px;
	}

	.team-member-skills-info .team-member-list{
		margin-top: 30px;
		padding-top: 30px;
	}

	.team-contact-form .contact-form{
		border-radius: 20px;
	}

	.page-testimonials{
		padding: 50px 0 20px;
	}
	
	.page-testimonials .testimonial-item{
		border-radius: 20px;
		padding: 20px;
	}

	.page-gallery{
        padding: 50px 0 20px;
    }

	.page-video-gallery{
        padding: 50px 0 20px;
    }

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

	.page-faqs-catagery .page-single-faqs{
        margin-bottom: 40px;
    }

	.page-contact-us{
		padding: 50px 0 25px;
	}

	.contact-us-content .section-title{
		margin-bottom: 30px;
	}

	.contact-info-item{
		padding: 20px;
	}

	.contact-info-item .icon-box{
		margin-bottom: 20px;
	}

	.contact-info-content h3{
		font-size: 20px;
	}

	.conatct-us-form{
		padding: 25px 0 50px;
	}

	.contact-form{
		border-radius: 26px 26px 0 0;
		padding: 30px;
	}

	.contact-form form .form-control{
		border-radius: 24px;
		padding: 14px 20px;
	}

	.google-map-iframe{
		height: auto;
		border-radius: 0 0 26px 26px;
	}

	.google-map-iframe iframe,
	.google-map-iframe .hm-contact-map{
		height: 400px;
	}

	body.page-book-appointment > .page-book-appointment{
		padding: 50px 0;
	}
	
	.our-appointment-content{
		margin-bottom: 30px;
	}
	
	.appointment-item{
		margin-bottom: 30px;
		padding-bottom: 30px;
	}

	.appointment-item-content h3{
		font-size: 20px;
		margin-bottom: 5px;
	}
	
	.page-book-appointment .appointment-form{
		padding: 30px;
		border-radius: 20px;
		margin: 0;
	}

	.error-page{
		padding: 50px 0;
	}

	.error-page-image{
		margin-bottom: 20px;
	}

	.error-page-image img{
		max-width: 60%;
	}

	.error-page-content .section-title,
	.error-page-content-body p{
		margin-bottom: 15px;
	}
}

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

	.readmore-btn{
		width: 44px;
		height: 44px;
	}

	.readmore-btn img{
		max-width: 12px;
	}

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

	.section-title h1{
		font-size: 30px;
	}

	.section-title h2{
		font-size: 28px;
	}

	.section-title p{
        margin-top: 10px;
    }

	.section-title-content{
        margin-top: 10px;
    }

	.hero-body{
		flex-direction: column;
		align-items: flex-end;
		gap: 15px;
	}

	.hero-body .hero-btn,
	.hero-body .video-play-button{
		flex-shrink: 0;
	}

	.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;
	}

	body.home-page .about-us,
	body.home-page .what-we-do,
	body.home-page .how-it-work{
		padding: 20px 12px;
	}

	body.home-page .why-choose-us{
		margin-top: 32px;
		padding: 36px 12px;
	}

	body.home-page .why-choose-us.bg-section{
		border-radius: 16px;
		margin-left: 12px;
		margin-right: 12px;
	}

	body.home-page .about-us > .container,
	body.home-page .what-we-do > .container,
	body.home-page .how-it-work > .container{
		border-radius: 16px;
		padding-top: 28px;
		padding-bottom: 28px;
		padding-left: 20px;
		padding-right: 20px;
	}

	body.home-page .what-we-do > .container{
		background: transparent !important;
		background-color: transparent !important;
		background-image: none !important;
		box-shadow: none !important;
	}

	body.home-page .what-we-do{
		background: transparent !important;
		background-color: transparent !important;
		background-image: none !important;
	}

	body.home-page .about-us > .container{
		background: transparent !important;
		background-color: transparent !important;
		background-image: none !important;
		box-shadow: none !important;
	}

	body.home-page .about-us{
		background: transparent !important;
		background-color: transparent !important;
		background-image: none !important;
	}

	body.home-page .how-it-work > .container{
		background: transparent !important;
		background-color: transparent !important;
		background-image: none !important;
		box-shadow: none !important;
		border-radius: 0 !important;
	}

	body.home-page .how-it-work{
		background: transparent !important;
		background-color: transparent !important;
		background-image: none !important;
	}

	body.home-page .our-services{
		padding-bottom: 8px;
	}

	body.home-page .our-services .services-footer-row{
		margin-top: 10px;
	}

	body.home-page .why-choose-us > .container{
		border-radius: 0;
		padding-top: 36px;
		padding-bottom: 36px;
		padding-left: 20px;
		padding-right: 20px;
	}

	.hero-image{
		max-width: 100%;
	}

	.home-about-visual{
		padding: 20px 0 20px 24px;
	}

	.home-about-pillar__body h4{
		font-size: 18px;
	}

	.home-about-phone__text strong{
		font-size: 18px;
	}

	.home-about-actions{
		flex-direction: column;
		align-items: flex-start;
	}

	.home-about-visual__badge strong{
		font-size: 18px;
	}

	.about-us-images{
		background-position: top 10px left 0;
		background-size: 76px auto;
        max-width: 100%;
    }

	body:is(.home-page, .page-about, .page-service-detail) .about-us .about-us-images::before{
		top: 10px;
		left: 0;
		width: 76px;
		height: 77px;
		z-index: 1;
	}

	body:is(.home-page, .page-about, .page-service-detail) .about-us .about-us-images :is(.about-img-1, .about-img-2){
		position: relative;
		z-index: 2;
	}

	.about-img-1{
		padding-left: 145px;
	}

	.about-img-2{
		max-width: 200px;
		margin-top: -150px;
	}

	.company-experience-circle img{
        max-width: 100px;
    }

	body:is(.home-page, .page-about, .page-service-detail) .about-us .about-us-images .company-experience-circle{
		left: 60%;
		top: calc(100% - 101px);
		z-index: 20;
	}

	.about-experience-list,
	.about-experience-image{
		width: 100%;
	}

	.about-experience-list ul li{
		margin-bottom: 10px;
		padding-left: 25px;
	}

	.about-experience-list ul li::before{
		top: -1px;
		font-size: 18px;
	}

	.about-contact-box-content h3{
		font-size: 18px;
	}

	.service-item{
        padding: 20px;
    }

	.service-content-title h2{
		width: calc(100% - 55px);
		font-size: 20px;
	}

	.section-footer-text p span:not(.spa-contact-phone):not(.spa-contact-phone-line){
		font-size: 14px;
	}

	.what-we-image-1{
		margin-right: 0;
		margin-bottom: 30px;
	}

	.what-we-image-2{
		max-width: 100%;
	}

	.experirnce-box{
		bottom: 100px;
		max-width: 95px;
		padding: 25px 15px;
	}

	.experirnce-box h2{
		font-size: 26px;
	}

	.experirnce-box p{
        font-size: 12px;
    }

	.intro-video-box{
        height: 350px;
    }

	.why-choose-images{
		gap: 20px;
        padding: 0 30px 15px 0;
    }

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

	.why-choose-image.img-2{
		margin-top: 45px;
	}

	.why-choose-images::before{
		border-radius: 20px;
		width: 250px;
		height: 220px;
	}

	.years-experience-text{
		right: 6px;
		bottom: 20px;
	}

	.years-experience-text p{
		font-size: 14px;
	}

	.why-choose-contact-box h3,
	.why-choose-contact-quote{
        font-size: 18px;
    }

	.why-choose-contact-box{
        margin-top: 20px;
        padding-top: 20px;
    }

	.why-choose-contact-quote{
		margin-top: 20px;
	}

	body.home-page .why-choose-contact-quote{
		font-size: 17px;
	}

	.why-choose-contact-item{
        margin-top: 0;
        padding-top: 0;
    }

.page-addons .service-item{
    background-color: #C6B39A !important;
}

	.why-choose-contact-item .icon-box{
		margin-right: 10px;
	}

	.why-choose-contact-item-content p a{
        font-size: 18px;
    }

	.how-work-step-item::before{
		transform: translate(25px, 30px);
		height: 70%;
	}

	.how-work-step-item .icon-box{
		width: 50px;
		height: 50px;
		margin-right: 10px;
	}

	.how-work-step-item .icon-box img{
		max-width: 28px;
	}

	.how-work-step-content{
		width: calc(100% - 60px);
	}

	.how-work-step-content h3{
        font-size: 18px;
    }

	.how-work-step-content p{
		font-size: 14px;
	}

	.our-testimonial-image img{
        aspect-ratio: 1 / 0.852;
    }

	.transformation-image .transform-img-2::before,
	.transformation-image .transform-img-1::before{
        font-size: 20px;
    }

	.facts-counter-item{
        width: calc(50% - 15px);
    }

	.facts-counter-item .icon-box img{
		max-width: 30px;
	}

	.facts-counter-content h3{
        font-size: 22px;
    }

	.our-appointment-image{
        max-width: 100%;
        padding: 0 30px;
		margin-bottom: 30px;
    }

	.our-appointment + .main-footer{
		margin-top: 0 !important;
	}

	body.home-page .our-appointment .appointment-form .section-title{
		padding-left: 8px;
	}

	.footer-header{
        margin-bottom: 30px;
        padding-bottom: 30px;
    }

	.footer-newsletter-form,
	.section-title.footer-newsletter-title{
		width: 100%;
	}

	.footer-links{
		width: calc(62% - 10px);
	}

	.footer-links.quick-links{
		width: calc(38% - 10px);
	}

	.footer-links ul li{
		width: 100%;
	}

	.footer-contact-box{
		flex-wrap: wrap;
        gap: 25px;
		margin-top: 20px;
    	padding-top: 20px;
    }

	.footer-contact-item{
        width: 100%;
    }

	.footer-contact-item::before{
		display: none;
	}

	.footer-links.footer-contact-item h3{
		margin-bottom: 10px;
	}

	.footer-copyright{
        flex-direction: column;
        gap: 15px;
        padding: 20px 0;
        align-items: center;
    }

	.footer-copyright-text{
		text-align: center;
		width: 100%;
	}

	.footer-credit-logo{
		position: static;
		margin: 10px auto 0;
		justify-content: center;
	}

	.footer-credit-logo img{
		max-width: 180px;
	}

	.footer-privacy-policy{
		width: 100%;
		text-align: center;
	}

	.footer-privacy-policy ul{
		display: grid;
		grid-template-columns: auto auto;
		justify-content: center;
		row-gap: 0.35em;
		column-gap: 0;
	}

	.footer-privacy-policy ul li{
		margin-right: 5px;
		padding-right: 12px;
	}

	.footer-privacy-policy ul li:nth-child(1){
		grid-column: 1;
		grid-row: 1;
		margin-right: 5px;
		padding-right: 12px;
	}

	.footer-privacy-policy ul li:nth-child(2){
		grid-column: 2;
		grid-row: 1;
		margin-right: 5px;
		padding-right: 12px;
	}

	.footer-privacy-policy ul li:nth-child(2)::before,
	.footer-privacy-policy ul li:nth-child(4)::before{
		display: none;
	}

	.footer-privacy-policy ul li:nth-child(3){
		grid-column: 1;
		grid-row: 2;
		margin-right: 5px;
		padding-right: 12px;
	}

	.footer-privacy-policy ul li:nth-child(4){
		grid-column: 2;
		grid-row: 2;
	}

	.footer-privacy-policy ul li:nth-child(4):last-child{
		margin-right: 5px;
		padding-right: 12px;
	}

	.footer-links:not(.quick-links):not(.footer-contact-item) ul:has(.footer-hours-line){
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		gap: 0;
	}

	.footer-links:not(.quick-links):not(.footer-contact-item) ul li.footer-hours-line,
	.footer-links:not(.quick-links):not(.footer-contact-item) ul li.footer-hours-sunday{
		width: 100%;
		display: block;
	}

	.footer-links:not(.quick-links):not(.footer-contact-item) ul li.footer-hours-line .footer-hours-days,
	.footer-links:not(.quick-links):not(.footer-contact-item) ul li.footer-hours-line .footer-hours-time{
		display: block;
	}

	.page-header-box h1{
		font-size: 30px;
	}

	.page-header-box ol li.breadcrumb-item{
		font-size: 14px;
	}

	.mission-vison-item{
        margin-bottom: 20px;
        padding-bottom: 20px;
    }

	.mission-vison-item .icon-box{
		width: 50px;
		height: 50px;
		margin-right: 10px;
	}

	.mission-vison-item .icon-box img{
		max-width: 28px;
	}

	.mission-vison-content{
		width: calc(100% - 60px);
	}

	.mission-vison-content h3{
		font-size: 18px;
	}

	.mission-vison-content p{
		font-size: 14px;
	}

    .approach-image{
        max-width: 100%;
		padding: 50px 0 35px 50px;
    }

	.approach-img-2{
		max-width: 170px;
		border-width: 5px;
	}

	.approach-support-box{
        padding: 10px;
    }

	.approach-support-box .icon-box{
		margin-right: 10px;
	}

	.approach-support-box .icon-box img{
		max-width: 26px;
	}

	.approach-support-box-content{
		width: calc(100% - 60px);
	}

	.approach-support-box-content h3{
		font-size: 18px;
	}

	.approach-support-box-content p{
		font-size: 14px;
	}

	.our-journey-image{
		max-width: 100%;
		gap: 20px;
	}

	.journey-img{
		width: calc(50% - 10px);
	}

	.journey-image-box{
        padding-left: 50px;
    }

	.journey-experience-circle img{
        max-width: 100px;
    }

	.our-journey-list ul{
		gap: 10px;
	}

	.our-journey-list ul li{
		width: 100%;
		padding-left: 25px;
	}

	.our-journey-list ul li::before{
		font-size: 18px;
	}

	.journey-item{
		width: 100%;
	}

	.journey-item .icon-box{
		width: 50px;
		height: 50px;
		margin-right: 10px;
	}

	.journey-item .icon-box img{
		max-width: 26px;
	}

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

	.journey-item-content h3{
		font-size: 18px;
	}

	.our-faqs-images{
		max-width: 100%;
		padding: 0 140px 50px 0;
	}

	.faqs-img-2{
        max-width: 190px;
    }

	.faqs-circle{
		top: 15px;
		right: 15px;
	}

	.faqs-circle a img{
        max-width: 110px;
    }

	.faq-accordion .accordion-item{
        margin-bottom: 15px;
        padding-bottom: 15px;
    }

	.faq-accordion .accordion-header .accordion-button{
        font-size: 18px;
    }

	.faq-accordion .accordion-item .accordion-body{
        padding-right: 0;
    }

	.page-single-category-list h3{
        font-size: 18px;
    }

	.sidebar-cta-image figure img{
        aspect-ratio: 1 / 0.92;
    }

	.sidebar-cta-item .icon-box{
		margin-right: 15px;
	}

	.sidebar-cta-item .icon-box img{
		max-width: 34px;
	}

	.page-single-image{
        margin-bottom: 20px;
    }

	.page-single-image img{
		aspect-ratio: 1 / 0.7;
	}

	.service-entry h2{
        font-size: 28px;
    }

	.service-enhance-item-list{
		gap: 20px;
	}

	.service-enhance-item{
     	width: 100%;
		display: flex;
    }

	.service-enhance-item .icon-box{
		margin: 0 15px 0 0;
	}

	.service-enhance-item-content{
		width: calc(100% - 65px);
	}

	.servie-entry-image img{
		aspect-ratio: 1 / 0.8;
	}

	.service-achieve-list .how-work-step-item{
        margin-bottom: 20px;
    }

	.post-single-meta ol li{
        font-size: 16px;
    }
    
    .post-single-meta ol li i{
        font-size: 16px;
    }
    
    .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: 18px;
    }
    
    .post-entry h2{
        font-size: 24px;
    }

	.case-study-detail-item .icon-box{
		width: 45px;
		height: 45px;
		margin-right: 15px;
	}

	.case-study-detail-item .icon-box img{
		max-width: 24px;
	}

	.case-study-detail-content{
		width: calc(100% - 60px);
	}

	.case-study-detail-item h3{
		font-size: 18px;
	}
	
	.case-study-entry h2{
        font-size: 28px;
    }

	.transformative-beauty-list{
		gap: 20px;
	}

	.transformative-beauty-list .how-work-step-item{
		width: 100%;
	}

	.glow-up-image,
	.glow-up-content{
		width: 100%;
	}

	.glow-up-image img{
        aspect-ratio: 1 / 0.8;
    }

	.glow-up-content ul{
        margin: 20px 0;
    }

	.real-transformation-box ul{
        gap: 10px;
    }

	.real-transformation-box ul li{
		width: 100%;
	}

	.team-member-image img{
        aspect-ratio: 1 / 0.88;
    }

	.member-info-list ul li{
        font-size: 18px;
    }

	.member-info-list ul li span{
		width: 65%;
	}

	.member-social-list,
	.team-member-skills-info .team-member-list{
        margin-top: 20px;
        padding-top: 20px;
    }

	.skills-progress-bar .skillbar .skill-progress{
		height: 14px;
	}

	.team-member-skills-info .team-member-list ul{
		gap: 10px;
	}

	.team-member-skills-info .team-member-list ul li{
		width: 100%;
	}

	.contact-info-list{
		gap: 20px;
	}

	.contact-info-item{
		width: 100%;
	}

	.contact-info-item .icon-box{
        margin-bottom: 15px;
    }

	.contact-info-content h3{
        font-size: 18px;
    }

	.contact-form{
        padding: 20px;
    }

	.google-map-iframe iframe,
	.google-map-iframe .hm-contact-map{
        height: 300px;
    }

	body.page-contact .google-map-iframe .hm-contact-map{
		height: 260px;
	}

	body.page-contact .google-map-iframe .leaflet-popup-content{
		max-width: 170px;
	}

	body.page-contact .google-map-iframe .hm-map-popup{
		font-size: 11px;
	}

	body.page-contact .google-map-iframe .hm-map-popup strong{
		font-size: 13px;
	}

	.appointment-item{
        margin-bottom: 20px;
        padding-bottom: 20px;
    }
	
	.appointment-item-content h3{
        font-size: 18px;
    }

	.page-book-appointment .appointment-form{
        padding: 30px 20px;
    }

	.error-page-image img{
        max-width: 80%;
    }
}

/************************************/
/***   Footer email — lowercase     ***/
/************************************/

.main-footer li.footer-email-item,
.main-footer .footer-contact-item li.footer-email-item{
	text-transform: none !important;
}

.main-footer li.footer-email-item a.footer-email,
.main-footer li.footer-email-item a[href^="mailto:"],
.main-footer .footer-contact-item a[href^="mailto:"],
.main-footer .footer-email-text,
.main-footer a.footer-email .footer-email-text{
	text-transform: lowercase !important;
}

/************************************/
/***      Cookie Consent css      ***/
/************************************/

.hm-cookie-banner{
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 99999;
	padding: 16px;
	pointer-events: none;
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 0.35s ease, transform 0.35s ease;
}

.hm-cookie-banner.is-visible{
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
}

.hm-cookie-banner__panel{
	max-width: 1120px;
	margin: 0 auto;
	background: var(--white-color);
	border-radius: 20px;
	box-shadow: 0 12px 40px rgba(54, 19, 25, 0.18);
	padding: 24px 28px;
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	justify-content: space-between;
	gap: 20px 24px;
	border: 1px solid rgba(54, 19, 25, 0.08);
}

.hm-cookie-banner__content{
	flex: 1 1 520px;
	min-width: 0;
}

.hm-cookie-banner__title{
	font-family: var(--accent-font);
	font-size: 24px;
	font-weight: 400;
	color: var(--primary-color);
	margin: 0 0 10px;
}

.hm-cookie-banner__text{
	font-size: 15px;
	line-height: 1.65em;
	color: var(--text-color);
	margin: 0 0 12px;
}

.hm-cookie-banner__text a{
	color: var(--accent-color);
	text-decoration: underline;
	text-underline-offset: 3px;
}

.hm-cookie-banner__details{
	font-size: 14px;
	color: var(--text-color);
}

.hm-cookie-banner__details summary{
	cursor: pointer;
	color: var(--primary-color);
	font-weight: 600;
	margin-bottom: 8px;
}

.hm-cookie-banner__prefs{
	margin: 0;
	padding-left: 18px;
}

.hm-cookie-banner__prefs li{
	margin-bottom: 8px;
	line-height: 1.5em;
}

.hm-cookie-banner__prefs label{
	cursor: pointer;
}

.hm-cookie-banner__actions{
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	flex: 0 0 auto;
}

.hm-cookie-banner__btn{
	font-family: var(--default-font);
	font-size: 14px;
	font-weight: 600;
	line-height: 1.2em;
	border-radius: 100px;
	padding: 14px 20px;
	border: none;
	cursor: pointer;
	transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
	white-space: nowrap;
}

.hm-cookie-banner__btn--primary{
	background: var(--accent-color);
	color: var(--white-color);
}

.hm-cookie-banner__btn--primary:hover{
	background: var(--primary-color);
}

.hm-cookie-banner__btn--secondary{
	background: transparent;
	color: var(--primary-color);
	border: 1px solid var(--divider-color);
}

.hm-cookie-banner__btn--secondary:hover{
	border-color: var(--accent-color);
	color: var(--accent-color);
}

.hm-cookie-banner__btn--ghost{
	background: transparent;
	color: var(--text-color);
	border: 1px solid transparent;
	text-decoration: underline;
	text-underline-offset: 3px;
	padding-left: 0;
	padding-right: 0;
}

.hm-cookie-banner__btn--ghost:hover{
	color: var(--accent-color);
}

@media only screen and (max-width: 767px){
	.hm-cookie-banner{
		padding: 12px;
	}

	.hm-cookie-banner__panel{
		padding: 20px 18px;
		border-radius: 16px;
	}

	.hm-cookie-banner__title{
		font-size: 20px;
	}

	.hm-cookie-banner__actions{
		width: 100%;
		flex-direction: column;
	}

	.hm-cookie-banner__btn{
		width: 100%;
		text-align: center;
	}

	.hm-cookie-banner__btn--ghost{
		order: 3;
	}
}

/* Override in case .bg-section responsive rules add side gaps */
body.home-page #home-hero.bg-section{
	position: relative;
	width: 100vw !important;
	max-width: none !important;
	margin-left: calc(50% - 50vw) !important;
	margin-right: calc(50% - 50vw) !important;
	padding: 0 !important;
}

body.home-page #home-hero.bg-section .container,
body.home-page #home-hero.bg-section .container-fluid{
	max-width: none !important;
	width: 100% !important;
	margin: 0 auto;
}

body.home-page > header.main-header,
body.home-page > header.main-header .header-sticky{
	box-shadow: none !important;
	border: none !important;
	border-radius: 0 !important;
}

body.home-page > header.main-header{
	background: transparent !important;
	backdrop-filter: none !important;
	-webkit-backdrop-filter: none !important;
	overflow: visible !important;
}

body.home-page > header.main-header::before{
	content: none;
}

body.home-page > header.main-header .header-sticky{
	background: transparent !important;
	backdrop-filter: none;
	-webkit-backdrop-filter: none;
	overflow: visible;
}

#home-hero,
#home-hero .bg-section,
#home-hero .hero,
#home-hero .container,
#home-hero .container-fluid{
	border-radius: 0 !important;
}

body.home-page > header.main-header{
	padding: 0 !important;
	--header-blur-top-extend: 0px !important;
}

body.home-page > header.main-header .navbar .container-fluid{
	padding-left: 48px !important;
	padding-right: 48px !important;
	width: 100% !important;
	max-width: 100% !important;
	box-sizing: border-box;
}

body.home-page #home-hero > .container{
	padding: 320px 32px 220px 96px !important;
	min-height: 0;
	flex: 1 1 auto;
	overflow: hidden;
}

body.home-page #home-hero.hero.hero-bg-image.bg-section:not(.hero-static),
body.home-page #home-hero.hero.hero-video.bg-section:not(.hero-static){
	--viewport-cover-offset: env(safe-area-inset-top, 0px);
	margin-top: calc(-1 * var(--viewport-cover-offset));
	padding-top: var(--viewport-cover-offset);
	height: calc(var(--hero-vh-px, var(--viewport-vh-px, 100lvh)) + var(--viewport-cover-offset)) !important;
	min-height: calc(var(--hero-vh-px, var(--viewport-vh-px, 100lvh)) + var(--viewport-cover-offset)) !important;
	max-height: calc(var(--hero-vh-px, var(--viewport-vh-px, 100lvh)) + var(--viewport-cover-offset)) !important;
	overflow: hidden !important;
	box-sizing: border-box !important;
}

@media only screen and (max-width: 991px){
	body.home-page #home-hero.hero.hero-bg-image.bg-section{
		--viewport-cover-offset: 0px;
		height: 100vh !important;
		height: 100lvh !important;
		min-height: 100vh !important;
		min-height: 100lvh !important;
		max-height: none !important;
		margin-top: 0 !important;
		padding-top: env(safe-area-inset-top, 0px) !important;
		padding-bottom: 0 !important;
		background-size: cover !important;
		background-position: center center !important;
		overflow: hidden !important;
		box-sizing: border-box !important;
	}

	body:not(.home-page) .page-header.bg-section.dark-section{
		--viewport-cover-offset: 0px;
		height: 100vh !important;
		height: 100lvh !important;
		min-height: 100vh !important;
		min-height: 100lvh !important;
		max-height: none !important;
		margin-top: 0 !important;
		padding-top: calc(env(safe-area-inset-top, 0px) + 96px) !important;
		padding-bottom: clamp(32px, 5vh, 72px) !important;
		overflow: hidden !important;
		box-sizing: border-box !important;
		display: flex !important;
		align-items: center !important;
	}

	body:not(.home-page) .page-header.bg-section.dark-section::before{
		inset: 0 !important;
		width: 100% !important;
		height: 100% !important;
		-webkit-mask-size: cover !important;
		mask-size: cover !important;
	}

	body.home-page #home-hero.hero.hero-video.bg-section{
		--viewport-cover-offset: 0px;
		height: 100vh !important;
		height: 100lvh !important;
		min-height: 100vh !important;
		min-height: 100lvh !important;
		max-height: none !important;
		margin-top: 0 !important;
		padding-top: 0 !important;
		padding-bottom: 0 !important;
		overflow: hidden !important;
	}

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

	body.home-page #home-hero.hero.hero-video .hero-bg-video video{
		width: 100%;
		height: 100%;
		min-width: 100%;
		min-height: 100%;
		object-fit: cover;
		object-position: center center;
	}

	body.home-page > header.main-header{
		padding: 0 !important;
		--header-blur-top-extend: 0px !important;
	}

	body.home-page > header.main-header .navbar .container-fluid{
		padding-left: 14px !important;
		padding-right: 14px !important;
	}

	body.home-page #home-hero > .container{
		padding: 170px 14px 100px 32px !important;
	}
}

@media only screen and (min-width: 768px) and (max-width: 991px){
	body.home-page #home-hero > .container{
		justify-content: flex-start !important;
		align-items: center !important;
		padding: 100px 40px 100px 56px !important;
	}

	body.home-page #home-hero .container > .row{
		justify-content: flex-start;
	}

	body.home-page #home-hero .container > .row > [class*="col-"]{
		flex: 0 0 auto;
		width: min(100%, 620px);
		max-width: 620px;
	}

	body.home-page #home-hero .hero-content,
	body.home-page #home-hero .hero-content .section-title,
	body.home-page #home-hero .hero-content .section-title p{
		text-align: left;
	}

	body.home-page #home-hero .hero-content .text-anime-style-3 .split-line,
	body.home-page #home-hero .hero-content .section-title h1.text-anime-style-3,
	body.home-page #home-hero .hero-content .section-title h1.text-anime-style-3 .split-line,
	body.home-page #home-hero .hero-content .section-title h1.text-anime-style-3 .split-line > div,
	body.home-page #home-hero .hero-content .section-title h1.text-anime-style-3 .split-line > div > div{
		text-align: left;
	}

	body.home-page #home-hero .hero-body{
		justify-content: flex-start;
	}
}

/* Static hero (index2): no overlay, motion, pollen, or text animation */
body.home-page #home-hero.hero-static.hero.hero-bg-image,
body.home-page #home-hero.hero-static.hero.hero-video{
	background-attachment: scroll !important;
	background-size: cover !important;
	background-position: center center !important;
	background-color: transparent !important;
	background-image: none !important;
	animation: none !important;
	--hero-overlay-opacity: 0 !important;
	height: 100vh !important;
	height: 100lvh !important;
	min-height: 100vh !important;
	min-height: 100lvh !important;
	max-height: 100lvh !important;
}

body.home-page #home-hero.hero-static.hero.hero-bg-image::before,
body.home-page #home-hero.hero-static.hero.hero-video::before,
body.home-page #home-hero.hero-static::before{
	display: none !important;
	content: none !important;
	opacity: 0 !important;
}

body.home-page #home-hero.hero-static.bg-section.dark-section{
	background-color: transparent !important;
}

body.home-page #home-hero.hero-static.hero.hero-bg-image.hero-bg-mobile-pan,
body.home-page #home-hero.hero-static.hero.hero-bg-image.hero-is-animating,
body.home-page #home-hero.hero-static.hero.hero-bg-image.hero-is-ready{
	background-size: cover !important;
	background-position: center center !important;
	animation: none !important;
	filter: none !important;
}

body.home-page #home-hero.hero-static .hero-pollen{
	display: none !important;
}

body.home-page #home-hero.hero-static .hero-animate-item,
body.home-page #home-hero.hero-static .hero-content .section-title h1,
body.home-page #home-hero.hero-static .hero-content .section-title h1 *,
body.home-page #home-hero.hero-static .hero-content .text-anime-style-3,
body.home-page #home-hero.hero-static .hero-content .text-anime-style-3 *,
body.home-page #home-hero.hero-static .hero-content .section-title h3,
body.home-page #home-hero.hero-static .hero-content .section-title p{
	visibility: visible !important;
	opacity: 1 !important;
	transform: none !important;
}

body.home-page > header.main-header .navbar-brand img{
	max-height: 52px !important;
	width: auto !important;
	height: auto !important;
}

@media only screen and (max-width: 991px){
	body.home-page > header.main-header .navbar-brand img{
		max-height: 56px !important;
	}
}

/* Hero video readability overlay */
body.home-page #home-hero.hero-static.hero.hero-video::before{
	content: '' !important;
	display: block !important;
	position: absolute;
	inset: 0;
	background: #280B0F;
	opacity: 0.45;
	width: 100%;
	height: 100%;
	z-index: 1;
	pointer-events: none;
}

/* Homepage: fixed header overlays hero; hero offset matches header height */
body.home-page > header.main-header .header-sticky{
	position: relative !important;
	top: auto !important;
	left: auto !important;
	right: auto !important;
	transform: none !important;
	background: transparent !important;
	border: none !important;
	box-shadow: none !important;
	border-radius: 0 !important;
	backdrop-filter: none !important;
	-webkit-backdrop-filter: none !important;
}

@media only screen and (max-width: 991px){
	body.home-page > header.main-header{
		padding: 16px 0 10px !important;
	}

	body.home-page > header.main-header .header-sticky,
	body.home-page > header.main-header .header-sticky.active,
	body.home-page > header.main-header .header-sticky.hide{
		position: fixed !important;
		top: 0 !important;
		left: 0 !important;
		right: 0 !important;
		width: 100% !important;
		transform: translateY(0) !important;
	}
}

/* Header nav/contact text on dark page-bg sections */
body.home-page > header.main-header.header-over-page-bg .header-sticky :is(
	.main-menu .nav-menu-wrapper > ul > li > a.nav-link,
	.main-menu .nav-menu-wrapper > ul > li > a,
	.header-contact-now,
	.header-contact-now .contact-lines,
	.main-menu .nav-menu-wrapper > ul > li.submenu > a:after
){
	color: #7B694E !important;
}

body.home-page > header.main-header.header-over-page-bg .header-sticky .main-menu .nav-menu-wrapper > ul > li > a:hover,
body.home-page > header.main-header.header-over-page-bg .header-sticky .main-menu .nav-menu-wrapper > ul > li > a:focus,
body.home-page > header.main-header.header-over-page-bg .header-sticky .main-menu .nav-menu-wrapper > ul > li > a:active,
body.home-page > header.main-header.header-over-page-bg .header-sticky .main-menu .nav-menu-wrapper > ul > li.active > a,
body.home-page > header.main-header.header-over-page-bg .header-sticky .main-menu .nav-menu-wrapper > ul > li > a[aria-current="page"],
body.home-page > header.main-header.header-over-page-bg .header-sticky .header-contact-now:hover,
body.home-page > header.main-header.header-over-page-bg .header-sticky .header-contact-now:focus,
body.home-page > header.main-header.header-over-page-bg .header-sticky .header-contact-now:active{
	color: #C6B39A !important;
}

body.home-page > header.main-header[data-nav-color="7B694E"] .header-sticky :is(
	.main-menu .nav-menu-wrapper > ul > li > a.nav-link,
	.main-menu .nav-menu-wrapper > ul > li > a,
	.header-contact-now,
	.header-contact-now .contact-lines,
	.main-menu .nav-menu-wrapper > ul > li.submenu > a:after
){
	color: #7B694E !important;
	-webkit-text-fill-color: #7B694E !important;
}

body.home-page > header.main-header[data-nav-color="361319"] .header-sticky :is(
	.main-menu .nav-menu-wrapper > ul > li > a.nav-link,
	.main-menu .nav-menu-wrapper > ul > li > a,
	.header-contact-now,
	.header-contact-now .contact-lines,
	.main-menu .nav-menu-wrapper > ul > li.submenu > a:after
){
	color: #361319 !important;
	-webkit-text-fill-color: #361319 !important;
}

body.home-page > header.main-header .header-contact-btn .btn-default,
body.home-page > header.main-header .header-contact-btn .btn-default:hover,
body.home-page > header.main-header .header-contact-btn .btn-default:focus,
body.home-page > header.main-header .header-contact-btn .btn-default:active{
	color: var(--white-color) !important;
}

body.home-page > header.main-header .header-contact-btn .btn-default:hover::after,
body.home-page > header.main-header .header-contact-btn .btn-default:focus::after{
	background: #361319 !important;
}

/* Services dropdown: visible above hero + readable on #7B694E panel */
body.home-page > header.main-header,
body.home-page > header.main-header .header-sticky,
body.home-page > header.main-header .navbar,
body.home-page > header.main-header .navbar .container-fluid,
body.home-page > header.main-header .navbar-collapse,
body.home-page > header.main-header .main-menu,
body.home-page > header.main-header .nav-menu-wrapper{
	overflow: visible !important;
}

body.home-page > header.main-header .main-menu ul li:hover{
	z-index: 30;
}

body.home-page > header.main-header .main-menu ul ul{
	z-index: 1200;
	background: #7B694E !important;
	box-shadow: 0 12px 32px rgba(40, 11, 15, 0.2);
}

body.home-page > header.main-header .main-menu ul ul .nav-link,
body.home-page > header.main-header .main-menu ul ul li a,
body.home-page > header.main-header.header-over-page-bg .main-menu ul ul .nav-link,
body.home-page > header.main-header.header-over-page-bg .main-menu ul ul li a{
	color: #361319 !important;
	-webkit-text-fill-color: #361319 !important;
}

body.home-page > header.main-header .main-menu ul ul .nav-link:hover,
body.home-page > header.main-header .main-menu ul ul .nav-link:focus,
body.home-page > header.main-header .main-menu ul ul li a:hover,
body.home-page > header.main-header .main-menu ul ul li a:focus{
	color: #361319 !important;
	-webkit-text-fill-color: #361319 !important;
}

/* Homepage mobile: hero + header match desktop styling */
@media only screen and (max-width: 991px){
	body.home-page > header.main-header .navbar{
		padding: 26px 0 10px !important;
	}

	body.home-page > header.main-header .navbar-brand img[src*="hm-logo"]{
		max-height: 64px !important;
	}

	body.home-page .navbar-toggle .slicknav_btn{
		width: 44px;
		height: 44px;
		border-radius: 10px;
		background: #7B694E;
		border: none;
		box-shadow: none;
		transition: background-color 0.2s ease;
	}

	body.home-page .navbar-toggle .slicknav_btn.slicknav_open{
		background: #361319;
		border: none;
		box-shadow: none;
	}

	body.home-page .slicknav_menu{
		background: #7B694E;
		border-radius: 0 0 12px 12px;
		box-shadow: 0 8px 24px rgba(54, 19, 25, 0.2);
	}

	body.home-page #home-hero .hero-body{
		flex-direction: column;
		flex-wrap: nowrap;
		align-items: flex-start;
		justify-content: flex-start;
		gap: 12px;
	}

	body.home-page #home-hero .hero-btn .btn-default.btn-highlighted{
		font-size: 15px;
		line-height: 1.2;
		padding: 14px 22px;
		margin-right: 48px;
		white-space: nowrap;
		letter-spacing: 0;
	}

	body.home-page #home-hero .hero-btn .btn-default.btn-highlighted::before{
		right: -48px;
		width: 48px;
		height: 48px;
		background-size: 14px auto;
	}

	body.home-page #home-hero .video-play-button-label{
		position: relative;
		display: inline-flex;
		align-items: center;
		padding: 14px 22px;
		margin-right: 48px;
		gap: 0;
	}

	body.home-page #home-hero .video-play-button a{
		position: absolute;
		top: 50%;
		right: -48px;
		width: 54px;
		height: 54px;
		margin: 0;
		transform: translateY(-50%);
	}

	body.home-page #home-hero .video-play-button a i{
		font-size: 18px;
	}

	body.home-page #home-hero .hero-body .video-play-button p{
		font-size: 16px;
	}

	body.home-page #home-hero .video-play-button:hover a{
		border-color: #7B694E;
	}

	body.home-page #home-hero .video-play-button:hover a i{
		color: #7B694E;
	}
}

@media only screen and (max-width: 767px){
	body.home-page > header.main-header .navbar .container-fluid{
		padding-left: 12px !important;
		padding-right: 12px !important;
	}

	body.home-page #home-hero > .container{
		align-items: flex-start !important;
		padding-top: 185px !important;
		padding-left: 28px !important;
		padding-right: 16px !important;
	}

	body.home-page #home-hero .hero-body{
		flex-direction: column !important;
		align-items: flex-start !important;
		justify-content: flex-start !important;
	}

	body.home-page #home-hero .hero-btn .btn-default.btn-highlighted{
		font-size: 14px;
		padding: 13px 20px;
		margin-right: 46px;
	}

	body.home-page #home-hero .hero-btn .btn-default.btn-highlighted::before{
		right: -46px;
		width: 46px;
		height: 46px;
		background-size: 13px auto;
	}

	body.home-page #home-hero .video-play-button-label{
		padding: 13px 20px;
		margin-right: 46px;
	}

	body.home-page #home-hero .video-play-button a{
		right: -46px;
		width: 50px;
		height: 50px;
	}

	body.home-page #home-hero .hero-body .video-play-button p{
		font-size: 15px;
	}
}

/************************************/
/***  Inner Pages — Homepage Theme  ***/
/************************************/

body:not(.home-page){
	--header-gold: #280B0F;
	--header-gold-bright: #361219;
	--header-gold-active: var(--secondary-color);
	--header-gold-text: var(--header-link-color);
	--header-gold-text-hover: #7B694E;
	--header-gold-icon-bg: #7B694E;
	--header-gold-icon: var(--white-color);
	--header-page-gap: 0px;
	background: var(--primary-color);
}

body:not(.home-page) :is(
	.about-us,
	.what-we-do,
	.how-it-work,
	.our-results,
	.our-testimonials,
	.our-services,
	.why-choose-us,
	.our-appointment,
	.page-services,
	.page-addons,
	.our-approach,
	.our-faqs,
	.contact-us,
	.page-book-appointment
){
	--accent-color: #7B694E;
	--divider-color: #7B694E1A;
}

body:not(.home-page) :is(
	.about-us,
	.what-we-do,
	.how-it-work,
	.our-results,
	.our-testimonials,
	.our-services,
	.why-choose-us,
	.our-appointment,
	.page-services,
	.page-addons,
	.our-approach,
	.our-faqs,
	.contact-us,
	.page-book-appointment
) .section-title h3{
	color: #7B694E;
}

body:not(.home-page) :is(
	.about-us,
	.what-we-do,
	.how-it-work,
	.our-results,
	.our-approach
) .section-title > :is(h1, h2).text-anime-style-3,
body:not(.home-page) :is(
	.about-us,
	.what-we-do,
	.how-it-work,
	.our-results,
	.our-approach
) .section-title > :is(h1, h2).text-anime-style-3 .split-line,
body:not(.home-page) :is(
	.about-us,
	.what-we-do,
	.how-it-work,
	.our-results,
	.our-approach
) .section-title > :is(h1, h2).text-anime-style-3 .split-line > div,
body:not(.home-page) :is(
	.about-us,
	.what-we-do,
	.how-it-work,
	.our-results,
	.our-approach
) .section-title > :is(h1, h2).text-anime-style-3 .split-line > div > div{
	color: #C6B39A;
}

body:not(.home-page) .section-title h3::before{
	background: none;
	background-color: currentColor;
	mask: url('../images/icon-sub-heading.svg') no-repeat center / cover;
	-webkit-mask: url('../images/icon-sub-heading.svg') no-repeat center / cover;
	filter: none;
}

body:not(.home-page) .about-us .btn-default{
	background: #7B694E;
	color: var(--white-color);
}

body:not(.home-page) .about-us .btn-default::before{
	background-color: #280B0F;
	background-image: url('../images/arrow-white.svg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 14px auto;
}

body:not(.home-page) .about-us .btn-default::after{
	background: #280B0F;
}

body:not(.home-page) .about-us .btn-default:hover,
body:not(.home-page) .about-us .btn-default:focus{
	background: transparent;
	color: var(--white-color);
}

body:not(.home-page) .about-us .btn-default:hover::after,
body:not(.home-page) .about-us .btn-default:focus::after{
	background: #280B0F;
}

body:not(.home-page) .about-us .btn-default:hover::before,
body:not(.home-page) .about-us .btn-default:focus::before{
	background-color: #280B0F;
	background-image: url('../images/arrow-white.svg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 14px auto;
}

body:not(.home-page) :is(.what-we-do, .how-it-work) .btn-default{
	background: #7B694E;
	color: var(--white-color);
}

body:not(.home-page) :is(.what-we-do, .how-it-work) .btn-default::before{
	background-color: #C6B39A;
	background-image: url('../images/arrow-primary.svg');
}

body:not(.home-page) :is(.what-we-do, .how-it-work) .btn-default::after{
	background: #C6B39A;
}

body:not(.home-page) :is(.what-we-do, .how-it-work) .btn-default:hover,
body:not(.home-page) :is(.what-we-do, .how-it-work) .btn-default:focus{
	background: transparent;
	color: #361319;
}

body:not(.home-page) > header.main-header .main-menu .nav-menu-wrapper{
	margin-left: 22px;
}

body:not(.home-page) > header.main-header .header-contact-now i,
body:not(.home-page) > header.main-header .header-contact-now:hover i,
body:not(.home-page) > header.main-header .header-contact-now:focus i,
body:not(.home-page) > header.main-header .header-contact-now:active i{
	background-color: #7B694E !important;
	color: var(--white-color) !important;
	-webkit-text-fill-color: var(--white-color) !important;
	box-shadow: none !important;
	width: 34px !important;
	height: 34px !important;
	font-size: 15px !important;
}

body:not(.home-page) > header.main-header .header-contact-btn .btn-default{
	background: #7B694E;
	color: var(--white-color) !important;
	font-size: 14px;
	padding: 13px 20px;
}

body:not(.home-page) > header.main-header .header-contact-btn .btn-default::after{
	background: #7B694E;
}

body:not(.home-page) > header.main-header .header-contact-btn .btn-default:hover,
body:not(.home-page) > header.main-header .header-contact-btn .btn-default:focus{
	background: transparent;
	color: var(--white-color) !important;
}

body:not(.home-page) > header.main-header .header-contact-btn .btn-default:hover::after,
body:not(.home-page) > header.main-header .header-contact-btn .btn-default:focus::after{
	background: #361319 !important;
}

body:not(.home-page) > header.main-header .main-menu ul ul{
	background: #7B694E !important;
	box-shadow: 0 12px 32px rgba(40, 11, 15, 0.2);
}

body:not(.home-page) > header.main-header .main-menu ul ul li a,
body:not(.home-page) > header.main-header .main-menu ul ul .nav-link{
	color: #361319 !important;
	-webkit-text-fill-color: #361319 !important;
}

body:not(.home-page) > header.main-header[data-nav-color="7B694E"] .header-sticky :is(
	.main-menu .nav-menu-wrapper > ul > li > a.nav-link,
	.main-menu .nav-menu-wrapper > ul > li > a,
	.header-contact-now,
	.header-contact-now .contact-lines,
	.main-menu .nav-menu-wrapper > ul > li.submenu > a:after
),
body:not(.home-page) > header.main-header[data-nav-color="7B694E"] .header-sticky.active :is(
	.main-menu .nav-menu-wrapper > ul > li > a.nav-link,
	.main-menu .nav-menu-wrapper > ul > li > a,
	.header-contact-now,
	.header-contact-now .contact-lines,
	.main-menu .nav-menu-wrapper > ul > li.submenu > a:after
){
	color: #7B694E !important;
	-webkit-text-fill-color: #7B694E !important;
}

body:not(.home-page) > header.main-header[data-nav-color="361319"] .header-sticky :is(
	.main-menu .nav-menu-wrapper > ul > li > a.nav-link,
	.main-menu .nav-menu-wrapper > ul > li > a,
	.header-contact-now,
	.header-contact-now .contact-lines,
	.main-menu .nav-menu-wrapper > ul > li.submenu > a:after
),
body:not(.home-page) > header.main-header[data-nav-color="361319"] .header-sticky.active :is(
	.main-menu .nav-menu-wrapper > ul > li > a.nav-link,
	.main-menu .nav-menu-wrapper > ul > li > a,
	.header-contact-now,
	.header-contact-now .contact-lines,
	.main-menu .nav-menu-wrapper > ul > li.submenu > a:after
){
	color: #361319 !important;
	-webkit-text-fill-color: #361319 !important;
}

body:not(.home-page) > header.main-header.header-over-page-bg:not([data-nav-color="361319"]):not([data-nav-color="7B694E"]) .header-sticky :is(
	.main-menu .nav-menu-wrapper > ul > li > a.nav-link,
	.main-menu .nav-menu-wrapper > ul > li > a,
	.header-contact-now,
	.header-contact-now .contact-lines,
	.main-menu .nav-menu-wrapper > ul > li.submenu > a:after
){
	color: #7B694E !important;
	-webkit-text-fill-color: #7B694E !important;
}

body:not(.home-page) > header.main-header.header-over-page-bg:not([data-nav-color="361319"]):not([data-nav-color="7B694E"]) .header-sticky .main-menu .nav-menu-wrapper > ul > li > a:hover,
body:not(.home-page) > header.main-header.header-over-page-bg:not([data-nav-color="361319"]):not([data-nav-color="7B694E"]) .header-sticky .main-menu .nav-menu-wrapper > ul > li > a:focus,
body:not(.home-page) > header.main-header.header-over-page-bg:not([data-nav-color="361319"]):not([data-nav-color="7B694E"]) .header-sticky .main-menu .nav-menu-wrapper > ul > li.active > a,
body:not(.home-page) > header.main-header.header-over-page-bg:not([data-nav-color="361319"]):not([data-nav-color="7B694E"]) .header-sticky .main-menu .nav-menu-wrapper > ul > li > a[aria-current="page"],
body:not(.home-page) > header.main-header.header-over-page-bg:not([data-nav-color="361319"]):not([data-nav-color="7B694E"]) .header-sticky .header-contact-now:hover,
body:not(.home-page) > header.main-header.header-over-page-bg:not([data-nav-color="361319"]):not([data-nav-color="7B694E"]) .header-sticky .header-contact-now:focus{
	color: #7B694E !important;
	-webkit-text-fill-color: #7B694E !important;
}

body:not(.home-page) > header.main-header[data-nav-color="7B694E"] .header-sticky .main-menu .nav-menu-wrapper > ul > li > a:hover,
body:not(.home-page) > header.main-header[data-nav-color="7B694E"] .header-sticky .main-menu .nav-menu-wrapper > ul > li > a:focus,
body:not(.home-page) > header.main-header[data-nav-color="7B694E"] .header-sticky .main-menu .nav-menu-wrapper > ul > li.active > a,
body:not(.home-page) > header.main-header[data-nav-color="7B694E"] .header-sticky .main-menu .nav-menu-wrapper > ul > li > a[aria-current="page"],
body:not(.home-page) > header.main-header[data-nav-color="7B694E"] .header-sticky .header-contact-now:hover,
body:not(.home-page) > header.main-header[data-nav-color="7B694E"] .header-sticky .header-contact-now:focus,
body:not(.home-page) > header.main-header[data-nav-color="7B694E"] .header-sticky.active .main-menu .nav-menu-wrapper > ul > li > a:hover,
body:not(.home-page) > header.main-header[data-nav-color="7B694E"] .header-sticky.active .main-menu .nav-menu-wrapper > ul > li > a:focus,
body:not(.home-page) > header.main-header[data-nav-color="7B694E"] .header-sticky.active .main-menu .nav-menu-wrapper > ul > li.active > a,
body:not(.home-page) > header.main-header[data-nav-color="7B694E"] .header-sticky.active .main-menu .nav-menu-wrapper > ul > li > a[aria-current="page"],
body:not(.home-page) > header.main-header[data-nav-color="7B694E"] .header-sticky.active .header-contact-now:hover,
body:not(.home-page) > header.main-header[data-nav-color="7B694E"] .header-sticky.active .header-contact-now:focus{
	color: #7B694E !important;
	-webkit-text-fill-color: #7B694E !important;
}

body:not(.home-page) > header.main-header[data-nav-color="361319"] .header-sticky .main-menu .nav-menu-wrapper > ul > li > a:hover,
body:not(.home-page) > header.main-header[data-nav-color="361319"] .header-sticky .main-menu .nav-menu-wrapper > ul > li > a:focus,
body:not(.home-page) > header.main-header[data-nav-color="361319"] .header-sticky .main-menu .nav-menu-wrapper > ul > li.active > a,
body:not(.home-page) > header.main-header[data-nav-color="361319"] .header-sticky .main-menu .nav-menu-wrapper > ul > li > a[aria-current="page"],
body:not(.home-page) > header.main-header[data-nav-color="361319"] .header-sticky .header-contact-now:hover,
body:not(.home-page) > header.main-header[data-nav-color="361319"] .header-sticky .header-contact-now:focus,
body:not(.home-page) > header.main-header[data-nav-color="361319"] .header-sticky.active .main-menu .nav-menu-wrapper > ul > li > a:hover,
body:not(.home-page) > header.main-header[data-nav-color="361319"] .header-sticky.active .main-menu .nav-menu-wrapper > ul > li > a:focus,
body:not(.home-page) > header.main-header[data-nav-color="361319"] .header-sticky.active .main-menu .nav-menu-wrapper > ul > li.active > a,
body:not(.home-page) > header.main-header[data-nav-color="361319"] .header-sticky.active .main-menu .nav-menu-wrapper > ul > li > a[aria-current="page"],
body:not(.home-page) > header.main-header[data-nav-color="361319"] .header-sticky.active .header-contact-now:hover,
body:not(.home-page) > header.main-header[data-nav-color="361319"] .header-sticky.active .header-contact-now:focus{
	color: #7B694E !important;
	-webkit-text-fill-color: #7B694E !important;
}

body:not(.home-page) > header.main-header .header-sticky,
body:not(.home-page) > header.main-header .header-sticky.active{
	background: transparent !important;
	border: none !important;
	box-shadow: none !important;
	border-radius: 0 !important;
}

body:not(.home-page) > header.main-header .header-sticky.hide{
	transform: translateY(-100%) !important;
}

body:not(.home-page) > header.main-header,
body:not(.home-page) > header.main-header .header-sticky,
body:not(.home-page) > header.main-header .navbar,
body:not(.home-page) > header.main-header .navbar .container-fluid,
body:not(.home-page) > header.main-header .navbar-collapse,
body:not(.home-page) > header.main-header .main-menu,
body:not(.home-page) > header.main-header .nav-menu-wrapper{
	overflow: visible !important;
}

body:not(.home-page) > header.main-header .main-menu ul li:hover{
	z-index: 30;
}

body:not(.home-page) > header.main-header .main-menu ul ul{
	z-index: 1200;
}

@media only screen and (max-width: 991px){
	body:not(.home-page) .slicknav_btn,
	body:not(.home-page) .slicknav_menu{
		background: #7B694E;
	}
}

/************************************/
/***       About Page — Index UI    ***/
/************************************/

body:is(.page-about, .page-contact, .page-book-appointment, .page-legal, .page-services-hub, .page-service-detail) > header.main-header{
	z-index: 1000;
}

body:is(.page-about, .page-contact, .page-book-appointment, .page-legal, .page-services-hub, .page-service-detail) > header.main-header > *:not(.header-sticky){
	position: relative;
	z-index: 1;
}

body:is(.page-about, .page-contact, .page-book-appointment, .page-legal, .page-services-hub, .page-service-detail) > header.main-header .header-sticky,
body:is(.page-about, .page-contact, .page-book-appointment, .page-legal, .page-services-hub, .page-service-detail) > header.main-header .header-sticky.active{
	background: transparent !important;
	border: none !important;
	box-shadow: none !important;
	border-radius: 0 !important;
}

body:is(.page-about, .page-contact, .page-book-appointment, .page-legal, .page-services-hub, .page-service-detail) > header.main-header .header-sticky.hide{
	transform: translateY(-100%) !important;
}

body:is(.page-about, .page-contact, .page-book-appointment, .page-services-hub, .page-service-detail) > header.main-header[data-nav-color="7B694E"] .header-sticky :is(
	.main-menu .nav-menu-wrapper > ul > li > a.nav-link,
	.main-menu .nav-menu-wrapper > ul > li > a,
	.header-contact-now,
	.header-contact-now .contact-lines,
	.main-menu .nav-menu-wrapper > ul > li.submenu > a:after
){
	color: #7B694E !important;
	-webkit-text-fill-color: #7B694E !important;
}

body:is(.page-about, .page-contact, .page-book-appointment, .page-services-hub, .page-service-detail) > header.main-header[data-nav-color="7B694E"] .header-sticky .main-menu .nav-menu-wrapper > ul > li > a:hover,
body:is(.page-about, .page-contact, .page-book-appointment, .page-services-hub, .page-service-detail) > header.main-header[data-nav-color="7B694E"] .header-sticky .main-menu .nav-menu-wrapper > ul > li > a:focus,
body:is(.page-about, .page-contact, .page-book-appointment, .page-services-hub, .page-service-detail) > header.main-header[data-nav-color="7B694E"] .header-sticky .header-contact-now:hover,
body:is(.page-about, .page-contact, .page-book-appointment, .page-services-hub, .page-service-detail) > header.main-header[data-nav-color="7B694E"] .header-sticky .header-contact-now:focus{
	color: #7B694E !important;
	-webkit-text-fill-color: #7B694E !important;
}

body:is(.page-about, .page-contact, .page-book-appointment, .page-legal, .page-services-hub, .page-service-detail) > header.main-header[data-nav-color="361319"] .header-sticky :is(
	.main-menu .nav-menu-wrapper > ul > li > a.nav-link,
	.main-menu .nav-menu-wrapper > ul > li > a,
	.header-contact-now,
	.header-contact-now .contact-lines,
	.main-menu .nav-menu-wrapper > ul > li.submenu > a:after
){
	color: #361319 !important;
	-webkit-text-fill-color: #361319 !important;
}

body:is(.page-about, .page-contact, .page-book-appointment, .page-services-hub, .page-service-detail) > header.main-header[data-nav-color="361319"] .header-sticky .main-menu .nav-menu-wrapper > ul > li > a:hover,
body:is(.page-about, .page-contact, .page-book-appointment, .page-services-hub, .page-service-detail) > header.main-header[data-nav-color="361319"] .header-sticky .main-menu .nav-menu-wrapper > ul > li > a:focus,
body:is(.page-about, .page-contact, .page-book-appointment, .page-services-hub, .page-service-detail) > header.main-header[data-nav-color="361319"] .header-sticky .main-menu .nav-menu-wrapper > ul > li.active > a,
body:is(.page-about, .page-contact, .page-book-appointment, .page-services-hub, .page-service-detail) > header.main-header[data-nav-color="361319"] .header-sticky .main-menu .nav-menu-wrapper > ul > li > a[aria-current="page"],
body:is(.page-about, .page-contact, .page-book-appointment, .page-services-hub, .page-service-detail) > header.main-header[data-nav-color="361319"] .header-sticky .header-contact-now:hover,
body:is(.page-about, .page-contact, .page-book-appointment, .page-services-hub, .page-service-detail) > header.main-header[data-nav-color="361319"] .header-sticky .header-contact-now:focus{
	color: #7B694E !important;
	-webkit-text-fill-color: #7B694E !important;
}

body:is(.page-about, .page-contact, .page-book-appointment, .page-services-hub, .page-service-detail) > header.main-header.header-over-page-bg:not([data-nav-color="361319"]):not([data-nav-color="7B694E"]) .header-sticky :is(
	.main-menu .nav-menu-wrapper > ul > li > a.nav-link,
	.main-menu .nav-menu-wrapper > ul > li > a,
	.header-contact-now,
	.header-contact-now .contact-lines,
	.main-menu .nav-menu-wrapper > ul > li.submenu > a:after
){
	color: #7B694E !important;
	-webkit-text-fill-color: #7B694E !important;
}

body:is(.page-about, .page-contact, .page-book-appointment, .page-services-hub, .page-service-detail) > header.main-header.header-over-page-bg:not([data-nav-color="361319"]):not([data-nav-color="7B694E"]) .header-sticky .main-menu .nav-menu-wrapper > ul > li > a:hover,
body:is(.page-about, .page-contact, .page-book-appointment, .page-services-hub, .page-service-detail) > header.main-header.header-over-page-bg:not([data-nav-color="361319"]):not([data-nav-color="7B694E"]) .header-sticky .main-menu .nav-menu-wrapper > ul > li > a:focus,
body:is(.page-about, .page-contact, .page-book-appointment, .page-services-hub, .page-service-detail) > header.main-header.header-over-page-bg:not([data-nav-color="361319"]):not([data-nav-color="7B694E"]) .header-sticky .main-menu .nav-menu-wrapper > ul > li.active > a,
body:is(.page-about, .page-contact, .page-book-appointment, .page-services-hub, .page-service-detail) > header.main-header.header-over-page-bg:not([data-nav-color="361319"]):not([data-nav-color="7B694E"]) .header-sticky .main-menu .nav-menu-wrapper > ul > li > a[aria-current="page"],
body:is(.page-about, .page-contact, .page-book-appointment, .page-services-hub, .page-service-detail) > header.main-header.header-over-page-bg:not([data-nav-color="361319"]):not([data-nav-color="7B694E"]) .header-sticky .header-contact-now:hover,
body:is(.page-about, .page-contact, .page-book-appointment, .page-services-hub, .page-service-detail) > header.main-header.header-over-page-bg:not([data-nav-color="361319"]):not([data-nav-color="7B694E"]) .header-sticky .header-contact-now:focus{
	color: #7B694E !important;
	-webkit-text-fill-color: #7B694E !important;
}

body:is(.page-about, .page-contact, .page-book-appointment, .page-legal, .page-services-hub, .page-service-detail) > header.main-header .header-sticky .header-contact-btn .btn-default{
	color: var(--white-color) !important;
	background: #7B694E !important;
	font-weight: 600 !important;
	font-size: 14px !important;
	line-height: 1.2 !important;
	padding: 13px 20px !important;
}

body:is(.page-about, .page-contact, .page-book-appointment, .page-legal, .page-services-hub, .page-service-detail) > header.main-header .header-sticky .header-contact-btn .btn-default::after{
	background: #7B694E !important;
}

body:is(.page-about, .page-contact, .page-book-appointment, .page-legal, .page-services-hub, .page-service-detail) > header.main-header .header-sticky .header-contact-btn .btn-default:hover,
body:is(.page-about, .page-contact, .page-book-appointment, .page-legal, .page-services-hub, .page-service-detail) > header.main-header .header-sticky .header-contact-btn .btn-default:focus{
	background: transparent !important;
	color: var(--white-color) !important;
}

body:is(.page-about, .page-contact, .page-book-appointment, .page-legal, .page-services-hub, .page-service-detail) > header.main-header .header-sticky .header-contact-btn .btn-default:hover::after,
body:is(.page-about, .page-contact, .page-book-appointment, .page-legal, .page-services-hub, .page-service-detail) > header.main-header .header-sticky .header-contact-btn .btn-default:focus::after{
	background: #361319 !important;
}

body:is(.page-about, .page-contact, .page-book-appointment, .page-legal, .page-services-hub, .page-service-detail) > header.main-header .header-sticky .header-contact-now i,
body:is(.page-about, .page-contact, .page-book-appointment, .page-legal, .page-services-hub, .page-service-detail) > header.main-header .header-sticky .header-contact-now:hover i,
body:is(.page-about, .page-contact, .page-book-appointment, .page-legal, .page-services-hub, .page-service-detail) > header.main-header .header-sticky .header-contact-now:focus i,
body:is(.page-about, .page-contact, .page-book-appointment, .page-legal, .page-services-hub, .page-service-detail) > header.main-header .header-sticky .header-contact-now:active i{
	background-color: #7B694E !important;
	color: var(--white-color) !important;
	-webkit-text-fill-color: var(--white-color) !important;
	box-shadow: none !important;
	width: 34px !important;
	height: 34px !important;
	font-size: 15px !important;
}

body:is(.page-about, .page-contact, .page-book-appointment, .page-legal, .page-services-hub, .page-service-detail) > header.main-header .main-menu ul ul{
	z-index: 1200;
	background: #7B694E !important;
	box-shadow: 0 12px 32px rgba(40, 11, 15, 0.2);
}

body:is(.page-about, .page-contact, .page-book-appointment, .page-legal, .page-services-hub, .page-service-detail) > header.main-header .main-menu ul ul li a,
body:is(.page-about, .page-contact, .page-book-appointment, .page-legal, .page-services-hub, .page-service-detail) > header.main-header .main-menu ul ul .nav-link{
	color: #361319 !important;
	-webkit-text-fill-color: #361319 !important;
}

body.page-about .page-header.bg-section.dark-section{
	padding: 130px 0;
}

body.page-about h3{
	text-transform: uppercase;
}

body.page-about h1.text-anime-style-3,
body.page-about h2.text-anime-style-3,
body.page-about h1.text-anime-style-3 .split-line,
body.page-about h2.text-anime-style-3 .split-line,
body.page-about h1.text-anime-style-3 .split-line > div,
body.page-about h2.text-anime-style-3 .split-line > div,
body.page-about h1.text-anime-style-3 .split-line > div > div,
body.page-about h2.text-anime-style-3 .split-line > div > div,
body.page-about .text-anime-style-3,
body.page-about .text-anime-style-3 .split-line,
body.page-about .text-anime-style-3 .split-line > div,
body.page-about .text-anime-style-3 .split-line > div > div{
	text-transform: none !important;
}

body.page-about :is(
	.about-us,
	.what-we-do,
	.our-approach,
	.our-journey,
	.our-team,
	.our-faqs
){
	--accent-color: #7B694E;
	--divider-color: #7B694E1A;
}

body.page-about :is(
	.about-us,
	.what-we-do,
	.our-approach,
	.our-journey,
	.our-team,
	.our-faqs
) .section-title h3{
	color: #7B694E;
}

/* Dark backgrounds — gold label, light heading */
body.page-about :is(.about-us, .what-we-do, .our-team) .section-title > :is(h1, h2),
body.page-about :is(.about-us, .what-we-do, .our-team) .section-title > :is(h1, h2).text-anime-style-3,
body.page-about :is(.about-us, .what-we-do, .our-team) .section-title > :is(h1, h2).text-anime-style-3 .split-line,
body.page-about :is(.about-us, .what-we-do, .our-team) .section-title > :is(h1, h2).text-anime-style-3 .split-line > div,
body.page-about :is(.about-us, .what-we-do, .our-team) .section-title > :is(h1, h2).text-anime-style-3 .split-line > div > div{
	color: #C6B39A;
}

body.page-about .dark-section .section-title h3{
	color: #7B694E;
}

body.page-about .dark-section .section-title > :is(h1, h2),
body.page-about .dark-section .section-title > :is(h1, h2).text-anime-style-3,
body.page-about .dark-section .section-title > :is(h1, h2).text-anime-style-3 .split-line,
body.page-about .dark-section .section-title > :is(h1, h2).text-anime-style-3 .split-line > div,
body.page-about .dark-section .section-title > :is(h1, h2).text-anime-style-3 .split-line > div > div{
	color: var(--white-color);
}

body.page-about :is(.our-journey, .our-testimonials, .our-faqs) .section-title > :is(h1, h2),
body.page-about :is(.our-journey, .our-testimonials, .our-faqs) .section-title > :is(h1, h2).text-anime-style-3,
body.page-about :is(.our-journey, .our-testimonials, .our-faqs) .section-title > :is(h1, h2).text-anime-style-3 .split-line,
body.page-about :is(.our-journey, .our-testimonials, .our-faqs) .section-title > :is(h1, h2).text-anime-style-3 .split-line > div,
body.page-about :is(.our-journey, .our-testimonials, .our-faqs) .section-title > :is(h1, h2).text-anime-style-3 .split-line > div > div{
	color: #C6B39A;
}

/* Light (cream) backgrounds — reversed: gold label, dark heading */
body.page-about .bg-section:not(.dark-section) .section-title > :is(h1, h2),
body.page-about .bg-section:not(.dark-section) .section-title > :is(h1, h2).text-anime-style-3,
body.page-about .bg-section:not(.dark-section) .section-title > :is(h1, h2).text-anime-style-3 .split-line,
body.page-about .bg-section:not(.dark-section) .section-title > :is(h1, h2).text-anime-style-3 .split-line > div,
body.page-about .bg-section:not(.dark-section) .section-title > :is(h1, h2).text-anime-style-3 .split-line > div > div{
	color: #361319;
}

body.page-about .section-title h3::before{
	background: none;
	background-color: currentColor;
	mask: url('../images/icon-sub-heading.svg') no-repeat center / cover;
	-webkit-mask: url('../images/icon-sub-heading.svg') no-repeat center / cover;
	filter: none;
}

body.page-about .dark-section .section-title h3::before,
body.page-about :is(.about-us, .what-we-do, .our-team) .section-title h3::before,
body.page-about .bg-section:not(.dark-section) .section-title h3::before{
	filter: none;
}

body.page-about .about-us .about-experience-list ul li .list-after-amp{
	display: block;
}

body.page-about :is(.about-us, .what-we-do) .about-experience-list ul li::before,
body.page-about .our-journey-list ul li::before{
	color: #7B694E;
}

/* Dark backgrounds — white normal content (paragraphs, lists, supporting text) */
body.page-about .dark-section :is(
	.section-title p,
	.about-experience-list ul li,
	.our-journey-list ul li,
	.journey-item-content h3,
	.about-contact-box-content p,
	.testimonial-item-content p,
	.team-content p,
	.mission-vison-content p
),
body.page-about :is(.about-us, .what-we-do, .our-team) :is(
	.section-title p,
	.about-experience-list ul li,
	.about-contact-box-content p,
	.team-content p
){
	color: var(--white-color);
}

body.page-about :is(.dark-section, .about-us, .what-we-do, .our-team) .about-contact-box-content h3,
body.page-about :is(.dark-section, .about-us, .what-we-do, .our-team) .about-contact-box-content h3 a{
	color: var(--white-color);
}

body.page-about .bg-section:not(.dark-section) :is(.section-title p, .mission-vison-content p){
	color: #361319;
}

body.page-about .about-us .about-us-images::before{
	content: '';
	position: absolute;
	top: 30px;
	left: 70px;
	width: 76px;
	height: 77px;
	background-color: #7B694E;
	mask: url('../images/about-us-image-bg-shape.svg') no-repeat center / contain;
	-webkit-mask: url('../images/about-us-image-bg-shape.svg') no-repeat center / contain;
	pointer-events: none;
	z-index: 15;
}

body.page-about .about-us .about-us-images{
	position: relative;
	background: none;
}

body.page-about .about-us .btn-default{
	background: #7B694E;
	color: var(--white-color);
}

body.page-about .about-us .btn-default::before,
body.page-about .about-us .btn-default:hover::before,
body.page-about .about-us .btn-default:focus::before{
	background-color: #280B0F;
	background-image: url('../images/arrow-white.svg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 14px auto;
}

body.page-about .about-us .btn-default::after{
	background: #280B0F;
}

body.page-about .about-us .btn-default:hover,
body.page-about .about-us .btn-default:focus{
	background: transparent;
	color: var(--white-color);
}

body.page-about .about-us .btn-default:hover::after,
body.page-about .about-us .btn-default:focus::after{
	background: #280B0F;
}

body.page-about .about-us .about-contact-box-content p,
body.page-about .about-us .about-contact-box-content h3,
body.page-about .about-us .about-contact-box-content h3 a{
	color: #361319;
}

body.page-about .about-us .about-contact-box-content h3:hover a{
	color: #7B694E;
}

body.page-about :is(.what-we-do, .how-it-work) .btn-default{
	background: #7B694E;
	color: var(--white-color);
}

body.page-about :is(.what-we-do, .how-it-work) .btn-default::before{
	background-color: #C6B39A;
	background-image: url('../images/arrow-primary.svg');
}

body.page-about :is(.what-we-do, .how-it-work) .btn-default::after{
	background: #C6B39A;
}

body.page-about :is(.what-we-do, .how-it-work) .btn-default:hover,
body.page-about :is(.what-we-do, .how-it-work) .btn-default:focus{
	background: transparent;
	color: #361319;
}

body.page-about :is(.what-we-do, .how-it-work) .btn-default:hover::after,
body.page-about :is(.what-we-do, .how-it-work) .btn-default:focus::after{
	background: #C6B39A;
}

body.page-about :is(.what-we-do, .how-it-work) .btn-default:hover::before,
body.page-about :is(.what-we-do, .how-it-work) .btn-default:focus::before{
	background-color: #C6B39A;
	background-image: url('../images/arrow-primary.svg');
}

body.page-about .our-journey .journey-item .icon-box{
	background-color: #7B694E;
}

body.page-about .our-journey .journey-item:hover .icon-box{
	background-color: #C6B39A;
}

body.page-about .our-journey .journey-item .icon-box::before,
body.page-about .our-journey .journey-item:hover .icon-box::before{
	transform: scale(0);
}

body.page-about .our-journey .journey-item .icon-box img,
body.page-about .our-journey .journey-item:hover .icon-box img{
	filter: none;
}

body.page-about .our-journey .btn-default.btn-highlighted{
	background: #7B694E;
	color: var(--white-color);
}

body.page-about .our-journey .btn-default.btn-highlighted::before{
	background-color: #C6B39A;
	background-image: url('../images/arrow-primary.svg');
}

body.page-about .our-journey .btn-default.btn-highlighted::after{
	background: #280B0F;
}

body.page-about .our-journey .btn-default.btn-highlighted:hover,
body.page-about .our-journey .btn-default.btn-highlighted:focus{
	background: transparent;
	color: #361319;
}

body.page-about .our-journey .btn-default.btn-highlighted:hover::after,
body.page-about .our-journey .btn-default.btn-highlighted:focus::after{
	background: #C6B39A;
}

body.page-about .our-journey .btn-default.btn-highlighted:hover::before,
body.page-about .our-journey .btn-default.btn-highlighted:focus::before{
	background-color: #C6B39A;
	background-image: url('../images/arrow-primary.svg');
}

body.page-about .our-team .team-content h3,
body.page-about .our-team .team-content h3 a,
body.page-about .our-team .team-content p{
	color: var(--white-color);
}

body.page-about .meet-your-provider .provider-bio p{
	color: var(--white-color);
}

body.page-about .meet-your-provider .provider-bio strong{
	color: var(--white-color);
	font-weight: 700;
}

body.page-about .our-testimonials :is(
	.testimonial-author-details h3,
	.testimonial-author .author-content h3
){
	color: #7B694E;
}

body.page-about .our-testimonials :is(
	.testimonial-author-details p,
	.testimonial-author .author-content p
){
	color: #C6B39A;
}

body.home-page .our-testimonials :is(
	.our-testimonial-content .section-title p,
	.testimonial-author-details h3,
	.testimonial-author-details p,
	.testimonial-item-content p,
	.testimonial-author .author-content h3,
	.testimonial-author .author-content p
){
	color: #C6B39A;
}

body.page-about .our-testimonials :is(
	.our-testimonial-content .section-title p,
	.testimonial-item-content p
){
	color: #C6B39A;
}

body.page-about .our-faqs .faq-accordion .accordion-item{
	border-bottom-color: #7B694E33;
}

body.page-about .our-faqs .faq-accordion .accordion-header .accordion-button{
	color: #C6B39A;
}

body.page-about .our-faqs .faq-accordion .accordion-button:not(.collapsed){
	color: #7B694E;
}

body.page-about .our-faqs .faq-accordion .accordion-item .accordion-button::after,
body.page-about .our-faqs .faq-accordion .accordion-item .accordion-button.collapsed::after{
	color: #C6B39A;
}

body.page-about .our-faqs .faq-accordion .accordion-button:not(.collapsed)::after{
	color: #7B694E;
}

body.page-about .our-faqs .faq-accordion .accordion-item .accordion-body p{
	color: var(--white-color);
}

body.page-about .our-team .team-social-icons ul li:hover a{
	background: #C6B39A;
	color: #361319;
}

body.page-about .our-results .facts-counter-content h3{
	color: #C6B39A;
}

body.page-about .our-results .facts-counter-content p{
	color: #7B694E;
}

body.page-about .our-results .facts-counter-item .icon-box img{
	filter: brightness(0) saturate(100%) invert(55%) sepia(18%) saturate(620%) hue-rotate(355deg) brightness(94%) contrast(90%);
}

body.page-about .our-results .facts-counter-box{
	border-top-color: #7B694E33;
}

body.page-about .our-results .facts-counter-item::before{
	background: #7B694E33;
}

:is(body.page-about .our-appointment .appointment-form, body.home-page .our-appointment .appointment-form, .page-book-appointment .appointment-form) form .form-control{
	padding: 24px 28px 18px 36px;
	color: #361319;
	background-color: var(--white-color);
	transition: box-shadow 0.25s ease-in-out, color 0.25s ease-in-out;
}

:is(body.page-about .our-appointment .appointment-form, body.home-page .our-appointment .appointment-form, .page-book-appointment .appointment-form) form .form-control::placeholder{
	color: #7B694E;
	opacity: 0.85;
}

:is(body.page-about .our-appointment .appointment-form, body.home-page .our-appointment .appointment-form, .page-book-appointment .appointment-form) form .form-control:focus{
	color: #361319;
	box-shadow: 0 0 0 2px #7B694E40;
	outline: none;
}

:is(body.page-about .our-appointment .appointment-form, body.home-page .our-appointment .appointment-form, .page-book-appointment .appointment-form) .help-block.with-errors{
	padding-left: 36px;
	margin-top: 8px;
	color: #361319;
}

/* Custom themed dropdown & calendar (appointment forms) */
:is(body.page-about .our-appointment .appointment-form, body.home-page .our-appointment .appointment-form, .page-book-appointment .appointment-form) .hm-appt-native{
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	opacity: 0 !important;
	pointer-events: none !important;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
	padding: 0;
	margin: 0;
}

:is(body.page-about .our-appointment .appointment-form, body.home-page .our-appointment .appointment-form, .page-book-appointment .appointment-form) .hm-appt-select,
:is(body.page-about .our-appointment .appointment-form, body.home-page .our-appointment .appointment-form, .page-book-appointment .appointment-form) .hm-appt-date{
	position: relative;
	width: 100%;
}

:is(body.page-about .our-appointment .appointment-form, body.home-page .our-appointment .appointment-form, .page-book-appointment .appointment-form) .hm-appt-select-trigger,
:is(body.page-about .our-appointment .appointment-form, body.home-page .our-appointment .appointment-form, .page-book-appointment .appointment-form) .hm-appt-date-trigger{
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	font-family: var(--default-font);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5em;
	text-align: left;
	color: #361319;
	background-color: var(--white-color);
	border: none;
	border-radius: 100px;
	padding: 24px 28px 18px 36px;
	cursor: pointer;
	transition: box-shadow 0.25s ease-in-out, color 0.25s ease-in-out;
	box-shadow: none;
}

:is(body.page-about .our-appointment .appointment-form, body.home-page .our-appointment .appointment-form, .page-book-appointment .appointment-form) .hm-appt-select-label.is-placeholder,
:is(body.page-about .our-appointment .appointment-form, body.home-page .our-appointment .appointment-form, .page-book-appointment .appointment-form) .hm-appt-date-label.is-placeholder{
	color: #7B694E;
}

:is(body.page-about .our-appointment .appointment-form, body.home-page .our-appointment .appointment-form, .page-book-appointment .appointment-form) .hm-appt-select-trigger:hover,
:is(body.page-about .our-appointment .appointment-form, body.home-page .our-appointment .appointment-form, .page-book-appointment .appointment-form) .hm-appt-date-trigger:hover,
:is(body.page-about .our-appointment .appointment-form, body.home-page .our-appointment .appointment-form, .page-book-appointment .appointment-form) .hm-appt-select.is-open .hm-appt-select-trigger,
:is(body.page-about .our-appointment .appointment-form, body.home-page .our-appointment .appointment-form, .page-book-appointment .appointment-form) .hm-appt-date.is-open .hm-appt-date-trigger{
	box-shadow: 0 0 0 2px #7B694E40;
}

:is(body.page-about .our-appointment .appointment-form, body.home-page .our-appointment .appointment-form, .page-book-appointment .appointment-form) .hm-appt-select-chevron{
	flex-shrink: 0;
	width: 14px;
	height: 8px;
	margin-left: 12px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='8' viewBox='0 0 14 8' fill='none'%3E%3Cpath d='M1 1.25L7 6.75L13 1.25' stroke='%237B694E' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	transition: transform 0.25s ease-in-out;
}

:is(body.page-about .our-appointment .appointment-form, body.home-page .our-appointment .appointment-form, .page-book-appointment .appointment-form) .hm-appt-select.is-open .hm-appt-select-chevron{
	transform: rotate(180deg);
}

:is(body.page-about .our-appointment .appointment-form, body.home-page .our-appointment .appointment-form, .page-book-appointment .appointment-form) .hm-appt-date-icon{
	flex-shrink: 0;
	width: 20px;
	height: 20px;
	margin-left: 12px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'%3E%3Crect x='2.5' y='4.5' width='15' height='13' rx='2' stroke='%237B694E' stroke-width='1.5'/%3E%3Cpath d='M2.5 8.5H17.5' stroke='%237B694E' stroke-width='1.5'/%3E%3Cpath d='M6.5 2.5V6' stroke='%237B694E' stroke-width='1.5' stroke-linecap='round'/%3E%3Cpath d='M13.5 2.5V6' stroke='%237B694E' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}

:is(body.page-about .our-appointment .appointment-form, body.home-page .our-appointment .appointment-form, .page-book-appointment .appointment-form) .hm-appt-select-menu,
:is(body.page-about .our-appointment .appointment-form, body.home-page .our-appointment .appointment-form, .page-book-appointment .appointment-form) .hm-appt-date-popover{
	position: absolute;
	top: calc(100% + 10px);
	left: 0;
	right: 0;
	z-index: 30;
	background: var(--white-color);
	border: 1px solid #7B694E33;
	border-radius: 24px;
	box-shadow: 0 16px 40px rgba(54, 19, 25, 0.12);
	padding: 12px;
}

:is(body.page-about .our-appointment .appointment-form, body.home-page .our-appointment .appointment-form, .page-book-appointment .appointment-form) .hm-appt-select-option{
	display: block;
	width: 100%;
	font-family: var(--default-font);
	font-size: 15px;
	font-weight: 400;
	line-height: 1.45em;
	text-align: left;
	color: #361319;
	background: transparent;
	border: none;
	border-radius: 16px;
	padding: 14px 18px;
	cursor: pointer;
	transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
}

:is(body.page-about .our-appointment .appointment-form, body.home-page .our-appointment .appointment-form, .page-book-appointment .appointment-form) .hm-appt-select-option:hover,
:is(body.page-about .our-appointment .appointment-form, body.home-page .our-appointment .appointment-form, .page-book-appointment .appointment-form) .hm-appt-select-option.is-selected{
	background-color: #C6B39A;
	color: #361319;
}

:is(body.page-about .our-appointment .appointment-form, body.home-page .our-appointment .appointment-form, .page-book-appointment .appointment-form) .hm-appt-date-popover{
	padding: 18px 16px 16px;
	min-width: 280px;
}

:is(body.page-about .our-appointment .appointment-form, body.home-page .our-appointment .appointment-form, .page-book-appointment .appointment-form) .hm-appt-date-header{
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 14px;
	padding: 0 4px;
}

:is(body.page-about .our-appointment .appointment-form, body.home-page .our-appointment .appointment-form, .page-book-appointment .appointment-form) .hm-appt-date-title{
	font-family: var(--default-font);
	font-size: 16px;
	font-weight: 600;
	color: #361319;
	text-align: center;
	flex: 1;
}

:is(body.page-about .our-appointment .appointment-form, body.home-page .our-appointment .appointment-form, .page-book-appointment .appointment-form) .hm-appt-date-nav{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	font-size: 22px;
	line-height: 1;
	color: #7B694E;
	background: #C6B39A44;
	border: none;
	border-radius: 50%;
	cursor: pointer;
	transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
}

:is(body.page-about .our-appointment .appointment-form, body.home-page .our-appointment .appointment-form, .page-book-appointment .appointment-form) .hm-appt-date-nav:hover{
	background: #C6B39A;
	color: #361319;
}

:is(body.page-about .our-appointment .appointment-form, body.home-page .our-appointment .appointment-form, .page-book-appointment .appointment-form) .hm-appt-date-weekdays{
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	gap: 4px;
	margin-bottom: 8px;
}

:is(body.page-about .our-appointment .appointment-form, body.home-page .our-appointment .appointment-form, .page-book-appointment .appointment-form) .hm-appt-date-weekday{
	font-family: var(--default-font);
	font-size: 12px;
	font-weight: 600;
	text-align: center;
	color: #7B694E;
	padding: 4px 0;
}

:is(body.page-about .our-appointment .appointment-form, body.home-page .our-appointment .appointment-form, .page-book-appointment .appointment-form) .hm-appt-date-grid{
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	gap: 4px;
}

:is(body.page-about .our-appointment .appointment-form, body.home-page .our-appointment .appointment-form, .page-book-appointment .appointment-form) .hm-appt-date-day{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	aspect-ratio: 1;
	font-family: var(--default-font);
	font-size: 14px;
	font-weight: 500;
	color: #361319;
	background: transparent;
	border: none;
	border-radius: 12px;
	cursor: pointer;
	transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

:is(body.page-about .our-appointment .appointment-form, body.home-page .our-appointment .appointment-form, .page-book-appointment .appointment-form) .hm-appt-date-day.is-empty{
	pointer-events: none;
}

:is(body.page-about .our-appointment .appointment-form, body.home-page .our-appointment .appointment-form, .page-book-appointment .appointment-form) .hm-appt-date-day:hover:not(.is-disabled):not(.is-selected){
	background-color: #C6B39A;
	color: #361319;
}

:is(body.page-about .our-appointment .appointment-form, body.home-page .our-appointment .appointment-form, .page-book-appointment .appointment-form) .hm-appt-date-day.is-today:not(.is-selected){
	box-shadow: inset 0 0 0 1.5px #7B694E;
}

:is(body.page-about .our-appointment .appointment-form, body.home-page .our-appointment .appointment-form, .page-book-appointment .appointment-form) .hm-appt-date-day.is-selected{
	background-color: #7B694E;
	color: var(--white-color);
}

:is(body.page-about .our-appointment .appointment-form, body.home-page .our-appointment .appointment-form, .page-book-appointment .appointment-form) .hm-appt-date-day.is-disabled{
	color: #7B694E55;
	cursor: not-allowed;
}

body.page-about .what-we-do .experirnce-box{
	background: #7B694E;
}

@media only screen and (max-width: 991px){
	body.page-about .page-header.bg-section.dark-section{
		padding: 130px 0;
	}

	body.page-about .slicknav_btn,
	body.page-about .slicknav_menu{
		background: #7B694E;
	}

	:is(body.page-about .our-appointment .appointment-form, body.home-page .our-appointment .appointment-form, .page-book-appointment .appointment-form) form .form-control{
		padding: 20px 24px 16px 30px;
	}

	:is(body.page-about .our-appointment .appointment-form, body.home-page .our-appointment .appointment-form, .page-book-appointment .appointment-form) .hm-appt-select-trigger,
	:is(body.page-about .our-appointment .appointment-form, body.home-page .our-appointment .appointment-form, .page-book-appointment .appointment-form) .hm-appt-date-trigger{
		padding: 20px 24px 16px 30px;
	}

	:is(body.page-about .our-appointment .appointment-form, body.home-page .our-appointment .appointment-form, .page-book-appointment .appointment-form) .hm-appt-date-popover{
		min-width: 0;
	}
}

/************************************/
/***  Book Appointment — Theme      ***/
/************************************/

body.page-book-appointment .page-header.bg-section.dark-section{
	padding: 130px 0;
}

body.page-book-appointment h3{
	text-transform: uppercase;
}

body.page-book-appointment h1.text-anime-style-3,
body.page-book-appointment h2.text-anime-style-3,
body.page-book-appointment h1.text-anime-style-3 .split-line,
body.page-book-appointment h2.text-anime-style-3 .split-line,
body.page-book-appointment h1.text-anime-style-3 .split-line > div,
body.page-book-appointment h2.text-anime-style-3 .split-line > div,
body.page-book-appointment h1.text-anime-style-3 .split-line > div > div,
body.page-book-appointment h2.text-anime-style-3 .split-line > div > div,
body.page-book-appointment .text-anime-style-3,
body.page-book-appointment .text-anime-style-3 .split-line,
body.page-book-appointment .text-anime-style-3 .split-line > div,
body.page-book-appointment .text-anime-style-3 .split-line > div > div{
	text-transform: none !important;
}

body.page-book-appointment .page-book-appointment{
	--accent-color: #7B694E;
	--divider-color: #7B694E1A;
}

body.page-book-appointment .page-book-appointment .section-title h3{
	color: #7B694E;
}

body.page-book-appointment .page-book-appointment .our-appointment-content .section-title > :is(h1, h2),
body.page-book-appointment .page-book-appointment .our-appointment-content .section-title > :is(h1, h2).text-anime-style-3,
body.page-book-appointment .page-book-appointment .our-appointment-content .section-title > :is(h1, h2).text-anime-style-3 .split-line,
body.page-book-appointment .page-book-appointment .our-appointment-content .section-title > :is(h1, h2).text-anime-style-3 .split-line > div,
body.page-book-appointment .page-book-appointment .our-appointment-content .section-title > :is(h1, h2).text-anime-style-3 .split-line > div > div{
	color: #C6B39A;
}

body.page-book-appointment .page-book-appointment .our-appointment-content .section-title p{
	color: var(--white-color);
}

body.page-book-appointment .page-book-appointment .appointment-item{
	border-bottom-color: #7B694E33;
}

body.page-book-appointment .page-book-appointment .appointment-item-content h3{
	color: #C6B39A;
}

body.page-book-appointment .page-book-appointment .appointment-item-content p,
body.page-book-appointment .page-book-appointment .appointment-item-content p a{
	color: var(--white-color);
}

body.page-book-appointment .page-book-appointment .appointment-item-content p a:hover{
	color: #C6B39A;
}

body.page-book-appointment .page-book-appointment .appointment-item .icon-box img{
	filter: brightness(0) saturate(100%) invert(55%) sepia(18%) saturate(620%) hue-rotate(355deg) brightness(94%) contrast(90%);
}

body.page-book-appointment .page-book-appointment .appointment-form{
	background-color: #C6B39A;
}

body.page-book-appointment .page-book-appointment .contact-form-btn .btn-default{
	background: #7B694E;
	color: var(--white-color) !important;
	-webkit-text-fill-color: var(--white-color) !important;
}

body.page-book-appointment .page-book-appointment .contact-form-btn .btn-default:hover,
body.page-book-appointment .page-book-appointment .contact-form-btn .btn-default:focus,
body.page-book-appointment .page-book-appointment .contact-form-btn .btn-default:active{
	background: transparent;
	color: var(--white-color) !important;
	-webkit-text-fill-color: var(--white-color) !important;
}

body.page-book-appointment .page-book-appointment .contact-form-btn .btn-default:hover::after,
body.page-book-appointment .page-book-appointment .contact-form-btn .btn-default:focus::after,
body.page-book-appointment .page-book-appointment .contact-form-btn .btn-default:active::after{
	background: #361319;
}

body.page-book-appointment .why-choose-us{
	--accent-color: #7B694E;
}

body.page-book-appointment .why-choose-us .section-title > :is(h1, h2),
body.page-book-appointment .why-choose-us .section-title > :is(h1, h2).text-anime-style-3,
body.page-book-appointment .why-choose-us .section-title > :is(h1, h2).text-anime-style-3 .split-line,
body.page-book-appointment .why-choose-us .section-title > :is(h1, h2).text-anime-style-3 .split-line > div,
body.page-book-appointment .why-choose-us .section-title > :is(h1, h2).text-anime-style-3 .split-line > div > div{
	color: #361319;
}

body.page-book-appointment .why-choose-us .section-title p{
	color: #361319;
}

body.page-book-appointment .why-choose-contact-box h3,
body.page-book-appointment .why-choose-contact-quote{
	color: #361319;
}

body.page-book-appointment .why-choose-contact-item-content p a{
	color: #7B694E;
}

body.page-book-appointment .why-choose-contact-item-content p a:hover{
	color: #361319;
}

body.page-book-appointment .why-choose-contact-item .icon-box i{
	background: #7B694E;
}

body.page-book-appointment .why-choose-images::before{
	background: #7B694E;
}

body.page-book-appointment .years-experience-text p{
	color: #361319;
}

body.page-book-appointment .our-faqs .section-title > :is(h1, h2),
body.page-book-appointment .our-faqs .section-title > :is(h1, h2).text-anime-style-3,
body.page-book-appointment .our-faqs .section-title > :is(h1, h2).text-anime-style-3 .split-line,
body.page-book-appointment .our-faqs .section-title > :is(h1, h2).text-anime-style-3 .split-line > div,
body.page-book-appointment .our-faqs .section-title > :is(h1, h2).text-anime-style-3 .split-line > div > div{
	color: #C6B39A;
}

body.page-book-appointment .our-faqs .faq-accordion .accordion-item{
	border-bottom-color: #7B694E33;
}

body.page-book-appointment .our-faqs .faq-accordion .accordion-header .accordion-button{
	color: #C6B39A;
}

body.page-book-appointment .our-faqs .faq-accordion .accordion-button:not(.collapsed){
	color: #7B694E;
}

body.page-book-appointment .our-faqs .faq-accordion .accordion-item .accordion-button::after,
body.page-book-appointment .our-faqs .faq-accordion .accordion-item .accordion-button.collapsed::after{
	color: #C6B39A;
}

body.page-book-appointment .our-faqs .faq-accordion .accordion-button:not(.collapsed)::after{
	color: #7B694E;
}

body.page-book-appointment .our-faqs .faq-accordion .accordion-item .accordion-body p{
	color: var(--white-color);
}

body.page-book-appointment .section-title h3::before{
	background: none;
	background-color: currentColor;
	mask: url('../images/icon-sub-heading.svg') no-repeat center / cover;
	-webkit-mask: url('../images/icon-sub-heading.svg') no-repeat center / cover;
	filter: none;
}

@media only screen and (max-width: 991px){
	body.page-book-appointment .page-header.bg-section.dark-section{
		padding: 130px 0;
	}

	body.page-book-appointment .slicknav_btn,
	body.page-book-appointment .slicknav_menu{
		background: #7B694E;
	}
}

/************************************/
/***      Contact Page — Theme      ***/
/************************************/

body.page-contact .page-header.bg-section.dark-section{
	padding: 130px 0;
}

body.page-contact h3{
	text-transform: uppercase;
}

body.page-contact h1.text-anime-style-3,
body.page-contact h2.text-anime-style-3,
body.page-contact h1.text-anime-style-3 .split-line,
body.page-contact h2.text-anime-style-3 .split-line,
body.page-contact h1.text-anime-style-3 .split-line > div,
body.page-contact h2.text-anime-style-3 .split-line > div,
body.page-contact h1.text-anime-style-3 .split-line > div > div,
body.page-contact h2.text-anime-style-3 .split-line > div > div,
body.page-contact .text-anime-style-3,
body.page-contact .text-anime-style-3 .split-line,
body.page-contact .text-anime-style-3 .split-line > div,
body.page-contact .text-anime-style-3 .split-line > div > div{
	text-transform: none !important;
}

body.page-contact .page-contact-us{
	--accent-color: #7B694E;
	--divider-color: #7B694E1A;
}

body.page-contact .page-contact-us .section-title h3{
	color: #7B694E;
}

body.page-contact .page-contact-us .contact-us-content .section-title > :is(h1, h2),
body.page-contact .page-contact-us .contact-us-content .section-title > :is(h1, h2) :is(
	span,
	.text-acronym,
	.split-line,
	.split-line > div,
	.split-line > div > div,
	.split-line > div > div > div
){
	color: #C6B39A;
}

body.page-contact .page-contact-us .section-title p{
	color: var(--white-color);
}

body.page-contact .section-title h3::before{
	background: none;
	background-color: currentColor;
	mask: url('../images/icon-sub-heading.svg') no-repeat center / cover;
	-webkit-mask: url('../images/icon-sub-heading.svg') no-repeat center / cover;
	filter: none;
}

body.page-contact .contact-info-item{
	background: #C6B39A;
}

body.page-contact .contact-info-item .icon-box{
	background: #7B694E;
}

body.page-contact .contact-info-item .icon-box::before{
	background-color: #361319;
}

body.page-contact .contact-info-item .icon-box img{
	filter: brightness(0) invert(1);
}

body.page-contact .contact-info-content h3{
	color: #7B694E;
}

body.page-contact .contact-info-content p,
body.page-contact .contact-info-content p a{
	color: #361319;
}

body.page-contact .contact-info-content p a:hover{
	color: #7B694E;
}

body.page-contact .conatct-us-form{
	--accent-color: #7B694E;
	--divider-color: #7B694E1A;
	padding-bottom: 130px;
}

body.page-contact .conatct-us-form + .main-footer{
	margin-top: 60px;
}

body.page-contact .conatct-us-form.bg-section{
	background-color: #C6B39A;
}

body.page-contact .contact-form{
	background-color: transparent;
}

body.page-contact .contact-form .section-title > :is(h1, h2),
body.page-contact .contact-form .section-title > :is(h1, h2).text-anime-style-3,
body.page-contact .contact-form .section-title > :is(h1, h2).text-anime-style-3 .split-line,
body.page-contact .contact-form .section-title > :is(h1, h2).text-anime-style-3 .split-line > div,
body.page-contact .contact-form .section-title > :is(h1, h2).text-anime-style-3 .split-line > div > div{
	color: #361319;
}

body.page-contact .contact-form form .form-control{
	padding: 24px 28px 18px 36px;
	color: #361319;
	background-color: var(--white-color);
	transition: box-shadow 0.25s ease-in-out, color 0.25s ease-in-out;
}

body.page-contact .contact-form form .form-control::placeholder{
	color: #7B694E;
	opacity: 0.85;
}

body.page-contact .contact-form form .form-control:focus{
	color: #361319;
	box-shadow: 0 0 0 2px #7B694E40;
	outline: none;
}

body.page-contact .contact-form .help-block.with-errors{
	padding-left: 36px;
	margin-top: 8px;
	color: #361319;
}

body.page-contact .contact-form-btn .btn-default{
	background: #7B694E;
	color: var(--white-color);
}

body.page-contact .contact-form-btn .btn-default:hover,
body.page-contact .contact-form-btn .btn-default:focus{
	background: transparent;
	color: var(--white-color);
	box-shadow: inset 0 0 0 2px #7B694E;
}

body.page-contact .google-map-iframe{
	position: relative;
	border: none;
	background: transparent;
	overflow: hidden;
}

body.page-contact .google-map-iframe::after{
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(198, 179, 154, 0.12);
	pointer-events: none;
	z-index: 400;
	mix-blend-mode: multiply;
}

body.page-contact .hm-contact-map{
	min-height: 480px;
	z-index: 1;
}

body.page-contact .google-map-iframe .leaflet-container{
	border: none;
	outline: none;
}

body.page-contact .google-map-iframe .leaflet-tile-pane{
	filter: sepia(0.3) saturate(0.72) hue-rotate(352deg) brightness(0.95) contrast(1.04);
}

body.page-contact .google-map-iframe .leaflet-control-zoom a{
	background-color: #C6B39A;
	color: #361319;
	border-color: #7B694E40;
	font-weight: 600;
}

body.page-contact .google-map-iframe .leaflet-control-zoom a:hover,
body.page-contact .google-map-iframe .leaflet-control-zoom a:focus{
	background-color: #7B694E;
	color: var(--white-color);
}

body.page-contact .google-map-iframe .leaflet-control-attribution{
	background: rgba(198, 179, 154, 0.92);
	color: #361319;
	font-size: 11px;
}

body.page-contact .google-map-iframe .leaflet-control-attribution a{
	color: #7B694E;
}

body.page-contact .google-map-iframe .leaflet-popup-content-wrapper{
	background: #C6B39A;
	color: #361319;
	border-radius: 16px;
	box-shadow: 0 10px 28px rgba(54, 19, 25, 0.18);
	padding: 4px;
}

body.page-contact .google-map-iframe .leaflet-popup-content{
	margin: 14px 18px 14px 16px;
	min-width: 180px;
}

body.page-contact .google-map-iframe a.leaflet-popup-close-button{
	top: 10px;
	right: 12px;
	width: 28px;
	height: 28px;
	padding: 0;
	font-size: 22px;
	line-height: 28px;
	color: #361319;
	text-align: center;
}

body.page-contact .google-map-iframe a.leaflet-popup-close-button:hover,
body.page-contact .google-map-iframe a.leaflet-popup-close-button:focus{
	color: #7B694E;
	background: transparent;
}

body.page-contact .google-map-iframe .leaflet-popup-tip{
	background: #C6B39A;
}

body.page-contact .google-map-iframe .hm-map-popup{
	display: flex;
	flex-direction: column;
	gap: 8px;
	font-family: var(--default-font);
	font-size: 14px;
	line-height: 1.5;
}

body.page-contact .google-map-iframe .hm-map-popup strong{
	font-family: var(--accent-font);
	font-size: 17px;
	font-weight: 400;
	color: #361319;
}

body.page-contact .google-map-iframe .hm-map-popup a{
	color: #7B694E;
	font-weight: 600;
}

body.page-contact .google-map-iframe .hm-map-popup a:hover{
	color: #361319;
}

body.page-contact .google-map-iframe .hm-map-marker-wrap{
	background: transparent;
	border: none;
}

body.page-contact .google-map-iframe .hm-map-marker{
	width: 48px;
	height: 48px;
	background: #7B694E;
	border: 3px solid #C6B39A;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 6px 16px rgba(54, 19, 25, 0.28);
}

body.page-contact .google-map-iframe .hm-map-marker i{
	color: var(--white-color);
	font-size: 20px;
}

body.page-contact .dark-section .section-title h3{
	color: #7B694E;
}

body.page-contact .dark-section .section-title > :is(h1, h2),
body.page-contact .dark-section .section-title > :is(h1, h2).text-anime-style-3,
body.page-contact .dark-section .section-title > :is(h1, h2).text-anime-style-3 .split-line,
body.page-contact .dark-section .section-title > :is(h1, h2).text-anime-style-3 .split-line > div,
body.page-contact .dark-section .section-title > :is(h1, h2).text-anime-style-3 .split-line > div > div{
	color: #C6B39A;
}

@media only screen and (max-width: 991px){
	body.page-contact .page-header.bg-section.dark-section{
		padding: 130px 0;
	}

	body.page-contact .slicknav_btn,
	body.page-contact .slicknav_menu{
		background: #7B694E;
	}

	body.page-contact .contact-form form .form-control{
		padding: 20px 24px 16px 30px;
	}

	body.page-contact .conatct-us-form{
		padding-bottom: 70px;
	}

	body.page-contact .conatct-us-form + .main-footer{
		margin-top: 40px;
	}

	body.page-contact .google-map-iframe .hm-contact-map{
		min-height: 0;
		height: 320px;
	}

	body.page-contact .google-map-iframe .leaflet-popup-content-wrapper{
		border-radius: 12px;
		padding: 2px;
	}

	body.page-contact .google-map-iframe .leaflet-popup-content{
		margin: 10px 12px 10px 10px;
		min-width: 0;
		max-width: 200px;
	}

	body.page-contact .google-map-iframe .hm-map-popup{
		gap: 4px;
		font-size: 12px;
		line-height: 1.35;
	}

	body.page-contact .google-map-iframe .hm-map-popup strong{
		font-size: 14px;
	}

	body.page-contact .google-map-iframe a.leaflet-popup-close-button{
		top: 6px;
		right: 8px;
		width: 22px;
		height: 22px;
		font-size: 18px;
		line-height: 22px;
	}
}

/************************************/
/***      Legal Pages — Theme     ***/
/************************************/

/* Legal pages — default light gold nav; dark only over cream content panel */
body.page-legal > header.main-header:not([data-nav-color="361319"]) .header-sticky :is(
	.main-menu .nav-menu-wrapper > ul > li > a.nav-link,
	.main-menu .nav-menu-wrapper > ul > li > a,
	.header-contact-now,
	.header-contact-now .contact-lines,
	.main-menu .nav-menu-wrapper > ul > li.submenu > a:after
),
body.page-legal > header.main-header:not([data-nav-color="361319"]) .header-sticky.active :is(
	.main-menu .nav-menu-wrapper > ul > li > a.nav-link,
	.main-menu .nav-menu-wrapper > ul > li > a,
	.header-contact-now,
	.header-contact-now .contact-lines,
	.main-menu .nav-menu-wrapper > ul > li.submenu > a:after
){
	color: #C6B39A !important;
	-webkit-text-fill-color: #C6B39A !important;
}

body.page-legal > header.main-header:not([data-nav-color="361319"]) .header-sticky .main-menu .nav-menu-wrapper > ul > li > a:hover,
body.page-legal > header.main-header:not([data-nav-color="361319"]) .header-sticky .main-menu .nav-menu-wrapper > ul > li > a:focus,
body.page-legal > header.main-header:not([data-nav-color="361319"]) .header-sticky .header-contact-now:hover,
body.page-legal > header.main-header:not([data-nav-color="361319"]) .header-sticky .header-contact-now:focus,
body.page-legal > header.main-header:not([data-nav-color="361319"]) .header-sticky.active .main-menu .nav-menu-wrapper > ul > li > a:hover,
body.page-legal > header.main-header:not([data-nav-color="361319"]) .header-sticky.active .main-menu .nav-menu-wrapper > ul > li > a:focus,
body.page-legal > header.main-header:not([data-nav-color="361319"]) .header-sticky.active .header-contact-now:hover,
body.page-legal > header.main-header:not([data-nav-color="361319"]) .header-sticky.active .header-contact-now:focus{
	color: #7B694E !important;
	-webkit-text-fill-color: #7B694E !important;
}

body.page-legal > header.main-header[data-nav-color="361319"] .header-sticky :is(
	.main-menu .nav-menu-wrapper > ul > li > a.nav-link,
	.main-menu .nav-menu-wrapper > ul > li > a,
	.header-contact-now,
	.header-contact-now .contact-lines,
	.main-menu .nav-menu-wrapper > ul > li.submenu > a:after
),
body.page-legal > header.main-header[data-nav-color="361319"] .header-sticky.active :is(
	.main-menu .nav-menu-wrapper > ul > li > a.nav-link,
	.main-menu .nav-menu-wrapper > ul > li > a,
	.header-contact-now,
	.header-contact-now .contact-lines,
	.main-menu .nav-menu-wrapper > ul > li.submenu > a:after
){
	color: #361319 !important;
	-webkit-text-fill-color: #361319 !important;
}

body.page-legal > header.main-header[data-nav-color="361319"] .header-sticky .main-menu .nav-menu-wrapper > ul > li > a:hover,
body.page-legal > header.main-header[data-nav-color="361319"] .header-sticky .main-menu .nav-menu-wrapper > ul > li > a:focus,
body.page-legal > header.main-header[data-nav-color="361319"] .header-sticky .header-contact-now:hover,
body.page-legal > header.main-header[data-nav-color="361319"] .header-sticky .header-contact-now:focus{
	color: #7B694E !important;
	-webkit-text-fill-color: #7B694E !important;
}

body.page-legal .page-header.bg-section.dark-section{
	padding: 130px 0;
}

body.page-legal h3{
	text-transform: uppercase;
}

body.page-legal h1.text-anime-style-3,
body.page-legal h2.text-anime-style-3,
body.page-legal h1.text-anime-style-3 .split-line,
body.page-legal h2.text-anime-style-3 .split-line,
body.page-legal h1.text-anime-style-3 .split-line > div,
body.page-legal h2.text-anime-style-3 .split-line > div,
body.page-legal h1.text-anime-style-3 .split-line > div > div,
body.page-legal h2.text-anime-style-3 .split-line > div > div,
body.page-legal .text-anime-style-3,
body.page-legal .text-anime-style-3 .split-line,
body.page-legal .text-anime-style-3 .split-line > div,
body.page-legal .text-anime-style-3 .split-line > div > div{
	text-transform: none !important;
}

body.page-legal .page-legal{
	padding: 80px 0 120px;
}

body.page-legal .page-legal-panel.bg-section{
	background-color: #C6B39A !important;
	background-image: none !important;
	border-radius: 24px;
	padding: 48px 56px;
	max-width: 920px;
	margin: 0 auto;
	box-shadow: 0 20px 40px rgba(54, 19, 25, 0.12);
}

body.page-legal .page-legal-content{
	max-width: none;
	margin: 0;
}

body.page-legal .page-legal-panel .page-legal-updated{
	color: #7B694E;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	margin-bottom: 28px;
}

body.page-legal .page-legal-panel .page-legal-content :is(p, li){
	color: #361319;
}

body.page-legal .page-legal-panel .page-legal-content h2{
	color: #361319;
	font-size: 28px;
	margin-top: 40px;
	margin-bottom: 16px;
}

body.page-legal .page-legal-panel .page-legal-content h3{
	color: #361319;
	font-size: 22px;
	margin-top: 32px;
	margin-bottom: 14px;
	text-transform: none;
}

body.page-legal .page-legal-panel .page-legal-content :is(h2, h3) + :is(p, ul){
	margin-top: 0;
}

body.page-legal .page-legal-panel .page-legal-content h2:first-of-type{
	margin-top: 0;
}

body.page-legal .page-legal-panel .page-legal-content a:not(.btn-default){
	color: #361319;
	text-decoration: underline;
	text-underline-offset: 3px;
}

body.page-legal .page-legal-panel .page-legal-content a:not(.btn-default):hover,
body.page-legal .page-legal-panel .page-legal-content a:not(.btn-default):focus{
	color: #7B694E;
}

body.page-legal .page-legal-panel .page-legal-content ul{
	margin: 16px 0 0;
	padding-left: 1.25em;
}

body.page-legal .page-legal-panel .page-legal-content ul li{
	margin-bottom: 10px;
}

body.page-legal .page-legal-panel .page-legal-content :is(a.btn-default, button.btn-default){
	margin-top: 8px;
	text-decoration: none;
	cursor: pointer;
	background: #7B694E;
	color: var(--white-color);
	border: none;
}

body.page-legal .page-legal-panel .page-legal-content :is(a.btn-default, button.btn-default)::before{
	background-color: #361319;
	background-image: url('../images/arrow-white.svg');
}

body.page-legal .page-legal-panel .page-legal-content :is(a.btn-default, button.btn-default)::after{
	background: #361319;
}

body.page-legal .page-legal-panel .page-legal-content :is(a.btn-default, button.btn-default):hover,
body.page-legal .page-legal-panel .page-legal-content :is(a.btn-default, button.btn-default):focus{
	background: #361319;
	color: var(--white-color);
}

body.page-legal .page-legal-panel .page-legal-content :is(a.btn-default, button.btn-default):hover::before,
body.page-legal .page-legal-panel .page-legal-content :is(a.btn-default, button.btn-default):focus::before{
	background-color: #361319;
	transform: translateY(-50%) rotate(45deg);
}

body.page-legal .page-legal-panel .page-legal-content :is(a.btn-default, button.btn-default):hover::after,
body.page-legal .page-legal-panel .page-legal-content :is(a.btn-default, button.btn-default):focus::after{
	background: #361319;
	opacity: 1;
	left: 0;
	right: 0;
}

body.page-legal .page-legal-panel .page-legal-content :is(a.btn-default, button.btn-default).btn-highlighted,
body.page-legal .page-legal-panel .page-legal-content :is(a.btn-default, button.btn-default)[data-page-consent="accept"]{
	background: #361319;
	color: var(--white-color);
}

body.page-legal .page-legal-panel .page-legal-content :is(a.btn-default, button.btn-default).btn-highlighted::before,
body.page-legal .page-legal-panel .page-legal-content :is(a.btn-default, button.btn-default)[data-page-consent="accept"]::before{
	background-color: #7B694E;
}

body.page-legal .page-legal-panel .page-legal-content :is(a.btn-default, button.btn-default).btn-highlighted::after,
body.page-legal .page-legal-panel .page-legal-content :is(a.btn-default, button.btn-default)[data-page-consent="accept"]::after{
	background: #280B0F;
}

body.page-legal .page-legal-panel .page-legal-content :is(a.btn-default, button.btn-default).btn-highlighted:hover,
body.page-legal .page-legal-panel .page-legal-content :is(a.btn-default, button.btn-default).btn-highlighted:focus,
body.page-legal .page-legal-panel .page-legal-content :is(a.btn-default, button.btn-default)[data-page-consent="accept"]:hover,
body.page-legal .page-legal-panel .page-legal-content :is(a.btn-default, button.btn-default)[data-page-consent="accept"]:focus{
	background: #7B694E;
	color: var(--white-color);
}

body.page-legal .page-legal-panel .page-legal-content :is(a.btn-default, button.btn-default).btn-highlighted:hover::before,
body.page-legal .page-legal-panel .page-legal-content :is(a.btn-default, button.btn-default).btn-highlighted:focus::before,
body.page-legal .page-legal-panel .page-legal-content :is(a.btn-default, button.btn-default)[data-page-consent="accept"]:hover::before,
body.page-legal .page-legal-panel .page-legal-content :is(a.btn-default, button.btn-default)[data-page-consent="accept"]:focus::before{
	background-color: #7B694E;
}

body.page-legal .page-legal-panel .page-legal-content :is(a.btn-default, button.btn-default).btn-highlighted:hover::after,
body.page-legal .page-legal-panel .page-legal-content :is(a.btn-default, button.btn-default).btn-highlighted:focus::after,
body.page-legal .page-legal-panel .page-legal-content :is(a.btn-default, button.btn-default)[data-page-consent="accept"]:hover::after,
body.page-legal .page-legal-panel .page-legal-content :is(a.btn-default, button.btn-default)[data-page-consent="accept"]:focus::after{
	background: #7B694E;
}

body.page-legal .page-legal-panel .page-legal-content button.btn-default[data-page-consent="reject"]{
	background: #361319;
	color: var(--white-color);
	border: none;
}

body.page-legal .page-legal-panel .page-legal-content button.btn-default[data-page-consent="reject"]::before{
	background-color: #7B694E;
}

body.page-legal .page-legal-panel .page-legal-content button.btn-default[data-page-consent="reject"]::after{
	background: #280B0F;
	opacity: 1;
	left: 0;
	right: 0;
}

body.page-legal .page-legal-panel .page-legal-content button.btn-default[data-page-consent="reject"]:hover,
body.page-legal .page-legal-panel .page-legal-content button.btn-default[data-page-consent="reject"]:focus{
	background: #7B694E;
	color: var(--white-color);
	border: none;
}

body.page-legal .page-legal-panel .page-legal-content button.btn-default[data-page-consent="reject"]:hover::before,
body.page-legal .page-legal-panel .page-legal-content button.btn-default[data-page-consent="reject"]:focus::before{
	background-color: #7B694E;
}

body.page-legal .page-legal-panel .page-legal-content button.btn-default[data-page-consent="reject"]:hover::after,
body.page-legal .page-legal-panel .page-legal-content button.btn-default[data-page-consent="reject"]:focus::after{
	background: #7B694E;
	opacity: 1;
	left: 0;
	right: 0;
}

body.page-legal .page-legal + .main-footer,
body.page-legal > .main-footer{
	margin-top: 0;
}

body.page-legal .page-legal-panel .hm-cookie-settings-page{
	margin-top: 24px;
	padding: 28px 32px;
	border-radius: 20px;
	background: rgba(123, 105, 78, 0.2);
	border: 1px solid rgba(54, 19, 25, 0.12);
}

body.page-legal .page-legal-panel .hm-cookie-settings__prefs li{
	color: #361319;
}

body.page-legal .page-legal-panel .hm-cookie-settings__status{
	color: #7B694E;
}

@media (max-width: 767px){
	body.page-legal .page-legal-panel.bg-section{
		padding: 32px 20px;
		border-radius: 20px;
	}

	body.page-legal .page-legal{
		padding: 48px 0 80px;
	}

	body.page-legal .page-legal-panel .page-legal-content{
		min-width: 0;
		overflow-wrap: break-word;
		word-break: break-word;
	}

	body.page-legal .page-legal-panel .page-legal-content a.footer-email{
		overflow-wrap: anywhere;
		word-break: break-all;
	}

	body.page-legal .page-legal-panel .page-legal-content h2{
		font-size: 24px;
	}
}

.hm-cookie-settings-page{
	margin-top: 24px;
	padding: 28px 32px;
	border-radius: 20px;
	background: rgba(198, 179, 154, 0.12);
	border: 1px solid rgba(198, 179, 154, 0.22);
}

.hm-cookie-settings__prefs{
	list-style: none;
	margin: 0 0 24px;
	padding: 0;
}

.hm-cookie-settings__prefs li{
	margin-bottom: 16px;
	color: #361319;
}

.hm-cookie-settings__prefs label{
	display: flex;
	align-items: flex-start;
	gap: 10px;
	width: 100%;
	max-width: 100%;
	min-width: 0;
	cursor: pointer;
}

.hm-cookie-settings__prefs input[type="checkbox"]{
	margin-top: 4px;
	accent-color: #7B694E;
}

.hm-cookie-settings__actions{
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	width: 100%;
	max-width: 100%;
	min-width: 0;
}

.hm-cookie-settings__status{
	margin: 18px 0 0;
	color: #C6B39A;
	font-size: 15px;
	min-height: 1.4em;
}

@media (max-width: 767px){
	.hm-cookie-settings-page,
	body.page-legal .page-legal-panel .hm-cookie-settings-page{
		padding: 20px 16px;
		max-width: 100%;
		min-width: 0;
		box-sizing: border-box;
	}

	.hm-cookie-settings__prefs li{
		overflow-wrap: break-word;
		word-break: break-word;
	}

	.hm-cookie-settings__actions{
		flex-direction: column;
	}

	.hm-cookie-settings__actions .btn-default,
	body.page-legal .page-legal-panel .page-legal-content .hm-cookie-settings__actions :is(a.btn-default, button.btn-default){
		display: block;
		width: 100%;
		max-width: 100%;
		box-sizing: border-box;
		margin-right: 0;
		text-align: center;
		white-space: normal;
	}

	.hm-cookie-settings__actions .btn-default::before,
	body.page-legal .page-legal-panel .page-legal-content .hm-cookie-settings__actions :is(a.btn-default, button.btn-default)::before{
		display: none;
	}
}

/************************************/
/***   Services Hub Page — Theme    ***/
/************************************/

body.page-services-hub .page-header.bg-section.dark-section{
	background-color: #C6B39A !important;
	padding: 130px 0;
}

body.page-services-hub .page-header.bg-section.dark-section::before{
	background-color: #361319;
	opacity: 0.18;
}

body.page-services-hub .page-header.bg-section.dark-section .page-header-box :is(
	h1,
	h1.text-anime-style-3,
	h1.heading-sentence-case,
	h1.heading-word-initial-cap,
	h1.text-anime-style-3 .split-line,
	h1.heading-sentence-case .split-line,
	h1.heading-word-initial-cap .split-line,
	h1.text-anime-style-3 .split-line > div,
	h1.heading-sentence-case .split-line > div,
	h1.heading-word-initial-cap .split-line > div,
	h1.text-anime-style-3 .split-line > div > div,
	h1.heading-sentence-case .split-line > div > div,
	h1.heading-word-initial-cap .split-line > div > div
){
	color: #361319;
}

body.page-services-hub .page-header.bg-section.dark-section .page-header-box :is(
	ol li.breadcrumb-item,
	ol li.breadcrumb-item.active,
	ol .breadcrumb-item + .breadcrumb-item::before
){
	color: #7B694E;
}

body.page-services-hub .page-header.bg-section.dark-section .page-header-box ol li.breadcrumb-item a:hover,
body.page-services-hub .page-header.bg-section.dark-section .page-header-box ol li.breadcrumb-item a:focus{
	color: #361319;
}

body.page-services-hub h3{
	text-transform: uppercase;
}

body.page-services-hub h1.text-anime-style-3,
body.page-services-hub h2.text-anime-style-3,
body.page-services-hub h1.text-anime-style-3 .split-line,
body.page-services-hub h2.text-anime-style-3 .split-line,
body.page-services-hub h1.text-anime-style-3 .split-line > div,
body.page-services-hub h2.text-anime-style-3 .split-line > div,
body.page-services-hub h1.text-anime-style-3 .split-line > div > div,
body.page-services-hub h2.text-anime-style-3 .split-line > div > div,
body.page-services-hub .text-anime-style-3,
body.page-services-hub .text-anime-style-3 .split-line,
body.page-services-hub .text-anime-style-3 .split-line > div,
body.page-services-hub .text-anime-style-3 .split-line > div > div{
	text-transform: none !important;
}

body.page-services-hub .services-overview-intro{
	padding: 80px 0 40px;
}

body.page-services-hub .services-overview-intro .section-title h3{
	color: #7B694E;
}

body.page-services-hub .services-overview-intro .section-title > :is(h1, h2),
body.page-services-hub .services-overview-intro .section-title > :is(h1, h2).text-anime-style-3,
body.page-services-hub .services-overview-intro .section-title > :is(h1, h2).text-anime-style-3 .split-line,
body.page-services-hub .services-overview-intro .section-title > :is(h1, h2).text-anime-style-3 .split-line > div,
body.page-services-hub .services-overview-intro .section-title > :is(h1, h2).text-anime-style-3 .split-line > div > div,
body.page-services-hub .services-overview-intro .section-title > :is(h1, h2) :is(
	span,
	.text-acronym,
	.split-line,
	.split-line > div,
	.split-line > div > div,
	.split-line > div > div > div
){
	color: #C6B39A;
}

body.page-services-hub .services-overview-intro .section-title p{
	color: var(--white-color);
}

body.page-services-hub .section-title h3::before{
	background: none;
	background-color: currentColor;
	mask: url('../images/icon-sub-heading.svg') no-repeat center / cover;
	-webkit-mask: url('../images/icon-sub-heading.svg') no-repeat center / cover;
	filter: none;
}

body.page-services-hub #services-overview.page-services.bg-section{
	--accent-color: #7B694E;
	--divider-color: #7B694E1A;
	background-color: #C6B39A !important;
	background-image: none !important;
}

body.page-services-hub #services-overview .section-title h3{
	color: #7B694E;
}

body.page-services-hub #services-overview .section-title > :is(h1, h2),
body.page-services-hub #services-overview .section-title > :is(h1, h2).text-anime-style-3,
body.page-services-hub #services-overview .section-title > :is(h1, h2).text-anime-style-3 .split-line,
body.page-services-hub #services-overview .section-title > :is(h1, h2).text-anime-style-3 .split-line > div,
body.page-services-hub #services-overview .section-title > :is(h1, h2).text-anime-style-3 .split-line > div > div{
	color: #361319;
}

body.page-services-hub #services-overview .service-item{
	background: var(--white-color);
}

body.page-services-hub #services-overview .service-content-title h2,
body.page-services-hub #services-overview .service-content-title h2 a{
	color: #7B694E;
}

body.page-services-hub #services-overview .service-content-title h2 a:hover{
	color: #361319;
}

body.page-services-hub #services-overview .service-content p{
	color: #361319;
}

body.page-services-hub #services-overview .readmore-btn{
	background: #7B694E;
}

body.page-services-hub #services-overview .readmore-btn:hover,
body.page-services-hub #services-overview .readmore-btn:focus{
	background: #361319;
}

body:is(.page-services-hub, .page-service-detail) .what-we-do.bg-section{
	--accent-color: #7B694E;
	--divider-color: #7B694E1A;
	background-color: #C6B39A !important;
	background-image: none !important;
}

body.page-services-hub .what-we-do .section-title > :is(h1, h2),
body.page-services-hub .what-we-do .section-title > :is(h1, h2).text-anime-style-3,
body.page-services-hub .what-we-do .section-title > :is(h1, h2).text-anime-style-3 .split-line,
body.page-services-hub .what-we-do .section-title > :is(h1, h2).text-anime-style-3 .split-line > div,
body.page-services-hub .what-we-do .section-title > :is(h1, h2).text-anime-style-3 .split-line > div > div{
	color: #361319;
}

body.page-services-hub .what-we-do .section-title p{
	color: #7B694E;
}

body.page-services-hub .what-we-do .section-title p a{
	color: #361319;
}

body.page-services-hub .what-we-do .section-title p a:hover,
body.page-services-hub .what-we-do .section-title p a:focus{
	color: #361319;
}

body.page-services-hub .what-we-do .btn-default,
body.page-services-hub .what-we-do .btn-default.btn-highlighted{
	background: #7B694E;
	color: var(--white-color) !important;
	-webkit-text-fill-color: var(--white-color) !important;
}

body.page-services-hub .what-we-do .btn-default::before,
body.page-services-hub .what-we-do .btn-default.btn-highlighted::before{
	background-color: #361319 !important;
	background-image: url('../images/arrow-white.svg') !important;
	background-repeat: no-repeat !important;
	background-position: center center !important;
	background-size: 14px auto !important;
	transform: translateY(-50%);
	z-index: 2;
}

body.page-services-hub .what-we-do .btn-default:hover::before,
body.page-services-hub .what-we-do .btn-default:focus::before,
body.page-services-hub .what-we-do .btn-default.btn-highlighted:hover::before,
body.page-services-hub .what-we-do .btn-default.btn-highlighted:focus::before{
	background-color: #361319 !important;
	background-image: url('../images/arrow-white.svg') !important;
	background-repeat: no-repeat !important;
	background-position: center center !important;
	background-size: 14px auto !important;
	transform: translateY(-50%) rotate(45deg);
	z-index: 2;
}

body.page-services-hub .what-we-do .btn-default::after{
	background: #7B694E;
}

body.page-services-hub .what-we-do .btn-default:hover,
body.page-services-hub .what-we-do .btn-default:focus,
body.page-services-hub .what-we-do .btn-default.btn-highlighted:hover,
body.page-services-hub .what-we-do .btn-default.btn-highlighted:focus{
	background: transparent;
	color: var(--white-color) !important;
	-webkit-text-fill-color: var(--white-color) !important;
}

body.page-services-hub .what-we-do .btn-default:hover::after,
body.page-services-hub .what-we-do .btn-default:focus::after,
body.page-services-hub .what-we-do .btn-default.btn-highlighted:hover::after,
body.page-services-hub .what-we-do .btn-default.btn-highlighted:focus::after{
	background: #361319 !important;
}

body.page-service-detail .what-we-do .section-title > :is(h1, h2),
body.page-service-detail .what-we-do .section-title > :is(h1, h2).text-anime-style-3,
body.page-service-detail .what-we-do .section-title > :is(h1, h2).text-anime-style-3 .split-line,
body.page-service-detail .what-we-do .section-title > :is(h1, h2).text-anime-style-3 .split-line > div,
body.page-service-detail .what-we-do .section-title > :is(h1, h2).text-anime-style-3 .split-line > div > div{
	color: #361319;
}

body.page-service-detail .what-we-do .section-title p{
	color: #7B694E;
}

body.page-service-detail .what-we-do .section-title p a{
	color: #361319;
}

body.page-service-detail .what-we-do .section-title p a:hover,
body.page-service-detail .what-we-do .section-title p a:focus{
	color: #361319;
}

body.page-service-detail .what-we-do .btn-default,
body.page-service-detail .what-we-do .btn-default.btn-highlighted{
	background: #7B694E;
	color: var(--white-color);
}

body.page-service-detail .what-we-do .btn-default::before,
body.page-service-detail .what-we-do .btn-default.btn-highlighted::before{
	background-color: #361319 !important;
	background-image: url('../images/arrow-white.svg') !important;
	background-repeat: no-repeat !important;
	background-position: center center !important;
	background-size: 14px auto !important;
	transform: translateY(-50%);
	z-index: 2;
}

body.page-service-detail .what-we-do .btn-default:hover::before,
body.page-service-detail .what-we-do .btn-default:focus::before,
body.page-service-detail .what-we-do .btn-default.btn-highlighted:hover::before,
body.page-service-detail .what-we-do .btn-default.btn-highlighted:focus::before{
	background-color: #361319 !important;
	background-image: url('../images/arrow-white.svg') !important;
	background-repeat: no-repeat !important;
	background-position: center center !important;
	background-size: 14px auto !important;
	transform: translateY(-50%) rotate(45deg);
	z-index: 2;
}

body.page-service-detail .what-we-do .btn-default::after{
	background: #7B694E;
}

body.page-service-detail .what-we-do .btn-default:hover,
body.page-service-detail .what-we-do .btn-default:focus,
body.page-service-detail .what-we-do .btn-default.btn-highlighted:hover,
body.page-service-detail .what-we-do .btn-default.btn-highlighted:focus{
	background: transparent;
	color: var(--white-color);
}

body.page-service-detail .what-we-do .btn-default:hover::after,
body.page-service-detail .what-we-do .btn-default:focus::after,
body.page-service-detail .what-we-do .btn-default.btn-highlighted:hover::after,
body.page-service-detail .what-we-do .btn-default.btn-highlighted:focus::after{
	background: #361319 !important;
}

body.page-services-hub .dark-section .section-title h3{
	color: #7B694E;
}

body.page-services-hub .dark-section .section-title > :is(h1, h2),
body.page-services-hub .dark-section .section-title > :is(h1, h2).text-anime-style-3,
body.page-services-hub .dark-section .section-title > :is(h1, h2).text-anime-style-3 .split-line,
body.page-services-hub .dark-section .section-title > :is(h1, h2).text-anime-style-3 .split-line > div,
body.page-services-hub .dark-section .section-title > :is(h1, h2).text-anime-style-3 .split-line > div > div{
	color: #C6B39A;
}

body.page-services-hub .main-footer + *,
body.page-services-hub > .main-footer{
	margin-bottom: 60px;
}

@media only screen and (max-width: 991px){
	body.page-services-hub .page-header.bg-section.dark-section{
		padding: 130px 0;
	}

	body.page-services-hub .slicknav_btn,
	body.page-services-hub .slicknav_menu{
		background: #7B694E;
	}

	body.page-services-hub .services-overview-intro{
		padding: 50px 0 30px;
	}
}

/************************************/
/***  Service Detail Page — Theme   ***/
/************************************/

body.page-service-detail .page-header.bg-section.dark-section{
	background-color: #C6B39A !important;
	padding: 130px 0;
}

body.page-service-detail .page-header.bg-section.dark-section::before{
	background-color: #361319;
	opacity: 0.18;
}

body.page-service-detail .page-header.bg-section.dark-section .page-header-box :is(
	h1,
	h1.text-anime-style-3,
	h1.heading-sentence-case,
	h1.heading-word-initial-cap,
	h1.text-anime-style-3 .split-line,
	h1.heading-sentence-case .split-line,
	h1.heading-word-initial-cap .split-line,
	h1.text-anime-style-3 .split-line > div,
	h1.heading-sentence-case .split-line > div,
	h1.heading-word-initial-cap .split-line > div,
	h1.text-anime-style-3 .split-line > div > div,
	h1.heading-sentence-case .split-line > div > div,
	h1.heading-word-initial-cap .split-line > div > div
){
	color: #361319;
}

body.page-service-detail .page-header.bg-section.dark-section .page-header-box :is(
	ol li.breadcrumb-item,
	ol li.breadcrumb-item.active,
	ol .breadcrumb-item + .breadcrumb-item::before
){
	color: #7B694E;
}

body.page-service-detail .page-header.bg-section.dark-section .page-header-box ol li.breadcrumb-item a:hover,
body.page-service-detail .page-header.bg-section.dark-section .page-header-box ol li.breadcrumb-item a:focus{
	color: #361319;
}

body.page-service-detail h3{
	text-transform: uppercase;
}

body.page-service-detail h1.text-anime-style-3,
body.page-service-detail h2.text-anime-style-3,
body.page-service-detail h1.text-anime-style-3 .split-line,
body.page-service-detail h2.text-anime-style-3 .split-line,
body.page-service-detail h1.text-anime-style-3 .split-line > div,
body.page-service-detail h2.text-anime-style-3 .split-line > div,
body.page-service-detail h1.text-anime-style-3 .split-line > div > div,
body.page-service-detail h2.text-anime-style-3 .split-line > div > div,
body.page-service-detail .text-anime-style-3,
body.page-service-detail .text-anime-style-3 .split-line,
body.page-service-detail .text-anime-style-3 .split-line > div,
body.page-service-detail .text-anime-style-3 .split-line > div > div{
	text-transform: none !important;
}

/* Quote text — sentence case only (never all-caps from page h3 rules) */
:is(
	.why-choose-contact-quote,
	.why-choose-contact-item-content :is(h1, h2, h3, h4, h5, h6),
	.about-contact-box-content :is(h3, p, a),
	.contact-info-content p,
	.header-contact-now .contact-lines,
	.header-contact-now .contact-line,
	.footer-contact-item ul li a[href^="tel:"],
	.testimonial-item-content :is(p, blockquote),
	.post-entry blockquote :is(p, cite),
	.thank-you-signoff
){
	text-transform: none !important;
}

body.page-service-detail :is(
	.about-us,
	.what-we-do,
	.our-approach,
	.page-services,
	.why-choose-us,
	.how-it-work,
	.our-faqs
){
	--accent-color: #7B694E;
	--divider-color: #7B694E1A;
}

body.page-service-detail :is(
	.about-us,
	.what-we-do,
	.our-approach,
	.page-services,
	.why-choose-us,
	.how-it-work,
	.our-faqs
) .section-title h3{
	color: #7B694E;
}

body.page-service-detail :is(.about-us, .page-services, .how-it-work, .our-faqs) .section-title > :is(h1, h2),
body.page-service-detail :is(.about-us, .page-services, .how-it-work, .our-faqs) .section-title > :is(h1, h2).text-anime-style-3,
body.page-service-detail :is(.about-us, .page-services, .how-it-work, .our-faqs) .section-title > :is(h1, h2).text-anime-style-3 .split-line,
body.page-service-detail :is(.about-us, .page-services, .how-it-work, .our-faqs) .section-title > :is(h1, h2).text-anime-style-3 .split-line > div,
body.page-service-detail :is(.about-us, .page-services, .how-it-work, .our-faqs) .section-title > :is(h1, h2).text-anime-style-3 .split-line > div > div{
	color: #C6B39A;
}

@media only screen and (min-width: 992px){
	body.page-service-detail .page-services:has(.service-item) .section-title > :is(h1, h2),
	body.page-service-detail .page-services:has(.service-item) .section-title > :is(h1, h2).text-anime-style-3,
	body.page-service-detail .page-services:has(.service-item) .section-title > :is(h1, h2).text-anime-style-3 .split-line,
	body.page-service-detail .page-services:has(.service-item) .section-title > :is(h1, h2).text-anime-style-3 .split-line > div,
	body.page-service-detail .page-services:has(.service-item) .section-title > :is(h1, h2).text-anime-style-3 .split-line > div > div{
		color: #361319;
	}
}

body.page-service-detail .dark-section .section-title h3{
	color: #7B694E;
}

body.page-service-detail .dark-section .section-title > :is(h1, h2),
body.page-service-detail .dark-section .section-title > :is(h1, h2).text-anime-style-3,
body.page-service-detail .dark-section .section-title > :is(h1, h2).text-anime-style-3 .split-line,
body.page-service-detail .dark-section .section-title > :is(h1, h2).text-anime-style-3 .split-line > div,
body.page-service-detail .dark-section .section-title > :is(h1, h2).text-anime-style-3 .split-line > div > div{
	color: #C6B39A;
}

body.page-service-detail .why-choose-us.bg-section,
body.page-service-detail .our-approach.bg-section:not(.service-pricing-panel),
body.page-service-detail .what-we-do.bg-section,
body.page-service-detail .page-services.bg-section,
body.page-service-detail .page-addons.bg-section,
body.page-service-detail .about-us.bg-section{
	background-color: #C6B39A !important;
	background-image: none !important;
}

body.services-page .page-services:has(.service-item):not(#services-nav):not(#weight-loss-prescriptions),
body.services-page .page-addons:has(.service-item){
	background-color: #C6B39A !important;
	background-image: none !important;
}

body.page-service-detail .page-services.bg-section .section-title h3,
body.page-service-detail .page-addons.bg-section .section-title h3,
body.page-service-detail .about-us.bg-section .section-title h3{
	color: #7B694E;
}

body.page-service-detail .page-services.bg-section .section-title > :is(h1, h2),
body.page-service-detail .page-addons.bg-section .section-title > :is(h1, h2),
body.page-service-detail .about-us.bg-section .section-title > :is(h1, h2){
	color: #361319;
}

body.page-service-detail .page-services.bg-section :is(.section-title p, .about-experience-list ul li),
body.page-service-detail .page-addons.bg-section :is(.section-title p, .about-experience-list ul li),
body.page-service-detail .about-us.bg-section :is(.section-title p, .about-experience-list ul li){
	color: #361319;
}

body.page-service-detail .page-services :is(.service-card-detail p, .service-card-detail li),
body.page-service-detail .page-addons.bg-section :is(.service-card-detail p, .service-card-detail li){
	color: #7B694E;
}

body.page-service-detail .page-services.bg-section .service-item,
body.page-service-detail .page-addons.bg-section .service-item,
body.page-service-detail .page-addons.bg-section .addon-card{
	background: var(--white-color) !important;
	background-color: var(--white-color) !important;
}

body.page-service-detail .page-services .service-content-title h2,
body.page-service-detail .page-services .service-content-title h2 a,
body.page-service-detail .page-addons.bg-section .service-content-title h2,
body.page-service-detail .page-addons.bg-section .service-content-title h2 a{
	color: #361319;
}

body.page-service-detail .page-services.bg-section .readmore-btn,
body.page-service-detail .page-addons.bg-section .readmore-btn{
	background: #7B694E;
}

body.page-service-detail .page-services.bg-section .readmore-btn:hover,
body.page-service-detail .page-services.bg-section .readmore-btn:focus,
body.page-service-detail .page-addons.bg-section .readmore-btn:hover,
body.page-service-detail .page-addons.bg-section .readmore-btn:focus{
	background: #361319;
}

body.page-service-detail .bg-section:not(.dark-section) .section-title > :is(h1, h2),
body.page-service-detail .bg-section:not(.dark-section) .section-title > :is(h1, h2).text-anime-style-3,
body.page-service-detail .bg-section:not(.dark-section) .section-title > :is(h1, h2).text-anime-style-3 .split-line,
body.page-service-detail .bg-section:not(.dark-section) .section-title > :is(h1, h2).text-anime-style-3 .split-line > div,
body.page-service-detail .bg-section:not(.dark-section) .section-title > :is(h1, h2).text-anime-style-3 .split-line > div > div{
	color: #361319;
}

body.page-service-detail .section-title h3::before{
	background: none;
	background-color: currentColor;
	mask: url('../images/icon-sub-heading.svg') no-repeat center / cover;
	-webkit-mask: url('../images/icon-sub-heading.svg') no-repeat center / cover;
	filter: none;
}

body.page-service-detail :is(.about-us, .page-services, .how-it-work, .our-faqs) :is(
	.section-title p,
	.about-us-content > p,
	.about-us-content > p strong,
	.about-experience-list ul li,
	.how-work-step-content h3,
	.how-work-step-content p
){
	color: var(--white-color);
}

body.page-service-detail .bg-section:not(.dark-section):not(.what-we-do) :is(
	.section-title p,
	.about-experience-list ul li,
	.mission-vison-content p,
	.why-choose-contact-item-content h3,
	.why-choose-contact-item-content p
){
	color: #361319;
}

body.page-service-detail .what-we-do.bg-section .section-title p{
	color: #7B694E;
}

body.page-service-detail .what-we-do.bg-section .section-title p a{
	color: #361319;
}

body.page-service-detail .what-we-do.bg-section .section-title p a:hover,
body.page-service-detail .what-we-do.bg-section .section-title p a:focus{
	color: #361319;
}

body.page-service-detail > .about-us:has(+ .what-we-do.service-approach-panel){
	margin-bottom: 0;
}

body.page-service-detail > .about-us.bg-section:has(+ .what-we-do.service-approach-panel){
	margin-bottom: 0;
}

body.page-service-detail .what-we-do.service-approach-panel.bg-section{
	background-color: transparent !important;
	background-image: none !important;
	padding-top: 0 !important;
	padding-bottom: 70px !important;
	margin-top: 80px;
	margin-bottom: 80px;
}

body.page-service-detail .what-we-do.service-approach-panel .section-title h3{
	color: #7B694E;
}

body.page-service-detail .what-we-do.service-approach-panel .section-title > :is(h1, h2),
body.page-service-detail .what-we-do.service-approach-panel .section-title > :is(h1, h2).text-anime-style-3,
body.page-service-detail .what-we-do.service-approach-panel .section-title > :is(h1, h2).text-anime-style-3 .split-line,
body.page-service-detail .what-we-do.service-approach-panel .section-title > :is(h1, h2).text-anime-style-3 .split-line > div,
body.page-service-detail .what-we-do.service-approach-panel .section-title > :is(h1, h2).text-anime-style-3 .split-line > div > div{
	color: #C6B39A;
}

body.page-service-detail .what-we-do.service-approach-panel .section-title p{
	color: var(--white-color);
}

body.page-service-detail .what-we-do.service-approach-panel .section-title.section-title-center{
	width: 100%;
	max-width: 960px;
	text-align: center;
	margin: 0 auto;
}

body.page-service-detail .what-we-do.service-approach-panel .section-title.section-title-center h3{
	display: inline-block;
	margin-left: auto;
	margin-right: auto;
}

body.page-service-detail .what-we-do.service-approach-panel .section-title.section-title-center p{
	text-align: center;
}

body.page-service-detail .what-we-do.service-approach-panel .section-title .text-anime-style-3 .split-line{
	text-align: center;
}

body.page-service-detail .what-we-do.service-approach-panel .section-title .text-anime-style-3 .split-line > div{
	display: flex;
	justify-content: center;
}

body.page-service-detail #pricing-transparency .section-title.section-title-center{
	width: 100%;
	max-width: 960px;
	text-align: center;
	margin: 0 auto;
}

body.page-service-detail #pricing-transparency .section-title.section-title-center h3{
	display: inline-block;
	margin-left: auto;
	margin-right: auto;
}

body.page-service-detail #pricing-transparency .section-title.section-title-center p{
	text-align: center;
}

body.page-service-detail #weight-loss-prescriptions.page-services.bg-section{
	background-color: transparent !important;
	background-image: none !important;
}

body.page-service-detail #weight-loss-prescriptions.page-services.bg-section > .container{
	background: transparent !important;
	background-color: transparent !important;
	background-image: none !important;
}

body.page-service-detail > .about-us#medical-wellness + .what-we-do.service-approach-panel .section-title.section-title-center{
	max-width: 1080px;
}

body.page-service-detail #iv-drip-menu .section-row .section-title.section-title-center{
	max-width: 1080px;
}

body.page-service-detail #iv-drip-menu .section-row .section-title.section-title-center p{
	text-align: center;
}

body.page-service-detail .our-approach .mission-vison-content h3{
	color: #7B694E;
}

body.page-service-detail .service-pricing-panel .our-approach-body{
	background-color: #ffffff;
	border-color: var(--divider-color);
}

body.page-service-detail .service-pricing-panel .mission-vison-item{
	border-bottom-color: var(--divider-color);
}

body.page-service-detail .service-pricing-panel .mission-vison-content h3{
	color: #7B694E;
}

body.page-service-detail .service-pricing-panel .mission-vison-content p{
	color: #361319;
}

body.page-service-detail .service-pricing-panel .mission-vison-item .icon-box::before{
	background-color: #7B694E;
}

body.page-service-detail .why-choose-us .why-choose-contact-item-content p a{
	color: #361319;
}

body.page-service-detail .why-choose-us .why-choose-contact-item-content p a:hover,
body.page-service-detail .why-choose-us .why-choose-contact-item-content p a:focus{
	color: #7B694E;
}

body.page-service-detail .about-us .about-us-images::before{
	content: '';
	position: absolute;
	top: 30px;
	left: 70px;
	width: 76px;
	height: 77px;
	background-color: #7B694E;
	mask: url('../images/about-us-image-bg-shape.svg') no-repeat center / contain;
	-webkit-mask: url('../images/about-us-image-bg-shape.svg') no-repeat center / contain;
	pointer-events: none;
	z-index: 15;
}

body.page-service-detail .about-us .about-us-images{
	position: relative;
	background: none;
}

body.page-service-detail .about-us .btn-default{
	background: #7B694E;
	color: var(--white-color);
}

body.page-service-detail .about-us .btn-default::before,
body.page-service-detail .about-us .btn-default:hover::before,
body.page-service-detail .about-us .btn-default:focus::before{
	background-color: #280B0F;
	background-image: url('../images/arrow-white.svg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 14px auto;
}

body.page-service-detail .about-us .btn-default::after{
	background: #280B0F;
}

body.page-service-detail .about-us .btn-default:hover,
body.page-service-detail .about-us .btn-default:focus{
	background: transparent;
	color: var(--white-color);
}

body.page-service-detail .about-us .about-contact-box-content p,
body.page-service-detail .about-us .about-contact-box-content p a,
body.page-service-detail .about-us .about-contact-box-content h3,
body.page-service-detail .about-us .about-contact-box-content h3 a{
	color: #361319;
}

body.page-service-detail .about-us .about-contact-box-content p a:hover,
body.page-service-detail .about-us .about-contact-box-content h3:hover a{
	color: #7B694E;
}

body.page-service-detail .page-services .service-item{
	background: var(--white-color);
}

body.page-service-detail .page-services .readmore-btn{
	background: #7B694E;
}

body.page-service-detail .page-services .readmore-btn:hover,
body.page-service-detail .page-services .readmore-btn:focus{
	background: #361319;
}

body.page-service-detail .how-it-work .how-work-step-item .icon-box{
	background-color: #7B694E;
}

body.page-service-detail .how-it-work .how-work-step-item .icon-box::before{
	transform: scale(0);
}

body.page-service-detail .how-it-work .btn-default{
	background: #7B694E;
	color: var(--white-color);
}

body.page-service-detail .how-it-work .btn-default::before{
	background-color: #C6B39A;
	background-image: url('../images/arrow-primary.svg');
}

body.page-service-detail .how-it-work .btn-default::after{
	background: #C6B39A;
}

body.page-service-detail .how-it-work .btn-default:hover,
body.page-service-detail .how-it-work .btn-default:focus{
	background: transparent;
	color: #361319;
}

body.page-service-detail .how-it-work .btn-default:hover::after,
body.page-service-detail .how-it-work .btn-default:focus::after{
	background: #C6B39A;
}

body.page-service-detail .how-it-work .btn-default:hover::before,
body.page-service-detail .how-it-work .btn-default:focus::before{
	background-color: #C6B39A;
	background-image: url('../images/arrow-primary.svg');
}

body.page-service-detail .our-testimonials :is(
	.testimonial-author-details h3,
	.testimonial-author .author-content h3
){
	color: #7B694E;
}

body.page-service-detail .our-testimonials :is(
	.testimonial-author-details p,
	.testimonial-author .author-content p,
	.testimonial-item-content p,
	.our-testimonial-content .section-title p
){
	color: #C6B39A;
}

body.page-service-detail .our-faqs .faq-accordion .accordion-item{
	border-bottom-color: #7B694E33;
}

body.page-service-detail .our-faqs .faq-accordion .accordion-header .accordion-button{
	color: #C6B39A;
}

body.page-service-detail .our-faqs .faq-accordion .accordion-button:not(.collapsed){
	color: #7B694E;
}

body.page-service-detail .our-faqs .faq-accordion .accordion-item .accordion-button::after,
body.page-service-detail .our-faqs .faq-accordion .accordion-item .accordion-button.collapsed::after{
	color: #C6B39A;
}

body.page-service-detail .our-faqs .faq-accordion .accordion-button:not(.collapsed)::after{
	color: #7B694E;
}

body.page-service-detail .our-faqs .faq-accordion .accordion-item .accordion-body p{
	color: var(--white-color);
}

body.page-service-detail > .main-footer{
	margin-bottom: 60px;
}

@media only screen and (max-width: 991px){
	body.page-service-detail .page-header.bg-section.dark-section{
		padding: 130px 0;
	}

	body.page-service-detail .slicknav_btn,
	body.page-service-detail .slicknav_menu{
		background: #7B694E;
	}
}

/************************************/
/***  Sitewide Header Icon Theme    ***/
/************************************/

header.main-header .header-contact-now i,
header.main-header .header-contact-now:hover i,
header.main-header .header-contact-now:focus i,
header.main-header .header-contact-now:active i{
	background-color: #7B694E !important;
	color: var(--white-color) !important;
	-webkit-text-fill-color: var(--white-color) !important;
	box-shadow: none !important;
	width: 34px !important;
	height: 34px !important;
	font-size: 15px !important;
}

/************************************/
/*** Desktop Services Submenu Theme ***/
/************************************/

@media only screen and (min-width: 992px){
	body.home-page > header.main-header .header-sticky .main-menu ul ul li a,
	body.home-page > header.main-header .header-sticky .main-menu ul ul li a.nav-link,
	body.home-page > header.main-header .header-sticky .main-menu ul ul ul li a,
	body.home-page > header.main-header .header-sticky .main-menu ul ul ul li a.nav-link,
	body.home-page > header.main-header[data-nav-color="7B694E"] .header-sticky .main-menu ul ul li a,
	body.home-page > header.main-header[data-nav-color="7B694E"] .header-sticky .main-menu ul ul li a.nav-link,
	body.home-page > header.main-header[data-nav-color="7B694E"] .header-sticky .main-menu ul ul ul li a,
	body.home-page > header.main-header[data-nav-color="7B694E"] .header-sticky .main-menu ul ul ul li a.nav-link,
	body:not(.home-page) > header.main-header .header-sticky .main-menu ul ul li a,
	body:not(.home-page) > header.main-header .header-sticky .main-menu ul ul li a.nav-link,
	body:not(.home-page) > header.main-header .header-sticky .main-menu ul ul ul li a,
	body:not(.home-page) > header.main-header .header-sticky .main-menu ul ul ul li a.nav-link,
	body:not(.home-page) > header.main-header[data-nav-color="7B694E"] .header-sticky .main-menu ul ul li a,
	body:not(.home-page) > header.main-header[data-nav-color="7B694E"] .header-sticky .main-menu ul ul li a.nav-link,
	body:not(.home-page) > header.main-header[data-nav-color="7B694E"] .header-sticky .main-menu ul ul ul li a,
	body:not(.home-page) > header.main-header[data-nav-color="7B694E"] .header-sticky .main-menu ul ul ul li a.nav-link,
	body:is(.page-about, .page-contact, .page-book-appointment, .page-legal, .page-services-hub, .page-service-detail) > header.main-header .header-sticky .main-menu ul ul li a,
	body:is(.page-about, .page-contact, .page-book-appointment, .page-legal, .page-services-hub, .page-service-detail) > header.main-header .header-sticky .main-menu ul ul li a.nav-link,
	body:is(.page-about, .page-contact, .page-book-appointment, .page-legal, .page-services-hub, .page-service-detail) > header.main-header .header-sticky .main-menu ul ul ul li a,
	body:is(.page-about, .page-contact, .page-book-appointment, .page-legal, .page-services-hub, .page-service-detail) > header.main-header .header-sticky .main-menu ul ul ul li a.nav-link,
	header.main-header .main-menu ul ul li a,
	header.main-header .main-menu ul ul li a.nav-link,
	header.main-header .main-menu ul ul ul li a,
	header.main-header .main-menu ul ul ul li a.nav-link{
		color: #361319 !important;
		-webkit-text-fill-color: #361319 !important;
	}

	body.home-page > header.main-header .header-sticky .main-menu ul ul li a:hover,
	body.home-page > header.main-header .header-sticky .main-menu ul ul li a:focus,
	body.home-page > header.main-header .header-sticky .main-menu ul ul ul li a:hover,
	body.home-page > header.main-header .header-sticky .main-menu ul ul ul li a:focus,
	body:not(.home-page) > header.main-header .header-sticky .main-menu ul ul li a:hover,
	body:not(.home-page) > header.main-header .header-sticky .main-menu ul ul li a:focus,
	body:not(.home-page) > header.main-header .header-sticky .main-menu ul ul ul li a:hover,
	body:not(.home-page) > header.main-header .header-sticky .main-menu ul ul ul li a:focus,
	body:is(.page-about, .page-contact, .page-book-appointment, .page-legal, .page-services-hub, .page-service-detail) > header.main-header .header-sticky .main-menu ul ul li a:hover,
	body:is(.page-about, .page-contact, .page-book-appointment, .page-legal, .page-services-hub, .page-service-detail) > header.main-header .header-sticky .main-menu ul ul li a:focus,
	body:is(.page-about, .page-contact, .page-book-appointment, .page-legal, .page-services-hub, .page-service-detail) > header.main-header .header-sticky .main-menu ul ul ul li a:hover,
	body:is(.page-about, .page-contact, .page-book-appointment, .page-legal, .page-services-hub, .page-service-detail) > header.main-header .header-sticky .main-menu ul ul ul li a:focus,
	header.main-header .main-menu ul ul li a:hover,
	header.main-header .main-menu ul ul li a:focus,
	header.main-header .main-menu ul ul ul li a:hover,
	header.main-header .main-menu ul ul ul li a:focus{
		color: #361319 !important;
		-webkit-text-fill-color: #361319 !important;
	}

	/* Nested submenu arrow (e.g. Medical Wellness) — dark on gold panel */
	header.main-header .main-menu ul ul li.submenu > a:after,
	header.main-header .main-menu ul li.submenu ul li.submenu > a:after,
	body.home-page > header.main-header .header-sticky .main-menu ul ul li.submenu > a:after,
	body.home-page > header.main-header .header-sticky .main-menu ul li.submenu ul li.submenu > a:after,
	body.home-page > header.main-header[data-nav-color="7B694E"] .header-sticky .main-menu ul ul li.submenu > a:after,
	body.home-page > header.main-header[data-nav-color="361319"] .header-sticky .main-menu ul ul li.submenu > a:after{
		color: #361319 !important;
		-webkit-text-fill-color: #361319 !important;
		opacity: 1 !important;
	}

	header.main-header .main-menu ul ul li.submenu > a:hover:after,
	header.main-header .main-menu ul ul li.submenu > a:focus:after,
	body.home-page > header.main-header .header-sticky .main-menu ul ul li.submenu > a:hover:after,
	body.home-page > header.main-header .header-sticky .main-menu ul ul li.submenu > a:focus:after{
		color: #361319 !important;
		-webkit-text-fill-color: #361319 !important;
	}
}

/* Inner pages — smooth nav color transitions on scroll */
body:not(.home-page) > header.main-header .header-sticky :is(
	.main-menu .nav-menu-wrapper > ul > li > a.nav-link,
	.main-menu .nav-menu-wrapper > ul > li > a,
	.header-contact-now,
	.header-contact-now .contact-lines,
	.main-menu .nav-menu-wrapper > ul > li.submenu > a:after
){
	transition: color 0.25s ease, -webkit-text-fill-color 0.25s ease;
}

/************************************/
/*** Header Nav — light / dark bg   ***/
/************************************/

/* Light nav on dark backgrounds */
header.main-header[data-nav-color="7B694E"] .header-sticky :is(
	.main-menu .nav-menu-wrapper > ul > li > a.nav-link,
	.main-menu .nav-menu-wrapper > ul > li > a,
	.header-contact-now,
	.header-contact-now .contact-lines,
	.main-menu .nav-menu-wrapper > ul > li.submenu > a:after
),
header.main-header[data-nav-color="7B694E"] .header-sticky.active :is(
	.main-menu .nav-menu-wrapper > ul > li > a.nav-link,
	.main-menu .nav-menu-wrapper > ul > li > a,
	.header-contact-now,
	.header-contact-now .contact-lines,
	.main-menu .nav-menu-wrapper > ul > li.submenu > a:after
){
	color: #7B694E !important;
	-webkit-text-fill-color: #7B694E !important;
}

header.main-header[data-nav-color="7B694E"] .header-sticky .main-menu .nav-menu-wrapper > ul > li > a:hover,
header.main-header[data-nav-color="7B694E"] .header-sticky .main-menu .nav-menu-wrapper > ul > li > a:focus,
header.main-header[data-nav-color="7B694E"] .header-sticky .header-contact-now:hover,
header.main-header[data-nav-color="7B694E"] .header-sticky .header-contact-now:focus,
header.main-header[data-nav-color="7B694E"] .header-sticky.active .main-menu .nav-menu-wrapper > ul > li > a:hover,
header.main-header[data-nav-color="7B694E"] .header-sticky.active .main-menu .nav-menu-wrapper > ul > li > a:focus,
header.main-header[data-nav-color="7B694E"] .header-sticky.active .header-contact-now:hover,
header.main-header[data-nav-color="7B694E"] .header-sticky.active .header-contact-now:focus{
	color: #7B694E !important;
	-webkit-text-fill-color: #7B694E !important;
}

/* Dark nav on light / cream backgrounds */
header.main-header[data-nav-color="361319"] .header-sticky :is(
	.main-menu .nav-menu-wrapper > ul > li > a.nav-link,
	.main-menu .nav-menu-wrapper > ul > li > a,
	.header-contact-now,
	.header-contact-now .contact-lines,
	.main-menu .nav-menu-wrapper > ul > li.submenu > a:after
),
header.main-header[data-nav-color="361319"] .header-sticky.active :is(
	.main-menu .nav-menu-wrapper > ul > li > a.nav-link,
	.main-menu .nav-menu-wrapper > ul > li > a,
	.header-contact-now,
	.header-contact-now .contact-lines,
	.main-menu .nav-menu-wrapper > ul > li.submenu > a:after
){
	color: #361319 !important;
	-webkit-text-fill-color: #361319 !important;
}

header.main-header[data-nav-color="361319"] .header-sticky .main-menu .nav-menu-wrapper > ul > li > a:hover,
header.main-header[data-nav-color="361319"] .header-sticky .main-menu .nav-menu-wrapper > ul > li > a:focus,
header.main-header[data-nav-color="361319"] .header-sticky .header-contact-now:hover,
header.main-header[data-nav-color="361319"] .header-sticky .header-contact-now:focus,
header.main-header[data-nav-color="361319"] .header-sticky.active .main-menu .nav-menu-wrapper > ul > li > a:hover,
header.main-header[data-nav-color="361319"] .header-sticky.active .main-menu .nav-menu-wrapper > ul > li > a:focus,
header.main-header[data-nav-color="361319"] .header-sticky.active .header-contact-now:hover,
header.main-header[data-nav-color="361319"] .header-sticky.active .header-contact-now:focus{
	color: #7B694E !important;
	-webkit-text-fill-color: #7B694E !important;
}

header.main-header.header-over-page-bg:not([data-nav-color="361319"]) .header-sticky :is(
	.main-menu .nav-menu-wrapper > ul > li > a.nav-link,
	.main-menu .nav-menu-wrapper > ul > li > a,
	.header-contact-now,
	.header-contact-now .contact-lines,
	.main-menu .nav-menu-wrapper > ul > li.submenu > a:after
){
	color: #7B694E !important;
	-webkit-text-fill-color: #7B694E !important;
}

header.main-header.header-over-image-bg .header-sticky :is(
	.main-menu .nav-menu-wrapper > ul > li > a.nav-link,
	.main-menu .nav-menu-wrapper > ul > li > a,
	.header-contact-now,
	.header-contact-now .contact-lines,
	.main-menu .nav-menu-wrapper > ul > li.submenu > a:after
){
	color: #361319 !important;
	-webkit-text-fill-color: #361319 !important;
}

/* Header nav — unified typography (all pages match index) */
header.main-header .header-sticky .main-menu .nav-menu-wrapper > ul > li > a,
header.main-header .header-sticky .main-menu .nav-menu-wrapper > ul > li > a.nav-link,
header.main-header .header-sticky .main-menu ul ul li a,
header.main-header .header-sticky .main-menu ul ul li a.nav-link{
	font-family: 'Sora', sans-serif !important;
	font-style: normal !important;
	font-weight: 400 !important;
	font-size: 16px !important;
	line-height: 1em !important;
	font-variation-settings: 'wght' 400;
}

header.main-header .header-sticky .header-contact-now,
header.main-header .header-sticky .header-contact-now .contact-lines{
	font-family: 'Sora', sans-serif !important;
	font-style: normal !important;
	font-weight: 400 !important;
	font-size: 16px !important;
	line-height: 1em !important;
	font-variation-settings: 'wght' 400;
}

/************************************/
/*** Inner pages — header blur fix  ***/
/************************************/

body:not(.home-page) > header.main-header{
	position: fixed !important;
	top: 0 !important;
	left: 0 !important;
	right: 0 !important;
	width: 100vw !important;
	margin-left: calc(50% - 50vw) !important;
	margin-right: calc(50% - 50vw) !important;
	z-index: 1000 !important;
	padding-bottom: 0 !important;
	min-height: var(--header-blur-height, 108px);
	height: auto !important;
	overflow: visible !important;
	isolation: auto !important;
	background: linear-gradient(
		to bottom,
		rgba(40, 11, 15, 0.45) 0%,
		rgba(40, 11, 15, 0.2) 62%,
		rgba(40, 11, 15, 0) 100%
	) !important;
	backdrop-filter: blur(12px) saturate(125%) !important;
	-webkit-backdrop-filter: blur(12px) saturate(125%) !important;
}

body:not(.home-page) > header.main-header .header-sticky,
body:not(.home-page) > header.main-header .header-sticky.active{
	position: relative !important;
	top: auto !important;
	left: auto !important;
	right: auto !important;
	width: 100% !important;
	max-width: none !important;
	transform: none !important;
	isolation: auto !important;
	overflow: visible !important;
	background: transparent !important;
	border: none !important;
	box-shadow: none !important;
	border-radius: 0 !important;
	z-index: 1 !important;
	backdrop-filter: none !important;
	-webkit-backdrop-filter: none !important;
}

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))){
	body:not(.home-page) > header.main-header{
		background: rgba(40, 11, 15, 0.82) !important;
	}
}

body:not(.home-page) > header.main-header::before{
	content: none !important;
	display: none !important;
}

.header-backdrop-blur{
	display: none !important;
}

body:not(.home-page) > header.main-header .header-sticky::before,
body:not(.home-page) > header.main-header .header-sticky.active::before{
	content: none !important;
	display: none !important;
}

body:not(.home-page) > header.main-header .header-sticky > *{
	position: relative;
	z-index: 1;
}

body:not(.home-page) > header.main-header .navbar{
	padding-top: 34px !important;
	padding-bottom: 12px !important;
}

body:not(.home-page) > header.main-header .navbar .container-fluid{
	padding-left: 48px !important;
	padding-right: 48px !important;
	width: 100% !important;
	max-width: 100% !important;
	box-sizing: border-box;
}

@media only screen and (max-width: 991px){
	body:not(.home-page) > header.main-header.header-over-page-bg,
	body:not(.home-page) > header.main-header.header-over-page-bg .header-sticky,
	body:not(.home-page) > header.main-header.header-over-page-bg .header-sticky.active,
	body:not(.home-page) > header.main-header.header-over-page-bg .navbar,
	body:not(.home-page) > header.main-header.header-over-page-bg .navbar .container-fluid{
		padding-top: 0 !important;
		margin-top: 0 !important;
		top: 0 !important;
	}

	body:not(.home-page) > header.main-header.header-over-image-bg,
	body:not(.home-page) > header.main-header.header-over-image-bg .header-sticky,
	body:not(.home-page) > header.main-header.header-over-image-bg .header-sticky.active,
	body:not(.home-page) > header.main-header.header-over-image-bg .navbar,
	body:not(.home-page) > header.main-header.header-over-image-bg .navbar .container-fluid{
		padding-top: 0 !important;
		margin-top: 0 !important;
		top: 0 !important;
	}

	body:not(.home-page) > header.main-header.header-over-page-bg{
		padding-top: 0 !important;
	}

	body:not(.home-page) > header.main-header.header-over-image-bg{
		padding-top: 0 !important;
	}

	body:not(.home-page) > header.main-header{
		padding-top: 0 !important;
		top: 0 !important;
	}

	body:not(.home-page) > header.main-header .header-sticky,
	body:not(.home-page) > header.main-header .header-sticky.active,
	body:not(.home-page) > header.main-header .header-sticky.hide{
		position: fixed !important;
		top: 0 !important;
		left: 0 !important;
		right: 0 !important;
		width: 100% !important;
		transform: translateY(0) !important;
		margin-top: 0 !important;
	}

	body:not(.home-page) > header.main-header .navbar .container-fluid{
		margin-top: 0 !important;
		padding-left: 14px !important;
		padding-right: 14px !important;
	}

	body:not(.home-page) > header.main-header .navbar{
		padding-top: 26px !important;
		padding-bottom: 10px !important;
	}

	body:not(.home-page) > header.main-header.header-over-page-bg .navbar{
		padding-top: 26px !important;
	}

	body:not(.home-page) > header.main-header.header-over-image-bg .navbar{
		padding-top: 26px !important;
	}

	body:not(.home-page) > header.main-header .navbar-brand img{
		max-height: 56px !important;
	}
}

@media only screen and (max-width: 767px){
	body:not(.home-page) > header.main-header .navbar .container-fluid{
		padding-left: 12px !important;
		padding-right: 12px !important;
	}
}

body:not(.home-page) .page-header.bg-section.dark-section{
	--viewport-cover-offset: env(safe-area-inset-top, 0px);
	box-sizing: border-box;
	display: flex;
	align-items: center;
	overflow: hidden;
}

@media only screen and (min-width: 992px){
	body:not(.home-page) .page-header.bg-section.dark-section{
		margin-top: calc(-1 * var(--viewport-cover-offset)) !important;
		padding-top: calc(var(--viewport-cover-offset) + var(--header-blur-height, 108px) + clamp(44px, 7vh, 130px)) !important;
		padding-bottom: clamp(44px, 7vh, 130px) !important;
		height: calc(var(--viewport-vh-px, 100lvh) + var(--viewport-cover-offset));
		min-height: calc(var(--viewport-vh-px, 100lvh) + var(--viewport-cover-offset));
		max-height: calc(var(--viewport-vh-px, 100lvh) + var(--viewport-cover-offset));
	}
}

body:not(.home-page) .page-header.bg-section.dark-section > .container{
	width: 100%;
	min-height: 0;
	flex: 1 1 auto;
	overflow: hidden;
}

body:not(.home-page) .page-header .wow{
	visibility: visible !important;
	animation: none !important;
	opacity: 1 !important;
	transform: none !important;
}

@media only screen and (min-width: 992px){
	body.home-page > header.main-header[data-nav-color="361319"] :is(.header-sticky, .header-sticky.active) :is(
		.main-menu .nav-menu-wrapper > ul > li > a.nav-link,
		.main-menu .nav-menu-wrapper > ul > li > a,
		.main-menu .nav-menu-wrapper > ul > li.submenu > a:after,
		.header-contact-now,
		.header-contact-now .contact-lines,
		.header-contact-now .spa-contact-phone,
		.header-contact-now .spa-contact-phone-line,
		.header-contact-now .spa-contact-phone-line a
	){
		color: #361319 !important;
		-webkit-text-fill-color: #361319 !important;
	}

	body.home-page > header.main-header[data-nav-color="7B694E"] :is(.header-sticky, .header-sticky.active) :is(
		.main-menu .nav-menu-wrapper > ul > li > a.nav-link,
		.main-menu .nav-menu-wrapper > ul > li > a,
		.main-menu .nav-menu-wrapper > ul > li.submenu > a:after,
		.header-contact-now,
		.header-contact-now .contact-lines,
		.header-contact-now .spa-contact-phone,
		.header-contact-now .spa-contact-phone-line,
		.header-contact-now .spa-contact-phone-line a
	){
		color: #7B694E !important;
		-webkit-text-fill-color: #7B694E !important;
	}
}

/* Mobile: section backgrounds follow brand light tone; white only for cards */
@media only screen and (max-width: 991px){
	body:not(.home-page) > .bg-section:not(.dark-section):not(.service-approach-panel):not(.service-pricing-panel):not(#weight-loss-prescriptions){
		background-color: #C6B39A !important;
		background-image: none !important;
	}

	body:not(.home-page) :is(.bg-section:not(.service-pricing-panel):not(.thank-you-page):not(.why-choose-us):not(.page-header), .services-overview-intro) > :is(.container, .container-fluid){
		background: #361319 !important;
		background-color: #361319 !important;
	}

	/* About page: appointment panel uses brand light gold on mobile */
	body.page-about:not(.home-page) > .our-appointment.bg-section:not(.dark-section):not(.service-approach-panel):not(.service-pricing-panel):not(#weight-loss-prescriptions),
	body.page-about:not(.home-page) > .our-appointment.bg-section:not(.dark-section):not(.service-approach-panel):not(.service-pricing-panel):not(#weight-loss-prescriptions) > :is(.container, .container-fluid),
	body.page-about:not(.home-page) > .our-appointment.bg-section:not(.dark-section):not(.service-approach-panel):not(.service-pricing-panel):not(#weight-loss-prescriptions) > .container > .row,
	body.page-about:not(.home-page) > .our-appointment.bg-section:not(.dark-section):not(.service-approach-panel):not(.service-pricing-panel):not(#weight-loss-prescriptions) > .container > .row > [class*="col-"]{
		background: #C6B39A !important;
		background-color: #C6B39A !important;
		background-image: none !important;
	}

	body:not(.home-page):not(.page-about) :is(
		.about-us,
		.our-approach.bg-section:not(.service-pricing-panel),
		.our-faqs.bg-section,
		.what-we-do.bg-section:not(.service-approach-panel),
		.how-it-work.bg-section,
		.services-overview-intro,
		.conatct-us-form.bg-section
	),
	body.page-about:not(.home-page) :is(
		.about-us,
		.our-faqs.bg-section,
		.what-we-do.bg-section:not(.service-approach-panel),
		.how-it-work.bg-section,
		.services-overview-intro,
		.conatct-us-form.bg-section
	){
		background: #361319 !important;
		background-color: #361319 !important;
		background-image: none !important;
	}

	body:not(.home-page) :is(.service-item, .addon-card, .pricing-card){
		background-color: #ffffff !important;
		background-image: none !important;
	}

	body:not(.home-page) .our-approach-body{
		background-color: #ffffff !important;
		background-image: none !important;
	}
}

/* Mobile hard override: inner pages only (homepage uses its own section styling) */
@media only screen and (max-width: 991px){
	body:not(.page-about):not(.home-page) :is(
		.about-us,
		.what-we-do,
		.our-approach:not(.service-pricing-panel),
		.how-it-work,
		.our-faqs,
		.services-overview-intro
	) > :is(.container, .container-fluid){
		background: #361319 !important;
		background-color: #361319 !important;
	}

	body:not(.page-about):not(.home-page) :is(
		.about-us,
		.what-we-do,
		.our-approach:not(.service-pricing-panel),
		.how-it-work,
		.our-faqs,
		.services-overview-intro
	){
		background: #361319 !important;
		background-color: #361319 !important;
		background-image: none !important;
	}

	/* Keep cards white */
	body :is(.service-item, .addon-card, .pricing-card){
		background-color: #ffffff !important;
		background-image: none !important;
	}
}

/* Card sections: light gold panel wrapper (white cards inside) */
@media only screen and (max-width: 991px){
	body.services-page :is(
		.page-services:has(.service-item):not(#services-nav):not(#weight-loss-prescriptions),
		.page-addons:has(.service-item)
	),
	body.services-page :is(
		.page-services:has(.service-item):not(#services-nav):not(#weight-loss-prescriptions),
		.page-addons:has(.service-item)
	) > :is(.container, .container-fluid){
		background: #C6B39A !important;
		background-color: #C6B39A !important;
		background-image: none !important;
	}
}

/* Mobile exception: Why Choose Us should stay light brand tone */
@media only screen and (max-width: 991px){
	body:not(.home-page) > .why-choose-us.bg-section,
	body:not(.home-page) > .why-choose-us.bg-section > :is(.container, .container-fluid),
	body .why-choose-us,
	body .why-choose-us > :is(.container, .container-fluid){
		background: #C6B39A !important;
		background-color: #C6B39A !important;
		background-image: none !important;
	}

	body.home-page .why-choose-us,
	body.home-page .why-choose-us.bg-section,
	body.home-page .why-choose-us > .container{
		background: #C6B39A !important;
		background-color: #C6B39A !important;
		background-image: none !important;
	}

	body.home-page .how-it-work,
	body.home-page .how-it-work > .container,
	body.home-page .what-we-do,
	body.home-page .what-we-do > .container{
		background: transparent !important;
		background-color: transparent !important;
		background-image: none !important;
		box-shadow: none !important;
	}
}

@media only screen and (max-width: 991px){
	/* Inner-page hero header should stay on brand light background */
	body:not(.home-page) .page-header.bg-section.dark-section,
	body:not(.home-page) .page-header.bg-section.dark-section > :is(.container, .container-fluid),
	body:not(.home-page) .page-header.bg-section.dark-section .row,
	body:not(.home-page) .page-header.bg-section.dark-section .row > .col-lg-12{
		width: 100% !important;
		max-width: none !important;
		margin-left: 0 !important;
		margin-right: 0 !important;
		border-radius: 0 !important;
		background: #C6B39A !important;
		background-color: #C6B39A !important;
		background-image: none !important;
	}

	body:not(.home-page) .page-header.bg-section.dark-section::before{
		display: none !important;
	}

	body:not(.home-page) .page-header.bg-section.dark-section .page-header-box{
		position: relative;
		z-index: 3;
	}

	body:not(.home-page) > header.main-header{
		width: 100% !important;
		max-width: none !important;
		margin-left: 0 !important;
		margin-right: 0 !important;
		left: 0 !important;
		right: 0 !important;
	}

	body:not(.home-page) > header.main-header .header-sticky,
	body:not(.home-page) > header.main-header .header-sticky.active,
	body:not(.home-page) > header.main-header .header-sticky.hide{
		width: 100% !important;
		max-width: none !important;
		margin-left: 0 !important;
		margin-right: 0 !important;
	}

	html{
		overflow-x: hidden;
	}
}

@media only screen and (max-width: 991px){
	/* Client experience block on mobile */
	.experirnce-box{
		border-radius: 20px !important;
		overflow: hidden;
	}
}

@media only screen and (max-width: 991px){
	/* Mobile homepage: testimonials section should have no rounded corners */
	body.home-page .our-testimonials.bg-section.dark-section{
		border-radius: 0 !important;
		overflow: visible !important;
	}
}

/* Section spacing fixes */
@media only screen and (max-width: 991px){
	/* Homepage: keep Services close to the next section */
	body.home-page :is(.about-us, .our-results, .our-testimonials, .page-services, .page-addons) + .what-we-do{
		margin-top: 16px !important;
	}

	body.home-page .what-we-do{
		margin-top: 16px !important;
	}
}

@media only screen and (min-width: 992px){
	/* Add stronger spacing before Why Choose Us on desktop */
	body .why-choose-us{
		margin-top: 72px !important;
	}
}

@media only screen and (max-width: 991px){
	/* Footer contact block centered on mobile */
	.main-footer .footer-contact-box{
		justify-content: center;
	}

	.main-footer .footer-links.footer-contact-item,
	.main-footer .footer-links.footer-contact-item h3,
	.main-footer .footer-links.footer-contact-item ul,
	.main-footer .footer-links.footer-contact-item ul li{
		text-align: center !important;
		justify-content: center;
	}

	.main-footer .footer-links.footer-contact-item ul{
		width: 100%;
	}

	.main-footer .footer-links.footer-contact-item ul li i{
		margin-right: 6px;
	}

	/* Footer copyright + policy links centered and readable on mobile */
	.main-footer .footer-copyright,
	.main-footer .footer-copyright-text,
	.main-footer .footer-privacy-policy{
		text-align: center !important;
		justify-content: center;
	}

	.main-footer .footer-privacy-policy ul{
		display: flex !important;
		flex-direction: column;
		align-items: center;
		gap: 8px;
	}

	.main-footer .footer-privacy-policy ul li{
		margin: 0 !important;
		padding: 0 !important;
	}

	.main-footer .footer-privacy-policy ul li::before{
		display: none !important;
	}
}

@media only screen and (max-width: 991px){
	/* About page: appointment mobile order — image first, then form */
	body.page-about .our-appointment .row.align-items-center > .order-2,
	body.home-page .our-appointment .row.align-items-center > .order-2{
		order: 1 !important;
	}

	body.page-about .our-appointment .row.align-items-center > .order-1,
	body.home-page .our-appointment .row.align-items-center > .order-1{
		order: 2 !important;
	}
}

@media only screen and (max-width: 991px){
	/* Services page intro: match About mobile "What We Do" text block */
	body.page-services-hub .services-overview-intro,
	body.page-services-hub .services-overview-intro > .container,
	body.page-services-hub .services-overview-intro .row,
	body.page-services-hub .services-overview-intro .row > .col-lg-10{
		background: #361319 !important;
		background-color: #361319 !important;
		background-image: none !important;
		border: none !important;
		box-shadow: none !important;
		border-radius: 0 !important;
	}

	body.page-services-hub .services-overview-intro .section-title p{
		color: #ffffff !important;
	}

	body.page-services-hub .services-overview-intro > .container,
	body.page-services-hub .services-overview-intro .row > .col-lg-10,
	body.page-services-hub .services-overview-intro .section-title{
		background: #361319 !important;
		background-color: #361319 !important;
	}

	/* Same overrides with exact body classes to avoid any cascade misses */
	body.services-page.page-services-hub .services-overview-intro,
	body.services-page.page-services-hub .services-overview-intro > .container,
	body.services-page.page-services-hub .services-overview-intro .row,
	body.services-page.page-services-hub .services-overview-intro .row > .col-lg-10,
	body.services-page.page-services-hub .services-overview-intro .section-title{
		background: #361319 !important;
		background-color: #361319 !important;
		background-image: none !important;
		border: none !important;
		box-shadow: none !important;
		border-radius: 0 !important;
	}

	body.services-page.page-services-hub .services-overview-intro .section-title p{
		color: #ffffff !important;
	}
}

@media only screen and (max-width: 991px){
	/* Services page: "Schedule a consultation..." text/link colors */
	body.services-page.page-services-hub .services-overview-intro > .container{
		background: #361319 !important;
		background-color: #361319 !important;
		background-image: none !important;
		padding-left: 0 !important;
		padding-right: 0 !important;
	}

	body.services-page.page-services-hub .services-overview-intro .wow.fadeInUp{
		color: #ffffff !important;
	}

	body.services-page.page-services-hub #services-overview .section-footer-text p{
		color: #C6B39A !important;
	}

	body.services-page.page-services-hub #services-overview .section-footer-text p a{
		color: #361319 !important;
	}
}

/* Microneedling mobile pricing panel — inner card + title (wrapper uses shared light panel) */
@media only screen and (max-width: 991px){
	body.services-page.page-service-detail.page-microneedling #microneedling-pricing-panel .our-approach-body{
		background: #ffffff !important;
		background-color: #ffffff !important;
		background-image: none !important;
		border: 1px solid rgba(54, 19, 25, 0.12) !important;
		box-shadow: none !important;
		border-radius: 20px !important;
		padding-top: 28px !important;
	}

	body.services-page.page-service-detail.page-microneedling #microneedling-pricing-panel .our-approach-body.wow.fadeInUp :is(h1, h2, h3, h4, h5, h6, p, li, a){
		color: #361319 !important;
		-webkit-text-fill-color: #361319 !important;
	}

	body.services-page.page-service-detail.page-microneedling #microneedling-pricing-panel .our-approach-body .mission-vison-content h3{
		color: #7B694E !important;
		-webkit-text-fill-color: #7B694E !important;
	}

	body.services-page.page-service-detail.page-microneedling #microneedling-pricing-panel .our-approach-content .section-title{
		text-align: center !important;
	}

	body.services-page.page-service-detail.page-microneedling #microneedling-pricing-panel .our-approach-content .section-title h3{
		display: inline-block !important;
		margin-left: auto !important;
		margin-right: auto !important;
		color: #7B694E !important;
		-webkit-text-fill-color: #7B694E !important;
		background: transparent !important;
		background-color: transparent !important;
	}

	body.services-page.page-service-detail.page-microneedling #microneedling-pricing-panel .our-approach-content .section-title h3::before{
		background-color: #7B694E !important;
	}

	body.services-page.page-service-detail.page-microneedling #microneedling-pricing-panel .our-approach-content .section-title p{
		text-align: center !important;
	}
}

/* Service detail mobile: What Is section — final override (beats global mobile section rules) */
@media only screen and (max-width: 991px){
	body.services-page.page-service-detail > :is(
		#what-is-microneedling,
		#what-is-fat-freezing,
		#what-is-iv-therapy
	).what-we-do.bg-section.service-approach-panel.dark-section{
		background: transparent !important;
		background-color: transparent !important;
		background-image: none !important;
		border: none !important;
		box-shadow: none !important;
	}

	body.services-page.page-service-detail > :is(
		#what-is-microneedling,
		#what-is-fat-freezing,
		#what-is-iv-therapy
	).what-we-do.bg-section.service-approach-panel.dark-section > .container{
		background: #361319 !important;
		background-color: #361319 !important;
		background-image: none !important;
		border: none !important;
		box-shadow: none !important;
		border-radius: 20px !important;
	}

	body.services-page.page-service-detail :is(
		#what-is-microneedling,
		#what-is-fat-freezing,
		#what-is-iv-therapy
	) .section-title .wow.fadeInUp,
	body.services-page.page-service-detail :is(
		#what-is-microneedling,
		#what-is-fat-freezing,
		#what-is-iv-therapy
	) .section-title .wow.fadeInUp :is(h1, h2, h3, h4, h5, h6, p, li, a){
		color: #ffffff !important;
		-webkit-text-fill-color: #ffffff !important;
	}

	body.services-page.page-service-detail :is(
		#what-is-microneedling,
		#what-is-fat-freezing,
		#what-is-iv-therapy
	) .section-title h3.wow.fadeInUp::before{
		background-color: #ffffff !important;
	}
}

/* Service detail mobile: card menu panels — final override */
@media only screen and (max-width: 991px){
	body.services-page.page-service-detail > :is(
		.page-services:has(.service-item):not(#services-nav):not(#weight-loss-prescriptions),
		.page-addons:has(.service-item),
		#microneedling-pricing-panel.our-approach.bg-section.service-pricing-panel,
		#medical-weight-loss.about-us.bg-section
	),
	body.services-page.page-service-detail > :is(
		.page-services:has(.service-item):not(#services-nav):not(#weight-loss-prescriptions),
		.page-addons:has(.service-item),
		#microneedling-pricing-panel.our-approach.bg-section.service-pricing-panel,
		#medical-weight-loss.about-us.bg-section
	) > .container{
		background: #C6B39A !important;
		background-color: #C6B39A !important;
		background-image: none !important;
		border: none !important;
		box-shadow: none !important;
	}

	body.services-page.page-service-detail > :is(
		.page-services:has(.service-item):not(#services-nav):not(#weight-loss-prescriptions),
		.page-addons:has(.service-item),
		#microneedling-pricing-panel.our-approach.bg-section.service-pricing-panel,
		#medical-weight-loss.about-us.bg-section
	){
		border-radius: 20px !important;
		margin-left: 12px;
		margin-right: 12px;
		width: auto;
		max-width: none;
		overflow: hidden;
		padding-top: 52px !important;
	}

	body.services-page.page-service-detail > :is(
		.page-services:has(.service-item):not(#services-nav):not(#weight-loss-prescriptions),
		.page-addons:has(.service-item),
		#microneedling-pricing-panel.our-approach.bg-section.service-pricing-panel,
		#medical-weight-loss.about-us.bg-section
	) > .container{
		border-radius: 20px !important;
		padding-top: 32px !important;
		padding-left: 24px !important;
		padding-right: 24px !important;
	}
}

/* Contact mobile: Have any questions form — light brand panel */
@media only screen and (max-width: 991px){
	body.page-contact > #contact-questions-form.conatct-us-form.bg-section,
	body.page-contact > #contact-questions-form.conatct-us-form.bg-section > .container{
		background: #C6B39A !important;
		background-color: #C6B39A !important;
		background-image: none !important;
		border: none !important;
		box-shadow: none !important;
	}

	body.page-contact > #contact-questions-form.conatct-us-form.bg-section{
		border-radius: 20px !important;
		margin-left: 12px;
		margin-right: 12px;
		width: auto;
		max-width: none;
		overflow: hidden;
		padding-top: 52px !important;
		padding-bottom: 52px !important;
	}

	body.page-contact > #contact-questions-form.conatct-us-form.bg-section > .container{
		border-radius: 20px !important;
		padding-top: 32px !important;
		padding-left: 24px !important;
		padding-right: 24px !important;
		padding-bottom: 32px !important;
	}
}

/* Legal pages mobile: content panel — light brand tone */
@media only screen and (max-width: 991px){
	body.page-legal .page-legal{
		margin-left: 12px;
		margin-right: 12px;
		width: auto;
		max-width: none;
		padding-top: 52px !important;
	}

	body.page-legal .page-legal > .container{
		background: #C6B39A !important;
		background-color: #C6B39A !important;
		background-image: none !important;
		border: none !important;
		box-shadow: none !important;
		border-radius: 20px !important;
		padding-top: 32px !important;
		padding-left: 24px !important;
		padding-right: 24px !important;
		padding-bottom: 24px !important;
	}

	body.page-legal .page-legal-panel.bg-section,
	body.page-legal .page-legal-panel.bg-section.wow.fadeInUp,
	body.page-legal .page-legal .page-legal-panel.bg-section,
	body.page-legal .page-legal .page-legal-panel.bg-section.wow.fadeInUp,
	body.page-legal .page-legal .page-legal-panel.bg-section .page-legal-content,
	body.page-legal .page-legal > .container > .row,
	body.page-legal .page-legal > .container > .row > [class*="col-"]{
		background: transparent !important;
		background-color: transparent !important;
		background-image: none !important;
		border: none !important;
		box-shadow: none !important;
		border-radius: 0 !important;
		padding: 0 !important;
		max-width: none !important;
		margin: 0 !important;
	}
}

/* Medical wellness: qualification block — no panel bg, sits on body */
body.services-page.page-service-detail #weight-loss-qualification.what-we-do.bg-section.service-approach-panel.dark-section,
body.services-page.page-service-detail #weight-loss-qualification.what-we-do.bg-section.service-approach-panel.dark-section > .container,
body.services-page.page-service-detail #weight-loss-qualification.what-we-do.bg-section.service-approach-panel.dark-section .row,
body.services-page.page-service-detail #weight-loss-qualification.what-we-do.bg-section.service-approach-panel.dark-section .section-title{
	background: transparent !important;
	background-color: transparent !important;
	background-image: none !important;
	border: none !important;
	box-shadow: none !important;
}

@media only screen and (max-width: 991px){
	body.services-page.page-service-detail #weight-loss-qualification.what-we-do.bg-section.service-approach-panel.dark-section{
		margin-left: 0 !important;
		margin-right: 0 !important;
		width: 100% !important;
		max-width: none !important;
		overflow: visible !important;
		border-radius: 0 !important;
	}

	body.services-page.page-service-detail #weight-loss-qualification .section-title.section-title-center p,
	body.services-page.page-service-detail #weight-loss-qualification .section-title.section-title-center p.wow.fadeInUp{
		color: #ffffff !important;
		-webkit-text-fill-color: #ffffff !important;
	}

	body.services-page.page-service-detail #weight-loss-prescriptions.page-services.bg-section,
	body.services-page.page-service-detail #weight-loss-prescriptions.page-services.bg-section > .container{
		background: transparent !important;
		background-color: transparent !important;
		background-image: none !important;
		border: none !important;
		box-shadow: none !important;
		border-radius: 0 !important;
		margin-left: 0 !important;
		margin-right: 0 !important;
		width: 100% !important;
		max-width: none !important;
		overflow: visible !important;
	}

	body.services-page.page-service-detail #pricing-transparency.what-we-do.bg-section{
		padding-top: 52px !important;
		padding-bottom: 52px !important;
	}

	body.services-page.page-service-detail #pricing-transparency.what-we-do.bg-section > .container{
		padding-top: 32px !important;
		padding-bottom: 32px !important;
	}
}

/* Legal pages mobile: kill inner dark panel bg (final override) */
@media only screen and (max-width: 991px){
	body.page-legal .page-legal .page-legal-panel.bg-section,
	body.page-legal .page-legal .page-legal-panel.bg-section.wow.fadeInUp,
	body.page-legal .page-legal .page-legal-panel.bg-section .page-legal-content,
	body.page-legal .page-legal > .container > .row,
	body.page-legal .page-legal > .container > .row > [class*="col-"]{
		background: transparent !important;
		background-color: transparent !important;
		background-image: none !important;
		box-shadow: none !important;
		border: none !important;
	}
}

/* About Us gonca icon — mobile placement (wins over page-about / service-detail desktop rules) */
@media only screen and (max-width: 991px){
	body:is(.home-page, .page-about, .page-service-detail) .about-us .about-us-images::before{
		top: 16px;
		left: 0;
		width: 76px !important;
		height: 77px !important;
		z-index: 1;
	}

	body:is(.home-page, .page-about, .page-service-detail) .about-us .about-us-images :is(.about-img-1, .about-img-2){
		position: relative;
		z-index: 2;
	}

	body:is(.home-page, .page-about, .page-service-detail) .about-us .about-us-images .company-experience-circle{
		z-index: 20 !important;
	}
}

@media only screen and (max-width: 767px){
	body:is(.home-page, .page-about, .page-service-detail) .about-us .about-us-images::before{
		top: 10px;
		left: 0;
		width: 76px !important;
		height: 77px !important;
	}

	body:is(.home-page, .page-about, .page-service-detail) .about-us .about-us-images .company-experience-circle{
		z-index: 20 !important;
	}
}

/* Book appointment mobile/tablet: Why Choose Us panel */
@media only screen and (max-width: 991px){
	body.page-book-appointment:not(.home-page) > .why-choose-us.bg-section,
	body.page-book-appointment:not(.home-page) > .why-choose-us.bg-section > .container,
	body.page-book-appointment:not(.home-page) > .why-choose-us.bg-section > .container > .row{
		background: #C6B39A !important;
		background-color: #C6B39A !important;
		background-image: none !important;
	}

	body.page-book-appointment:not(.home-page) > .why-choose-us.bg-section{
		border-radius: 20px !important;
		padding-top: 40px !important;
		padding-bottom: 40px !important;
		margin-left: 12px;
		margin-right: 12px;
		width: auto;
		max-width: none;
		overflow: hidden;
	}

	body.page-book-appointment:not(.home-page) > .why-choose-us.bg-section > .container{
		border-radius: 20px !important;
		padding-top: 24px !important;
		padding-bottom: 24px !important;
	}
}

/* Thank-you page mobile/tablet — gold panel */
@media only screen and (max-width: 991px){
	body.page-book-appointment.page-thank-you > .thank-you-page.bg-section,
	body.page-thank-you > .thank-you-page.bg-section,
	body.page-book-appointment.page-thank-you > .thank-you-page.bg-section > .container,
	body.page-thank-you > .thank-you-page.bg-section > .container,
	body.page-book-appointment.page-thank-you > .thank-you-page.bg-section > .container > .row,
	body.page-thank-you > .thank-you-page.bg-section > .container > .row{
		background: #C6B39A !important;
		background-color: #C6B39A !important;
		background-image: none !important;
	}

	body.page-book-appointment.page-thank-you > .thank-you-page.bg-section,
	body.page-thank-you > .thank-you-page.bg-section{
		margin-top: calc(env(safe-area-inset-top, 0px) + var(--header-blur-height, 108px) + 32px) !important;
		padding: 48px 20px 52px !important;
		border-radius: 20px !important;
	}
}

/* About page mobile/tablet: Our Approach + Appointment — final override (beats global dark container rules) */
@media only screen and (max-width: 991px){
	body.page-about:not(.home-page) > .our-approach.bg-section:not(.service-pricing-panel):not(.dark-section),
	body.page-about:not(.home-page) > .our-approach.bg-section:not(.service-pricing-panel):not(.dark-section) > .container,
	body.page-about:not(.home-page) > .our-approach.bg-section:not(.service-pricing-panel):not(.dark-section) > .container > .row,
	body.page-about:not(.home-page) > .our-approach.bg-section:not(.service-pricing-panel):not(.dark-section) > .container > .row > [class*="col-"]{
		background: #C6B39A !important;
		background-color: #C6B39A !important;
		background-image: none !important;
		border: none !important;
		box-shadow: none !important;
	}

	body.page-about:not(.home-page) > .our-appointment.bg-section:not(.dark-section):not(.service-approach-panel):not(.service-pricing-panel):not(#weight-loss-prescriptions),
	body.page-about:not(.home-page) > .our-appointment.bg-section:not(.dark-section):not(.service-approach-panel):not(.service-pricing-panel):not(#weight-loss-prescriptions) > :is(.container, .container-fluid),
	body.page-about:not(.home-page) > .our-appointment.bg-section:not(.dark-section):not(.service-approach-panel):not(.service-pricing-panel):not(#weight-loss-prescriptions) > .container > .row,
	body.page-about:not(.home-page) > .our-appointment.bg-section:not(.dark-section):not(.service-approach-panel):not(.service-pricing-panel):not(#weight-loss-prescriptions) > .container > .row > [class*="col-"]{
		background: #C6B39A !important;
		background-color: #C6B39A !important;
		background-image: none !important;
		border: none !important;
		box-shadow: none !important;
	}

	body.page-about:not(.home-page) > .our-approach.bg-section:not(.service-pricing-panel):not(.dark-section),
	body.page-about:not(.home-page) > .our-appointment.bg-section:not(.dark-section){
		border-radius: 20px !important;
		margin-left: 12px;
		margin-right: 12px;
		width: auto;
		max-width: none;
		overflow: hidden;
	}

	body.page-about:not(.home-page) > .our-approach.bg-section:not(.service-pricing-panel):not(.dark-section){
		padding-top: 50px !important;
		padding-bottom: 50px !important;
	}

	body.page-about:not(.home-page) > .our-approach.bg-section:not(.service-pricing-panel):not(.dark-section) > .container{
		border-radius: 20px !important;
		padding-top: 0 !important;
		padding-bottom: 0 !important;
		padding-left: 24px !important;
		padding-right: 24px !important;
	}

	body.page-about:not(.home-page) > .our-appointment.bg-section:not(.dark-section){
		padding-top: 0 !important;
		padding-bottom: 0 !important;
	}

	body.page-about:not(.home-page) > .our-appointment.bg-section:not(.dark-section) > .container{
		border-radius: 20px !important;
		padding-top: 50px !important;
		padding-bottom: 50px !important;
		padding-left: 24px !important;
		padding-right: 24px !important;
	}
}

/* About page mobile: full-bleed hero + nav over gold header */
@media only screen and (max-width: 991px){
	body.page-about{
		overflow-x: hidden;
	}

	body.page-about > .page-header.bg-section.dark-section{
		box-sizing: border-box;
		padding-left: max(15px, env(safe-area-inset-left, 0px));
		padding-right: max(15px, env(safe-area-inset-right, 0px));
	}

	body.page-about > header.main-header .navbar .container-fluid{
		width: 100% !important;
		max-width: none !important;
		padding-left: max(14px, calc(14px + env(safe-area-inset-left, 0px))) !important;
		padding-right: max(14px, calc(14px + env(safe-area-inset-right, 0px))) !important;
	}

	body.page-about .responsive-menu,
	body.page-about .responsive-menu .slicknav_menu{
		width: 100% !important;
		max-width: none !important;
		margin-left: 0 !important;
		margin-right: 0 !important;
	}
}

/* Mobile: page-header container must match page-header gold background (all inner pages) */
@media only screen and (max-width: 991px){
	body:not(.home-page) .page-header.bg-section.dark-section,
	body:not(.home-page) .page-header.bg-section.dark-section > :is(.container, .container-fluid),
	body:not(.home-page) .page-header.bg-section.dark-section > :is(.container, .container-fluid) > .row,
	body:not(.home-page) .page-header.bg-section.dark-section > :is(.container, .container-fluid) > .row > [class*="col-"],
	body:not(.home-page) .page-header.bg-section.dark-section .page-header-box{
		background: #C6B39A !important;
		background-color: #C6B39A !important;
		background-image: none !important;
	}
}