.gallery-img {
  transition: transform 0.3s ease;
  /* add a transition effect for the zoom */
  transform-origin: center;
  /* set the origin for the transformation to the center of the element */
}


.gallery-img:hover {
  transform: scale(1.1);
  /* scale the element up by 20% on hover */
  cursor: pointer;
}

.bni-sticky {
  position: -webkit-sticky;
  /* for Safari */
  position: fixed;
  z-index: 999;
  top: 0;
  background-color: white;
}

a:hover {
  text-decoration: none;
  /* color: aqua; */
}
.breadcrumbs h2 {
  color: aliceblue;
}


.breadcrumbs {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  padding: 70px 0;
  z-index: 10;
  display: block;
}

.breadcrumbs::before {
  background: rgba(0, 0, 0, 0.534);
  opacity: 0.6;  
}

.overlay::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.8;
  background: #015273;
  content: "";
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  transition: all 0.4s ease;
  z-index: 1;
}





.h2-custom
{
  font-family: "Poppins", serif;
  line-height: 1.22em;
  margin-bottom: 10px;
  font-weight: 600;
  font-size: 36px;
}

/* .breadcrumbs .bread-menu:before {
  content: "";
  position: absolute;
  top: 50%;
  width: 32px;
  height: 5px;
  left: 0;
  background: #b59a4c;
  margin-top: -2.5px;
} */