.bd-top-brands{
  padding:24px 0 28px;
  background:#ffffff;
}

.bd-top-brands-container{
  display:block;
}

.bd-top-brands-title{
  margin:0 0 18px;
  font-size:clamp(28px, 3vw, 44px);
  line-height:1.15;
  font-weight:800;
  color:#111827;
}

.bd-top-brands-marquee{
  position:relative;
  overflow:hidden;
  border:1px solid #dddddd;
  background:#f3f4f6;
}

.bd-top-brands-marquee::before,
.bd-top-brands-marquee::after{
  content:"";
  position:absolute;
  top:0;
  bottom:0;
  width:34px;
  z-index:2;
  pointer-events:none;
}

.bd-top-brands-marquee::before{
  left:0;
  background:linear-gradient(90deg, #ffffff 0%, rgba(255,255,255,0) 100%);
}

.bd-top-brands-marquee::after{
  right:0;
  background:linear-gradient(270deg, #ffffff 0%, rgba(255,255,255,0) 100%);
}

.bd-top-brands-track{
  display:flex;
  align-items:stretch;
  width:max-content;
  min-width:100%;
  animation:bdTopBrandsMarquee var(--bd-top-brands-duration, 34s) linear infinite;
  will-change:transform;
}

.bd-top-brands-marquee:hover .bd-top-brands-track,
.bd-top-brands-marquee:focus-within .bd-top-brands-track,
.bd-top-brands-marquee.is-static .bd-top-brands-track{
  animation-play-state:paused;
}

.bd-top-brands-marquee.is-static .bd-top-brands-track{
  width:100%;
  transform:none;
}

.bd-top-brands-item{
  flex:0 0 230px;
  min-width:230px;
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:128px;
  padding:18px 20px;
  background:#f3f4f6;
  text-decoration:none;
  border-right:1px solid #dddddd;
  transition:background-color .25s ease, transform .25s ease;
}

.bd-top-brands-item:hover,
.bd-top-brands-item:focus-visible{
  background:#ffffff;
  transform:translateY(-2px);
  outline:none;
}

.bd-top-brands-item-inner{
  display:flex;
  align-items:center;
  justify-content:center;
  width:100%;
  height:100%;
}

.bd-top-brands-item-logo{
  display:block;
  max-width:100%;
  max-height:78px;
  width:auto;
  height:auto;
  object-fit:contain;
}

.bd-top-brands-item-text{
  display:block;
  font-size:24px;
  font-weight:800;
  line-height:1.1;
  color:#111827;
  text-align:center;
}

@keyframes bdTopBrandsMarquee{
  from{transform:translateX(0);}
  to{transform:translateX(-50%);}
}

@media (max-width: 991px){
  .bd-top-brands{
    padding:18px 0 22px;
  }

  .bd-top-brands-title{
    margin-bottom:14px;
  }

  .bd-top-brands-item{
    flex-basis:190px;
    min-width:190px;
    min-height:108px;
  }

  .bd-top-brands-item-logo{
    max-height:64px;
  }
}

@media (max-width: 767px){
  .bd-top-brands-item{
    flex-basis:150px;
    min-width:150px;
    min-height:92px;
    padding:14px 16px;
  }

  .bd-top-brands-item-logo{
    max-height:52px;
  }

  .bd-top-brands-item-text{
    font-size:18px;
  }
}
