section.hero {
    position: relative;
    font-size: 100%;
    height: 66vh;

}

section.hero div.background {
    z-index: -1;
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    width: 100%;
    background-color: #222222;
}

section.hero div.background img.video_first_frame {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
}

section.hero div.background img.hidden {
    display: none;
}

section.hero div.background video.video_loop {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;

    transition: 200ms;
    transition-timing-function: ease-in-out;
}

section.hero div.background video.use_width {
    width: 100vw;
    height: auto;
}

section.hero div.background video.deactivated {
    opacity: 0.2;
}

section.hero div.description {
    display: block;
    position: absolute;
    bottom: 20%;
    box-sizing: border-box;
    padding-left: 5%;
    padding-right: 5%;
    max-width: 1200px;
}

section.hero div.description h1 {
    margin-bottom: 0.5em;
    font-size: 5em;
    line-height: 1em;
    color: transparent;
    background-image: linear-gradient(#ff0560, #ff4605);
    background-clip: text;
    -webkit-background-clip: text;
}

section.hero div.description.light h2 {
    color: white;
}
section.hero div.description.dark h2 {
    color: #222222;
}




@media only screen and (max-width: 414px) {

    section.hero div.description h1 {
        font-size: 2em;
    }
}