.counter__inner {
    display: flex;
    margin-top: 100px;
    gap: 20px;
}

.counter__wrapper {
    max-width: 1440px;
    margin: 0 auto;
}

.counter__row {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.counter__value {
    display: flex;
    align-items: baseline;
    font-size: 80px;
    font-weight: 500;
}

.counter__value span {
    font-size: 32px;
    font-weight: 300;
}

.counter__title {
    /* font-size: 32px; */
    font-size: 22px;
    font-weight: 400;
}

@media (max-width: 798px) {
    .counter__inner {
        margin: 0;
        margin-top: 60px;
        gap: 40px 0;
    }
}
