.slideshow {
    width: 100vw;
    margin-left: -50vw;
    left: 50%;
    position: relative;
    height: var(--slideshow-height, 100vh);
}

.safari .slideshow {
    height: calc(var(--viewport-height) * .85);
}

.slideshow .vc_row {
    height: var(--slideshow-height, 100vh);    
}

..navigation.arrows .arrow {
    position: absolute;
    top: 50%;
    left: 10px;
    width: 19px;
    height: 33px;
    z-index: 100;
    cursor: pointer;
}

..navigation.arrows .arrow.next {
    left: auto;
    right: 10px;
}

..navigation.arrows .arrow polyline {
    fill: none;
    stroke: #003041 !important;
}

@media screen and (min-width: 576px) {
    
    ..navigation.arrows .arrow {
        left: 25px;
    }
    
    ..navigation.arrows .arrow.next {
        right: 25px;        
    }
}

/*slideshow*/


.slideshow {
    position: relative;
}

.slideshow .slides {
    overflow: hidden;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 100%;
    z-index: 1;
}

.slideshow .slide {
    overflow: hidden;
    position: absolute;
    top: 0;
    left: -999em;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slideshow .slide.is_active {
    left: 0;
}

.slideshow .slide .slide-inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slideshow .slide .image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 1;
}

.slideshow .slide .image-container img {
    position: absolute;
    max-width: none;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /*filter: brightness(var(--images-darkness, .5));*/
}

.slideshow .slide .image-container.contain {
    background-color: #000;
    background-size: contain;
}

.slideshow .slide .content {
    padding: 25px;
    position: absolute;
    bottom: 35px;
    right: 90px;
    max-width: calc(50% - 130px);
    background: #fff;
    -webkit-transform-origin: 0 100%;
    transform-origin: 0 100%;
    z-index: 2;
}

.slideshow .slide .content .title {
    font: 48px/1 "Decour-Bold";
    text-transform: uppercase;
}

.slideshow .slide .content .subtitle {
    display: inline-block;
    margin: 10px 0 0;
    position: relative;
    padding: 0;
    font: 13px/1 "Decour-Semibold";
    letter-spacing: 0.17em;
    text-transform: uppercase;
}

.slideshow .slide .content .subtitle:before,
.slideshow .slide .content .subtitle:after {
    display: inline-block;
    margin: 0 8px;
    content: 'l';
    color: #000;
    font-family: arial, sans-serif;
    text-transform: lowercase;
}

.slideshow .slide .content .subtitle:before {
    margin-left: 0;
}

.slideshow .slide .content .subtitle:after {
    margin-right: 0;
}

.slideshow .slide .content .link-readmore {
    margin: 5px 0 0;
}

.slideshow .txt-container.d-none {
    font-size: 9.333rem;
    z-index: 100;
    position: absolute;
    bottom: 0;
    left: 0;
    line-height: 1;
    color: #fff;
}

.slideshow .txt-container.d-block, .slideshow .txt-container.d-block img {
    font-size: 9.333rem;
    z-index: 100;
    position: absolute;
    top: -1%;
    bottom: -1%;
    left: 0;
    height: 102%;
    width: 100%;
    object-fit: contain;
    object-position: left center;
    line-height: 1;
    color: #fff;
}

/*Navigation dots*/
.navigation.dots {
    left: 5%;
    right: 5%;
    top: auto;
    bottom: 0;
    z-index: 10;
    pointer-events: none;
}

.navigation.dots a {
    width: 10.867rem;
    max-width: calc((100% / var(--dots-count)) - 2.8rem);
    min-width: 2rem;
    height: .667rem;
    background: rgba(255 255 255 / 55%);
    transition: background .6s ease;
    margin: .667rem 2.8rem 1.667rem 0;
}

.navigation.dots a:last-child {
    margin-right: 0 !important;
}

.navigation.dots a.active,
.navigation.dots a:not(.active):hover {
    background: #fff;
}

.navigation.dots a:not(.active) {
    pointer-events: all;
}
/*Navigation dots*/