@charset "UTF-8";

/* Base classes for WOW.js */
.animated {
  animation-duration: 0,6s;
  animation-fill-mode: both;
}

/* Initial state controlled by WOW.js */
.wow {
  visibility: hidden;
}

/* Animations used in your HTML: .fadeIn and .fadeInRight */

/* FADE IN (used for h1, logos, footer, team items) */
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fadeIn {
  animation-name: fadeIn;
}

/* FADE IN RIGHT (used for the countdown timer) */
@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
/* Note: Original code includes vendor prefixes (-webkit-, -ms-) for wider compatibility.
   I've kept only the standard CSS version as modern browsers support it, but for maximum
   safety (since you included them), the full code (minified below) is best. */
.fadeInRight {
  animation-name: fadeInRight;
}