.count-down-offer {
  margin-bottom: 40px;
}
.count-down-offer .count-down-wrapper .offer-counter .tp-section-title-200 {
  font-size: 21px !important;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0px;
  color: #ffffff;
  font-family: var(--tp-ff-marcellus);
}
.offer-counter {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.offer-counter h5 {
  background: #000000;
  border-radius: 8px;
  width: 70px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.offer-counter h6 {
  font-family: var(--tp-ff-marcellus);
  color: #000000;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}
.count-down-offer .count-down-wrapper .offer-text {
  font-family: var(--tp-ff-marcellus);
  color: #fff;
  font-size: 18px;
}
.offer-text {
  font-size: 30px;
  margin-bottom: 40px;
  font-weight: bold;
  background: linear-gradient(90deg, #ff6a00, #c20862, #04b7b7);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 10s linear infinite;
}

@keyframes shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}