.wow {
  opacity: 0;
  visibility: hidden;
}

.wow.animated-complete {
  opacity: 1;
  visibility: visible;
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 50px, 0);
    visibility: hidden;
  }

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

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 50px, 0);
    visibility: hidden;
  }

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

.fadeInUp {
  -webkit-animation-name: fadeInUp;
          animation-name: fadeInUp;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-50px, 0, 0);
    visibility: hidden;
  }

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

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-50px, 0, 0);
    visibility: hidden;
  }

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

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
          animation-name: fadeInLeft;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(50px, 0, 0);
    visibility: hidden;
  }

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

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(50px, 0, 0);
    visibility: hidden;
  }

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

.fadeInRight {
  -webkit-animation-name: fadeInRight;
          animation-name: fadeInRight;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
    visibility: hidden;
  }

  50% {
    opacity: 1;
    visibility: visible;
  }

  to {
    opacity: 1;
    transform: scale3d(1, 1, 1);
    visibility: visible;
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
    visibility: hidden;
  }

  50% {
    opacity: 1;
    visibility: visible;
  }

  to {
    opacity: 1;
    transform: scale3d(1, 1, 1);
    visibility: visible;
  }
}

.zoomIn {
  -webkit-animation-name: zoomIn;
          animation-name: zoomIn;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

@-webkit-keyframes slideInUp {
  from {
    transform: translate3d(0, 100%, 0);
    visibility: hidden;
    opacity: 0;
  }

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

@keyframes slideInUp {
  from {
    transform: translate3d(0, 100%, 0);
    visibility: hidden;
    opacity: 0;
  }

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

.slideInUp {
  -webkit-animation-name: slideInUp;
          animation-name: slideInUp;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

@-webkit-keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
    visibility: hidden;
  }

  20% {
    transform: scale3d(1.1, 1.1, 1.1);
    visibility: visible;
  }

  40% {
    transform: scale3d(0.9, 0.9, 0.9);
  }

  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    transform: scale3d(0.97, 0.97, 0.97);
  }

  to {
    opacity: 1;
    transform: scale3d(1, 1, 1);
    visibility: visible;
  }
}

@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
    visibility: hidden;
  }

  20% {
    transform: scale3d(1.1, 1.1, 1.1);
    visibility: visible;
  }

  40% {
    transform: scale3d(0.9, 0.9, 0.9);
  }

  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    transform: scale3d(0.97, 0.97, 0.97);
  }

  to {
    opacity: 1;
    transform: scale3d(1, 1, 1);
    visibility: visible;
  }
}

.bounceIn {
  -webkit-animation-name: bounceIn;
          animation-name: bounceIn;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

@-webkit-keyframes flipInX {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
    opacity: 0;
    visibility: hidden;
  }

  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
    visibility: visible;
  }

  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }

  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }

  to {
    transform: perspective(400px);
    opacity: 1;
    visibility: visible;
  }
}

@keyframes flipInX {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
    opacity: 0;
    visibility: hidden;
  }

  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
    visibility: visible;
  }

  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }

  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }

  to {
    transform: perspective(400px);
    opacity: 1;
    visibility: visible;
  }
}

.flipInX {
  -webkit-animation-name: flipInX;
          animation-name: flipInX;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-backface-visibility: visible;
          backface-visibility: visible;
}

@-webkit-keyframes lightSpeedIn {
  from {
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
    visibility: hidden;
  }

  60% {
    transform: skewX(20deg);
    opacity: 1;
    visibility: visible;
  }

  80% {
    transform: skewX(-5deg);
    opacity: 1;
  }

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

@keyframes lightSpeedIn {
  from {
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
    visibility: hidden;
  }

  60% {
    transform: skewX(20deg);
    opacity: 1;
    visibility: visible;
  }

  80% {
    transform: skewX(-5deg);
    opacity: 1;
  }

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

.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
          animation-name: lightSpeedIn;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

@-webkit-keyframes rollIn {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    visibility: hidden;
  }

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

@keyframes rollIn {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    visibility: hidden;
  }

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

.rollIn {
  -webkit-animation-name: rollIn;
          animation-name: rollIn;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.delay-1s {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

.delay-2s {
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}

.delay-3s {
  -webkit-animation-delay: 3s;
          animation-delay: 3s;
}

.delay-4s {
  -webkit-animation-delay: 4s;
          animation-delay: 4s;
}

.delay-5s {
  -webkit-animation-delay: 5s;
          animation-delay: 5s;
}

.duration-1s {
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
}

.duration-2s {
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
}

.duration-3s {
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
}

.duration-4s {
  -webkit-animation-duration: 4s;
          animation-duration: 4s;
}

.duration-5s {
  -webkit-animation-duration: 5s;
          animation-duration: 5s;
}

.infinite {
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}

.reverse {
  animation-direction: reverse;
}

.alternate {
  -webkit-animation-direction: alternate;
          animation-direction: alternate;
}

.ease-linear {
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
}

.ease-ease {
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
}

.ease-ease-in {
  -webkit-animation-timing-function: ease-in;
          animation-timing-function: ease-in;
}

.ease-ease-out {
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
}

.ease-ease-in-out {
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
}

@media (max-width: 768px) {
  .wow.fadeInUp,
  .wow.fadeInLeft,
  .wow.fadeInRight {
    -webkit-animation-duration: 0.6s;
            animation-duration: 0.6s;
  }

  .wow.bounceIn,
  .wow.flipInX,
  .wow.lightSpeedIn,
  .wow.rollIn {
    -webkit-animation: none;
            animation: none;
    opacity: 1;
    transform: none;
  }
}

