#slideshowBack div {
    z-index: 1000;
    position: absolute;
    bottom: 40px;
    right: 0;
    min-width: 200px;
    text-align: center;
    opacity: 1;
    color: #fff;
    background-color: #002654;
    display: none;
}
#slideshowBack div h3 { 
    font-family: Arial;
    font-size: 14px;
    color: #ffffff;
    margin: 16px;
}

img[id^="slideshowImg"] {
    position:fixed;
    object-fit:cover;
    top:0;
    left:0;
    height:100%;
    width:100%;
    z-index:-1000;
    opacity:0
}

.fadeIn {
	animation: 4s fadeIn;
}

.fadeOut {
	animation: 4s fadeOut;
}
.visibleSlide {
	opacity: 1 !important;
}
@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

@keyframes fadeOut {
	from {
		opacity: 1;
	}
	to {
		opacity: 0;
	}
}
/* Show at least something when animations not supported */
.no-cssanimations .cb-slideshow li span{
	opacity: 1;
}

@media screen and (max-width: 1140px) { 
    #slideshowImageWrapper div h3 {
        font-size: 14px;
        line-height: 50px;
    }
}
@media screen and (max-width: 600px) {
    #slideshowImageWrapper div {
        bottom: 30px;
        width: 200px;
    }

    #slideshowImageWrapper div h3 {
        font-size: 16px;
        line-height: 40px;
    }
}