.location-box h5{
    font-size: 15px;
}
/* =========================================================
   WAVE CITY CENTER
   PREMIUM GALLERY
========================================================= */

.wc-gallery {
  /* padding: 110px 0; */
  background:
    white
}
.map-wrapper {
  width: 100%;
  height: 100%;
  min-height: 500px;
}

.map-wrapper iframe {
  display: block;
  width: 100%;
  height: 100%;
}

/* =========================================================
   HEADER
========================================================= */

.wc-gallery-header {
  max-width: 720px;
  margin: 0 auto 50px;
}

.wc-gallery-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  color: orangered;

  font-size: 12px;
  font-weight: 800;

  letter-spacing: 2px;

  margin-bottom: 15px;
}

.wc-gallery-header h2 {
  margin: 0 0 18px;

  color: #111827;

  font-size: clamp(2.3rem, 4vw, 3.6rem);

  font-weight: 800;

  line-height: 1.1;
}

.wc-gallery-header h2 span {
  color: #0d6efd;
}

.wc-gallery-header p {
  margin: 0;

  color: #667085;

  font-size: 16px;

  line-height: 1.8;
}


/* =========================================================
   GRID
========================================================= */

.wc-gallery-grid {

  display: grid;

  grid-template-columns:
    1.35fr
    1fr
    1fr;

  grid-template-rows:
    280px
    280px;

  gap: 16px;
}


/* =========================================================
   CARD
========================================================= */

.wc-gallery-card {

  position: relative;

  overflow: hidden;

  border-radius: 20px;

  cursor: pointer;

  background: #ddd;
}

.wc-gallery-main {
  grid-row: span 2;
}

.wc-gallery-tall {
  grid-row: span 1;
}

.wc-gallery-card img {

  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;

  transition:
    transform .7s cubic-bezier(.2,.7,.2,1),
    filter .5s ease;
}


/* =========================================================
   OVERLAY
========================================================= */

.wc-gallery-overlay {

  position: absolute;

  inset: 0;

  display: flex;

  align-items: flex-end;

  justify-content: space-between;

  padding: 25px;

  background:
    linear-gradient(
      to top,
      rgba(5, 15, 30, .9),
      rgba(5, 15, 30, .2) 55%,
      transparent
    );

  transition: .4s ease;
}

.wc-gallery-card:hover img {

  transform: scale(1.08);

  filter: brightness(.78);
}


/* =========================================================
   TEXT
========================================================= */

.wc-gallery-overlay span {

  display: block;

  color: #8ec5ff;

  font-size: 10px;

  font-weight: 800;

  letter-spacing: 2px;

  margin-bottom: 6px;
}

.wc-gallery-overlay h3 {

  margin: 0;

  color: white;

  font-size: 18px;

  font-weight: 700;
}


/* =========================================================
   VIEW BUTTON
========================================================= */

.wc-gallery-view {

  width: 48px;
  height: 48px;

  flex-shrink: 0;

  border-radius: 50%;

  border: 1px solid rgba(255,255,255,.4);

  background: rgba(255,255,255,.15);

  color: white;

  backdrop-filter: blur(10px);

  cursor: pointer;

  opacity: 0;

  transform: translateY(15px);

  transition: .35s ease;
}

.wc-gallery-card:hover .wc-gallery-view {

  opacity: 1;

  transform: translateY(0);
}


/* =========================================================
   BOTTOM
========================================================= */

.wc-gallery-bottom {

  display: flex;

  justify-content: center;

  align-items: center;

  gap: 25px;

  flex-wrap: wrap;

  margin-top: 35px;

  color: #667085;

  font-size: 14px;
}

.wc-gallery-bottom a {

  display: inline-flex;

  align-items: center;

  gap: 8px;

  color: #0d6efd;

  font-weight: 700;

  text-decoration: none;
}

.wc-gallery-bottom a i {

  transition: .3s ease;
}

.wc-gallery-bottom a:hover i {

  transform: translateX(5px);
}


/* =========================================================
   LIGHTBOX
========================================================= */

.wc-lightbox {

  position: fixed;

  inset: 0;

  z-index: 999999;

  display: flex;

  align-items: center;

  justify-content: center;

  padding: 40px 80px;

  background: rgba(3, 8, 18, .96);

  opacity: 0;

  visibility: hidden;

  pointer-events: none;

  transition: opacity .3s ease;
}

.wc-lightbox.active {

  opacity: 1;

  visibility: visible;

  pointer-events: auto;
}


/* =========================================================
   IMAGE
========================================================= */

.wc-lightbox-content {

  width: min(1100px, 90vw);

  max-height: 90vh;

  position: relative;

  display: flex;

  flex-direction: column;

  align-items: center;
}

#wcLightboxImage {

  max-width: 100%;

  max-height: 78vh;

  object-fit: contain;

  border-radius: 8px;

  box-shadow:
    0 30px 100px rgba(0,0,0,.5);

  animation: wcImageIn .3s ease;
}

@keyframes wcImageIn {

  from {
    opacity: 0;
    transform: scale(.96);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }

}


/* =========================================================
   CLOSE BUTTON
========================================================= */

.wc-lightbox-close {

  position: fixed;

  top: 25px;

  right: 30px;

  z-index: 1000000;

  width: 52px;

  height: 52px;

  display: flex;

  align-items: center;

  justify-content: center;

  border: 1px solid rgba(255,255,255,.35);

  border-radius: 50%;

  background: rgba(255,255,255,.12);

  color: white;

  font-size: 18px;

  cursor: pointer;

  backdrop-filter: blur(12px);

  transition: .3s ease;
}

.wc-lightbox-close:hover {

  background: white;

  color: #111827;

  transform: rotate(90deg);
}


/* =========================================================
   ARROWS
========================================================= */

.wc-lightbox-prev,
.wc-lightbox-next {

  position: fixed;

  top: 50%;

  transform: translateY(-50%);

  z-index: 1000000;

  width: 52px;

  height: 52px;

  border-radius: 50%;

  border: 1px solid rgba(255,255,255,.3);

  background: rgba(255,255,255,.12);

  color: white;

  display: flex;

  align-items: center;

  justify-content: center;

  font-size: 20px;

  cursor: pointer;

  backdrop-filter: blur(10px);

  transition: .3s ease;
}

.wc-lightbox-prev {
  left: 25px;
}

.wc-lightbox-next {
  right: 25px;
}

.wc-lightbox-prev:hover,
.wc-lightbox-next:hover {

  background: white;

  color: #111827;

}


/* =========================================================
   INFO
========================================================= */

.wc-lightbox-info {

  width: 100%;

  display: flex;

  justify-content: space-between;

  align-items: center;

  padding-top: 18px;

  color: white;
}

.wc-lightbox-info small {

  display: block;

  color: #74b9ff;

  font-size: 10px;

  font-weight: 800;

  letter-spacing: 2px;

  margin-bottom: 4px;
}

.wc-lightbox-info h3 {

  margin: 0;

  font-size: 18px;

  font-weight: 600;
}

#wcLightboxCounter {

  color: rgba(255,255,255,.65);

  font-size: 13px;
}


/* =========================================================
   BODY LOCK
========================================================= */

body.wc-gallery-open {

  overflow: hidden;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

  .wc-gallery {

    padding: 80px 0;
  }

  .wc-gallery-grid {

    grid-template-columns: 1fr 1fr;

    grid-template-rows:
      300px
      220px
      300px;
  }

  .wc-gallery-main {

    grid-column: span 2;

    grid-row: span 1;
  }

  .wc-gallery-tall {

    grid-row: span 1;
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 575px) {

  .wc-gallery {

    padding: 65px 0;
  }

  .wc-gallery-header {

    margin-bottom: 30px;
  }

  .wc-gallery-header h2 {

    font-size: 2.2rem;
  }

  .wc-gallery-header p {

    font-size: 14px;
  }

  .wc-gallery-grid {

    grid-template-columns: 1fr 1fr;

    grid-template-rows:
      230px
      175px
      175px
      230px;

    gap: 10px;
  }

  .wc-gallery-main {

    grid-column: span 2;
  }

  .wc-gallery-card {

    border-radius: 13px;
  }

  .wc-gallery-overlay {

    padding: 14px;
  }

  .wc-gallery-overlay h3 {

    font-size: 13px;
  }

  .wc-gallery-overlay span {

    font-size: 8px;
  }

  .wc-gallery-view {

    width: 36px;
    height: 36px;

    font-size: 11px;

    opacity: 1;

    transform: none;
  }

  /* Lightbox */

  .wc-lightbox {

    padding: 20px 10px;
  }

  .wc-lightbox-close {

    top: 15px;

    right: 15px;

    width: 44px;
    height: 44px;
  }

  .wc-lightbox-prev,
  .wc-lightbox-next {

    width: 40px;
    height: 40px;

    font-size: 15px;
  }

  .wc-lightbox-prev {
    left: 10px;
  }

  .wc-lightbox-next {
    right: 10px;
  }

  #wcLightboxImage {

    max-width: 94vw;

    max-height: 70vh;
  }

  .wc-lightbox-info {

    padding: 12px 5px;
  }

  .wc-lightbox-info h3 {

    font-size: 14px;
  }
}