/* --------------------
		animation
-------------------- */
.--delay {
  transition-delay: 0.7s !important;
}

.fadein {
  opacity: 0;
  transition: all 1.5s ease 0.3s;
}
.fadein.active {
  opacity: 1;
}

.fadein-up {
  opacity: 0;
  transition: all 0.8s ease 0.3s;
  transform: translateY(10px);
}
.fadein-up.active {
  opacity: 1;
  transform: translateY(0);
}

.fadein-up1 {
  opacity: 0;
  transition: all 0.8s ease 0.3s;
  transform: rotate(5deg) translateY(30px);
}
.fadein-up1.active {
  opacity: 1;
  transform: rotate(5deg) translateY(0);
}

.fadein-up2 {
  opacity: 0;
  transition: all 0.8s ease 0.3s;
  transform: rotate(-5deg) translateY(30px);
}
.fadein-up2.active {
  opacity: 1;
  transform: rotate(-5deg) translateY(0);
}

.scale {
  overflow: hidden;
}
.scale img {
  transform: scale(1.1);
  transition: all 1.5s ease;
}
.scale.active {
  overflow: hidden;
}
.scale.active img {
  transform: scale(1);
}/*# sourceMappingURL=style_animation.css.map */