.brand-slider {
    width: 100%;


    display: flex;
    justify-content: center;
    align-items: center;
}

.brand-slider ul li img {
    width: 100%;
    cursor: pointer;
    opacity: 0.9;
}

.brand-slider ul {
    list-style: none;
}

.brand-slider ul li {
    text-decoration: none;
}

.box {
    width: 350px;
    background-color: #1e1e26;
    box-shadow: 2px 10px 12px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
    margin: 20px 10px;
}



.brand-slider ul li img:hover {
    opacity: 10;
}