.container.brands-carousel {
  margin-top: 45px;
}

#brands {
  align-items: center;
  background-color: #fff;
  display: flex;
  justify-content: center;
  margin: 20px auto 0;
  height: 80px;
}

.brands_carousel_title {
  text-align: center;
}

/* Contenitore fisso per ogni immagine */
.brand-box {
  width: 135px;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #fff;
  margin: 0 10px;
  position: relative;
  padding: 10px;
  border-radius: 5px;
  transition: box-shadow 0.1s ease-in-out, transform 0.1s ease-in-out;
}

.brand-box:hover {
  box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.125);
  transform: scale(1.05);
}

.brand-box.custom-link {
  width: 180px; 
}

/* Immagini dei brand */
.brands-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
  margin: auto;
}

.slick-brand-carousel {
  visibility: hidden;
}

.slick-initialized {
  visibility: visible;
}

.slick-next.slick-arrow svg {
  display: none !important;
}


@media (max-width: 980px) {
  .slick-prev,
  .slick-next {
    display: none !important;
  }
}

@media (max-width: 820px) {
  .container.brands-carousel {
    margin-top: 15px;
  }
  #brands {
    margin: 0;
  }
  .brands_carousel_title {
    margin-bottom: 15px;
  }
  .brand-box {
    width: 120px;
    height: 40px;
  }
  .custom-link{
    padding:5px;
  }
}
@media (max-width: 480px) {
  .container.brands-carousel {
    margin-top: 5px;
  }
  #brands {
    margin-bottom: 20px;
    height: 50px;
  }
  
}