#scroll-list .content-section {
    height: calc(1.5 * 100vh);
    width: 100%;
    /*font-family: Helvetica Neue, Helvetica, Arial, sans-serif;*/
    position: relative;
}

#scroll-list .content-section .content .subheading

/*,
      #scroll-list .content-section .content .paragraph*/
    {
    opacity: 1;
    opacity: .7;
}

#scroll-list .figure {
    width: 100%;
    height: 100vh;
    margin: 0;
    position: absolute;
    top: 0;
    left: 0;
}

#scroll-list .figure>img {
    display: block;
    width: 100%;
    height: 100%;
    max-width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center center;
    object-position: center center;
}

#scroll-list .content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-rows: 1fr 1fr;
    color: white;
    padding: 90px 12%;
    font-size: 3vmin;
    line-height: 1.3em;
}

#scroll-list .content * {
    text-shadow: 0 0 4vmin rgba(0, 0, 0, 0.25);
}

#scroll-list .content>.header {
    grid-row: 1 / 2;
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-pack: end;
    justify-content: flex-end;
}

#scroll-list .content>.paragraph {
    grid-row: 2 / 3;
    line-height: 1.5;
    margin-top: 30px;
    max-width: 50em;
    width: 80%;
}

#scroll-list .heading {
    font-size: 3em;
    line-height: 1.3em;
    margin: 0;
    width: 80%;
    text-shadow: 0 20px 30px rgb(0, 0, 0, .3);
}

#scroll-list .subheading {
    font-size: 1.25em;
    margin-bottom: .9em;
}

#scroll-list .figure {
    --scale: calc(.8 + (.2 * 1.5 * var(--visible-y)));
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    left: 0;
    margin: 0;
    display: block;
    overflow: hidden;
    will-change: transform;
    -webkit-transform: scale(var(--scale));
    transform: scale(var(--scale));
}

#scroll-list .figure:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-color: black;
    opacity: .3;
    /*opacity: calc( var(--visible-y) );*/
}

#scroll-list .figure>img {
    display: block;
    will-change: transform;
    -webkit-transform: scale(calc(1 / var(--scale)));
    transform: scale(calc(1 / var(--scale)));
}

#scroll-list .heading,
#scroll-list .intro-heading {
    font-weight: 700;
}

@media (max-width: 767px) {

    #scroll-list .content {
        padding: 30px;
        font-size: 10px;
    }

    #scroll-list .subheading {
        font-size: 15px;
    }

    #scroll-list .content>.paragraph {
        font-size: 15px;
    }
}