@charset "UTF-8";
.sa,
.ssa {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  opacity: 0;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}

.sa.show {
  opacity: 1;
  -webkit-transform: none;
          transform: none;
}

.d_100ms {
  animation-delay: 100ms !important;
}
.d_200ms {
  animation-delay: 200ms !important;
}
.d_300ms {
  animation-delay: 300ms !important;
}
.d_400ms {
  animation-delay: 400ms !important;
}
.d_500ms {
  animation-delay: 500ms !important;
}
.d_600ms {
  animation-delay: 600ms !important;
}
.sa-in.show {
  animation-name: sa-fade-in;
  animation-duration: 800ms;
  animation-delay: 50ms;
  animation-timing-function: ease;
  animation-fill-mode: both;
}
.sa-up.show {
  animation-name: sa-fade-up;
  animation-duration: 800ms;
  animation-delay: 50ms;
  animation-timing-function: ease;
  animation-fill-mode: both;
}
.sa-left.show {
  animation-name: sa-fade-left;
  animation-duration: 800ms;
  animation-delay: 50ms;
  animation-timing-function: ease;
  animation-fill-mode: both;
}
.sa-right.show {
  animation-name: sa-fade-right;
  animation-duration: 800ms;
  animation-delay: 50ms;
  animation-timing-function: ease;
  animation-fill-mode: both;
}
.sa-down.show {}
/* sa animation */

@keyframes sa-fade-in {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes sa-fade-up {
  0% {
    opacity: 0;
    transform: translateY(100px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes sa-fade-left {
  0% {
    opacity: 0;
    transform: translateX(100px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes sa-fade-right {
  0% {
    opacity: 0;
    transform: translateX(-100px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/* banner animation */
@keyframes a_type1{

  0% {
    transform: translateY(0px);
  }

  100% {
    transform: translateY(-25px);
  }
}
@keyframes a_type2{

  0% {
    transform: translateY(0px);
  }

  100% {
    transform: translateY(15px);
  }
}
@keyframes a_type3{

  0% {
    transform: translateX(0px);
  }

  100% {
    transform: translateX(25px);
  }
}
@keyframes a_type4{

  0% {
    transform: translateX(0px);
  }

  100% {
    transform: translateX(-25px);
  }
}
@keyframes a_item1 {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    -webkit-transform: scale3d(.9, .9, .9);
    transform: scale3d(.9, .9, .9);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    -webkit-transform: scale3d(.97, .97, .97);
    transform: scale3d(.97, .97, .97);
  }

  100% {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}