/* colors */
/* easing bezier */
/* layout vars */
/* NUMBER COUNT UP MODULE */
.number-count-up {
  padding-left: 30px;
  padding-right: 30px;
}
@media screen and (min-width : 48em) {
  .number-count-up {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
  }
  .number-count-up .counter-item {
    flex-basis: 45%;
    text-align: center;
  }
}
@media screen and (min-width : 68.75em) {
  .number-count-up .counter-item {
    flex-basis: 20%;
  }
}
.number-count-up .counter-number {
  font-weight: 800;
  font-size: 3.375rem;
  background-color: #005DAF;
  background-size: 100%;
  background-clip: text;
  color: transparent;
  background-image: var(--gradient-dark-blue);
}
.number-count-up .counter-text {
  font-size: 0.9375rem;
  font-weight: 700;
}
