/** Shopify CDN: Minification failed

Line 15:10 Unexpected "{"
Line 15:19 Expected ":"
Line 15:26 Unexpected "{"
Line 16:15 Expected identifier but found whitespace
Line 16:17 Unexpected "{"
Line 16:26 Expected ":"

**/
.fifty-scroll {
  background: var(--section-bg, #f5f1ea);
}

.section-{{ section.id }} {
  --section-bg: {{ section.settings.background }};
}

.fifty-scroll__desktop {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
}

.fifty-scroll__visual {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}

.fifty-scroll__image-wrapper {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}

.fifty-scroll__image-wrapper.is-active {
  opacity: 1;
}

.fifty-scroll__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fifty-scroll__content {
  position: relative;
}

.fifty-scroll__item {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem;
}

.fifty-scroll__text {
  max-width: 520px;
}

.fifty-scroll__heading {
  margin-bottom: 2rem;
}

.fifty-scroll__body {
  line-height: 1.6;
}

.fifty-scroll__mobile {
  display: none;
}

@media screen and (max-width: 989px) {

  .fifty-scroll__desktop {
    display: none;
  }

  .fifty-scroll__mobile {
    display: block;
  }

  .fifty-scroll__mobile-track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .fifty-scroll__mobile-slide {
    min-width: 100%;
    scroll-snap-align: start;
  }

  .fifty-scroll__mobile-image {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
  }

  .fifty-scroll__mobile-content {
    padding: 2rem;
  }
}