
/* Dotted border shape/section */
 .border-dotted{
     border-bottom: 4px dotted #fff;
}
/* Owl-carousel */
 .owl-carousel .owl-item {
    perspective: 1000px;
}
.owl-prev, .owl-next {
    position: absolute;
    top: 50%;
    text-align: center;
    /* padding: 7px 0px; */
    width: 25px;
    height: 25px;
    border-radius: 50px;
    /* box-shadow: 3px 3px 0px rgba(103, 102, 102, 0.2); */
    line-height: 24px;
    font-size: 13px;
}
 .owl-prev{
    left: -20px;
}
 .owl-next {
    right: -20px;
}
 .owl-prev:hover, .owl-next:hover {
    transition: all .3s ease-in-out;
}
 .owl-prev i, .owl-next i {
     color:#fff;
     vertical-align:middle;
     line-height: 10px;
}
 .owl-carousel.owl-loaded {
     display: block;
     clear: both;
    /* Important fix */
}
 .owl-dots{
     text-align:center;
     margin-top:20px;
}
 .owl-theme .owl-dots .owl-dot{
    display:inline-block;
}
 .owl-theme .owl-dots .owl-dot span{
     border: 3px solid #cecece;
     transition: all .3s ease-in-out;
     position: relative;
     display: inline-block;
     vertical-align: top;
     width: 1.5rem;
     height: 1.5rem;
     margin: 0 0.5rem;
     border-radius: 50%;
     cursor: pointer;
     color:#000;
}
