.fade {
	position: relative;	
	width: 100%;
	aspect-ratio: 16/9;	
}
.fade_wrap {
	position: absolute;	
	width: 100%;
	aspect-ratio: 16/9;	
	overflow: hidden;
	transform: scale(1);
}
.fade_img_top.zoom_effect {
	transform: scale(1.1); /* Hier kannst du den Zoom-Faktor anpassen */
	-webkit-transition: all 7s linear -1s;/* Hier kannst du die Dauer der Zoom-Animation anpassen */
	-moz-transition: all 7s linear -1s;
	-o-transition: all 7s linear -1s;
	-ms-transition: all 7s linear -1s;
	transition: all 7s linear -1s;
	transform-origin: center center;
}
.fade_img_bottom.zoom_effect {
	transform: scale(1.1); /* Hier kannst du den Zoom-Faktor anpassen */
	-webkit-transition: all 7s linear;/* Hier kannst du die Dauer der Zoom-Animation anpassen */
	-moz-transition: all 7s linear;
	-o-transition: all 7s linear;
	-ms-transition: all 7s linear;
	transition: all 7s linear;
	transform-origin: center center;
}
.fade img {
	vertical-align: top;
	width: 100%; 
	height: 100%;	
	object-fit: cover;		
}

