.features {
    display: grid;
    grid-template-columns: repeat(4, 1fr) ;
    row-gap: var(--block-offset);
    column-gap: var(--block-offset);
    width: 100%;
    margin-bottom:70px;
}

.features__item {
    display: flex;
    flex-direction: column;
    justify-content:space-between;
    align-items: center;
    width: 100%;
    min-height: 285px;
    padding: 30px 30px 40px;
    background-color: var(--color-white);
    border-radius: 5px;
}
.features__item_content-count {
    font-family: Oswald;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-size: 72px;
    color: var(--color-yellow);
}

.features__item_content-descr {
    padding: 0 15px;
    font-size: 17px;
    font-weight: 700;
    text-align: center;
    line-height: 1;
}

.descr {
    margin-bottom: 80px;
}

.descr__title {
    margin-bottom: 30px;
    font-size: 24px;
    font-weight: bold;
}
.descr__question {
    font-weight: bold;
}

.descr__question > span {
    margin-bottom:0;
}

.add-block {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    min-height: 145px;
    margin-bottom: 70px;
    padding: 40px 50px;
}

.add-block__descr {
    margin: 0;
    font-size: 17px;
}

.add-block__descr-width-700 {
    max-width:700px;
}

.add-block-white {
    background-color: var(--color-white);
}

.button-width-220 {
    max-width: 220px;
}

@media (max-width: 768px) {
    .features {
        grid-template-columns: repeat(2, 1fr) ;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .features {
        grid-template-columns: repeat(3, 1fr) ;
    }
}

@media (max-width: 1093px) {
    .add-banner__text {
        position: static;
        margin:0;
        color: var(--color-text);
        transform: translateY(0);
    }
}

@media (max-width: 1200px) {
    .add-block {
        flex-direction: column;
    }

    .add-block__descr {
        width: 100%;
        margin-bottom: 40px;
        text-align: center;
    }
}

@media (max-width: 767px) {
    .add-banner__text {
        font-size: 20px;
    }

    .add-banner {
        margin-bottom:20px;
    }
}
