.gallery-with-lightbox .container {
  /* display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  justify-items: center;
  grid-gap: 0; */
  display: grid;
  /* grid-template-columns: repeat(auto-fill, minmax(50%, 1fr)); */
  justify-items: center;
  /* grid-template-columns: 1fr 1fr; */
  grid-template-columns:1fr 1fr 1fr;
  /* grid-template-rows: 1fr 1fr 1fr 1fr 1fr 1fr; */
  /* grid-gap: 5px; */
  gap: 5px 5px;
}

.gallery-with-lightbox .item {
  width: 100%;
  overflow: hidden;
  background: #000;
}

.gallery-with-lightbox img {
  opacity: 0.6;
  width: 100%;
  height: 100%;
  transform: scale(1.15);
  transition: transform 0.5s, opacity 0.5s;
}

.gallery-with-lightbox img:hover {
  opacity: 1;
  transform: scale(1.03);
}