.review-list {
    padding: 4.5rem 0;
}



.review-list__slider-slide {
    background: linear-gradient(0deg, rgba(202, 230, 235, 0.4), rgba(202, 230, 235, 0.4)), #FFFFFF;
    padding: 1.875rem;
    height: auto;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.review-list__name {
    font-weight: 600;
    font-size: 0.875rem;
    line-height: 140%;
    color: #283234;
}
.review-list__name-link {
    font-weight: 700;
    font-size: 0.75rem;
    line-height: 120%;
    color: #4DAABE;

    margin-top: -0.125rem;
    display: block;
}
.review-list__name-link:hover {
    text-decoration: none;
}
.review-list__date {
    font-weight: 400;
    font-size: 0.875rem;
    line-height: 160%;
    text-align: right;
    color: #283234;
    opacity: 0.5;
}
.review-list__icon {
    margin-right: 0.75rem;
}
.review-list__icon svg {
    display: block;
    height: auto;
    width: 2.25rem;
}
.review-list__user {
    display: flex;
    align-items: flex-end;
}
.review-list__footer {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-top: 3.125rem;
}
.review-list__text {
    font-family: 'Merriweather';
    font-style: italic;
    font-weight: 300;
    font-size: 1.125rem;
    line-height: 160%;
    font-feature-settings: 'pnum' on, 'lnum' on;
}
.review-list__title {
    font-weight: 700;
    font-size: 2.5rem;
    line-height: 110%;
    letter-spacing: -0.02em;
    color: #283234;
}
.review-list__link {
    font-weight: 700;
    font-size: 0.8125rem;
    line-height: 1rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #4DAABE;
}
.review-list__link:hover {
    text-decoration: none;
}
.review-list__tools {
    display: flex;
    align-items: center;
}
.review-list__slider-btns {
    display: flex;
    align-items: center;
    margin-left: 13.5rem;
}
.review-list__slider-btn {
    background: #FFFFFF;
    border: 1.5px solid #CAE6EB;
    border-radius: 1.875rem;
    height: 2.5rem;
    width: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.review-list__slider-btn:hover {
    background: #4DAABE;
}
.review-list__slider-btn:hover path {
    stroke: #ffffff;
}

.review-list__slider-btn svg {
    display: block;
    height: auto;
    width: 0.75rem;
}
.review-list__slider-btn-next {
    margin-left: 0.875rem;
}
.review-list__header {
    margin-bottom: 2.25rem;

    display: flex;
    align-items: center;
    justify-content: space-between;
}
.review-list__img {
    display: block;
    height: auto;
    width: calc(100% + 60px);
    margin-left: -30px;
    margin-top: -30px;
    margin-bottom: 30px;
}



@media(max-width: 750px) {
    .review-list__img {
        width: calc(100% + 50px);
        margin-bottom: 20px;
    }
    .review-list__text {
        font-size: 14px;
    }
    .review-list__icon svg {
        width: 26px;
    }
    .review-list__name-link {
        font-size: 10px;
    }
    .review-list__name {
        font-size: 11px;
    }
    .review-list__date {
        font-size: 12px;
        line-height: 10px;
    }
    .review-list__slider-slide {
        padding: 20px;
    }
    .review-list__title {
        font-size: 29px;
    }
    .review-list__slider-btns {
        margin-left: 40px;
    }
    .review-list__link {
        font-size: 12px;
    }
    .review-list__slider-btn {
        width: 34px;
        height: 34px;
    }
    .review-list__slider-btn svg {
        width: 9px;
    }
    .review-list__slider-btn-next {
        margin-left: 5px;
    }
    .review-list__header {
        margin-bottom: 20px;
    }
    .review-list {
        padding: 30px 0 0;
    }
}
@media(max-width: 420px) {
    .review-list__header {
        display: flex;
        flex-direction: column;
    }
    .review-list__tools {
        margin-top: 20px;
        justify-content: space-between;
        width: 100%;
    }
}