.zoom-effect {
    transition: all .2s ease-in-out;
    -webkit-transition: all .2s ease-in-out ;
    -moz-transition: all .2s ease-in-out ;
}

.zoom-effect:hover {
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
}