@keyframes pendulum {
  0% {
    transform: rotate(0);
  }
  25% {
    transform: rotate(5deg);
  }
  75% {
    transform: rotate(-5deg);
  }
  100% {
    transform: rotate(0);
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.effectFadein {
  opacity: 0;
}
.effectFadein.is-active {
  animation-name: fadeIn;
  animation-duration: 1s;
  animation-timing-function: ease-out;
  animation-delay: 0.3s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
}
.effectFadein:nth-child(1) {
  animation-delay: 0.5s;
}
.effectFadein:nth-child(2) {
  animation-delay: 0.8s;
}
.effectFadein:nth-child(3) {
  animation-delay: 1.1s;
}

@keyframes UP {
  0% {
    transform: scale(1, 1);
  }
  100% {
    transform: scale(1.3, 1.3);
  }
}
@keyframes zoom-in-anim {
  0% {
    transform: scale(0.8);
    transition: all 0.5s;
  }
  100% {
    transform: scale(1);
    transition: all 0.5s;
  }
}
@keyframes slideUP {
  0% {
    opacity: 0;
    transform: translateY(-50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}
@keyframes slideDOWN {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}
@keyframes figLeft {
  0% {
    opacity: 0;
    transform: translateX(100%);
  }
  70% {
    opacity: 0;
    transform: translateX(30px) skewX(-25deg);
  }
  100% {
    opacity: 0.8;
    transform: translateX(0) skewX(-25deg);
  }
}
@keyframes slideLeft {
  0% {
    opacity: 0;
    transform: translateX(-100%);
  }
  70% {
    opacity: 0;
    transform: translateX(30px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.effectBox {
  opacity: 0;
  transform: translateY(50px);
}

.effectBox.action:first-child {
  animation: slideUP 0.4s ease-out 0s 1 forwards;
}
.effectBox.action:nth-child(2) {
  animation: slideUP 0.4s ease-out 0.5s 1 forwards;
}
.effectBox.action:nth-child(3) {
  animation: slideUP 0.4s ease-out 1s 1 forwards;
}
.effectBox.action:nth-child(4) {
  animation: slideUP 0.4s ease-out 1.5s 1 forwards;
}
.effectBox.action:nth-child(5) {
  animation: slideUP 0.4s ease-out 1.8s 1 forwards;
}
.effectBox.action:nth-child(6) {
  animation: slideUP 0.4s ease-out 2.1s 1 forwards;
}
.effectBox.action:nth-child(8) {
  animation: slideUP 0.4s ease-out 2.4s 1 forwards;
}

@media screen and (max-width: 768px) {
  .effect_pendulum.is-active {
    animation: none !important;
  }
  .effectFadein {
    opacity: 1;
  }
  .effectFadein:nth-child(1) {
    animation: none;
  }
  .effectFadein:nth-child(2) {
    animation: none;
  }
  .effectFadein:nth-child(3) {
    animation: none;
  }
  .effectBox {
    opacity: 1;
  }
  .effectBox.action {
    animation: none;
    transform: none;
  }
  .effectBox.action:first-child, .effectBox.action:nth-child(2), .effectBox.action:nth-child(3), .effectBox.action:nth-child(4), .effectBox.action:nth-child(5), .effectBox.action:nth-child(6) {
    animation: none;
    transform: none;
  }
}/*# sourceMappingURL=animation.css.map */