.usps-carousel {
    width: 100%;
    overflow: hidden;
    padding: 30px 0;
}

.usp-track {
    display: flex;
    width: max-content;
    animation: scroll-usps 40s linear infinite;
    margin-top: 30px;
}

.usps-carousel ul {
    display: flex;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

.usps-carousel li {
    margin: 0 40px;
    white-space: nowrap;
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    font-weight: 500;
}

.usps-carousel li::before {
    content: '';
    height: 40px;
    width: 40px;
    display: block;
    background-image: url('assets/tick.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    margin-right: 15px;
}

.usps-carousel .subheading {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}
/* Animation */
@keyframes scroll-usps {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}