.reviews {
    background-color: #F8F8F6;
    padding-top: 96px;
    padding-bottom: 96px;
    overflow: hidden;
}
.reviews__header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 20px;
}
.reviews__descr {
    color: #242440;
    font-family: 'Inter';
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    max-width: 544px;
}
.reviews__title {
    color: #242440;
    font-family: 'Roboto Slab';
    font-size: 32px;
    font-weight: 700;
    line-height: 40px;
    max-width: 400px;
}
.reviews__stage-outer {
    padding: 20px 10px;
    width: calc(100% + 20px);
    margin-left: -10px;
}
.reviews__item {
    border: 16px solid #fff;
    border-radius: 12px;
    -webkit-box-shadow: 0px 4px 8px 0px rgba(5, 15, 41, 0.15), 0px 0px 2px 0px rgba(5, 15, 41, 0.03);
    box-shadow: 0px 4px 8px 0px rgba(5, 15, 41, 0.15), 0px 0px 2px 0px rgba(5, 15, 41, 0.03);
}

.reviews__item-link {
    cursor: pointer;
    color: #242440;
    font-family:'Inter';
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    margin-top: 12px;
    display: block;
}
.reviews__item-link:hover .reviews__item-link-text {
    color: #0FC4AC;
}
.reviews__item-link:hover .reviews__item-link-icon path {
    stroke: #0FC4AC;
}

@media (max-width: 576px) {
    .reviews {
        padding-top: 32px;
        padding-bottom: 30px;
    }
    .reviews__header {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        margin-bottom: 12px;
    }
    .reviews__title {
        font-size: 26px;
        line-height: 30px;
    }
    .reviews__descr {
        font-size: 14px;
        margin-top: 15px;
        line-height: 20px;
    }
}
