.brandlist {
  width: 1200px;
  margin: 0 auto;
  padding: 50px 0 80px;
}

.brandlist h2 {
  font-family: "Montserrat", sans-serif;
  width: 1200px;
  color: #002966;
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 1.4px;
  margin: 0 auto 40px;
}


.brandlist h2 span {
  font-size: 16px;
  font-weight: normal;
  padding: 5px 0 0;
}

.filter {
  margin: 10px 0 15px;
}

.filter button {
  background: #fff;
  padding: 10px 22px;
  border-radius: 20px;
  cursor: pointer;
  border: solid 1px #002966;
  color: #002966;
}

.filter button.is-active {
  color: #fff;
  background: #002966;
  padding: 10px 22px;
  border-radius: 20px;
}

.filter button.is-disabled {
  opacity: 0.35;
  pointer-events: none;
}

.brand-item a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.brand-item a img:not(.brand_name) {
  border-radius: 10px;
  border: solid 1px #eeeeee;
}

.brand-item a img+img {
    max-height: 24px;
    width: auto;
}

.brand-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 25px;
  padding-top: 60px;
}

.brand-empty-message {
  margin-top: 24px;
  text-align: center;
  color: #666;
  font-size: 14px;
}

@media screen and (max-width:767px) {
  .brandlist {
    width: 100%;
    padding: 30px 15px;
  }

  .brandlist h2 {
    width: 100%;
    font-family: "Montserrat", sans-serif;
    color: #002966;
    font-size: 28px;
    font-weight: 500;
    letter-spacing: 1.4px;
    margin: 0 auto 45px;
    padding: 0;
  }

  .filter {
    margin: 15px 0 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 5px;
  }

  .brand-list {
    padding-top: 15px;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px 15px;
  }
}