.homeDigitalScrolling {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-around;
    align-items: center;
    margin: 40px 0;
    padding: 0 15px;
    width: 100%;
    box-sizing: border-box;
}

.homeStatistics {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    flex-direction: row;
    align-items: center;
    padding: 0 12px;
    margin: 0;
    position: relative;
    flex: 1;
    text-align: center;
}

.homeStatistics:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    height: 80px;
    width: 1px;
    background-color: #000;
}

.homeSpanFont {
    font-size: 7rem;
    font-weight: 700;
    color: #01B9F2;
    line-height: 1;
}

.statText {
    margin: 0 8px 0 10px;
    font-size: 1.5rem;
    line-height: 1.3;
    word-wrap: break-word;
}

@media only screen and (max-width: 1200px) {
    .homeSpanFont {
        font-size: 5.5rem;
    }
}

@media only screen and (max-width: 991px) {
    .homeSpanFont {
        font-size: 4.5rem;
    }

    .homeStatistics {
        padding: 0 10px;
    }
}

@media only screen and (max-width: 768px) {
    .homeSpanFont {
        font-size: 3.8rem;
    }

    .statText {
        font-size: 1rem;
    }
}

@media only screen and (max-width: 576px) {
    .homeSpanFont {
        font-size: 3rem;
    }

    .homeStatistics {
        padding: 0 8px;
    }

    .statText {
        margin: 0 5px 0 8px;
    }
}