.main-features__row {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
}

.main-features__mobile-row {
    display: none;
}

.feature-item {
    display: block;
    width: 380px;
    height: 195px;
    padding: 30px;
    margin: 0 20px 20px 0;
    background: #fff;
    border: 1px solid #c7d1d0;
    box-sizing: border-box;
    border-radius: 2px;
}

.feature-item:nth-child(3n+3) {
    margin-right: 0;
}

.feature-item__top {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 15px;
}

.feature-item__icon-block {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    margin-right: 20px;
}

.feature-item__header {
    padding: 0;
    margin: 0;
    font-weight: bold;
    font-size: 1.275rem;
    line-height: 1.6rem;
    color: #062121;
}

.feature-item__desc {
    display: block;
    font-weight: 500;
    font-size: 0.875rem;
    line-height: 1.125rem;
    color: #425654;
}

.feature-item__desc-mobile {
    display: none;
    font-weight: 500;
    font-size: 0.875rem;
    line-height: 1.125rem;
    color: #425654;
}

@media (max-width: 767px) {
    .main-features {
        padding-bottom: 20px;
    }

    .main-features__row {
        width: calc(100% + 20px);
        margin-right: -20px;
    }

    .feature-item {
        width: 280px;
        height: 220px;
        padding: 20px;
        margin: 0;
    }

    .feature-item__top {
        margin-bottom: 10px;
    }

    .feature-item__header {
        font-size: 1rem;
        line-height: 1.25rem;
    }

    .feature-item__desc {
        display: none;
        font-size: 0.9375rem;
        line-height: 1.125rem;
    }

    .feature-item__desc-mobile {
        display: block;
        font-size: 0.9375rem;
        line-height: 1.125rem;
    }

    .feature-item__icon-block {
        width: 35px;
        height: 35px;
    }
}

@media (min-width: 768px) and (max-width: 1199px) {
    .feature-item {
        margin-right: 0;
    }
}