section#content{
    position: relative;
}

section#content .container{
    position: relative;
    display: flex;
    flex-wrap: wrap;
    box-sizing: border-box;
    gap: 5%;
}

section#content .tekst{
    flex: 0 0 47.5%;
}

section#content .foto img{
    width: 47.5%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    position: absolute;
}

section#content .foto{
    flex: 0 0 47.5%;
}

section#content h2{
    margin-top: 0;
    margin-bottom: 20px;
    font-weight: 800;
    color: black;
    font-size: 45px;
    line-height: 45px;
}

@media only screen and (max-width: 1000px) {

    section#content h2{
        font-size: 30px;
        line-height: 30px;
    }

    section#content .foto{
        flex: 0 0 100%;
        margin-bottom: 40px;
    }

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

    section#content .foto img{
        position: static;
        height: 200px;
        width: 100%;
    }
}