.image-hotel-desktop{
	width: 100%;
	display: inline;
}
.image-hotel-mobile{
	width: 100%;
	display: none;
}

@media only screen and (max-width: 576px) {
	.image-hotel-mobile{
		object-fit: cover;
		object-position: center;
		transform: scale(2,2);
		height: 400px;
		max-width: 100%;
		width: 100%;
		display: inline-block;
	}

	.image-hotel-desktop{
		display: none;
	}
}