.statistics-component {
    display: flex;
    text-align: center;
    justify-content: space-evenly;
}

.statistics-component .item {
    max-width: 200px;
}

.statistics-component .title {
    color: var(--stat-title-color);
    font-weight: 400;
    font-size: 40px;
    line-height: 1.16;
    margin: 10px;
}

.statistics-component .text {
    font-weight: 600;
    color: var(--stat-text-color);
    margin: 0;
}

.section--primary .statistics-component .title {
    color: var(--stat-title-on-primary-color);
}

.section--primary .statistics-component .text {
    color: var(--stat-text-on-primary-color);
}

@media only screen and (max-width: 991px) {
    .statistics-component {
        flex-wrap: wrap;
        gap: 20px;
    }

    .statistics-component .item {
        width: calc(1/2*100% - (1 - 1/2)*20px);
        max-width: auto;
    }
}