/* ------------------------------ */
/* ----------- Header ----------- */
/* ------------------------------ */

header {
    min-height: var(--height-header); 
}

.page-scrolled header {
    min-height: var(--height-header-scrolled);    
}
 
.site_header {
    position: fixed;
    z-index: 20;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--height-header);
    background-color: var(--brand-white);
    -webkit-transition: var(--transition-2);
    -o-transition: var(--transition-2);
    transition: var(--transition-2);
}
 
.page-scrolled .site_header {
    height: var(--height-header-scrolled);
    top: calc(-1* var(--height-header-scrolled));
    background-color: var(--brand-white);
    box-shadow: var(--box-shadow-1);
}

.logged-in.page-scrolled .site_header {
    top: calc(-1* var(--height-header-scrolled));
}

.page-scrolled.header-fixed .site_header {
     top: 0;
}

.logged-in .site_header, .logged-in.page-scrolled.header-fixed .site_header {
    top: 50px;
}
 
.site_header__inside {
     width: 100%;
}
 
.site_header__row {
     margin-left: 0;
     margin-right: 0;
}

.site_logo {
    line-height: 0;
}
   
.site_logo a {
     display: inline-block;
}

.site_logo svg {
    transition: var(--transition-1);
}

.site_logo svg path {
    fill: var(--brand-copy);
}

.page-scrolled .site_logo svg {
    width: 123px;
    height: 32px;
}



/* ------------------------------ */
/* ---- Headerimage / -video ---- */
/* ------------------------------ */

.site_cover {
    position: relative;
    z-index: 1;
    margin-top: var(--height-header);
}

.site_cover__media  {
    width: 100%;
    height: 600px;
}

.site_cover__media .picture_container {
    position: absolute;
    left: 50%;
    top: 0;
    overflow: visible;
}

.site_cover__media .picture_container picture, .site_cover__media .picture_container::after {
    clip-path: var(--brand-clip-path);
}

.site_cover__media .picture_container::after {
    content: "";
    position: absolute;
    z-index: 1;
    top: 44px;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--brand-light);
}

.site_cover__media .picture_container picture {
    position: relative;
    z-index: 2;
    left: 26px;
}

.site_cover__media .picture_container picture img {
    width: 1240px;
    height: 650px;
    max-width: unset;
}







/* ------------------------------ */
/* -------- Media Queries ------- */
/* ------------------------------ */


@media all and (min-width: 768px) {



}


@media all and (max-width: 1399.98px) and (min-width: 1240px) {



}


@media all and (max-width: 1239.98px) {



}


@media all and (max-width: 991.98px) {



}


@media all and (max-width: 767.98px) {



}