
.bps-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}
.bps-gallery-thumb {
  width: 180px;
  height: auto;
  border-radius: 4px;
  transition: transform 0.3s;
}
.bps-gallery-thumb:hover {
  transform: scale(1.05);
}
