.owl-carousel:after {
    content: "";
    display: block;
    position: absolute;
    width: 8%;
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: 0;
    pointer-events: none;
    background-size: 100% auto;
}

.owl-item {
    -webkit-backface-visibility: hidden;
    -webkit-transform: translate(0) scale(1.0, 1.0);
}

.item {
    /*opacity: 0.4;*/
    transition: .4s ease all;
    /*transform: scale(.6);*/
}

.item img {
    display: block;
    min-width: 100%;
    width: auto;
    height: auto;
}

.active .item {
    display: block;
    width: 100%;
    height: auto;
    opacity: 1;
    transform: scale(1);
    max-height: 680px !important;
    position: relative;
}

.widget-item-fade {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

/* content and cta */
.inner {
    position: absolute;
    height: 50%;
    overflow: auto;
    margin: auto;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    text-align: center;
    z-index: 3;
    padding: 10px;
}

.cta-text {
    font-size: 40px;
    color: black;
}

/* END CTA Button*/

/* OWL-Carousel Navigation*/
.owl-carousel:hover .owl-nav {
    visibility: visible;
}

.owl-nav {
    position: absolute;
    top: 45%;
    color: #171117 !important;
    height: 30px !important;
    visibility: hidden;
    width: 100%;
}

.owl-nav span {
    font-size: 24px;
}

.owl-nav .owl-prev {
    left: 5% !important;
    position: absolute;
    background-color: #cdcbcd !important;
    width: 40px !important;
    height: 40px;
}

.owl-nav .owl-next {
    right: 5% !important;
    position: absolute;
    background-color: #cdcbcd !important;
    width: 40px !important;
    height: 40px;
}

.owl-prev:hover, .owl-next:hover {
    /*text-shadow: 2px 2px #000000;*/
    transform: translateX(10%);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
}

.owl-prev:hover {
    /*text-shadow: -2px 2px #000000;*/
    transform: translateX(-10%);
}

.owl-theme .owl-dots .owl-dot span {
    width: 0;
}

.owl-dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 24px;
    text-align: center;
    margin-top: -8px;
    margin-bottom: -8px;
}

.owl-dot {
    display: inline-block;
    width: 9px;
    height: 9px;
    margin: 8px;
    background-color: #E8E8E8 !important;
    border: 1px solid rgba(0, 0, 0, 0.35) !important;
    cursor: pointer;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    -webkit-transition-duration: 0.35s;
    -moz-transition-duration: 0.35s;
    -ms-transition-duration: 0.35s;
    -o-transition-duration: 0.35s;
    transition-duration: 0.35s;
    -webkit-transition-property: background-color, border-color;
    -moz-transition-property: background-color, border-color;
    -ms-transition-property: background-color, border-color;
    -o-transition-property: background-color, border-color;
    transition-property: background-color, border-color;
}

.owl-dot.active {
    background: rgba(127, 127, 127, 1) !important;
}

/* END OWL-Carousel Navigation*/

@media only screen and (max-width: 768px) {
    #full-width {
        padding: 0;
    }

    .item {
        /*transform: scale(0);*/
    }

    .item img {
        height: 400px !important;
    }

    .active .item img {
        max-height: 400px;
    }

    .cta-text {
        font-size: 18px;
    }
}

@media only screen and (max-width: 420px) {
    .item img {
        height: 200px !important;
    }

    .active .item img {
        max-height: 200px;
    }

    .cta-text {
        font-size: 16px;
    }

    .owl-nav {
        display: none;
    }

    .owl-dots {
        bottom: 16px;
    }
}