.subpanels {
  display: flex;
  margin-top: 20px;
  justify-content: space-between;
}
.subpanels .subpanel {
  padding: 1em;
  border: 2px solid #666;
  width: 33.33333333%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.subpanels .subpanel:not(:first-child) {
  margin-left: 0.5em;
}
.subpanels .subpanel:not(:last-child) {
  margin-right: 0.5em;
}
.subpanels .subpanel .heading {
  font-weight: 900;
  text-transform: uppercase;
  font-size: 30px;
  text-shadow: 1px 1px 1px #666;
  white-space: nowrap;
}
.manufacturers {
  width: 100%;
  background-image: url(../images/warehouse.jpg);
  background-color: #333;
  margin: 30px auto;
}
.manufacturers .intro {
  font-size: 18px;
  color: #fff;
  padding: 20px 0;
  text-transform: uppercase;
  text-align: center;
}
.manufacturers .brandbox {
  width: 100%;
  display: grid;
  padding: 0 0 20px 0;
  grid-template-columns: repeat(6, min-content);
  justify-content: center;
}
.manufacturers .brandbox .manufacturer {
  display: inline;
  background-color: #fff;
  /* border:1px solid #e4e4e4;*/
  margin: 5px 25px;
  border: 2px solid #cc0000;
  outline: 2px solid yellow;
  border-radius: 4px;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  text-align: center;
  padding: 0.25em;
}
/*# sourceMappingURL=index.css.map */