/*
|--------------------------------------------------------------------------
Featured Brands
|--------------------------------------------------------------------------
*/

.featured-brands{

    background:#FAFAF8;

}

.brand-card{

    display:block;

    text-align:center;

    padding:32px;

    border-radius:24px;

    background:#FFF;

    text-decoration:none;

    transition:.3s;

    box-shadow:0 12px 30px rgba(0,0,0,.05);

}

.brand-card:hover{

    transform:translateY(-8px);

}

.brand-card img{

    width:100%;

    height:100px;

    object-fit:cover;

    border-radius:12px;

    margin-bottom:24px;

}

.brand-card h3{

    margin-bottom:8px;

}

.brand-card span{

    color:var(--color-text-light);

}