.timer {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}
.time-count__item {
  width: 128px;
  display: flex;
  flex-flow: column;
  align-items: center;
  position: relative;
}
.time-count__val {
  font-weight: 400;
  font-size: 64px;
  line-height: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 94px;
  background: rgba(255, 255, 255, 0.31);
  backdrop-filter: blur(8px);
  position: relative;
  z-index: 1;
}

.time-count__val span {
    flex: 1;
    text-align: center;
}

.time-count__val::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 50%;
    height: 100%;
    z-index: -1;
    background: rgba(255, 255, 255, 0.31);
}

.time-count__text {
  font-weight: 200;
  font-size: 20px;
  line-height: 1;
  margin-top: 12px;
}

@media screen and (max-width: 600px) {
  .timer {
    margin-top: 14px;
  }

  .time-count__item {
    width: 75px;
  }

  .time-count__val {
    font-size: 37px;
    height: 55px;
  }

  .time-count__text {
    font-size: 12px;
  }

  .pie {
    width: 100px;
    height: 100px;
    left: -12px;
    bottom: -20px;
  }
}
