.hero-heading {
    position: absolute;
    top: 15vh;
    right: 0;
    left: 0;
    margin: 0 auto;
    text-align: center;
}

.hero-heading h2 {
    font-size: 2.5rem;
}

.hero-tagline {
    font-size: 1.8rem;
    line-height: 1;
    margin: 15px 0 30px 0;
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    background-position: center bottom;
    background-size: contain;
    background-repeat: no-repeat;
    height: 45vh;
    width: 100%;
}

.container-parallax {
    height: 85vh;
}

.parallax__container {
    position: absolute;
    top: 0;
    left: 0;
    clip: rect(0, auto, auto, 0);
    height: 100%;
    overflow: hidden;
    width: 100%;
    z-index: -100;
}

.parallax__container .parallax {
    /* --------------------------- */
    position: fixed;
    top: 0;
    /* can be put in a seperate class for better control */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    width: 100%;
}

.reflection {
    background-position: center top;
    background-size: contain;
    background-repeat: no-repeat;
}