.container-anim {
	position: relative;
	width: 45% !important;
}
.container-anim img, .container-anim svg {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 60%;
	
	animation-name: mouvement;
	animation-iteration-count: infinite;
	animation-fill-mode: both;
	animation-timing-function: ease-in-out;
}
.container-anim #Mobile {
	animation-duration: 5s;
}
.container-anim #Dashboard {
	animation-duration: 5s;
	animation-delay: 1s;
}

@keyframes mouvement {
	0% {
		top: calc(50% - 20px);
	}
	50% {
		top: calc(50% + 20px);
	}
	100% {
		top: calc(50% - 20px);
	}
}