.productsContainer {
    padding-bottom: 85px;
}
.brandsMainSection{
    text-align: left;
}
.logos {
    display: table; 
    text-align: center;
    width: 100%;
    /*display: flex;*/
    padding: 0 130px;
    /*flex-wrap: wrap;
    justify-content: space-around;*/
}
.logos li {
   position: relative;
    width: calc(100%/8);
    height: 115px;
    display: inline-block;

    min-width: 115px;
    max-width: 150px;

   /* flex: 0 0 115px;*/
}
.logos li img{
    position: absolute;
    left: 0;
}
.logos li img:first-child{
    opacity: 1;
    transition: opacity 0.4s;
}
.logos li img:last-child{
    opacity: 0;
    transition: opacity 0.4s;
}
.logos li:hover img:first-child{
    opacity: 0;
}
.logos li:hover img:last-child{
    opacity: 1;
}
label.brandTitle {
    position: absolute;
    bottom: 10px;
    text-align: center;
    left: 0;
    opacity: 0;
    right: 0;
    transition: all 0.4s;
}
.logos li:hover label.brandTitle{
    bottom: -20px;
    opacity: 1;
}

@media screen and (max-width: 1024px){
    .logos {
        padding: 0 30px;
    }
}
@media screen and (max-width: 670px){
    .logos li:hover label.brandTitle {
        bottom: 0px;
    }
}
h2{
    text-align:left;
    margin-top:30px;
}
.productsContainer h2{
    margin-top:0;
    text-align:center;
}