/* banner section */
.banner-section {
  height: 400px;
  width: 100%;
  background: url(../assets/galler-banner.png) no-repeat center/cover;
  padding-top: 10px;
}
.banner-section h1 {
  text-align: center;
  color: #3ab052;
}
/* Lightbox gallery */
.gallery-section {
  padding-block: 20px;
}
.gallery-section p{
  font-size: 15px;
}
.galleryItem {
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 15px;
  margin-bottom: 15px;
  height: 350px;
  position: relative;
}
.galleryItem::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(78, 78, 78, 0.1);
  backdrop-filter: blur(1px);
  border: 1px solid black;
  display: none;
  transition: opacity 0.3s ease-in-out;
  opacity: 0;
  z-index: 1;
  pointer-events: none;
  border-radius: 8px;
}
.galleryItem img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
  transition: 0.3s ease-in-out;
  border-radius: 10px;
}

.galleryItem:hover img {
  transform: scale(.9);
  cursor: zoom-in;
  transition: all 0.5s ease-in-out;
}

.galleryItem:hover::after {
  display: block !important;
    opacity: 10;
}
#lightBox {
  display: none;
  align-items: center;
  justify-content: center;
  height: 100vh;
  position: fixed;
  left: 0;
  top: 0;
  background: hsla(0, 0%, 0%, 0.902);
  /* backdrop-filter: blur(40px); */
  width: 100%;
  flex-direction: column;
  z-index: 1;
}
#lightBox img {
  width: 90%;
  max-width: 760px;
  height: 85%;
  height: 400px;
  border-radius: 8px;
  -o-object-fit: cover;
  object-fit: contain;
}
#lightBox #close {
  position: absolute;
  top: 20px;
  right: 20%;
  color: #ffffff;
  mix-blend-mode: difference;
  cursor: pointer;
  font-size: 50px;
}
#lightBox #caption {
  color: #fff;
  margin-top: 20px;
  font-size: 1.1em;
  text-align: center;
}
.img-title{
  margin-top: 10px;
  font-size: 14px;
  padding-inline:6px ;
}

@media screen and (max-width:576px) {
  .banner-section{
    height: 150px;
    display: flex;
    justify-content: center;
    /* align-items: center; */
    text-align: start;
  }
  .banner-section h1{
    color: black;
  }
  .gallery-section p{
    width: 100% !important;
  }
}