/* colors */
.brand-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-gap: 5px;
}

.brand-box {
  width: 12.5vw;
  height: 5vw;
  background-color: white;
  text-align: center;
  border: 1px solid #dee2e6;
  padding: 0.5vw;
}

.btn-alphabet {
  border: 1px solid #dee2e6;
  background-color: #f1f1f1;
  color: #8c8c8c;
  min-width: 1.5vw;
  height: 1.5vw;
  text-align: center;
  font-size: 0.8vw;
  font-weight: bold;
  line-height: 1.5vw;
  margin-bottom: 0.5vw;
  border-radius: 0.2vw;
  padding: 0 0.2vw;
  cursor: pointer;
}

.btn-alphabet:hover {
  background-color: #b40024;
  color: white;
}