/* 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: -20px;
    /* bottom: 125px; */
    display: flex;
    justify-content: center;
}

.owl-dot {
    border-radius: 10px;
    height: 12px;
    width: 12px;
    display: inline-block;
    background: #fff;
    margin-left: 5px;
    margin-right: 5px;
    border: 1px solid #aaa;
    cursor: pointer;
}

.owl-dot.active {
    background: #e37159;
    border-color: #e37159;
    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%; */
    bottom: -60px;
    transform: translateY(-50%);
    width: 75px;
    height: 75px;
    border-radius: 10px;
    font-size: 30px;
    background-color: #d56c4f;
    cursor: pointer;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
    font-size: 50px;
}


.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 {
    right: 130px;
    /* background: url('../../img/ArrowLeft.png') center no-repeat;
    background-size: cover; */
}

.owl-next {
    right: 40px;
    /* background: url('../../img/ArrowRight.png') center no-repeat;
    background-size: cover; */
}

/* Owl Nav End */
