.vertical-line {
  width: 2px;
  background-color: white;
  opacity: 0.25;
  height: 100%;
}

#myCarousel {
  background-color: #0f151a;
  position: relative;
  padding: 40px 0;
  overflow: hidden;
  margin: 0 auto;
  max-width: 1000px;
}

.carousel-inner {
  width: 100%;
}

.carousel-content-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%; /* pastikan bisa penuh */
}

.img-container-2 {
  max-width: 600px;
  height: 350px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
}

.img-container-2 img, iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-control-prev,
.carousel-control-next {
  width: 50px;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  background: none;
  z-index: 10;
}

.carousel-control-prev {
  left: 10px; /* sebelumnya -10px */
}

.carousel-control-next {
  right: 10px; /* sebelumnya -10px */
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-image: none;
  border: solid white;
  border-width: 0 4px 4px 0;
  padding: 10px;
}

.carousel-control-prev-icon {
  transform: rotate(135deg);
}

.carousel-control-next-icon {
  transform: rotate(-45deg);
}
