/* Header Mobile */
.brands__header-mobile {
    position: absolute;
    top: 100%;
    width: 100%;
    display: none;
}

.brands__header-mobile.active {
    display: block;
}

.brands__header-mobile__list {
    border-bottom: 1px solid black;
}
.brands__header-mobile__list li {
    padding: 0.5rem 1rem;
    background-color: #F1F1F1;
    border-top: 1px solid black;
}

.brands__header-mobile__list li.active {
    background-color: #F1F1F1;
}

/* Header */
.brands__header {
    display: none;
}

/* Grid */
.brands__grid {
    display: flex;
    flex-wrap: wrap;
    
}

/* Each Brand */
.brand {
    width: 100%;
    margin-bottom: 2rem;
}
.brand h3 {
    padding: 0.25rem 1rem;
}

@media only screen and (min-width: 768px) {
    .brands__header-mobile, 
    .page-separator__brand {
        display: none;
    }
    
    .brands__header__list li {
        margin: 0 1rem;
    }

    .brands__header {
        display: flex;
        justify-content: space-between;
        margin-bottom: 4rem;
    }

    .brands__header,
    .brands > section {
        min-width: 700px;
        padding: 1rem 2rem;
    }
    
    .brands__grid {
        margin: 0 auto;
    }

    .brand {
        width: 25%;
        padding: 0 5%;
        margin-bottom: 2rem;
        text-decoration: none !important;
    }

    .brand__title {
        padding: 0 0.5rem;
        opacity: 0;
        text-align: center;
        transition: 300ms ease;
    }

    .brand:hover > .brand__title {
        opacity: 1;
    }

    .brands__header__list {
        display: flex;
        justify-content: center;
        width: 100%;
    }
}