section#blokken{
    position: relative;
    padding: 80px 0;
}

section#blokken .container{
    overflow: visible;
}

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

section#blokken .blokkenwrapper .singleblok{
    flex: 0 0 45%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0px 3px 6px #00000029;
}


section#blokken .blokkenwrapper .singleblok .blokimgwrapper{
    height: 200px;
    width: 100%;
    overflow: hidden;
    position: relative;
}

section#blokken .blokkenwrapper .singleblok .blokcontent{
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
    padding: 40px 20px;
    background: white;
    gap: 20px;
}

section#blokken .blokkenwrapper .singleblok .blokcontent p{
    font-size: 30px;
    color: #293080;
    font-weight: bold;
    margin: 0;
}

section#blokken .blokkenwrapper .singleblok .blokcontent i{
    color: #84ed77;
    font-size: 30px;
}

section#blokken .blokkenwrapper .singleblok .blokcontent img{
    width: 20px;
    height: auto;
}

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

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

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

    section#blokken .blokkenwrapper .singleblok .blokcontent p{
        font-size: 26px;
    }
}