/*

Usage:
@include breakpoint(laptop) {
  // styles for laptop and wider
}
@include breakpoint(laptop, 800px) {
  // styles for laptop width and screens up to 800px tall
  // useful for targeting shorter laptop screens
}

@include breakpoint(desktop, 900px) {
  // styles for desktop width but shorter screens
}
  */
/*-----------------------
EASING 
---------------------- */
.banner-image-modal-gallery-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  width: 100%;
  height: 60vh;
}
@media (min-width: 1024px) {
  .banner-image-modal-gallery-container {
    height: 40vh;
  }
}
@media (min-width: 1100px) {
  .banner-image-modal-gallery-container {
    height: 100vh;
  }
}
.banner-image-modal-gallery-container .hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.banner-image-modal-gallery-container .hero-background .bg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.banner-image-modal-gallery-container .hero-background::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 26, 30, 0.2);
  mix-blend-mode: multiply;
  z-index: 2;
}
.banner-image-modal-gallery-container .hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  color: var(--color-white);
  text-align: center;
}
.banner-image-modal-gallery-container .hero-content h2, .banner-image-modal-gallery-container .hero-content h3, .banner-image-modal-gallery-container .hero-content h4, .banner-image-modal-gallery-container .hero-content h5, .banner-image-modal-gallery-container .hero-content h6, .banner-image-modal-gallery-container .hero-content p, .banner-image-modal-gallery-container .hero-content li {
  color: var(--color-white);
}
.banner-image-modal-gallery-container .hero-content .banner-content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.banner-image-modal-gallery-container .hero-content .banner-heading {
  width: 700px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0;
  text-align: center;
  font-size: var(--font-size-lg);
  line-height: 1.04;
}
.banner-image-modal-gallery-container .hero-content .banner-text-content {
  width: 784px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.banner-image-modal-gallery-container .hero-content .gallery-modal-trigger {
  margin-top: 2rem;
}

.modal-player.gallery-modal {
  background: transparent;
  padding: 0;
  max-width: 100vw;
  width: 100vw;
}
.modal-player.gallery-modal button.close-modal {
  position: relative;
  top: auto;
  right: auto;
}
.modal-player.gallery-modal .modal-content.gallery-content {
  background: var(--color-black);
  width: 100vw;
  height: 100vh;
  max-width: 100vw;
  max-height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 0;
}
.modal-player.gallery-modal .modal-header.gallery-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  padding: var(--padding-horizontal);
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.modal-player.gallery-modal .modal-header.gallery-header .modal-title {
  color: var(--color-white);
  font-size: var(--font-size-lg);
  margin: 0;
  line-height: 1;
}
.modal-player.gallery-modal .modal-header.gallery-header .modal-title span {
  display: block;
  line-height: 1;
  color: var(--color-accent);
}
.modal-player.gallery-modal .modal-body.gallery {
  flex: 1;
  padding: 0;
  padding-top: 13rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.modal-player.gallery-modal .grid-sizer,
.modal-player.gallery-modal .gallery-image-item {
  width: 100%;
}
@media (min-width: 820px) {
  .modal-player.gallery-modal .grid-sizer,
  .modal-player.gallery-modal .gallery-image-item {
    width: calc(50% - 1.25rem);
  }
}
@media (min-width: 1100px) {
  .modal-player.gallery-modal .grid-sizer,
  .modal-player.gallery-modal .gallery-image-item {
    width: calc(33.333% - 1.667rem);
  }
}
.modal-player.gallery-modal .gutter-sizer {
  width: 2.5rem;
}
.modal-player.gallery-modal .gallery-image-item {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius-md);
}
.modal-player.gallery-modal .gallery-image-item .gallery-image-wrap {
  width: 100%;
}
.modal-player.gallery-modal .gallery-image-item .gallery-image-wrap img {
  width: 100%;
  height: auto;
  display: block;
}
@media (min-width: 1024px) {
  .modal-player.gallery-modal .gallery-image-item:hover .gallery-image-caption {
    opacity: 1;
  }
}
.modal-player.gallery-modal .gallery-image-item .gallery-image-caption {
  margin-top: 1rem;
  text-align: center;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  margin: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.modal-player.gallery-modal .gallery-image-item .gallery-image-caption p {
  color: var(--color-white);
  font-size: var(--font-size-sm);
  margin: 0;
  opacity: 1;
  padding: 2rem;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 50%);
}