/* style.css */
.scrollmagic-pin-spacer {
  position: relative;
  display: flex;
  flex-direction: column;
  margin-bottom: 150px;
  min-height: 100vh;
  padding-bottom: 3000px;
  overflow: hidden;
}

.story-before-after-slide {
  position: relative;
  width: 100%;
  margin: 0 auto;
}

.story-before-after-slide-content {
  position: relative;
  width: 100%;
  height: 100vh;
}

.story-before-after-slide-content > div {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: opacity 1s ease-in-out;
  background-size: cover;
  background-position: center;
}

.story-before-after-slide-content-image-background,
.story-before-after-slide-content-image-foreground {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.story-before-after-slide-image-caption-before,
.story-before-after-slide-image-caption-after {
  position: absolute;
  width: 100%;
  text-align: center;
  z-index: 10;
}

.story-before-after-slide-image-caption-before img,
.story-before-after-slide-image-caption-after img {
  width: auto;
  max-height: 100px;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.story-transition-arrow {
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
}

.story-transition-arrow-content__arrow svg {
  width: 40px;
  height: auto;
  fill: currentColor;
}
