.industry-swiper {
  padding: 10px 4px 46px;
}

.industry-swiper .swiper-slide {
  height: auto;
}

.industry-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 26px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.industry-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.18);
  transform: translateY(-4px);
}

.ind-icon {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ind-icon img {
  max-width: 100%;
  height: 60px;
  object-fit: contain;
  /*filter: grayscale(100%) brightness(1.6);*/
  opacity: 0.75;
  transition: 0.3s;
}

.industry-card:hover .ind-icon img {
  filter: none;
  opacity: 1;
}

/* Pagination */
.industry-swiper .swiper-pagination-bullet {
  background: #fff;
  opacity: 0.4;
}
.industry-swiper .swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--bs-primary, #ff5a1f);
}