.contentblok.doorkiesblokken {
    padding: 0;
}
.doorkiesblokken_items {
    display: flex;
    flex-direction: column;
}
.doorkies_item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 4rem 5rem;
    color: var(--color-wit);
    text-decoration: none;
    overflow: hidden;
}
.doorkies_item::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(51, 51, 51, 0.6);
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
.doorkies_item:nth-of-type(2)::after {
    background-color: rgba(79, 161, 174, 0.6);
}
.doorkies_item:nth-of-type(3)::after {
    background-color: rgba(195, 174, 84, 0.6);
}
.doorkies_item_afbeelding {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}
.doorkies_item_afbeelding img {
    max-width: initial;
    width: 100%;
    height: 100%;
    object-fit: cover;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
.doorkies_item_content {
    position: relative;
    display: flex;
    align-items: center;
    text-align: center;
    flex-direction: column;
    z-index: 2;
}
.doorkies_item_icoon {
    display: block;
    margin-bottom: 3rem;
}
.doorkies_item_icoon img {
    width: 100%;
    height: auto;
    max-width: 5rem;
}
.doorkies_item_titel {
    display: block;
    font-weight: 700;
    margin-bottom: 2rem;
    text-transform: uppercase;
    font-size: clamp(2.5rem, 2vw, 5rem);
}
.doorkies_item_tekst {
    display: block;

}
a.doorkies_item:hover .doorkies_item_afbeelding img {
    transform: scale(1.1);
}
a.doorkies_item:hover::after {
    background-color: rgba(255,255,255,0.2);
}

@media (min-width: 576px) {
}

@media (min-width: 768px) {
    .doorkiesblokken_items {
        flex-direction: row;
    }
    a.doorkies_item {
        flex-grow: 1;
        align-items: flex-start;
    }
    .doorkies_item_titel {
        margin-top: auto;
    }
}


@media (min-width: 992px) {
    a.doorkies_item {
        padding: 7rem 10rem 8rem;
    }
    .doorkies_item_icoon {
        margin-bottom: 5rem;
    }
    .doorkies_item_titel {
        margin-bottom: 4rem;
    }
    .doorkies_item_tekst {
        font-size: 2rem;
    }
    
}

@media (min-width: 1200px) {
}

@media (min-width: 1400px) {
}

@media (min-width: 1920px) {
}

@media (min-width: 2560px) {
}