html{
    margin:0;
    padding:0;
}

body{
    margin:0;
    padding:0;
}

.owl-slider{
   width: 75%;
   margin: 0 auto;
}

.owl-nav button {
  position: absolute;
  top: 50%;
  background-color: #000;
  color: #ccc;
  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: 10px;
}

.owl-carousel button.owl-dot{
    background-color: #ccc !important;
}

.owl-dots button.owl-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
  background-color: #ccc !important;
  margin: 0 3px;
}
.owl-dots button.owl-dot.active {
  background-color: #000;
}
.owl-dots button.owl-dot:focus {
  outline: none;
}
.owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
/*span {
    font-size: 45px;
    position: relative;
    top: -30px;
    color: #ccc;
}*/
.owl-nav button:focus {
    outline: none;
}
         
.owl-nav .owl-prev span{
    position: absolute;
    top: -35px;
    border-radius: 50%;
    left: -26px;
    color: #fff;
    background: #3e4095;
    width: 50px;
    height: 50px;
    font-weight: bold;
    font-size: 25px;
    line-height: 45px; 
    display:flex;
    align-items:center;
    justify-content:center;
}
.owl-nav .owl-next span{ 
    position: absolute;
    top: -35px;
    right: -26px;
    color: #fff;
    background: #3e4095;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-weight: bold;
    font-size: 25px;
    line-height: 45px;
    display:flex;
    align-items:center;
    justify-content:center;
}
@media screen and (max-width: 991px) {
    .owl-nav .owl-prev span, .owl-nav .owl-next span{
        width:38px;
        height:38px;
    }
    .owl-nav .owl-prev span {
        left:-20px;
    }
    .owl-nav .owl-next span{
        right:-20px;
    }
}
