.timer {
    display: flex;
    justify-content: space-between;
    gap: 80px;
}
.time-count__item {
    width: 80px;
    display: flex;
    flex-flow: column;
    align-items: center;
    position: relative;
    gap: 5px;
    z-index: 1;
}
.time-count__val {
    font-weight: 700;
    font-size: 45px;
    line-height: 1;
}
.time-count__text {
    font-weight: 600;
    font-size: 15px;
    line-height: 1;
    text-transform: uppercase;
}
.pie {
    display: block;
    width: 112px;
    height: 112px;
    border-radius: 50%;
    transform: rotate(-90deg);
    position: absolute;
    bottom: -20px;
    left: -16px;
    z-index: -1;
}
.background {
    fill: none;
    stroke: var(--secondary-dark);
    opacity: 0.5;
    stroke-width: 10;
}
.chart {
    fill: none;
    stroke: var(--primary);
    stroke-width: 10;
}

@media screen and (max-width: 1540px) {
    .timer {
        gap: 50px;
    }
}

@media screen and (max-width: 620px) {
    .timer {
        gap: 25px;
    }

    .time-count__item {
        width: 60px;
    }

    .time-count__val {
        font-size: 32px;
    }

    .time-count__text {
        font-size: 12px;
    }

    .pie {
        width: 75px;
        height: 75px;
        bottom: -11px;
        left: -7px;
    }

    .chart,
    .background {
        stroke-width: 8px;
    }
}