.keynumbers-animated--container {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 0 16px;
}

@media screen and (min-width: 768px) {
  .keynumbers-animated--container {
    flex-direction: row;
    justify-content: space-between;
    gap: 32px;
    padding: 0 40px;
    flex-wrap: wrap;
  }
}

@media screen and (min-width: 1280px) {
  .keynumbers-animated--container {
    padding: 0;
  }
}

.keynumbers-animated--item {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

@media screen and (min-width: 1280px) {
  .keynumbers-animated--item {
    opacity: 0;
  }
}

.keynumbers-animated--item::before {
  content: '';
  width: 10px;
  height: 10px;
  background: var(--yellow);
}

@media screen and (min-width: 768px) {
  .keynumbers-animated--item {
    flex: 0 0 250px;
  }
}

.keynumbers-animated .number {
  color: var(--yellow);
  font-size: 80px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}

.keynumbers-animated .title {
  font-family: var(--bebas);
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  text-transform: uppercase;
}

.keynumbers-animated p {
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: 180%;
}

.is-animated .is-step-animation:nth-child(1) {
  opacity: 0;
  -webkit-animation: apparitionDeBasEnHaut 0.5s ease-out 0.4s;
  animation: apparitionDeBasEnHaut 0.5s ease-out 0.4s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.is-animated .is-step-animation:nth-child(2) {
  opacity: 0;
  -webkit-animation: apparitionDeBasEnHaut 0.5s ease-out 0.8s;
  animation: apparitionDeBasEnHaut 0.5s ease-out 0.8s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.is-animated .is-step-animation:nth-child(3) {
  opacity: 0;
  -webkit-animation: apparitionDeBasEnHaut 0.5s ease-out 1.2s;
  animation: apparitionDeBasEnHaut 0.5s ease-out 1.2s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.is-animated .is-step-animation:nth-child(4) {
  opacity: 0;
  -webkit-animation: apparitionDeBasEnHaut 0.5s ease-out 1.6s;
  animation: apparitionDeBasEnHaut 0.5s ease-out 1.6s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.is-animated .is-step-animation:nth-child(5) {
  opacity: 0;
  -webkit-animation: apparitionDeBasEnHaut 0.5s ease-out 2s;
  animation: apparitionDeBasEnHaut 0.5s ease-out 2s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

@-webkit-keyframes apparitionDeBasEnHaut {
  from {
    opacity: 0;
    transform: translateY(100px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes apparitionDeBasEnHaut {
  from {
    opacity: 0;
    transform: translateY(100px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}