.contentblok.projecten {
    margin: 0 !important;

}

.contentblok.projecten header h1 {
    font-size: 5rem;
    text-align: start;
}
.contentblok.projecten .informatie {
    line-height: 1.2;
}

.contentblok.projecten .project-body h5 {
    color: white;
    font-size: 2rem;
    font-weight: bold;
    padding: 2rem 0rem;
}
.contentblok.projecten .image {
    width: auto;
    max-height: 40rem;
    object-fit: cover;
    overflow: hidden;
    display: flex;
}
.contentblok.projecten .project {
    height: 100%;
    transition: all;
}

.contentblok.projecten .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media (min-width: 576px) {
}
@media (min-width: 768px) {
}
@media (min-width: 992px) {
}
@media (min-width: 1200px) {
    .contentblok.projecten .image {
        max-height: 40%;
    }
    .contentblok.projecten .project-body h5{
        font-size: 3rem;
    }
    .contentblok.projecten header h1 {
        font-size: 8.3rem;
    }
}
@media (min-width: 1400px) {
    .contentblok.projecten .project .image {
        position: relative;
    }
    .contentblok.projecten .project.t6 .image::after {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        background-color: #FFB800;
        mix-blend-mode: color;
        opacity: 0;
        z-index: 1;
        top: 0;
    }
    .contentblok.projecten .project.t7 .image::after {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        background-color: #00CEFF;
        mix-blend-mode: color;
        opacity: 0;
        z-index: 1;
        top: 0;
    }
    .contentblok.projecten .project .image:hover::after {
        opacity: 1;
        cursor: pointer;
    }
   
    .contentblok.projecten .project:hover + .contentblok.projecten .project::after {
        opacity: 1;
    }
}