.block-benefits-block {
    padding: 0 75px;
}

.benefits__title {
    font-family: Minion Pro;
    font-style: normal;
    font-weight: normal;
    font-size: 36px;
    line-height: 43px;

    text-align: center;
    color: #000000;
}

.benefits__list {
    display: flex;
}

.benefit__item {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 25%;
    margin: 0 35px 55px;
    padding-top: 80px;
}

.benefit__item:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 51px;
    height: 51px;
    border-radius: 100%;
    background: #FFF3ED;
}

.benefit__item:after {
    content: '';
    position: absolute;
    top: 0;
    left: 13px;
    width: 45px;
    height: 45px;
    background: url(../svg/benefit_icon.svg) no-repeat;
}

.benefit__item .title {
    margin-bottom: 0;
    font-family: Minion Pro;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 21px;
    /* or 131% */

    color: #000000;
}

.benefit__item .desc {
    margin-bottom: 0;
    font-family: Minion Pro;
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 21px;
    /* or 131% */

    color: #000000;
}

.button__group {
    display: flex;
    justify-content: center;
    align-items: center;
}

.benefits__link {
    display: inline-block;
    padding: 17px 31px;
    font-family: Roboto;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 16px;
    text-align: center;
    letter-spacing: 0.13em;
    text-transform: uppercase;

    color: #2E333C;

    border: 1px solid #2E333C;
    box-sizing: border-box;
}

@media (max-width: 991px) {
    .benefits__list {
        flex-wrap: wrap;
    }

    .benefit__item {
        position: relative;
        display: flex;
        /* flex-direction: column; */
        width: calc(50% - 20px);
        margin: 0 10px 60px;
        padding-top: 80px;
        max-width: 50%;
        flex-wrap: wrap;
        justify-content: space-between;
    }
}

@media (max-width: 767px) {
    .block-benefits-block {
        padding: 0;
    }
}