.rs-slideshow {
	width: 670px;
    height: 450px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.rs-slideshow .slide-container {
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    display: flex;            /* Flexbox für Zentrierung */
    align-items: center;      /* vertikal zentrieren */
    justify-content: center;  /* horizontal zentrieren */
}
 
.rs-slideshow .slide-container img {
    width: 100%;
    height: auto;
    max-height: 100%;
    display: block;
}
 
/*    Hide the slide data container    */
.rs-slideshow .slides {
	display:none;
}


/*	Clearfix	*/
.clearfix:after { content: "."; display: block; height: 0; clear: both; visibility: hidden; }
.clearfix { display: inline-block; }
* html .clearfix { height: 1%; } /* Hides from IE-mac \*/
.clearfix { display: block; }
