.counter-div {
  display: flex;
  flex-direction: row;
  gap: 4px;
  justify-content: center;
  padding:0px;
}
.counter-element {
  width: fit-content;
  display: flex;
  flex-direction: column;
}
.number-div {
  background-color: #fff;
  border-radius: 50%;
  width:55px;
  padding: 1px 0;
  font-size: 30px;
  font-weight: 900;
  color: red;
}
.element-text {
  font-size: 19px;
  font-weight: 700;
  color: #012a2f;
}
.counter-animate {
  animation: slideInFromTop 0.5s ease-in-out;
}
.show {
  opacity: 1;
}
@media screen and (max-width: 450px) {
  .number-div {
    width: 60px;
  }
  .counter-div {
    gap: 5px;
  }
  .et-desktop {
    display: none;
  }
}
@media screen and (min-width: 451px) {
  .et-mobile {
    display: none;
  }
}

@keyframes slideInFromTop {
  from {
    transform: translateY(-80%);
    opacity: 0;
  }
  to {
    transform: translateY(0%);
    opacity: 1;
  }
}