

/*********** CSS OWL **********/


.owl-nav {
    position: absolute;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    top: 30%;
    left: 0;
    z-index: 1000;
    width: 100%;
    height: 0;
}

    .owl-nav > div {
        background: #B4B3B3;
        color: #FFF;
        font-size: 25px;
        z-index: 100;
        width: 40px;
        height: 40px;
        border-radius: 30px;
        cursor: pointer;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

        .owl-nav > div:hover {
            background: #000;
            color: #FFF;
        }

    .owl-nav .owl-prev {
        position: relative;
        left: 70px;
        top: 60px;
    }

    .owl-nav .owl-next {
        position: relative;
        right: 70px;
        top: 60px;
    }

#owl-carousel-two .owl-nav .owl-next {
    top: 10px;
}

#owl-carousel-two .owl-nav .owl-prev {
    top: 10px;
}


@media only screen and (max-width: 600px) {
    .owl-nav .owl-prev {
        left: 15px;
    }

    .owl-nav .owl-next {
        right: 15px;
    }
}


@media only screen and (min-width: 601px) and (max-width: 767px) {
    .owl-nav .owl-next {
        right: 50px;
    }

    .owl-nav .owl-prev {
        left: 50px;
    }
}


@media only screen and (min-width: 768px) and (max-width: 991px) {
    .owl-nav .owl-next {
        right: 30px;
    }

    .owl-nav .owl-prev {
        left: 30px;
    }
}


@media only screen and (min-width: 992px)and (max-width: 1199px) {
    .owl-nav .owl-next {
        right: 45px;
    }

    .owl-nav .owl-prev {
        left: 45px;
    }
}
