.brand-section{
    background:#fff;
}

.brand-carousel .brand-item{
    height:130px;
    background:#fff;
    border:1px solid #e8e8e8;
    border-radius:8px;
    display:flex;
    justify-content:center;
    align-items:center;
    padding:20px;
    transition:.3s;
}

.brand-carousel .brand-item:hover{
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transform:translateY(-4px);
}

.brand-carousel img{
    max-width:160px;
    max-height:70px;
    width:auto;
    height:auto;
    filter:none;
    opacity:.75;
    transition:.3s;
}

.brand-carousel .brand-item:hover img{
    filter:none;
    opacity:1;
}

.brand-carousel .owl-stage{
    display:flex;
    align-items:center;
}

.brand-carousel .owl-item{
    display:flex;
}

.brand-carousel .owl-nav{
    display:none;
}

.brand-carousel .owl-dots{
    margin-top:30px;
    text-align:center;
}

.brand-carousel .owl-dot span{
    width:10px;
    height:10px;
    margin:5px;
    background:#ccc;
    display:block;
    border-radius:50%;
}

.brand-carousel .owl-dot.active span{
    background:#2874d2;
}