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

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;
    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;
    padding-bottom: 80px;
}

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;
}

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

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;
}

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{
    position: relative;
}

section#content .container .rightsidecontent:before{
    content: '';
    width: 300px;
    height: 300px;
    background: #ae0018;
    transform: rotate(45deg);
    border: 50px solid #f7f7f7;
    top: -220px;
    left: -220px;
    border-radius: 100%;
    position: absolute;
}

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: 1250px) {
    section#content .container .leftsidecontent{
        flex: 0 0 100%;
        padding-bottom: 40px;
    }

    section#content .container .rightsidecontent{
        flex: 0 0 100%;
        
    }

    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;
    }
}