.statistics__container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 75px;
}

.statistic__content {
    display: flex;
    flex-direction: column;
    flex: calc(25% - 75px);
    text-align: center;
    gap: 5px;
    padding: 15px 0;
}

.statistic__number {
    font-family: var(--font-family-main);
    font-style: normal;
    font-weight: 700;
    font-size: 40px;
    line-height: 48px;
}

.statistic__description {
    font-family: var(--font-family-main);
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    line-height: 21px;
}

@media only screen and (max-width: 1200px) {
    .statistics__container {
        gap: 15px;
    }

    .statistic__content {
        flex: calc(50% - 15px);
    }
}
