h1,
h2 {
  font-family: Lato;
}

.scco__number_flipper {
  display: flex;
  position: relative;
  overflow: hidden;
  height: 1lh;
  
}

.scco__number_flipper .scco__flipper_group {
  display: flex;
  flex: 0 0;
  flex-direction: column;
  margin-bottom: auto;
  transform: translateY(0%);
}

.scco__number_flipper.animate .scco__flipper_group {
  animation: scroll;
  animation-duration: 1s;
  animation-direction: forwards;
}

.et_pb_text_align_center {
    display: inline-block;
}

@keyframes scroll {
  from {
    transform: translateY(calc(-100% + 1lh));
  }
  to {
    transform: translateY(0%);
  }
}
