.item {
    height: 100vh;
    position: relative;
}

.item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.owl-carousel {
    z-index: 10;
}

.item::after {
    content: '';
    width: 10%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: #000;
    z-index: 0;
    background-size: 40px;
}

.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;
    z-index: 999999;
}

.item .cover .header-content {
    position: relative;
    padding: 30px 30px 25px 0;
    overflow: hidden;
}

.item .cover .header-content .line {
    content: "";
    display: inline-block;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    position: absolute;
    border-bottom: 5px 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%);
}

.item .cover .header-content h2 {
    font-weight: 300;
    font-size: calc(100% + 2vw + 2vh);
    color: #f9951b;
    font-family: 'Objectivity Extra Bold';
}

.item .cover .header-content h1 {
    font-size: calc(100% + 0.4vw + 0.4vh);
    font-weight: 300;
    margin: 40px 0 20px;
    word-spacing: 3px;
    color: #88888a;
    text-transform: uppercase;
    font-family: SofiaPro, sans-serif;
}

.item .cover .header-content h4 {
    font-size: 24px;
    font-weight: 300;
    line-height: 36px;
    color: #fff;
}

.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;
}

.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;
}

.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;
}

.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;
}

.owl-nav {
    position: absolute;
    bottom: 20px;
    left: 110px;
    width: 100px;
}

.owl-nav .owl-prev {
    position: absolute;
    right: inherit;
    left: 0px;
    top: inherit;
    bottom: 0;
    -webkit-transition: all 0.4s ease-out;
    transition: all 0.4s ease-out;
    width: 40px;
    cursor: pointer;
    height: 40px;
    position: absolute;
    display: block;
    z-index: 1000;
    border-radius: 0;
}

.owl-nav .owl-prev span {
    font-size: 1.6875rem;
    color: #fff;
}

.owl-nav .owl-prev:focus {
    outline: 0;
}

.owl-nav .owl-next {
    position: absolute;
    left: 60px;
    top: inherit;
    bottom: 0;
    right: inherit;
    -webkit-transition: all 0.4s ease-out;
    transition: all 0.4s ease-out;
    width: 40px;
    cursor: pointer;
    height: 40px;
    position: absolute;
    display: block;
    z-index: 1000;
    border-radius: 0;
}

.owl-nav .owl-next span {
    font-size: 1.6875rem;
    color: #fff;
}

.owl-nav .owl-next:focus {
    outline: 0;
}