@keyframes spinning-frames {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}
.counting-number-wrapper {
  display: flex;
}
.counting-number-wrapper .prefix {
  font-size: 90px;
  font-weight: 600;
  line-height: 120%;
  letter-spacing: -0.9px;
}
.counting-number-wrapper .counting-number {
  font-family: "Open Sans";
  font-size: 90px;
  font-weight: 600;
  line-height: 120%;
  letter-spacing: -0.9px;
  color: #123562;
  display: flex;
  height: 108px;
  opacity: 0;
}
.counting-number-wrapper .counting-number .number-carousel {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  width: 47.8px;
  margin-right: 10px;
}
.counting-number-wrapper .counting-number .number-carousel.dot {
  width: 20px;
}
.counting-number-wrapper .counting-number.not-number {
  height: auto;
  margin-right: 10px;
}
.counting-number-wrapper .suffix {
  font-size: 90px;
  font-weight: 600;
  line-height: 120%;
  letter-spacing: -0.9px;
}
@media (max-width: 767px) {
  .counting-number-wrapper .prefix {
    font-size: 58px;
    letter-spacing: -0.589px;
  }
  .counting-number-wrapper .counting-number {
    font-size: 60px;
    letter-spacing: -0.589px;
    height: 69.6px;
  }
  .counting-number-wrapper .counting-number .number-carousel {
    width: 34px;
    margin-right: 3px;
  }
  .counting-number-wrapper .counting-number.not-number {
    height: auto;
  }
  .counting-number-wrapper .suffix {
    font-size: 58px;
    letter-spacing: -0.589px;
  }
}