@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }
  99.9%, to {
    opacity: 1;
    transform: none;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }
  99.9%, to {
    opacity: 1;
    transform: none;
  }
}
/* animation delay */
.delay-time1 {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

.delay-time2 {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

.delay-time3 {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
}

.delay-time4 {
  -webkit-animation-delay: 1.2s;
  animation-delay: 1.2s;
}

.delay-time5 {
  -webkit-animation-delay: 1.5s;
  animation-delay: 1.5s;
}

.delay-time6 {
  -webkit-animation-delay: 1.8s;
  animation-delay: 1.8s;
}

.delay-time7 {
  -webkit-animation-delay: 2.1s;
  animation-delay: 2.1s;
}

.delay-time8 {
  -webkit-animation-delay: 2.4s;
  animation-delay: 2.4s;
}

.delay-time9 {
  -webkit-animation-delay: 2.7s;
  animation-delay: 2.7s;
}

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

.delay-time11 {
  -webkit-animation-delay: 3.3s;
  animation-delay: 3.3s;
}

.delay-time12 {
  -webkit-animation-delay: 3.6s;
  animation-delay: 3.6s;
}

.delay-time13 {
  -webkit-animation-delay: 3.9s;
  animation-delay: 3.9s;
}

.delay-time14 {
  -webkit-animation-delay: 4.2s;
  animation-delay: 4.2s;
}

.delay-time15 {
  -webkit-animation-delay: 4.5s;
  animation-delay: 4.5s;
}

.delay-time16 {
  -webkit-animation-delay: 4.8s;
  animation-delay: 4.8s;
}

.delay-time17 {
  -webkit-animation-delay: 5.1s;
  animation-delay: 5.1s;
}

/* animation iteration-count */
.count1 {
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}

.count2 {
  -webkit-animation-iteration-count: 2;
  animation-iteration-count: 2;
}

.count3 {
  -webkit-animation-iteration-count: 3;
  animation-iteration-count: 3;
}

.count4 {
  -webkit-animation-iteration-count: 4;
  animation-iteration-count: 4;
}

.count5 {
  -webkit-animation-iteration-count: 5;
  animation-iteration-count: 5;
}

.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
/*# sourceMappingURL=sourcemaps/animation.css.map */