/* Common */
* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
*,
::before,
::after {
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
}
:root {
  	scroll-behavior: smooth;
}
body {
	font-size: 16px;
	line-height: 24px;
	font-weight: 400;
	font-family: "Jost", sans-serif;
	color: #666666;
	margin: 0;
	padding: 0;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
nav,
section,
summary {
  	display: block;
}
audio,
canvas,
video {
  	display: inline-block;
}
iframe {
	border: 0;
	width: 100%;
	display: block;
}
a {
	font-size: 16px;
	line-height: 24px;
	font-weight: 500;
	color: #666666;
	text-decoration: none;
	display: block;
	transition: all 0.4s;
}
a:hover {
	color: #79948F;
	outline: 0;
	text-decoration: none;
	transition: all 0.4s;
}
button,
button:hover {
  	transition: all 0.4s;
}
svg:not(:root) {
  	overflow: hidden;
}
ol,
ul {
	padding: 0;
	margin: 0;
	list-style-type: none;
}
/* End Common */

/* Typography */
h1,
.heading-one {
	font-size: 64px;
	line-height: 80px;
	font-weight: 600;
}
h2,
.heading-two {
	font-size: 42px;
	line-height: 56px;
	font-weight: 700;
}
h3,
.heading-three {
	font-size: 32px;
	line-height: 40px;
	font-weight: 700;
}
h4,
.heading-four {
	font-size: 24px;
	line-height: 32px;
	font-weight: 600;
}
h5,
.heading-five {
	font-size: 20px;
	line-height: 30px;
}
h6,
.heading-six {
	font-size: 18px;
	line-height: 26px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: "Playfair Display", serif;
  	color: #000000;
}
h1,
h2,
h3,
h4,
h5,
h6,
address,
p,
pre,
blockquote,
dl,
dd,
menu,
table,
caption,
hr {
  	margin: 0 0 16px 0;
}
p {
	font-size: 18px;
	line-height: 24px;
	font-weight: 400;
	color: #666666;
}
p:last-child {
  	margin-bottom: 0;
}
svg {
  	display: inline-block;
}
:focus-visible {
  	outline: none !important;
}
img {
	max-width: 100%;
	display: block;
	margin: 0;
}
.container {
	max-width: 1220px;
	margin: 0 auto;
	padding: 0;
}
.fw-300 {
  	font-weight: 300;
}
.fw-400 {
  	font-weight: 400;
}
.fw-500 {
  	font-weight: 500;
}
.fw-600 {
  	font-weight: 600;
}
.fw-700 {
  	font-weight: 700;
}
.text-xxl {
  font-size: 24px;
  line-height: 36px;
}
.text-xl {
  font-size: 20px;
  line-height: 30px;
}
.text-lg {
	font-size: 16px;
	line-height: 24px;
}
.text-sm {
	font-size: 14px;
	line-height: 20px;
}
.text-link {
  font-size: 16px;
  line-height: 20px;
  font-weight: 600;
  color: #79948F;
  display: block;
}
.text-link:hover {
	color: #363636;
	transition: all 0.4s;
}
.text-gray {
	color: #666666;
}
.text-black-2 {
	color: #101312;
}
.text-green {
	color: #79948F;
}
/* End Typography */

/* Form Field */
input,
button,
select,
textarea {
	background: transparent;
	border: 1px solid #D3D3D3;
	transition: all 0.4s ease-out 0s;
	-webkit-transition: all 0.4s ease-out 0s;
	color: #000000;
}
input:focus,
input:active,
button:focus,
button:active,
select:focus,
select:active,
textarea:focus,
textarea:active {
	outline: none;
	border-color: #79948F;
}
input,
select,
textarea {
	width: 100%;
	font-size: 18px;
	line-height: 26px;
	box-shadow: none;
	-webkit-box-shadow: none;
	padding: 10px 16px;
	border-radius: 6px;
	color: #ffffff;
	font-weight: 400;
}
textarea {
	border-radius: 6px;
	resize: none;
}
input::placeholder,
textarea::placeholder {
	color: #ffffff;
	opacity: 1;
}
input::-moz-placeholder,
textarea::-moz-placeholder {
	color: #ffffff;
	opacity: 1;
}
select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background-image: url("assets/images/icon-down-arrow-grey.svg");
	background-repeat: no-repeat;
	background-position: right 16px center;
	background-size: 24px;
	cursor: pointer;
	padding: 10px 50px 10px 16px;
	border: 0;
	color: #ffffff;
	text-transform: capitalize;
}
input[type="checkbox"],
input[type="radio"] {
	width: 16px;
	height: 16px;
	border: 1px solid #F4F4ED;
	font-size: 16px;
	line-height: 24px;
	color: #666666;
	font-weight: 400;
}
input[type="checkbox"]:focus,
input[type="radio"]:focus {
	outline: 0;
	box-shadow: none;
}
.form-group {
  	margin-bottom: 24px;
}
label {
	font-size: 16px;
	line-height: 24px;
	font-weight: 400;
	margin: 0 0 4px;
	color: #FFFFFF;
	display: block;
}
.contact-section-right label span {
  	color: #FF3030;
}
.form-group label .required,
.form-group .error-text {
 	color: #dc3232;
}
.form-group .error-text {
	font-size: 14px;
	line-height: 24px;
}

/* Common Button */
.solid-btn,
.border-btn,
.light-black-btn {
	font-size: 16px;
	line-height: 20px;
	font-weight: 600;
	padding: 17px 22px 17px 24px;
	text-transform: capitalize;
	transition: all 0.4s;
	border: 1px solid transparent;
	border-radius: 50px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	position: relative;
	gap: 10px;
}
.solid-btn {
	background: #79948F;
	color: #FFFFFF;
}
.border-btn {
	border: 1px solid #79948F;
	background: transparent;
	color: #79948F;
}
.light-black-btn {
    background: rgb(255 255 255 / 20%);
    color: #fff;
}
.disable-btn {
	background: #EEEEEE;
	border: 1px solid #EEEEEE;
	color: #969696;
}
.solid-btn:hover {
	background: #666666;
	color: #fff;
	transition: all 0.4s;
}
.border-btn:hover {
	background: #79948F;
	color: #fff;
	transition: all 0.4s;
}
.light-black-btn:hover {
    background: #79948F;
    color: #fff;
	transition: all 0.4s;
}
/* End Common Button */

/* Spacing Style */
.py-100 {
	padding-top: 100px;
	padding-bottom: 100px;
}
.pt-100 {
  	padding-top: 100px;
}
.pb-100 {
  	padding-bottom: 100px;
}
.py-60 {
	padding-top: 60px;
	padding-bottom: 60px;
}
.pt-60 {
  	padding-top: 60px;
}
.pb-60 {
  	padding-bottom: 60px;
}
.py-50 {
	padding-top: 50px;
	padding-bottom: 50px;
}
.pt-50 {
  	padding-top: 50px;
}
.pb-50 {
  	padding-bottom: 50px;
}
.mb-40 {
  	margin-bottom: 40px;
}
.mb-30 {
  	margin-bottom: 30px;
}
.mb-24 {
  	margin-bottom: 24px;
}
.mb-20 {
  	margin-bottom: 20px;
}
.mb-10 {
  	margin-bottom: 10px;
}
/* End Spacing Style */

/* Icons */
i {
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  mask-size: cover;
  -webkit-mask-size: cover;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-position: center;
  background-repeat: no-repeat;
  transition: 0.3s ease-in-out;
}
.icon-call {
	mask-image: url(./assets/images/icon-call.svg);
	-webkit-mask-image: url(./assets/images/icon-call.svg);
	width: 20px;
	height: 20px;
	background: #ffffff;
}
.icon-right-arrow {
	background-image: url(./assets/images/icon-right-arrow.svg);
	background-size: contain;
	background-position: center;
	width: 12px;
	height: 12px;
}
.icon-location {
	mask-image: url(./assets/images/icon-location.svg);
	-webkit-mask-image: url(./assets/images/icon-location.svg);
	width: 46px;
	height: 32px;
	background: #79948F;
}
.icon-email {
	mask-image: url(./assets/images/icon-email.svg);
	-webkit-mask-image: url(./assets/images/icon-email.svg);
	width: 32px;
	height: 32px;
	background: #79948F;
}
.icon-call-green {
	mask-image: url(./assets/images/icon-call-green.svg);
	-webkit-mask-image: url(./assets/images/icon-call-green.svg);
	width: 32px;
	height: 32px;
	background: #79948F;
}
.icon-schedule {
	mask-image: url(./assets/images/icon-schedule.svg);
	-webkit-mask-image: url(./assets/images/icon-schedule.svg);
	width: 32px;
	height: 32px;
	background: #79948F;
}
.icon-menu {
	mask-image: url(./assets/images/icon-menu.svg);
	-webkit-mask-image: url(./assets/images/icon-menu.svg);
	width: 32px;
	height: 24px;
	background: #79948F;
}
.icon-down-arrow-white {
	mask-image: url(./assets/images/icon-down-arrow-white.svg);
	-webkit-mask-image: url(./assets/images/icon-down-arrow-white.svg);
	width: 20px;
	height: 20px;
	background: #ffffff;
}
/* Icons End */

/* Header */
.admin-bar .site-header {
  	margin-top: 32px;
}
.main-navigation .menu-toggle,
.header-icon,
.mobile-menu-wrapper {
    display: none;
}
.site-branding a {
    display: inline-block;
    max-width: 64px;
    width: 100%;
}
.site-branding a img.custom-logo {
    max-width: 64px;
    height: 100%;
    width: 100%;
}
.site-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 99;
    left: 0;
	padding: 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.1s linear 0s;
	background: rgba(0, 0, 0, 0.85);
}
.home .site-header {
	background: none;
}
.site-header::before { 
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(180deg, #000000 0%, rgba(0, 0, 0, 0) 100%);
}
.site-header.smaller {
    background: rgb(0 0 0 / 50%);
    transition: all 0.1s linear 0s;
    backdrop-filter: blur(10px);
}
.site-header .container {
	position: relative;
	z-index: 2;
}
.main-navigation .site-nav {
    display: flex;
	justify-content: flex-end;
    align-items: center;
    gap: 32px;
}
.main-navigation .site-nav > li {
	position: relative;
	padding: 41px 0;
	border-bottom: 2px solid transparent;
	cursor: pointer;
	transition: all 0.4s;
}
.site-header.smaller .main-navigation .site-nav > li {
	padding: 30px 0;
	transition: all 0.4s;
}
.main-navigation .site-nav > li.current-menu-item {
	border-bottom: 2px solid #79948F;
}
.main-navigation .site-nav > li > a {
	color: #fff;
	display: flex;
    align-items: center;
    gap: 4px;
}
.main-navigation .site-nav .menu-item-has-children>a:after {
    content: "";
    display: block;
    -webkit-mask-image: url(assets/images/icon-down-arrow-white.svg);
    mask-image: url(assets/images/icon-down-arrow-white.svg);
    width: 18px;
    height: 18px;
    background-repeat: no-repeat;
    background: #ffffff;
    transition: all 0.4s;
    -webkit-mask-size: cover;
}
.main-navigation .site-nav li .sub-menu {
    position: absolute;
    top: 102%;
    left: 0;
    right: 0;
    width: 180px;
    border-radius: 6px;
    background: rgb(0 0 0 / 85%);
    box-shadow: none;
    z-index: 4;
    display: none;
}
.main-navigation .site-nav li .sub-menu::after {
    content: '';
    border-bottom: 8px solid rgb(255 255 255 / 35%);
    border-right: 8px solid transparent;
    border-left: 8px solid transparent;
    top: -8px;
    position: absolute;
	right: auto;
    left: 30px;
}
.main-navigation .site-nav li .sub-menu a {
	font-size: 14px;
	line-height: 21px;
	font-weight: 400;
    color: #fff;
    padding: 12px;
    border-bottom: 1px solid rgb(255 255 255 / 20%);
}
.main-navigation .site-nav > li:hover > a,
.main-navigation .site-nav li .sub-menu a:hover {
	color: #79948F;
	transition: all 0.4s;
}

.main-navigation .site-nav .menu-item-has-children:hover >a:after {
	background: #79948F;
    transition: all 0.4s;
}
.main-navigation .site-nav li .sub-menu li:last-child a {
	border-bottom: 0;
}
.main-navigation .site-nav li:hover .sub-menu {
    display: block;
}
.header-right-wrapper {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 40px;
}
.cta-button {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 16px;
}
/* End Header */

/* Banner */
.banner {
    position: relative;
}
.banner::before {
	content: '';
    position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(180deg, #000000 0%, rgba(0, 0, 0, 0) 100%);
}
.banner .slider-heading {
	font-family: "Playfair Display", serif;
}
.banner-bg-img {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 720px;
    max-height: 720px;
    height: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: relative;
}
.banner-bg-img::before {
    content: '';
    background: linear-gradient(270deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 98.5%);
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
}
.banner-bg-img .container {
	position: relative;
	z-index: 2;
}
.banner-slider-content {
    padding-top: 100px;
}
.banner-slider-content h1,
.banner-slider-content p {
	margin-bottom: 40px;
}
.banner-nav {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    flex-direction: column;
	gap: 24px;
	margin-top: 60px;
}
.banner-nav .banner-button-prev, 
.banner-nav .banner-button-next {
    position: static;
    margin: 0;
    width: 56px;
    height: 56px;
    background: rgb(16 19 18 / 50%);
    border: 1px solid rgb(255 255 255 / 30%);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
	transition: all 0.4s;
}
.banner-nav .banner-button-prev::after,
.banner-nav .banner-button-next::after {
	content: '';
	mask-image: url(./assets/images/icon-left-arrow-white.svg);
	-webkit-mask-image: url(./assets/images/icon-left-arrow-white.svg);
	background-size: contain;
	mask-size: contain;
	-webkit-mask-size: contain;
	mask-repeat: no-repeat;
	background-repeat: no-repeat;
	-webkit-mask-repeat: no-repeat;
	mask-position: center;
	-webkit-mask-position: center;
	width: 20px;
	height: 20px;
	background: #ffffff;
	transition: all 0.4s;
}
.banner-nav .banner-button-next::after {
	mask-image: url(./assets/images/icon-right-arrow-white.svg);
	-webkit-mask-image: url(./assets/images/icon-right-arrow-white.svg);
	transform: inherit;
}
.banner-nav .banner-button-prev:hover, 
.banner-nav .banner-button-next:hover {
	background: #79948F;
	border-color: #79948F;
	transition: all 0.4s;
}
/* Banner End */

/* About Us */
.about-us-section .container,
.about-us-image,
.our-pricing-section .container {
	position: relative;
}
.about-us-section .container::before {
    content: '';
    position: absolute;
    left: -110px;
    top: 0;
    background-image: url('assets/images/comb-image.svg');
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: cover;
    width: 70px;
    height: 85px;
}
.about-us-section .container::after,
.our-services-section .container::after {
    content: '';
    position: absolute;
    right: -120px;
    bottom: 0;
    background-image: url('assets/images/sizzer-image.svg');
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: cover;
    width: 220px;
    height: 220px;
}
.about-us-image::before {
	content: '';
    position: absolute;
	bottom: 0;
	right: 0;
	background-image: url('assets/images/leaf-image.svg');
	background-repeat: no-repeat;
	background-position: bottom center;
	background-size: cover;
	width: 134px;
	height: 193px;
}
.about-us-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.about-us-content {
    margin-left: 60px;
}
.founder-block {
    margin-top: 24px;
    margin-bottom: 32px;
    padding-left: 16px;
    border-left: 2px solid #79948F;
}

.founder-image {
	width: 56px;
	height: 56px;
	border-radius: 100%;
	overflow: hidden;
}
.founder-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.founder-name  {
	margin-bottom: 4px;
}
.about-img-mobile {
	display: none;
}
/* About Us End */

/* Our Reels */
.our-reels-section .section-title,
.our-pricing-section .section-title,
.testimonials-section .section-title {
	margin-bottom: 56px;
}
.swiper-button-prev, 
.swiper-button-next {
    position: static;
    margin: 0;
    width: 48px;
    height: 48px;
    background: #fff;
    border: 1px solid #79948F;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
	transition: all 0.4s;
}
.swiper-button-prev::after,
.swiper-button-next::after {
	content: '';
	mask-image: url(./assets/images/icon-left-arrow-green.svg);
	-webkit-mask-image: url(./assets/images/icon-left-arrow-green.svg);
	background-size: contain;
	mask-size: contain;
	-webkit-mask-size: contain;
	mask-repeat: no-repeat;
	background-repeat: no-repeat;
	-webkit-mask-repeat: no-repeat;
	mask-position: center;
	-webkit-mask-position: center;
	width: 20px;
	height: 20px;
	background: #79948F;
	transition: all 0.4s;
}
.swiper-button-next::after {
	background-image: url(assets/images/icon-left-arrow-green.svg);
	transform: rotate(180deg);
}
.swiper-button-prev:hover, 
.swiper-button-next:hover {
	background: #79948F;
	border-color: #79948F;
	transition: all 0.4s;
}
.swiper-button-prev:hover::after, 
.swiper-button-next:hover::after {
	background: #ffffff;
	transition: all 0.4s;
}
.reels-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-top: 48px;
}
.reels-video video {
    width: 100%;
    height: 516px;
	object-fit: cover;
    border-radius: 24px;
}
.our-reels-section {
	position: relative;
}
.our-reels-section .container::before {
    content: '';
    position: absolute;
    left: 220px;
    bottom: 50%;
    background-image: url('assets/images/sizzer-image2.svg');
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: contain;
    width: 110px;
    height: 250px;
}
.our-reels-section .container::after {
    content: '';
    position: absolute;
    right: 220px;
    bottom: 50%;
    background-image: url('assets/images/long-comb-image.svg');
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: contain;
    width: 64px;
    height: 250px;
}
/* Our Reels End */

/* Our Services */
.our-services-section,
.our-services-section .container {
    background: #F4F4ED;
	position: relative;
}
.our-services-section .container::before {
    content: '';
    position: absolute;
    left: -150px;
    top: 0;
    background-image: url('assets/images/hair-dryer-image.svg');
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: cover;
    width: 150px;
    height: 150px;
}
.our-services-section .section-title {
	max-width: 454px;
	margin: 0 auto 72px;
}
.service-tabbing .nav-tabs {
    max-width: 723px;
    margin: 0 auto 64px;
    border-radius: 50px;
    /* justify-content: center; */
    align-items: center;
	flex-wrap: nowrap;
	justify-content: space-between;
	white-space: nowrap;
    overflow-x: auto;
	padding-bottom: 4px;
}
.service-tabbing .nav-tabs .nav-link {
    margin: 0;
    background: #fff;
    border: 0;
    border-radius: 0;
    font-size: 24px;
    line-height: 32px;
    font-weight: 600;
    color: #101312;
	padding: 16px 32px;
	display: flex;
    align-items: center;
    gap: 16px;
	font-family: "Playfair Display", serif;
}
.service-tabbing .nav-tabs .nav-link img {
	width: 40px;
	height: 40px;
	object-fit: cover;
	transition: all 0.4s;
	flex-shrink: 0;
}
.service-tabbing .nav-tabs .nav-item.show .nav-link, 
.service-tabbing .nav-tabs .nav-link.active {
    color: #fff;
    background-color: #79948F;
    border-color: transparent;
}
.service-tabbing .nav-tabs .nav-link.active img {
	filter: brightness(100);
	transition: all 0.4s;
}
.service-tabbing .nav-tabs .nav-item:first-child .nav-link {
	border-top-left-radius: 50px;
	border-bottom-left-radius: 50px;
}
.service-tabbing .nav-tabs .nav-item:last-child .nav-link {
	border-top-right-radius: 50px;
	border-bottom-right-radius: 50px;
}
.services-tab-content {
	margin-left: 40px;
}
.services-tab-listing {
	margin-top: 24px;
	margin-bottom: 32px;
}
.services-detail ul {
	margin-top: 24px;
}
.services-tab-listing ul li,
.services-detail ul li {
    position: relative;
    padding-left: 40px;
    margin-bottom: 16px;
    font-size: 18px;
    line-height: 32px;
    font-weight: 600;
    color: #101312;
	font-family: "Playfair Display", serif;
}
.services-tab-listing ul li::before,
.services-detail ul li::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 32px;
	height: 32px;
	background-color: rgb(121 148 143 / 25%);
	border-radius: 50%;
	background-image: url(assets/images/icon-check.svg);
	background-size: 20px;
	background-repeat: no-repeat;
	background-position: center;
}
.services-detail ul li::before {
	top: 4px;
    width: 26px;
    height: 26px;
}
.services-box-image{
	border-radius: 24px;
	overflow: hidden;
}
.services-box-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	aspect-ratio: 3 / 2;
}
/* Scrollbar Track */
.service-tabbing .nav-tabs::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

.service-tabbing .nav-tabs::-webkit-scrollbar-track {
  background: #d9d9d9;
  border-radius: 0;
}

/* Scrollbar Thumb */
.service-tabbing .nav-tabs::-webkit-scrollbar-thumb {
  background: #79948F;
  border-radius: 0;
}
/* Our Services End */

/* Our Pricing */
.pricing-box {
    border: 1px solid rgb(121 148 143 / 50%);
    padding: 32px;
    border-radius: 16px;
	box-shadow: 16px 16px 16px 0px #0000000F;
	height: 100%;
	position: relative;
}
.pricing-box h3 {
	color: #101312;
}
.pricing-box ul li {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 10px;
	margin-bottom: 24px;
}
.pricing-box ul li:last-child {
	margin-bottom: 0;
}
.pricing-list-book-btn {
    position: absolute;
    bottom: 32px;
    left: 0;
    right: 0;
    margin: 0 32px;
}
.pricing-card {
	border-radius: 16px;
}
.pricing-card-img {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding-top: 100%;
    display: block;
	border-top-left-radius: 16px;
	border-top-right-radius: 16px;
}
.pricing-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
	transition: all 0.4s;
}
.pricing-card-img:hover img {
	transform: scale(1.2);
	transition: all 0.4s;
}
.pricing-card-content {
    padding: 32px;
    border: 1px solid rgb(121 148 143 / 50%);
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
    border-top: 0;
	height: 100%;
}
.pricing-card-title {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 10px;
	min-height: 56px;
}
.pricing-card-title h3 {
	max-width: 120px;
	margin-bottom: 0;
	transition: all 0.4s;
	display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.pricing-card:hover h3 {
	color: #79948F;
	transition: all 0.4s;
}

.pricing-card-content p {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;  
	overflow: hidden;
}
.our-pricing-section .container::before {
    content: '';
    position: absolute;
    left: -150px;
    top: -20px;
    background-image: url('assets/images/hair-straightner.svg');
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: contain;
    width: 220px;
    height: 220px;
}
.our-pricing-section .container::after {
    content: '';
    position: absolute;
    right: -180px;
    bottom: -30px;
    background-image: url('assets/images/hair-dryer-2.svg');
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: contain;
    width: 150px;
    height: 150px;
}
/* Our Pricing End */

/* Contact Us Section */
.contact-us-section {
    position: relative;
	overflow: hidden;
}
.contact-us-video video {
	display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.contact-section-right {
    background: #79948F;
	height: 100%;
	padding: 48px 72px;
}
.contact-section-right .section-title {
	margin-bottom: 40px;
}
.contact-section-right input, 
.contact-section-right select {
    background-color: rgb(255 255 255 / 20%);
    border: 0;
}
.contact-section-right select::placeholder {
	color: #fff;
}
.contact-section-right select {
    background-color: rgb(255 255 255 / 20%);
    border: 0;
	background-image: url(assets/images/icon-down-arrow-white.svg);
	color: #FFFFFF;
}
.contact-section-right select option {
    color: #101312;
}
.contact-section-right .white-border-btn {
	border: 1px solid #FFFFFF;
	background: transparent;
	color: #fff;
	border-radius: 50px;
	width: auto;
	min-width: 120px;
	text-align: left;
	padding: 9px 20px;
	transition: all 0.4s;
}
.contact-section-right .white-border-btn:hover {
	border: 1px solid rgb(255 255 255 / 20%);
	background: rgb(255 255 255 / 20%);
	color: #fff;
	transition: all 0.4s;
}
.contact-form-wrapper {
	position: relative;
}
.wpcf7-spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
	margin: 0;
}
.contact-form-submit p {
	display: inline-flex;
	align-items: center;
	position: relative;
}
.contact-form-submit .icon-right-arrow {
	position: absolute;
    right: 20px;
}
.wpcf7-not-valid-tip {
    color: #dc3232;
    font-size: 14px;
}
.wpcf7 form.invalid .wpcf7-response-output, 
.wpcf7 form.unaccepted .wpcf7-response-output, 
.wpcf7 form.payment-required .wpcf7-response-output {
    border-color: #dc3232;
	color: #dc3232;
}
.contact-us-video {
	max-height: 480px;
    height: 100%;
}
.wpcf7 form.sent .wpcf7-response-output {
    border-color: #070707;
    color: #000000;
    border-radius: 30px;
}
/* Contact Us Section End */

/* Testimonials Section */
.testimonials-section,
.testimonials-section .container {
	position: relative;
}
.testimonials-section .container::before {
    content: '';
    position: absolute;
    left: -150px;
    top: 140px;
    background-image: url('assets/images/sizzer-image2.svg');
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: contain;
    width: 150px;
    height: 250px;
}
.testimonials-section .container::after {
    content: '';
    position: absolute;
    right: -200px;
    bottom: 20px;
    background-image: url('assets/images/long-comb-image.svg');
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: cover;
    width: 120px;
    height: 250px;
}
.testimonials-slider-content {
	max-width: 840px;
	margin: 0 auto;
	text-align: center;
}
.testimonials-slider-content ul {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 8px;
	margin-bottom: 24px;
}
.testimonials-slider-para p {
	font-size: 24px;
	line-height: 36px;
}
.testimonials-client-block .founder-block {
	margin-top: 32px;
	padding: 0;
	border: 0;
	text-align: left;
}
.testimonials-nav .testimonials-button-prev,
.testimonials-nav .testimonials-button-next {
	position: absolute;
	top: 50%;
	left: 64px;
	transform: translateY(-50%);
}
.testimonials-nav .testimonials-button-next {
	right: 64px;
	left: auto;
}
/* Testimonials Section End */

/* Marquee */
.marquee-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    background: #F4F4ED;
}

.marquee-container {
    display: flex;
    flex-wrap: nowrap;
    width: max-content;
    animation: marquee 60s linear infinite; /* Slower */
    list-style: none;
    padding: 32px 0;
    margin: 0;
}

.scroll-card {
    padding: 0 32px;
    white-space: nowrap;
    position: relative;
    flex-shrink: 0;
}

.scroll-card::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 0;
    width: 16px;
    height: 16px;
    background-color: #79948F;
    border-radius: 50%;
}

@keyframes marquee {
    0%   { transform: translateX(0%); }
    100% { transform: translateX(-50%); } /* Only -50% since we're duplicating content */
}
/* Marquee End */

/* Footer */
.footer-middle {
    background: #101312;
    padding: 80px 0;
}
.footer-title {
	margin-bottom: 32px;
	font-family: "Playfair Display", serif;
}
.footer-service-menu {
	column-count: 2;
}
.footer-service-menu li {
	margin-bottom: 16px;
}
.footer-service-menu li a {
	font-size: 16px;
	line-height: 24px;
	font-weight: 500;
	color: rgb(255 255 255 / 70%);
}
.footer-service-menu li a:hover {
	color: #fff;
	transition: all 0.4s;
}
.social-media-list {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 40px;
}
.footer-logo {
	margin-bottom: 32px;
}
.newsletter-block {
	margin-bottom: 40px;
}
.tnp-subscription .tnp-field-email label {
  display: none;
}
.tnp-subscription .tnp-field-email {
  position: relative;
}
.site-footer .tnp-subscription input[type="email"],
.site-footer .tnp-subscription input[type="submit"],
.site-footer .tnp-profile input[type="email"],
.site-footer .tnp-profile input[type="submit"] {
  width: 100%;
  padding: 12px 24px;
  display: block;
  color: #fff;
  border: 0;
  background-color: #404241;
  background-image: none;
  text-shadow: none;
  font-size: 18px;
  line-height: 26px;
  margin: 0;
  box-sizing: border-box;
  transition: all 0.4s;
}
.site-footer .tnp-subscription input[type="email"] {
	border-radius: 50px;
}
.site-footer .tnp-subscription input[type="email"]::placeholder {
	color: rgb(255 255 255 / 50%);
}
.site-footer .tnp-subscription input[type="submit"] {
    width: 60px;
    background: url(./assets/images/arrow-right-large.svg) no-repeat center;
    background-size: 26px;
    background-color: #79948F;
    color: #fff;
    position: absolute;
    right: 0;
    padding: 12px 16px;
    font-size: 0;
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
}
.site-footer .tnp-subscription input[type="submit"]:hover {
  background-color: #404241;
  transition: all 0.4s;
}

.site-footer .tnp-subscription input[type="email"]:focus,
.site-footer .tnp-subscription input[type="submit"]:focus,
.site-footer .tnp-profile input[type="email"]:focus,
.site-footer .tnp-profile input[type="submit"]:focus {
  border-color: #285455 !important;
}
.tnp-subscription div.tnp-field {
  margin-bottom: 0;
}
div.tnp-subscription {
  margin: 0;
  max-width: 100%;
  position: relative;
}
.tnp-field-button {
	position: absolute;
	top: 0;
	right: 0;
	padding: 0;
}
.contact-details li:not(:last-child) {
	margin-bottom: 16px;
}
.contact-details .location,
.contact-details a,
.contact-details p {
	display: flex;
	align-items: center;
	gap: 16px;
}
.footer-middle-section {
	max-width: 357px;
	padding: 0 38px;
	margin: 0 auto;
	position: relative;
}
.footer-middle-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	mask-image: url(./assets/images/sb_salon_large.svg);
	-webkit-mask-image: url(./assets/images/sb_salon_large.svg);
	width: 323px;
	height: 300px;
	background: rgb(244 244 237 / 60%);
    mask-size: cover;
    -webkit-mask-size: cover;
    mask-repeat: no-repeat;
    -webkit-mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-position: center;
    transition: 0.3s ease-in-out;
	margin: 0 auto;
}
.footer-middle-first-col,
.footer-middle-last-col {
	position: relative;
}
.footer-middle-first-col::before,
.footer-middle-last-col::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 1px;
	height: 230px;
	border-right: 1px solid rgb(244 244 237 / 30%);
}
.footer-middle-last-col::before {
	border-right: 0;
	right: auto;
	left: 0;
	border-left: 1px solid rgb(244 244 237 / 30%);
}
.footer-middle-section .site-branding a img.custom-logo {
    max-width: 48px;
}
.contact-details {
    padding-left: 38px;
}
.footer-bottom {
	background-color: #101312;
	padding: 16px 0;
}
.footer-bottom {
	font-size: 14px;
	line-height: 20px;
	color: rgb(255 255 255 / 50%);
}
.footer-bottom p a {
	display: inline-block;
}
.c-go-top {
    position: fixed;
    bottom: 60px;
    right: 60px;
    display: none;
    background-color: #79948F;
    padding: 5px;
    text-decoration: none;
    z-index: 999;
    border: 1px solid #79948F;
    border-radius: 50px;
    transition: all 0.4s;
    width: 40px;
    height: 40px;
    text-align: center;
}
.c-go-top svg path {
    fill: #fff;
}
.c-go-top:hover {
  background-color: #101312;
  border-color: #101312;
}

/* Footer End */

/* Gallery */
.site-content {
    padding-top: 108px;
}
.home .site-content {
    padding-top: 0;
}
.breadcrumb-container {
    background-color: rgb(121 148 143 / 20%);
    padding: 28px 0;
}
.aigpl-gallery {
  margin-left: -10px;
}
.aigpl-img-link {
  width: 100%;
  height: 100%;
  display: block;
  border: 1px solid #cdcdcd;
  border-radius: 24px;
}
.aigpl-gallery-wrp .aigpl-img-wrp {
  display: flex;
  align-items: center;
  justify-content: center;
}
.aigpl-gallery-wrp .aigpl-img,
.aigpl-gallery-album-wrp .aigpl-img {
  padding: 24px;
  object-fit: cover;
  display: block;
  height: 100%;
  width: 100%;
  border-radius: 24px !important;
}
.aigpl-img-link {
  scale: 1;
  transition: all 0.3s ease-in-out;
}
.aigpl-img-link:hover {
  scale: 0.95;
}
/* Gallery End */

/* Services */
.services-row {
  margin-bottom: 50px;
}
.services-row:last-of-type {
  margin-bottom: 0;
}
.services-row:nth-of-type(odd) .services-img-col {
  order: 2;
}
.services-detail p {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 8px;
}
.services-header-container p {
  margin-bottom: 20px;
}
.services-header-container p:last-of-type {
  margin-bottom: 0;
}
.services-image {
  position: sticky;
  top: 100px;
}
.services-image img {
  border-radius: 24px;
  aspect-ratio: 3/2;
  height: 100%;
  object-fit: cover;
}
.services-image,
.services-image img {
  width: 100%;
}
/* Services End */

/* Thank You Page */
.text-sm {
  font-size: 14px;
  line-height: 22px;
}

.thankyou-content {
  padding: 40px;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  border: 1px solid rgb(121 148 143 / 50%);
  border-radius: 16px;
}

.thankyou-content img {
  margin: 0 auto;
}

.thankyou-content h1 {
  text-transform: capitalize;
  color: #79948F;
}

.thank-you-image {
  display: inline-block;
  margin: 0 auto 24px;
  max-width: 100px;
}

#check-group {
  /* animation: 0.32s ease-in-out 1.03s check-group; */
  animation: 3s ease-in-out infinite check-group;
  transform-origin: center;
}

#check-group #check {
  animation: 0.34s cubic-bezier(0.65, 0, 1, 1) 0.8s forwards check;
  stroke-dasharray: 0, 75px;
  stroke-linecap: round;
  stroke-linejoin: round;
}

#check-group #outline {
  animation: 0.38s ease-in outline;
  transform: rotate(0deg);
  transform-origin: center;
}

#check-group #white-circle {
  animation: 0.35s ease-in 0.35s forwards circle;
  transform: none;
  transform-origin: center;
}

@keyframes outline {
  from {
    stroke-dasharray: 0, 345.576px;
  }

  to {
    stroke-dasharray: 345.576px, 345.576px;
  }
}

@keyframes circle {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(0);
  }
}

@keyframes check {
  from {
    stroke-dasharray: 0, 75px;
  }

  to {
    stroke-dasharray: 75px, 75px;
  }
}

@keyframes check-group {
  from {
    transform: scale(1);
  }

  50% {
    transform: scale(1.09);
  }

  to {
    transform: scale(1);
  }
}
/* End Thank You Page */


/* 404 Page */
.page-not-found-section {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: calc(100vh - 300px);
}

.page-not-found-section .error {
  font-size: 150px;
  line-height: 150px;
  color:  #F6F3F5;
  text-shadow: 1px 1px 1px #79948F, 2px 2px 1px #79948F, 3px 3px 1px #79948F,
    4px 4px 1px #79948F, 5px 5px 1px #79948F, 6px 6px 1px #79948F,
    7px 7px 1px #79948F, 8px 8px 1px #79948F, 25px 25px 8px rgba(0, 0, 0, 0.2);
}

/* 404 Page End*/