.up {

animation: fadeInUp; /* referring directly to the animation's @keyframe declaration */
animation-duration: 2s; /* don't forget to set a duration! */
}


.fadein { 

animation: fadeIn; /* referring directly to the animation's @keyframe declaration */
animation-duration: 2s; /* don't forget to set a duration! */

}


.slideInUp {

animation: slideInUp; /* referring directly to the animation's @keyframe declaration */
animation-duration: 2s; /* don't forget to set a duration! */

}



.pulse {
animation: pulse; /* referring directly to the animation's @keyframe declaration */
animation-duration: 2s; /* don't forget to set a duration! */

}


.zoomIn {
animation: zoomIn; /* referring directly to the animation's @keyframe declaration */
animation-duration: 2s; /* don't forget to set a duration! */
}



.heartBeat {
animation: heartBeat; /* referring directly to the animation's @keyframe declaration */
animation-duration: 2s; /* don't forget to set a duration! */    
}



.slideInLeft {
animation: slideInLeft; /* referring directly to the animation's @keyframe declaration */
animation-duration: 1s; /* don't forget to set a duration! */    
}



.slideInRight {
animation: slideInRight; /* referring directly to the animation's @keyframe declaration */
animation-duration: 2s; /* don't forget to set a duration! */    
}


.Down {

animation: Down; /* referring directly to the animation's @keyframe declaration */
animation-duration: 1s; /* don't forget to set a duration! */    

}

.fadeInDown { 
	animation: fadeInDown;
animation-duration: 2s;
    


}