.header-video-template-landing-page #backgroud-video {
    position: absolute;
    margin-top: 0 !important;
    height: 100%;
    width: 100%;

}

#backgroud-video {
    /* margin-top:
         calc((var(--nav-bar-pad) * 2) + var(--height-logo-wappen) + var(--height-logo-txt) + var(--gap-logo));*/
    margin-top: 0;
    top: 0;
    position: fixed;
    height: 100vh;
    width: 100vw;
    transition: all .5s cubic-bezier(.46, .03, .52, .96) 0s;
}

/*
#backgroud-video.small {
    margin-top: calc((var(--nav-bar-pad) * 2) + var(--height-logo-txt) + var(--gap-logo));
}
*/
.background-video-wrapper {
    position: relative;
    display: flex;
    height: 100%;
    width: 100%;
    overflow: hidden;
    justify-content: center;
    align-items: center;
}

.background-video-wrapper::before {
    content: '';
    display: block;
    width: 100%;
    height: 20%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.62) 100%);
    position: absolute;
    z-index: 999;
    top: 0;
}

.background-video-wrapper::after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 9;
    background-color: #000;
    opacity: 0;
    transition: all .5s cubic-bezier(.46, .03, .52, .96) 0s;
}

.background-video-wrapper-inner::after {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(13px);
    top: 0;
    transition: all .5s cubic-bezier(.46, .03, .52, .96) 0s;
    opacity: 0;
}

#backgroud-video.small .background-video-wrapper-inner::after {
    opacity: 1;
}

#backgroud-video.swiper-slider-visible .background-video-wrapper::after,
#backgroud-video.small .background-video-wrapper::after {
    opacity: 0.4;
}

.background-video-wrapper-inner {
    position: absolute;
    top: 0;
    height: 100%;
    width: 100%;
}

.background-video-wrapper-inner video {
    height: 100%;
    width: 100%;
    object-fit: cover;
}


#primary.content-area.page-video-background {
    padding-top: 100vh;
}