.brands{

    padding:100px 0;

}

.brand-card{

    background:#1E293B;

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

    border-radius:18px;

    height:140px;

    display:flex;

    justify-content:center;

    align-items:center;

    padding:20px;

    font-size:22px;

    font-weight:800;

    letter-spacing:1px;

    color:#FFFFFF;

    text-decoration:none;

    transition:.3s;

    cursor:pointer;

}

.brand-logo{

    max-width:100%;

    max-height:100%;

    object-fit:contain;

}

.brand-fallback-text{

    display:none;

    width:100%;

    height:100%;

    align-items:center;

    justify-content:center;

    text-align:center;

}

.brand-card:hover{

    transform:translateY(-8px);

    border-color:#0891B2;

    color:#67E8F9;

    box-shadow:0 20px 45px rgba(8,145,178,.20);

}

@media(max-width:991px){

    .brands{

        padding:70px 0;

    }

    .brand-card{

        height:120px;

        font-size:26px;

    }

}