.reviews__title {
    margin-bottom: 60px;
    font-family: Minion Pro;
    font-style: normal;
    font-weight: normal;
    font-size: 36px;
    line-height: 43px;
    color: #000000;
    text-align: center;
}

.reviews__list {
    display: flex;
}

.review {
    position: relative;
    padding: 90px;
    max-width: 50%;
    width: 50%;
}

.review:after {
    position: absolute;
    top: 150px;
    left: 70px;
    content: url(../png/hiring_bg-2.png);
}

.review__avatar img {
    width: 124px;
    height: 124px;

    margin-left: 20px;
    margin-bottom: 34px;

    object-fit: cover;
    object-position: top center;
    overflow: hidden;

    border-radius: 100%;
}

.review__content {
    margin-bottom: 40px !important;
    font-family: Minion Pro;
    font-style: italic;
    font-weight: normal;
    font-size: 24px;
    line-height: 36px;
    /* or 150% */

    font-feature-settings: 'liga' off;

    color: #000000;
}

.review__name {
    margin-bottom: 0 !important;
    font-family: Minion Pro;
    font-style: normal;
    font-weight: normal;
    font-size: 20px;
    line-height: 24px;
    /* identical to box height */

    color: #000000;
}

.review__position {
    margin-bottom: 0 !important;
    font-family: Roboto;
    font-style: normal;
    font-weight: normal;
    font-size: 13px;
    line-height: 24px;
    /* identical to box height, or 185% */

    letter-spacing: 0.1em;
    text-transform: uppercase;

    color: #767676;
}

@media (max-width: 991px) {
    .reviews__list {
        display: flex;
        flex-direction: column;
    }

    .review {
        max-width: 100%;
        width: 100%;
        padding: 45px;
    }

    .review:after {
        top: 125px;
    }
}