button.owl-prev,
button.owl-next {
    position: absolute;
    height: 150px;
}

.owl-stage-outer {
    position: relative;
}

.owl-carousel.owl-loaded.owl-drag.owl-grab {
    position: relative;
}
.owl-carousel.owl-loaded.owl-drag {
    margin-top: 50px;
}

.owl-prev span,
.owl-next span {
    display: none;
}
button.owl-prev {
    height: 150px;
    font-size: 72px;
    
    position: absolute;
    top: 0;
    left: 0;
    width: 50px;
}
button.owl-prev::before {
    content: url(../img/owl-carousel-arrow-mobile.webp);
    position: absolute;
    top: 0;
    left: 20px;
    transform: rotate(180deg);
    width: 50%;
}
button.owl-next::before {
    content: url(../img/owl-carousel-arrow-mobile.webp);
    position: absolute;
    top: 0;
    right: 20px;
    width: 50%;
}
.owl-next span {
    height: 150px;
    font-size: 150px;
    
    color: white;
    top: 50%;
    right: -70%;
    position: absolute;
    top: 50%;
}

button.owl-next {
    height: 150px;
    font-size: 72px;
    
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
}

/* .owl-nav {
    position: relative;
} */
.owl-dots {
    display: flex;
    justify-content: center;
    width: 100%;
    height: 20px;
    margin-top: 20px;
}

button.owl-dot {
    width: 20px;
    height: 20px;
    background: #EB5B25!important;
    border-radius: 20px;
    margin: 0 10px!important;
}

.owl-dot span {
    background: #EB5B25;
    width: 20px;
    height: 20px;
}
button.owl-dot:hover{
    background: #C74817!important;
}
button.owl-dot.active:hover{
    background: #0B3957!important;
}

button.owl-dot.active {
    background: #194866!important;
}
@media screen and (min-width:768px) {
    .owl-carousel.owl-loaded.owl-drag {
        margin-top: 50px;
    }
    .owl-proc.owl-carousel.proc-handle.owl-loaded.owl-drag .owl-carousel .owl-stage-outer {
        position: relative;
        overflow: hidden;
        -webkit-transform: translate3d(0,0,0);
        transform: translate3d(0,0,0);
        width: 90%;
        /* display: flex; */
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin-left: 5%;
    }
    button.owl-prev {
        
        width: unset;
    }
    button.owl-next {
        
        width: unset;
    }
    button.owl-prev::before {
        content: url(../img/owl-carousel-arrow.webp);
        left: -20px;
        top: 100%;
    }
    button.owl-next::before {
        content: url(../img/owl-carousel-arrow.webp);
        right: -20px;
        top: 100%;
    }
}