.cust-banner {
  box-shadow: inset #000000 0px 0px 10px 2px;
  background: url(https://agensatria123.xyz/img/red.png);
  background-size: 100% 100%;
  margin: 0 auto 5px;
  width: 100%;
  max-width: 100%;
  padding: 20px 0;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}

.banner-slider {
  display: flex;
  transition: transform 0.6s ease-in-out;
  will-change: transform;
  width: 100%;
}

.banner-slide {
  flex: 0 0 100%;
  display: flex;
  justify-content: center;
  gap: 30px;
}

.banner-slide a img {
  width: 150px;
  max-width: 150px;
  border-radius: 25px;
  box-shadow: #00000038 1px 3px 5px 4px;
}

.slide-controls {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  padding: 0 10px;
  z-index: 10;
}

.slide-controls button {
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 20px;
  cursor: pointer;
}

.slide-controls button:hover {
  background: rgba(255, 255, 255, 0.3);
}

.slide-dots {
  text-align: center;
  margin-top: 15px;
}

.slide-dots .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 5px;
  background-color: #ffffff40;
  border-radius: 50%;
  cursor: pointer;
}

.slide-dots .dot.active {
  background-color: #fff;
}

/* RESPONSIVE MOBILE */
@media (max-width: 600px) {
  .banner-slide a img {
    max-width: 150px;
    width: 150px;
  }
}