.countdown-block {
  background-size: cover;
  background-position: left top;
}
.countdown-block__content {
  margin-top: 60px;
}
.countdown-block__form {
  margin-top: 10px;
}

.timer {
  display: flex;
  gap: 10px;
  width: 548px;
  position: relative;
}
.timer__item {
  width: 83px;
  height: 81px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 36px;
  line-height: 140%;
  background: #ffffff;
  box-shadow: 0px 12px 50px rgba(0, 0, 0, 0.03);
  border-radius: 10px;
}
.timer__description {
  position: absolute;
  bottom: -30px;
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  color: rgba(35, 31, 32, 0.6);
}
@media (max-width: 576px) {
  .countdown-block {
    height: 90vh;
  }
  .countdown-block__content {
    margin-top: 50px;
  }
  .timer {
    max-width: 100%;
    justify-content: space-between;
  }
  .timer__item {
    width: 44px;
    height: 43px;
    font-size: 18px;
  }
}
