/*==================================================
BRANDS
==================================================*/

.tok-brands{

    padding:100px 0;

    background:linear-gradient(180deg,#ffffff 0%,#F8FAFC 100%);

    overflow:hidden;

}

/*==================================
HEADER
==================================*/

.tok-brands-header{

    display:flex;

    justify-content:space-between;

    align-items:flex-end;

    gap:40px;

    margin-bottom:50px;

}

.tok-brands-header>div{

    max-width:650px;

}

.tok-brands-header h2{

    font-size:48px;

    color:#111827;

    margin:18px 0;

}

.tok-brands-header p{

    font-size:17px;

    color:#6B7280;

    line-height:1.8;

}

/*==================================
SLIDER
==================================*/

.tok-brand-slider{

    position:relative;

    overflow:hidden;

    width:100%;

}

.tok-brand-track{

    display:flex;

    align-items:center;

    gap:28px;

    width:max-content;

    animation:tokBrandScroll 35s linear infinite;

}

.tok-brand-slider:hover .tok-brand-track{

    animation-play-state:paused;

}

/*==================================
CARD
==================================*/

.tok-brand-card{

    width:220px;

    height:120px;

    background:#fff;

    border:1px solid #EEF2F7;

    border-radius:20px;

    display:flex;

    align-items:center;

    justify-content:center;

    padding:25px;

    box-shadow:0 12px 35px rgba(15,23,42,.05);

    transition:.35s ease;

    flex-shrink:0;

    position:relative;

    overflow:hidden;

}

.tok-brand-card::before{

    content:"";

    position:absolute;

    left:0;

    bottom:0;

    width:0;

    height:4px;

    background:#E31E24;

    transition:.35s;

}

.tok-brand-card:hover{

    transform:translateY(-8px);

    box-shadow:0 25px 60px rgba(15,23,42,.12);

}

.tok-brand-card:hover::before{

    width:100%;

}

/*==================================
LOGOS
==================================*/

.tok-brand-card img{

    max-width:140px;

    max-height:55px;

    object-fit:contain;

    filter:grayscale(100%);

    opacity:.75;

    transition:.4s;

}

.tok-brand-card:hover img{

    filter:none;

    opacity:1;

    transform:scale(1.08);

}

/*==================================
ANIMATION
==================================*/

@keyframes tokBrandScroll{

    from{

        transform:translateX(0);

    }

    to{

        transform:translateX(-50%);

    }

}

/*==================================
RESPONSIVE
==================================*/

@media(max-width:991px){

    .tok-brands{

        padding:80px 0;

    }

    .tok-brands-header{

        flex-direction:column;

        align-items:flex-start;

    }

    .tok-brands-header h2{

        font-size:38px;

    }

    .tok-brand-card{

        width:180px;

        height:100px;

    }

}

@media(max-width:767px){

    .tok-brands-header h2{

        font-size:30px;

    }

    .tok-brand-card{

        width:150px;

        height:90px;

        padding:20px;

    }

}