.zoom {
  
    transition: transform .2s;
    height: 80px;
    width: 70px;
    margin: 0 auto;
    position: relative;
  }
  
  .zoom:hover {
    -ms-transform: scale(3.5); /* IE 9 */
    -webkit-transform: scale(3.5); /* Safari 3-8 */
    transform: scale(3.5); 
    z-index: 1; /* Bring the hovered image to the top */
  }
  
/* Global form label color */
.form-label,
.col-form-label {
  color: #000000 !important;
}