/* ==========================================
PARTNERS SECTION
========================================== */

.partners{
    background:#fff;
    padding:52px 0;
    overflow:hidden;
}

.partners-title{
    text-align:center;
    margin-bottom:20px;
}

.partners-title h2{
    font-size:36px;
    font-weight:800;
    color:#071C63;
    line-height:1.2;
}

.title-line{
    width:70px;
    height:4px;
    background:#0B5FFF;
    margin:18px auto 0;
    border-radius:20px;
}

/* ==========================================
MARQUEE
========================================== */

.partners-marquee{
    position:relative;
    overflow:hidden;
    width:100%;
}

.partners-track{
    display:flex;
    align-items:center;
    gap:10px;
    width:max-content;
    animation:scrollPartners 40s linear infinite;
    will-change:transform;
}

.partners-track:hover{
    animation-play-state:paused;
}

@keyframes scrollPartners{

    from{
        transform:translateX(0);
    }

    to{
        transform:translateX(-50%);
    }
}

/* ==========================================
LOGOS
========================================== */

.partner-item{
    display:flex;
    align-items:center;
    justify-content:center;
    padding:10px;
}

.partner-item img{
    max-height:90px;
    width:auto;
    padding:10px;
    margin:0;

    border:1px solid #c7c7c7;
    border-radius:15px;

    background:#fff;

    object-fit:contain;

    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;
}

.partner-item:hover img{
    transform:translateY(-5px) scale(1.05);
    border-color:#0b63f6;
    box-shadow:0 12px 30px rgba(11,99,246,.18);
}

/* ==========================================
3840px (4K)
========================================== */

@media (min-width:3000px){

    .partners{
        padding:50px 0;
    }

    .partners-title{
        margin-bottom:30px;
    }

    .partners-title h2{
        font-size:62px;
    }

    .title-line{
        width:100px;
        height:6px;
    }

    .partners-track{
        gap:30px;
    }

    .partner-item img{
        max-height:180px;
    }
}

/* ==========================================
2560px
========================================== */

@media (min-width:2200px) and (max-width:2999px){

    .partners{
        padding:50px 0;
    }

    .partners-title h2{
        font-size:56px;
    }

    .partners-track{
        gap:30px;
    }

    .partner-item img{
        max-height:150px;
    }
}

/* ==========================================
1920px
========================================== */

@media (min-width:1600px) and (max-width:2199px){

    .partners-title h2{
        font-size:48px;
    }

    .partners-track{
        gap:20px;
    }

    .partner-item img{
        max-height:110px;
    }
}

/* ==========================================
1440px
========================================== */

@media (max-width:1440px){

    .partners-title h2{
        font-size:40px;
    }

    .partners-track{
        gap:20px;
    }

    .partner-item img{
        max-height:100px;
    }
}

/* ==========================================
1366px
========================================== */

@media (max-width:1366px){

    .partners-title h2{
        font-size:36px;
    }

    .partners-track{
        gap:10px;
    }

    .partner-item img{
        max-height:90px;
    }
}

/* ==========================================
1280px
========================================== */

@media (max-width:1280px){

    .partners{
        padding:50px 0;
    }
    
    .partners-title h2{
        font-size:32px;
    }

    .partners-track{
        gap:10px;
    }

    .partner-item img{
        max-height:90px;
    }
}

/* ==========================================
1024px
========================================== */

@media (max-width:1024px){

    .partners{
        padding:45px 0;
    }

    .partners-title{
        margin-bottom:30px;
    }

    .partners-title h2{
        font-size:30px;
    }

    .partners-track{
        gap:10px;
    }

    .partner-item img{
        max-height:85px;
    }
}

/* ==========================================
768px
========================================== */

@media (max-width:768px){

    .partners{
        padding:40px 0;
    }

    .partners-title{
        margin-bottom:25px;
    }

    .partners-title h2{
        font-size:28px;
    }

    .partners-track{
        gap:10px;
    }

    .partner-item img{
        max-height:70px;
    }
}

/* ==========================================
576px
========================================== */

@media (max-width:576px){

    .partners{
        padding:35px 0;
    }

    .partners-title h2{
        font-size:24px;
    }

    .title-line{
        width:60px;
    }

    .partners-track{
        gap:10px;
    }

    .partner-item img{
        max-height:60px;
    }
}

/* ==========================================
480px
========================================== */

@media (max-width:480px){

    .partners{
        padding:30px 0;
    }

    .partners-title{
        margin-bottom:20px;
    }

    .partners-title h2{
        font-size:22px;
    }

    .partners-track{
        gap:10px;
    }

    .partner-item img{
        max-height:55px;
    }
}

/* ==========================================
375px
========================================== */

@media (max-width:375px){

    .partners-title h2{
        font-size:20px;
    }

    .title-line{
        width:50px;
        height:3px;
    }

    .partners-track{
        gap:10px;
    }

    .partner-item img{
        max-height:45px;
    }
}

/* ==========================================
320px
========================================== */

@media (max-width:320px){

    .partners{
        padding:25px 0;
    }

    .partners-title h2{
        font-size:18px;
    }

    .partners-track{
        gap:10px;
    }

    .partner-item img{
        max-height:40px;
    }
}