/* animation homepage */
@keyframes float {
	0% {
		transform: translatey(0px);
	}

	50% {
		transform: translatey(-20px);
	}

	100% {
		transform: translatey(0px);
	}
}

#cubebox {
	transform: translatey(0px);
	animation: float 6s ease-in-out infinite;

	img {
		width: 100%;
		height: auto;
	}
}

#cubebox:hover {
	animation-play-state: paused;
}


/* service */
.section-service{
	position: relative;
}

/* page d'accueil */
@media (min-width: 992px){ 
	#sticky-loco{
		position: sticky;
		top: calc(50px + 5rem);
		height: 100%;
	}
}
@media(max-width:992px){
	#sticky-loco{
		z-index: 0;
	}
}
