 /* This CSS file is for hover effect on image */

 .hover-scale a {
     transition: all .3s ease;
 }

 .hover-scale a:hover {
    transform: scale(1.5);
 }