.therapies__swiper {
    padding-right: 20px;
    padding-left: 20px;
}

.therapies__slide {
    position: relative;
    width: 335px;
    height: 393px;
    border-radius: 24px;
    overflow: hidden;
}

.therapies__slide-title {
    position: absolute;
    top: 24px;
    left: 30px;
    right: 30px;
    font-family: 'Gotham-bold', sans-serif;
    font-size: 28px;
    color: #F6F6F6;
    z-index: 2;
}

.section__therapies .section-description {
    margin-bottom: 24px;
    padding-bottom: 0;
}

.therapies__slide-preview {
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    transition-duration: .5s;
}


.therapies__slide-video-wrapper {
    position: relative;
    height: 100%;
    transition-duration: .25s;
    opacity: 0;
}

.therapies__slide.active .therapies__slide-video-wrapper {
    opacity: 1;
    z-index: 1;
}

@media (max-width: 1023px) {
    .therapies__slide.swiper-slide-active .therapies__slide-video-wrapper {
        opacity: 1;
        z-index: 1;
    }
}

.therapies__slide-video-wrapper:after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.00) 73.87%, rgba(0, 0, 0, 0.60) 100%);
}

.therapies__slide-video {
    height: 100%;
    object-fit: cover;
}

.therapies__slide-weight-loss .therapies__slide-video {
    object-position: -130px center;
}

.therapies__slide .btn {
    position: absolute;
    left: 30px;
    right: 30px;
    bottom: 30px;
    z-index: 3;
    white-space: nowrap;
}

.therapies__swiper-buttons {
    display: none;
}

@media (min-width: 1024px) {
    .therapies__slide .btn {
        transform: translateY(150%);
        opacity: 0;
    }

    .therapies__slide:hover .btn {
        transform: translateY(0);
        opacity: 1;
    }

}

@media (min-width: 1280px) {
    .therapies__swiper-buttons {
        display: flex;
        justify-content: space-between;
        align-items: end;
        grid-row: span 2;
        grid-column-start: 2;
    }

    .therapies__swiper .swiper-pagination {
        display: none;
    }

    .therapies__swiper-button {
        position: static;
        width: 65px;
        height: 65px;
        border-width: 0;
        background-color: transparent;
        background-size: contain;
        background-repeat: no-repeat;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='65' height='65' fill='none' viewBox='0 0 65 65'%3E%3Crect width='65' height='65' fill='%23F7F5F1' rx='32.5' transform='matrix(-1 0 0 1 65 0)'/%3E%3Cpath fill='%238B8E99' d='M43.56 31.049a1.5 1.5 0 0 1 0 2.121l-9.545 9.546a1.5 1.5 0 1 1-2.122-2.121l8.486-8.486-8.486-8.485a1.5 1.5 0 1 1 2.122-2.121l9.546 9.546Zm-21.06 1.06v-1.5h20v3h-20v-1.5Z'/%3E%3C/svg%3E");
    }

    .therapies__swiper-button:after {
        display: none;
    }

    .section__therapies .main-container {
        display: grid;
        grid-template-columns: 1fr 150px;
    }

    .section__therapies .swiper-button-prev {
        transform: rotate(180deg);
    }

    .section__therapies .section-description {
        margin-bottom: 0;
    }

    .therapies__swiper {
        margin-top: 68px;
    }
}

@media (min-width: 1480px) {
    .therapies__swiper {
        padding-left: calc((100vw - 1440px) / 2);
    }
}