#block__hero-image #hero__background
{
    width: 100%;
    height: 100vh;
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: center;
}
#block__hero-image #hero__background.right
{
    justify-content: flex-end;
}
#block__hero-image #hero__background.left
{
    justify-content: flex-start;
}

#block__hero-image #hero__background h1
{
    font-size: 58px;
    line-height: normal;
    font-style: italic;
    z-index: 999;
}
#block__hero-image #hero__background h1.right
{
    margin-top: 500px;
    margin-right: 15vw;
}
#block__hero-image #hero__background h1.left
{
    margin-top: 500px;
    margin-left: 10vw;
}
#block__hero-image #hero__overlay
{
    width: 100%;
    height: 100%;
    position: absolute;
}

@media only screen and (max-width: 768px)
{
    #block__hero-image #hero__background h1.left
    {
        font-size: 40px;
        max-width: 55%;
        margin-left: 15vw;
        margin-top: 400px;
    }
    #block__hero-image #hero__background.right
    {
        justify-content: flex-start;
    }
    #block__hero-image #hero__background h1.right
    {
        font-size: 40px;
        margin-right: 0;
        max-width: 72%;
        margin-left: 15vw;
        margin-top: 400px;
    }
}