/* ====================================================================
   FadeIn
===================================================================== */

/* make keyframes that tell the start state and the end state of our object */
@-webkit-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@-moz-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@-o-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
 
.fade-in {
    opacity:0;  /* make things invisible upon start */
    -webkit-animation:fadeIn ease-in 1;  /* call our keyframe named fadeIn, use animattion ease-in and repeat it only 1 time */
    -moz-animation:fadeIn ease-in 1;
	-o-animation:fadeIn ease-in 1;
    animation:fadeIn ease-in 1;
 
    -webkit-animation-fill-mode:forwards;  /* this makes sure that after animation is done we remain at the last keyframe value (opacity: 1)*/
    -moz-animation-fill-mode:forwards;
	-o-animation-fill-mode:forwards;
    animation-fill-mode:forwards;
 
    -webkit-animation-duration:1.15s;
    -moz-animation-duration:1.15s;
	-o-animation-duration:1.15s;
    animation-duration:1.15s;
}
 
.fade-in.one {
-webkit-animation-delay: 1.11s;
-moz-animation-delay: 1.11s;
-o-animation-delay: 1.11s;
animation-delay: 1.11s;
}
 
.fade-in.two {
-webkit-animation-delay: 1.14s;
-moz-animation-delay:1.14s;
-o-animation-delay: 1.14s;
animation-delay: 1.14s;
}
 
.fade-in.three {
-webkit-animation-delay: 2.11s;
-moz-animation-delay: 2.11s;
-o-animation-delay: 2.11s;
animation-delay: 2.11s;
}