
html {
	margin:0;
	padding:0;
}

body{
	margin:0;
	padding:0;
}

.image-come-bebe{
	width: 100%;
}

.image-come-bebe img{
	width: 100%;
}


/* DESKTOP*/

.image-desktop{
	display: block;
}
.image-tablet{
	display:none;
}
.image-mobile{
	display:none;
}
  

/* TABLET */

@media screen and (max-width: 1024px) {
	.image-desktop{
		display: none;
	}
	.image-tablet{
		display:block;
	}
	.image-mobile{
		display:none;
	} 	
	
}

/* MOBILE*/

@media screen and (max-width: 767px) {
	.image-desktop{
		display: none;
	}
	.image-tablet{
		display:none;
	}
	.image-mobile{
		display:block;
	} 		
}