section#usps{
    position: relative;
    padding: 80px 0;
    background-image: url('/wp-content/themes/charliens/assets/images/background.jpg');
    background-repeat: no-repeat;
    background-size: cover;
}

section#usps:before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000d4;
}

section#usps h2{
    text-align: center;
    color: white;
    margin: 0;
    font-size: 50px;
    line-height: 50px;
}

section#usps .uspwrapper{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    margin-top: 40px;
    gap: 10px;
}

section#usps .uspwrapper .singleusp{
    background: #00000061;
    padding: 30px 20px;
    transition: 0.2s ease-in-out all;
}

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

section#usps .uspwrapper .singleusp img{
    height: 100px;
    width: 100px;
    object-fit: contain;
    object-position: center;
    margin: 0 auto;
    filter: invert(1);
}

section#usps .uspwrapper .singleusp h4{
    text-align: center;
    font-size: 20px;
    line-height: 26px;
    font-weight: 900;
    color: #c1c1c1;
    margin-bottom: 0;
}

section#usps .uspwrapper .singleusp span{
    color: #c1c1c1;
    text-align: center;
    width: 100%;
    display: block;
}

@media only screen and (max-width: 1200px) {

    section#usps{
        padding: 60px 0;
    }
}

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

    section#usps h2{
        font-size: 35px;
        line-height: 35px;
    }

    section#usps:before{
        background-color: #000000ab;
    }
}

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