.has-scroll-reveal { opacity: 0; animation-play-state: paused; }

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .has-scroll-reveal { opacity: 1; animation-play-state: running; }
}

.animated {
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
    animation-play-state: running;
}
.anim_delay1{
   -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s
}
.anim_delay2{
   -webkit-animation-delay: 0.6s;
  animation-delay: : 0.6s;
}
.anim_delay3{
   -webkit-animation-delay: 0.9s;
  animation-delay: : 0.9s;
}
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}
.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}
.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}
.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}
.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate(0, 5vh);
    transform: translate(0, 5vh);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes slideInLeft {
  from {
    -webkit-transform: translate(10vw, 0);
    transform: translate(10vw, 0);
  }

  to {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate(5vw, 0);
    transform: translate(5vw, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes slideInRight {
  from {
    -webkit-transform: translate(-10vw, 0);
    transform: translate3d(-10vw, 0);
  }

  to {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate(-5vw, 0);
    transform: translate(-5vw, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes blink{
  0%{opacity: 1;}
  50%{opacity: 0;}
  100%{opacity: 1;}
}
@keyframes slideLeft{
  from{left: 5%; opacity: 1;}
  to{left: -100vw; opacity: 0;}
}
@keyframes slideRight{
  from{left: 100vw; opacity: 0;}
  to{left: 5%; opacity: 1;}
}
@keyframes bg_move {
  from{
    background-position: 1719.9px;
  }
  to{
    background-position: 0;
  }
}
@keyframes bg_move_mobile {
  from{
    background-position: 1146.6px;
  }
  to{
    background-position: 0;
  }
}