.contentblok.header {
    margin-top: 0 !important;
    padding: 0;
    overflow: hidden;
}
.contentblok.header:has(+ .contentblok.specs) {
    padding-bottom: 15rem;
}
.header_video_player::after,
.header_afbeelding::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 75%;
    z-index: 10;
    background: linear-gradient( 180deg, transparent 0%, rgba(24, 24, 40, 0.8) 75%, rgba(24, 24, 40, 1) 100% );
}
.header_afbeelding::after {
    background: linear-gradient( 180deg, transparent 0%, rgba(24, 24, 40, 0.8) 65%, rgba(24, 24, 40, 1) 100% );
}
.contentblok.header.has_bg.wit .header_video_player::after {
    background: linear-gradient( 180deg, transparent 0%, rgba(255, 255, 255, 0.8) 75%, rgba(255, 255, 255, 1) 100% );
}
.contentblok.header.has_bg.wit .header_afbeelding::after {
    background: linear-gradient( 180deg, transparent 0%, rgba(255, 255, 255, 0.8) 65%, rgba(255, 255, 255, 1) 100% );
}
.header_video {
    top: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    overflow: hidden;
}
.header_video_player {
    position: relative;
    width: 100%; 
    height: 0;
    padding-top: 56.25%;
    overflow: hidden;
}
.header_video_player iframe {
    position: absolute;
    z-index: 1;
    top: 50%;
    width: 100%;
    height: 110%;
    transform: translateY(-50%);
}

.header_afbeelding {
    position: relative;
    width: 100%;
}
.header_afbeelding img {
    object-fit: cover;
    width: 100%;
    max-width: initial;
    height: 100%;
}


.header_content_container {
    position: relative;
    padding-top: 12rem;
    z-index: 10;
    color: var(--color-wit);
    text-transform: uppercase;
}
.contentblok.header.has_bg.wit .header_content_container {
    color: var(--color-donkerpaars);
}
.header_content_container h2 {
    position: relative;
    margin-bottom: 2rem;
	font-size: clamp(3rem, 4vw, 8.5rem);
    font-weight: 700;
	line-height: 100%;
	text-transform: uppercase;
}
.header_content_container h2::after {
    content: "";
    position: relative;
    display: block;
    margin-top: 1.5rem;
    width: 7.5rem;
    height: 0.6rem;
    background-color: rgba(255,255,255,0.2);
}

/* MEDIA QUERIES - MOBILE FIRST */ 

@media (min-width: 576px) {
}

@media (min-width: 768px) {
   
    .header_video {
        top: 0;
        width: 100%;
        height: 100%;
        position: absolute;
        overflow: hidden;
    }
    
    .header_afbeelding {
        top: 0;
        width: 100%;
        height: 100%;
        position: absolute;
        overflow: hidden;
    }

    .header_content_container {
        margin: 0;
        padding-top: 12rem;
        padding-bottom: 8rem;
        z-index: 10;
        display: flex;
        align-items: center;
    }
    
    .header_content_container h2 {
        margin-bottom: 3rem;
    }
    .header_content_container h2::after {
        margin-top: 2.5rem;
    }
}

@media (min-width: 992px) {
    .header_content_container {
        padding-top: 20rem;
        padding-bottom: 20rem;
    }
}

@media (min-width: 1200px) {
}

@media (min-width: 1400px) {
    .header_content_container {
        padding-top: 30rem;
    }
}

@media (min-width: 1920px) {
}

@media (min-width: 2560px) {
}