.brands-bg {
    padding: 60px 40px;
    background-color: #FFF;
    border-top: 1px solid #E4E4E4;
    overflow: hidden;
}

.brands-cr {
    max-width: 1100px;
    margin: auto;
}

.brands-title {
    margin-bottom: 40px;
}

.brands-title h3 {
    padding-bottom: 15px;
    border-bottom: 1px solid #FFAF00;
    font-family: Montserrat, Helvetica, sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* WRAPPER */

.brands-slider-wrapper {
    position: relative;
    width: 100%;
    overflow: visible;
}

/* SLIDER */

.brands-slider {
    overflow: hidden;
    width: 100%;
    padding: 10px 0;
}

/* TRACK */

.brands-track {
    display: flex;
    align-items: center;
    transition: transform 1.5s ease;
}

/* ITEMS */

.brand-item {
    min-width: 33.333%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 10px;
    box-sizing: border-box;
}

/* IMAGEN EXACTA */
.brand-item img {
    width: 192px;
    height: 102px;
    object-fit: contain;
    background-color: #FFF;
    border: 1px solid transparent;
    border-radius: 8px;
    padding: 10px;
    transition: .25s;
}

/* HOVER */

.brand-item img:hover {
    border-color: #FFAF00;
    transform: translateY(-4px);
    box-shadow: 0px 8px 20px rgba(0, 0, 0, .06);
}

/* FLECHAS */

.brands-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid #FFAF00;
    background-color: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #464646;
    cursor: pointer;
    z-index: 50;
    transition: .25s;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, .08);
}

.brands-arrow i {
    font-size: 14px;
}

.brands-arrow:hover {
    background-color: #FFAF00;
    color: #FFF;
}

/* YA NO SE CORTAN */

.brands-arrow.prev {
    left: -20px;
}

.brands-arrow.next {
    right: -20px;
}

/* RESPONSIVE */

@media(max-width: 1100px) {

    .brands-bg {
        padding: 60px 25px;
    }

}

@media(max-width: 990px) {

    .brand-item {
        min-width: 50%;
    }

    .brand-item img {
        width: 260px;
        height: 145px;
    }

}

@media(max-width: 770px) {

    .brands-bg {
        padding: 50px 15px;
    }

    .brand-item {
        min-width: 100%;
    }

    .brand-item img {
        width: 100%;
        max-width: 280px;
        height: 135px;
    }

    .brands-arrow {
        width: 38px;
        height: 38px;
    }

    .brands-arrow.prev {
        left: -5px;
    }

    .brands-arrow.next {
        right: -5px;
    }

}