.zrq-img {
  width: 100%;
}

.zrq-pad-15 {
  padding-left: 15px;
  padding-right: 15px;
}

.zrq-text-glow {
  text-shadow: black 0 0 10px
}

.zrq-mobile {
  display: none;
}

.zrq-desktop {
  display: inline;
}

.zrq-ul {
  margin: 0 !important;
  border: 0 !important;
  padding: 0 !important;
  color: #aaaaaa;
  font-size: 14px;
  font-weight: 500;
}

.zrq-ul li {
  list-style: disc !important;
  display: list-item !important;
  margin-left: 30px !important
}

.zrq-center {
  text-align: center;
  margin: 0 auto;
}

.zrq-m2 {
  margin: 2rem;
}

.zrq-p2 {
  padding: 2rem;
}

.zrq-w50 {
  width: 50%;
}

.zrq-w100 {
  width: 100%;
}


.zrq-grey p {
  color: #aaaaaa;
  font-size: 14px;
  font-weight: 500;
}

.zrq-cursor {
  cursor: zoom-in;
}

.zrq-video {
  width: 560px;
  height: 315px;
}

.zrq-video iframe {
  width: 100%;
  height: 315px;
}

@media only screen and (max-width: 768px) {
  .zrq-video {
    width: 100%;
    height: auto;
  }

  .zrq-mobile {
    display: inline;
  }

  .zrq-desktop {
    display: none;
  }


}


:root {
  --overlay: rgba(0, 0, 0, .85);
  --radius: 14px;
}

.gallery img:active {
  transform: scale(.98);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  display: none;
  place-items: center;
  background: var(--overlay);
  z-index: 9999;
}

.lightbox[aria-hidden="false"] {
  display: grid;
}

.lightbox__panel {
  position: relative;
  max-width: min(92vw, 1200px);
  max-height: 88vh;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .5);
  background: #000;
  animation: pop .16s ease-out;
}

@keyframes pop {
  from {
    transform: scale(.96);
    opacity: .7;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

.lightbox__img {
  display: block;
  max-width: 100%;
  max-height: 88vh;
  width: auto;
  height: auto;
  object-fit: contain;
  background: #000;
}

.lightbox__caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  color: #fff;
  font: 14px/1.4 system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  background: linear-gradient(to top, rgba(0, 0, 0, .6), rgba(0, 0, 0, 0));
  padding: 16px 56px 12px 16px;
  user-select: none;
}

.lightbox__close {
  position: absolute;
  top: 8px;
  right: 8px;
  border: 0;
  background: rgba(255, 255, 255, .1);
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 18px;
}

.lightbox__close:hover {
  background: rgba(255, 255, 255, .2);
}

.no-scroll {
  overflow: hidden;
}