.custom-gallery {
  display: grid;
  gap: 20px;
}
.custom-gallery .image-title {
  font-size: 13px;
  text-align: center;
}
.custom-gallery .gallery-item {
  cursor: pointer;
}

.grid-layount6x2 {
  grid-template-columns: repeat(6, 1fr);
}
@media (max-width: 700px) {
  .grid-layount6x2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.grid-layout5x2 {
  grid-template-columns: repeat(5, 1fr);
}
@media (max-width: 700px) {
  .grid-layout5x2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.grid-layout4x2 {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 700px) {
  .grid-layout4x2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.grid-layout3x2 {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 700px) {
  .grid-layout3x2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.grid-layout1x1-hide-rest:hover {
  transform: translateY(3px);
}

.grid-layout1x1-hide-rest {
  transition: 0.3s ease-in-out;
  grid-template-columns: repeat(1, 1fr);
}
@media (max-width: 700px) {
  .grid-layout1x1-hide-rest {
    grid-template-columns: repeat(1, 1fr);
  }
}
.grid-layout1x1-hide-rest .gallery-item {
  display: none;
}
.grid-layout1x1-hide-rest .gallery-item:first-of-type {
  display: block;
}

.max100 img {
  max-height: 100px;
  -o-object-fit: cover;
     object-fit: cover;
}

.max150 img {
  max-height: 150px;
  -o-object-fit: cover;
     object-fit: cover;
}

.max200 img {
  max-height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}

.slick-lightbox {
  border-radius: 20px !important;
  overflow: hidden;
}

#lightbox.single-lightbox-wrapper {
  padding: 5% 10%;
}
@media (max-width: 700px) {
  #lightbox.single-lightbox-wrapper {
    padding: 5% 0%;
  }
}
#lightbox.single-lightbox-wrapper .my-image-div {
  height: 75vh;
  width: 75vw;
}
@media (max-width: 700px) {
  #lightbox.single-lightbox-wrapper .my-image-div {
    width: 90vw;
    height: 35vh;
  }
}

#lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5% 20% 0% 20%;
}
@media (max-width: 700px) {
  #lightbox {
    padding: 5% 3%;
  }
}
#lightbox .zoom-wrapper {
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 40px;
  padding-top: 40px;
}
#lightbox .slide-wrapper {
  position: relative;
}
#lightbox .zoom-icon {
  position: absolute;
  bottom: 80px;
  right: 0;
  left: 0;
  margin-right: auto;
  margin-left: auto;
  z-index: 10;
  border-radius: 50%;
  padding: 5px 8px;
  font-size: 18px;
  pointer-events: none;
  background-image: url("../svg/magnifier.svg");
  height: 20px;
  width: 20px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.inner-slide-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.inner-slide-wrap img {
  max-width: 90%;
  max-height: 90vh;
  width: auto;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}

.custom-arrow {
  width: 60px;
  height: 60px;
}

.custom-prev img {
  transform: rotate(180deg);
}

.custom-prev, .custom-next {
  position: absolute;
  top: 50%;
  transform: translateY(-30px);
  z-index: 9999;
  cursor: pointer;
  font-weight: bold;
  font-size: 30px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.my-image-div {
  height: 65vh;
  width: 640px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 0px;
}
@media (max-width: 700px) {
  .my-image-div {
    width: 80vw;
    height: 65vh;
  }
}

.custom-prev {
  right: -30px;
}

.closeBtn {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 15px;
  left: 10px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  z-index: 9999;
  cursor: pointer;
}

.custom-next {
  left: -30px;
}

.image-title-inside {
  width: 100%;
  text-align: center;
  position: absolute;
  bottom: 0px;
  padding-bottom: 10px;
  padding-top: 10px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 20px;
}

.masonry-gallery {
  margin-left: -10px; /* half of gutter for balance */
  margin-right: -10px;
}
.masonry-gallery .gallery-item {
  width: calc(33.33% - 20px); /* leave room for the gap */
  box-sizing: border-box;
  margin-bottom: 20px;
  border-radius: 3px;
  overflow: hidden;
}
@media (max-width: 700px) {
  .masonry-gallery .gallery-item {
    width: calc(50% - 20px); /* leave room for the gap */
  }
}

.nr-single-image-card {
  overflow: hidden;
  position: relative;
  border-radius: 2px; /* optional: adds soft corners */
}

.nr-single-image-card img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
  display: block;
  height: 250px !important;
}
@media (min-width: 700px) and (max-width: 1100px) {
  .nr-single-image-card img {
    height: 200px !important;
  }
}
@media (max-width: 700px) {
  .nr-single-image-card img {
    height: 125px !important;
  }
}

.nr-single-image-card:hover img {
  transform: scale(1.01);
  cursor: pointer;
}

.single-lightbox {
  border-radius: 20px !important;
  overflow: hidden;
}
.single-lightbox .zoom-wrapper {
  padding-top: 0px !important;
  padding-bottom: 0px !important;
}

.carousel-wrapper.single-lightbox .my-image-div {
  height: 55vh;
  background-size: cover;
}
@media (max-width: 700px) {
  .carousel-wrapper.single-lightbox .my-image-div {
    height: 30vh;
  }
}/*# sourceMappingURL=custom.css.map */