/* HOME - What we do */
.home-services.block-space--base {
	padding-top: 60px;	
}

.home-services .heading {
    font-weight: 400;
    margin-block: 10px 80px;
    width: 645px;
}

.home-services a {
    color: inherit;
    text-decoration: none;
}

.home-services .slider--service {
    overflow: visible;
}

.home-services .service-box__inner {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    border-radius: 20px;
    padding: 30px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    overflow: hidden;
    aspect-ratio: 520/704;
}

.home-services .service-box__inner::before {
    content: '';
    display: block;
    position: absolute;
    inset: 0;
    background-color: var(--clr-cream-beige);
    mix-blend-mode: multiply;
}

.home-services .service-box__inner::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    display: block;
    width: 100%;
    min-height: 284px;
    max-height: 284px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #F0E4D5 74.59%);
    z-index: 1;
}

.home-services :where(.service-content, .service-icons) {
    position: relative;
    z-index: 2;
}

.home-services .service-content {
    width: calc(100% - 60px - 20px);
    transform: translateY(calc(100% - 60px));
    transition: var(--transition);
}

.home-services .service-title {
    font-weight: 400;
    margin-bottom: 20px;
}

.home-services .service-description {
    color: var(--clr-gray);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    text-shadow: 0px 4px 36px #00000014;
}

.home-services .service-icons {
    --size: 60px;

    position: absolute;
    bottom: 30px;
    right: 30px;
    width: var(--size);
    height: var(--size);
    border-radius: 50%;
    overflow: hidden;
    z-index: 2;
}

.home-services .service-icon {
    width: var(--size);
    height: var(--size);
    object-fit: contain;
    position: absolute;
    top: 0;
    left: 0;
    transition: var(--transition);
}

.home-services .service-icon--origin {
    opacity: 1;
}

.home-services .service-icon--hover {
    opacity: 0;
}

.home-services .service-box:hover .service-icon--origin {
    opacity: 0;
}

.home-services .service-box:hover .service-icon--hover {
    opacity: 1;
}

.home-services .service-box:hover .service-content {
    transform: translateY(0);
}

.home-services .service-box:hover .service-description {
    opacity: 1;
    visibility: visible;
}

@media (min-width: 768px) {
    .home-services .swiper-slide {
        width: 400px;
    }
}

@media (max-width: 991px) {
    .home-services .heading {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .home-services .heading {
        margin-bottom: 40px;
    }

    .home-services .service-box__inner {
        padding: 10px;
        border-radius: 0;
    }

    .home-services .service-box__inner::before {
        display: none;
    }

    .home-services .service-box__inner::after {
        background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #fff 74.59%);
    }

    .home-services .service-content {
        width: calc(100% - 60px - 10px);
        transform: translateY(0);
    }

    .home-services .service-title {
        margin-bottom: 10px;
        font-size: 20px;
        text-shadow: 0px 4px 36px rgba(0, 0, 0, 0.08);
    }

    .home-services .service-box .service-description {
        opacity: 1;
        visibility: visible;
        padding-bottom: 10px;
        font-size: 14px;
    }

    .home-services .service-icons {
        --size: 60px;
        bottom: 10px;
        right: 10px;
    }
}

/* HOME - Treatments */
.home-treatments {
    background: url('../images/bg.webp'), linear-gradient(0deg, #F0E4D5, #F0E4D5), #FEF6F6;
    background-blend-mode: screen, normal, normal;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.home-treatments .heading {
    font-weight: 400;
    margin-block: 10px 80px;
    width: 744px;
    max-width: 100%;
    color: var(--clr-dark);
    text-shadow: 0px 4px 36px #00000014;
}

.home-treatments .slider--treatment {
    overflow: visible;
}

.home-treatments .treatment-box__inner {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    border-radius: 20px;
    padding: 30px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    overflow: hidden;
    aspect-ratio: 520/475;
}

.home-treatments .treatment-box__inner::before {
    content: '';
    display: block;
    position: absolute;
    inset: 0;
    background-color: var(--clr-cream-beige);
    mix-blend-mode: multiply;
}

.home-treatments .treatment-box__inner::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    display: block;
    width: 100%;
    min-height: 284px;
    max-height: 284px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, var(--clr-cream-beige) 74.59%);
    z-index: 1;
}

.home-treatments .treatment-content {
    position: relative;
    z-index: 2;
    width: 100%;
    transform: translateY(64px);
    transition: var(--transition);
}

.home-treatments .treatment-title {
    font-weight: 400;
    margin-bottom: 20px;
}

.home-treatments .treatment-title a {
    font: inherit;
    text-decoration: none;
    color: inherit;
    line-height: 1.5;
}

.home-treatments .treatment-description {
    color: var(--clr-dark);
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}


.home-treatments .treatment-content .button {
    margin-top: 20px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.home-treatments .treatment-box:hover .treatment-content {
    transform: translateY(0);
}

.home-treatments .treatment-box:hover .treatment-content .button {
    opacity: 1;
    visibility: visible;
}

@media (min-width: 768px) {
    .home-treatments .swiper-slide {
        width: 520px;
    }
}

@media (max-width: 767px) {
    .home-treatments .heading {
        margin-bottom: 40px;
    }

    .home-treatments .treatment-title {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .home-treatments .treatment-description {
        font-size: 14px;
        -webkit-line-clamp: 3;
        color: var(--clr-gray);
    }

    .home-treatments .treatment-box__inner::after {
        background: linear-gradient(180deg, rgba(255, 255, 255, 0) 28.65%, #FFFFFF 81.87%);
    }
}

/* TEMPLATE: Testimonials  */
.testimonials {
    /* background: linear-gradient(90deg, rgba(254, 193, 214, 0.5) 0%, rgba(182, 229, 255, 0.5) 100%), linear-gradient(0deg, #F8F8F8, #F8F8F8); */
    background-color: #f8f8f8;
    background-blend-mode: normal, screen, normal;
}

.testimonials .heading {
    font-weight: 400;
    margin-block: 10px 80px;
}

.testimonials .slider--testimoial {
    overflow: visible;
}

.testimonials .swiper-slide {
    width: 300px;
}

.testimonials .client-box__inner {
    overflow: hidden;
    position: relative;
    border-radius: 10px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.testimonials .client-box__main {
    position: relative;
    padding: 20px 10px 20px 20px;
    background-color: #fff;
    aspect-ratio: 300/346;
    transition: var(--transition);
    z-index: 1;
}

.testimonials .client-description {
    color: var(--clr-dark);
    text-shadow: 0px 4px 36px #00000014;
    transition: var(--transition);
    height: 100%;
    overflow: auto;
    padding-right: 10px;
}

.client-description::-webkit-scrollbar {
    width: 4px;
}
   
.client-description::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.25);
}
   
.client-description::-webkit-scrollbar-thumb {
    background: linear-gradient(0deg, var(--clr-cream-beige), var(--clr-cream-beige)), #FEF6F6;
}

.testimonials .client-box__content {
    position: relative;
    z-index: 1;
    background-color: #fff;
    padding: 20px;

    /* mobile first */
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 10px;
}

.testimonials .client-name {
    font-size: 18px;
    font-weight: 600;
    color: var(--clr-dark);
    text-shadow: 0px 4px 36px #00000014;
}

.testimonials .client-occupation {
    font-size: 14px;
    color: var(--clr-dark);
}

.testimonials .client-avatar {
    width: max-content;
    aspect-ratio: 1;
    border-radius: 50%;
    overflow: hidden;
}

.testimonials .client-avatar img {
    width: 60px;
    height: 60px;
    object-fit: cover;
}


@media (min-width: 768px) {
    .testimonials .client-box .client-box__main,
    .testimonials .client-box .client-description {
        opacity: 0;
        visibility: hidden;
    }
    
    .testimonials .client-description {
        transform: translateY(40px);
    }

    .testimonials .client-box:hover .client-box__main,
    .testimonials .client-box:hover .client-description {
        opacity: 1;
        visibility: visible;
    }

    .testimonials .client-box:hover .client-description {
        transform: translateY(0);
    }

    .testimonials .client-avatar {
        display: none;
    }
}

@media (max-width: 767px) {
    .testimonials .heading {
        margin-bottom: 40px;
    }
    
    .testimonials .client-box__inner {
        background: none !important;
        box-shadow: 0px 4px 36px 0px #00000014;
    }

    .testimonials .client-box__main {
        aspect-ratio: 1;
    }

    .testimonials .client-box__content {
        padding-inline: 10px;
    }
}

/* TEMPLATE: Our Awards */
.our-awards {
    --image-size: 100px;
    padding-block: 60px 80px;
}

.our-awards .inner {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 40px 80px;
}

.our-awards .heading {
    font-size: 18px;
    font-weight: 400;
    color: var(--clr-dark);
    display: flex;
    flex-shrink: 0;
    width: max-content;
}

.our-awards .loop-carousel {
    max-width: 100vw;
}

.our-awards .loop-carousel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: clamp(60px, 10%, 160px);
    height: 100%;
    background: linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

.our-awards .loop-carousel .loop-carousel-wrapper {
    animation: 30s loopCarouselLeft infinite linear;
}

.our-awards .loop-carousel .item {
    box-shadow: none;
    background: transparent;
}

.our-awards .loop-carousel img {
    width: var(--image-size);
    height: var(--image-size);
    object-fit: contain;
}

@media (min-width: 360px) {
    .our-awards .loop-carousel .item {
        width: calc(100vw / 4);
    }
}

@media (min-width: 768px) {
    .our-awards .loop-carousel .item {
        width: calc(100vw / 5);
    }
}

@media (min-width: 1024px) {
    .our-awards .loop-carousel .item {
        width: calc(100vw / 6);
    }
}

@media (min-width: 1366px) {
    .our-awards .loop-carousel .item {
        width: calc(100vw / 8);
    }
}

@media (max-width: 767px) {
    .our-awards {
        --image-size: 60px;
        padding-block: 20px;
    }

    .our-awards .inner {
        flex-direction: column;
        flex-wrap: wrap;
        align-items: flex-start;
    }
}

/* SINGLE CONDITION */
.sec-condition-why-combination {
    /* padding-block: 80px; */
}

.sec-condition-why-combination .why-combination__content > *:first-child:is(h2) {
    margin-bottom: 30px;
}

.sec-condition-cta {
    padding-block: 80px;
    background: url('../images/bg.webp'), linear-gradient(0deg, #F0E4D5, #F0E4D5), #FEF6F6;
    background-blend-mode: screen, normal, normal;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.sec-condition-cta .heading {
    font-weight: 400;
    margin-bottom: 40px;
    width: 744px;
    max-width: 100%;
    color: var(--clr-dark);
    text-shadow: 0px 4px 36px #00000014;
}