.element-animation{
  animation: animationFrames ease 1s;
  animation-iteration-count: 1;
  transform-origin: 50% 50%;
  animation-fill-mode:forwards; /*when the spec is finished*/
  -webkit-animation: animationFrames ease 1s;
  -webkit-animation-iteration-count: 1;
  -webkit-transform-origin: 50% 50%;
  -webkit-animation-fill-mode:forwards; /*Chrome 16+, Safari 4+*/ 
  -moz-animation: animationFrames ease 1s;
  -moz-animation-iteration-count: 1;
  -moz-transform-origin: 50% 50%;
  -moz-animation-fill-mode:forwards; /*FF 5+*/
  -o-animation: animationFrames ease 1s;
  -o-animation-iteration-count: 1;
  -o-transform-origin: 50% 50%;
  -o-animation-fill-mode:forwards; /*Not implemented yet*/
  -ms-animation: animationFrames ease 1s;
  -ms-animation-iteration-count: 1;
  -ms-transform-origin: 50% 50%;
  -ms-animation-fill-mode:forwards; /*IE 10+*/
}

@keyframes animationFrames{
  0% {
    opacity:0;
    transform:  translate(-1500px,0px)  ;
  }
  60% {
    opacity:1;
    transform:  translate(30px,0px)  ;
  }
  80% {
    transform:  translate(-10px,0px)  ;
  }
  100% {
    opacity:1;
    transform:  translate(0px,0px)  ;
  }
}

@-moz-keyframes animationFrames{
  0% {
    opacity:0;
    -moz-transform:  translate(-1500px,0px)  ;
  }
  60% {
    opacity:1;
    -moz-transform:  translate(30px,0px)  ;
  }
  80% {
    -moz-transform:  translate(-10px,0px)  ;
  }
  100% {
    opacity:1;
    -moz-transform:  translate(0px,0px)  ;
  }
}

@-webkit-keyframes animationFrames {
  0% {
    opacity:0;
    -webkit-transform:  translate(-1500px,0px)  ;
  }
  60% {
    opacity:1;
    -webkit-transform:  translate(30px,0px)  ;
  }
  80% {
    -webkit-transform:  translate(-10px,0px)  ;
  }
  100% {
    opacity:1;
    -webkit-transform:  translate(0px,0px)  ;
  }
}

@-o-keyframes animationFrames {
  0% {
    opacity:0;
    -o-transform:  translate(-1500px,0px)  ;
  }
  60% {
    opacity:1;
    -o-transform:  translate(30px,0px)  ;
  }
  80% {
    -o-transform:  translate(-10px,0px)  ;
  }
  100% {
    opacity:1;
    -o-transform:  translate(0px,0px)  ;
  }
}

@-ms-keyframes animationFrames {
  0% {
    opacity:0;
    -ms-transform:  translate(-1500px,0px)  ;
  }
  60% {
    opacity:1;
    -ms-transform:  translate(30px,0px)  ;
  }
  80% {
    -ms-transform:  translate(-10px,0px)  ;
  }
  100% {
    opacity:1;
    -ms-transform:  translate(0px,0px)  ;
  }
}
.counter{
  animation: counterFrames linear .8s;
  animation-iteration-count: 1;
  transform-origin: 50% 50%;
  -webkit-animation: counterFrames linear .8s;
  -webkit-animation-iteration-count: 1;
  -webkit-transform-origin: 50% 50%;
  -moz-animation: counterFrames linear .8s;
  -moz-animation-iteration-count: 1;
  -moz-transform-origin: 50% 50%;
  -o-animation: counterFrames linear .8s;
  -o-animation-iteration-count: 1;
  -o-transform-origin: 50% 50%;
  -ms-animation: counterFrames linear .8s;
  -ms-animation-iteration-count: 1;
  -ms-transform-origin: 50% 50%;
}

@keyframes counterFrames{
  0% {
    transform:  translate(0px,0px)  ;
  }
  15% {
    transform:  translate(0px,-25px)  ;
  }
  30% {
    transform:  translate(0px,0px)  ;
  }
  45% {
    transform:  translate(0px,-15px)  ;
  }
  60% {
    transform:  translate(0px,0px)  ;
  }
  75% {
    transform:  translate(0px,-5px)  ;
  }
  100% {
    transform:  translate(0px,0px)  ;
  }
}

@-moz-keyframes counterFrames{
  0% {
    -moz-transform:  translate(0px,0px)  ;
  }
  15% {
    -moz-transform:  translate(0px,-25px)  ;
  }
  30% {
    -moz-transform:  translate(0px,0px)  ;
  }
  45% {
    -moz-transform:  translate(0px,-15px)  ;
  }
  60% {
    -moz-transform:  translate(0px,0px)  ;
  }
  75% {
    -moz-transform:  translate(0px,-5px)  ;
  }
  100% {
    -moz-transform:  translate(0px,0px)  ;
  }
}

@-webkit-keyframes counterFrames {
  0% {
    -webkit-transform:  translate(0px,0px)  ;
  }
  15% {
    -webkit-transform:  translate(0px,-25px)  ;
  }
  30% {
    -webkit-transform:  translate(0px,0px)  ;
  }
  45% {
    -webkit-transform:  translate(0px,-15px)  ;
  }
  60% {
    -webkit-transform:  translate(0px,0px)  ;
  }
  75% {
    -webkit-transform:  translate(0px,-5px)  ;
  }
  100% {
    -webkit-transform:  translate(0px,0px)  ;
  }
}

@-o-keyframes counterFrames {
  0% {
    -o-transform:  translate(0px,0px)  ;
  }
  15% {
    -o-transform:  translate(0px,-25px)  ;
  }
  30% {
    -o-transform:  translate(0px,0px)  ;
  }
  45% {
    -o-transform:  translate(0px,-15px)  ;
  }
  60% {
    -o-transform:  translate(0px,0px)  ;
  }
  75% {
    -o-transform:  translate(0px,-5px)  ;
  }
  100% {
    -o-transform:  translate(0px,0px)  ;
  }
}

@-ms-keyframes counterFrames {
  0% {
    -ms-transform:  translate(0px,0px)  ;
  }
  15% {
    -ms-transform:  translate(0px,-25px)  ;
  }
  30% {
    -ms-transform:  translate(0px,0px)  ;
  }
  45% {
    -ms-transform:  translate(0px,-15px)  ;
  }
  60% {
    -ms-transform:  translate(0px,0px)  ;
  }
  75% {
    -ms-transform:  translate(0px,-5px)  ;
  }
  100% {
    -ms-transform:  translate(0px,0px)  ;
  }
}






/*/////////////////////////////////////////////////////////Landing page 02 //////////////////////////////////////////////// */
.block02{
  animation: block02Frames linear 0.8s;
  animation-iteration-count: 1;
  transform-origin: 50% 50%;
  -webkit-animation: block02Frames linear 0.8s;
  -webkit-animation-iteration-count: 1;
  -webkit-transform-origin: 50% 50%;
  -moz-animation: block02Frames linear 0.8s;
  -moz-animation-iteration-count: 1;
  -moz-transform-origin: 50% 50%;
  -o-animation: block02Frames linear 0.8s;
  -o-animation-iteration-count: 1;
  -o-transform-origin: 50% 50%;
  -ms-animation: block02Frames linear 0.8s;
  -ms-animation-iteration-count: 1;
  -ms-transform-origin: 50% 50%;
}

@keyframes block02Frames{
  0% {
    transform:  translate(2px,0px)  ;
  }
  15% {
    transform:  translate(2px,-25px)  ;
  }
  30% {
    transform:  translate(2px,0px)  ;
  }
  45% {
    transform:  translate(2px,-15px)  ;
  }
  60% {
    transform:  translate(2px,0px)  ;
  }
  75% {
    transform:  translate(2px,-5px)  ;
  }
  100% {
    transform:  translate(2px,0px)  ;
  }
}

@-moz-keyframes block02Frames{
  0% {
    -moz-transform:  translate(2px,0px)  ;
  }
  15% {
    -moz-transform:  translate(2px,-25px)  ;
  }
  30% {
    -moz-transform:  translate(2px,0px)  ;
  }
  45% {
    -moz-transform:  translate(2px,-15px)  ;
  }
  60% {
    -moz-transform:  translate(2px,0px)  ;
  }
  75% {
    -moz-transform:  translate(2px,-5px)  ;
  }
  100% {
    -moz-transform:  translate(2px,0px)  ;
  }
}

@-webkit-keyframes block02Frames {
  0% {
    -webkit-transform:  translate(2px,0px)  ;
  }
  
  15% {
    -webkit-transform:  translate(2px,-25px)  ;
  }
  30% {
    -webkit-transform:  translate(2px,0px)  ;
  }
  45% {
    -webkit-transform:  translate(2px,-15px)  ;
  }
  60% {
    -webkit-transform:  translate(2px,0px)  ;
  }
  75% {
    -webkit-transform:  translate(2px,-5px)  ;
  }
  100% {
    -webkit-transform:  translate(2px,0px)  ;
  }
}

@-o-keyframes block02Frames {
  0% {
    -o-transform:  translate(2px,0px)  ;
  }
  15% {
    -o-transform:  translate(2px,-25px)  ;
  }
  30% {
    -o-transform:  translate(2px,0px)  ;
  }
  45% {
    -o-transform:  translate(2px,-15px)  ;
  }
  60% {
    -o-transform:  translate(2px,0px)  ;
  }
  75% {
    -o-transform:  translate(2px,-5px)  ;
  }
  100% {
    -o-transform:  translate(2px,0px)  ;
  }
}

@-ms-keyframes block02Frames {
  0% {
    -ms-transform:  translate(2px,0px)  ;
  }
  15% {
    -ms-transform:  translate(2px,-25px)  ;
  }
  30% {
    -ms-transform:  translate(2px,0px)  ;
  }
  45% {
    -ms-transform:  translate(2px,-15px)  ;
  }
  60% {
    -ms-transform:  translate(2px,0px)  ;
  }
  75% {
    -ms-transform:  translate(2px,-5px)  ;
  }
  100% {
    -ms-transform:  translate(2px,0px)  ;
  }
}