/* Ease transition hover effect */
.ease { 
transition: all 0.7s ease-in;
transition: all 0.7s ease-out;
}


/* Grow hover effect */
.grow {
transition: all .2s ease-in-out;
}
.grow:hover {
transform: scale(1.1);
}