.montage {
    position: relative;
    /* margin-top: 60px;
    margin-bottom: 48px; */
  }

  .montage-frame-container {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
  }

  .montage-item.first-item {
    height: 200vh;
  }

  .montage-item {
    height: 120vh;
    position: relative;
  }

  .montage-frame.montage-frame-visible {
    opacity: 1;
  }

  .montage-frame {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    bottom: 0;
    width: 100%;
    opacity: 0;
    height: 100vh;
    background: black;
    -webkit-transition: opacity 1s ease-in;
    transition: opacity 1s ease-in;
  }

  .montage-image.active {
    opacity: 1;
  }

  .montage-image {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    -webkit-transition: opacity .5s linear;
    transition: opacity .5s linear;
    opacity: 0;
    background-size: cover;
    background-position: center center;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  .montage-caption {
    font-family: 'Utopia-std', serif;
    font-weight: 400;
    font-weight: normal;
    font-size: 21px;
    max-width: 320px;
    position: absolute;
    top: 50%;
    line-height: 1.3;
    left: 40px;
    color: #fff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
  }