/* header styles */
#header-image {
	height: 630px;
}
#header-image-main {
	height: 630px;
}
#header-text {
	transform: translateY(-50%);
}

/* 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%;
	line-height: 35px;
}
.description-mt {
	margin-top: 75px;
}

/* 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-description {
	font-size: 20px;
	padding-left: 15%;
	padding-right: 15%;
	line-height: 35px;
}

/* 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;
}

/* calendar buttons styles */
.clear-dates-check-price {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-around;
	align-items: center;
}

/* calendar button styles */
.clear-dates-check-price #clear-dates, .clear-dates-check-price #check-price {
	left: unset;
	transform: unset;
	margin: 15px 0 0 0;
	text-align: center;
}

.content-features-apartments {
	justify-content: space-between;
}

.content-features-apartments-item {
	width: 48%;
}

.content-features-apartments-img-container {
	height: fit-content;
	width: 100%;
}

.content-features-apartments-img {
	width: 100%;
}

.content-features-apartments-item-title {
	font-size: 24px;
	font-weight: bold;
	text-align: center;
	margin-top: 8px;
	margin-bottom: 8px;
}

.content-features-apartments-item-info {
	font-size: 16px;
	text-align: center;
}

.about-apartment {
	margin-top: 12px;
}

/* calendar button styles after click */
#clear-dates::after, #check-price::after, .see-more::after {
   color:white;
   background-color: PaleGreen;
}

/* 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);
	}
	.location-description {
		padding-left: 0px;
		padding-right: 0px;
	}

	#map {
		width: 100%;
		margin-top: 30px;
		top: 0;
		transform: translateY(0);
	}

	.content-features-apartments {
		flex-direction: column;
	}

	.content-features-apartments-item {
		width: 100%;
	}

	.content-features-apartments-item:first-child {
		margin-bottom: 32px;
	}
}
