/** Brands **/
.brands-wrap {
    position: relative;
}
.brands-wrap:before {
    content: "";
    height: 100%;
    width: 250px;
    position: absolute;
    right: 0;
    top: 0;
    background: linear-gradient(-90deg, white, transparent);
    z-index: 2;
}
.brands-wrap:after {
    content: "";
    height: 100%;
    width: 250px;
    position: absolute;
    left: 0;
    top: 0;
    background: linear-gradient(90deg, white, transparent);
    z-index: 2;
}
.sw--brands {
    border-bottom: 1px solid #CCCEDA;
}
.sw--brands, .sw--brands-2 {
    min-height: 120px;
    display: flex;
    align-items: center;
}
.brand-item {
    padding-inline: clamp(12px, 3vw, 40px);
    border-right: 1px solid #CCCEDA;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80px;
    transition: 0.4s;
}
.brand-item img {
    transition: 0.4s;
    filter: grayscale(1);
}
.brand-item:hover img {
    filter: grayscale(0);
}
@media only screen and (max-width: 768px) {
    .brands-wrap:before,
    .brands-wrap:after {
        width: 100px;
    }
    .sw--brands, .sw--brands-2 {
        min-height: 80px;
    }
    .brand-item {
        min-height: 52px;
    }
}