.azimut-animate {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s var(--transition-slow),
    transform 0.8s var(--transition-slow);
}

.azimut-animate--visible {
  opacity: 1;
  transform: translateY(0);
}

.azimut-hero .azimut-animate:nth-child(1) {
  transition-delay: 0.1s;
}

.azimut-hero .azimut-animate:nth-child(2) {
  transition-delay: 0.3s;
}

.azimut-hero .azimut-animate:nth-child(3) {
  transition-delay: 0.5s;
}

.azimut-hero .azimut-animate:nth-child(4) {
  transition-delay: 0.7s;
}

@media (prefers-reduced-motion: reduce) {
  .azimut-animate,
  .azimut-animate--visible {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

