
/*! Animate.css - Simplified subset */
.wow { visibility: hidden; }
.animated { animation-duration: 1s; animation-fill-mode: both; visibility: visible !important; }
@keyframes fadeInUp {
  from { transform: translate3d(0, 40px, 0); opacity: 0; }
  to { transform: translate3d(0, 0, 0); opacity: 1; }
}
.fadeInUp { animation-name: fadeInUp; }
@keyframes zoomIn {
  from { opacity: 0; transform: scale3d(0.3, 0.3, 0.3); }
  50% { opacity: 1; }
}
.zoomIn { animation-name: zoomIn; }
