### About the animation class 
Find below the explanation of the existing classes and its usage 


.bounceIn { 
     animation: bounceIn 2s ease-in 1;
 }
 .bounceOut { 
    animation: bounceOut 2s ease-in 1;
}
.lateralMoveHorrizontalInfinte {
    animation: lateralMoveHorrizontal 4s ease-in infinite;
}
.lateralMoveVerticalInfinte {
    animation: lateralMoveVertical 4s ease-in infinite;
}
.scaleExpand{ 
    animation: scaleExpand 0.4s ease-in 1;
}
.hoverExpand:hover { 
    animation: scaleExpand, elevate 0.4s ease-in 1;
}
.rotate { 
    animation: rotate 0.4s ease-in infinite; 
}
.imageBounceIn { 
    animation: imagebounceIn 4s ease-in 1; 
}