
//////////////////////////////
// fadeInDownBig.scss
// @src - https://github.com/daneden/animate.css/blob/master/source/fading_entrances/fadeInDownBig.css
///////////////////////////////

@if da-import("fadeInDownBig") == true {
  @keyframes fadeInDownBig {
    from {
      opacity: 0;
      transform: translate3d(0, -2000px, 0);
    }

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