.brand-filter-button {
    margin-bottom: 10px;
}

.brand-list ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
}

.brand-list li {
    line-height: 1.8;
    font-family: 'Outfit', sans-serif;
    font-size: 1.14rem;
    width: calc(33.333% - 20px);
    margin: 10px;
    box-sizing: border-box;
}

.brand-list li a {
    display: block;
    padding: 10px;
    background: #f9f9f9;
    border: 1px solid #e1e1e1;
    border-radius: 5px;
    text-align: center;
    color: #333;
    transition: background .3s;
}

.brand-list li a:hover {
    background: #0073aa;
    color: #FFF;
}

@media only screen and (max-width: 992px) {
   .brand-list li {
    width: calc(50% - 20px);
    } 
}

@media only screen and (max-width: 600px) {
    .brand-list li {
        width: 90%;
    } 
}