@charset "UTF-8";




.animated.hunter_move_right{
  -webkit-animation-name: hunter_move_right;
  -webkit-animation-timing-function: ease-in; 
  -webkit-animation-delay: 0s;
  -webkit-animation-duration: 15s;
  -webkit-animation-direction: normal;
  -webkit-animation-iteration-count: 1;
  -webkit-animation-fill-mode: both;
  -webkit-animation-play-state: running; 

  animation-name: hunter_move_right;
  animation-timing-function: ease-in; 
  animation-delay: 0s;
  animation-duration: 15s;
  animation-direction: normal;
  animation-iteration-count: 1;
  animation-fill-mode: both;
  animation-play-state: running; 
}

@keyframes hunter_move_right {
     from, 0% {
-webkit-transform: translate3d(0, 0px, 0) ;
    transform: translate3d(0, 0px, 0) ;
  }
 
  100% {
-webkit-transform: translate3d(800px, 60px, 0) ;
    transform: translate3d(800px, 60px, 0) ;
  }
}

@-webkit-keyframes hunter_move_right {
     from, 0% {
-webkit-transform: translate3d(0, 0px, 0) ;
    transform: translate3d(0, 0px, 0) ;
  }
 
  100% {
-webkit-transform: translate3d(800px, 60px, 0) ;
    transform: translate3d(800px, 60px, 0) ;
  }
}


.animated.circles_move_left{
  -webkit-animation-name: circles_move_left;
  -webkit-animation-timing-function: ease-out; 
  -webkit-animation-delay: 0s;
  -webkit-animation-duration: 3s;
  -webkit-animation-direction: normal;
  -webkit-animation-iteration-count: 1;
  -webkit-animation-fill-mode: both;
  -webkit-animation-play-state: running; 
  
  animation-name: circles_move_left;
  animation-timing-function: ease-out; 
  animation-delay: 0s;
  animation-duration: 3s;
  animation-direction: normal;
  animation-iteration-count: 1;
  animation-fill-mode: both;
  animation-play-state: running; 
}

@keyframes circles_move_left {
     from, 0% {
-webkit-transform: translate3d(0, 200px, 0) scale(0.2);
    transform: translate3d(0, 200px, 0) scale(0.2);
    right: -100%;
    opacity: 0.4;
  }
 
  100% {
-webkit-transform: translate3d(0px, 0, 0) scale(1);
    transform: translate3d(0px, 0, 0) scale(1);
    right: 30%;
    opacity: 1;
  }
}

@-webkit-keyframes circles_move_left {
     from, 0% {
-webkit-transform: translate3d(0, 200px, 0) scale(0.2);
    transform: translate3d(0, 200px, 0) scale(0.2);
    right: -100%;
    opacity: 0.4;
  }
 
  100% {
-webkit-transform: translate3d(0px, 0, 0) scale(1);
    transform: translate3d(0px, 0, 0) scale(1);
    right: 30%;
    opacity: 1;
  }
}
