.owl-carousel {
  z-index: initial;
}
.owl-carousel .owl-stage {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.owl-carousel .owl-item img,
.owl-carousel .owl-item svg {
  width: auto;
}
.owl-carousel .owl-dots .owl-dot {
  width: 1.4rem;
  height: 1.4rem;
  min-width: 1.4rem;
  min-height: 1.4rem;
  border: 0.2rem solid #005285;
  border-radius: 50%;
}
.bg--darkblue .owl-carousel .owl-dots .owl-dot {
  border-color: #ffffff;
}
.owl-carousel .owl-dots .owl-dot.active {
  background-color: #005285;
}
.bg--darkblue .owl-carousel .owl-dots .owl-dot.active {
  background-color: #ffffff;
}

.owl-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 100%;
}
.owl-prev, .owl-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.5s ease;
}
.owl-prev.disabled, .owl-next.disabled {
  cursor: default;
  opacity: 0.3;
}
@media (min-width: 1200px) {
  .owl-prev {
    left: -6rem;
  }
}
@media (min-width: 1600px) {
  .owl-prev {
    left: 0;
  }
}
@media (min-width: 1200px) {
  .owl-next {
    right: -6rem;
  }
}
@media (min-width: 1600px) {
  .owl-next {
    right: 0;
  }
}
.owl-carousel button.owl-dot {
  width: 1.4rem;
  height: 1.4rem;
  border: 0.2rem solid #005285;
  border-radius: 50%;
  overflow: hidden;
  transition: all 0.5s ease;
}
.owl-carousel button.owl-dot.active {
  background-color: #005285;
}
.owl-carousel button.owl-dot:not(:first-of-type) {
  margin-left: 0.5rem;
}
.owl-dots {
  text-align: center;
  margin-top: 3rem;
}
@media (min-width: 1440px) {
  .owl-dots {
    margin-top: 5rem;
  }
}