/*---------------animation mixin-------------------------------------------------- */
/*---------------animation mixin-------------------------------------------------- */
/*---Example-----------------------
 *
 * @include keyframes(fade) {
 *   0%   { opacity: 0; }
 *   100% { opacity: 1; }
 * }
 *
 * .box {
 *   width: 200px;
 *   height: 200px;
 *   background-color: blue;
 *
 *   @include animation(fade 5s infinite); 
 *
 * }
 *
 * ----------------------- */
@keyframes scrollMove {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes introOpc {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}



/*# sourceMappingURL=maps/loading.css.map */
