@charset "utf-8";
/* CSS Document */


.hg-wechseln {
	animation: hg-wechseln;
	animation-duration: 7s;
	animation-delay: 0s;
	animation-iteration-count: infinite;
	animation-timing-function: ease-in-out;
	animation-fill-mode: forwards;
	background-repeat: no-repeat;
	background-position: center top;
	opacity: 0;
	background-size: 50vw;
}

@keyframes hg-wechseln {
    0% { background-image:url(../layout/herz1.svg); opacity:1 }
	25% { background-image:url(../layout/herz1.svg); opacity:1 }
	75% { background-image:url(../layout/herz2.svg); opacity:1 }
	100% { background-image:url(../layout/herz1.svg); opacity:1 }
}


