html {
  scroll-behavior: smooth;
}

.slider {
  margin-bottom: 30px;
  position: relative;
}

.slider .owl-item.active.center .slider-card {
  transform: scale(1.15);
  opacity: 1;
  background: #ffffff;
  color: #000000;
}

.slider-card {
  background: #fff;
  padding: 0px 0px;
  margin: 50px 15px 90px 15px;
  box-shadow: 0 15px 45px -20px rgb(0 0 0 / 73%);
  transform: scale(0.9);
  opacity: 0.5;
  transition: all 0.3s;
}

.owl-nav .owl-prev {
  position: absolute;
  top: calc(50% - 25px);
  left: 0;
  opacity: 1;
  font-size: 30px !important;
  z-index: 1;
}

.owl-nav .owl-next {
  position: absolute;
  top: calc(50% - 25px);
  right: 0;
  opacity: 1;
  font-size: 30px !important;
  z-index: 1;
}

.owl-dots {
  text-align: center;
}

.owl-dots .owl-dot {
  height: 7px;
  width: 7px;
  border-radius: 10px;
  background: #000000 !important;
  margin-left: 3px;
  margin-right: 3px;
  outline: none;
}

.owl-dots .owl-dot.active {
  background: #000000 !important;
  width: 12px;
  height: 12px;
}

/* CSS for larger screens */
.owl-dots {
  display: none;
}

/* CSS for small screens (e.g., mobile devices) */
@media screen and (max-width: 767px) {

  /* Replace 767px with the desired breakpoint for small screens */
  .owl-dots {
    display: block;
  }
}

.owl-next,
.owl-prev {
  display: none !important;
}

@media screen and (min-width: 768px) {

  /* Replace 768px with the breakpoint for large screens */
  .owl-next,
  .owl-prev {
    display: block !important;
  }
}