.brands {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 40px;
  gap: 20px;
}

.brands a {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 7px 8px;
  justify-content: flex-end;
  gap: 12px;
  box-sizing: border-box;
  background-color: #f6f6f6;
  width: 104px;
  height: 80px;
  border-radius: 16px;
  transition: all 0.3s;
  cursor: pointer;
}

.brands img {
  transition: all 0.3s;
  min-height: 10px;
  max-height: 40px;
  filter: saturate(0) contrast(0.5);
}

.brands a:hover img {
  filter: brightness(0) invert(1);
}

.brands a:hover {
  background-color: #f90000;
}
.brands a:hover p {
  color: #ffffff;
}

.brands p {
  font-size: 12px;
  line-height: 16px;
  font-weight: 400;
  color: #676767;
  text-align: center;
  transition: all 0.3s;
  overflow-wrap: break-word;
  max-width: 102px;
}

@media (min-width: 1200px) {
  .brands {
    margin-top: 42px;
  }
  .brands a {
    gap: 20px;
    padding: 24px 12px;
    width: 126px;
    height: 127px;
  }
  .brands p {
    font-size: 14px;
    line-height: 24px;
  }
}
