.fadeInUp.wpb_animate_when_almost_visible {
  filter: unset !important;
  opacity: 0;
}

.fadeInUp.wpb_start_animation {
  filter: unset !important;
  animation-name: welcomeFadeIn, welcomeMoveIn !important;
  -webkit-animation-duration: 0.9s, 0.7s !important;
  animation-duration: 0.9s, 0.7s !important;
  animation-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both !important;
  animation-delay: 0s !important;
}

@keyframes welcomeFadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes welcomeMoveIn {
  0% {
    transform: translateY(30px);
  }
  100% {
    transform: translateY(0);
  }
}
