@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

.montserrat {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

body {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}
.hero-wave span {
  display: inline-block;
  opacity: 0;
  transform: translateY(12px);
  animation: waveFade 4s ease-in-out infinite;
}

.hero-wave span:nth-child(1) { animation-delay: 0s; }
.hero-wave span:nth-child(2) { animation-delay: 0.2s; }
.hero-wave span:nth-child(3) { animation-delay: 0.4s; }
.hero-wave span:nth-child(4) { animation-delay: 0.6s; }
.hero-wave span:nth-child(5) { animation-delay: 0.8s; }
.hero-wave span:nth-child(6) { animation-delay: 1s; }
.hero-wave span:nth-child(7) { animation-delay: 1.2s; }

@keyframes waveFade {
  0% {
    opacity: 0;
    transform: translateY(12px);
  }
  20% {
    opacity: 1;
    transform: translateY(0);
  }
  60% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-12px);
  }
}
