.brands-block {
  position: relative;
}
.brands-block .brands-holder {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  width: 100%;
  gap: 30px;
}
.brands-block .brand-img {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: 150px;
  padding: 5px;
  aspect-ratio: 23 / 15;
  border-radius: 5px;
  background: var(--background);
  transition: all 0.3s ease-in;
  user-select: none;
  cursor: pointer;
}
.brands-block .brand-img img {
  width: fit-content;
  max-width: 100%;
  height: 100%;
  object-fit: contain;
}
.brands-block .btn {
  margin: 40px auto 0 0;
}
.brands-block .ellipse-liner {
  display: flex;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  right: -260px;
  width: 750px;
  height: 750px;
  border-radius: 100%;
  filter: blur(250px);
  -webkit-backdrop-filter: blur(250px);
  background: var(--gradient);
  z-index: -1;
}

@media (max-width: 1480px) {
  .brands-block .brands-holder {
    gap: 20px;
  }
}
@media (max-width: 1220px) {
  .brands-block .brands-holder {
    gap: 10px;
  }
}
@media (max-width: 992px) {
  .brands-block .brands-holder {
    grid-template-columns: repeat(3, 1fr);
  }
  .brands-block .brand-img { 
	height: 16vw;
    aspect-ratio: auto;
  }
  .brands-block .btn {
    margin-top: 20px;
  }
}
@media (max-width: 576px) {
  .brands-block .brands-holder {
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
  }
}
@media (max-width: 380px) {
  .brands-block .brands-holder {
    grid-template-columns: repeat(2, 1fr);
  }
  .brands-block .brand-img { 
	height: 27vw;
  }
}
