/* scroll sign styles */
#scroll-div {
	position: absolute;
	bottom: 10px;
	width: 75px;
	left: 50%;
	transform: translateX(-50%);
}

/* shapes arrow in header on page index.html */
#arrow-down {
	width: 45px;
	position: relative;
	left: 50%;
	transform: translateX(-50%);
}

/* stylizes the text "Scroll" under arrow in header of page index.html */
#scroll {
	text-align: center;
	font-size: 20px;
	color: #FFFFFF;
	display: block;
}

/* index.html main text stylization */
.description {
	font-size: 20px;
	padding-left: 15%;
	padding-right: 15%;
	margin-top: 75px;
	line-height: 35px;
}

/* stylizes div which contains amenities on page index.html */
.features {
	position: relative;
	margin-top: 85px;
}

/* stylizes amenities heading on page index.html */
.heading-features{
	padding-left: 10%;
	font-weight: bold;
	position: relative;
	font-size: 30px;
}

/* stylizes amenities content on page index.html */
.content-features {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-evenly;
	padding-left: 12%;
	padding-right: 12%;
	margin-top: 25px;
	position: relative;
}

/* stylizes every item in amenities on page index.html */
.item-features {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	height: 90px;
	width: 90px;
	margin: 15px;
}

/* stylizes every icon in amenities on page index.html */
.icon-features {
	width: 50px;
	height: 50px;
}

/* stylizes every name/description in amenities on page index.html */
.description-features {
	font-size: 20px;
	text-align: center;
}

/* "See more" link stylization */
.see-more {
	position: relative;
	display: inline-block;
	margin-top: 30px;
	left: 50%;
	transform: translateX(-50%);
	font-size: 20px;
	padding: 10px;
	background-color: palegreen;
	transition: 0.4s;
	cursor: pointer;
}

/* "See more" link stylization when hovered */
.see-more:hover {
	color:white;
	background-color: #199300;
}

/* location description styles */
#location-description {
	padding: 0;
	margin: 0;
	width: 45%;
	display: inline;
	height: fit-content;
}

/* location content styles */
.content-features-location {
	padding-left: 5%;
	padding-right: 5%;
	height: 500px;
}

/* location map styles */
#map {
	display: inline-block;
	width: 45%;
	height: 450px;
	background-color: lightgray;
}

/* calendar styles */
.content-features-calendar {
	display: block;
	padding: 0;
}

/* stylization on smaller screens */
@media screen and (max-width: 992px) {
	.content-features-location {
		flex-direction: column;
		flex-wrap: nowrap;
		padding-left: 12%;
		padding-right: 12%;
		height: auto;
	}

	#location-description {
		width: 100%;
		top: 0;
		transform: translateY(0);
	}

	#map {
		width: 100%;
		margin-top: 30px;
		top: 0;
		transform: translateY(0);
	}
}
