.v5-trusted{
    position:relative;
    padding:100px 0;
    overflow:hidden;
    background:linear-gradient(180deg,#071225,#050b18);
}

.v5-trusted .container{
    width:min(1300px,95%);
    margin:auto;
}

.trusted-heading{
    text-align:center;
    margin-bottom:55px;
}

.trusted-heading span{
    display:inline-block;
    padding:10px 22px;
    border-radius:40px;
    background:rgba(19,223,255,.08);
    border:1px solid rgba(19,223,255,.25);
    color:#6fe8ff;
    font-size:13px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
}

.trusted-heading h2{
    margin-top:25px;
    font-size:48px;
    color:white;
}

.trusted-heading p{
    max-width:700px;
    margin:auto;
    color:#b7c8dd;
    line-height:1.8;
}

.logo-slider{
    overflow:hidden;
    position:relative;
    padding:20px 0;
}

.logo-slider::before,
.logo-slider::after{
    content:"";
    position:absolute;
    top:0;
    width:120px;
    height:100%;
    z-index:2;
}

.logo-slider::before{
    left:0;
    background:linear-gradient(90deg,#050b18,transparent);
}

.logo-slider::after{
    right:0;
    background:linear-gradient(270deg,#050b18,transparent);
}

.logo-track{
    display:flex;
    gap:22px;
    width:max-content;
    animation:logoScroll 28s linear infinite;
}

.logo-slider:hover .logo-track{
    animation-play-state:paused;
}

.logo-item{
    min-width:190px;
    height:86px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:22px;
    background:rgba(255,255,255,.055);
    border:1px solid rgba(126,218,255,.16);
    color:#dff7ff;
    font-size:20px;
    font-weight:900;
    box-shadow:
        0 20px 55px rgba(0,0,0,.28),
        inset 0 1px 0 rgba(255,255,255,.08);
    transition:.3s;
}

.logo-item:hover{
    transform:translateY(-6px);
    color:#13dfff;
    border-color:rgba(19,223,255,.45);
    box-shadow:
        0 30px 70px rgba(0,0,0,.4),
        0 0 35px rgba(19,223,255,.25);
}

@keyframes logoScroll{
    from{
        transform:translateX(0);
    }

    to{
        transform:translateX(-50%);
    }
}

@media(max-width:700px){
    .trusted-heading h2{
        font-size:34px;
    }

    .logo-item{
        min-width:150px;
        height:72px;
        font-size:16px;
    }
}