.gallery-section {
  position: relative;
  padding: 3rem 0;
}

.gallery-section .ornament-1 {
  position: absolute;
  left: 10%;
  bottom: 3rem;
  height: 480px;
}

@media (max-width: 991px) {
  .gallery-section .ornament-1 {
    height: 280px;
  }
}

@media (max-width: 767px) {
  .gallery-section .ornament-1 {
    height: auto;
    left: 0;
    width: 100%;
  }
}

.gallery-section #zoom-gallery-default {
  width: 100%;
  position: relative;
  display: grid;
  gap: 5px;
}

@media (max-width: 767px) {
  .gallery-section #zoom-gallery-default {
    padding: 0;
  }
}

.gallery-section #zoom-gallery-default a {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 3/4;
}

.gallery-section #zoom-gallery-default a.grid-lg-default {
  grid-column: span 2;
  height: 280px;
  aspect-ratio: unset;
}

@media (max-width: 991px) {
  .gallery-section #zoom-gallery-default a.grid-lg-default {
    height: 170px;
  }
}

@media (max-width: 767px) {
  .gallery-section #zoom-gallery-default a.grid-lg-default {
    height: 50px;
  }
}

.gallery-section #zoom-gallery-default a::before {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: transparent;
  z-index: 2;
  transition: all 0.5s ease-in-out;
}

.gallery-section #zoom-gallery-default a::after {
  position: absolute;
  font-family: "Font Awesome 6 Free";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: "+";
  transition: all 0.4s ease-in-out;
  color: #f4f4f4;
  padding: 2px 8px;
  font-size: 20px;
  border-radius: 1000px;
  font-weight: 700;
  border: solid 2px #f4f4f4;
  opacity: 0;
  z-index: 3;
}

.gallery-section #zoom-gallery-default a:hover::before {
  background-color: rgba(8, 8, 8, 0.3647058824);
}

.gallery-section #zoom-gallery-default a:hover::after {
  opacity: 1;
}

.gallery-section #zoom-gallery-default .photo {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  position: relative;
}