.brands-nav {
  display: flex;
  justify-content: center;
  background: #F4F4F4;
  padding: 4px 30px;
}
.brands-nav a {
  padding: 5px;
  font-size: 18px;
  color: #702c91;
  font-weight: bold;
  text-decoration: none;
}
.brands-hr {
  position: relative;
  margin: 30px 0;
  text-align: center;
}
.brands-hr::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 1;
  transform: translateY(-50%);
  width: 100%;
  height: 1px;
  border-top: 1px dotted #bebebe;
  border-bottom: 1px dotted #bebebe;
}
.brands-hr span {
  font-size: 20px;
  font-weight: bold;
  color: #702c91;
  background: #e4e4e4;
  padding: 0 15px;
  position: relative;
  z-index: 2;
}
.brands-row {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  padding: 0;
  margin: 0;
  gap: 14px;
  justify-content: center;
}
.brands-col {
  aspect-ratio: 1/1;
  background: #fff;
  position: relative;
  border-radius: 6px;
  border: 1px solid transparent;
  transition: all .4s ease;
  margin-bottom: 20px;
  text-decoration: none;
}
.brands-col:hover {
  border-color: #702c91;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, .13);
}
.brands-col__name {
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  text-align: center;
  color: #000;
  font-size: 16px;
  font-weight: bold;
}
.brands-col__name img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}
.brands-col__cnt {
  position: absolute;
  left: 0;
  bottom: -30px;
  color: #666;
  font-size: 13px;
  font-style: italic;
}
@media screen and (max-width: 767px) {
  .brands-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .brands-nav {
    flex-wrap: wrap;
  }
  .brands-nav a {
    font-size: 14px;
  }
}
/**
 * Каталог
 */
.prod-sort {
  margin-top: 0;
  padding-top: 0;
}
.prod-sort::before {
  display: none;
}