.owl-nav button {
  position: absolute;
  top: 50%;
  background-color: #000;
  color: #fff;
  margin: 0;
  transition: all 0.3s ease-in-out;
}
.owl-nav button.owl-prev {
  left: 0;
}
.owl-nav button.owl-next {
  right: 0;
}
.owl-dots {
  text-align: center;
  padding-top: 40px;
}
.owl-dots button.owl-dot {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  display: inline-block;
  background: #e4e4e4;
  margin: 0 8px;
}
.owl-dots button.owl-dot.active {
  background-color: #0053cb;
}
.owl-dots button.owl-dot:focus {
  outline: none;
}
.owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.38) !important;
}
.owl-slider .owl-nav button {
  opacity: 0.6;
}
.owl-slider .owl-nav button span {
  background-color: var(--primary-color);
  height: 32px;
  width: 32px;
  border-radius: 50%;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 400;
  color: #fff;
}
.owl-slider .owl-nav button:hover {
  background-color: var(--primary-color);
  opacity: 1;
}
/*--- Responsive ---*/
@media only screen and (max-width: 768px) {
  .owl-dots button.owl-dot {
    width: 12px;
    height: 12px;
  }
}
@media (max-width: 767px) {
  .owl-dots {
    padding-top: 30px;
  }
}
