/*==========================================================
                    TRUSTED BRANDS
==========================================================*/

.brands-section{

    padding:120px 0;

    background:#FFFFFF;

}

.brands-grid{

    display:grid;

    grid-template-columns:repeat(6,1fr);

    gap:30px;

    margin-top:70px;

}

.brand-card{

    height:120px;

    background:#F8FAFC;

    border-radius:20px;

    display:flex;

    justify-content:center;

    align-items:center;

    padding:25px;

    border:1px solid #E2E8F0;

    transition:.35s ease;

}

.brand-card:hover{

    transform:translateY(-8px);

    border-color:#00C2FF;

    box-shadow:0 20px 40px rgba(0,194,255,.12);

}

.brand-card img{

    width:100%;

    max-width:120px;

    filter:grayscale(100%);

    transition:.35s ease;

}

.brand-card:hover img{

    filter:grayscale(0);

    transform:scale(1.08);

}

@media(max-width:1200px){

    .brands-grid{

        grid-template-columns:repeat(3,1fr);

    }

}

@media(max-width:768px){

    .brands-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

@media(max-width:480px){

    .brands-grid{

        grid-template-columns:1fr;

    }

}