/* Basic styling for the Owl Carousel container */
.owl-carousel {
  position: relative;
  display: block;
  margin: 0 auto;
}

/* Ensure that the images within the carousel stretch to fill their containers */
.owl-carousel .item {
  display: flex;
  justify-content: center;  /* Center the content horizontally */
  align-items: center;      /* Center the content vertically */
}

.owl-carousel .item img {
  width: 100%;
  height: auto;
  display: block;
}
.owl-stage-outer {
    width: 107% !important;
    height: 22px;
    overflow: hidden;
}
/* Optional: styling for the navigation buttons (prev/next) */
.owl-nav {
  position: absolute;
  /*bottom: 5.5%;*/
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-70%);
}
button.owl-prev {
    left: -35px;
    position: relative;
}

button.owl-next {
    border: 0;
    background: transparent;
    color: orange;
    font-weight: 900;
}

/* Styling for the dots navigation */
.owl-dots {
  text-align: center;
  /*margin-top: 20px; */
}

.owl-dots .owl-dot {
  display: inline-block;
  margin: 0 5px;
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0.3);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  transition: background-color 0.3s ease;
}

.owl-dots .owl-dot.active {
  background-color: #000;  /* Active dot is darker */
}

.owl-dots .owl-dot:hover {
  background-color: rgba(0, 0, 0, 0.5);
}

/* Optional: Additional styling for smaller screens */
@media screen and (max-width: 768px) {
  .owl-carousel .item img {
    max-width: 100%;
    height: auto;
  }

  .owl-prev, .owl-next {
    font-size: 20px;
    padding: 8px;
  }
}

@media screen and (max-width: 480px) {
  .owl-carousel .item img {
    max-width: 100%;
    height: auto;
  }

  .owl-prev, .owl-next {
    font-size: 18px;
    padding: 6px;
  }
}