@charset "UTF-8";

/* Motion primitives used by wow-shim.js and the current templates. */
.wow {
  visibility: visible;
}

.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

.fadeIn {
  animation-name: contentFadeIn;
}

.fadeInUp {
  animation-name: contentFadeInUp;
}

@keyframes contentFadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes contentFadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 20px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .wow,
  .animated,
  .fadeIn,
  .fadeInUp {
    animation: none;
    opacity: 1;
    transform: none;
  }
}
