section#diensten{
    margin: 80px 0;
}

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

section#diensten .container{
    display: flex;
    flex-wrap: wrap;
    gap: 100px;
}

section#diensten .container .dienstwrapper{
    flex: 0 0 40%;
}
section#diensten .container .dienstwrapper .row img{
    width: 70px;
    height: 70px;
    object-fit: contain;
    background: #EAEAEA;
    padding: 10px;
    box-sizing: border-box;
    border-radius: 10px;
    flex: 0 0 70px;
}

section#diensten .container .dienstwrapper .row:nth-child(n+3){
    margin-top: 40px;
} 

section#diensten .container .dienstwrapper .row{
    display: flex;
    gap: 20px;
}

section#diensten .container .dienstwrapper .row h3{
    font-size: 20px;
    line-height: 20px;
    margin-top: 0;
    margin-bottom: 5px;
}

section#diensten .container .dienstwrapper .row .content p{
    margin: 0;
}

section#diensten .container .dienstgalerij{
    flex: 1;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 5%;
}

section#diensten .container .dienstgalerij a{
    width: 47.5%;
}

section#diensten .container .dienstgalerij a img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

section#diensten .container .dienstgalerij a:nth-child(1){
    flex: 0 0 55%;
}

section#diensten .container .dienstgalerij a:nth-child(2){
    flex: 0 0 40%;
}

section#diensten .container .dienstgalerij a:nth-child(3){
    flex: 0 0 100%;
}

@media screen and (max-width: 1200px) {
    section#diensten .container{
        gap: 40px;
    }

    section#diensten .container .dienstwrapper{
        flex: 0 0 100%;
    }
}

@media screen and (max-width: 1000px) {
    section#diensten h2{
        font-size: 30px;
        line-height: 30px;
    }
}