.gallery-section .row .col-lg-4 .total-div {
    opacity:0;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  height: 390px;
  cursor: pointer;
  transition: 0.5s;
  transform: scale(1);
  box-shadow: rgba(255, 255, 255, 0.1) 0px 1px 1px 0px inset,
    rgba(50, 50, 93, 0.25) 0px 50px 100px -20px,
    rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}
.gallery-section .row .col-lg-4 .total-div img {
  height: 390px;

}


.gallery-section .row .col-lg-4 .total-div div {
  position: absolute;
  /* top: 100%; */
  top: 0;
  bottom: 0;
  /* left: 100%; */
  left: 0;
  right: 0;
  width: 100%;
  height: 390px;
  border-radius: 10px;
  transform: scale(0);
  transform-origin: center;
  background-color: rgba(66, 63, 63, 0.612);
  transition: 0.5s;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
}
.gallery-section .row .col-lg-4 .total-div:hover div {
  /* top:0;
    left: 0; */
  transform: scale(1);
  opacity: 1;
  color: var(--color-light);
}

/* .gallery-section .row .col-lg-4 .total-div div p {
  color: var(--color-light);
  transition: 0.5s;
}
.gallery-section .row .col-lg-4 .total-div div p:hover {
  color: var(--color-primary);
} */


.gallery-banner {
  height: 50vh;
  background-image: url("../Images/Banner/1.jpg");
  background-position: center;
  background-size: cover;
  color: var(--color-light);
  position: relative;
}