.hotel-block{
	display: flex;
	position: relative;
	overflow: hidden;
	margin: 20px 0;
}
.hotel-block .hotel-image{
	width: 40%;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}
.hotel-block .hotel-description{
	width: 60%;
	padding: 20px;
	border: 1px solid rgba(0, 0, 0, 0.1);
}
.hotel-block .hotel-description .hotel-name{
	font-size: 40px;
	color: black;
	font-family: sans-serif;
}
.hotel-block .hotel-price-block{
	font-weight: 500;
	font-family: sans-serif;
	font-size: 16px;
}

.hotel-block .hotel-price-block .hotel-price{
	font-weight: 600;
}
.hotel-block .hotel-price-block i{
	margin-left: 2px;
	margin-right: 5px;
}
.hotel-stars-wrapper{
	position: relative;
	margin-top: 20px;
}
.hotel-stars-wrapper .hotel-stars{
	position: absolute;
	top: -35px;
}
.rating:before{
	content: "\2605";
	font-size: 25px;
	color: #3394cf;
}
.hotel-block:hover .tourHome__hover{
	bottom:0;
}
@media(min-width: 992px ) {
	.list-group-wrap {
		margin-top: 45px!important;
	}
}