/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Oct 04 2023 | 16:17:44 */
/* Add your CSS code here.

For example:
.example {
    color: red;
}

For brushing up on your CSS knowledge, check out http://www.w3schools.com/css/css_syntax.asp

End of comment */ 

.amenities-list-wrapper {
	width: 100%;
	padding-top: 80px;
	padding-bottom: 80px;
	background: var(--royal-white);
}

.amenities-list-wrapper.amenities-list-wrapper-gray {
	background: var(--royal-verylitegray);
}

.amenities-list {
	width: 100%;
	max-width: 1300px;
	margin: 0 auto;
}

.amenities-list-top {
	width: 100%;
	display: flex;
	justify-content: space-between;
	margin-bottom: 60px;
}

.amenities-list-top-left {
	width: 485px;
	flex-shrink: 0;
	margin-right: 70px;
}

.amenities-list-top-left img.amenities-photo {
	width: 100%;
	aspect-ratio: 8 / 5;
	object-fit: cover;
}

.amenities-list-top-right {
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.amenities-list-top-right h2 {
	font-family: 'Roboto Slab', serif;
    font-size: 2.4rem;
	font-weight: 300;
	color: var(--royal-darkgray);
	margin-bottom: 0px;
}

.amenities-list-top-right p {
	font-family: 'Roboto', sans-serif;
    font-size: 1.0rem;
	line-height: 1.8em;
	font-weight: 300;
	color: var(--royal-medgray);
	margin-bottom: 0px;
	margin-top: 15px;
}

.the-amenities {
	padding: 0px;
	margin: 0px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-column-gap: 80px;
	overflow: hidden;
	position: relative;
}

.the-amenities:before,
.the-amenities:after {
	display: block;
	content: '';
	width: calc(50% - 40px);
	height: 1px;
	background: #DDD;
	position: absolute;
	top: 0px;
}

.the-amenities:before {
	left: 0px;
}

.the-amenities:after {
	right: 0px;
}

.the-amenities li {
	list-style-type: none;
	padding: 25px 0px 25px 0px;
	border-bottom: solid 1px #DDD;
	font-family: 'Roboto', sans-serif;
    font-size: 1.0rem;
	font-weight: 300;
	color: var(--royal-medgray);
	display: inline-flex;
    flex-direction: column;
    justify-content: center;
}

/* -------------------------------------------------------------------- */
@media (max-width: 1380px) {

	.amenities-list {
	max-width: 1100px;
	}
	
	.amenities-list-top-left {
	width: 400px;
	}
	
	.amenities-list-top-right h2 {
    font-size: 2rem;
	}

}

/* -------------------------------------------------------------------- */
@media (max-width: 1180px) {

	.amenities-list {
	max-width: 900px;
	}
	
	.amenities-list-top-left {
	width: 350px;
	margin-right: 50px;
	}

}

/* -------------------------------------------------------------------- */
@media (max-width: 980px) {

	.amenities-list {
	max-width: 760px;
	}
	
	.amenities-list-top-left {
	width: 300px;
	margin-right: 40px;
	}
	
	.amenities-list-top-right h2 {
    font-size: 1.7rem;
	}

}

/* -------------------------------------------------------------------- */
@media (max-width: 808px) {

	.amenities-list-top {
	display: block;
	margin-bottom: 5px;
	text-align: center;
	}
	
	.amenities-list-top-left {
    width: 100%;
	margin-right: unset;
	margin-bottom: 15px;
	}
	
	.amenities-list-wrapper {
    padding: 20px;
	}
	
	.amenities-list-top-right p {
    font-size: 0.93rem;
	}
	
	.the-amenities {
    grid-template-columns: 1fr;
	}
	
	.the-amenities:before,
	.the-amenities:after {
    display: none;
	}
	
	.the-amenities li {
    list-style-type: none;
    padding: 20px 0px 20px 0px;
    border-bottom: solid 1px #DDD;
    font-size: 0.93rem;
	text-align: center;
	}
	
	.the-amenities li:last-child {
    border-bottom: none;
	}
	
}









