:root {
  --animate-pulse: pulse-opacity 2s ease-in-out infinite;
}

@keyframes pulse-opacity {
  0%, 100% {
    opacity: .4;
  }

  50% {
    opacity: 1;
  }
}

@keyframes pulse-opacity-dim {
  0%, 100% {
    opacity: 0;
  }

  50% {
    opacity: .2;
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(5px);
  }

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

.fade-up-text {
  opacity: 0;
  animation: .4s ease-out forwards fadeUp;
}

.fade-up-text:first-child {
  animation-delay: .1s;
}

.fade-up-text:nth-child(2) {
  animation-delay: .2s;
}

.fade-up-text:nth-child(3) {
  animation-delay: .3s;
}

.fade-up-text:nth-child(4) {
  animation-delay: .4s;
}

.fade-up-text:nth-child(5) {
  animation-delay: .5s;
}

.fade-up-text:nth-child(6) {
  animation-delay: .6s;
}

.fade-up-text:nth-child(7) {
  animation-delay: .7s;
}

.fade-up-text:nth-child(8) {
  animation-delay: .8s;
}

.fade-up-text:nth-child(9) {
  animation-delay: .9s;
}

.fade-up-text:nth-child(10) {
  animation-delay: 1s;
}

.fade-up-text:nth-child(11) {
  animation-delay: 1.1s;
}

.fade-up-text:nth-child(12) {
  animation-delay: 1.2s;
}

.fade-up-text:nth-child(13) {
  animation-delay: 1.3s;
}

.fade-up-text:nth-child(14) {
  animation-delay: 1.4s;
}

.fade-up-text:nth-child(15) {
  animation-delay: 1.5s;
}

.fade-up-text:nth-child(16) {
  animation-delay: 1.6s;
}

.fade-up-text:nth-child(17) {
  animation-delay: 1.7s;
}

.fade-up-text:nth-child(18) {
  animation-delay: 1.8s;
}

.fade-up-text:nth-child(19) {
  animation-delay: 1.9s;
}

.fade-up-text:nth-child(20) {
  animation-delay: 2s;
}

.fade-up-text:nth-child(21) {
  animation-delay: 2.1s;
}

.fade-up-text:nth-child(22) {
  animation-delay: 2.2s;
}

.fade-up-text:nth-child(23) {
  animation-delay: 2.3s;
}

.fade-up-text:nth-child(24) {
  animation-delay: 2.4s;
}

.fade-up-text:nth-child(25) {
  animation-delay: 2.5s;
}

.fade-up-text:nth-child(26) {
  animation-delay: 2.6s;
}

.fade-up-text:nth-child(27) {
  animation-delay: 2.7s;
}

.fade-up-text:nth-child(28) {
  animation-delay: 2.8s;
}

.fade-up-text:nth-child(29) {
  animation-delay: 2.9s;
}

.fade-up-text:nth-child(30) {
  animation-delay: 3s;
}
