@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  box-sizing: border-box;
  background-color: #f0f0f0;
}
body.no-scroll {
  overflow: hidden; /* ✅ Lock body scroll */
}

.gallerygrid {
  padding: 80px 0;
}
@media (width <= 991px) {
  .gallerygrid {
    padding: 50px 0;
  }
}
.gallerygrid .container {
  width: 100%; /* Responsive width */
  margin: 0 auto; /* Center the container */
  position: relative;
  padding: 0 15px;
}
@media (min-width: 576px) {
  .gallerygrid .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .gallerygrid .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .gallerygrid .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .gallerygrid .container {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  .gallerygrid .container {
    max-width: 1314px; /* Overall width of your masonry grid */
  }
}
.gallerygrid img {
  display: block;
}

.grid {
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0 30px;
}
@media (width <= 991px) {
  .grid {
    gap: 15px 30px;
  }
}
@media (width <= 767px) {
  .grid {
    gap: 15px;
  }
}

.grid-item {
  width: calc(33% - 18px);
  overflow: hidden;
  background-color: black;
  position: relative;
}
@media (width <= 991px) {
  .grid-item {
    width: calc(33% - 18px);
  }
}
@media (width <= 767px) {
  .grid-item {
    width: calc(50% - 8px);
  }
}
.grid-item a {
  position: absolute;
  inset: 0;
}
.grid-item img {
  transform: scale(1);
  transition: all 0.3s ease-in-out;
}
.grid-item .text {
  transition: all 0.3s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: absolute;
  inset: 0;
  opacity: 0;
}
.grid-item .text h6 {
  color: #fff;
  text-align: center;
  font-family: Poppins;
  font-size: 26px;
  font-style: normal;
  font-weight: 600;
  line-height: 44px; /* 169.231% */
  margin: 0;
}
@media (width <= 767px) {
  .grid-item .text h6 {
    font-size: 16px;
    line-height: 25px;
  }
}
.grid-item .text .photos {
  display: flex;
  align-items: center;
  gap: 4px;
}
.grid-item .text .photos img {
  width: 28px;
  height: 28px;
  aspect-ratio: 1/1;
  opacity: 1 !important;
}
@media (width <= 767px) {
  .grid-item .text .photos img {
    width: 16px;
    height: 17px;
  }
}
.grid-item .text .photos span {
  color: #fff;
  text-align: center;
  font-family: Poppins;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
@media (width <= 767px) {
  .grid-item .text .photos span {
    font-size: 15px;
  }
}
.grid-item:hover img {
  opacity: 0.5;
  transform: scale(1.1);
}
.grid-item:hover .text {
  opacity: 1;
}

.grid-item img {
  width: 100%;
  display: block;
  transition: all 0.3s ease-in-out;
}

.popup {
  display: none;
  padding: 40px;
  background: #edf6ff;
  position: fixed;
  opacity: 1;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  max-width: 1314px;
  width: calc(100% - 20px);
  margin: 0 auto;
  z-index: 1;
}
.popup .headingrow {
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
  position: relative;
  margin-bottom: 30px;
}
@media (width <= 767px) {
  .popup .headingrow {
    margin-bottom: 15px;
  }
}
.popup .headingrow h2 {
  color: #000;
  font-family: Poppins;
  font-size: 36px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin: 0;
}
@media (width <= 767px) {
  .popup .headingrow h2 {
    font-size: 25px;
  }
}
.popup .headingrow .close {
  cursor: pointer;
  position: absolute;
  right: 0;
  top: 0;
  display: flex;
  width: 36px;
  height: 36px;
  padding: 8px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  aspect-ratio: 1/1;
  border-radius: 13.423px;
  background: #fff;
}
.popup .popimgouter {
  max-height: 73vh; /* ✅ Restrict height */
  overflow-y: auto; /* ✅ Make popup scrollable */
}
.popup .popimgcontainer {
  display: flex;
  align-items: center;
  align-content: center;
  gap: 30px;
  align-self: stretch;
  flex-wrap: wrap;
}
@media (width <= 767px) {
  .popup .popimgcontainer {
    gap: 10px;
  }
}
.popup .popimgcontainer .img {
  width: calc(25% - 23px);
  height: 250px;
  position: relative;
}
@media (width <= 991px) {
  .popup .popimgcontainer .img {
    height: 140px;
  }
}
@media (width <= 767px) {
  .popup .popimgcontainer .img {
    width: calc(50% - 5px);
  }
}
.popup .popimgcontainer .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.popup .popimgcontainer .img .innerpopup-box {
  position: absolute;
  inset: 0;
}
.popup .popimgcontainer .img .zoom {
  width: 22px;
  height: 20px;
  flex-shrink: 0;
  aspect-ratio: 1/1;
  position: absolute;
  right: 11px;
  top: 11px;
}
.popup .popimgcontainer .img .zoom img {
  width: 100%;
  display: block;
  height: 100%;
}
.popup.active {
  display: block;
}
@media (width <= 767px) {
  .popup {
    padding: 20px;
  }
}
@media (min-width: 576px) {
  .popup {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .popup {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .popup {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .popup {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  .popup {
    max-width: 1314px; /* Overall width of your masonry grid */
  }
}

.is-horizontal .f-button.is-arrow.is-prev,
.is-horizontal .f-button.is-arrow.is-next {
  background-color: white;
  color: black;
}

.f-carousel__toolbar__column .f-button {
  background-color: white;
  color: black;
  border-radius: 20px;
}

.backdrop-popup {
  display: none;
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
}
.backdrop-popup.active {
  display: block;
}

.f-thumbs__viewport {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
}
.f-thumbs__viewport .f-thumbs__slide {
  width: 20px !important;
  height: 20px !important;
  background-color: white;
  transform: unset !important;
  border-radius: 10px !important;
  --clip-shift: unset !important;
  --clip-path: unset !important;
  padding: 0 !important;
  overflow: visible !important;
  left: unset !important;
  margin: 0 !important;
}
.f-thumbs__viewport .f-thumbs__slide img {
  opacity: 0;
}
.f-thumbs__viewport .f-thumbs__slide button {
  width: 10px;
  height: 10px;
  transform: unset !important;
}

.f-carousel__toolbar__column.is-left .f-carousel__counter {
  display: none !important;
}
.f-carousel__toolbar__column.is-right button[data-panzoom-action], .f-carousel__toolbar__column.is-right button[data-autoplay-action], .f-carousel__toolbar__column.is-right button[data-fullscreen-action] {
  display: none;
}

.is-horizontal .f-button.is-arrow.is-prev,
.is-horizontal .f-button.is-arrow.is-next {
  background-color: white;
  color: black;
  width: 15px;
  height: 15px;
  padding: 10px;
}

@media (width <= 991px) {
  .popup .headingrow h2 {
    font-size: 24px;
  }
}
@media (width <= 767px) {
  .is-horizontal .f-button.is-arrow.is-prev {
    left: 4px !important;
  }
  .is-horizontal .f-button.is-arrow.is-next {
    right: 4px !important;
  }
  .gallerygrid {
    padding: 0;
  }
  .grid-item {
    height: 122px;
    overflow: hidden;
  }
  .grid-item img {
    width: 100%;
    display: block;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}/*# sourceMappingURL=style.css.map */