
   /*! div style */
  .image-gallery {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(200px, 1fr));
    justify-content: center;
    padding: 0px;
  }

  .box {
      flex-basis: 25%;
      width: 100%;
      padding: 0px;
      margin: 0px;
  }

  .img-gallery {
	width: 100%;
  height: 200px;
	object-fit: contain;
  transform: scale(1);
  transition: all 0.3s ease-in-out;
  }
