.section {
    padding-top: 40px;
    padding-bottom: 40px;
    font-weight: 400;
    font-size: 15px;
    line-height: 1.33;
    color: rgba(0, 0, 0, 0.7);
}

.section_background_lightgray {
    background-color: #EFF0F0
}

.section_background_gray {
    background-color: #EAEBEB;
}

.section__heading {
    margin: 0 0 30px;
    font-family: 'Halvar Breitschrift';
    font-weight: 500;
    font-size: 36px;
    line-height: 1.11;
    letter-spacing: -0.01em;
    color: #000;
}

.section__text {
    font-weight: 400;
    font-size: 17px;
    line-height: 1.41;
    color: rgba(0, 0, 0, 0.7);
    width: 100%;
    max-width: 780px;
}

.section__row {
    display: grid;
    grid-template-columns: auto 48px;
    column-gap: 28px;
    row-gap: 40px;
}

.section__row-heading {
    margin-bottom: 0;
}


.section__row-description>*:last-child {
    margin-bottom: 0;
}

.section__row-link {
    display: block;
    background: url(/images/section-row__link.svg) no-repeat center center;
    width: 48px;
    height: 48px;
}

@media screen and (min-width: 992px) {
    .section {
        padding-top: 80px;
        padding-bottom: 80px;
        font-size: 24px;
        line-height: 1.33;
    }

    .section__heading {
        font-size: 44px;
        line-height: 1.27;
    }

    .section__row {
        grid-template-columns: 1fr 1fr 48px;
        column-gap: 40px;
    }

    .section__row-link {
        order: 10;
    }

    .section__row-description {
        font-size: 17px;
        line-height: 1.41;
    }
}