.module.module-slideshow {
    position: relative;
    display: block;

    z-index: 1;

    background: #27140E;

    margin-top: 10px;
}
.module.module-slideshow .owl-carousel.owl-theme .owl-dots {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    margin-bottom: 0px;
}
.module.module-slideshow .owl-carousel.owl-theme .owl-dots .owl-dot {
    flex: 1 0;
}
.module.module-slideshow .owl-carousel.owl-theme .owl-dots .owl-dot span {
    position: relative;
    display: flex;
    flex: 0 0 auto;
    width: 100%;
    margin: 0 auto;
    border-radius: 0px;
    height: 3px;
    background: #F47D53;

    opacity: 0.3;
    transition: 0.2s all;
}
.module.module-slideshow .owl-carousel.owl-theme .owl-dots .owl-dot.active span {
    opacity: 0.7;
}
.module.module-slideshow .owl-carousel.owl-theme .owl-nav {
    margin-bottom: 0px;
    margin-top: 0px;
}
.module.module-slideshow .owl-carousel.owl-theme .owl-nav .owl-next,
.module.module-slideshow .owl-carousel.owl-theme .owl-nav .owl-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    color: #F47D53;
    font-size: 60px;
    opacity: 0.4;
    transition: 0.2s all;

    cursor: pointer;
}
.module.module-slideshow .owl-carousel.owl-theme .owl-nav .owl-next {
    right: 30px;
}
.module.module-slideshow .owl-carousel.owl-theme .owl-nav .owl-prev {
    left: 30px;
}
.module.module-slideshow .owl-carousel.owl-theme .owl-nav .owl-next:hover,
.module.module-slideshow .owl-carousel.owl-theme .owl-nav .owl-prev:hover {
    opacity: 1;
}
.module.module-slideshow .module-slideshow-item {
    position: relative;
}



.module.module-slideshow .module-slideshow-item .caption {
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;

    text-align: left;
    padding-top: 15px;
}
.module.module-slideshow .module-slideshow-item .caption  .container {
    height: 100%;
}
.module.module-slideshow .module-slideshow-item .caption  .container > .row {
    height: 100%;
}
.module.module-slideshow .module-slideshow-item .caption .caption-left .title {
    position: relative;
    display: block;
    font-size: 80px;
    text-transform: uppercase;
    line-height: 80px;
    font-weight: 100;
    margin-bottom: 30px;

    color: #ffffff;
}
.module.module-slideshow .module-slideshow-item .caption .caption-left .description {
    position: relative;
    display: block;
    font-size: 20px;
    font-weight: 300;
    color: #ffffff;
    margin-bottom: 30px;
}
.module.module-slideshow .module-slideshow-item .caption .caption-left .btn {
    padding: 6px 25px;
    font-size: 18px;
}

.module.module-slideshow .owl-carousel .owl-item .owl-lazy[src] {
    opacity: 1 !important;
}

@keyframes itxSlideshowCaptionIn {
    0% {
        transform: translateX( -1000% );
    }
    100% {
        transform: translateX( 0% );
    }
}
.module.module-slideshow .module-slideshow-item {
    overflow: hidden;
}
.module.module-slideshow .module-slideshow-item .caption .caption-left .title  {
    transform: translateX( -1000% );
}
.module.module-slideshow .owl-item.active .module-slideshow-item .caption .caption-left .title {
    animation: itxSlideshowCaptionIn;
    animation-duration: 1s;
    animation-iteration-count: 1;
    animation-delay: 0.1s;
    animation-fill-mode: forwards;
}
.module.module-slideshow .module-slideshow-item .caption .caption-left .description  {
    transform: translateX( -1000% );
}
.module.module-slideshow .owl-item.active .module-slideshow-item .caption .caption-left .description {
    animation: itxSlideshowCaptionIn;
    animation-duration: 1s;
    animation-iteration-count: 1;
    animation-delay: 0.4s;
    animation-fill-mode: forwards;
}
.module.module-slideshow .module-slideshow-item .caption .caption-left .btn  {
    transform: translateX( -1000% );
}
.module.module-slideshow .owl-item.active .module-slideshow-item .caption .caption-left .btn {
    animation: itxSlideshowCaptionIn;
    animation-duration: 1s;
    animation-iteration-count: 1;
    animation-delay: 0.7s;
    animation-fill-mode: forwards;
}

.fix-min {
    min-height: 600px;
}

.image-link {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;

    z-index: 5;
}

.module.module-slideshow .owl-theme .owl-nav.disabled+.owl-dots {
    margin-top: 0px;
}