/* Minimal animations */
.wow {
  visibility: visible !important;
}
.animateds {
  animation-duration: 1s;
  animation-fill-mode: both;
}
.slideInUp {
  animation-name: slideInUp;
}
@keyframes slideInUp {
  from {
    transform: translate3d(0, 40px, 0);
    opacity: 0;
  }
  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
