.contentblok.contact {
    padding-top: 5rem !important;
    position: relative;
    margin-top: 0 !important;
}
.contentblok.contact .achtergrond {
    position: relative;
    max-height: 12rem;
    overflow: hidden;
}

.contentblok.contact .achtergrond img {
    z-index: -1;
    width: 100%;
    height: 100%;
    object-fit: cover;

}
.contentblok.contact .achtergrond::after {
    /* make the after the same size as the image and keep it ontop of it */
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ff0080;
    mix-blend-mode: color;
    opacity: 1;
    z-index: 0;
}
.contentblok.contact .top-title {
    z-index: 1;
    position: absolute;
    top: 0;
    overflow: hidden;
    display: flex;
    align-items: end;
    border-bottom: 2px solid white;
}
.contentblok.contact .bottom-title {
    z-index: 1;
    position: absolute;
    bottom: 0;
    overflow: hidden;
    display: flex;
  right: 0;
}
.contentblok.contact h2 {
    transform: translateY(2rem);
    font-size: 8rem;
    margin-bottom: 0;
    font-variation-settings: 'wght' 400;
    line-height: 0.8;
    width: fit-content;
    text-align: center;
}

.contentblok.contact a {
    color: var(--color-white);
    background-color: #ff0080;
    padding: 1rem 2rem;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.1s ease-in-out;
}
.contentblok.contact #email {
    color: var(--color-white);
    border: 2px solid var(--color-white);
    padding: 1rem 3rem;
    border-radius: 20px;
    text-decoration: none;
    background-color: transparent;
    transition: all 0.1s ease-in-out;
}
.contentblok.contact .buttons {
    display: flex;
    flex-direction: row;
    gap: 1rem;

}
.contentblok.contact .informatie {
    line-height: 1.4;
}


@media (min-width: 576px) {
}
@media (min-width: 768px) {
}
@media (min-width: 992px) {
    .contentblok.contact .achtergrond {
        max-height: 19rem;
    }
    .contentblok.contact h2 {
        font-size: 12rem;
    }    
}
@media (min-width: 1023px) {
    .contentblok.contact .informatie {
        margin-top: 6rem;
    }

}
@media (min-width: 1400px) {
    .contentblok.contact .achtergrond {
        max-height: 35rem;
        /* width: 50%;
        margin-left: 44%; */
    }
    .contentblok.contact #email:hover {
        background-color: var(--color-white);
        color: #ff0080;
    }
    .contentblok.contact a:hover {
        background-color: #b3035b;
    }
    .contentblok.contact h2 {
        font-size: 20rem;
    }
    .contentblok.contact .black {
        height: 123.5%;
        background-color: black;
        z-index: 2;
        margin-top: -5rem;
        width: 22rem;
        position: absolute;
        border-left: 1px solid white;
        right: 0;
    }
    .container-2 {
        width: 100%;
        overflow: hidden;
        position: relative;
    }

} 