.Hero {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
}

.hero__container {
    
    transform: translateZ(0);
    z-index: 10;
    max-width: var(--block-max-width);
    text-align: center;
    padding-left: 1rem;
    padding-right: 1rem;
}

.visual__container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100% - 88px);
    overflow: hidden;
}

.visual__container .visual video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 767px){
    .Hero {
        height: 100vh;
    }
    
    .hero__container h1 {
        font-weight: 300;
        line-height: 1;
        color: #00ff00 !important;
        text-transform: uppercase;
    }

    .visual__container {
        height: 100vh;
    }

    .visual {
        height: 100vh;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }

    .hero__container {
        position: absolute;
        top: 75px;
    }
}

@media (min-width: 768px){
    .Hero {
        height: 100vh;
    }
    
    .hero__container h1 {
        font-weight: 300;
        line-height: 1;
        color: #00ff00 !important;
        text-transform: uppercase;
    }

    .visual__container {
        height: 100vh;
    }

    .visual {
        height: 100vh;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }

    .hero__container {
        position: relative;
    }
}

.hero__container a {
    font-size: 16px;
    color: black;
    background-color: white;
    padding: 8px 32px;
    transition: ease-in-out 0.2s;
}

.hero__container a:hover {
    color: white;
    background-color: black;
}