.slide-top {
  height: 100vh;
}
@media (min-width: 576px){
  .slide-top {
    height: 72vh;
  }
}
.slide-top .slide, .slide-top .slide.owl-carousel .owl-stage-outer, .slide-top .slide.owl-carousel .owl-stage, .slide-top .slide .owl-item {
  height: 100%;
}
.slide-top .item {
    height: 100%;
    position: relative;
  }
  .slide-top .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .slide-top .item .cover {
    padding: 75px 0;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    /* background: rgba(0, 0, 0, 0.6); */
    display: flex;
    align-items: center;
  }
  .slide-top .item .cover .header-content {
    position: relative;
    /* padding: 27px; */
    overflow: hidden;
    text-align: center;
  }
  .slide-top .item .cover .header-content .line {
    /* content: "";
    display: inline-block;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    position: absolute;
    border: 9px solid #fff;
    -webkit-clip-path: polygon(0 0, 60% 0, 36% 100%, 0 100%);
    clip-path: polygon(0 0, 60% 0, 36% 100%, 0 100%); */
  }
  .slide-top .item .cover .header-content h2 {
    font-weight: 300;
    font-size: 35px;
    color: #fff;
  }
  .slide-top .item .cover .header-content h1 {
    font-size: 48px;
    font-weight: 600;
    margin: 5px 0 12px;
    word-spacing: 3px;
    color: #282f3f;
  }
  .slide-top .item .cover .header-content h4 {
    font-size: 18px;
    font-weight: 300;
    line-height: 27px;
    color: #9e9e9e;
  }
  .slide-top .owl-item.active h1 {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-name: fadeInDown;
    animation-delay: 0.3s;
  }
  .slide-top .owl-item.active h2 {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-name: fadeInDown;
    animation-delay: 0.3s;
  }
  .slide-top .owl-item.active h4 {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-name: fadeInUp;
    animation-delay: 0.3s;
  }
  .slide-top .owl-item.active .line {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-name: fadeInLeft;
    animation-delay: 0.3s;
  }
  .slide-top .owl-nav .owl-prev {
    position: absolute;
    left: 15px;
    top: 43%;
    opacity: 0;
    -webkit-transition: all 0.4s ease-out;
    transition: all 0.4s ease-out;
    background: rgba(0, 0, 0, 0.5) !important;
    width: 40px;
    cursor: pointer;
    height: 40px;
    position: absolute;
    display: block;
    z-index: 1000;
    border-radius: 0;
  }
  .slide-top .owl-nav .owl-prev span {
    font-size: 1.6875rem;
    color: #fff;
  }
  .slide-top .owl-nav .owl-prev:focus {
    outline: 0;
  }
  .slide-top .owl-nav .owl-prev:hover {
    background: #000 !important;
  }
  .slide-top .owl-nav .owl-next {
    position: absolute;
    right: 15px;
    top: 43%;
    opacity: 0;
    -webkit-transition: all 0.4s ease-out;
    transition: all 0.4s ease-out;
    background: rgba(0, 0, 0, 0.5) !important;
    width: 40px;
    cursor: pointer;
    height: 40px;
    position: absolute;
    display: block;
    z-index: 1000;
    border-radius: 0;
  }
  .slide-top .owl-nav .owl-next span {
    font-size: 1.6875rem;
    color: #fff;
  }
  .slide-top .owl-nav .owl-next:focus {
    outline: 0;
  }
  .slide-top .owl-nav .owl-next:hover {
    background: #000 !important;
  }
  .slide-top:hover .owl-prev {
    left: 0;
    opacity: 1;
  }
  .slide-top:hover .owl-next {
    right: 0;
    opacity: 1;
  }