.benefits-section-holder + .statistics-component {
    margin-top: 60px;
}

.statistics-component {
    display: flex;
    text-align: center;
}

.statistics-component .statistic {
    flex-grow: 1;
    flex-basis: 0;
    font-size: 18px;
    line-height: 1.33333333;
    border-right: 2px solid rgba(219, 226, 135, 25%);
    border-left: 2px solid transparent;
    padding: 0 10px;
}

.statistics-component .statistic:first-child {
    border-left-color: rgba(219, 226, 135, 25%);
}

.section--green .statistics-component .statistic,
.section--green .statistics-component .statistic:first-child {
    border-right-color: rgba(57, 78, 135, 15%);
}


.statistics-component .statistic .number {
    margin-bottom: 14px;
    font-weight: 700;
    font-size: 22px;
    line-height: 1.15;
}

.section--purple .statistics-component {
    color: #fff
}



.statistics-component .statistic p {
    font-size: var(--font-size);
    line-height: 24px;
}

.section--blue .statistics-component .statistic .number,
.section--blue .statistics-component .statistic p {
    color: #ffffff;
}


.statistics-component::-webkit-scrollbar-track {
    margin-left: 0;
    -webkit-border-radius: 4px;
    border-radius: 4px;
}

.statistics-component::-webkit-scrollbar {
    width: 5px;
    height: 5px;
    background: #ffffff;
    border-radius: 4px;
}

.statistics-component::-webkit-scrollbar-thumb {
    background: var(--primary-color);    
}

@media only screen and (max-width: 991px) {
    .statistics-component {
        flex-wrap: nowrap;
        text-align: left;
        row-gap: 30px;
        width: auto;
        overflow-y: auto;
        padding-bottom: 20px;
    }

    .statistics-component .statistic:first-child,
    .statistics-component .statistic {
        border-left-color: transparent;
        border-right-color: transparent;
    }
    .statistics-component .statistic {
        flex-basis: auto;
        min-width: 168px;
        padding: 0px 10px;
    }

    .statistics-component .statistic .number {
        margin-bottom: 5px;
        font-size: 20px;
    }
}
