{% scope_css %}
/* Ensure the wrapper is black so images fade "from" dark */
.parallax-wrapper {
  background-color: #000;
}

.parallax-wrapper section {
  height: 100vh;
  height: 100svh; /* Better mobile support */
}

/* Sticky Image Styling */
.js-sticky-image {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  will-change: opacity;
  pointer-events: none; /* Allows user to click things in the foreground */
  z-index: 1;
}

/* Ensure content sits on top of the fixed images */
.relative.z-20 {
  z-index: 20;
}

:host {
  display: block;
  padding: 0 !important;
  margin: 0 !important;
}

hr {
  border-color: #96694d;
}
{% endscope_css %}