.owl-carousel {
    overflow: hidden;
}
.owl-buttons {
    position: static;
}
.owl-prev, .owl-next {
    color: #111;
    display: block;
    font-size: 16px;
    height: 105px;
    line-height: 105px;
    margin-top: -35px;
    opacity: 0;
    position: absolute;
    text-align: center;
    top: 50%;
    transition: all 0.27s cubic-bezier(0, 0, 0.58, 1) 0s;
    width: 105px;
    z-index: 6;
}
.owl-prev {
    left: -50px;
}
.owl-next {
    right: -50px;
}
.owl-prev::before, .owl-next::before {
    background: #fff none repeat scroll 0 0;
    border-radius: 2px;
    box-shadow: 1px 1px 0 rgba(0, 0, 0, 0.1);
    content: "";
    display: block;
    height: 66%;
    left: 0;
    position: absolute;
    top: 17px;
    transform: rotate(45deg);
    transition: all 0.27s cubic-bezier(0, 0, 0.58, 1) 0s;
    width: 66%;
}
.owl-next::before {
    left: auto;
    right: 0;
}
.owl-prev .fa, .owl-next .fa {
    position: relative;
}
.owl-prev:hover, .owl-next:hover {
}
.owl-prev:hover::before, .owl-next:hover::before {
    opacity: 0.87;
}
.owl-prev:active::before, .owl-next:active::before {
    opacity: 0.6;
}
.owl-carousel:hover .owl-prev {
    left: -35px;
    opacity: 1;
}
.owl-carousel:hover .owl-next {
    opacity: 1;
    right: -35px;
}
.owl-pagination {
    bottom: 30px;
    display: block;
    left: 0;
    position: absolute;
    text-align: center;
    width: 100%;
    z-index: 100 !important;
}