.carousel-wrapper {
    width: 100%;
    margin:0 auto;
    position: relative;
    font-family: sans-serif;
    text-align: center;
  }
  .owl-carousel .owl-nav {
    overflow: hidden;
    height: 0px;
    display: none;
  }
  .owl-carousel:hover .owl-nav {
    display: block;
  }
  .owl-theme .owl-dots .owl-dot.active span,
  .owl-theme .owl-dots .owl-dot:hover span {
    background: #5110e9;
  }
  .item {
    display: block;
  }
  .item-link {
    width: 100%;
    display: block;
    position: relative;
    overflow: hidden;
    height: 500px;
    margin: 0 auto;
  }
  .item-link:hover .detail {
    top:65%;
  }
  .item-link:hover {
    transform: scale(1.05);
  }
  .item-link:hover .shadow {
    opacity: 0;
  }
  .item-link {
    -webkit-transition: all 200ms linear;
    -moz-transition: all 200ms linear;
    -o-transition: all 200ms linear;
    -ms-transition: all 200ms linear;
    transition: all 200ms linear;
  }
  .image {
    background-position: center;
    background-size: cover;
    transform: translate(-50%, -50%); 
    position: relative;
    top: 50%;
    left: 60%;
    width: 500px;
    height: 500px;
    display: block;
  }
  .shadow {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: block;
    background: #000;
    opacity: .4;
  }
  .detail {
    width: 100%;
    height: 100%;
    z-index: 2;
    position: absolute;
    padding: 0px;
    background-color: rgb(213, 233, 239);
    top: 100%;
    display: block;
  }
  .detail h4{
    color: #000;
    margin-bottom: 10px;
    font-weight: 500;
  }
  .detail p{
    color: gray;
    white-space: pre-wrap;
  }
  .detail {
    -webkit-transition: all 200ms linear;
    -moz-transition: all 200ms linear;
    -o-transition: all 200ms linear;
    -ms-transition: all 200ms linear;
    transition: all 200ms linear;
  }
  .owl-carousel .nav-button {
    height: 50px;
    width: 25px;
    cursor: pointer;
    position: absolute;
    top: 50% !important;
  }
  .owl-carousel .owl-prev.disabled,
  .owl-carousel .owl-next.disabled {
    pointer-events: none;
    opacity: 0.25;
  }
  .owl-carousel .owl-prev {
    left: 0px;
  }
  .owl-carousel .owl-next {
    right: 0px;
  }
  .owl-theme .owl-nav [class*=owl-] {
    color: #ffffff;
    font-size: 39px;
    background: #000000;
    border-radius: 3px;
  }
  .owl-carousel .prev-carousel:hover {
    background-position: 0px -53px;
  }
  .owl-carousel .next-carousel:hover {
    background-position: -24px -53px;
  }