
.belykweb-brands-section { padding: 40px 0 20px; overflow: hidden; }
.brand-slide { display: flex; align-items: center; justify-content: center; }
.brand-logo-round {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin: 10px auto;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.brand-logo-round:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.16);
}
.brand-logo-round img {
  width: 70%;
  height: 70%;
  object-fit: contain;
}
