.counter {
  display: flex;
  gap: 0 10px;
  flex-wrap: wrap;
  width: 385px;
  margin-top: 10px;
}
.counter__title {
  font-size: 20px;
  width: 100%;
  margin-bottom: 10px;
}
.counter .cell {
  text-align: center;
  width: 75px;
  position: relative;
}
.counter .cell:not(:last-child):after {
  content: ':';
  position: absolute;
  right: -11px;
  transform: translateX(-50%);
  color: #2c2e35;
  font-size: 24px;
  top: 0;
  line-height: 1.7;
}
.counter p {
  font-size: 24px;
  line-height: 1;
  font-weight: bold;
  background-color: #232b2f;
  padding: 10px 0;
  color: #fff;
  border-radius: 20px;
}
.counter .sub {
  display: block;
  font-size: 12px;
  font-weight: 400;
}

@media only screen and (max-width: 767px) {
  .counter {
    width: 100%;
    justify-content: center;
  }
  .counter .cell {
    width: 50px;
    text-align: center;
  }
  .counter .cell:not(:last-child):after {
    font-size: 24px;
  }
  .counter p {
    font-size: 24px;
  }
  .counter .sub {
    font-size: 10px;
  }
}
