.reviews {
    background-color: rgba(235, 239, 255, 1);
    padding: 60px 0;
    margin-bottom: 140px;
}

@media (max-width: 991px) {
    .reviews {
        margin-bottom: 100px;
    }
}

.carousel-navigarion {
    display: flex;
    gap: 24px;
    align-items: center;
}

.carousel-navigation__prev,
.carousel-navigation__next {
    cursor: pointer;
    background-color: #38C4BD;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url("data:image/svg+xml,%3Csvg width='11' height='18' viewBox='0 0 11 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.5 17L9.5 9L1.5 1' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
    ;
}

.carousel-navigation__prev {
    transform: rotate(180deg);
}

.swiper-button-disabled {
    background-color: #C4C4C4;
}

.reviews__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}

.review {
    background-color: #fff;
    border-radius: 20px;
    padding: 30px 40px;
    width: 600px;
}

@media (max-width: 991px) {
    .review {
        width: 355px;
    }
}

.review__author {
    font-weight: 400;
    font-size: 20px;
    margin-bottom: 10px;
}

.review__title {
    font-weight: 500;
    color: #212529;
    font-size: clamp(22px, 2vw, 26px);
    margin: 0;
}

.review__rating {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 20px;
}

.full-star {
    content: url(../../../static/images/rating/star-fill.svg);
}

.half-star {
    content: url(../../../static/images/rating/star-half.svg);
}

.empty-star {
    content: url(../../../static/images/rating/star.svg);
}

.review__body {
    height: 191px;
    overflow: hidden;
    font-weight: 400;
    font-size: clamp(14px, 2vw, 16px);
    margin-bottom: 20px;
}

@media (max-width: 991px) {
    .review__body {
        height: 252px;
    }
}

.review__button {
    border: 0;
    color: #38C4BD;
    background-color: transparent;
    cursor: pointer;
}

.review-modal .modal-body {
    padding: 30px 40px;
}

@media (max-width: 550px) {
    .review-modal .modal-body {
        padding: 20px;
    }
}

.review-modal .modal-content {
    border-radius: 20px;
}

.review-modal .modal-dialog {
    max-width: 750px;
}

.review__body_modal {
    height: auto;
}