.timer {
    width: 477px;
    display: flex;
    gap: 24px;
    color: var(--white);
}

.time-count__item {
    text-align: center;
}

.time-count__item p {
    text-align: center;
    font-size: 55px;
    line-height: 55px;
    font-weight: 400;
}

.time-count__text {
    font-size: 18px;
    line-height: 18px;
    text-align: center;
    text-transform: uppercase;
}

.timer-points {
    font-size: 44px;
    line-height: 44px;
}

@media screen and (max-width: 600px) {
    .timer {
        width: 100%;
        /* gap: 17px; */
        justify-content: center;
    }

    .time-count__item p {
        font-size: 37px;
        line-height: 37px;
    }

    .time-count__text {
        font-size: 10px;
        line-height: 12px;
    }

    .timer-points {
        font-size: 30px;
        line-height: 30px;
    }
}