.grid-gallery {
  width: 100%; 
  /* max-width: 90%; */
  margin: 0 auto;
  /* padding: 50px 20px; */ 
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-auto-rows: 250px;
  grid-auto-flow: dense;
  grid-gap: 20px;
}

.grid-gallery .grid-item {
  position: relative;
  background-color: #efefef;
  overflow: hidden;
}

.grid-gallery .grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.grid-gallery .grid-item:hover img {
  transform: scale(1.1);
}

.grid-gallery .grid-item a {
  cursor: zoom-in;
}

.grid-gallery .grid-item:nth-child(3n - 2) {
  grid-column: span 2;
  grid-row: span 2;
}
.gallery_section{
  margin-top: 3em;
}
.mt-2{
  margin-top: 2em;
}
.lightboxOverlay{
  width: 100% !important;
}
.lb-data .lb-close{
  position: relative;
  top: -39rem;
  right: -1rem;
}
.footer_icon_img a{
  text-decoration: none !important;
  border: 0px solid red;
  color: black;
  display: table;
  overflow: hidden;
  padding-top: 5px;
}
.proejctLink_right p{
  font-family: Montserrat;
}
.proejctLink_right h3{
  font-family: Montserrat;
}



/* Let's make it responsive */
@media (max-width: 768px) {
  .grid-gallery {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-auto-rows: 250px;
  }

  .grid-gallery .grid-item:nth-child(3n - 2) {
    grid-column: unset;
    grid-row: unset;
  }
}
