.fadeInUp0_8sec {
  -webkit-animation-delay: 0.2s !important;
  -moz-animation-delay: 0.2s !important;
  animation-delay: 0.2s !important;
  -webkit-animation-name: fadeInUp !important;
  animation-name: fadeInUp !important;
  -webkit-animation-duration: 0.6s !important;
  animation-duration: 0.6s !important;
  -webkit-animation-fill-mode: both !important;
  animation-fill-mode: both !important;
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0 !important;
    -webkit-transform: translate3d(0, 20px, 0) !important;
    transform: translate3d(0, 20px, 0) !important;
  }

  to {
    opacity: 1 !important;
    -webkit-transform: none !important;
    transform: none !important;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 20px, 0) !important;
    transform: translate3d(0, 20px, 0) !important;
  }

  to {
    opacity: 1;
    -webkit-transform: none !important;
    transform: none !important;
  }
}

/* Scale */

.scale-02sec {
  -webkit-animation-delay: 0.2s !important;
  -moz-animation-delay: 0.2s !important;
  animation-delay: 0.2s !important;
  -webkit-animation-name: scale !important;
  animation-name: scale !important;
  -webkit-animation-duration: 0.3s !important;
  animation-duration: 0.3s !important;
  -webkit-animation-fill-mode: both !important;
  animation-fill-mode: both !important;
}

@-webkit-keyframes scale {
  from {
    opacity: 0 !important;
    transform: scale(0) !important;
  }

  to {
    opacity: 1 !important;
    transform: scale(1) !important;
  }
}
@keyframes scale {
  from {
    opacity: 0 !important;
    transform: scale(0) !important;
  }

  to {
    opacity: 1 !important;
    transform: scale(1) !important;
  }
}
