.gallery-section .gal {
  -moz-column-count: 4;
  column-count: 4;
}
.gallery-section .gal img {
  height: auto;
  min-height: 250px;
}
.gallery-section .gal img,
.gallery-section .img-hover-zoom {
  border-radius: 5px;
}
.gallery-section ul {
  border-bottom: 1px solid #A4A4A4;
}
.gallery-section .nav-pills .nav-link {
  padding: 10px 20px;
  color: #A7A7A7;
  background-color: transparent;
  font-size: 18px;
  text-transform: capitalize;
  font-family: "Inter-Medium";
  position: relative;
}
.gallery-section p {
  font-family: "Inter-Medium";
}
.gallery-section .nav-link.active::before {
  content: "";
  background: #F9AA1C;
  height: 3px;
  width: 100%;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  bottom: -2px;
  border-radius: 5px;
}
.gallery-section .nav-pills .nav-link.active,
.gallery-section .nav-pills .show > .nav-link,
.gallery-section .nav-pills .nav-link.active:hover {
  color: #008B9F;
}
.gallery-section .img-hover-zoom {
  margin-bottom: 10px;
  overflow: hidden;
}
.gallery-section .img-hover-zoom img {
  transition: transform 0.5s ease;
}
.gallery-section .img-hover-zoom--zoom-n-rotate img {
  transition: transform 0.5s ease-in-out;
}
.gallery-section .img-hover-zoom--zoom-n-rotate:hover img {
  transform: scale(1.6) rotate(25deg);
}
.gallery-section .btn-close {
  position: absolute;
  right: 10px;
  top: 10px;
  color: #fff;
  filter: brightness(0) invert(1);
  z-index: 2;
}
@media (max-width: 769px) {
  .gallery-section .gal {
    /* Chrome, Safari, Opera */
    -moz-column-count: 1;
    /* Firefox */
    column-count: 1;
  }
}
