/* =========================================================
=Gallery Loader
========================================================= */

.tmm-netx-gallery {
  min-height: 100dvh;
}

/* =========================================================
=Core Layout & Gallery Base
========================================================= */

/* Prevent body scroll when modal is open */
.mzv-fullscreen:after {
  content: "";
  inset: 0;
  z-index: 99;
  width: 100%;
  height: 100%;
  position: absolute;
}

.mzv-fullscreen:before {
  content: "";
  inset: 0;
  z-index: 99;
  width: 100%;
  height: 100%;
  position: absolute;
}
.mzv-fullscreen img {
  pointer-events: none;
}

.netx-image-zoom-wrapper {
  display: block;
  border: 4px solid #afafaf;
  background: #afafaf;
}

.modal-is-open {
  overflow: hidden;
}
.netx-group__title,
.netx-collection__header {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.netx-gallery-wrap {
  position: relative;
  background-color: #000;
  color: #fff;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiated;
  -moz-osx-font-smoothing: grayscale;
}

.netx-gallery-inner {
  position: relative;
  height: 100dvh;
  background: #000;
}

.netx-group__grid {
  display: block;
}

.netx-asset-card {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100dvh - var(--siteTopWrapHeight) - var(--netxNavHeight));
  display: flex;
  overflow: hidden;
}

.is-active-slide {
  visibility: visible !important;
  z-index: 11 !important;
}

/* =========================================================
=Slide Layers
========================================================= */

.slide-background {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: #000 center top / cover no-repeat;
  z-index: 1;
}

.slide-foreground {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  height: 100%;
  max-width: 1400px;
  margin: auto;
  gap: 5em;
  box-sizing: border-box;
}

.slide-foreground > * {
  width: 50%;
}

/* =========================================================
=Content / Media Columns
========================================================= */

.mc_collectionContent,
.netx-asset-card__media {
  flex: 1;
  box-sizing: border-box;
}

.mc_collectionContent {
  order: 1;
  overflow-y: auto;
}

.netx-asset-card__media {
  order: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  height: 100%;
  max-height: calc(100dvh - var(--siteTopWrapHeight) - var(--netxNavHeight));
  width: 100%;
}

/* Media sizing */
.netx-asset-card__media .video-js,
.netx-asset-card__media img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.netx-asset-card__media img {
  box-shadow: 3rem 3rem 5rem rgba(0, 0, 0, 0.75), 0 0 1rem rgba(0, 0, 0, 0.95),
    inset 0 2rem 1rem rgba(255, 255, 255, 0.05);
  height: auto;
}

.mc_image_content_left .slide-foreground .netx-asset-card__media img {
  box-shadow: -2rem 2rem 2rem rgba(0, 0, 0, 0.75), 0 0 1rem rgba(0, 0, 0, 0.95),
    inset 0 1rem 2rem rgba(255, 255, 255, 0.05);
  max-height: 85%;
}

/* Keep zoom/open button above background */
.netx-asset-card__media.coll_start_image button {
  z-index: 2;
}

/* =========================================================
=Modal
========================================================= */

.netx-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(6px);
  overflow: hidden;
  transition: opacity 0.3s ease;
}

.netx-modal.is-open {
  display: flex;
  opacity: 1;
}

.netx-modal__inner {
  position: relative;
  width: min(92%, 1100px);
  max-height: 92vh;
  background: #e1e1e1;
  border: 1px solid #222;
  color: #e4e4e4;
  font-family: "Inter", system-ui, sans-serif;
  box-shadow: 0 0 60px rgba(0, 0, 0, 0.9);
  overflow-y: auto;
  padding: 2.5rem;
  line-height: 1.6;
  box-sizing: border-box;
  animation: modalFadeIn 0.35s ease;
}

@keyframes modalFadeIn {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Close button */
.netx-modal__close {
  width: 4rem;
  height: 4rem;
  background: none;
  border: none;
  color: #e1e1e1;
  font-size: 2rem;
  font-weight: 400;
  cursor: pointer;
  line-height: 4rem;
  text-align: center;
  transition: color 0.25s ease, transform 0.25s ease;
  background-color: #c308c3;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 3rem;
  margin: 0;
}

.netx-modal__close:hover {
  color: #e1e1e1;
  transform: scale(1.1);
  background: #302140;
}
a.netx-modal__close:active,
.netx-modal__close:active {
  transform: scale(1.1);
  color: #e1e1e1;
  transform: scale(1.2);
  background: #390f66;
}

.netx-modal__close:focus-visible {
  outline: 1px solid #555;
}

/* Modal header/content */
.netx-modal__header {
  margin-bottom: 0.5rem;
  display: flex;
}

.netx-modal__title {
  font-size: 3rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 0;
  letter-spacing: -0.02em;
  width: 100%;
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
}

.netx-modal__desc {
  color: #000;
  font-size: 1.25em;
  line-height: 1.4;
}

/* Modal media */
.netx-modal__media {
  margin: 2rem 0;
  text-align: center;
}

.netx-modal__media img,
.netx-modal__media video {
  max-width: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.netx-modal__media img:hover {
  transform: scale(1.015);
  box-shadow: 0 0 60px rgba(255, 255, 255, 0.1);
}

/* Modal details */
.netx-modal__details {
  margin-top: 2rem;
  background: #151515;
  border: 1px solid #222;
  padding: 1.5rem 2rem;
}

.netx-modal__details h3 {
  font-size: 1.2rem;
  margin-bottom: 1.25rem;
  font-weight: 600;
  color: #eee;
  border-left: 4px solid #c308c3;
  padding-left: 0.75rem;
}

/* Meta grid */
.netx-modal__meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem 1rem;
  font-size: 0.95rem;
}

.netx-modal__meta-label {
  color: #aaa;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 1.2em;
}

.netx-modal__meta-value {
  color: #ddd;
  word-break: break-word;
  font-size: 1.2em;
}

/* Scrollbar */
.netx-modal__inner::-webkit-scrollbar {
  width: 10px;
}
.netx-modal__inner::-webkit-scrollbar-thumb {
  background: #333;
}
.netx-modal__inner::-webkit-scrollbar-thumb:hover {
  background: #555;
}

/* Responsive modal */
@media (max-width: 700px) {
  .netx-modal__inner {
    width: 95%;
    padding: 1.5rem;
  }
  .netx-modal__meta {
    grid-template-columns: 1fr;
  }
  .netx-modal__title {
    font-size: 1.6rem;
  }
}

/* =========================================================
=Zoom Viewer
========================================================= */

.mzv-zoom-layer {
  position: absolute;
  top: 0;
  left: 0;
  transform-origin: top left;
  transform: scale(1);
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.1s ease;
  z-index: 5;
  pointer-events: none;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-color: #afafaf;
}

.mzv-lens {
  position: absolute;
  width: 200px;
  height: 200px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  z-index: 10;
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
  border-radius: 100%;
}

.mzv-lens::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.mzv-zoom-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 8;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.mzv-fullscreen {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100000;
}

.mzv-fullscreen img {
  max-width: 95%;
  max-height: 95%;
  cursor: zoom-out;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.mzv-fullscreen img:hover {
  transform: scale(1.02);
}

.netx-image-zoom-wrapper {
  display: inline-block;
  margin: auto;
  padding: 0;
}

img.netx-image-zoom {
  width: 100%;
  max-height: 60vh;
  object-fit: contain;
}

/* =========================================================
=Sticky Gallery Navigation
========================================================= */

main#main {
  overflow: visible;
}

.netx-gallery-nav {
  position: sticky;
  top: 0;
  z-index: 5;
  width: 100%;
  background: #d1d1d1;
  border-bottom: 1px solid #ddd;
}

.netx-gallery-nav__inner {
  display: flex;
  align-items: center;
  height: 60px;
  padding: 0 2rem;
  position: relative;
  max-width: 1400px;
  margin: auto;
  box-sizing: border-box;
}

.netx-gallery-nav__title {
  flex-shrink: 0;
  margin-right: 2em;
  max-width: 18rem;
}
.netx-gallery-nav__title img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
a#netx-gallery-nav-title-link:active,
a#netx-gallery-nav-title-link:focus,
a#netx-gallery-nav-title-link:hover {
  outline: none;
  text-decoration: underline;
  background-color: transparent !important;
}
.netx-gallery-nav__links-scroll {
  display: flex;
  align-items: center;
  flex-grow: 1;
  height: 100%;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  justify-content: space-between;
  gap: 2rem;
  cursor: grab;
  cursor: -webkit-grab;
}

.netx-gallery-nav__links-scroll.is-dragging {
  cursor: grabbing;
  cursor: -webkit-grabbing;
  user-select: none;
}

.netx-gallery-nav__links-scroll::-webkit-scrollbar {
  display: none;
}

.netx-gallery-nav__link {
  flex-shrink: 0;
  padding: 0.5rem 0;
  font-weight: 600;
  font-size: 1.4rem;
  text-decoration: none;
  color: #333;
  white-space: nowrap;
  transition: color 0.2s ease;
  border-bottom: 2px solid transparent;
  display: flex;
  align-items: center;
  padding-bottom: 0;
  transition: all 0.2s ease;
}
/* make not on devices under 1000px */
@media (min-width: 1000px) {
  .netx-gallery-nav__link:hover {
    color: #000;
    font-weight: 600;
    border-bottom-color: #c308c3;
  }
}

.netx-gallery-nav__link:active {
  color: #c308c3;
  border-bottom-color: #c308c3;
  background-color: transparent;
}
.netx-gallery-nav__link.is-active {
  color: #000;
  border-bottom-color: #c308c3;
}

.gallery-counters {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-left: auto;
  position: absolute;
  top: calc(100% + 1rem);
  margin: 4px;
  padding: 2px 7px;
  background: #0000007a;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #d1d1d1;
}

.gallery-counters.hidden {
  display: none;
}

.chapter-title b,
.slide-in-chapter b {
  text-transform: uppercase;
  font-size: 0.9em;
  margin-right: 0.25em;
}
.progress-bar-container {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #15100e;
}

.progress-bar {
  width: 0%;
  height: 100%;
  background-color: #c308c3;
}
/*  */

.collection_nav_401 .netx-gallery-nav__link.is-active {
  border-bottom-color: #d03d26;
}

.collection_nav_401 .progress-bar {
  background-color: #d03d26;
}

.collection_nav_401 .netx-gallery-nav__link:hover {
  border-bottom-color: #d03d26;
}

.collection_nav_401 .netx-gallery-nav__link:active {
  color: #d03d26;
  border-bottom-color: #d03d26;
}

/* =========================================================
  =Background Fades / Tints
  ========================================================= */
.mc_background_fade .slide-background::after,
.mc_background_tint .slide-background::after {
  content: "";
  position: absolute;
  inset: 0;
  background: hsl(0deg 0% 0% / 85%);
}

/* Stronger fade for specific layouts */
.mc_image_content_left.mc_background_fade .mc_image_background_wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: hsl(0deg 0% 0% / 85%);
}

.mc_coll_asset_intro.mc_background_fade .slide-background::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 1;
  background: hsl(0deg 0% 0% / 70%);
}

/* Video-specific fade override */
.mc_video.mc_background_fade .netx-asset-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: hsl(0deg 0% 0% / 85%);
}

figure.mc_video button.netx-asset-card__more.coll_start_image_button {
  inset: unset;
  width: unset;
  height: unset;
  bottom: -3rem;
  padding: 0;
  left: 0;
  text-transform: uppercase;
  color: #d1d1d1;
  font-size: 11px;
  letter-spacing: 1px;
}
/* Reset for default media overlay when needed */
.netx-asset-card__media.coll_start_image::after {
  content: none;
}

/* =========================================================
=Image Layout Variants
========================================================= */

/* mc_image: background media full-bleed, content overlay */
figure.mc_image .netx-asset-card__media.coll_start_image {
  position: absolute;
  inset: 0;
  width: 100%;
  max-width: 100%;
  height: auto;
  padding: 0;
}

figure.mc_image .netx-asset-card__media.coll_start_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mc_image figcaption.netx-asset-card__content.coll_start_content {
  z-index: 11;
}

.netx-asset-card.mc_image {
  justify-content: flex-end;
  align-items: center;
}

.netx-asset-card.mc_image.mc_image_alt {
  justify-content: flex-start;
  align-items: center;
}

.mc_image .coll_start_content,
.mc_special_object_3 .coll_start_content {
  height: auto;
  max-width: calc(50% - 4rem);
  background: hsl(0deg 0% 0% / 85%);
}

.mc_image .coll_start_content * {
  color: #fff;
}

.mc_image .netx-asset-card__media.coll_start_image button {
  padding: 0;
  margin: 0;
  border-radius: 0;
  width: 100%;
  height: 100%;
}

/* Alternate foreground directions */
.mc_image_alt.mc_image .slide-foreground {
  flex-direction: row;
}

/* Content-left variants (desktop) */
.mc_image_content_left.netx-asset-card__content {
  flex-direction: row-reverse;
}

.mc_image_content_left figcaption.netx-asset-card__content,
.mc_image_content_left .netx-asset-card__media {
  position: relative !important;
  z-index: 5 !important;
}

.mc_image_content_left figcaption.netx-asset-card__content {
  background: hsl(0deg 0% 0% / 85%);
  color: #fff;
}

.mc_image_content_left figcaption.netx-asset-card__content h3 {
  color: #fff;
}

.mc_image_content_left.mc_image_content_left_alt .slide-foreground,
.mc_image_content_left.mc_image_content_alt .slide-foreground {
  flex-direction: row;
}

.mc_image_content_left img.mc_image_background {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* =========================================================
=Video Layout (mc_video)
========================================================= */

figure.mc_video {
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
  align-items: center;
}

figure.mc_video .netx-asset-card__media {
  height: auto;
}

figure.mc_video figcaption.netx-asset-card__content {
  height: auto;
}

figure.mc_video figcaption.netx-asset-card__content * {
  color: #fff;
}

/* Remove default overlay in video background element */
figure.mc_video .netx-asset-card__media.coll_start_image::after {
  display: none;
}

.mc_video .netx-asset-card__media.mc_collectionVideo {
  width: 100%;
  padding: 0;
  max-width: 920px;
  flex: unset;
}

.mc_video figcaption.mc_collectionContent {
  max-width: 40% !important;
  min-width: 400px;
}

.mc_video figcaption.mc_collectionContent .mc_collectionContent_inner {
  padding: 0;
}

/* =========================================================
=Chapter Box Layout (mc_chapter_box)
========================================================= */

figure.mc_chapter_box {
  display: flex;
  flex-direction: column;
  padding: 0 !important;
}

figure.mc_chapter_box .slide-background {
  position: relative;
  background-position: center top;
  overflow: hidden;
  height: 100%;
}

figure.mc_chapter_box .slide-foreground {
  width: 100%;
  max-width: 100%;
  height: auto;
  min-height: 40%;
  text-align: center;
}
.mc_chapter_box h2.mc_collectionTitle {
  text-transform: uppercase;
}

/* Media area for chapter box */
.netx-asset-card__media.media_mc_chapter_box {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: 100%;
  max-height: 50vh;
  padding: 0;
  border: none;
}

.netx-asset-card__media.media_mc_chapter_box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.netx-asset-card__media.media_mc_chapter_box a {
  display: block;
  width: 100%;
  height: 100%;
}

.netx-asset-card__media.media_mc_chapter_box button {
  position: absolute;
  inset: 0;
  margin: 0;
  max-height: none;
  font-size: 0;
}

.mc_chapter_box .slide-background img {
  width: 100%;
  object-fit: cover;
}

.mc_chapter_box button.netx-asset-card__more.coll_start_image_button {
  padding: 0;
  width: 100%;
}

/* Content area for chapter box */
figcaption.netx-asset-card__content.content_mc_chapter_box {
  flex: none;
  width: 100%;
  max-width: 100%;
  height: 50vh;
  padding: 0;
  background: #000;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

figcaption.netx-asset-card__content.content_mc_chapter_box
  .netx-asset-card__title,
figcaption.netx-asset-card__content.content_mc_chapter_box p {
  color: #fff;
}

/* Ensure full-width content container when used inside chapter box */
figure.mc_chapter_box
  figcaption.netx-asset-card__content.content_mc_chapter_box {
  width: 100%;
}

/* Make overlay button cover background */
figure.mc_chapter_box
  .slide-background
  button.netx-asset-card__more.coll_start_image_button {
  position: absolute;
  inset: 0;
  margin: 0;
}

/* Section-specific tweaks */
section#beyondthemob .mc_chapter_box .slide-background {
  background-position: center !important;
}

.mc_chapter_box .mc_collectionContent .mc_collectionContent_inner {
  text-align: center;
  background: none;
  max-width: 1000px;
}

/* =========================================================
=Collection Intro Layout (mc_coll_asset_intro)
========================================================= */

figure.mc_coll_asset_intro {
  flex-direction: column;
  justify-content: center;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  overflow: hidden;
}

figure.mc_coll_asset_intro .netx-asset-card__media.coll_start_image {
  position: absolute;
  inset: 0;
  width: 100%;
  max-width: 100%;
  height: auto;
  padding: 0;
}

figure.mc_coll_asset_intro .netx-asset-card__media.coll_start_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

figure.mc_coll_asset_intro
  figcaption.netx-asset-card__content.coll_start_content {
  max-width: 1200px;
  margin: auto;
  height: auto;
  padding: 0;
  flex: none;
  z-index: 10;
}

figure.mc_coll_asset_intro h3.netx-asset-card__title {
  text-align: center;
  font-weight: 800;
  font-size: 4rem;
  color: #fff;
}

figure.mc_coll_asset_intro p.netx-asset-card__desc {
  text-align: center;
  font-weight: 300;
  font-size: 2rem;
  line-height: 1.2;
  color: #fff;
}
.mc_coll_asset_intro h1.mc_collectionTitle img {
  object-fit: contain;
}
/* =========================================================
=Collection Typography / Content
========================================================= */

h1.mc_collectionTitle {
  color: #fff;
  font-size: 5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
}

h2.mc_collectionTitle {
  font-size: 3rem;
  color: #fff;
  margin-bottom: 3rem;
  font-weight: 700;
  text-transform: unset;
  text-wrap: balance;
}

.mc_coll_asset_intro p.mc_collectionDesc {
  text-align: center;
  margin: 0 auto;
  max-width: 600px;
}

p.mc_collectionDesc,
.mc_collection_endContent p {
  font-size: 2rem;
  font-weight: 200;
  line-height: 1.32;
  color: #fff;
  text-wrap: balance;
}

.mc_image figcaption.mc_collectionContent {
  text-align: left;
}

/* Content spacer */
.netx-asset-card__contentSpacer {
  width: 30%;
}

/* Centered text variant */
.mc_textCenter figcaption.mc_collectionContent {
  order: 0;
  width: 100%;
}

.mc_textCenter .netx-asset-card__contentSpacer {
  width: 0;
  display: none;
}

.mc_textCenter figcaption.mc_collectionContent .mc_collectionContent_inner {
  max-width: 900px;
}

.mc_image.mc_textCenter figcaption.mc_collectionContent {
  text-align: center;
}

.mc_video figcaption.mc_collectionContent .mc_collectionContent_inner {
  padding: 1rem;
  background: transparent;
}

/* Parallax-up variants */
.netx-asset-card.mc_image figcaption.mc_collectionContent {
  width: 100%;
  color: #fff;
  text-align: left;
  position: relative;
}

.netx-asset-card.mc_image.mc_image_alt figcaption.mc_collectionContent {
  width: 100%;
  color: #fff;
  text-align: right;
}

/* =========================================================
=Zoom Hover Disable
========================================================= */

.netx-image-zoom-wrapper.disable-hover,
.netx-image-zoom-wrapper.disable-hover * {
  pointer-events: none !important;
}

/* =========================================================
=Media Wrapper & Modal Button
========================================================= */

button.netx-asset-card__more.mc_modalButton.mc_mediaImageButton {
  all: unset;
  position: absolute;
  inset: 0;
  cursor: pointer;
  cursor: context-menu;
  z-index: 1;
  font-size: 0;
}

.netx-gallery-nav__inner {
  max-width: 1400px;
  margin: auto;
}

button.netx-asset-card__more:focus {
  border: none;
  outline: none;
}

.mc_mediaImgWrapInner {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex !important;
  justify-content: center;
  align-items: stretch;
  flex-direction: column;
}

.mc_mediaImgWrap {
  margin: 1rem;
  width: 100%;
  height: 100%;
  text-align: right;
}

/* Asset-specific constraint */
#asset-2106 .netx-asset-card__media.coll_start_image {
  max-width: 900px;
  margin: auto;
}

/* =========================================================
=Collection Content Panel & Scroll Styling (Desktop)
========================================================= */

figcaption.mc_collectionContent .mc_collectionContent_inner {
  position: relative;
  display: inline-block;
  margin: 1rem;
  max-width: 550px;
  max-height: 70vh;
  padding: 3rem;
  background: hsl(0deg 0% 0% / 80%);
  text-align: left;
  overflow-y: hidden;
  scrollbar-width: thin;
  scrollbar-color: #444 #1a1a1a;
  overflow: auto;
}

/* WebKit scrollbars */
figcaption.mc_collectionContent .mc_collectionContent_inner::-webkit-scrollbar {
  width: 10px;
}

figcaption.mc_collectionContent
  .mc_collectionContent_inner::-webkit-scrollbar-track {
  background: #1a1a1a;
}

figcaption.mc_collectionContent
  .mc_collectionContent_inner::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #333 0%, #555 100%);
  border-radius: 6px;
  transition: background 0.3s ease;
}

figcaption.mc_collectionContent
  .mc_collectionContent_inner::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #555 0%, #777 100%);
}

/* Top / bottom fades */
figcaption.mc_collectionContent .mc_collectionContent_inner::before,
figcaption.mc_collectionContent .mc_collectionContent_inner::after {
  position: fixed;
  left: 0;
  right: 0;
  height: 4rem;
  pointer-events: none;
  z-index: 10;
  width: 100%;
  display: block;
}

figcaption.mc_collectionContent .mc_collectionContent_inner::before {
  top: 1rem;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 1), transparent);
}

figcaption.mc_collectionContent .mc_collectionContent_inner::after {
  bottom: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 1), transparent);
}

/* =========================================================
=Responsive (≤ 800px)
========================================================= */

/* clean up button styles */
button.netx-asset-card__more.mc_modalButton.mc_mediaImageButton {
  position: relative !important;
}

.mc_mediaImgWrapInner {
  display: flex !important;
}
header.netx-modal__header {
  position: sticky;
  top: 0;
  z-index: 55;
  background: #e1e1e1;
  padding: 2rem 1rem;
}

.netx-modal__inner {
  padding-top: 0;
}

.tmm-netx-gallery.netx-collection
  .mc_image_content_left
  button.netx-asset-card__more.mc_modalButton.mc_mediaImageButton {
  height: unset;
  width: unset;
  padding: 5px;
}
.mc_image_content_left .slide-foreground {
  gap: 2rem;
}

.mc_image_content_left .netx-asset-card__media {
  width: 100% !important;
}

.mc_image_content_left figcaption.mc_collectionContent {
  width: 100% !important;
  max-width: 700px;
}

.mc_image_content_left .mc_mediaImgWrap {
  margin: 0;
}

.mc_image_content_left .mc_mediaImgWrapInner {
  align-items: center;
}
.mc_mediaImgWrapInner {
  justify-content: center;
  align-items: stretch;
}
img.mc_mediaImage {
  max-height: 70vh !important;
}

.mc_mediaImgWrapInner {
  flex-direction: column;
}
span.mc_mediaImgOverlay {
  position: absolute;
  background: #ff000000;
  inset: 0;
}

span.mc_mediaImgButtonInner {
  position: relative;
}

span.mc_mediaImgInfoText {
  padding: 1rem;
  color: #fff;
}

span.mc_mediaImgInfoText {
  padding: 0.5rem 1rem;
  background: #000000c4;
}

button.netx-asset-card__more.coll_start_image_button.mc_image_backgroundButton {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.mc_image_content_left span.mc_mediaImgButtonInner {
  align-self: flex-start;
}

.mc_image_content_left.mc_image_content_alt span.mc_mediaImgButtonInner {
  align-self: flex-end;
}

.mc_text_box_left .mc_collectionContent_inner {
  max-width: 600px;
}

.mc_text_box_right span.mc_mediaImgButtonInner {
  align-self: stretch;
}
.mc_text_box_right figcaption.mc_collectionContent,
.mc_image_content_left figcaption.mc_collectionContent {
  text-align: right !important;
}
.mc_image_content_left_alt figcaption.mc_collectionContent,
.mc_image_content_alt figcaption.mc_collectionContent {
  text-align: left !important;
}

.mc_text_center figcaption.mc_collectionContent {
  width: 100%;
  max-width: 900px;
  margin: auto;
}

.mc_text_center figcaption.mc_collectionContent .mc_collectionContent_inner h2,
.mc_text_center figcaption.mc_collectionContent .mc_collectionContent_inner p {
  text-align: center;
}

.mc_special_object_4.mc_image.mc_text_center figcaption.mc_collectionContent {
  text-align: center !important;
  max-height: fit-content;
  z-index: 100;
  margin-bottom: 10%;
}

.mc_special_object_4.mc_image.mc_text_center .slide-foreground {
  max-width: 900px;
  margin: auto;
  width: 100%;
}

.mc_special_object_4.mc_image.mc_text_center .netx-asset-card__contentSpacer {
  display: none;
}

.mc_sections {
  text-align: center;
  min-height: 70vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mc_sections > * {
  width: 100%;
}

section.wp-block-group.mc_sections.mc_sections_video iframe {
  width: 100%;
  height: 100%;
  aspect-ratio: 16/9;
  max-width: 1000px;
  margin-bottom: 2rem;
}

.mc_text_center_bottom figcaption.mc_collectionContent {
  margin-bottom: 0;
}

.mc_content_small figcaption.mc_collectionContent {
  max-width: 400px;
}

.mc_content_small .slide-foreground {
  justify-content: left;
}
.mc_sections p {
  font-size: 2rem;
  font-weight: 200;
  line-height: 1.32;
  color: #fff;
}

figure.mc_chapter_box.mc_bk_center .slide-background {
  background-position: center;
}

/* =========================================================
= Asset-Specific Overrides
========================================================= */

/* Asset-specific constraint */
#asset-2106 .netx-asset-card__media.coll_start_image {
  max-width: 900px;
  margin: auto;
}

/* Mobile only */
@media screen and (max-width: 1000px) {
  /* Asset-specific overrides (mobile only) */
  #asset-2004.mc_image_content_left.mc_image_content_left_alt .slide-foreground,
  #asset-2011.mc_image_content_left.mc_image_content_alt .slide-foreground,
  #asset-2005.mc_image_content_left.mc_image_content_alt .slide-foreground,
  #asset-529.mc_image_content_left.mc_image_content_alt .slide-foreground,
  #asset-2019.mc_image_content_left.mc_image_content_alt .slide-foreground,
  #asset-2015.mc_image_content_left .slide-foreground,
  #asset-2025.mc_image_content_left.mc_image_content_alt .slide-foreground,
  #asset-2010.mc_image_content_left .slide-foreground {
    gap: 3rem;
    flex-direction: column-reverse;
  }

  #asset-2004.mc_image_content_left.mc_image_content_left_alt
    button.netx-asset-card__more.mc_modalButton.mc_mediaImageButton,
  #asset-2011.mc_image_content_left.mc_image_content_alt
    button.netx-asset-card__more.mc_modalButton.mc_mediaImageButton,
  #asset-2005.mc_image_content_left.mc_image_content_alt
    button.netx-asset-card__more.mc_modalButton.mc_mediaImageButton,
  #asset-529.mc_image_content_left.mc_image_content_alt
    button.netx-asset-card__more.mc_modalButton.mc_mediaImageButton,
  #asset-2019.mc_image_content_left.mc_image_content_alt
    button.netx-asset-card__more.mc_modalButton.mc_mediaImageButton,
  #asset-2015.mc_image_content_left
    button.netx-asset-card__more.mc_modalButton.mc_mediaImageButton,
  #asset-2025.mc_image_content_left.mc_image_content_alt
    button.netx-asset-card__more.mc_modalButton.mc_mediaImageButton,
  #asset-2010.mc_image_content_left
    button.netx-asset-card__more.mc_modalButton.mc_mediaImageButton {
    position: absolute;
  }

  #asset-2001 {
    flex-direction: column;
  }

  #asset-2121 {
    background: #000;
  }

  #asset-2004.mc_image_content_left
    .slide-foreground
    .netx-asset-card__media.coll_start_image
    img.mc_mediaImage {
    object-fit: contain !important;
  }

  #asset-2004.mc_text_box_right span.mc_mediaImgButtonInner {
    width: auto !important;
    max-width: fit-content;
    margin: auto;
  }

  #asset-2106
    .slide-foreground
    .netx-asset-card__media.coll_start_image.parallax-down {
    justify-content: inherit;
    align-items: center;
  }

  #asset-2106
    .slide-foreground
    .netx-asset-card__media.coll_start_image.parallax-down
    img.mc_mediaImage {
    transform: rotateZ(5deg);
  }

  #asset-2006 .netx-asset-card__media.coll_start_image,
  #asset-2016 .netx-asset-card__media.coll_start_image {
    max-height: 300px !important;
    height: 100dvh !important;
  }

  #asset-2007 .netx-asset-card__media.coll_start_image {
    max-height: 150px !important;
    height: 100dvh !important;
  }

  #asset-2013 .netx-asset-card__media.coll_start_image {
    max-height: fit-content !important;
    height: 100dvh !important;
    min-height: 0;
  }

  #asset-2013 .netx-asset-card__media.coll_start_image img.mc_mediaImage {
    object-fit: contain !important;
  }

  #asset-2014 .netx-asset-card__media.coll_start_image {
    max-height: fit-content !important;
    height: 100dvh !important;
    min-height: 0;
  }

  #asset-2014 .netx-asset-card__media.coll_start_image img.mc_mediaImage {
    object-fit: contain !important;
  }

  #asset-222 .netx-asset-card__media.coll_start_image {
    max-height: 500px !important;
    height: 100dvh !important;
    min-height: 0;
  }
}

/* =========================================================
= MISC & HELPERS
========================================================= */

.netx-asset-card.mc_image figcaption.mc_collectionContent {
  max-width: fit-content;
}

.netx-asset-card__contentSpacer {
  width: 50%;
}

button.netx-asset-card__more.mc_modalButton.mc_mediaImageButton {
  cursor: pointer;
  z-index: 50;
}

span.mc_mediaImgIconWrapper_m,
.mc_image_backgroundButton_m {
  display: none;
}

/* Special Animation Slide Rules */
.netx-asset-card.is-pre-slide figcaption,
.netx-asset-card.is-pre-slide .netx-asset-card__more {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
}

/* Prevent Image Download */
.mc_mediaImgButtonInner,
.netx-image-zoom-wrapper {
  position: relative; /* Ensure parent is a positioning context */
}

.mc_mediaImgOverlay,
.netx-modal-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10; /* Make sure it on top of the image */
  background-color: transparent; /* Makes it invisible */
}

.mc_mediaImage,
.netx-image-zoom {
  pointer-events: none;
}

.mc_special_long_flat span.mc_mediaImgButtonInner {
  transform: rotate3d(1, 1, 1, 0deg) !important;
}

/* Mobile only css */
@media screen and (max-width: 1000px) {
  .netx-gallery-nav__inner {
    padding: 0 0.5rem;
  }

  .netx-gallery-nav__links-scroll {
    position: relative;
    padding: 0 30px;
  }

  .netx-gallery-nav__arrow {
    display: flex;
    position: absolute;
    top: 0;
    bottom: 0;
    width: 3rem;
    background: transparent;
    border: none;
    border-radius: 0;
    cursor: pointer;
    z-index: 2;
    align-items: center;
    justify-content: center;
  }

  .netx-gallery-nav__arrow:after {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    border-top: 2px solid #333;
    border-right: 2px solid #333;
  }

  .netx-gallery-nav__arrow--left {
    left: 0;
  }

  .netx-gallery-nav__arrow--left:after {
    transform: translateX(2px) rotate(-135deg);
    left: -10px;
    position: relative;
  }

  .netx-gallery-nav__arrow--right {
    right: 0;
    background: transparent;
  }

  .netx-gallery-nav__arrow--right:after {
    transform: translateX(-2px) rotate(45deg);
  }

  .netx-gallery-nav__arrow--right:after,
  .netx-gallery-nav__arrow:after {
    /* padding: 1rem; */
    font-size: 2rem;
    border-top: 3px solid #333;
    border-right: 3px solid #333;
    width: 1.25rem;
    height: 1.25rem;
  }

  .netx-gallery-nav__arrow--right {
    position: sticky;
    right: -0.5rem;
  }
  .netx-gallery-nav__arrow--left {
    position: sticky;
  }

  .netx-gallery-nav__links-scroll {
    padding: 0 1rem;
  }

  .netx-gallery-nav__arrow--right:hover:after,
  .netx-gallery-nav__arrow:hover:after {
    border-top: 4px solid #c308c3;
    border-right: 4px solid #c308c3;
  }
  /* Core slide layout */
  .slide-foreground {
    display: flex;
    flex-direction: column-reverse;
    justify-content: flex-start;
    align-items: stretch;
    gap: 0;
    min-height: unset;
  }

  /* Figcaption (content area) */
  figcaption.mc_collectionContent {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    width: 100%;
    height: 100%;
    order: unset;
    overflow: hidden;
  }

  figcaption.mc_collectionContent .mc_collectionContent_inner {
    height: max-content;
    padding: 2rem;
    box-sizing: border-box;
    max-width: calc(100% - 0rem);
    overflow: auto;
    max-height: 100%;
    display: block;
    margin: 0 auto;
  }
  /* Spacer cleanup */
  .netx-asset-card__contentSpacer {
    display: none;
  }
  .mc_image .mc_collectionContent_inner {
    max-width: calc(100vw - 4rem) !important;
  }

  /* Chapter box */
  .mc_chapter_box .slide-foreground {
    min-height: unset;
  }

  figure.mc_chapter_box .slide-background {
    max-height: 250px;
  }

  /* Video slides */
  figure.mc_video .slide-foreground {
    flex-direction: column-reverse;
    justify-content: space-around;
    align-items: stretch;
  }

  figure.mc_video .slide-foreground .netx-asset-card__media.mc_collectionVideo {
    height: auto;
    min-height: 0;
    flex: unset;
  }

  figure.mc_video .slide-foreground figcaption.mc_collectionContent {
    width: 100%;
    max-width: 100%;
  }

  .mc_video .netx-asset-card__media.mc_collectionVideo {
    min-width: 100%;
  }

  .mc_video figcaption.mc_collectionContent {
    max-width: 100% !important;
  }

  .mc_video figcaption.mc_collectionContent .mc_collectionContent_inner {
    padding: 1rem;
  }

  /* Image slides (content-left) */
  .mc_image_content_left .slide-foreground {
    align-items: stretch;
    justify-content: space-around;
    flex-direction: column-reverse !important;
    gap: 1rem;
  }

  .mc_image_content_left .slide-foreground figcaption.mc_collectionContent,
  .mc_image_content_left
    .slide-foreground
    .netx-asset-card__media.coll_start_image {
    width: 100%;
    padding: 0;
    justify-content: center;
  }

  .mc_image_content_left .slide-foreground .mc_mediaImgWrap {
    text-align: center;
    margin: 0;
  }

  .mc_image_content_left .slide-foreground .netx-asset-card__media {
    min-height: 250px;
    overflow: hidden;
  }

  .mc_image_content_left
    .slide-foreground
    .netx-asset-card__media.coll_start_image {
    max-height: 400px;
    overflow: hidden;
    box-shadow: none;
  }

  .tmm-netx-gallery.netx-collection
    .mc_image_content_left
    button.netx-asset-card__more.mc_modalButton.mc_mediaImageButton {
    position: relative !important;
    height: 100%;
    width: 100%;
  }

  span.mc_mediaImgButtonInner {
    display: inline-block;
    height: 100%;
    width: 100%;
  }

  .tmm-netx-gallery.netx-collection
    .mc_image_content_left
    button.netx-asset-card__more.mc_modalButton.mc_mediaImageButton {
    height: 100% !important;
    display: inline-block;
  }

  /* Start content */
  figcaption.netx-asset-card__content.coll_start_content {
    width: 100%;
    max-width: 100%;
    flex: unset;
    padding: 2rem;
    box-sizing: border-box;
  }

  .netx-asset-card__media.coll_start_image {
    padding-block: 0;
    padding: 0;
  }

  /* Text & descriptions */
  p.netx-asset-card__desc {
    margin: 0;
  }

  .mc_mediaImgWrap {
    display: block;
  }

  .mc_coll_asset_intro figcaption.mc_collectionContent {
    /* justify-content: center; */
  }

  /* General media behavior */
  .netx-asset-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-height: 100%;
  }

  button.netx-asset-card__more.mc_modalButton.mc_mediaImageButton {
    position: relative;
  }

  /* Unique wrapper */
  .mc_unique_wrapper_1 .slide-foreground {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    flex-direction: column;
  }

  .mc_unique_wrapper_1 .slide-foreground > * {
    width: 100%;
    height: 100%;
    order: unset;
    align-items: flex-start;
  }

  .mc_unique_wrapper_1 .slide-foreground .mc_mediaImgWrap {
    max-width: 100%;
    display: inline-block;
    max-height: 100%;
    height: auto;
  }

  /* Asset-specific overrides (mobile only) */
  #asset-2004.mc_image_content_left.mc_image_content_left_alt .slide-foreground,
  #asset-2011.mc_image_content_left.mc_image_content_alt .slide-foreground,
  #asset-2005.mc_image_content_left.mc_image_content_alt .slide-foreground,
  #asset-529.mc_image_content_left.mc_image_content_alt .slide-foreground,
  #asset-2019.mc_image_content_left.mc_image_content_alt .slide-foreground,
  #asset-2015.mc_image_content_left .slide-foreground,
  #asset-2025.mc_image_content_left.mc_image_content_alt .slide-foreground,
  #asset-2010.mc_image_content_left .slide-foreground {
    gap: 4px;
    flex-direction: column-reverse;
  }

  #asset-2004.mc_image_content_left.mc_image_content_left_alt
    button.netx-asset-card__more.mc_modalButton.mc_mediaImageButton,
  #asset-2011.mc_image_content_left.mc_image_content_alt
    button.netx-asset-card__more.mc_modalButton.mc_mediaImageButton,
  #asset-2005.mc_image_content_left.mc_image_content_alt
    button.netx-asset-card__more.mc_modalButton.mc_mediaImageButton,
  #asset-529.mc_image_content_left.mc_image_content_alt
    button.netx-asset-card__more.mc_modalButton.mc_mediaImageButton,
  #asset-2019.mc_image_content_left.mc_image_content_alt
    button.netx-asset-card__more.mc_modalButton.mc_mediaImageButton,
  #asset-2015.mc_image_content_left
    button.netx-asset-card__more.mc_modalButton.mc_mediaImageButton,
  #asset-2025.mc_image_content_left.mc_image_content_alt
    button.netx-asset-card__more.mc_modalButton.mc_mediaImageButton,
  #asset-2010.mc_image_content_left
    button.netx-asset-card__more.mc_modalButton.mc_mediaImageButton {
    position: absolute;
  }

  #asset-2108 figcaption.mc_collectionContent {
    margin-bottom: auto;
  }
  /* Image scroll behavior inside slide */
  .slide-foreground .netx-asset-card__media img.mc_mediaImage {
    width: 100%;
    height: 100%;
    object-fit: contain;
    max-height: 100%;
    box-shadow: none;
  }
  .netx-gallery-nav__title {
    max-width: 40%;
    margin-right: 1rem;
  }

  .netx-gallery-nav__title img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .gallery-counters {
    background: transparent;
    top: unset;
    bottom: 0.15rem;
    color: #3b3b3b;
    margin: 0;
    padding: 0;
    padding-left: 0.5rem;
    word-spacing: 1px;
    letter-spacing: 0;
  }
  .slide-foreground {
    width: calc(100% - 2rem);
  }

  .tmm-netx-gallery.netx-collection
    .mc_image_content_left
    button.netx-asset-card__more.mc_modalButton.mc_mediaImageButton {
    padding: 0;
  }

  figcaption.mc_collectionContent .mc_collectionContent_inner {
    text-align: left;
  }

  p.mc_collectionDesc,
  .mc_collection_endContent p {
    font-size: 1.5rem;
  }

  h2.mc_collectionTitle {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }

  .slide-foreground {
    padding-bottom: 2rem;
    margin-bottom: 0;
  }
  figure.mc_md_stack.mc_coll_asset_intro {
    flex: unset;
    display: flex;
    height: calc(100dvh - var(--siteTopWrapHeight) - var(--netxNavHeight));
    max-height: 100dvh;
    overflow: hidden;
    justify-content: space-between;
  }

  figure.mc_md_stack.mc_coll_asset_intro .slide-background,
  figure.mc_md_stack.mc_coll_asset_intro .slide-foreground {
    position: relative;
    inset: unset;
    margin: 0;
    width: 100%;
  }

  figure.mc_md_stack.mc_coll_asset_intro .slide-background {
    height: auto;
    background-size: cover;
    height: 60%;
  }

  figure.mc_md_stack.mc_coll_asset_intro .slide-foreground {
    background: #000;
    padding: 2rem;
    display: block;
    position: relative;
    margin-top: 0%;
    height: 100%;
  }

  figure.mc_md_stack.mc_coll_asset_intro
    .slide-foreground
    figcaption.mc_collectionContent {
    justify-content: flex-start;
    margin-top: 0%;
    max-height: 70%;
    justify-content: center;
  }

  #asset-2001 {
    flex-direction: column;
  }

  #asset-2001 {
    flex: unset;
    display: flex;
    height: calc(100dvh - var(--siteTopWrapHeight) - var(--netxNavHeight));
    max-height: 100dvh;
    overflow: hidden;
    justify-content: space-between;
  }

  #asset-2001 .slide-background,
  #asset-2001 .slide-foreground {
    position: relative;
    inset: unset;
    margin: 0;
    width: 100%;
  }

  #asset-2001 .slide-background {
    height: auto;
    background-size: cover;
    height: 60%;
  }

  #asset-2001 .slide-foreground {
    background: transparent;
    padding: 2rem;
    display: block;
  }

  figure.mc_md_stack .slide-foreground figcaption.mc_collectionContent {
    justify-content: flex-start;
    margin-top: 0%;
    max-height: 70%;
    justify-content: center;
  }

  #asset-2121 {
    background: #000;
  }

  /* other  - chapter box - video */
  figure.mc_chapter_box .slide-foreground {
    height: 100%;
  }

  figure.mc_chapter_box figcaption.mc_collectionContent {
    justify-content: center;
  }

  figure.mc_video .mc_collectionContent_inner {
    max-width: 100%;
  }

  figure.mc_video figcaption.mc_collectionContent {
    position: relative;
    min-width: 0;
    justify-content: flex-start;
    padding-top: 5rem;
  }

  figure.mc_md_stack.mc_coll_asset_intro .slide-background:after {
    display: none;
  }

  #asset-2001 .slide-background:after,
  figure.mc_md_stack.mc_coll_asset_intro .slide-background:after {
    content: "";
    height: 40%;
    width: 100%;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    display: block;
    top: unset;
    background: #000000;
    background: linear-gradient(
      0deg,
      rgba(0, 0, 0, 1) 29%,
      rgba(13, 4, 4, 0) 47%,
      rgba(0, 0, 0, 0) 100%
    );
    margin-bottom: -3px;
  }

  figure.mc_image_content_left
    .slide-foreground
    .netx-asset-card__media
    img.mc_mediaImage {
    object-fit: cover !important;
    object-fit: contain !important;
    object-position: top center;
  }

  .tmm-netx-gallery.netx-collection
    .mc_image_content_left
    button.netx-asset-card__more.mc_modalButton.mc_mediaImageButton {
    width: 100%;
  }

  #asset-2001.mc_md_stack .slide-foreground {
    padding: 0;
  }

  #asset-2001.mc_md_stack .slide-foreground figcaption.mc_collectionContent {
    padding: 2rem;
    background: #000;
    max-height: unset;
    justify-content: flex-start;
    text-align: left;
  }

  #asset-2001.mc_md_stack .slide-foreground figcaption.mc_collectionContent p {
    text-align: left;
  }
  #asset-2003.mc_chapter_box .slide-background,
  .mc_chapter_box .slide-background {
    max-height: 45% !important;
  }

  figure.mc_video .slide-foreground .netx-asset-card__media.mc_collectionVideo {
    margin-top: 3rem;
  }

  #asset-2004.mc_image_content_left
    .slide-foreground
    .netx-asset-card__media.coll_start_image {
    max-height: unset;
    height: 50vh;
    min-height: 50vh;
  }

  #asset-2004.mc_image_content_left
    .slide-foreground
    .netx-asset-card__media.coll_start_image
    img.mc_mediaImage {
    object-fit: cover;
    height: 50vh;
    max-height: unset;
    width: 100%;
  }

  .tmm-netx-gallery.netx-collection
    .mc_image_content_left
    button.netx-asset-card__more.mc_modalButton.mc_mediaImageButton {
    width: 100%;
  }

  #asset-2004.mc_image_content_left.mc_image_content_left_alt
    button.netx-asset-card__more.mc_modalButton.mc_mediaImageButton {
    height: 50vh;
    width: 100%;
    padding-inline: 0;
  }
  .mc_coll_asset_intro p.mc_collectionDesc,
  .mc_coll_asset_intro h1.mc_collectionTitle,
  .mc_coll_asset_intro h2.mc_collectionTitle {
    margin: 0 auto;
    max-width: 600px;
    width: 100%;
    text-align: left;
    margin-bottom: 2rem;
  }

  .mc_image_content_left figcaption.mc_collectionContent {
    max-width: unset;
  }

  /* fixing slide by slide for mobile */

  #asset-2004.mc_image_content_left
    .slide-foreground
    .netx-asset-card__media.coll_start_image
    img.mc_mediaImage {
    object-fit: contain;
  }

  #asset-2004.mc_text_box_right span.mc_mediaImgButtonInner {
    width: auto;
    max-width: fit-content;
    margin: auto;
  }

  #asset-2106
    .slide-foreground
    .netx-asset-card__media.coll_start_image.parallax-down {
    justify-content: inherit;
    align-items: center;
  }

  #asset-2106
    .slide-foreground
    .netx-asset-card__media.coll_start_image.parallax-down
    img.mc_mediaImage {
    transform: rotateZ(5deg);
  }

  #asset-2006 .netx-asset-card__media.coll_start_image,
  #asset-2016 .netx-asset-card__media.coll_start_image {
    max-height: 300px;
    height: 100dvh;
  }

  #asset-2007 .netx-asset-card__media.coll_start_image {
    max-height: 150px;
    height: 100dvh;
  }

  #asset-2013 .netx-asset-card__media.coll_start_image {
    max-height: fit-content;
    height: 100dvh;
    min-height: 0;
  }

  #asset-2013 .netx-asset-card__media.coll_start_image img.mc_mediaImage {
    object-fit: contain;
  }

  #asset-2014 .netx-asset-card__media.coll_start_image {
    max-height: fit-content;
    height: 100dvh;
    min-height: 0;
  }

  #asset-2014 .netx-asset-card__media.coll_start_image img.mc_mediaImage {
    object-fit: contain;
  }

  #asset-222 .netx-asset-card__media.coll_start_image {
    max-height: 500px;
    height: 100dvh;
    min-height: 0;
  }

  #asset-2012 .slide-background {
    background-position: 75% center;
  }

  #asset-2022 .slide-background {
    background-position: right bottom;
  }
  #asset-219 figcaption.mc_collectionContent {
    justify-content: center;
  }

  .mc_text_center
    figcaption.mc_collectionContent
    .mc_collectionContent_inner
    h2,
  .mc_text_center
    figcaption.mc_collectionContent
    .mc_collectionContent_inner
    p {
    text-align: left;
  }

  span.mc_mediaImgButtonInner {
    width: fit-content;
    margin: auto;
    max-width: max-content;
    max-height: fit-content;
    padding-top: 1rem;
  }

  figcaption.mc_collectionContent .mc_collectionContent_inner {
    overflow-y: scroll; /* Forces visible scrollbar space */
    scrollbar-width: none; /* Disable Firefox default scrollbar */
    position: relative;
  }

  /* ---- CUSTOM SCROLLBAR (webkit browsers) ---- */
  figcaption.mc_collectionContent
    .mc_collectionContent_inner::-webkit-scrollbar {
    width: 10px;
    background: transparent; /* We supply our own track */
  }

  /* Track */
  figcaption.mc_collectionContent
    .mc_collectionContent_inner::-webkit-scrollbar-track {
    background: #e3e3e3; /* Always visible track */
    border-radius: 6px;
  }

  /* Thumb */
  figcaption.mc_collectionContent
    .mc_collectionContent_inner::-webkit-scrollbar-thumb {
    background: #505050; /* Darker thumb */
    border-radius: 6px;
    border: 2px solid #e3e3e3; /* Creates a gap visually */
  }

  /* Hover state */
  figcaption.mc_collectionContent
    .mc_collectionContent_inner::-webkit-scrollbar-thumb:hover {
    background: #3b3b3b;
  }

  /* ---- FIREFOX CUSTOM SCROLLBAR ---- */
  figcaption.mc_collectionContent .custom-scrollbar-track,
  figcaption.mc_collectionContent .custom-scrollbar-thumb {
    display: none; /* Reset if injected elsewhere */
  }

  /* Force Firefox into custom-color mode */
  figcaption.mc_collectionContent .mc_collectionContent_inner {
    scrollbar-color: #505050 #e3e3e3; /* thumb / track */
  }

  /* Prevent Firefox fading behavior */
  figcaption.mc_collectionContent .mc_collectionContent_inner {
    scrollbar-width: thin; /* Prevents invisible/overlay mode */
  }

  /* ---- OPTIONAL: If you want a slimmer line ---- */
  figcaption.mc_collectionContent
    .mc_collectionContent_inner.thin-scroll::-webkit-scrollbar {
    width: 6px;
  }

  .netx-gallery-nav__link {
    font-size: 1rem;
  }

  .netx-gallery-nav__title {
    max-width: 33%;
  }

  .netx-gallery-nav__arrow.netx-gallery-nav__arrow--right,
  .netx-gallery-nav__arrow.netx-gallery-nav__arrow--left {
    background: #d1d1d1;
    height: calc(100% - 2px);
    padding-inline: 0.5rem;
  }

  .netx-gallery-nav__arrow.netx-gallery-nav__arrow--right {
    right: 0;
  }

  .netx-gallery-nav__arrow--right:after,
  .netx-gallery-nav__arrow:after {
    width: 1rem;
    height: 1rem;
  }

  .netx-gallery-nav__arrow--left:after {
    left: 0;
  }

  .netx-gallery-nav__inner {
    padding-right: 0;
  }

  .netx-gallery-nav__links-scroll {
    padding-inline: 0;
  }

  .netx-gallery-nav__links-scroll a:first-of-type {
    margin-left: 1rem;
  }

  .netx-gallery-nav__links-scroll a:last-of-type {
    margin-right: 1rem;
  }

  .gallery-counters {
    opacity: 0.85;
    bottom: 0.55rem;
  }

  .gallery-counters * {
    font-size: 0.9rem;
  }

  .mc_image_backgroundButton.mc_image_backgroundButton_d {
    display: none;
  }

  button.mc_image_backgroundButton.mc_image_backgroundButton_m {
    display: block;
  }

  .slide-background {
    overflow: hidden;
  }

  .mc_image_custom .slide-foreground {
    padding-bottom: 0 !important;
  }
  #asset-2202 .slide-background {
    background-position-x: 75%;
  }
  #asset-2029 .slide-background {
    background-position-x: 75%;
  }
  #asset-2026 .slide-background {
    background-position-x: 27%;
  }
  .mc_coll_asset_intro figcaption.mc_collectionContent {
    justify-content: flex-start !important;
  }
  span.mc_infoTextWrap {
    max-width: 90vw;
  }

  h2.mc_collectionTitle {
    font-size: 2rem;
  }

  #asset-2121 p.mc_collectionDesc {
    text-align: center !important;
  }
}

.mc_video span.mc_infoTextWrap {
  bottom: unset;
  top: 0;
}

.mc_infoTextWrap {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 50;
  display: flex;
  flex-direction: row-reverse;
  align-items: end;
  width: 100%;
  padding: 1rem;
  align-items: flex-end;
  justify-content: right;
}

.mc_infoTextWrap svg {
  width: 3rem;
  height: 3rem;
}

.mc_infoTextWrap .mc_mediaImgIcon {
  padding: 0;
  margin: 0;
  font-size: 0;
}

.mc_infoTextWrap .mc_mediaImgInfoText {
  font-size: 0.9em;
}

.mc_mediaImgIcon:active,
.mc_mediaImgIcon:focus,
.mc_mediaImgIcon:hover {
  outline: none;
  border: none;
  background: transparent;
  box-shadow: none !important;
}
.mc_mediaimgicon_alt path.mc_mediaImgIcon_path1 {
  fill: #8d8d8d;
}

.mc_mediaimgicon_alt path.mc_mediaImgIcon_path2 {
  fill: #333;
}

button.mc_mediaImgIcon[aria-expanded="true"] svg path.mc_mediaImgIcon_path1 {
  fill: #c308c3;
}

/*  */
/* .mc_collection_endContent */
span.mc_infoTextWrap {
  width: 100%;
  z-index: 250;
}

span.mc_mediaImgButtonInner {
  display: block;
  position: relative;
}
span.mc_infoTextWrap.mc_mediaImgIconWrapper {
  display: none;
}

.is-active-slide span.mc_infoTextWrap.mc_mediaImgIconWrapper {
  display: flex !important;
}

#asset-2423:not(.is-active-slidez) span.mc_mediaImgButtonInner {
  align-self: center !important;
  padding: 3rem !important;
}

#asset-2423:not(.is-active-slidez)
  span.mc_mediaImgButtonInner
  img.mc_mediaImage {
  max-height: 60vh !important;
  top: 3rem !important;
  position: relative;
}

/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */

span.mc_dib {
  display: inline-block;
}
.collection_nav_401 .netx-gallery-nav__link {
  cursor: grab;
}

.collection_nav_401 .netx-gallery-nav__link:active {
  cursor: grabbing;
}

/* desktop */
@media (min-width: 999px) {
  .tmm-netx-gallery-loader.collection_401 .collection_401 {
    justify-content: space-evenly;
    height: 100%;
    padding-bottom: 10vh;
  }

  .tmm-netx-gallery-loader.collection_401 :before,
  .tmm-netx-gallery-loader.collection_401 :after {
    content: "";
    width: 100%;
    height: 100%;
  }

  .tmm-netx-gallery-loader.collection_401 img {
    max-width: 700px;
  }
}

.netx-modals-container.modals_container_401 .netx-modal__close {
  background-color: #d03d26;
}

.netx-modals-container.modals_container_401 .netx-modal__details h3 {
  border-left: 4px solid #d03d26;
}

.netx-modals-container.modals_container_401 section.netx-modal__details {
  background: #15100e;
}

.slide-foreground.slide-foreground_bflv {
  position: absolute;
  inset: 0;
  height: calc(100dvh - var(--siteTopWrapHeight) - var(--netxNavHeight));
  margin: 0 auto;
  max-width: 1400px;
}

.bflv_introContent {
  width: 100%;
  height: 100%;
  display: grid;
}

.bflv_introImages img {
  width: 49%;
  height: auto;
  object-fit: contain;
}

.bflv_logo {
  text-align: center;
}

h2.bflv_collectionTitle {
  color: #cf3d26;
  text-align: center;
  padding: 3rem;
}

p.bflv_collectionDesc {
  padding: 3rem;
  text-align: center;
  color: #d5d1c9;
}

.slide-foreground.slide-foreground_bflv img {
  height: 100%;
  object-fit: contain;
}
.slide-foreground.slide-foreground_bflv .scroll-down-indicator {
  top: unset;
  bottom: 3rem;
}
/*  */
.bflv_contentCenterBottom
  .slide-foreground_bflv
  figcaption.mc_collectionContent {
  display: flex;
  margin-bottom: 3rem !important;
  justify-content: end;
  flex-direction: column;
}
/* Asset Captions */
.bflv_assetCaption.bflv_assetCaption_TopRight {
  max-width: 540px;
  position: absolute;
  right: 2rem;
  top: 2rem;
  color: #fff;
  line-height: 1.2;
  font-weight: 300;
}

/*  */
.slide-foreground.slide-foreground_bflv {
  max-width: 100vw !important;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: normal;
}

.slide-foreground.slide-foreground_bflv > * {
  width: unset;
}

.bflv_introContentStacked {
  width: 100%;
  max-width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}

.bflv_introContentStacked > * {
  max-width: 1400px;
  margin-inline: auto;
  width: 100%;
}

.bflv_introImages img {
  width: 100%;
  height: 100%;
  max-height: 40vh;
}

.bflv_assetCaption {
  width: 100%;
  color: #fff;
}
.bflv_contentCenterBottom
  .slide-foreground_bflv
  figcaption.mc_collectionContent {
  justify-content: end;
  flex-direction: column;
}
/*  */
.slide-background.slide-background_vertical_split {
  position: relative;
  height: 60%;
  inset: unset;
}

.vertical_split {
  flex-direction: column;
  display: block;
}
.vertical_split button.netx-asset-card__more.coll_start_image_button {
  padding: 0;
  margin: 0;
  position: absolute;
  inset: 0;
}
figcaption.mc_collectionContent.content_mc_vertical_split {
  text-align: center;
}

figcaption.mc_collectionContent.content_mc_vertical_split
  .mc_collectionContent_inner {
  max-width: 700px;
  text-align: center;
}
/* mobile */
@media (max-width: 999px) {
  figcaption.mc_collectionContent.content_mc_vertical_split
    .mc_collectionContent_inner {
    text-align: left;
  }
}

.slide-background.slide-background_vertical_split {
  background-position: center;
}

.slide-foreground.slide-foreground_vertical_split {
  height: 40%;
}
/* bflv_slide_ContentRow and reverse  */
.bflv_slide_ContentRow {
  height: 100%;
}

.bflv_slide_ContentRow .bflv_slide_ContentRow_inner {
  height: 100%;
  display: flex;
  max-width: 1400px;
  margin: auto;
  justify-content: center;
  align-items: center;
}

.bflv_slide_ContentRow .bflv_slide_Images {
  width: 50%;
  text-align: center;
}

.bflv_slide_ContentRow .bflv_slide_TextContent {
  width: 50%;
  text-align: left;
}

.bflv_slide_ContentRow img.mc_slide_Image {
  width: 100%;
  max-height: 60vh;
}

.bflv_slide_ContentRow .bflv_slide_Images_inner {
  display: inline-block;
  position: relative;
}

.bflv_slide_ContentRow p.bflv_collectionDesc {
  text-align: left;
  max-width: 500px;
}
/* content reverse */
.content_row_reverse .bflv_slide_ContentRow_inner {
  flex-direction: row-reverse;
}
/* LG */
.content_row_lg .bflv_slide_ContentRow_inner {
  gap: 6vw;
  max-width: 1600px !important;
}

.content_row_lg .bflv_slide_Images_inner {
  height: 100%;
  width: 100%;
  display: flex !important;
  flex-direction: column;
}

.content_row_lg .bflv_slide_Images {
  height: 100%;
}

.content_row_lg img.mc_slide_Image {
  max-height: 100vh !important;
  object-fit: cover !important;
}

.content_row_lg .bflv_slide_ImageWrapper {
  height: 100%;
}

.content_row_lg .bflv_assetCaption {
  padding: 2rem;
}
/*  */
.mc_split_asset_content + .mc_split_asset_content .slide-background {
  background: #000 !important;
}
/*  */
.bflv_assetCaption .gallery-caption--mobile {
  display: none;
}

@media (max-width: 999px) {
  .bflv_assetCaption .gallery-caption--desktop {
    display: none;
  }

  .bflv_assetCaption .gallery-caption--mobile {
    display: inline;
  }
}
/* Mobile  */

@media (max-width: 999px) {
  .bflv_contentCenterBottom figcaption.mc_collectionContent {
    justify-content: center !important;
  }

  .bflv_contentCenterBottom
    span.mc_infoTextWrap.mc_mediaImgIconWrapper.mc_mediaImgIconWrapper_d {
    bottom: unset;
    top: calc(0px + 0rem) !important;
    padding: 0;
    min-height: 50px;
  }

  .bflv_contentCenterBottom .bflv_assetCaption.bflv_assetCaption_TopRight {
    top: unset;
    bottom: 0;
    right: unset;
    padding: 1rem;
    font-size: 70%;
    background: #0000008a;
    max-width: 100%;
  }

  .bflv_contentCenterBottom
    span.mc_infoTextWrap.mc_mediaImgIconWrapper.mc_mediaImgIconWrapper_m {
    display: none !important;
  }

  .bflv_contentCenterBottom button.mc_mediaImgIcon {
    align-self: start;
  }

  .bflv_contentCenterBottom .slide-background {
    background-position: 10% bottom;
  }
}
/*  */
.slide-foreground.slide-foreground_bflv
  figcaption.mc_collectionContent
  .mc_collectionContent_inner {
  max-width: 700px;
  background: hsl(17.14deg 20% 6.86% / 90%);
}

.slide-foreground.slide-foreground_bflv
  figcaption.mc_collectionContent
  .mc_collectionContent_inner
  h2.mc_collectionTitle {
  color: #d03d26;
}

.slide-foreground.slide-foreground_bflv
  figcaption.mc_collectionContent
  .mc_collectionContent_inner
  p.mc_collectionDesc {
  font-weight: 200;
  line-height: 1.34;
}
/*  */
.stacked_content.mc_background_tint .slide-background::after {
  background: hsl(17.14deg 20% 6.86% / 92%);
}

.stacked_content p.bflv_collectionDesc {
  max-width: 700px;
  margin-inline: auto;
  text-align: left;
}

.stacked_content .bflv_introContentStacked_inner {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5rem;
}

.bflv_introImages {
  position: relative;
  width: fit-content;
  max-width: 100%;
  margin: auto;
}
.vertical_split h2.mc_collectionTitle {
  color: #d03d26;
}

.vertical_split p.bflv_assetCaption {
  position: absolute;
  top: 0;
  right: 0;
  text-align: right;
  padding: 1rem;
}
/*  */

.content_row .bflv_slide_ImageWrapper img.mc_introImage {
  max-height: 60vh;
}

.content_row .bflv_slide_ImageWrapper picture.mc_introImageWrap {
  height: 100%;
  display: inline-block;
}
/*  */
.content_row_lg picture.mc_introImageWrap {
  display: flex !important;
  flex-direction: column;
}
picture.mc_introImageWrap:after {
  content: "";
  position: absolute;
  inset: 0;
}
button.netx-asset-card__more.mc_modalButton.mc_mediaImageButton:after {
  content: "";
  position: absolute;
  inset: 0;
}
.content_row_lg img.mc_introImage {
  max-height: 100vh !important;
  object-fit: cover;
}
/*  */
.is-split-content figcaption.mc_collectionContent .mc_collectionContent_inner {
  margin: auto;
  max-width: 700px;
  text-align: center;
}

.is-split-content figcaption.mc_collectionContent {
  text-align: center;
}

.is-split-content
  figcaption.mc_collectionContent
  .mc_collectionContent_inner
  h2.mc_collectionTitle {
  color: #d03d26;
}

div#asset-2684 h2.bflv_collectionTitle {
  order: -5;
}

div#asset-2684 p.bflv_collectionDesc {
  order: -1;
}

@media (max-width: 1000px) {
  .content_row .bflv_slide_ContentRow_inner {
    flex-direction: column;
  }

  .content_row .bflv_slide_ContentRow_inner > * {
    width: 100%;
  }
}

/*  */
.mc_delay_content_loadIn .slide-foreground {
  opacity: 0;
}
@media (max-width: 999px) {
  /*  */
  .content_row .bflv_slide_ContentRow_inner {
    flex-direction: column;
  }

  .content_row .bflv_slide_ContentRow_inner > * {
    width: 100% !important;
  }
}
.collection_401 .slide-background {
  background-color: #15100e;
  background-position: left top;
}
/*  */

.bflv_introContent {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 50% / 50% */
  grid-column-gap: 3rem;
  grid-row-gap: 1rem;
  max-width: 1400px;
  margin: auto;
}

.bflv_introContent .bflv_introImages {
  grid-area: 1 / 1;
  width: 100%;
}
.bflv_introContent .bflv_introText.bflv_introText_Start {
  grid-area: 1 / 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bflv_introContent .slide-foreground.slide-foreground_bflv img {
  max-height: unset;
}

.content_center_background
  .slide-foreground_bflv
  figcaption.mc_collectionContent
  .mc_collectionContent_inner {
  margin-bottom: 15vh;
  background-color: #15100e;
}
/*  */

.classic_mc_introImageWrap {
  display: inline-block;
  width: max-content;
  max-width: 100%;
}

.classic_mc_introImageWrap span.mc_infoTextWrap.mc_mediaImgIconWrapper {
  right: 3rem;
  bottom: 5rem;
}

.stacked_content .MORE_mc_collectionContent_inner {
  max-width: 800px;
  margin: 0 auto 7vh;
}

.stacked_content .MORE_mc_collectionContent_inner p.mc_collectionDesc {
  text-wrap: unset;
}

.bflv_assetCaption {
  color: #d5d1c9;
  font-size: 0.9em;
  padding: 0.25em;
  line-height: 1.23;
}

.bflv_slide_ContentRow .bflv_slide_ContentRow_inner {
  gap: 5rem;
}

.bflv_slide_ContentRow h2.mc_collectionTitle {
  color: #d03d26;
}

nav#netx-gallery-nav.collection_nav_401 {
  background-color: #d5d1c9;
}

div#asset-2684.stacked_content .bflv_introContentStacked_inner {
  flex-direction: column-reverse;
}

div#asset-2684 h2.mc_collectionTitle {
  text-align: center;
  color: #d03d26;
}

div#asset-2684.stacked_content .MORE_mc_collectionContent_inner {
  margin: 0rem auto;

  * {
    text-align: center;
  }
}

div#asset-2684 .bflv_assetCaption {
  text-align: center;
}

#asset-2687 .slide-background {
  background-size: contain;
  max-width: 800px;
  margin: auto;
  background-position: center;
}

.tmm-netx-gallery.netx-collection.collection_401 .netx-gallery-inner {
  background-color: #15100e;
}

#asset-2687 .mc_collectionContent_inner {
  display: none;
}

#asset-2642 .bflv_assetCaption.bflv_assetCaption_TopRight {
  color: #15100e;
}
/* desktop */
@media (min-width: 999px) {
  #asset-2642 .bflv_assetCaption.bflv_assetCaption_TopRight {
    text-align: right;
    text-wrap: unset;
    max-width: unset;
    padding: 1rem;
    top: 0;
    right: 0;
  }
}
/* mobile */
@media (max-width: 999px) {
  figure#asset-2642 .slide-background {
    background-position: 70% top;
  }
}

.split_vertical_wrap figcaption.mc_collectionContent.content_mc_vertical_split {
  background-color: #15100e !important;
  background-color: transparent !important;
}

.split_vertical_wrap .mc_collectionContent_inner {
  background-color: #15100e !important;
  background-color: transparent !important;
}

.collection_401
  button.mc_mediaImgIcon[aria-expanded="true"]
  svg
  path.mc_mediaImgIcon_path1 {
  fill: #d03d26;
}

div#asset-2643 .slide-background.slide-background_vertical_split {
  background-position: left top;
  background-size: cover;
}

.bflv_slide_ContentRow .bflv_slide_ContentRow_inner {
  padding-inline: 2rem;
}

.content_row_lg .bflv_slide_ContentRow .bflv_slide_ContentRow_inner {
  padding-right: 0;
}

#asset-2670 .slide-background {
  background-position: center bottom !important;
  background-color: #15100e !important;
}

#asset-2670.is-split-content
  figcaption.mc_collectionContent
  .mc_collectionContent_inner {
  background: transparent;
}

div#asset-2687 .slide-background {
  background-size: 90%;
  background-position: center;
}
@media (max-width: 999px) {
  div#asset-2687 .slide-background {
    background-size: 85%;
    background-position-y: 50%;
    background-position-x: center;
  }
}

.is-split-content figcaption.mc_collectionContent {
  background-color: transparent !important;
}

.bflv_assetCaption {
  opacity: 0;
  transition: all 300ms ease;
}

.is-active-slide .bflv_assetCaption {
  opacity: 1;
}
.bflv_assetCaption_special {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  background-color: #15100e !important;
  color: #d6d1c9;
}

.bflv_assetCaption_inner {
  max-width: 800px;
  margin: auto;
  padding: 1rem;
  text-align: center;
}

.mc_split_asset_content + .mc_split_asset_content .bflv_assetCaption_special {
  display: none !important;
}
.mc_split_asset_content button.netx-asset-card__more.coll_start_image_button {
  position: absolute;
  inset: 0;
}

.mc_split_asset_content .slide-foreground {
  display: none;
}

.mc_split_asset_content + .mc_split_asset_content .slide-foreground {
  display: flex;
}

.mc_split_asset_content
  + .mc_split_asset_content
  span.mc_infoTextWrap.mc_mediaImgIconWrapper,
.mc_split_asset_content
  + .mc_split_asset_content
  button.netx-asset-card__more.coll_start_image_button {
  display: none !important;
}
@media (max-width: 999px) {
  /* ===============================
   Mobile stacked layout
   =============================== */

  .bflv_slide_ContentRow_inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 0;
    overflow: hidden;
    gap: 1rem;
  }

  /* ===============================
   Image block (max 70% height)
   =============================== */

  .bflv_slide_Images {
    flex: 0 0 auto;
    max-height: 70%;
    min-height: 0;
    overflow: hidden;
    padding-top: 1rem;
  }

  .bflv_slide_Images_inner {
    height: 100%;
    min-height: 0;
    overflow: hidden;
  }

  .bflv_slide_ImageWrapper {
    position: relative;
    overflow: hidden;
  }

  /* Image behavior */
  .bflv_slide_ImageWrapper img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: contain;
  }

  /* Caption stays inside image area */
  .bflv_assetCaption {
    flex: 0 0 auto;
    font-size: 0.75em;
    line-height: 1.25;
    text-align: center;
    text-wrap: balance;
    overflow-wrap: anywhere;
  }

  /* ===============================
   Text content (scroll container)
   =============================== */

  .bflv_slide_TextContent {
    flex: 1 1 auto;
    min-height: 0;
    overflow-y: auto;
    overflow-x: hidden;

    padding-inline: 1rem;

    /* IMPORTANT: no baseline alignment */
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
  }

  /* Inner wrappers must not stretch */
  .mc_collectionContent_inner,
  .MORE_mc_collectionContent_inner {
    min-height: 0;
    flex: 0 0 auto;
  }

  /* Ensure content always starts at top */
  .MORE_mc_collectionContent_inner {
    margin-top: 0;
  }

  /* Paragraph handling */
  p.mc_collectionDesc,
  .mc_collection_endContent p {
    text-wrap: auto;
  }
  /* ===============================
   Mobile stacked layout (intro)
   =============================== */

  .bflv_introContentStacked {
    height: 100%;
    min-height: 0;
    overflow: hidden;
  }

  .bflv_introContentStacked_inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 0;
    overflow: hidden;
    gap: 1rem;
  }

  /* ===============================
   Image block (max 70% height)
   =============================== */

  .bflv_introImages {
    flex: 0 0 auto;
    max-height: 70%;
    min-height: 0;
    overflow: hidden;
  }

  .bflv_introImageInner {
    height: 100%;
    min-height: 0;
    overflow: hidden;
  }

  /* Anchor overlays (icon/caption) to the image area */
  .bflv_introImageInner .mc_introImageWrap {
    position: relative;
    overflow: hidden;
  }

  /* Image behavior */
  .bflv_introImageInner img.mc_introImage {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
    margin-top: 1rem;
  }

  /* Caption stays inside image area */
  .bflv_assetCaption {
    font-size: 0.75em;
    line-height: 1.25;
    text-align: center;
    text-wrap: balance;
    overflow-wrap: anywhere;
  }

  /* ===============================
   Text content (scroll container)
   =============================== */

  .bflv_introContentStacked_inner > .mc_collectionContent_inner {
    flex: 1 1 auto;
    min-height: 0;
    overflow-y: auto;
    overflow-x: hidden;
    padding-inline: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* always top */
    align-items: stretch;
    font-size: 0;
  }

  .bflv_introContentStacked_inner
    > .mc_collectionContent_inner
    > .MORE_mc_collectionContent_inner {
    flex: 0 0 auto;
    min-height: 0;
    margin-top: 0;
    text-align: left !important;
  }

  p.mc_collectionDesc {
    text-wrap: auto;
  }

  .bflv_slide_ContentRow_inner {
    padding: 0 !important;
    gap: 1rem !important;
  }

  .content_row .bflv_slide_ImageWrapper img.mc_introImage {
    height: 100%;
  }

  .bflv_slide_ImageWrapper {
    max-height: 100%;
    height: calc(100% - 5rem) !important;
  }
  /* home slide */
  div#asset-2630 .bflv_introContent {
    flex-direction: column;
    display: flex;
  }
  /*  */
  span.mc_infoTextWrap {
    align-items: flex-start;
    bottom: unset;
  }

  p.bflv_assetCaption {
    color: #d5d1c9 !important;
  }

  .classic_mc_introImageWrap_inner {
    position: relative !important;
  }

  .classic_mc_introImageWrap_outer {
    position: relative;
  }

  .bflv_contentCenterBottom .bflv_assetCaption.bflv_assetCaption_TopRight {
    color: #d5d1c9 !important;
  }

  div#asset-2643 .slide-background.slide-background_vertical_split {
    background-size: cover;
    position: relative;
  }

  div#asset-2643
    .slide-background.slide-background_vertical_split
    span.mc_infoTextWrap.mc_mediaImgIconWrapper {
    top: 0;
    /* bottom: 0rem; */
    align-items: center;
    padding: 0;
  }

  div#asset-2643
    .slide-background.slide-background_vertical_split
    span.mc_infoTextWrap.mc_mediaImgIconWrapper
    span.mc_infoTextWrap {
    position: relative;
    align-items: flex-start;
  }

  div#asset-2643
    .slide-background.slide-background_vertical_split
    p.bflv_assetCaption {
    top: unset;
    bottom: 0;
    left: 0;
    background: #15100e8a;
    text-align: center;
  }

  .content_row_lg .bflv_assetCaption {
    padding: 1rem 0;
  }

  .is-split-asset + .is-split-asset * {
    border: 4px solid red;
  }

  figure#asset-2670.is-split-asset .slide-background {
    background-size: contain;
    aspect-ratio: 16 / 9;
    width: 100%;
    height: 59%;
    background-position: left top !important;
  }

  figure#asset-2670.is-split-asset .slide-foreground {
    z-index: -2;
  }
  figure#asset-2670.is-split-content span.mc_infoTextWrap {
    display: none;
  }

  figure#asset-2670 button.netx-asset-card__more.coll_start_image_button {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
  }

  figure#asset-2670 .bflv_assetCaption_special {
    height: 40%;
    display: flex;
    font-size: 1.3rem;
  }

  .content_row span.mc_infoTextWrap.mc_mediaImgIconWrapper {
    bottom: 0 !important;
    padding: 0;
  }

  .content_row
    span.mc_infoTextWrap.mc_mediaImgIconWrapper
    span.mc_infoTextWrap {
    position: relative;
  }

  /*  */
  picture.mc_introImageWrap {
    display: block;
    position: relative;
  }

  .stacked_content span.mc_infoTextWrap.mc_mediaImgIconWrapper {
    bottom: 0;
  }

  .stacked_content
    span.mc_infoTextWrap.mc_mediaImgIconWrapper
    span.mc_infoTextWrap {
    position: relative;
    align-items: end;
  }

  .bflv_introContentStacked_inner > .mc_collectionContent_inner {
    flex: unset;
  }

  div#asset-2643.split_vertical_wrap
    figcaption.mc_collectionContent.content_mc_vertical_split {
    justify-content: center;
  }

  .bflv_slide_ContentRow .bflv_slide_ContentRow_inner {
    justify-content: space-evenly;
    display: flex;
  }

  .mc_collectionContent_inner {
    height: 100%;
  }

  .mc_collectionContent_inner {
    display: flex;
    flex-direction: column;
  }

  .mc_collectionContent_inner:after,
  .mc_collectionContent_inner:before {
    content: " ";
    width: 100%;
    height: 100%;
    background: transparent !important;
  }

  /* fix home  */
  .bflv_start .slide-foreground.slide-foreground_bflv {
    padding: 0;
  }

  .bflv_start .bflv_introContent .bflv_introImages {
    flex: unset;
    height: 40%;
    margin: 0;
  }

  .bflv_start .bflv_introImageWrapper.bflv_introImageWrapper_Start {
    height: 100%;
  }

  .bflv_start button.netx-asset-card__more.mc_modalButton.mc_mediaImageButton {
    height: 100%;
  }

  div#asset-2630.bflv_start .bflv_introContent {
    justify-content: space-evenly;
    gap: 2rem;
    padding-block: 2rem !important;
  }

  .collection_401 .bflv_start .bflv_logo img {
    max-height: 30vh;
  }

  .bflv_start p.bflv_collectionDesc {
    text-wrap: balance;
    padding: 1rem;
  }

  /*  */
}
/*  */
.slide-foreground.slide-foreground_bflv {
  padding-inline: 1rem;
}

.bflv_introImages.bflv_introImages_Start > div {
  text-align: center;
}

.collection_401 .bflv_logo img {
  width: 90%;
}

.collection_401 .bflv_slide_Images_inner {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.collection_401 .bflv_slide_ImageWrapper {
  flex: 1 1 auto;
  min-height: 0;
}

.collection_401 .bflv_assetCaption {
  flex: 0 0 auto;
}

.collection_401 .MORE_mc_collectionContent_inner h2.mc_collectionTitle {
  color: #b13420;
}

div#asset-2676 .MORE_mc_collectionContent_inner {
  text-align: center;
}

.collection_nav_401 .netx-gallery-nav__arrow--right:hover:after,
.collection_nav_401 .netx-gallery-nav__arrow:hover:after {
  border-top: 4px solid #d03d26;
  border-right: 4px solid #d03d26;
}

.collection_nav_401.netx-gallery-nav__links-scroll {
  position: relative;
  padding: 0 30px;
}

.collection_nav_401 .netx-gallery-nav__arrow {
  display: flex;
  position: absolute;
  top: 0;
  bottom: 0;
  width: 3rem;
  background: transparent;
  border: none;
  border-radius: 0;
  cursor: pointer;
  z-index: 2;
  align-items: center;
  justify-content: center;
}

.collection_nav_401 .netx-gallery-nav__arrow:after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-top: 2px solid #333;
  border-right: 2px solid #333;
}

.collection_nav_401 .netx-gallery-nav__arrow--left {
  left: calc(-1rem - 1px);
}

.collection_nav_401 .netx-gallery-nav__arrow--left:after {
  transform: translateX(2px) rotate(-135deg);
  /* left: -10px; */
  position: relative;
}

.collection_nav_401 .netx-gallery-nav__arrow--right {
  right: 0;
  background: transparent;
}

.collection_nav_401 .netx-gallery-nav__arrow--right:after {
  transform: translateX(-2px) rotate(45deg);
}

.collection_nav_401 .netx-gallery-nav__arrow--right:after,
.collection_nav_401 .netx-gallery-nav__arrow:after {
  font-size: 2rem;
  border-top: 3px solid #333;
  border-right: 3px solid #333;
  width: 1.25rem;
  height: 1.25rem;
}

.collection_nav_401 .netx-gallery-nav__arrow--right {
  position: sticky;
  right: -0.5rem;
}
.collection_nav_401 .netx-gallery-nav__arrow--left {
  position: sticky;
}

.collection_nav_401 .netx-gallery-nav__links-scroll {
  padding: 0 1rem;
}

.collection_nav_401 .netx-gallery-nav__arrow.netx-gallery-nav__arrow--right,
.collection_nav_401 .netx-gallery-nav__arrow.netx-gallery-nav__arrow--left {
  background: #d6d1c9;
  height: calc(100% - 2px);
  padding-inline: 0.5rem;
}

.collection_nav_401 .netx-gallery-nav__arrow.netx-gallery-nav__arrow--right {
  right: calc(-1rem - 1px);
}
/*  */

.image_main_content .bflv_assetCaption.bflv_assetCaption_TopRight {
  top: unset;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 100%;
  background: #15100e;
  text-align: center;
  padding: 1rem;
  min-height: 6vh;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1.23;
}

.image_main_content
  span.mc_infoTextWrap.mc_mediaImgIconWrapper.mc_mediaImgIconWrapper_d {
  bottom: unset;
  top: 0;
}

.image_main_content span.mc_infoTextWrap {
  bottom: unset;
  top: 0;
}

.image_main_content
  button.netx-asset-card__more.coll_start_image_button.mc_image_backgroundButton.mc_image_backgroundButton_m {
  display: block;
  margin: 0;
}
/*  */
.bflv_slide_ImageWrapper_inner {
  position: relative;
  height: 100%;
}

.classic_mc_introImageWrap_inner {
  text-align: center;
  position: relative;
}
.content_row .bflv_slide_ImageWrapper button.row_button {
  height: 100%;
  width: 100%;
  padding: 0;
  margin: 0;
}

.collection_401 .gallery-counters {
  background: #15100e85;
}

.collection_401 path.mc_mediaImgIcon_path2 {
  fill: #d6d1c9;
}

.collection_401 .gallery-counters * {
  color: #d5d1c9;
}

.netx-collection.collection_401 .vertical_split p.bflv_assetCaption {
  color: #d6d1c9 !important;
}

.collection_401 .bflv_assetCaption {
  text-wrap: balance;
  margin: auto;
  text-align: center;
}

.collection_nav_401 .classic_mc_introImageWrap {
  width: 100%;
}

@media (max-width: 999px) {
  .collection_401 .stacked_content .classic_mc_introImageWrap {
    display: block;
    margin: auto;
  }

  .stacked_content span.mc_infoTextWrap.mc_mediaImgIconWrapper {
    padding-bottom: 0;
  }

  button.netx-asset-card__more.coll_start_image_button {
    margin: 0;
    padding: 0;
  }

  .collection_401 .bflv_assetCaption {
    margin-top: 1rem;
  }
}

.collection_401 .classic_mc_introImageWrap_inner {
  max-width: fit-content;
  margin: auto;
}

.collection_401 .bflv_slide_ImageWrapper_inner {
  max-width: fit-content;
  margin: auto;
}

.collection_401 .content_row_lg .bflv_slide_ImageWrapper_inner {
  max-width: 100%;
}

.collection_401 .content_row_lg .bflv_slide_ImageWrapper_inner img {
  object-position: top left;
}
@media (max-width: 999px) {
  .collection_401 .mc_infoTextWrap .mc_mediaImgInfoText {
    font-size: 1rem;
    color: #d6d1c9;
  }
  .collection_401 span.gallery-caption--mobile {
    position: absolute;
    bottom: 0;
    width: 100%;
    left: 0;
    right: 0;
  }

  div#asset-2619 .slide-background {
    height: 100%;
    background-size: contain;
    width: 100%;
  }

  div#asset-2619.image_main_content
    .bflv_assetCaption.bflv_assetCaption_TopRight {
    height: 50%;
    align-items: baseline;
    font-size: 1.5rem;
    display: flex;
    align-items: flex-start;
    font-size: 1.3rem;
  }
  div#asset-2619.image_main_content
    .bflv_assetCaption.bflv_assetCaption_TopRight:before,
  div#asset-2619.image_main_content
    .bflv_assetCaption.bflv_assetCaption_TopRight:after {
    content: "";
    width: 10%;
    height: 100%;
  }
}

/* @media (min-aspect-ratio: 14/6) and (max-aspect-ratio: 3/1) { */
@media (max-height: 800px) and (min-aspect-ratio: 14/6) {
  div#asset-2650 img.mc_introImage {
    object-position: left center !important;
  }
}
@media (min-width: 600px) and (max-width: 980px) {
  div#asset-2650 img.mc_introImage {
    object-position: center;
  }
  .bflv_slide_ImageWrapper_inner {
    aspect-ratio: 4/2;
  }
}

picture.mc_introImageWrap {
  display: block;
}
div#asset-2650 .bflv_slide_ImageWrapper_inner img {
  object-position: center !important;
}

/* desktop */
@media (min-width: 999px) {
  .collection_401 .bflv_assetCaption {
    padding-inline: 2rem;
  }

  .content_row.content_row_reverse .slide-foreground.slide-foreground_bflv {
    padding-right: 0;
  }

  .content_row.content_row_reverse button.row_button {
    padding-right: 0;
    padding-top: 0;
    margin-top: 0;
  }
}

/* mobile */
@media (max-width: 999px) {
  div#asset-2684.stacked_content .mc_collectionContent_inner:before,
  div#asset-2684.stacked_content .mc_collectionContent_inner:after {
    display: none;
  }

  div#asset-2684.stacked_content .bflv_introImages {
    height: 100%;
    max-height: 60%;
  }
  div#asset-2684.stacked_content .bflv_assetCaption {
    margin-top: 0;
  }
}

div#asset-2684.stacked_content .bflv_introContentStacked_inner {
  gap: 0;
  margin-top: 4vh;
  justify-content: space-evenly;
}
