/* --------------------
		animation
-------------------- */
header {
  -webkit-animation: fadeIn 0.5s ease 0.5s forwards;
          animation: fadeIn 0.5s ease 0.5s forwards;
  opacity: 0;
  z-index: 10;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.--delay {
  transition-delay: 1.1s !important;
}

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

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

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