/* Imports */
/* Icons */
@import url("https://site-assets.fontawesome.com/releases/v6.0.0/css/all.css");
/* Fonts */
@import url("https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Tenor+Sans&display=swap');

:root {
    --white: #fff;
    --black: #000;
    --primary: #e5b985;
    --theme-color: #d4aea0;
    --secondary: #b9c0da;
}

::selection {
    background-color: var(--secondary);
    color: var(--white);
}

/* General Styling */
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    text-decoration: none !important;
    list-style-type: none;
    /* font-family: "Figtree", sans-serif; */
    overflow-wrap: break-word;
}
h1,
h2,
h3,
h4,
h5,
h6{
    font-family: "Tenor Sans", sans-serif;

}
html {
    /* scroll-behavior: smooth; */
    overflow-x: hidden;
}

body {
    overflow-x: clip;
    background: #131516;
    font-family: "Montserrat", sans-serif !important;

}

.row.blog-row span {
    font-family: "Montserrat", sans-serif !important;
}

a,
button {
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    display: inline-block;
}

ul,
ol,
dl,
address,
label,
figure {
    margin-bottom: 0;
}

/* p {
    font-size: 1.0625rem;
    font-weight: 500;
    line-height: 1.75;
    color: #b4acae;
} */

p {
    font-size: 0.938rem;
    font-weight: 400;
    line-height: 1.6;
    color: #fff;
}

section {
    position: relative;
    padding: 1rem 0;
}

.color-primary {
    color: var(--primary);
}

.color-secondary {
    color: var(--secondary);
}

/* LENIS */
html.lenis {
    height: auto;
 }
/*
.lenis.lenis-smooth {
    scroll-behavior: auto;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
} */

/* .lenis.lenis-scrolling iframe {
    pointer-events: none;
} */

/* Preloader */
.preLoader {
    width: 100%;
    height: 100%;
    z-index: 1111;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
}

.preLoader.black {
    background-color: var(--black);
    z-index: 11113;
}

.preLoader.white {
    z-index: 11112;
    background-color: var(--primary);
}

.preLoader video {
    width: 100%;
}

/* Cursor */
.mouse-cursor {
    position: fixed;
    left: 0;
    top: 0;
    pointer-events: none;
    border-radius: 50%;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    visibility: hidden;
}

.cursor-inner {
    margin-left: 2px;
    margin-top: 2px;
    width: 7px;
    height: 7px;
    z-index: 10000001;
    background-color: var(--secondary);
    -webkit-transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
    margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
    -o-transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
    margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
    transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
    margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.cursor-inner.cursor-hover {
    margin-left: -10px;
    margin-top: -10px;
    width: 30px;
    height: 30px;
    background-color: var(--secondary);
    opacity: 0.3;
}

/* SEARCHPOPUP */
.searchPopup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    transition: all 0.5s ease-in-out;
    transform: translate(0, -100%) scale(0, 0);
    opacity: 0;
    z-index: 999999;
}

.searchPopup.open {
    transform: translate(0, 0) scale(1, 1);
    opacity: 1;
}

.searchPopup input[type="search"] {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: fit-content;
    color: var(--white);
    background: #414141bd;
    font-size: 3.125rem;
    line-height: 65px;
    text-align: center;
    border: none;
    padding: 0 1.875rem;
    outline: none;
}

/* .searchPopup .btn {
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: 61px;
	margin-left: -45px;
	background-color: limegreen;
	border: var(--black);
} */

.searchPopup .close {
    position: fixed;
    top: 15px;
    right: 15px;
    color: var(--white);
    opacity: 1;
    padding: 0.75rem 1.25rem;
    font-size: 27px;
}

.srch-btn {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: -1;
}

.srch-btn .themeBtn {
    padding: 15px 120px;
    font-size: 1.25rem;
    margin-top: 1rem;
}

/* THEMEBTN */
.themeBtn {
    width: fit-content;
    display: block;
    background-color: var(--primary);
    color: var(--black);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: capitalize;
    overflow: hidden;
    padding: 0.75rem 3rem;
}

.themeBtn--light {
    background: var(--white);
}

.themeBtn--border {
    background-color: transparent;
    border: 1px solid var(--white);
    color: var(--white);
}

.border--secondary {
    border-color: var(--secondary);
    color: var(--secondary);
}

.themeBtn:hover {
    background: var(--white);
    color: var(--black);
}

.themeBtn--light:hover {
    background: var(--primary);
}

.border--secondary:hover {
    background: var(--secondary);
    color: var(--black);
}

/* HEADINGS */
.subHeading {
    width: fit-content;
    background: var(--secondary);
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    line-height: 1;
    letter-spacing: 2px;
    padding: 0.5rem;
    margin-bottom: 1rem;
    overflow: hidden;
}

.heading {
    font-size: 3.375rem;
    font-weight: 400;
    text-transform: uppercase;
    color: var(--theme-color);
    margin-bottom: 1rem;
    overflow: hidden;
}

.heading .char {
    display: inline !important;
}

.heading--sm {
    font-size: 2.625rem;
}

.subText {
    color: #a49f9b;
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    line-height: 1;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    overflow: hidden;
}

/* HEADER */
.header {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 999;
    padding: 0rem 29rem;
    transition: 0.3s ease-in-out;
}

.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-top__links li a {
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.header-top__links li a:hover {
    color: var(--primary);
}

.header-top__links li+li {
    margin-top: 0.5rem;
}


.header-top__logo img {
    width: 150px;
    height: 150px;
}

.header-top__btn {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.header-top__btn a i {
    font-size: 1.25rem;
    color: var(--white);
}

.header-top__btn a:hover i {
    color: var(--primary);
}

.header-main__nav {
    gap: 2rem;
    margin: 1rem auto 0;
}

.header-main__nav li a {
    color: var(--white);
    font-size: 1rem;
    font-weight: 400;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 2px;
}

.header-main__nav li a:hover {
    color: var(--primary);
}
.navbar .nav-item.drop-down {
    position: relative;
    z-index: 1;
}

.navbar .drop-down>a:after {
    content: '\f0d7';
    font-family: 'Font Awesome 5 Pro';
    font-weight: 900;
    padding-left: 5px;
    color: var(--primary);
}

.navbar .drop-down ul {
    width: max-content;
    position: absolute;
    top: calc(100% + 30px);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    padding: 0;
    background: #ffffff90;
    box-shadow: 0px 0px 30px rgb(127 137 161 / 25%);
    transition: 0.3s;
    column-count: 3;
    padding: 0.25rem;
    backdrop-filter: blur(4px);
}

.navbar .drop-down:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.navbar .drop-down li {
    width: 200px;
    position: relative;
    list-style: none;
}

.navbar .drop-down ul a {
    padding: 0.5rem 1.125rem;
    font-size: 13px;
    font-weight: 500;
    text-transform: none;
    color: #151515;
    display: block;
}

.navbar .drop-down ul a:hover {
    background: var(--primary);
    color: #fff;
}


/* BANNER */
.banner {
    height: 1200px;
    padding: 0;
}

.bannerSlider .bannerImg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: end;
    justify-content: center;
    position: relative;
}
.bannerSlider .bannerImg::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000a6;
    z-index: 0;
}

.bannerImg__content {
    text-align: center;
    margin-bottom: 10rem;
}

.bannerImg__content h1 {
    font-size: 4.125rem;
    font-weight: 300;
    text-transform: uppercase;
    line-height: 1;
    color: var(--white);
    margin: 0;
}

.bannerImg__content p {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.2;
    color: var(--white);
    margin: 1rem 0 1.5rem;
}

.bannerImg__contentBtn {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

/* About Us */
.about__img img {
    width: 581px;
    object-fit: cover;
    margin: 0 auto;
    display: block;
}

.about__img img:nth-child(2) {
    width: 260px;
    margin: -14rem 0 0 auto;
    display: block;
}

.about__content {
    margin-left: 3.5rem;
}

.about__content p {
    margin-bottom: 1.5rem;
}

/* Services */
.services-card {
    position: relative;
    overflow: hidden;
}

.services-card img {
    width: 100%;
    height: 813px;
    object-fit: cover;
    transition: all 300ms ease-in-out;
}

.services-card figcaption {
    width: 100%;
    color: var(--white);
    font-size: 2.625rem;
    font-weight: 100;
    text-transform: uppercase;
    position: absolute;
    bottom: 0;
    left: 0;
    text-align: center;
    padding: 2rem 1rem;
}

.services-card:hover img {
    transform: scale(1.1);
}

/* faceial-sec */
.faceialsec {
    background: url(../images/faceiabg.png) center / cover no-repeat;
}

.faceialsec .heading {
    margin-bottom: 4rem;
}

/* faceial-sec */

/* About Popular */
.about--popular .about__content {
    background: url(../images/about-popular-bg.png) no-repeat center/cover;
    padding: 4rem;
    margin: 0 -7rem 0 0;
}

.aboutTabs .nav-link {
    font-size: 0.8125rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: none;
    background: #25272a;
    color: var(--secondary);
    border-radius: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.aboutTabs .nav-item:not(:last-child) .nav-link {
    border-right: 1px solid var(--black);
}

.aboutTabs .nav-link.active {
    color: var(--black);
}

.aboutTabs .nav-link.active img {
    filter: brightness(0);
}

/* subBanner */
.subBanner {
    height: 830px;
    background: url(../images/Explore\ Our\ before\ &\ after\ Gallery.jpg) no-repeat center/cover;
    display: flex;
    align-items: center;
    padding: 0;
}

.subBanner__content p {
    color: var(--white);
}

/* Testimonials */
/* .testimonials {
	background: url(../images/testimonials-bg.png) no-repeat center/cover;
	padding: 9rem 0;
}

.testimonials-content {
	text-align: center;
}

.testimonials-content .star {
	color: var(--primary);
	font-size: 1.25rem;
	margin-bottom: 3rem;
}

.testimonials-content p {
	font-size: 1.5rem;
	font-style: italic;
	margin-bottom: 3rem;
}

.testimonials-content img {
	width: 76px;
	aspect-ratio: 1;
	border-radius: 100%;
}

.testimonials-content h4 {
	color: var(--white);
	font-size: 1.3125rem;
	line-height: 1.5;
	margin: 1rem 0 0;
}

.testimonials-content h4 span {
	color: #A49F9B;
	font-size: 1rem;
	display: block;
}

:is(.testimonial-button-prev, .testimonial-button-next)::after {
	color: #A49F9B;
} */

/*  About Us Surgical */
.about--surgical .about__img img:nth-child(1) {
    margin-left: auto;
    display: block;
}

.about--surgical .about__img img:nth-child(2) {
    margin: -12rem auto 0 0;
}

.about__content ul {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 0;
    margin-bottom: 2rem;
}

.about__content ul li {
    flex: 0 0 50%;
    color: #b4acae;
    position: relative;
    padding-left: 1.5rem;
}

.about__content ul li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Pro";
    color: var(--primary);
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

/* About Us Meet */
.about--meet {
    background: #25272a;
}

.about--meet .about__img {
    position: relative;
}

.playBtn {
    background: var(--black);
    position: absolute;
    bottom: 7rem;
    left: -2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
}

.playBtn i {
    width: 50px;
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    background: var(--primary);
    color: var(--black);
    font-size: 1.25rem;
    border-radius: 100%;
    transition: all 300ms ease-in-out;
}

.playBtn h4 {
    color: var(--secondary);
    font-size: 0.9375rem;
    margin: 0;
}

.playBtn h4+h4 {
    margin-top: 0.25rem;
}

.playBtn:hover i {
    background: var(--white);
}

/* Counter */
.counter {
    margin-top: 5rem;
}

.counter-number {
    color: var(--white);
    font-size: 1.1875rem;
    text-align: center;
}

.counter-number span {
    font-size: 2.625rem;
    display: block;
}

/* subBanner1 */
.subBanner1 {
    height: 760px;
    background: url(../images/Discover\ Your\ Perfect\ Treatment.jpg) no-repeat center/cover;
}

.packages-card {
    position: relative;
    background: var(--white);
    padding: 2rem 0;
    overflow: hidden;
    transition: all 300ms ease-in-out;
}

.packages-card .price {
    font-size: 3.75rem;
    font-weight: 600;
    display: flex;
    gap: 0.25rem;
    padding: 0 2rem;
    margin-bottom: 1rem;
    justify-content: center;
}

.packages-card .price>span {
    font-size: 1.625rem;
    font-weight: 600;
}

.packages-card .price>span>span {
    font-size: 0.875rem;
    text-transform: uppercase;
    display: block;
    color: #a6a7ab;
}

.packages-card .title {
    font-size: 1.5rem;
    color: var(--black);
    background: #f6f6f7;
    padding: 1rem 2rem;
    margin: 0;
}

.packages-card .title span {
    font-size: 1rem;
    color: #74757b;
    display: block;
}

.packages-card ul {
    margin: 1.5rem 2rem;
}

.packages-card ul li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    gap: 1rem;
    flex-flow: wrap column;
}

.packages-card ul li:not(:last-child) {
    border-bottom: 1px solid #00000020;
}

.packages-card ul li span {
    font-weight: 500;
    text-transform: capitalize;
}

.packages-card ul li span:nth-child(2) {
    color: #75767b;
}

.packages-card .themeBtn {
    margin: 0 auto;
}

.packages-card:hover {
    background: #121113;
    box-shadow: 0 0 20px 1px #ffffff20;
    color: var(--white);
    transform: translateY(-10px);
}

.packages-card:hover ul li span:nth-child(2) {
    color: var(--white);
}

.packages-card:hover ul li {
    border-color: var(--white);
}

.packages-card .badge {
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--black);
    background: var(--primary);
    padding: 1rem 3rem;
    position: absolute;
    top: 1rem;
    right: -3rem;
    transform: rotate(45deg);
}

.products-card figure img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    transition: all 300ms ease-in-out;
}

.products-card__content {
    text-align: center;
    margin-top: 1.5rem;
}

.products-card__content .title {
    color: var(--white);
    font-size: 1.1875rem;
    font-weight: 100;
    margin-bottom: 0.25rem;
}

.products-card__content .price {
    color: #71beb1;
    font-weight: 600;
    margin: 0;
}

.products-card figure {
    overflow: hidden;
}

.products-card:hover figure img {
    transform: scale(1.1);
}

/* News */
.news-card figure img {
    width: 100%;
    transition: all 300ms ease-in-out;
}

.news-card__content {
    text-align: center;
    margin-top: 1rem;
}

.news-card__content h5 {
    width: fit-content;
    font-size: 0.8125rem;
    font-weight: 500;
    text-transform: uppercase;
    background: var(--secondary);
    padding: 0.25rem;
    margin: 0 auto 1rem;
}

.news-card__content h4 {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--white);
}

.news-card__content a {
    color: var(--white);
    border-top: 1px solid #413f40;
    display: block;
    padding-top: 1rem;
    margin-top: 2rem;
}

.news-card figure {
    overflow: hidden;
}

.news-card:hover figure img {
    transform: scale(1.1);
}

/* Instagram */
.instagram-img {
    overflow: hidden;
}

.instagram-img img {
    transition: all 300ms ease-in-out;
}

.instagram-img:hover img {
    transform: scale(1.1);
}

/* Footer */
.footer {
    background: url(../images/footer-bg.png) no-repeat center/cover;
}

.footer-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    padding: 2rem 0 3rem;
}

.footer-links li a {
    font-size: 0.875rem;
    color: var(--white);
    text-transform: uppercase;
}

.footer-quickLinks h4 {
    font-size: 1.75rem;
    color: var(--white);
    text-align: center;
    margin-bottom: 1.5rem;
}

.footer-quickLinks ul li a {
    color: #b4acae;
}

.footer-logo {
    text-align: center;
}

.footer-logo ul {
    margin-top: 2rem;
    text-transform: uppercase;
}

.footer-contact ul {
    text-align: center;
}

.footer-contact .socailIcons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.footer-contact .socailIcons li a {
    width: 40px;
    aspect-ratio: 1;
    background: var(--primary);
    color: var(--black);
    display: grid;
    place-items: center;
    border-radius: 100%;
}

.copyRight {
    margin-top: 3rem;
    padding: 1rem 0;
}

.copyRight p {
    text-align: center;
    margin: 0;
}

.explore-main {
    padding: 5rem 0 10rem;
    position: relative;
    background: var(--primary);
}

.explore-main .explore-img {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 43%;
}

.explore-main .explore-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.explore-content p {
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.explore-content ul {
    display: flex;
    align-items: center;
}

.explore-content ul li {
    flex: 0 0 55%;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.125rem;
    color: var(--white);
    font-weight: 300;
}

.explore-content ul+ul {
    margin-top: 6px;
}

.explore-content ul+ul+p {
    font-size: 1rem;
    line-height: 1.63125rem;
    margin: 1.4rem 0 5rem;
}

a.fnd-btn {
    font-size: 14px;
    color: var(--white);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

a.fnd-btn i {
    transform: rotate(45deg);
}

.explore-main .explore-img .interest-box {
    position: absolute;
    bottom: 1.5rem;
    right: 3rem;
    background: rgb(255 255 255 / 15%);
    width: 326px;
    border: 1px solid rgb(255 255 255 / 30%);
    border-radius: 20px;
    padding: 2rem 2rem;
}

.explore-main .explore-img:before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgb(0 0 0 / 60%);
}

.explore-main .explore-img .interest-box h2 {
    font-size: 1.25rem;
    color: var(--white);
    font-weight: 400;
    margin: 0 0 1.5rem;
}

.explore-main .explore-img .interest-box .themeBtn {
    background: transparent;
    border: 1px solid var(--white);
    color: var(--white);
}

.servc-heading .heading {}

.servc-heading .subHeading {
    margin: 0 0 0.6rem;
}

.service-card figure {
    position: relative;
    overflow: hidden;
}

.servc-overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 3rem;
    right: 0;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: space-between;
    padding: 2.5rem 0rem;
}

.service-card figure img {
    border-radius: 20px;
    width: 100%;
    height: 585px;
    object-fit: cover;
}

.service-card figure:before,
.shop-card figure:before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgb(0 0 0 / 30%);
    border-radius: 20px;
}

.servc-overlay h3 {
    font-size: 13px;
    color: var(--white);
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 2px;
    margin: 0 0 1.2rem;
}

.servc-overlay h6 {
    font-size: 1.60375rem;
    color: var(--white);
    font-weight: bold;
    margin: 0;
}

.service-card {
    margin-bottom: 3rem;
}

.shop-main {
    background: url(../images/faceiabg.png) center / cover no-repeat;
    padding: 8rem 0;
    position: relative;
}

.servc-heading .heading span {
    display: block;
    font-size: 2.125rem;
}

.shop-card figure {
    position: relative;
}

.shop-card figure img {
    border-radius: 20px;
    height: 560px;
    width: 100%;
    object-fit: cover;
}

.shopSlider {
    margin: 0 -32rem;
}

.wellnes-heading {
    margin: 7.5rem 0 3rem;
}

.productSlider {
    margin: 0 -35rem;
}

.shop-card .servc-overlay .themeBtn {
    background: var(--white);
    color: #222222;
}

.shop-arrow {
    position: absolute;
    right: 13rem;
    top: 11rem;
    display: flex;
    align-items: center;
    width: 100%;
}

.product-arrow {
    position: absolute;
    right: 13rem;
    top: 61rem;
    display: flex;
    align-items: center;
    width: 100%;
}

.shop-arrow .swiper-button-prev,
.product-arrow .swiper-button-prev {
    left: auto;
    right: 4.5rem;
    width: 60px;
    height: 60px;
    border: 1px solid var(--white);
    border-radius: 50%;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.shop-arrow .swiper-button-next,
.product-arrow .swiper-button-next {
    right: 0;
    width: 60px;
    height: 60px;
    border: 1px solid var(--white);
    border-radius: 50%;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.shop-arrow .swiper-button-next:after,
.product-arrow .swiper-button-next:after {
    font-size: 1rem;
    color: var(--white);
    font-weight: 600;
}

.shop-arrow .swiper-button-prev:after,
.product-arrow .swiper-button-prev:after {
    font-size: 1rem;
    color: var(--white);
    font-weight: 600;
}

.shop-arrow .swiper-button-prev:hover,
.shop-arrow .swiper-button-next:hover,
.product-arrow .swiper-button-prev:hover,
.product-arrow .swiper-button-next:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.team-card {
    border: 1px solid var(--white);
    border-radius: 20px;
    padding: 3rem 2.5rem 1rem;
    height: 655px;
}

.team-card h6 {
    font-size: 1.655rem;
    color: var(--white);
}

.team-card p {
    color: var(--white);
    font-size: 1.125rem;
    font-weight: 200;
    /* text-align: center; */
    margin: 0;
}

.team-card figure {
    text-align: center;
    margin: 2rem 0 1rem;
}

.team-card figure img {
    border-radius: 61%;
    width: 116px;
    height: 143px;
    object-fit: inherit;
}

.team-card ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--white);
    padding: 1.6rem 0 0;
}

.team-card ul li:last-child {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.team-card ul li:last-child a {
    color: var(--white);
}

/* all type skin */
.services-top .btn-group {
    gap: 30px;
    margin-top: 1rem;
}

.services-top .btn-group .themeBtn {
    background: var(--primary);
    color: #fff;
}

.btn-group a.themeBtn.blackbtn {
    background: #000;
    border-color: #000;
}

.all-type-skin {
    padding: 2rem 0;
}

/* all type skin */

/* popular-section */
.popular-section::after {
    position: absolute;
    content: "";
    background: var(--primary);
    width: 100%;
    height: 863px;
    top: 0;
    z-index: -1;
}

.popular-section::before {
    position: absolute;
    content: "";
    background: url(../images/tetsibg.webp) right no-repeat;
    width: 100%;
    height: 863px;
    top: 0;
}

.subpop {
    background: #fff;
    padding: 30px 70px;
    text-align: center;
}

.subpop h3 {
    font-size: 20px;
    color: #050505;
    font-weight: 500;
    margin-top: 20px;
}

.subpop h2 {
    font-size: 20px;
    color: #050505;
    font-weight: 500;
}

.popular-wrap {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    justify-content: end;
    margin-right: 4rem;
}

.testimonial-wrap {
    text-align: center;
}

.testimonial-wrap p {
    font-size: 1rem;
    color: #fff;
    line-height: 2;
    margin: 79px auto 42px auto;
    width: 70%;
}

.testimonial-wrap h4 {
    font-size: 1.125rem;
    font-weight: 500;
    color: #fff;
    margin-top: 2rem;
}

.testimonial-wrap h4 span {
    display: block;
    font-size: 1rem;
}

.testimonial-wrap .subHead {
    position: relative;
}

.testimonial-wrap .subHead::before {
    position: absolute;
    content: "";
    background: #fff;
    width: 132px;
    height: 2px;
    bottom: -2rem;
    left: 0;
    right: 0;
    margin: auto;
}

.right-popular .mainHead {
    margin-bottom: 3rem;
}

section.popular-section {
    padding: 6rem 0 13rem 0;
}

.right-popular {
    margin-left: 40%;
}

.testimonialSlider .swiper-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    bottom: 0;
}

.testimonialSlider .swiper-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #fff;
    border: 2px solid var(--white);
    opacity: 1;
}

.testimonialSlider .swiper-pagination .swiper-pagination-bullet-active {
    background: var(--primary);
    border-color: #7b5f43;
}

.testimonialSlider {
    padding-bottom: 2rem;
}

/* popular-section */

/* gallery-section */
.galller-top {
    text-align: center;
    margin-bottom: 2rem;
}

.gallerycntnnt {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* gap: 12rem; */
    position: absolute;
    bottom: 29px;
    right: 1rem;
    left: 1rem;
}

.gallerywrap figure {
    position: relative;
}

.gallerywrap figure img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    box-shadow: 0 4px 4px 0 rgb(0 0 0 / 25%);
}

.gallerywrap {
    margin-bottom: 35px;
}

.gallerycntnnt h3 {
    font-size: 13px;
    font-weight: 400;
    background: #0000005c;
    color: #fff;
    padding: 5px 7px;
}

.gallerycntnnt h4 {
    font-size: 13px;
    font-weight: 400;
    background: #0000005c;
    color: #fff;
    padding: 5px 7px;
    text-transform: capitalize;
}

/* gallery-section */
.all-type-skin__tab {
    gap: 1rem;
}

.all-type-skin__tab .themeBtn {
    border-radius: 0;
    background: var(--black);
    color: var(--white);
}

.all-type-skin__tab .themeBtn:hover,
.all-type-skin__tab .themeBtn.active {
    background: var(--primary);
}

/* Inner Pages Css Start */
.inner-ban .overlay {
    position: absolute;
    display: flex;
    align-items: center;
    text-align: center;
    inset: 0;
}

.overlay h2 {
    font-size: 66px;
    font-weight: 400;
    color: var(--white);
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.overlay h2 a {
    font-size: 2rem;
    color: var(--white);
}

.inner-ban {
    width: 100%;
    height: 670px;
    position: relative;
}

.inner-ban>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 25%;
}

.shop-page .heading {
    margin-bottom: 15px;
}

.shop-page .shop-card {
    margin-bottom: 30px;
}

.shop-page-product .row+.row {
    padding: 37px 0 0 0;
}

.products.shop-page-product {
    background: #25272a;
}

.shop-page-wellness .shop-card {
    margin-bottom: 30px;
}

.servc-overlay.product-box {
    justify-content: end;
}

.shop-page-wellness {
    padding: 0;
}

.peckages.promotion-page {
    padding: 80px 0 0;
}

.news.resources-page {
    padding: 80px 0 0;
}

section.contact-page {
    padding: 70px 0 90px;
    background-color: #25272a;
}

section.contact-page h2 {
    font-size: 22.1px;
    font-weight: 300;
    /* text-align: center; */
    margin-bottom: 22px;
    color: #ffffff;
    margin-top: 24px;
}

form.contact-form .form-group input {
    height: 52px;
    width: 100%;
    background-color: transparent;
    outline: unset !important;
    box-shadow: unset !important;
    border-radius: unset;
    border: 1px solid #d2d2d2;
    color: white;
    padding: 0 1.3rem;
}

form.contact-form .form-group textarea {
    background-color: transparent;
    height: 157px;
    width: 100%;
    outline: unset !important;
    box-shadow: unset !important;
    border-radius: unset;
    margin-bottom: 54px;
    border: 1px solid #d2d2d2;
}

form.contact-form button {
    margin: auto;
    border: 1px solid #ffffff;
    background: transparent;
    height: 50px;
    width: 195px;
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
    font-family: "Figtree";
}

form.contact-form .form-group input::placeholder {
    font-size: 17px;
    font-weight: 400;
    color: #b4acae;
}

form.contact-form .form-group textarea::placeholder {
    font-size: 17px;
    font-weight: 400;
    color: #b4acae;
}

.treatment-services-page {
    padding: 80px 0 0;
}

.our-vision-Imag {
    position: relative;
}

.vision-sub-Imag {
    position: absolute;
    top: 75%;
    left: -82px;
}

.our-vision .about__content {
    margin: 0;
}

.our-vision .about__content p {
    width: 90%;
}

.about.our-vision {
    background-color: #25272a;
    padding: 80px 0 180px;
}

section.meet-team.about-page-meet .row+.row {
    padding: 29px 0;
}

section.meet-team.about-page-meet {
    padding: 80px 0 0;
}

section.shop-main.shop-page {
    padding: 80px 0;
}

.mission {
    background: url(../images/Mission-imag.png) center/cover no-repeat;
}

.resources-page .news-card__content {
    margin-bottom: 30px;
}

.faqSec {
    margin-top: -5rem;
    padding: 8rem 0 0 0;
}

.faqSec #accordion .card {
    padding: 0rem 1rem;
    background: transparent;
    margin-bottom: 2rem;
    border-radius: 10px;
    border: 1px solid #e5b985;
    padding: 1rem;
}

.faqSec #accordion .card .btn-link {
    --height: 3.5rem;
    --width: 4.5rem;
    width: 100%;
    display: flex;
    align-items: center;
    color: #e5b985;
    padding: 0;
    border: 0;
    font-size: 30px;
    border-radius: unset;
    text-decoration: none;
    overflow: hidden;
    border-bottom-left-radius: 0;
    text-align: left;
    /* / border-bottom: 3px solid #231F20; / */
    /* / margin-bottom: 1.5rem;  */
    padding-bottom: 1rem;
    font-family: "Figtree";
    font-weight: 500;
}

.faqSec #accordion .card .btn-link i {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    width: var(--width);
    height: var(--height);
    margin-left: auto;
    border-radius: 50%;
    background: 000;
    font-size: 1rem;
    height: 2rem;
    width: 2rem;
}

.faqSec #accordion .card .btn-link i::before {
    content: "\f068";
    color: #E5B985;
}

.faqSec #accordion .card .btn-link.collapsed i::before {
    content: "\f067";
}

.faqSec #accordion .card .btn-link.collapsed i {
    color: #225743;
    height: 2rem;
    width: 2rem;
    font-size: 1rem;
}

.faqSec #accordion .card .btn-link {
    /* / border-bottom: 4px solid #2f8cce; / */
}

.faqSec #accordion .card .btn-link i {
    color: #2f8cce;
}

.faqSec #accordion .card .btn-link.collapsed {
    /* / border-bottom: 4px solid #004b81; / */
    color: #B4ACAE;
}

.faqSec #accordion .card .btn-link.collapsed i {
    color: #004b81;
}

.faqSec #accordion .card+.card {
    margin-top: 0;
    border: 1px solid #FFFFFF;
}

.faqSec #accordion .card .card-body {
    padding: 0rem 4rem 0.5rem 0rem;
}

.faqSec #accordion .card .card-body p {
    color: #B4ACAE;
    font-size: 17px;
    margin: 0;
    line-height: 33px;
    font-weight: 400;
    font-family: 'Figtree';
}

/* splineChat */
.splineChat-btn {
    width: 80px;
    aspect-ratio: 1;
    background: var(--white);
    box-shadow: 0 0 20px 1px #00000020;
    border-radius: 100%;
    font-size: 1.5rem;
    color: var(---blac);
    position: fixed;
    bottom: 3rem;
    right: 3rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

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

.splineChat .modal-dialog {
    max-width: 600px;
}

.splineChat .modal-content {
    background: transparent;
    position: relative;
}

.splineChat .close {
    background: var(--white);
    position: absolute;
    top: 0;
    right: 0;
    padding: 0.5rem 0.75rem;
    z-index: 1;
    opacity: 1;
}

.splineChat .close span {
    font-size: 2rem;
}

/* Inner Pages Css End */

.form-group select {
    display: block;
    width: 100%;
    height: 52px;
    background: transparent;
    border-width: 0 0 2px 0;
    padding: 1rem 0;
    border: 1px solid #d2d2d2;
    color: var(--white);
    outline: none;
    resize: none;
    margin-bottom: 2.25rem;
    padding: 0 1.3rem;
    font-size: 15px;
}

.form-group select option{
    color: var(--black);
}

.appointment-head h2 {
    font-size: 54px;
    font-weight: 300;
    text-transform: uppercase;
}

.appointment-head p {
    font-size: 17px;
    font-weight: 500;
    color: #B4ACAE;
    text-align: center;
    width: 78%;
    margin: auto;
}

.appointment-head p a {
    color: #E5B985;
}

.appointment-head {
    margin-bottom: 3rem;
}

.btnappoint {
    display: flex;
    gap: 1rem;
    margin: 25px auto;
    align-items: center;
    justify-content: center;
    width: fit-content;
}


.rewards-section {
    background: #000;
}

.rewards-section {
    text-align: center;
}

.rewards-section .subHeading {
    margin: 0 auto 1rem;
}


.ready-schedule {
    background: url(../images/readyschimg1.png)center/cover no-repeat;
}

.ready-wrap {
    text-align: center;
}

.ready-wrap .subHeading {
    margin: 0 auto 1rem;
}

.ready-wrap .themeBtn {
    background: transparent;
    border: 1px solid #fff;
    color: var(--primary);
    margin: auto;
}

.ready-wrap .heading {
    margin: 2rem 0;
}

.review-wraps {
    text-align: center;
    border-bottom: 1px solid rgb(255 255 255 / 50%);
    padding-bottom: 4rem;
    margin-bottom: 4rem;
}

.review-wraps p {
    font-size: 28px;
    font-weight: 300;
    width: 75%;
    margin: 2rem auto;
    line-height: 1.7;
}

.userrev h4 {
    font-size: 21px;
    font-weight: 400;
    color: #fff;
    margin-top: 1rem;
}

.userrev h3 {
    font-size: 14px;
    font-weight: 400;
    color: var(--primary);
    text-transform: uppercase;
}

section.review-page {
    padding-bottom: 2rem;
}

.lastreviw {
    border-bottom: unset;
    margin-bottom: unset;
    padding-bottom: unset;
}

/* monthly special */
.social-media {
    display: flex;
    gap: 1.75rem;
    margin: auto;
}

.bellus-facial {
    background: #25272A;
}

.bellus-facial .packages-card {
    margin-bottom: 2rem;
    border-radius: 20px;
}

.packages-pricing {
    /* display: flex; */
    justify-content: space-between;
    /* background: #F6F6F7; */
    padding: 0 2em;
    text-align: center;
}
.packages-pricing:hover {
    color: var(--black);
}

.packages-card:hover .packages-pricing {
    color: var(--white);
}

.packages-pricing h3 {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.25;
    position: relative;
    padding-left: 1.5rem;
}

.packages-pricing h3::before {
    content:"";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary);
}

.packages-pricing .price {
    padding: 0;
    font-size: 1.375rem;
    font-weight: 400;
}

.packages-card .packages-pricing .price>span  {
    color: #E5B985;
    font-size: 22px;
}
.packages-card .para {
    padding: 1rem 2rem 0 2rem;
    font-size: 17px;
    color: #75767B;
    line-height: 29.8px;
    height: 132px;
    overflow-y: scroll;
    margin-left: -.5rem;
}

.packages-card .para::-webkit-scrollbar-track
{
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
    border-radius: 10px;
    background-color: #F5F5F5;
}

.packages-card .para::-webkit-scrollbar
{
    width: 8px;
    background-color: #F5F5F5;
    border-radius: 10px;
}

.packages-card .para::-webkit-scrollbar-thumb
{
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
    background-color: var(--primary);
}

.packages-card .para .moretext {
    display: block !important;
}

.packages-card .para .moreless-button {
    display: none;
}

.bellus-facial .packages-card a {
    color: #E5B985;
}

.packages-card .packages-pricing .price>span>span {
    color: var(--black);
    margin-left: -10px;
}

.pack-card {
    height: 476px;
}

.bellus-facial2 {
    background: var(--black);
}

.bellus-facial2 .para {
    margin-bottom: 13.375rem;
}

.packages-card.packaeCard1 .para {
}

.packages-card.packaeCard1 h3 {
    padding-left: 0;
}

.packages-card.packaeCard1 h3::before {
    display: none;
}

.packages-card.packaeCard1 .para {
    height: auto;
    overflow: unset;
}

.bellus-facial3 {
    background: url(../images/ballus-facial-bg.png);
}



.checkbox{
    width: 50px;
    height: 50px;
}

/* Calender css starts*/

.calendar-body {
    padding: 20px;
}

.calendar-body ul {
    list-style: none;
    flex-wrap: wrap;
    display: flex;
    text-align: center;
}

.calendar-body .calendar-dates {
    margin-bottom: 20px;
}

.calendar-body li {
    width: calc(100% / 7);
    font-size: 1.07rem;
    color: #414141;
}

.calendar-body .calendar-weekdays li {
    cursor: default;
    font-weight: 500;
}

.calendar-body .calendar-dates li {
    margin-top: 30px;
    position: relative;
    z-index: 1;
    cursor: pointer;
}

.calendar-dates li.inactive {
    color: #aaa;
}

.calendar-dates li.active {
    color: #fff;
}

.calendar-dates li::before {
    position: absolute;
    content: "";
    z-index: -1;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.calendar-dates li.active::before {
    background: #6332c5;
}

.calendar-dates li:not(.active):hover::before {
    background: #e4e1e1;
}
.available-day {
    background-color: #28a745;
    color: #fff;
    border-radius: 50%;
}

/*.form-group #providers option{*/
/*    background: #000;*/
/*    color: white;*/
/*}*/

/* Calender css ends*/

.packageSlider .swiper-pagination,
.packageSlidertwo .swiper-pagination{
    position: static;
}

.packageSlider .swiper-pagination-bullet,
.packageSlidertwo .swiper-pagination-bullet{
    width: 12px;
    height: 12px;
    background: transparent;
    border: 1px solid var(--primary);
    opacity: 1;
}
.packageSlider .swiper-pagination-bullet-active,
.packageSlidertwo .swiper-pagination-bullet-active{
    width: 40px;
    transition: width .5s;
    border-radius: 5px;
    background: var(--primary);
    border: 1px solid transparent;
}

.packageSlider,
.packageSlidertwo{
    padding-block: 1rem 0;
}

.services-about p {
    margin-bottom: .5rem;
}

.about__content .collapse-btn {
    color: var(--primary);
    border-bottom: 1px solid var(--white);
    margin-bottom: 1.5rem;
}

.toggleText {
    overflow: hidden;
    transition: max-height 0.4s ease-in-out;
    max-height: 5em;
}

.toggleBtn {
    background: unset;
    border: unset;
    outline: none !important;
    color: var(--white);
    border-bottom: 1px solid var(--white);
    margin: 0.5rem 0 1rem;
}

.packages-pricing div {
    height: 400px;
    overflow-y: scroll;
    margin-bottom: 2rem;
}

.packages-pricing div::-webkit-scrollbar-track
{
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
    border-radius: 10px;
    background-color: #F5F5F5;
}

.packages-pricing div::-webkit-scrollbar
{
    width: 8px;
    background-color: #F5F5F5;
    border-radius: 10px;
}

.packages-pricing div::-webkit-scrollbar-thumb
{
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
    background-color: var(--primary);
}

.enhance {
    font-size: 1.5rem;
}
.subText a{
    color: #a49f9b;
}
.video-banenr {
    width: 100%;
    height: 630px;
    object-fit: cover;
    margin-bottom: 2rem;
    position: relative;
}
.bannerImg h2{
    font-size: 2rem;
    color: var(--white);
}
.sdsdsdsd{
    padding-top: 15rem;
}

.namebnuj{
    width: 600px;
    height: 430px;
    object-fit: cover;
}

/* inner Banner Styling */

.inner_banner {
    margin: 16rem 0 0rem;
    background: url(../images/inner_bg.webp) no-repeat top / cover;
    height: 215px;
    display: grid;
    place-content: center;
    position: relative;
}
.inner_banner::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: rgb(26 26 26 / 48%);
    z-index: 1;
    top: 0;
    left: 0;
    opacity: 0.8;
}

.inner_banner .inner_head{
    font-size: 2.5rem;
    color: var(--white);
    text-align: center;
    text-transform: uppercase;
    font-weight: bold;
    margin: 0;
    z-index: 11;
}

.row.blog-row ul li{
    color: #ffffff;
    list-style: disc;
    line-height: 1;
}

.row.blog-row ul li a{
    color: #cc3366 !important;
}
.row.blog-row ul li + li {
    margin-top: 12px !important;
}

.row.blog-row ul {
    margin-left: 2.5rem;
}
.row.blog-row p span a span {
    color: #cc3366 !important;
    font-size: 17px;
    font-weight: 800;
}

.row.blog-row h3,
.row.blog-row h2{
    color: #fff;
}

.blog-row h3 strong {
    color: #fff;
}

.row.blog-row ul li ul li {
    margin-top: 0.5rem;
    list-style: circle;
}

.blog-row p a {
    color: #cc3366;
    transition: all 0.3s ease;
}

.blog-row p a:hover {
    color: #97274d;
    transition: all 0.3s ease;
}
