.js-scroll {
  opacity: 0;
  transition: opacity 500ms;
  will-change: opacity;
}

.js-scroll.scrolled {
  opacity: 1;
}

.delay-random.delay-1 {
  transition-delay: 0.1s !important;
  animation-delay: 0.1s !important;
}

.delay-random.delay-2 {
  transition-delay: 0.2s !important;
  animation-delay: 0.2s !important;
}

.delay-random.delay-3 {
  transition-delay: 0.3s !important;
  animation-delay: 0.3s !important;
}

.scrolled.fade-in {
  animation: fade-in 1s ease-in-out both;
}

.scrolled.fade-in-bottom {
  animation: fade-in-bottom 1s ease-in-out both;
}

.scrolled.slide-left {
  animation: slide-in-left 1s ease-in-out both;
}

.scrolled.slide-right {
  animation: slide-in-right 1s ease-in-out both;
}

/* ----------------------------------------------
     * Generated by Animista on 2021-2-11 23:32:31
     * Licensed under FreeBSD License.
     * See http://animista.net/license for more info. 
     * w: http://animista.net, t: @cssanimista
     * ---------------------------------------------- */

@keyframes slide-in-left {
  0% {
    -webkit-transform: translateX(-100px);
    transform: translateX(-100px);
    opacity: 0;
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slide-in-right {
  0% {
    -webkit-transform: translateX(100px);
    transform: translateX(100px);
    opacity: 0;
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes fade-in-bottom {
  0% {
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
    opacity: 0;
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.no-js .js-scroll {
  opacity: 1;
}

.no-js .scrolled {
  /* animation: none !important; */
  animation-direction: reverse;
}

@media (prefers-reduced-motion) {
  .js-scroll {
    opacity: 1;
  }

  .scrolled {
    animation: none !important;
  }
}
