
.brand-list{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.brand-item{
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    width: calc(14% - 10px);
    margin-bottom: 10px;
}
.brand-link{
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}
.brand-img{
    width: 100%;
    background: #FFFFFF;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 90px;
}
.brand-img img {
    width: 130px;
    height: 70px;
    object-fit: contain;
}
.brand-name{
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 105%;
    color: #000000;
    margin-top: 5px;
    text-align: center;
}
.brand-slide{
    margin-bottom: 30px;
    margin-top: 0 !important;
}
@media(max-width:980px){
    .brand-img img {
        width: 80px;
        height: 70px;
        object-fit: contain;
    }
}
@media(max-width:850px){
    .brand {
        padding-bottom: 40px;
    }
}
@media(max-width: 700px){
    .brand-item {
        width: calc(21% - 10px);
    }
}
@media(max-width:475px){
    .brand-img {
        height: 60px;
    }
    .brand-img img {
        width: 63px;
        height: 50px;
        object-fit: contain;
    }
    .brand-item {
        width: calc(26% - 10px);
    }
    .brand-name {
        font-style: normal;
        font-weight: 500;
        font-size: 12px;
        line-height: 105%;
        color: #000000;
        margin-top: 5px;
    }
}