/*==========================
     TRUSTED CLIENTS
==========================*/

.trusted-clients {

    background: #fff;

    overflow: hidden;

}

.logo-slider {

    margin-top: 70px;

    overflow: hidden;

    position: relative;

}

.logo-track {

    display: flex;

    align-items: center;

    gap: 60px;

    width: max-content;

    animation: logoScroll 35s linear infinite;

}

.logo-slider:hover .logo-track {

    animation-play-state: paused;

}

.logo-item {

    width: 220px;

    height: 100px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 20px;

    border: 1px solid rgba(0, 0, 0, .06);

    box-shadow: 0 10px 35px rgba(0, 0, 0, .04);

}

.logo-item img {

    width: 220px;

    height: 100px;

    object-fit: contain;

    filter: grayscale(100%);

    opacity: .65;

    transition: .35s;

}

.logo-item:hover {

    box-shadow: var(--shadow-md);

    transform: translateY(-6px);

}

.logo-item:hover img {

    filter: grayscale(0);

    opacity: 1;

}

@keyframes logoScroll {

    from {

        transform: translateX(0);

    }

    to {

        transform: translateX(-50%);

    }

}

/*=================================
     TRUSTED CLIENTS - MOBILE
==================================*/

@media (max-width:700px) {

    .trusted-clients {
        padding: 70px 0;
    }

    .trusted-clients .section-title {
        font-size: 2rem;
        line-height: 1.15;
    }

    .trusted-clients .section-description {
        font-size: .92rem;
        line-height: 1.7;
        margin-top: 15px;
        padding: 0 8px;
    }

    .logo-slider {
        margin-top: 45px;
    }

    .logo-track {
        gap: 28px;
        animation-duration: 24s;
    }

    .logo-item {
        width: 150px;
        height: 75px;
        border-radius: 16px;
        flex-shrink: 0;
    }

    .logo-item img {
        width: 120px;
        height: 55px;
    }

}