section#diensten{
    position: relative;
    background: #00a8e1;
    padding: 80px 0;
}

section#diensten .titelsectie{
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    flex-wrap: wrap;
    row-gap: 20px;
}

section#diensten .titelsectie h2{
    margin-bottom: 0;
    color: white;
}

section#diensten .titelsectie .logos{
    display: flex;
    align-items: center;
    gap: 20px;
}

section#diensten .titelsectie .logos img{
    width: 150px;
    height: 80px;
    object-fit: contain;
}

section#diensten .kolomwrapper{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 60px;
    row-gap: 20px;
}

section#diensten .kolomwrapper a{
    padding: 10px 15px;
    color: #1e1e1e;
    background: white;
    border-radius: 6px;
    transition: 0.2s ease-in-out all;
    opacity: 0;
    position: relative;
    bottom: -10px;
}

section#diensten .kolomwrapper a:hover{
    background: #e5e5e5;
}

section#diensten .kolomwrapper a span{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

@media screen and (max-width: 1100px) {
    section#diensten .kolomwrapper{
        column-gap: 20px;
    }
}

@media screen and (max-width: 1000px) {
    section#diensten .kolomwrapper{
        grid-template-columns: 1fr 1fr;
    }
}

@media screen and (max-width: 750px) {
    section#diensten .kolomwrapper{
        grid-template-columns: 1fr;
    }
}