html,
* { box-sizing: border-box; }
body { background: #fff;  }

/* (B) GALLERY WRAPPER */
.gall {
  /* (B1) GRID LAYOUT - 3 IMAGES PER ROW */
 
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-gap: 0px;
  
  /* (B2) OPTIONAL WIDTH RESTRICT */
  max-width: 100%;
  margin: 0 auto;
}

/* (C) GALLERY IMAGES */
.gall img {
  width: 100%;
  /*height: 350px; /* optional 
  padding: 0px;
  box-shadow: #495CFF 0px 5px 18px -5px;
  border: 1px solid #fff;
  background: #fff;*/
  object-fit: contain;
  position: relative;
}

/* (D) ON SMALL SCREENS - 2 IMAGES PER ROW */
@media only screen and (max-width: 1200px) {
  .gall {
    grid-template-columns: repeat(1, 1fr);
	margin:0px;
  }
}
/* (D) ON SMALL SCREENS - 1 IMAGES PER ROW */
@media only screen and (max-width: 500px) {
  .gall {
    grid-template-columns: repeat(1, 1fr);
  }
}

/* (E) OPTIONAL ZOOM ON HOVER */
.gall img:hover {
 /* z-index: 9;
  transform: scale(0.99);
   linear | ease | ease-in | ease-out | ease-in-out 
  transition: transform ease 0.5s;*/
}
