.sliderCaption{
    position: absolute;
    transform: translate(-50%, -50%);
    left: 50%;
    top: 50%;
    width: 100%;
    text-align: center;
    opacity: 0;
}

.sliderCaption h2{
    color: #fff;
    font-family: "Roboto Condensed",sans-serif;
    font-size: 38px;
    font-weight: 400;
    text-transform: uppercase;
    
}
.sliderCaption h2 span{
    display: block;
    font-size: 50px;
    font-weight: 700;
}

@media only screen and (max-width: 600px) {
    .sliderCaption h2{
        color: #fff;
        font-family: "Roboto Condensed",sans-serif;
        font-size: 16px;
        font-weight: 400;
        text-transform: uppercase;
        
    }
    .sliderCaption h2 span{
        display: block;
        font-size: 18px;
        font-weight: 700;
    }

    .owl-prev, .owl-next{
        display: none;
    }
  }


.owl-item.active .sliderCaption{
    opacity: 1;
    transition: all;
    transition-delay: 1s;
}

.owl-prev {
    background: url(../images/md-arrow.png) no-repeat !important;
    width: 40px;
    height: 40px;
    position: absolute;
    top: 50%;
    margin-top: -20px;
    cursor: pointer;
    z-index: 3;
    text-indent: -99px;
    left: 10px;
}

.owl-next {
    background: url(../images/md-arrow.png) no-repeat !important;
    background-position: -40px 0 !important;
    width: 40px;
    height: 40px;
    position: absolute;
    top: 50%;
    margin-top: -20px;
    cursor: pointer;
    z-index: 3;
    right: 10px;
    text-indent: -99px;
    
}

.img-full{
    width: 100%;
}