@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes bounceInLeft {
  60%,
  75%,
  90%,
  from,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }
  75% {
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    transform: translate3d(5px, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes bounceInRight {
  60%,
  75%,
  90%,
  from,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    transform: translate3d(10px, 0, 0);
  }
  90% {
    transform: translate3d(-5px, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes bounceIn {
  20%,
  40%,
  60%,
  80%,
  from,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}

.reveal {
  opacity: 0;
}

.reveal.reveal--shown {
  animation-duration: 0.8s;
  animation-fill-mode: both;
  animation-timing-function: ease-out;
}

.reveal.reveal--shown.reveal--fast {
  animation-duration: 0.55s;
}

.reveal.reveal--shown.reveal--delay-100 {
  animation-delay: 0.1s;
}

.reveal.reveal--shown.reveal--delay-200 {
  animation-delay: 0.2s;
}

.reveal.reveal--shown.reveal--delay-300 {
  animation-delay: 0.3s;
}

.reveal.reveal--shown.anim-fadeIn {
  animation-name: fadeIn;
}

.reveal.reveal--shown.anim-fadeInUp {
  animation-name: fadeInUp;
}

.reveal.reveal--shown.anim-fadeInLeft {
  animation-name: fadeInLeft;
}

.reveal.reveal--shown.anim-fadeInRight {
  animation-name: fadeInRight;
}

.reveal.reveal--shown.anim-bounceInLeft {
  animation-name: bounceInLeft;
}

.reveal.reveal--shown.anim-bounceInRight {
  animation-name: bounceInRight;
}

.reveal.reveal--shown.anim-bounceIn {
  animation-name: bounceIn;
}

.timer-row .timer-cell.reveal.reveal--shown:nth-child(1) {
  animation-delay: 0s;
}
.timer-row .timer-cell.reveal.reveal--shown:nth-child(2) {
  animation-delay: 0.1s;
}
.timer-row .timer-cell.reveal.reveal--shown:nth-child(3) {
  animation-delay: 0.2s;
}
.timer-row .timer-cell.reveal.reveal--shown:nth-child(4) {
  animation-delay: 0.3s;
}

.triple-cards .info-card.reveal.reveal--shown:nth-child(1) {
  animation-delay: 0s;
}
.triple-cards .info-card.reveal.reveal--shown:nth-child(2) {
  animation-delay: 0.1s;
}
.triple-cards .info-card.reveal.reveal--shown:nth-child(3) {
  animation-delay: 0.2s;
}

.faq-list .faq-item.reveal.reveal--shown:nth-child(1) {
  animation-delay: 0s;
}
.faq-list .faq-item.reveal.reveal--shown:nth-child(2) {
  animation-delay: 0.05s;
}
.faq-list .faq-item.reveal.reveal--shown:nth-child(3) {
  animation-delay: 0.1s;
}
.faq-list .faq-item.reveal.reveal--shown:nth-child(4) {
  animation-delay: 0.15s;
}
.faq-list .faq-item.reveal.reveal--shown:nth-child(5) {
  animation-delay: 0.2s;
}
.faq-list .faq-item.reveal.reveal--shown:nth-child(6) {
  animation-delay: 0.25s;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1 !important;
    animation: none !important;
    transform: none !important;
  }
}
