/* ==============================
   OURBRANDS FLEX ORIGINAL STYLE
============================== */

.ourbrands {
  margin: 5rem auto;
  max-width: 1400px;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* TITULO */

.ourbrands .h2 {
  width: 100%;
  text-align: center;
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 3rem;
}

/* CONTENEDOR FLEX */

.ourbrands ul.marcas {

  list-style: none;
  padding: 0;
  margin: 0;

  display: flex;
  flex-wrap: wrap;

  justify-content: center;
  align-items: center;
      row-gap: 25px;
    column-gap: 17px;
}

/* ITEM */

.ourbrands .escudoCoche {

  width: 110px;
  height: 90px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: none !important;
}

.ourbrands .escudoCoche::before {
  display: none !important;
  content: none !important;
}

/* LINK */

.ourbrands .escudoCoche a {

  width: 100%;
  height: 100%;

  display: flex;
  align-items: center;
  justify-content: center;

  text-decoration: none;
}

/* LOGO */

.ourbrands .escudoCoche img {

  width: 100px;
  height: auto;

  /* GRIS BASE */
  filter: grayscale(100%) brightness(0.7);
  opacity: 0.75;

  transition: all 0.25s ease;
}

/* HOVER COLOR ORIGINAL */

.ourbrands .escudoCoche:hover img,
.ourbrands .escudoCoche:focus-within img {

  filter: none;
  opacity: 1;
  transform: scale(1.08);
}

/* RESPONSIVE */

@media (max-width: 1024px) {

  .ourbrands ul.marcas {
    column-gap: 40px;
    row-gap: 35px;
  }

  .ourbrands .escudoCoche {
    width: 95px;
    height: 80px;
  }

  .ourbrands .escudoCoche img {
    max-width: 75px;
    max-height: 60px;
  }
}

@media (max-width: 600px) {

  .ourbrands ul.marcas {
    column-gap: 25px;
    row-gap: 25px;
  }

  .ourbrands .escudoCoche {
    width: 80px;
    height: 70px;
  }

  .ourbrands .escudoCoche img {
    max-width: 65px;
    max-height: 50px;
  }
}
