section#diensten{
    margin: 80px 0;
}

section#diensten .content .titelsectie{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 80px;
}

section#diensten .content .titelsectie h2{
    color: #262626;
    font-size: 67px;
    line-height: 75px;
    margin: 0;
}

section#diensten .content h3{
    font-weight: 100;
    font-size: 30px;
    line-height: 30px;
    color: #FF6C6C;
    margin-top: 0px;
}

section#diensten .dienstenwrap a h2{
    color: #262626;
    font-size: 60px;
    line-height: 60px;
    z-index: 1;
    position: relative;
    padding: 60px 0;
    margin: 0;
    transition: 0.2s all ease-in-out;
}

section#diensten .dienstenwrap a{
    width: 100%;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    align-items: center;
    margin: 15px 0;
    padding: 0 60px;
    box-sizing: border-box;
}

section#diensten .dienstenwrap a:before{
    content: '\f04b';
    display: inline-block;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    font: var(--fa-font-sharp-solid);
    font-size: 28px;
    color: white;
    position: absolute;
    left: 60px;
    z-index: 1;
    margin-top: 12px;
}

section#diensten .dienstenwrap .stripe{
    height: 1px;
    width: 100%;
    display: block;
    background: #DEDEDE;
}

section#diensten .dienstenwrap a img{
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
    opacity: 0;
    transition: 0.2s all ease-in-out;
}

section#diensten .dienstenwrap a:hover img{
    opacity: 1;
}

section#diensten .dienstenwrap a:hover h2{
    margin-left: 35px;
    color: white;
}

section#diensten .bottomsection{
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #DEDEDE;
    padding-top: 20px;
}

section#diensten .bottomsection p{
    margin: 0;
}

section#diensten .bottomsection a.button:before{
    content: '\f086';
}

@media only screen and (max-width: 1200px) {
    section#diensten .content .titelsectie{
        grid-template-columns: 1fr;
        gap: 0;
    }

    section#diensten .content .titelsectie h2{
        font-size: 40px;
        line-height: 40px;
    }

    section#diensten .dienstenwrap a h2{
        font-size: 35px;
        line-height: 35px;
    }

    section#diensten .content .titelsectie{
        margin-bottom: 20px;
    }
}

@media only screen and (max-width: 600px) {
    section#diensten .container .bottomsection{
        display: block;
    }

    section#diensten .container .bottomsection a.button{
        margin-top: 10px;
    }
}