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

section#usps .container{
    width: 1130px;
}

section#usps .container > h2{
    font-size: 20px;
    padding: 10px 15px;
    border-radius: 100px;
    border: 1px solid #243891;
    color: #233891;
    width: fit-content;
    margin: 0 auto;
}

section#usps .container > h3{
    color: #233891;
    font-weight: bold;
    font-size: 50px;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 0;
}

section#usps .container .onderstetekst{
    margin-bottom: 15px;
}

section#usps .container .onderstetekst p{
    text-align: center;
    color: #233891;
    font-size: 18px;
    margin: 0 auto;
}

section#usps .container .buttons{
    display: flex;
    gap: 10px;
    justify-content: center;
}

section#usps .container .buttons a:nth-child(2){
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #233891;
    border-radius: 100%;
    color: white;
    width: 44.8px;
}

section#usps .uspwrapper{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    padding: 40px 0;
    
}

section#usps .uspwrapper .singleusp h4{
    font-size: 18px;
    line-height: 26px;
    color: #233891;
    margin: 0;
    flex: 0 0 100%;
    text-align: center;
}

section#usps .uspwrapper .singleusp .uspicon{
    flex: 0 0 130px;
    border-radius: 100%;
    height: 130px;
    background: #DDE7FF;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s ease-in-out all;
}

section#usps .uspwrapper .singleusp{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    flex: 0 0 350px;
    border-radius: 20px;
    padding: 25px 34px;
    box-sizing: border-box;
    transition: 0.2s ease-in-out all;
}

section#usps .uspwrapper .singleusp:hover{
    background: #DDE7FF;
}

section#usps .uspwrapper .singleusp:hover .uspicon{
    background: white;
}

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

section#usps .uspwrapper .singleusp .uspicon img{
    width: 70px;
    height: 70px;
    object-fit: contain;
}

@media only screen and (max-width: 650px) {
    section#usps .uspwrapper .singleusp{
        flex: 0 0 100%;
    }
}

@media only screen and (max-width: 900px) {
    body section#usps .container{
        width: 90%!important;
    }

    section#usps .uspwrapper{
        gap: unset!important;
    }

    section#usps .uspwrapper .singleusp{
        flex: 0 0 100%!important;
    }

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

@media only screen and (max-width: 1000px) {
    section#usps .container > h3 {
        line-height: 68px;
        font-size: 60px;
    }
}

@media only screen and (max-width: 1250px) {
    section#usps .container{
        width: 740px!important;
    }

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

@media only screen and (max-width: 600px) {
    section#usps .container > h3 {
        line-height: 50px;
        font-size: 40px;
    }
}