/* Add here all your CSS customizations */
.zoom-img {
    transition: transform .2s;
  }
.zoom-img:hover{
    -ms-transform: scale(1.1); /* IE 9 */
  -webkit-transform: scale(1.1); /* Safari 3-8 */
  transform: scale(1.1); 
}