.countdown-timer-style1 .countdown-timer {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 15px;
}
.countdown-timer-style1 .countdown-timer .counter {
  position: relative;
  display: inline-block;
  width: 136px;
  height: 134px;
  color: #fff;
  background-color: var(--theme-color1);
  border-radius: 50% 50% 50% 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: 1px dashed #fff;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.countdown-timer-style1 .countdown-timer .counter .value {
  font-family: var(--heading-font-family);
  position: relative;
  display: block;
  font-size: 42px;
  line-height: 30px;
  color: #fff;
  margin-bottom: 10px;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.countdown-timer-style1 .countdown-timer .counter .label {
  font-size: 1.2rem;
  color: #fff;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}