section#content{
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}

section#content .container{
    display: grid;
    grid-template-columns: 1fr 1fr;
}

section#content .container .tekst{
    background: #fff5e6;
    padding: 60px;
    box-sizing: border-box;
}


section#content .container .afbeelding{
    position: relative;
}

section#content .container .afbeelding img{
    position: absolute;
    right: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media screen and (max-width: 1000px) {
    section#content .container{
        grid-template-columns: 1fr;
    }

    section#content .container .afbeelding{
        height: 300px;
        overflow: hidden;
    }

    section#content .container .tekst{
        order: 2;
        padding: 40px;
    }

    section#content .container .tekst h3{
        margin-bottom: 20px;
    }

    section#content .container .tekst h2{
        font-size: 45px;
        line-height: 50px;
        margin-bottom: 40px;
    }
}

@media screen and (max-width: 700px) {
    section#content .container .tekst h2{
        font-size: 30px;
        line-height: 30px;
        margin-bottom: 20px;
    }

    section#content .container .tekst h3{
        font-size: 18px;
        line-height: 22px;
        margin-bottom: 10px;
    }
}