.content-wrapper .benefits ul.flexbox li:before {
    content: none
}

.content-wrapper .benefits ul.flexbox li {
    text-indent: 0;
    text-transform: uppercase;
    color: #a14a2b;
    text-align: center;
    width: calc((100% - calc(100vw / 24 * 4)) / 5);
    margin: 0;
    display: flex;
    flex-direction: column;

    position: relative;
    padding: 0 0 5rem 0;
}

.benefits ul.flexbox {
    display: flex;
    gap: calc(100vw / 24);
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
}

.benefits img {
    max-width: 100%;
    height: auto;
    width: 15rem;
    margin: 0 auto 3rem;
}

.content-wrapper .benefits ul.flexbox li > div {
    margin: auto;
    max-width: 100%;
}

@media screen and (min-width: 1381px) {
    .content-wrapper .benefits ul.flexbox li:nth-child(10n - 9):after {
        content: '';
        position: absolute;
        width: calc(100vw / 24 * 19);
        border-bottom: 1px solid #707070;
        left: calc(0px - (100vw / 8));
        top: 100%;
    }
    .content-wrapper .benefits ul.flexbox li:nth-child(10n - 4):after {
        content: '';
        position: absolute;
        width: calc(100vw / 24 * 19);
        border-bottom: 1px solid #707070;
        left: calc(100% / 3 * 2);
        top: 100%;
    }

    .content-wrapper .benefits ul.flexbox li {
        letter-spacing: .05em;
    }
}

.content-wrapper {
    overflow-x: hidden;
}

@media screen and (min-width: 769px) and (max-width: 1380px) {

    .benefits ul.flexbox {
        justify-content: center;
    }

    .content-wrapper .benefits ul.flexbox li {
        min-width: 18rem;
        flex-grow: 1;
    }
}

@media screen and (max-width: 768px) {
    .content-wrapper .benefits ul.flexbox li {
        width: 100%;
        display: flex;
        gap: 1rem;
        align-items: center;
        flex-direction: row;
        border-bottom: 1px solid #707070;
        flex-wrap: wrap;
        justify-content: center;
        padding: 0;
    }

    .content-wrapper .benefits ul.flexbox li:nth-child(even) {
        flex-direction: row-reverse;
    }

    .content-wrapper .benefits ul.flexbox li img {
        flex-shrink: 1;
        height: auto;
        width: auto;
        max-width: 40%;
        margin: auto;
    }

    .content-wrapper .benefits ul.flexbox li>div {
        flex-grow: 1;
        width: 25rem;
    }
}