  /* Owl Dots Start */

.owl-dots {
    position: absolute;
    width: 100%;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    backface-visibility: hidden;
    position: absolute;
    bottom: 0;
    /* bottom: 6px;
    display: flex;
    justify-content: flex-end; */
}

.owl-dot {
    border-radius: 50px;
    height: 15px;
    width: 15px;
    display: inline-block;
    background: #fff;
    margin-left: 5px;
    margin-right: 5px;
    border: 1px solid #aaa;
}

.owl-dot.active {
    background: #6acaf9;
    border-color: #6acaf9;
    color: wheat;
}

.owl-dots {
    text-align: center;
}

/* Owl Dots End */

/* Owl Nav Start */

.owl-nav.disabled {
    display: none;
}

.owl-prev,
.owl-next {
    position: absolute;
    top: 42%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    font-size: 30px;
    background-color: rgba(0, 0, 0, 0.5);
    cursor: pointer;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.owl-next:before {
    content: '\f105';
}

.owl-prev:before {
    content: '\f104';
}

.owl-prev,
.owl-next {
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
}
.owl-prev {
    left: 0;
    /* background: url('/img/ArrowLeft.png') center no-repeat;
    background-size: cover; */
}

.owl-next {
    right: 0;
    /* background: url('/img/ArrowRight.png') center no-repeat;
    background-size: cover; */
}

/* Owl Nav End */
