.sticky-scroll-images {
  position: sticky;
  top: 120px;
  height: calc(100vh - 240px);
}

.sticky-scroll-image {
  width: 100%;
  height: 100%;
  position: absolute;
  opacity: 0;
  transition: opacity 0.75s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sticky-scroll-image--active {
  opacity: 1;
}

.sticky-scroll-image img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
}

.sticky-scroll-content-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 64px;
}

@media screen and (min-width: 768px) {
  .sticky-scroll-content-item {
    height: 100vh;
    margin-bottom: 0;
  }

  .sticky-scroll-content-item:last-child {
    height: calc(100vh - 260px);
  }
}

@media screen and (min-height: 800px) {
  .sticky-scroll-content-item {
    height: calc(100vh - 260px);
    margin-bottom: 0;
  }
}

.sticky-scroll-content-image {
  padding-bottom: 32px;
}

@media screen and (min-width: 768px) {
  .sticky-scroll-content-image {
    padding-bottom: 0;
  }
}
