/** OWL Carousel **/
.owl-carousel .owl-nav .owl-next span,
.owl-carousel .owl-nav .owl-prev span {
    display: none
}

.owl-carousel {
    height:70vh;
    background: black;
}
.owl-carousel .owl-nav button.owl-prev {
    position: absolute;
    top: 50%;
    left: 0;
    width: 80px;
    height: 68px;
    font-size: 30px;
    background: rgba(0, 0, 0, .5);
    opacity: .7;
    margin-top: -34px
}
.owl-carousel .owl-nav .owl-prev:hover {
    background: rgba(0, 0, 0, 1)
}
.owl-carousel .owl-nav .owl-prev:after {
    content: '\f104';
    position: absolute;
    top: 10px;
    left: 30px;
    font-family: "FontAwesome";
    color: #fff
}
.owl-carousel .owl-nav button.owl-next {
    position: absolute;
    top: 50%;
    right: 0;
    width: 80px;
    height: 68px;
    font-size: 30px;
    background: rgba(0, 0, 0, .5);
    opacity: .7;
    margin-top: -34px
}
.owl-carousel.expand .owl-nav button.owl-prev, 
.owl-carousel.expand .owl-nav button.owl-next {
    position: fixed;
}
.owl-carousel .owl-nav .owl-next:hover {
    background: rgba(0, 0, 0, 1)
}
.owl-carousel .owl-nav .owl-next:after {
    content: '\f105';
    position: absolute;
    top: 10px;
    right: 30px;
    font-family: "FontAwesome";
    color: #fff
}
.owl-carousel .owl-dots {
    width: 1140px;
    position: absolute;
    bottom: 30px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%)
}
.owl-carousel.expand .owl-dots {
    position: fixed;
}
.owl-carousel .owl-dots .owl-dot {
    width: 80px!important;
    height: 80px!important;
    background-size: cover;
    margin-right: 15px
}
.owl-carousel .owl-dots .owl-dot:focus {
    outline: none;
}
.owl-carousel .owl-dots .owl-dot.active {
    border: 2px solid white;
}
.btn-close-expand {
    position: fixed;
    z-index: 1002;
    background: transparent;
    color: white;
    border: none;
    font-size: 30px;
    top: 5px;
    right: 5px;
    display: none;
}
.btn-close-expand:focus {
    outline: focus;
}
.btn-close-expand i.material-icons {
    font-size: 30px;
}
.btn-close-expand.expand {
    display: block;   
}
.owl-carousel.expand {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1030;
    width: auto;
    margin: auto;
    display: block;
    overflow-y: scroll;
    background: black;
    padding-top: 40px;
    height: auto;
}
.owl-carousel .owl-item .item:hover {
    cursor: zoom-in;
}
.owl-carousel.expand .owl-item .item:hover {
    cursor: zoom-out;
}
.owl-carousel.expand .owl-item .item {
    max-height:none;
}
/** Used for stopping body from scrolling **/
.scrollStop {
    overflow: hidden;
}
span.img-caption {
    position: absolute;
    display: inline-block;
    top: 15px;
    font-weight: 600;
    text-align: right;
    color: white;
    text-shadow: 1px 1px 1px black;
    width: 85%;
    left: 0;
    right: 0;
    margin: 0px auto;
}

@media (max-width: 992px) {
.owl-carousel {
    height: 300px;
  }
  .owl-carousel.expand .owl-stage, 
  .owl-carousel.expand .owl-stage .owl-item,
  .owl-carousel.expand .owl-stage-outer {
    display:flex;
  }
  .owl-carousel .owl-stage-outer {
    height: 100%;
  }
  .owl-carousel .owl-dots {
    display:none;
  }
  .expand .owl-stage .owl-item .item {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
  }
  .owl-carousel.expand {
    padding-top: 0px;
  }
  span.img-caption {
    height: 31px;
    line-height: 16px;
    text-align: center;
    width: 100%;
    padding: 0 8px;
    top: 180px;
  }
  .expand span.img-caption {
    bottom:25px;
    top: auto;
  }
}

@media (max-width: 640px) {
    .owl-dots {
        display: none;
    }
    .owl-carousel {
        height: 250px;
    }
}