.main-teaser {
    position: relative;
    height: 45vw;
    background: #000;
    color: #D9D9D9;
    padding: 20px;
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
.main-teaser h1 {
    color: #fff;
    font-size: var(--font-size-max);
    font-weight: 700;
    max-width: 580px;
    text-transform: uppercase;
    margin: 0;
    line-height: 1;
    padding-top: 2em;
    margin-bottom: 12px;
}
.main-teaser p {
    text-transform: uppercase;
    font-weight: 600;
    font-size: var(--font-size-small);
}
.main-teaser .main-teaser__inner {
    max-width: 1200px;
    width: 100%;
}
.main-teaser__video {
    position: absolute;
    z-index: 0;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
.main-teaser__video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
}
.main-teaser__inner {
    position: relative;
    z-index: 1;
}


.main-teaser {
    margin-top: var(--nav-bar-height);
}

@media (max-width: 567px) {
    .main-teaser {
        height: 64vw;
    }
}
