.trust-strip-area{
    background:#1b1f23;
    padding:10px 40px;
    border-bottom:1px solid rgba(255,255,255,0.08);
}

.trust-title{
    display:flex;
    align-items:center;
}

.trust-title h6{
    color:#fff;
    font-weight:600;
    font-size:15px;
    margin:0;
    padding-right:20px;
    border-right:1px solid rgba(255,255,255,0.3);
}

.trust-wrapper{
    overflow:hidden;
    position:relative;
}

.trust-marquee{
    width:100%;
    overflow:hidden;
}

.trust-list{
    display:flex;
    gap:40px;
    align-items:center;
    margin:0;
    padding:0;
    list-style:none;
    color:#fff;
    font-size:14px;
    white-space:nowrap;

    animation: trustScroll 25s linear infinite;
}

.trust-list li{
    white-space:nowrap;
}

/* animation */

@keyframes trustScroll{
    from{
        transform:translateX(0);
    }
    to{
        transform:translateX(-50%);
    }
}