#owl {
  position: relative;
  overflow: hidden;
}

#owl .item {
  display: none;
}

#owl .item.is-active {
  display: block;
}

#owl .carousel-button {
  position: absolute;
  top: 35%;
  z-index: 2;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 4px;
  background: rgba(6, 33, 63, 0.7);
  color: #fff;
  font-size: 26px;
  line-height: 44px;
  text-align: center;
  cursor: pointer;
}

#owl .carousel-button:hover,
#owl .carousel-button:focus {
  background: #06213f;
}

#owl .carousel-button.prev {
  left: 24px;
}

#owl .carousel-button.next {
  right: 24px;
}

#owl .carousel-dots {
  position: absolute;
  right: 0;
  bottom: 20px;
  left: 0;
  z-index: 2;
  text-align: center;
}

#owl .carousel-dot {
  width: 13px;
  height: 13px;
  margin: 0 4px;
  padding: 0;
  border: 1px solid #fff;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

#owl .carousel-dot.is-active {
  background: #06213f;
}

@media (max-width: 768px) {
  #owl .carousel-button {
    top: 15%;
  }

  #owl .carousel-button.prev {
    left: 10px;
  }

  #owl .carousel-button.next {
    right: 10px;
  }
}
