.reviews {
    background: linear-gradient(180deg, rgba(238, 240, 243, 0) 0%, #eef0f3 100%);
}

.reviews__title {
    max-width: 515px;
}

.reviews__title h2 {
    color: #2A1D6D;
}

.reviews__row {
    display: flex;
}

.reviews__text-slider-wrap {
    background: radial-gradient(100% 100% at 50.04% 0%, #110d2f 45%, #251470 100%);
    border-radius: 24px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    padding-top: 118px;
}

.reviews__video iframe {
    display: flex;
    object-fit: cover;
    border-radius: 24px;
}

.reviews__text-slider {
    width: 100%;
}

.reviews__slide-inner {
    font-weight: 500;
    line-height: 140%;
    text-align: center;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reviews__decor1 {
    position: absolute;
    left: 20px;
    top: 20px;
}

.reviews__decor2 {
    position: absolute;
    right: 20px;
    bottom: 20px;
}

.reviews__slider-buttons {
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.reviews__button-next, .reviews__button-prev {
display: flex;
cursor: pointer;
}

.reviews__pagination {
    display: flex;
    gap: 8px;
}

.reviews__pagination .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    margin: 0 !important;
    padding: 0;
}

.reviews__pagination .swiper-pagination-bullet-active {
    background: rgba(255, 255, 255, 1);
}

@media screen and (min-width: 1024px) {
    .reviews__row {
        gap: 32px;
    }

    .reviews__text-slider-wrap {
        flex-basis: calc(50% - 16px);
        max-width: calc(50% - 16px);
    }

    .reviews__video {
        flex-basis: calc(50% - 16px);
    }

    .reviews__slide-inner {
        font-size: 32px;
    }

    .reviews__video iframe {
        min-height: 363px;
    }
}

@media screen and (max-width: 1023.98px) {
    .reviews__row {
        gap: 16px;
        flex-direction: column;
    }

    .reviews__slide-inner {
        font-size: 24px;
    }

    .reviews__text-slider-wrap {
        min-height: 324px;
        padding-top: 103px;
    }

    .reviews__decor2 {
        bottom: 52px;
    }
}

@media screen and (max-width: 440px) {
    .reviews__video iframe {
        max-height: 225px;
    }
}