@import './animate.scss'; 

@keyframes fadeInRightBig {
  from {
    opacity: 0;
    transform: translateX(2000px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@mixin fadeInRightBig($args...) {
  @include animate(fadeInRightBig, $args...);
}


