#wrapper figure {
	margin: 0;
	padding: 0 0 52.5%;
	position: relative;
	width: auto;
	height: auto;
}

#wrapper figure {
	/* margin: 0 -1.188rem; optional */
	padding: 0 0 52.5%;/* anpassen */
	position: relative;
	width: auto;
	height: auto;
}

#wrapper figure img {
	position: absolute;
	animation-timing-function: ease-in-out;/* anpassen */
	animation-iteration-count: infinite;/* anpassen */
	animation-duration: 12s;/* anpassen */
}

#wrapper figure img:nth-of-type(1) {
	animation-name: fadingAnimation01;
}

#wrapper figure img:nth-of-type(2) {
	animation-name: fadingAnimation02;
}

@keyframes 
fadingAnimation01 {
0% {opacity:1;} 48% {opacity:0;} 86% {opacity:1;} 100% {opacity:1;}
}

@keyframes 
fadingAnimation02 {
0% {opacity:0;} 48% {opacity:1;} 86% {opacity:0;} 100% {opacity:0;}
}