.entryvideo video {
    width: 100vw;
    height: 100%;
    position: absolute;
    object-fit: cover;
    left: calc(-1 * var(--padding));

    mask-image: var(--top_bottom);
}

.entryvideo .entryvideo-text {
    position: relative;
    color: var(--white);
    font-size: var(--entryvideosize);
    font-weight: var(--bold);
    line-height: 1;
    z-index: 2;
    height: min-content;
    text-transform: uppercase;
    padding: var(--padding) var(--padding) 0rem 0rem;
}

.entryvideo {
    position: relative;
    display: flex;
    justify-content: flex-start;
    padding: 0;
    height: calc(100vh - var(--header, 155px));
    width: 100%;
    min-height: 100%;
}

.entryvideo h1 {
    font-size: var(--entryvideosize);
    border: 0;
}

@media screen and (max-width: 1080px) {
    .entryvideo {
        height: calc(80vh - var(--header, 155px));
    }
}