.benefits-section {
    width: 100%;
    font-size: 24px;
    line-height: 28px;
    padding: 40px 0 40px;
    position: relative;
    color: #002249;
}

.benefits-section:before {
    content: '';
    width: 100%;
    height: 100px;
    background-color: #101028;
    position: absolute;
    left: 0;
    top: 0;
}

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

.benefits-section .benefits-list div {
    position: relative;
    padding: 25px;
    background: #fff;
    width: 100%;
}

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

@media (min-width: 767px) {
    .benefits-section .benefits-list div {
        height: 130px;
        box-shadow: 0 16px 32px rgba(228, 228, 228, .56);
        width: calc(1/4*100% - (1 - 1/4)*20px);
    }
}

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

    .benefits-section .benefits-list div {
        padding: 15px;
        min-height: 50px;;
    }

    .benefits-section:before {
        height: 100%;
    }

}