section#content .container{
    display: flex;
    flex-wrap: wrap;
    gap: 5%;
    overflow: visible;
    align-items: start;
    justify-content: end;
}

section#content .bigbox1{
    position: absolute;
    left: 0px;
    height: 600px;
    width: 600px;
    bottom: 20px;
    background: #f1f1f1;
    z-index: -1;
}

section#content .ontdekmeer{
    height: 80px;
    padding: 0 60px!important;
    position: absolute;
    top: -40px;
    left: 7.5%;
    font-size: 25px;
    z-index: 2;
}

section#content .bigbox2{
    position: absolute;
    left: 400px;
    height: 600px;
    width: 600px;
    bottom: -400px;
    background: #f3eaeb;
    z-index: -2;
}

section#content .container .contentitemimgfloating{
    position: absolute;
    width: 500px;
    bottom: -250px;
    right: 35%;
}

section#content{
    padding-top: 80px;
    position: relative;
}

section#content .container .leftsidecontent{
    flex: 0 0 50%;
}

section#content .container .imagewrapper{
    position: relative;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
}

section#content .container .imagewrapper .bolletje{
    width: 34px;
    height: 34px;
    border-radius: 100%;
    position: absolute;
    
}

section#content .container .imagewrapper .bolletje.green{
    background: #ae0018;
    left: -17px;
    bottom: 50px;
}

section#content .container .imagewrapper .bolletje.grey{
    background: #616163;
    left: -17px;
    bottom: 100px;
}

section#content .container .leftsidecontent p{
    color: black;
    margin-top: 0;
    font-weight: 300;
}

section#content .container .leftsidecontent h2{
    margin-top: 0;
    color: #214F4E;
    font-weight: bold;
    font-size: 55px;
    line-height: 81px;
    position: relative;
    margin-bottom: 30px;
    display: inline-block;
}

section#content .container .leftsidecontent h2:before{
    content: '';
    position: absolute;
    bottom: 17px;
    z-index: -1;
    left: 0;
    width: 100%;
    background: #e38d73;
    height: 15px;
}

section#content .container .leftsidecontent h3{
    color: black;
    margin-bottom: 0;
}

section#content .container .rightsidecontent{
    flex: 0 0 45%;
    display: flex;
    flex-wrap: wrap;
    gap: 5%;
    overflow: hidden;
    position: absolute;
    left: 0;
    width: 45%;
    height: 100%;
    border-radius: 30px;
}

section#content .container .rightsidecontent .contentitemimg{
    width: 100%;
    height: 100%;
}

section#content .container .rightsidecontent .contentitemimg img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

section#content .container .rightsidecontent .contentitem{
    flex: 0 0 47.5%;
    text-align: center;
}

section#content .container .rightsidecontent .contentitem .contentitemimg{
    height: 600px;
    width: 100%;
}

section#content .container .rightsidecontent .contentitem .contentitemimg img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}

@media screen and (max-width: 1000px) {
    section#content .container .leftsidecontent{
        flex: 0 0 100%;
        padding-top: 40px;
    }

    section#content .container .rightsidecontent{
        flex: 0 0 100%;
        position: static;
        height: 400px;
    }

    section#content .container .leftsidecontent h2{
        width: fit-content;
    }

    section#content .container{
        padding: 0;
    }

    body section#content .container .contentitemimgfloating{
        position: static!important;
        width: 100%;
        margin-top: 40px;
    }

    body section#content .bigbox1, body section#content .bigbox2{
        height: 300px;
        width: 300px;
    }
}

@media screen and (max-width: 800px) {
    section#content .container .rightsidecontent .contentitem{
        flex: 0 0 100%;
    }
    section#content .container .rightsidecontent .contentitem:nth-child(n+2){
        margin-top: 40px;
    }

    body section#content .bigbox1{
        right: 0;
        left: unset;
    }

    body section#content .bigbox2{
        left: 0;
        right: unset;
    }
}