.timer {
    display: flex;
    justify-content: space-between;
    gap: 36px;
}
.time-count__item {
    width: 94px;
    display: flex;
    flex-flow: column;
    align-items: center;
    position: relative;
    gap: 10px;
}
.time-count__val {
    font-weight: 700;
    font-size: 42px;
    line-height: 1;
}
.time-count__text {
    font-size: 13px;
    line-height: 1;
    text-transform: uppercase;
}
.pie {
    display: block;
    width: 94px;
    height: 94px;
    border-radius: 50%;
    transform: rotate(-90deg);
    position: absolute;
    bottom: -6px;
    left: 0;
    /* z-index: -1; */
}
.background {
    fill: none;
    stroke: var(--secondary);
    opacity: 0.5;
    stroke-width: 4;
}

.chart {
    fill: none;
    stroke: var(--primary);
    stroke-width: 4;
}

@media screen and (max-width: 1400px) {
    .timer {
        gap: 40px;
        margin-right: 10px;
    }

    .time-count__item {
        width: 74px;
    }

    .time-count__val {
        font-size: 44px;
    }

    .time-count__text {
        font-size: 12px;
    }

    .pie {
        width: 100px;
        height: 100px;
        left: -12px;
        bottom: -20px;
    }
}

@media screen and (max-width: 992px) {
    .time-count__item {
        width: 35px;
    }

    .time-count__val {
        font-size: 24px;
    }

    .time-count__text {
        font-size: 8px;
    }

    .pie {
        width: 63px;
        height: 63px;
        left: -14px;
        top: -12px;
    }
}
