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: #011A36;
}

section#usps .container .titelsectie a{
    color: #011A36;
    font-size: 18px;
    transition: 0.2s ease-in-out all;
}

section#usps .container .titelsectie a:hover{
    color: #0ADCD2;
}

section#usps .uspwrapper{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 40px;
    align-items: self-start;
}

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

section#usps .uspwrapper .singleusp{
    text-align: center;
    border-radius: 15px;
    padding: 30px;
    position: relative;
    bottom: -10px;
    opacity: 0;
}

section#usps .uspwrapper .singleusp:nth-child(even){
    margin-top: 40px;
}

section#usps .uspwrapper .singleusp h4{
    font-size: 22px;
    font-weight: 700;
    color: #011A36;
    margin-bottom: 10px;
    margin-top: 10px;
}

section#usps .uspwrapper .singleusp p{
    color: #4F4F4F;
    margin: 0;
}

@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;
    }
}