@media (min-width: 0) {
  .clock {
    padding: 20px 0;

    background: #151617;
  }

  .clock__box {
    padding: 20px 16px;
    border-radius: 16px;
    background: #ff4085;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .clock__title {
    color: #fff;

    text-align: center;
    font-family: Manrope;
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
  }

  .clock__subtitle {
    color: #fff;
    margin-top: 8px;
    text-align: center;
    font-family: Manrope;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 130%;
    /* 20.8px */
    letter-spacing: 0.32px;
  }

  .timerOne {
    margin-top: 8px;
  }

  .timer-one__item {
    color: #fff;
    text-align: center;
    font-family: Manrope;
    font-size: 66px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
  }

  .clock__button {
    margin-top: 24px;
    color: #fff;
    text-align: center;
    font-family: Manrope;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    /* 18px */
    letter-spacing: 0.36px;
    padding: 17px 0;
    border-radius: 16px;
    background: #000;
    width: 100%;
  }

  .timer-one__items {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
  }

  .timer-one__item {
    position: relative;
    min-width: 80px;
    margin-left: 10px;
    margin-right: 10px;
    padding-bottom: 15px;
    text-align: center;
  }

  .timer-one__item:not(:last-child)::after {
    content: ":";
    position: absolute;
    right: -20px;
  }
}

@media (min-width: 960px) {
  .clock__button {
    max-width: 288px;
  }

  .clock__title {
    font-size: 45px;
    max-width: 1050px;
  }

  .clock__subtitle {
    font-size: 20px;
    margin-top: 16px;
  }

  .timerOne {
    margin-top: 16px;
    width: 100%;
  }

  .timer-one__item {
    font-size: 100px;
    min-width: 127px;
  }
}

@media (min-width: 1244px) {
  .clock {
    padding: 64px;
  }

  .timer-one__items {
    gap: 10px;
  }

  .clock__button {
    margin-top: 25px;
  }

  .clock__box {
    padding: 40px 40px 60px 40px;
  }
  .timer-one__item:not(:last-child)::after {
    right: -30px;
  }
}
