section#usps{
    position: relative;
    padding: 80px 0;
}

section#usps .container .titelsectie {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 60px;
    gap: 20px;
}

section#usps .container .titelsectie h2{
    font-weight: 700;
    font-size: 50px;
    line-height: 50px;
    margin: 0;
    color: #200000;
}

section#usps .container .titelsectie a{
    color: #200000;
    font-size: 18px;
}

section#usps .uspwrapper{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1px;
    background: black;
}

section#usps .uspwrapper .uspicon{
    font-size: 50px;
}

section#usps .uspwrapper .singleusp{
    text-align: center;
    padding: 30px;
    position: relative;
    overflow: hidden;
}

section#usps .uspwrapper .singleusp:hover .afbeeldingwrapper:before{
    opacity: 0.8;
}

section#usps .uspwrapper .singleusp:hover .afbeeldingwrapper img{
    transform: scale(1.1);
}

section#usps .uspwrapper .singleusp .afbeeldingwrapper{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

section#usps .uspwrapper .singleusp .afbeeldingwrapper img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: 0.2s ease-in-out;
    position: relative;
    z-index: -1;
}

section#usps .uspwrapper .singleusp .afbeeldingwrapper:before{
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    opacity: 1;
    transition: 0.2s ease-in-out;
}

section#usps .uspwrapper .singleusp h4{
    font-size: 22px;
    font-weight: 700;
    color: #200000;
    margin-bottom: 10px;
    margin-top: 10px;
    z-index: 1;
    position: relative;
}

section#usps .uspwrapper .singleusp p{
    color: #4F4F4F;
    margin: 0;
    z-index: 1;
    position: relative;
}

@media screen and (max-width: 750px) {
    section#usps .titelsectie h2{
        flex: 0 0 100%;
        font-size: 36px!important;
        line-height: 46px!important;
    }

    section#usps .titelsectie{
        margin-bottom: 40px;
    }

    section#usps .uspwrapper{
        grid-template-columns: 1fr!important;
    }

    section#usps .uspwrapper .singleusp{
        margin-top: 0!important;
    }
}

@media screen and (max-width: 1200px) {
    section#usps .uspwrapper{
        grid-template-columns: 1fr 1fr;
    }
}