section#usps{
    color: white;
}

section#usps .uspcontent{
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    margin-left: 7.5%;
    margin-top: 60px;
}

section#usps .uspcontent .leftside{
    flex: 0 0 500px;
}

section#usps .uspcontent .leftside p{
    margin-top: 0;
}

section#usps .uspcontent .rightside{
    flex: 1;
}

section#usps .uspheader{
    border-bottom: 1px solid #ffffff52;
}

section#usps .uspheader .container{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

section#usps .uspheader .container h2{
    margin-top: 0;
    margin-bottom: 20px;
    font-style: italic;
}

section#usps .usp span{
    background: -webkit-linear-gradient(0deg, #007FFF, #BE57FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 25px;
    line-height: 25px;
    font-weight: 600;
    margin-top: 10px;
}

section#usps .usp{
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 25px 0;
    border-bottom: 1px solid #ffffff52;
    position: relative;
    opacity: 0;
    margin-bottom: -10px;
}

section#usps .usp:before{
    content: '';
    height: 10px;
    width: 10px;
    border-radius: 100%;
    border: 1px solid #ffffff52;
    background: #0C001A;
    position: absolute;
    bottom: -6px;
    left: 0;
}

section#usps .usp h3{
    margin: 0;
}

@media screen and (max-width: 800px) {
    .uspheader h2{
        width: 100%;
    }

    .uspheader{
        padding-bottom: 20px;
    }
    section#usps .uspcontent{
        margin-left: 0;
    }

    section#usps .uspcontent .leftside{
        margin-left: 7.5%;
        margin-right: 7.5%;
        flex: 0 0 85%;
    }

    section#usps .uspcontent .rightside{
        margin-left: 7.5%;
    }
}

@media screen and (max-width: 1250px) {
    section#usps .usp h3{
        font-size: 20px;
    line-height: 22px;
    }
}

@media screen and (max-width: 1000px) {
    section#usps .uspcontent .rightside{
        flex: 0 0 92.5%;
    }
}