/**
    OWL Carousel theme
 */

div.owl-stage-outer,
div.owl-stage-outer div {
    height: 581px;
    /*width: 1260px;*/
}

.owl-lazy {
    background: no-repeat scroll center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.owl-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
}

.owl-controls .owl-buttons div {
    position: absolute;
    top: 0;
    bottom: 0;
    display: inline-block;
    zoom: 1;
    margin: 0;
    width: 50px;
    height: 30px;
    line-height: 25px;
    text-align: center;
    font-size: 0.9em;
    border-radius: 3px;
    color: #fff;
    background: #000;
    opacity: 0.6;
    text-transform: capitalize;
}

.owl-nav .owl-prev {
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    left: 0;
    color: #000;
    background-color: rgba(255, 255, 255, 0.5);
    padding: 5px 25px 5px 18px;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}

.owl-nav .owl-next {
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    right: 0;
    color: #000;
    background-color: rgba(255, 255, 255, 0.5);
    padding: 5px 18px 5px 25px;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}


@media screen and (max-width: 1100px) {
    div.owl-stage-outer,
    div.owl-stage-outer div {
        height: 65vh;
    }
}

