/* STYLES FOR ELEVATED LIFESTYLE HOTELS */
.elHotels {
    margin: 0 !important;
    max-width: unset !important;
    padding: 51px 40px;
}
.elHotels h6 {
    text-align: center;
}
.elHotels form {
    width: 220px;
    margin: 20px 0 38px 0;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}
#hotelOptions select {
    width: 220px;
	background: #222 !important;
	color: #FFF !important;
	border: 2px solid #FFF !important;
	background-image: none !important;
	padding: 10px !important;
	font-family: "Gotham A", "Gotham B" !important;
	font-size: 16px !important;
	line-height: 25px;
	text-transform: uppercase;
	cursor: pointer;
	position: relative;
}
#hotelOptions p {
	border: solid #fff;
	border-width: 0 2.5px 2.5px 0;
	display: inline-block;
	padding: 4.5px !important;
	transform: rotate(45deg);
  	-webkit-transform: rotate(45deg);
	position: absolute;
	top: 15px;
	right: 20px;
	z-index: 1;
}
#hotelOptions span {
	content: "";
	position: absolute;
	right: 45px;
	top: 0;
	height: 49px;
	width: 2px;
	background: #FFF;
	transform: rotate(0deg);
  	-webkit-transform: rotate(0deg);
	z-index: 1;
}
.elHotels h2 {
    position: relative;
    padding-bottom: 10px !important;
    margin-bottom: 45px !important;
    text-align: center;
    text-transform: capitalize;
}
.elHotels h2::after {
    content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	max-width: 256px;
	background: #FFF;
	height: 2px;
}
.elHotelsGrid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 35px;
}
.singleHotelImg {
    height: 240px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.singleHotelContent {
    background: rgba(0,0,0,0.85);
    width: 90%;
    margin: 0 auto;
    position: relative;
    top: -30px;
    padding: 5px 12px;
}
.singleHotelContent h3 {
    position: relative;
    padding-bottom: 10px !important;
    margin-bottom: 7px !important;
}
.singleHotelContent h3::after {
    content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 101%;
	background: #4A667D;
	height: 2px;
}
.singleHotelExcerpt p {
    font-family: "Gotham A", "Gotham B" !important;
	font-size: 16px !important;
	color: #FFFFFF !important;
	line-height: 25px !important;
}
@media only screen and (max-width: 1200px) {
	.elHotels {
		padding: 51px 15px;
	}
}
@media only screen and (max-width: 1000px) {
	.elHotelsGrid {
		grid-template-columns: 1fr 1fr 1fr;
	}
}
@media only screen and (max-width: 800px) {
	.elHotelsGrid {
		grid-template-columns: 1fr 1fr;
	}
}
@media only screen and (max-width: 600px) {
	.elHotelsGrid {
		grid-template-columns: 1fr;
	}
}