section#blokken{
    position: relative;
}

section#blokken .blokkenwrapper{
    display: flex;
    flex-wrap: wrap;
    gap: 2%;
}

section#blokken .blokkenwrapper .singleblok:nth-child(odd){
    flex-direction: row-reverse;
}

section#blokken .blokkenwrapper .singleblok{
    flex: 0 0 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 10%;
}

section#blokken .blokkenwrapper .singleblok .blokcontent{
    flex: 0 0 50%;
}

section#blokken .blokkenwrapper .singleblok .blokcontent h2{
    margin-top: 0;
    margin-bottom: 10px;
}

section#blokken .blokkenwrapper .singleblok:nth-child(n+2){
    margin-top: 60px;
}

section#blokken .blokkenwrapper .singleblok .blokimgwrapper{
    height: 400px;
    width: 100%;
    overflow: hidden;
    position: relative;
    flex: 0 0 40%;
    border-radius: 20px;
}

section#blokken .blokkenwrapper .singleblok .blokimgwrapper img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media only screen and (max-width: 1000px) {
    section#blokken .blokkenwrapper .singleblok{
        flex: 0 0 100%;
    }

    section#blokken .blokkenwrapper .singleblok .blokimgwrapper{
        flex: 0 0 100%;
    }

    section#blokken .blokkenwrapper .singleblok .blokcontent{
        flex: 0 0 100%;
        margin-top: 20px;
    }

    section#blokken .blokkenwrapper .singleblok{
        gap: unset;
    }

    section#blokken .blokkenwrapper .singleblok:nth-child(n+2){
        margin-top: 40px;
    }
}