:root {
    --accent-color: #f9c32a;
    --accent-medium-dark-color: #f9c22ad6;
    --accent-medium-to-dark-color: #dbab26;
    --background-color: #f2ede9;
    --light-background-color: #ffffff73;
    --subtext-color: rgb(110, 110, 110);
    --d: 700ms;
    --e: cubic-bezier(0.19, 1, 0.22, 1);
    --font-sans: 'Roboto', sans-serif;
    --button-color: white;
    --h2-color: #3F444C;
    --primary-color: #e1e1e1;
    --secondary-color: #3d3d3d;
    --nav-color: #afafaf;
    --shadow-hover: 0 12px 40px rgba(0, 0, 0, 0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/** {
    outline: 1px solid red !important;
}*/

* {
    -webkit-tap-highlight-color: transparent;
}

input:-webkit-autofill {
    /* -webkit-text-fill-color: #353535; */
    -webkit-box-shadow: 0 0 0 1000px #ffffff inset;
}

html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    /* Force the body to be at least the height of the screen */
    min-height: 100vh;
    /* Ensure it doesn't shrink to the content */
    display: flex;
    flex-direction: column;
    max-width: 100%;
    overflow-x: hidden;
}

@font-face {
    font-family: 'Classy';
    /* You can name it anything */
    src: url('./assets/fonts/StayClassySLDT.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* ===== LOADER COVER ===== */
#cinematic-loader {
    position: fixed;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: radial-gradient(circle at top,
            #1a1410 0%,
            #0b0a08 60%,
            #050504 100%);
    z-index: 999999;
}

/* glow */
#cinematic-loader::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle,
            rgba(212, 175, 55, 0.18),
            transparent 70%);
    filter: blur(50px);
}

/* svg */
#cinematic-loader svg {
    width: 240px;
    height: 240px;
    display: block;
    z-index: 2;
}

/* IMPORTANT: force correct rendering */
#cinema-tooth {
    fill: none;
    stroke: url(#gold);
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;

    visibility: hidden;
}

.loader-title {
    position: absolute;
    bottom: 80px;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 6px;
    font-size: 2rem;
}

.g-recaptcha {
    margin: 1rem 0;
}

.d-flex {
    display: flex !important;
}

.hidden {
    opacity: 0;
}


html {
    font-size: 16px;
    word-spacing: 0.15rem;
    /* base rem unit */
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background-color: var(--background-color);
}

h1 {
    font-size: 2em;
    letter-spacing: 0.04rem;
}

h2,
.custom-h1 {
    font-size: 3rem;
    color: var(--h2-color);
    letter-spacing: 0.04rem;
    font-weight: 300;
    margin-bottom: 2rem;
}

@media (max-width: 1220px) {
    h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 786px) {
    h2 {
        font-size: 2rem;
    }
}

.position-relative {
    position: relative;
}

h1 span:nth-child(2) {
    color: #f9c32a;
}

h3 {
    font-size: 1.3rem;
}

.w-100 {
    width: 100%;
}

.d-none {
    display: none !important;
}

.d-block {
    display: block;
}

.mt-06 {
    margin-top: .6rem;
}

.stylish {
    /* font-family: "Great Vibes", cursive; */
    /* font-family: "Tangerine", cursive; */
    /* font-family: "Mea Culpa", cursive; */
    font-family: 'Classy', sans-serif;
    font-weight: 100;
    font-size: 4rem;
}

.accent-color {
    color: var(--accent-medium-to-dark-color);
}

.font-s-25 {
    font-size: 2.5rem;
}

/* Navbar Styling */
.navbar {
    position: fixed;
    display: flex;
    justify-content: space-between;
    justify-items: center;
    align-items: center;
    width: 100%;
    top: 0;
    background-color: transparent;
    color: var(--secondary-color);
    z-index: 10000;
    transition: background-color 0.3s, box-shadow 0.3s, opacity 2s ease-in normal, top 0.3s ease;
    padding-left: 4rem;
    padding-right: 4rem;
}

.navbar.hidden {
    top: -150px;
}

.navbar-white {
    background-color: #ffffff;
    box-shadow: -1px 1px 5px 0px rgb(150 150 150 / 40%);
}

.navbar.navbar-white nav ul li span {
    color: var(--secondary-color);
}

nav {
    display: flex;
    justify-content: center;
    margin-right: 4rem;
}

.nav-content-justification {
    justify-content: right;
}

/* Show the navigation links when the hamburger menu is clicked */
.navbar.navbar-active nav ul {
    display: flex;
    width: 100%;
}

.tab {
    transition: color 0.3s ease;
}

.tab:hover {
    cursor: pointer;
}

/* Hamburger Menu Styling */
.hamburger {
    outline: none;
    -webkit-tap-highlight-color: transparent;
    /* Remove tap highlight on mobile */
    user-select: none;
    /* Optional: prevents text selection */
    display: none;
    font-size: 30px;
    cursor: pointer;
    z-index: 1001;
}

/* Hamburger Lines Styling */
.hamburger div {
    margin: 3px 0;
    transition: all 0.3s ease;
    pointer-events: none;
    width: 28px;
    height: 1px;
    background: black;
    /* prevents child divs from receiving tap/click events */
}

.hamburger div:nth-child(2) {
    width: 25px;
}

.navbar nav ul {
    display: flex;
    justify-content: center;
    list-style-type: none;
}

.navbar nav ul li.dropdown {
    margin: 0px;
}

.navbar nav ul li {
    margin: 0 20px;
}

.navbar nav ul li span:hover {
    text-decoration: none;
    /* border-bottom: 2px solid var(--accent-medium-dark-color); */
}

.navbar nav ul li span {
    text-decoration: none;
    font-weight: 300;
    font-size: 1.1rem;
    position: relative;
    padding-bottom: 1rem;
    letter-spacing: .05rem;
    color: var(--nav-color);
}

.navbar nav ul li span:hover {
    color: rgb(226, 226, 226);
}

/* When hovering over the link, animate the opacity of the ::before element */
.navbar nav ul li span:hover::before {
    opacity: 1;
}

.navbar nav ul li span.active {
    color: var(--accent-medium-to-dark-color);
    /* border-bottom: 2px solid var(--accent-medium-dark-color); */
}

/* Container */
.dropdown {
    position: relative;
    display: inline-block;
}

/* Button */
.dropbtn {
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    cursor: pointer;
}

/* Dropdown content (hidden by default) */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #101010f2;
    min-width: 180px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
    margin-top: .5rem;
}

/* Dropdown items */
.dropdown-content a {
    color: #ffffff;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-size: .8rem;
}

/* Hover effects */
.dropdown-content a:hover {
    background-color: #252525;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.overlay {
    opacity: 1;
    /* Start invisible */
    transition: opacity 1.2s ease-in normal;
    /* Fade-in effect */
}

.fade-in {
    opacity: 1;
}

/* Desktop */

.logo {
    height: 80px;
}

.tab {
    font-size: 16px;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

/* ==========================
   <= 1300px - shrink navbar
   ========================== */
@media (max-width: 1300px) {

    .navbar {
        padding: 0 20px;
    }

    .logo {
        height: 65px;
    }

    .tab {
        font-size: 14px;
    }

    .navbar nav ul {
        align-items: center;
    }
}

/* ==========================
   <= 1060px - hamburger mode
   ========================== */
@media (max-width: 1180px) {

    .hamburger {
        display: flex;
    }

    .navbar {
        transition: none;
    }

    .navbar nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        box-shadow: 0 5px 15px rgba(0, 0, 0, .1);

        display: block;

        /* hidden state */
        transform: translateY(-200px);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;

        /* transition:
            transform 0.35s ease,
            opacity 0.35s ease,
            visibility 0s linear 0.35s; */
    }

    .navbar nav.active {
        /* open state */
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
        pointer-events: auto;

        transition:
            transform 0.35s ease,
            /* opacity 0.35s ease, */
            visibility 0s;
    }

    .navbar nav ul {
        flex-direction: column;
        gap: 0;
        padding: 15px 0;
    }

    .navbar nav li {
        width: 100%;
        text-align: center;
        padding: 15px 0;
    }
}

@media (max-width: 1520px) {
    .navbar nav ul li span {
        font-size: .9rem;
    }
}

@media (max-width: 1400px) {
    .navbar nav ul li span {
        font-size: .8rem;
    }
}

@media (max-width: 1180px) {
    .navbar nav ul li span {
        font-size: 1.1rem;
    }
}

/* Video Section Styling */
.home-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.home-section video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-section #video {
    display: none;
    opacity: 1;
    transition: opacity 1.2s ease-in-out;
    /* Fade out duration */
}

.home-section #video.fade-out {
    opacity: 0;
}

#video-base {
    position: relative;
}

/* Overlay with Blur Effect */
.home-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    will-change: transform;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    color: white;
    text-align: center;
    z-index: 10;
}

.home-section .main-title {
    font-size: 1rem;
    font-weight: bold;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
    margin-bottom: 10px;
    color: var(--primary-color)
}

.home-section .sub-text {
    font-size: 2.2rem;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
    margin-top: 0;
    line-height: 1.6;
}

/* containers and content */
.overlay-text-container,
.about-container,
.doctors-container,
.about-cards-container,
.services-text-container,
.services-container,
.beforeafter-text-container,
.beforeafter-container,
.beforeafter-content,
.prices-container,
.prices-text-container,
.prices-content,
.treatments-container,
.treatments-text-container,
.qa-text-container,
.qa-content,
.qa-container,
.reviews-container {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

/* Home section */
@keyframes fadeIn {
    10% {
        opacity: 0;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }

}

.big-logo {
    opacity: 0;
    max-width: 70%;
}

.animated {
    animation: fadeIn 3s ease-out forwards;
}

#shiny-golden-btn {
    position: relative;
    padding: 12px 35px;
    background: #d3ad2a;
    font-size: 17px;
    font-weight: 500;
    color: #000000;
    /* border: 3px solid #0e3a3a; */
    border: none;
    border-radius: 8px;
    box-shadow: 0 0 0 #fec1958c;
    transition: all .3s ease-in-out;
}

.star-1,
.star-2,
.star-3,
.star-4,
.star-5,
.star-6 {
    opacity: 0;
}

.star-1 {
    position: absolute;
    top: 20%;
    left: 20%;
    width: 25px;
    height: auto;
    filter: drop-shadow(0 0 0 #fffdef);
    z-index: -5;
    transition: all 1s cubic-bezier(0.05, 0.83, 0.43, 0.96);
}

.star-2 {
    position: absolute;
    top: 45%;
    left: 45%;
    width: 15px;
    height: auto;
    filter: drop-shadow(0 0 0 #fffdef);
    z-index: -5;
    transition: all 1s cubic-bezier(0, 0.4, 0, 1.01);
}

.star-3 {
    position: absolute;
    top: 40%;
    left: 40%;
    width: 5px;
    height: auto;
    filter: drop-shadow(0 0 0 #fffdef);
    z-index: -5;
    transition: all 1s cubic-bezier(0, 0.4, 0, 1.01);
}

.star-4 {
    position: absolute;
    top: 20%;
    left: 40%;
    width: 8px;
    height: auto;
    filter: drop-shadow(0 0 0 #fffdef);
    z-index: -5;
    transition: all .8s cubic-bezier(0, 0.4, 0, 1.01);
}

.star-5 {
    position: absolute;
    top: 25%;
    left: 45%;
    width: 15px;
    height: auto;
    filter: drop-shadow(0 0 0 #fffdef);
    z-index: -5;
    transition: all .6s cubic-bezier(0, 0.4, 0, 1.01);
}

.star-6 {
    position: absolute;
    top: 5%;
    left: 50%;
    width: 5px;
    height: auto;
    filter: drop-shadow(0 0 0 #fffdef);
    z-index: -5;
    transition: all .8s ease;
}

#shiny-golden-btn:hover {
    background: #d3ad2a;
    color: #FFFFFF;
    box-shadow: 0 0 25px #d3ad2a;
    /*border: 3px solid #FFF;*/
}

#shiny-golden-btn:hover .star-1 {
    position: absolute;
    top: -80%;
    left: -30%;
    width: 25px;
    height: auto;
    filter: drop-shadow(0 0 10px #fffdef);
    z-index: 2;
    opacity: 1;
}

#shiny-golden-btn:hover .star-2 {
    position: absolute;
    top: -25%;
    left: 10%;
    width: 15px;
    height: auto;
    filter: drop-shadow(0 0 10px #fffdef);
    z-index: 2;
    opacity: 1;
}

#shiny-golden-btn:hover .star-3 {
    position: absolute;
    top: 55%;
    left: 25%;
    width: 5px;
    height: auto;
    filter: drop-shadow(0 0 10px #fffdef);
    z-index: 2;
    opacity: 1;
}

#shiny-golden-btn:hover .star-4 {
    position: absolute;
    top: 30%;
    left: 80%;
    width: 8px;
    height: auto;
    filter: drop-shadow(0 0 10px #fffdef);
    z-index: 2;
    opacity: 1;
}

#shiny-golden-btn:hover .star-5 {
    position: absolute;
    top: 25%;
    left: 115%;
    width: 15px;
    height: auto;
    filter: drop-shadow(0 0 10px #fffdef);
    z-index: 2;
    opacity: 1;
}

#shiny-golden-btn:hover .star-6 {
    position: absolute;
    top: 5%;
    left: 60%;
    width: 5px;
    height: auto;
    filter: drop-shadow(0 0 10px #fffdef);
    z-index: 2;
    opacity: 1;
}

.fil0 {
    fill: #FFFDEF
}

.above-title,
.bellow-title {
    font-size: 1.8rem;
    text-align: left;
    margin-bottom: 2rem;
    line-height: 1.5;
    color: var(--primary-color);
    font-weight: 300;
    /* font-style: italic; */
}

.above-title {
    color: var(--accent-color);
    margin-bottom: 1.2rem;
}

.title {
    text-align: left;
    line-height: 1.5rem;
    font-style: italic;
    color: var(--primary-color);
    margin-top: -2rem;
    opacity: 0;
    font-weight: 200;
}

@media (max-width: 1100px) {
    .title {
        margin-top: 0;
    }
}

.home-buttons-container {
    display: flex;
    flex-direction: row;
    margin-top: 8rem;
    opacity: 0;
    gap: 1rem;
}

@media (max-width: 768px) {
    .home-buttons-container {
        display: flex;
        flex-direction: column;
        margin-top: 8rem;
        opacity: 0;
        gap: 1rem;
    }
}

.home-services-button,
#shiny-golden-btn {
    padding: 1rem 4rem;
    background: #f9c22a00;
    border: none;
    color: var(--accent-color);
    transition: transform 0.2s ease-in-out;
    border-radius: 50px;
    font-size: 1.1rem;
    letter-spacing: .02rem;
    font-weight: 600;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transform-origin: center;
    border: 1px solid var(--accent-medium-to-dark-color);
}

@media(max-width: 768px) {

    .home-services-button,
    #shiny-golden-btn {
        font-size: .875rem;
    }
}

.home-services-button {
    background: transparent;
    color: var(--button-color);
    transition: transform 0.2s ease-in-out, background-color 0.5s ease;
    font-weight: 600;
    border: 1px solid white;
}

.home-services-button:hover {
    background: #fffbfb8f;
    transition: background-color 0.5s ease;
}

.home-services-button:hover,
#shiny-golden-btn:hover {
    cursor: pointer;
    transform: scale(1.05);
}

/* About us*/
.about-cards-container {
    display: flex;
    flex-direction: column;
    /* grid-template-columns: repeat(3, 1fr); */
    /* padding-bottom: 5%; */
    grid-gap: 8rem;
    max-width: 90%;
    /* width: 100%; */
    margin-bottom: 6rem;
}

@media (max-width: 768px) {
    .about-cards-container {
        grid-gap: 5rem;
    }
}

.about-card-image-container,
.about-text {
    flex: 1;
    min-width: 0;
}

.about-text-container:first-child {
    /* grid-column: span 3; */
    display: flex;
    flex-direction: column;
    align-items: center;
    /* max-width: 50vw; */
}

.about-image-text-container {
    align-items: center;
    display: flex;
    gap: 3rem;
    width: 100%;
    max-width: 100%;
}

.about-image-text-container img {
    border-radius: 20px;
    width: 100%;
    height: auto;
    display: block;
    max-height: 500px;
}

.doctors-container {
    flex-wrap: wrap;
    flex-direction: row;
}

/* .about-text {
    padding: 2rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    background-image: url(./assets/images/tooth.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    height: 500px;
    width: 100%;
    flex: 1;
    min-width: 0;
} */

@media (max-width: 1100px) {
    .about-image-text-container {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .about-card-image-container img {
        height: auto;
    }

    .about-text {
        flex: unset;
    }
}

/* .about-text-container .about-description.about-description {
    color: var(--subtext-color);
    font-weight: 400;
    margin: 0;
} */

.about-card {
    display: flex;
    flex-direction: column;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    align-items: center;
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        box-shadow 0.4s ease-out;
    will-change: transform, box-shadow;
    background: #ffffff6b;
    border-radius: 30px;
    border: 1px solid #e7e7e7;
    /* padding: 1rem; */
    max-width: 365px;
    margin: 2rem;
}

@media(max-width: 768px) {
    .about-card {
        max-width: 265px;
    }
}

.about-card:hover {
    transform: scale(1.05);
    /* transform: translateY(-4px); */
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: var(--shadow-hover);
    /* border: 1px solid #f1d03b7d; */
}

.about-card img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    max-height: 400px;
    border-radius: 20px;
    webkit-box-shadow: 2px 4px 6px 0px rgba(49, 49, 49, 0.72);
    box-shadow: 1px 1px 3px 0px rgb(49 49 49 / 27%);
}

.beforeafter-text-container {
    margin-bottom: 2rem;
}

.beforeafter-text-right {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 2rem;
    box-sizing: border-box;
    min-height: 250px;
}

.beforeafter-text-right h3,
.beforeafter-text-content h3 {
    color: var(--secondary-color);
    font-weight: 500;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    margin-top: 1.5rem;
}

@media(max-width: 1220px) {

    .beforeafter-text-right h3,
    .beforeafter-text-content h3 {
        font-size: 1.3rem;

    }

    .beforeafter-text-right {
        max-width: 800px;
    }
}

.about-text-container span,
.services-text-container span,
.beforeafter-text-container span {
    margin-top: .5rem;
    margin-bottom: -1rem;
}

/* .about-text-container h2,
.services-text-container h2, */
.beforeafter-text-container h2 {
    margin-bottom: 4rem;
}

.about-text-container span:nth-child(1),
.services-text-container span:nth-child(1),
.beforeafter-text-container span:nth-child(1),
.qa-text-container span:nth-child(1),
.prices-text-container span:nth-child(1),
.treatments-text-container span:nth-child(1) {
    margin-top: 10%;
    color: var(--accent-medium-to-dark-color);
    font-weight: 600;
    font-size: 1.4rem;
}

@media(max-width: 1220px) {

    .about-text-container span:nth-child(1),
    .services-text-container span:nth-child(1),
    .beforeafter-text-container span:nth-child(1),
    .qa-text-container span:nth-child(1),
    .prices-text-container span:nth-child(1),
    .treatments-text-container span:nth-child(1) {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
}

@media(max-width: 786px) {

    .about-text-container span:nth-child(1),
    .services-text-container span:nth-child(1),
    .beforeafter-text-container span:nth-child(1),
    .qa-text-container span:nth-child(1),
    .prices-text-container span:nth-child(1),
    .treatments-text-container span:nth-child(1) {
        margin-bottom: .5rem;
    }
}

.about-text-container span:nth-child(3),
.services-text-container span:nth-child(3) {
    margin-bottom: 5rem;
    text-align: justify;
    color: var(--subtext-color);
    font-size: 1.4rem;
    letter-spacing: 0.04rem;
    line-height: 2rem;
}

.about-name {
    margin-top: 2rem;
    margin-bottom: .5rem;
    font-weight: 600;
    font-size: 1.4rem;
    color: var(--h2-color);
}

.about-profession {
    margin-bottom: 1rem;
    color: var(--subtext-color);
}


/* Services Section */
.services-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5rem;
    padding: 3% 1rem;
}

@media (max-width: 1200px) {
    .services-wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

@media (max-width: 900px) {
    .services-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 700px) {
    .services-wrapper {
        grid-template-columns: 1fr;
    }
}

.services-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 20px;
    padding: 1rem;
    width: 300px;
}

@media (max-width: 768px) {
    .services-card {
        margin-bottom: 1rem;
    }

}

.services-card h3 {
    color: var(--h2-color);
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
    padding-top: 1.5rem;
    padding-bottom: 1rem;
    letter-spacing: 0.04rem;
}

.services-card span:nth-of-type(1) {
    text-align: center;
    color: var(--subtext-color);
    line-height: 1.6;
}

.services-card span:nth-of-type(2) {
    margin-top: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.03rem;
    color: var(--accent-medium-to-dark-color);
}

.services-card .services-button-text span {
    margin-top: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.03rem;
    color: var(--accent-medium-to-dark-color);
    font-size: 1rem;
    display: flex;
    align-items: center;
}

.services-button-text {
    display: flex;
    margin-top: 1rem;
}

.services-card img {
    max-height: 100px;
}

.preview {
    border-radius: 20px;
    max-width: 330px;
    position: absolute;
    top: -20%;
}

.play-button {
    width: 46px;
    height: 46px;
    border: none;
    border-radius: 50%;
    /* background: #71717136; */
    background: #71717100;
    /* background: #7171711e; */
    cursor: pointer;
    position: relative;
    /* border: 1px solid #ffffffd1; */
    border: 1px solid #f9c22a7d;
    transform: scale(1);
    transition: all 0.3s ease;
    transition: opacity 0.3s ease;
}

.play-button:hover {
    background: var(--light-background-color);
    border: 1px solid #ffffff;
    transform: scale(1.1);
}

.play-button.hidden,
video.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.play-button,
video {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.play-button::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-40%, -50%);

    width: 0;
    height: 0;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    /* border-left: 15px solid #fff; */
    border-left: 15px solid var(--accent-medium-to-dark-color);
    transition: all 0.3s ease;
}

.play-button:hover::before {
    transform: translate(-40%, -50%) scale(1.1);
}

.play-button:hover::before {
    border-left-color: var(--accent-color);
}

.play-button:focus-visible {
    outline: 2px solid #4d90fe;
    outline-offset: 2px;
}

/* Price section */
.services-text-container h2 {
    margin-bottom: 2rem;
}

@media (max-width: 700px) {
    .services-text-container h2 {
        margin-bottom: 3rem;
    }
}

/* Before after */
.botox-container {
    width: 100%;
    margin: 0 auto 6rem auto;
    gap: 4rem;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
}

@media (max-width: 1200px) {
    .botox-container {
        min-width: 0;
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        flex-direction: row;
        justify-content: center;
        gap: 0;
    }

    .btx-card {
        width: 90%;
        /* Make cards responsive to the screen width */
        max-width: 400px;
        transform: scale(.8);
    }
}

.botox-container a {
    text-decoration: none;
}

.btx-border {
    height: 98%;
    width: 97%;
    background: transparent;
    border-radius: 16px;
    transition: border 1s;
    position: relative;
    border: 0;
}

.btx-border:hover {
    border: 1px solid white;
    cursor: pointer;
}

.btx-card {
    height: 450px;
    width: 350px;
    background: transparent;
    border-radius: 20px;
    transition: background 0.8s;
    overflow: hidden;
    box-shadow: 0px 10px 63px 0px #0000004a;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* Card 0 */
.btx-card0 {
    background: url('assets/images/revitalisation.webp') center center no-repeat;
    background-size: 400px;
}

.btx-card0:hover {
    background: url('assets/images/revitalisation.webp') 25% center no-repeat;
    background-size: 700px;
}

.btx-card0:hover h2 {
    opacity: 1;
    background: #ffffff8c;
    transition: background 0.5s ease-in;
}

/* Card 1 */
.btx-card1 {
    background: url('assets/images/botox.webp') center center no-repeat;
    background-size: 400px;
}

.btx-card1:hover {
    background: url('assets/images/botox.webp') center 25% no-repeat;
    background-size: 700px;
}

.btx-card1:hover h2 {
    opacity: 1;
    background: #ffffff8c;
    transition: background 0.5s ease-in;
}

/* Card 2 */
.btx-card2 {
    background: url('assets/images/hialuron.webp') center center no-repeat;
    background-size: 400px;
}

.btx-card2:hover {
    background: url('assets/images/hialuron.webp') center 70% no-repeat;
    background-size: 700px;
}

.btx-card2:hover h2 {
    opacity: 1;
    background: #ffffff8c;
    transition: background 0.5s ease-in;
}

/* Typography */
.btx-border h2 {
    color: #000000;
    margin: 5px;
    opacity: 1;
    transition: opacity 1s;
    font-size: 2rem;
    background: #ffffff57;
    border-radius: 10px;
    display: flex;
    justify-content: center;
}

@media (max-width: 1220px) {
    .btx-border h2 {
        font-size: 1.5rem;
    }
}

#aout-stylish,
#services-stylish,
#beforeafter-stylish,
#qa-stylish {
    font-size: 4.4rem;
    font-weight: 100;
}

@media (max-width: 1220px) {

    #aout-stylish,
    #services-stylish,
    #beforeafter-stylish {
        font-size: 2.5rem;
        font-weight: 100;
    }
}

.image-text-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin-bottom: 3rem;
    overflow: hidden;
    background: #ffffffb5;
    border-radius: 20px;
    border: 1px solid #e7e7e7;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1280px;
}

@media (max-width: 850px) {
    .image-text-container {
        flex-direction: column;
        max-width: 700px;
    }
}

@media (max-width: 1380px) {
    .image-text-container {
        flex-direction: column;
        max-width: 800px;
    }
}

.image-text-container img {
    width: 100%;
    max-width: 700px;
    /* still limits it, but allows scaling down */
    height: auto;
    /* allows flexible resizing */
    object-fit: cover;
    /* keeps aspect ratio nicely */
}

.beforeafter-text-container span:nth-child(2) {
    color: var(--subtext-color);
    font-size: 0.875rem;
    letter-spacing: 0.04rem;
    line-height: 1.6rem;
}

.image-text-container.row-reverse span:nth-of-type(1) {
    margin-right: 2rem;
    margin-left: 1rem;
}

.beforeafter-container .image-text-container .image-container,
.retainer-video-container {
    flex: 1;
    min-width: 0;
}

.beforeafter-content {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 6rem;
    grid-row-gap: 1rem;
    max-width: 90%;
    justify-items: center;
}

.beforeafter-text-content {
    display: flex;
    flex-direction: column;
    padding-right: 1rem;
    flex: 1;
    gap: .2rem;
}

.beforeafter-text-long {
    color: var(--subtext-color);
    font-size: 0.875rem;
    letter-spacing: 0.01rem;
    line-height: 1.6rem;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {

    .beforeafter-text-long,
    .beforeafter-text-container span:nth-child(2) {
        font-size: .9rem;
        line-height: 1.4rem;
    }
}

.beforeafter-bullets-text {
    display: flex;
    flex-direction: column;
}

.beforeafter-bullet {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: .5rem;
    padding-left: 0;
}

.beforeafter-icon {
    width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    height: auto;
    overflow: hidden;
}

.beforeafter-icon svg {
    aspect-ratio: 1 / 1;
}

.slider-container {
    margin: 0 auto;
    margin-bottom: 5rem;
    position: relative;
    width: 100%;
    max-width: 800px;
    height: 300px;
    border-radius: 0.7rem;
    overflow: hidden;
    /* transform: scale(1.3); */
}

@media (max-width: 768px) {
    .slider-container {
        height: 240px;
    }
}

@media (max-width: 468px) {
    .slider-container {
        height: 170px;
    }
}

.before-image,
.after-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

/* Styling the Before/After text */
.before-text,
.after-text {
    position: absolute;
    font-size: 14px;
    font-weight: 600;
    color: #3a3a3a;
    z-index: 4;
    padding: 10px 20px;
    background-color: #ffffff9e;
    border-radius: 0.3rem;
    letter-spacing: 2px;
    transition: opacity 0.3s ease-in-out;
    transition: transform 0.2s ease;
}



/* Before text */
.before-text {
    left: 20px;
    /* Position text to the left */
    top: 30px;
    z-index: 5;
}

/* After text */
.after-text {
    right: 20px;
    /* Position text to the right */
    top: 30px;
    z-index: 3;
}

@media (max-width: 768px) {

    .after-text {
        right: 60px;
    }

    .before-text {
        left: 60px;
    }
}

@media (max-width: 750px) {

    .after-text {
        right: 50px;
    }

    .before-text {
        left: 50px;
    }
}

@media (max-width: 740px) {

    .after-text {
        right: 20px;
    }

    .before-text {
        left: 20px;
    }
}

/* Hide the After text initially */
.after-image .after-text {
    visibility: visible;
    z-index: 3;
}

.after-image {
    clip-path: inset(0 50% 0 0);
}

.slider-handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 0px;
    height: 100%;
    background-color: #fff;
    cursor: pointer;
    z-index: 2;
}

.slider-line {
    position: absolute;
    top: 0;
    left: 50%;
    width: 0px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
    z-index: 1;
}

.pulse-container {
    position: relative;
    display: inline-block;
}

.pulse-container::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 70px;
    /* Larger than the SVG */
    height: 70px;
    border-radius: 50%;
    background-color: #ffffff;
    /* Color of the pulse */
    transform: translate(-50%, -50%) scale(1);
    opacity: 0;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.8);
        opacity: 0;
    }
}

@keyframes pulse-start-opacity-1 {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }

    50% {
        opacity: 0.6;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.8);
        opacity: 0;
    }
}

.slider-line svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    cursor: pointer;
}

/* Prevent text/image selection while dragging */
.slider-container,
.before-image img,
.after-image img {
    user-select: none;
    /* Disable selection on most browsers */
    -webkit-user-select: none;
    /* Safari */
    -moz-user-select: none;
    /* Firefox */
    -ms-user-select: none;
    /* IE10+ */
    border-radius: 20px;
}

.slider-handle,
.slider-line {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

#retainer-video {
    border-radius: 20px;
    max-width: 730px;
}

.retainer-video-container {
    position: relative;
    display: contents;
}

@media (max-width: 1380px) {
    #retainer-video {
        max-width: 800px;
        width: 100%;
    }

    .beforeafter-text-content {
        padding: 2rem;
    }
}

/* Footer Section */
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
}

footer .container {
    max-width: 1170px;
    margin: auto;
    padding-bottom: .5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

footer p {
    font-size: 14px;
    color: #b9b9b9;
    padding-top: 3rem;
}

footer p:nth-child(2) {
    display: flex;
    justify-content: center;
    padding: 1rem;
    color: #5e5e5e;
}

.footer-details {
    display: flex;
    flex-direction: column;
}

.footer-details span {
    color: #bbbbbb;
}

.row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 1rem;
}

ul {
    list-style: none;
}

.footer {
    background-color: #0e0e0e;
    padding-top: 5rem;
}

.footer-col {
    padding: 0 45px;
}

.footer-col h3 {
    font-size: 18px;
    color: #ffffff;
    text-transform: capitalize;
    margin-bottom: 35px;
    font-weight: 500;
    position: relative;
}

.footer-col h3::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    background-color: var(--accent-color);
    height: 2px;
    box-sizing: border-box;
    width: 100%;
}

.footer-col ul li:not(:last-child) {
    margin-bottom: 1rem;
}

.footer-col ul li a {
    font-size: 1rem;
    text-transform: capitalize;
    color: #ffffff;
    cursor: pointer;
    text-decoration: none;
    color: #bbbbbb;
    display: block;
    transition: all 0.3s ease;
}

.footer-col ul li a:hover {
    color: #ffffff;
}

.footer-col .social-links a {
    display: inline-block;
    height: 40px;
    width: 40px;
    /* background-color: rgba(255, 255, 255, 0.2); */
    background-color: rgb(154 154 154 / 20%);
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    color: #ffffff;
    transition: all 0.5s ease;
}

.footer-col .social-links a:hover {
    color: #24262b;
    background-color: #ffffff;
}

/* .footer-col:nth-child(2) {
    display: none;
} */

.footer a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s ease-in-out;
}

.footer a:visited {
    color: inherit;
}

.footer a:hover {
    color: #d4d4d4;
}

.footer a:active {
    color: inherit;
}

#footer-wave {
    display: block;
    width: 100%;
    height: 200px;
    position: relative;
    bottom: 0;
}

/* Different animation variants */
.fade-scale {
    transform: scale(0.8);
}

/* When in view */
.show {
    opacity: 1;
    transform: none;
}

/* QA section */

.accordion-container {
    margin: 0 auto;
    padding: 2rem;
    max-width: 50rem;
    border-radius: 20px;
    margin-bottom: 6rem;
    background: var(--light-background-color);
    ;
}

.accordion .accordion-item {
    border-bottom: 1px solid #e5e5e5;
    margin-bottom: 1rem;
    background: #ffffff;
    border-radius: 20px;
    padding-left: 1rem;
    padding-right: .8rem;
}

.accordion .accordion-item button[aria-expanded='true'] {
    border-bottom: 1px solid var(--accent-medium-to-dark-color);
}

.accordion button {
    position: relative;
    display: flex;
    text-align: left;
    width: 100%;
    /* padding: 1em 0; */
    color: var(--subtext-color);
    font-size: 1.05rem;
    font-weight: 400;
    border: none;
    background: none;
    outline: none;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

@media (max-width: 768px) {
    .accordion button {
        font-size: .95rem;
    }

    .accordion .accordion-content p {
        font-size: .8rem;
    }
}

.accordion button:hover,
.accordion button:focus {
    cursor: pointer;
    color: var(--accent-color);
}

.accordion button {
    transition: color 0.3s ease, transform 0.2s ease;
}


.accordion button:hover::after,
.accordion button:focus::after {
    cursor: pointer;
    color: var(--accent-medium-to-dark-color);
    border: 1px solid var(--accent-medium-to-dark-color);
}

.accordion button .accordion-title {
    padding: 1em 1.5em 1em 0;
}

.accordion button .icon {
    display: inline-block;
    position: absolute;
    top: 30%;
    right: 0;
    width: 22px;
    height: 22px;
    /* border: 1px solid; */
    border-radius: 22px;
}

.accordion button .icon::before {
    display: block;
    position: absolute;
    content: '';
    top: 9px;
    left: 5px;
    width: 10px;
    height: 2px;
    background: currentColor;
}

.accordion button .icon::after {
    display: block;
    position: absolute;
    content: '';
    top: 5px;
    left: 9px;
    width: 2px;
    height: 10px;
    background: currentColor;
}

.accordion button[aria-expanded='true'] {
    color: var(--accent-medium-to-dark-color);
}

.accordion button[aria-expanded='true'] .icon::after {
    width: 0;
}

.accordion button[aria-expanded='true']+.accordion-content {
    opacity: 1;
    max-height: 30em;
    transition: all 200ms linear;
    will-change: opacity, max-height;
}

.accordion .accordion-content {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 200ms linear, max-height 200ms linear;
    will-change: opacity, max-height;
}

.accordion .accordion-content p {
    font-weight: 300;
    margin: 2em 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: #4d5156;
    margin-bottom: 2rem;
    overflow-wrap: break-word;
    letter-spacing: 0.01rem;
}

/* Contact Section */
.contact-container {
    display: flex;
    /* background-color: var(--light-background-color); */
    align-items: center;
    justify-content: space-evenly;
    position: relative;
    /* background-image: url(./assets/images/map-bg.png); */
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    justify-content: center;
    padding-top: 2rem;
    padding-bottom: 2rem;
    align-items: stretch;
}

.contact-container input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0px 1000px transparent inset !important;
    box-shadow: 0 0 0px 1000px transparent inset !important;
    transition: background-color 9999s ease-out, color 9999s ease-out;
}

.contact-columns-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    width: 90%;
    gap: 2.5rem;
}

@media (max-width: 1470px) {
    .contact-columns-container {
        flex-direction: column;
        align-items: center;
    }
}

.left-col {
    width: 800px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 880px) {
    .left-col {
        width: 100%;
    }
}

.left-col-details-container {
    display: flex;
    flex-direction: column;
    background: var(--button-color);
    border: 1px solid #e7e7e7;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    max-height: 450px;
    width: 100%;
}

/* 2. Target the video element inside the container */
.left-col-details-container video {
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -55%);
    min-width: 100%;
    max-height: 110%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
    opacity: .5;
}

.left-col-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    gap: 1rem;
    justify-content: space-between;
    width: 100%;
}

@media (max-width: 768px) {
    .left-col-content {
        gap: 2rem;
    }

    .left-col-details-container {
        max-height: 240px;
    }
}

@media (max-width: 430px) {
    .left-col-details-container video {
        transform: translate(-45%, -55%);
    }
}

@media (max-width: 370px) {
    .left-col-details-container video {
        transform: translate(-38%, -55%);
    }
}

.map-container {
    width: 100%;
    height: 450px;
    aspect-ratio: 16 / 9;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #e7e7e7;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.left-col-work-hours,
.left-col-number-mail {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    z-index: 1;
    margin-right: 2rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.left-col-number-mail {
    margin-top: 0;
    margin-bottom: 2rem;
}

.left-col-work-hours span,
.left-col-number-mail span {
    color: #1a1a1ad9;
    /* font-family: 'Jost', sans-serif; */
    color: var(--secondary-color);
    font-size: 0.9rem;
    letter-spacing: 0.03rem;
    font-weight: 500;
}

.left-col-work-hours span:nth-child(1),
.left-col-number-mail span:nth-child(1) {
    color: rgb(163, 163, 163);
    margin-bottom: 1rem;
    /*font-family: 'Jost', sans-serif;*/
    letter-spacing: 0.1rem;
}

.left-col-work-hours span:nth-child(2) {
    margin-bottom: .5rem;
}

.left-col-work-hours {
    display: flex;
    flex-direction: column;
    margin-bottom: 2rem;
    /* margin-top: 2rem; */
}

.contact-container-logo {
    width: 10rem;
    padding: 1.5rem;
}

.contact-form {
    background: var(--button-color);
    padding: 2rem;
    border-radius: 20px;
    max-width: 600px;
}

.contact-form-content {
    display: flex;
    flex-direction: column;
}

.contact-form h2,
.contact-form label,
.contact-form button,
.description {
    font-weight: 400;
}

.contact-form h2 {
    color: var(--h2-color);
    text-transform: uppercase;
    font-size: 2.5rem;
    letter-spacing: 0.3rem;
    font-weight: 400;
}

@media(max-width: 768px) {
    .contact-form h2 {
        font-size: 1.6rem;
    }
}

.contact-form p {
    color: var(--secondary-color);
    font-size: 1rem;
    letter-spacing: 0.01rem;
    margin: 0.5rem 0;
    line-height: 1.4rem;
}

.contact-form label,
.description {
    color: #434141d9;
    font-size: 0.9rem;
}

form {
    width: 100%;
    position: relative;
    margin-top: 2rem;
    padding: 1rem 0;
}

.contact-form input,
.contact-form textarea,
.contact-form label {
    width: 100%;
    display: block;
}

.contact-form p,
placeholder,
input,
textarea {
    /* font-family: 'Helvetica Neue', sans-serif; */
    font-family: var(--font-sans);
}

input::placeholder,
textarea::placeholder {
    color: rgb(167, 167, 167)
}

.contact-form input,
.contact-form textarea {
    color: #000000;
    font-weight: 500;
    background: #00000000;
    border: none;
    border-bottom: 1px solid var(--secondary-color);
    padding: 1rem 0;
    margin-bottom: 1rem;
    outline: none;
}

.contact-form textarea {
    resize: none;
}

.contact-form button {
    text-transform: uppercase;
    font-weight: 300;
    background: #ffffff00;
    color: var(--accent-medium-to-dark-color);
    width: 10rem;
    height: 2.25rem;
    border: 1px solid var(--accent-medium-to-dark-color);
    border-radius: 20px;
    outline: none;
    cursor: pointer;
    transition: background 0.25s ease, color 0.25s ease;
}

.contact-form button:hover {
    background: var(--accent-medium-to-dark-color);
    color: white;
}

.contact-form button:active {
    opacity: 0.8;
}

#error,
#success-msg {
    width: 40vw;
    margin: 0.125rem 0;
    font-size: 0.75rem;
    text-transform: uppercase;
    color: #fbfbfbd9;
    letter-spacing: 0.07rem;
}

#success-msg {
    transition-delay: 3s;
}

@media only screen and (max-width: 950px) {
    .contact-container-logo {
        width: 8rem;
    }

    h1 {
        font-size: 1.75rem;
    }

    p {
        font-size: 0.7rem;
    }

}

/* Prices section */

/* .prices-container {

} */

/* .prices-content {
    width: 50rem;
    padding: 2rem;
} */

.item-with-price {
    width: 100%;
    display: flex;
    justify-content: space-between;
    background: white;
    align-items: center;
    box-sizing: border-box;
    padding: 1.2rem;
    border-radius: 20px;
    border-bottom: 1px solid #e5e5e5;
    position: relative;
}

.item-with-price.blurred {
    filter: blur(2px);
}

.chevron {
    position: absolute;
    top: 100%;
    left: calc(50% - 10px);
    z-index: 5;
    cursor: pointer;
}

.chevron::before {
    content: "";
    top: 50%;
    left: 50%;
    position: absolute;
    width: 40px;
    height: 40px;
    background: var(--accent-color);
    border-radius: 50%;
    z-index: -1;
    animation: pulse-start-opacity-1 1.5s infinite;
}

.chevron:active {
    transform: scale(0.85);
}

.chev-icon {
    font-size: 30px;
    color: #ffffff;
    transition: color 0.3s ease;
}

.chev-icon:hover {
    color: var(--accent-medium-to-dark-color);
}

.blurred-button {
    width: 100%;
    height: 130%;
    left: 0;
    top: 0%;
    z-index: 10;
    position: relative;
}

.prices-content {
    width: 100%;
    max-width: 50rem;
    padding: 2rem;
    gap: 1rem;
    box-sizing: border-box;
    background: var(--light-background-color);
    ;
    border-radius: 20px;
    margin-bottom: 2rem;
}

.item-with-price span {
    color: #4d5156;
}

.item-with-price span.price {
    color: var(--accent-medium-to-dark-color);
}

/* .item-with-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
} */

.item-with-price span:last-child {
    margin-left: auto;
}

/* Reviews section */

.reviews-container {
    position: relative;
}

.reviews-content {
    width: 600px;
}

@media (max-width: 768px) {
    .reviews-content {
        width: 360px;
    }
}

.reviewer-name-rating-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: .5rem;
}

.reviews-content-container p {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: #4d5156;
    margin-bottom: 8px;
    overflow-wrap: break-word;
}

.reviews-person {
    display: flex;
}

.reviews-icon {
    font-size: 1.5rem;
    margin-right: 1rem;
    padding: 1rem;
    border-radius: 50%;
    width: 52px;
    display: flex;
    justify-content: center;
    color: white;
    font-weight: 400;
    line-height: 20px;
    margin-bottom: 8px;
    overflow-wrap: break-word;
}

.icon-pink {
    background: #ec407a;
}

.icon-purple {
    background: #512da8;
}

.icon-grey {
    background: #455a64;
}

.icon-green {
    background: #33691e;
}

.icon-orange {
    background: #ef6c00
}

.reviews-list {
    position: relative;
    width: 100%;
    height: 500px;
    list-style: none;
    margin-bottom: 4rem;
}

.reviews-list li {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 100%;
    min-height: 120px;

    transform: translate(-50%, -50%);
    transition: all 0.8s ease;

    background: white;
    border-radius: 16px;
    padding: 20px;

    display: flex;
    flex-direction: column;
    gap: 16px;

    box-shadow: 0 10px 30px rgba(0, 0, 0, .12);
}

.reviews-list img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
}

.reviews-content-container h3 {
    margin-bottom: 6px;
}

.reviews-content-container p {
    color: #636363;
}

/* Active card */
.reviews-list li.active {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    filter: blur(0);
    z-index: 3;
}

/* Previous card */
.reviews-list li.prev {
    transform: translate(-50%, calc(-50% - 110px)) scale(.85);
    opacity: .45;
    filter: blur(4px);
    z-index: 2;
}

/* Next card */
.reviews-list li.next {
    transform: translate(-50%, calc(-50% + 110px)) scale(.85);
    opacity: .45;
    filter: blur(4px);
    z-index: 2;
}

/* Hidden cards */
.reviews-list li.hidden {
    transform: translate(-50%, -50%) scale(.7);
    opacity: 0;
    filter: blur(8px);
    z-index: 1;
}

.white-bg {
    background: white;
}

.margin-top-6 {
    margin-top: 6rem;
}

.margin-top-8 {
    margin-top: 8rem;
}

.margin-bottom-8 {
    margin-bottom: 8rem;
}

.input {
    max-width: 300px;
    background-color: #ffffff;
    color: #242424;
    padding: .15rem 1rem;
    min-height: 40px;
    border-radius: 20px;
    outline: none;
    border: none;
    line-height: 1.15;
    min-width: 300px;
    font-size: 1rem;
}

.search-bar-container {
    display: flex;
    max-width: 50rem;
    margin-bottom: 1rem;
    background: var(--light-background-color);
    border-radius: 30px;
    padding: .8rem;
    justify-content: center;
    position: relative;
}

.no-result {
    color: #4d5156;
}

input[type="search"]::-webkit-search-cancel-button {
    -webkit-appearance: none;
    appearance: none;
    display: none;
}

.search {
    position: relative;
    display: inline-block;
}

.search input {
    padding-right: 2rem;
}

.clear {
    position: absolute;
    right: .5rem;
    top: 48%;
    transform: translateY(-50%);
    border: none;
    background: none;
    color: crimson;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    left: 83%;
}

/* Treatments */
.treatments-content-container {
    max-width: 60%;
    display: flex;
    justify-content: center;
    background: var(--light-background-color);
    padding: 1rem;
    border-radius: 20px;
    gap: 2rem;
    flex-direction: column;
    margin-bottom: 2rem;
}

@media (max-width: 1180px) {
    .treatments-content-container {
        max-width: 70%;
    }
}

@media (max-width: 768px) {
    .treatments-content-container {
        max-width: 80%;
    }
}

@media (max-width: 480px) {
    .treatments-content-container {
        max-width: 90%;
    }
}

.treatments-video-with-ttitle {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.treatments-video-container {
    display: flex;
    justify-content: center;
}

.treatments-video {
    border-radius: 20px;
    /* max-width: 1030px; */
    width: 100%;
}

.subtitle-container span:first-child {
    color: var(--accent-medium-to-dark-color);
    font-weight: 400;
    font-size: 1rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.subtitle-container span:nth-child(2) {
    font-size: 3rem;
    color: var(--h2-color);
}

.treatments-text-sections {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 2rem;
    /* background: #eae2db; */
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid #dbab2669;
}

.treatments-text-title {
    color: #4d433c;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.treatments-text-content {
    color: #6b625c;
    font-size: 0.875rem;
    letter-spacing: 0.04rem;
    line-height: 1.2rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #dbab2669;
    padding-bottom: 1rem;
}

.treatments-text-content-bullets {
    color: #6b625c;
    font-size: 0.875rem;
    letter-spacing: 0.04rem;
    line-height: 1.2rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #dbab2669;
    padding-bottom: 1rem;
}

.treatments-icons-container {
    display: flex;
    justify-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.treatments-badge {
    display: flex;
    padding: .5rem 1rem .5rem 1rem;
    min-width: 185px;
    /* background: #ffffff57; */
    background: rgb(255 255 255 / 80%);
    gap: 1rem;
    border-radius: 10px;
    border: 1px solid #dbab2669;
}

.treatments-badge-icon {
    min-height: 35px;
    min-width: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.treatments-badge-text {
    display: flex;
    flex-direction: column;
}

.treatments-badge-text span:first-child,
.treatments-badge-text:nth-child(2) {
    color: #4d433c;
    font-size: 0.875rem;
    letter-spacing: 0.08rem;
    line-height: 1.2rem;
}

.treatments-badge-text span:first-child {
    font-size: 0.675rem;
    text-transform: uppercase;
    letter-spacing: 0.06rem;
    color: #4d433cc9;
}

.footer-col ul {
    display: grid;
    grid-template-rows: repeat(4, auto);
    grid-auto-flow: column;
    gap: 5px 20px;
    background-color: rgb(43 43 43 / 20%);
    border-radius: 20px;
    padding: 2rem;
    justify-items: start;
}

.phone-contact-container,
.email-contact-container {
    display: flex;
    align-items: center;
    margin-bottom: .5rem;
    cursor: pointer;
}

.contact-image {
    height: 15px;
    width: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: .5rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}