.brands {
    /* display: flex;
    flex-direction: column;
    justify-content: space-around;   
    flex-wrap: wrap; */
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    height: auto;
    font-size: 16px;
    line-height: 24px;
    grid-gap: 10px;
    margin-bottom: 56px;
    /* grid-auto-flow: column; */
    width: 100%;
}

.brands-list {        
    column-count: 6 !important;    
}

.brand-item {
    /* width: 16%; */
    margin-bottom: 12px;
}

.brand-item a:hover {
    color: #006DCC !important;
}

h1 {
    margin-top: 16px !important;
    margin-bottom: 24px !important;
}

@media (max-width: 1001){
    .brands {
        /* height: 2568px; */
        grid-template-columns: repeat(4, 1fr);
        height: auto;
    }
}

@media (max-width: 1199px){
    .brands {
        grid-template-columns: repeat(4, 1fr);
        height: auto;
        /* height: 2568px; */
    }
}

@media (max-width: 767px){
    .brands {
        grid-template-columns: repeat(2, 1fr);
        height: auto;;
        /* flex-direction: row; */
    }

    .brand-item {
        /* width: 50%; */
    }
}