button.mfp-close {
  background: transparent !important;
}

.rs-gallery {
  display: grid;
}
.rs-gallery .gallery-item {
  cursor: pointer;
}
.rs-gallery .gallery-item .gallery-img {
  position: relative;
}
.rs-gallery .gallery-item .gallery-img .zoom-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: all 0.3s;
  font-size: 24px;
  color: #fff;
}
.rs-gallery .gallery-item .gallery-img:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(12, 18, 33, 0.5);
  opacity: 0;
  transition: all 0.3s;
}
.rs-gallery .gallery-item:hover .gallery-img {
  position: relative;
}
.rs-gallery .gallery-item:hover .gallery-img:before {
  opacity: 1;
}
.rs-gallery .gallery-item:hover .gallery-img .zoom-icon {
  transform: translate(-50%, -50%) scale(1);
}

@media only screen and (max-width: 768px) {
  .rs-gallery {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}/*# sourceMappingURL=gallery.css.map */