#engie-slideshow {
    width: 100%;
    height: 100%;
    background: yellow;

}
.engie-slider{
    height: 100%;
    max-width: 10000px;
    position: relative;
    margin: 0px;
    padding: 0px;
    overflow: hidden;
}
.engie-slide{
    display: none;
}
.engie-slide.active{
    display: block;
}
.engie-slide img{
    vertical-align: middle;
}
.active .dot:hover{
    background-color: red;
}
.fade{
    animation-name: 'engie-fade';
    animation-duration: 1.5s;
}

* {box-sizing:border-box}

/* Slideshow container */
.slideshow-container {
    max-width: 10000px;
    position: relative;
    margin: 0px;
    padding: 64px 32px 64px 32px;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.7);
    min-height: 592px;
}

/* Hide the images by default */
.mySlides {
    display: none;
    /*padding: 64px 32px 64px 32px;*/
}
.mySlides img{
    position: absolute;
    width: 100%;
    height: 100% !important;
    top: 0px;
    left: 0px;
    z-index: -1;
    background: rgba( 0, 0, 0, 0.7 );
    object-fit: cover;
}
.mySlides .slide-content{
    max-width: 768px;
    padding-bottom: 64px;
}
.mySlides .slide-content h2{
    align-self: stretch;
    color: #FFF;
    font-feature-settings: 'liga' off, 'clig' off;
    font-family: Lato;
    font-size: 54px;
    font-style: normal;
    font-weight: 700;
    line-height: 64px;
    margin: 0px;
}
.mySlides .slide-content p{
    color: var(--nj-semantic-color-text-neutral-inverse-not-invertible-default);
    font-feature-settings: 'liga' off, 'clig' off;
    font-family: Lato;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    padding-top: 24px;
    padding-bottom: 48px;
    margin: 0px;
}
.mySlides .slide-content a.btn{
    padding: 16px 48px 16px 48px;
    color: var(--nj-semantic-color-text-neutral-inverse-default);
    /* Text/Text M (Default) */
    font-family: var(--nj-semantic-font-family-default);
    font-size: var(--nj-semantic-font-size-text-md);
    font-style: normal;
    font-weight: 400;
    line-height: var(--nj-semantic-line-height-text-md); /* 150% */
    letter-spacing: var(--nj-semantic-letter-spacing-none);
    background-color: #007ACD;
}
/* Next & previous buttons */
.nav-panel{
    z-index: 2;
}
.nav-panel .controls{
    display: flex;
    align-self: baseline;
    flex-direction: row;
    justify-content: flex-end;
}
.nav-panel .controls > a{
    padding: 16px;
    height: 56px;
    width: 56px;
    background-color: #FFFFFF;
    color: #60798B;
    border-radius: 0px;
    gap: 1px;
    text-align: center;
    margin-left: 1px;
}
.nav-panel .navigation{
    padding-top: 16px;
    display: flex;
}
.prev, .next {
    cursor: pointer;
    width: auto;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
    background-color: rgba(0,0,0,0.8);
}

/* The dots/bullets/indicators */
.dot {
    padding: 0px;
    cursor: pointer;
    height: 8px;
    width: 100%;
    margin: 0px;
    background-color: #fff;
    border-radius: 0px;
    display: inline-flex;
}
.active, .dot:hover {
    background: linear-gradient(90deg, #00AAFF 0%, #23D2B5 100%);
}

/* Fading animation */
.fade {
    animation-name: engie-fade;
    animation-duration: 0.77s;
}

@keyframes engie-fade{
    from { opacity: 0.4 }
    to { opacity: 1}
}