.statistics {
    position: relative;
    z-index: 1;
}

.stats-flex {
    display: flex;
    flex-wrap: wrap;
    row-gap: 40px;
}

.stats-item {
    width: 100%;
}

.stats__text {
    text-align: center;
}

.stats__text .stats__value {
    color: var(--white);
    font-size: 80px;
    margin: 0;
    font-weight: 700;
}

.stats__info {
    display: block;
    font-size: 25px;
    line-height: 0.75em;
    font-weight: 700;
    font-family: "Barlow Condensed", sans-serif;
    color: var(--white);
    text-transform: uppercase;
}

@media (min-width: 768px) {
    
    .stats-flex {
        row-gap: 70px;
    }

    .stats-item {
        width: 50%;
    }

    .stats__text {
        text-align: center;
    }

    .stats__text .stats__value {
        font-size: 125px;
        line-height: 0.75em;
    }

    .stats__info {
        font-size: 30px;
        margin-bottom: 20px;
    }
}

@media (min-width: 1200px) {
    
    .stats-flex {
        justify-content: space-between;
    }

    .stats-item {
        width: auto;
    }

}