.benefits-section .benefits-list {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.benefits-section .benefits-list .item {
    color: var(--benefits-color);
    line-height: 26px;
    text-align: center;
}

.benefits-section .benefits-list .title {
    font-size: 20px;
    font-weight: 700;
    color: var(--benefits-title-color);
}

.benefits-section .benefits-list .text {
    margin-top: 20px;
}

.benefits-section .benefits-list .image {
    height: 70px;
    margin-bottom: 10px;
}

.benefits-section .benefits-list .image img {
    max-height: 100%;
    width: auto;
    max-width: initial;
    margin: 0 auto;
}

.section--primary .benefits-section .benefits-list .item {
    color: var(--benefits-color-on-primary);
}

.section--primary .benefits-section .benefits-list .title {
    color: var(--benefits-title-color-on-primary);
}

.section--secondary .benefits-section .benefits-list .item {
    color: var(--benefits-color-on-secondary);
}

.section--secondary .benefits-section .benefits-list .title {
    color: var(--benefits-title-color-on-secondary);
}


@media (min-width: 992px) {
    .benefits-section .benefits-list .item {
        flex: 1
    }
}

@media (max-width: 991px) {
    .benefits-section {
        font-size: 18px;
    }

    .benefits-section .benefits-list {
        gap: 20px;
    }

    .section__row--4-8 .benefits-section .benefits-list .item,
    .benefits-section .benefits-list .item {
        width: calc(1 / 2 * 100% - (1 - 1 / 2) * 20px);
    }
}

@media (max-width: 767px) {
    .benefits-section .benefits-list {
        flex-wrap: wrap;
        gap: 15px;
        justify-content: center;
    }

    .section__row--4-8 .benefits-section .benefits-list .item,
    .benefits-section .benefits-list .item {
        width: 100%;
    }

    .benefits-section .benefits-list .item {
        font-size: 18px;
    }
}