body, html {
	border: 0;
	height: 100%;
	margin: 0;
	padding: 0;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	color: #000;
	background-color: #fff;
}
#wrapper {
	display: flex;
	display: -webkit-flex;
	display: -ms-flexbox;
	position: relative;
	width: 100%;
	min-height: 100vh;
	margin: 0;
	padding: 0;
}
/*---------------------NAVIGATION-------------------*/
#nav-contain {
	display: flex;
	position: relative;
	width: 100%;
	height: 100px;
	background-color: #5b7d93;
	align-items: center;
	justify-content: center;
}
.linkbox {
	position: relative;
	width: 250px;
	height: 100px;
	background-color:;
	text-align: center;
	transition-duration: 0.4s;
	text-decoration: none;
	color: #fff;
	font-weight: bold;
	font-size: 18px;

}
.linkbox a {
	text-decoration: none;
	color: inherit;
}
.linkbox:hover {
	background-color: lightblue;
	cursor: pointer;
	text-decoration: none;
	color: #5b7d93;
}
.textbox {
	position: relative;
	top: 33%;
	margin: 5px;
	text-align: center;
}
/*-------------------------------------------------------------*/
#headerWrapper {
	display: flex;
	flex-direction: row;
	position: relative;
	min-height: 100vh;
}
#headerL {
	display: flex;
	flex-direction: column;
	width: 40%;
	background-color: #fff;
	font-family: Garamond, serif;
	align-items: center;
	justify-content: center;
}
#headerL-text {
	display: flex;
	position: relative;
	width: 75%;
	font-size: 40px;
	color: #5b7d93;
}
.separatorBLUE {
	display: flex;
	margin-top: 20px;
	width: 500px;
	border-top: solid 1px #5b7d93;
}
#headerL-call {
	display: flex;
	width: 75%;
	margin-top: 20px;
	font-family: Arial, sans-serif;
	font-weight: bold;
	font-size: 24px;
	text-align: right;
	color: #5b7d93;
}
#headerR {
	display: flex;
	width: 60%;
	background-color: #fff;
	background-size: cover;
	background-position: right;
}
#headerR img {
	width: 100%;
	height: auto;
	object-fit: cover;
}
/*Homepage Slideshow----------------------*/
.slideHome-container {
	display: flex;
	position: relative;
	left: 0;
	width: 100%;
	height: auto;
	margin: 0;
}
.slideHome {
	display: none;
	width: 100%;
}
/*End Slideshow--------------------------*/
#bodyWrapper { 
	display: flex;
	flex-direction: row;
	position: relative;
	min-height: 100vh;
	font-family: Garamond, serif;
	background-color: #5b7d93;
}
#bodyL {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 25%;
}
#bodyL img {
	width: 100%;
	height: auto;
	object-fit: cover;
}
#bodyR {
	display: flex;
	flex-direction: column;
	width: 75%;
	background-color: #5b7d93;
	align-items: center;
	justify-content: center;
}
#bodyR-text {
	display: flex;
	width: 70%;
	color: #fff;
	font-size: 48px;
	text-align: center;
}
.line-separator {
	display: flex;
	margin-top: 50px;
	width: 600px;
	border-top: solid 1px white;
}
#bodyR-bio {
	display: flex;
	width: 55%;
	color: #fff;
	font-family: Arial, sans-serif;
	font-size: 17px;
	line-height: 1.5;
	margin-top: 30px;
}
#body2Wrapper {
	display: flex;
	flex-direction: column;
	width: 100%;
	height: 100vh;
	font-family: Garamond, serif;
	background-color: #0c0c0c;
}
.body2-listing {
	display: flex;
	position: relative;
	width: 34vw;
	height: 34vh;
	transition: 0.5s;
	overflow: hidden;
	border: none;
}
.body2-listing img {
	width: 100%;
	height: auto;
	object-fit: cover;
	transition: 0.5s;
	z-index: 1;
}
.body2-listing:hover img {
	transform: scale(1.08);
	cursor: pointer;
}
.listingWrapper, .listingWrapper2 {
	display: flex;
	flex-direction: row;
	width: 100%;
	height: 34vh;
}
.listingText {
	position: absolute;
	bottom: 0;
	width: 200px;
	background-color: rgba(0, 0, 0, 0.4);
	padding: 20px 20px 20px 26px;
	font-family: Arial, sans-serif;
	font-size: 14px;
	color: #fff;
	line-height: 1.5;
	z-index: 2;
}

#dropdown-menu {
	display: none;
	position: absolute;
	top: 10px;
	left: 0;
	background-color: #5b7d93;
	width: 220px;
	list-style: none;
	padding-top: 10px;
	padding-left: 30px;
	opacity: 0;
	transform: scaleY(0);
	transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
	z-index: 1000;
}
#dropdown-menu a {
	display: block;
	width: 200px;
	height: 30px;
	transition-duration: 0.4s;
	text-decoration: none;
	color: #fff;
}
#dropdown-menu a:hover {
	background-color: #5b7d93;
	color: #fff;
	cursor: pointer;
	text-decoration: none;
}
#dropdown-menu.show {
	display: block;
	opacity: 1;
	transform: scaleY(1);
}
	
@media (max-width: 768px) {
	#nav-contain {
		flex-direction: column;
		align-items: flex-start;
		height: 50px;
	}
	#menu-toggle {
		display: block;
		cursor: pointer;
		width: 40px;
	}
	#dropdown-menu li {
		display: block;
		top: 100px;
		padding: 10px;
		margin-top: 10px;
		opacity: 1;
		transform: scaleY(1);
		transition: all 0.3s ease;
	}
	.linkbox {
		display: none;
	}
	#headerWrapper, #bodyWrapper, #body2Wrapper {
		display: flex;
	}
	#headerWrapper {
		flex-direction: column-reverse;
		min-height: auto;
	}
	#bodyWrapper { 
		flex-direction: column;
	}
	#body2Wrapper {
	}
	.listingWrapper {
		flex-direction: column;
		height: auto;
	}
	.listingWrapper2 {
		flex-direction: column;
		height: auto;
	}
	.listingText {
		font-size: 10px;
		width: 150px;
	}
	#bodyR-text {
		margin-top: 50px;
		font-size: 24px;
	}
	.body2-listing {
		width: 100%;
	}
	.body2-listing img {
		width: 100%;
	}
	#headerL {
		width: 100%;
		height: 300px;
	}
	#headerL-text {
		font-size: 24px;
	}
	.line-separator {
		width: 70%;
	}
	.separatorBLUE {
		width: 70%;
	}
	#headerL-call {
		font-size: 16px;
	}
	#headerR {
		width: 100%;
		height: 100%;
	}
	#bodyL {
		width: 100%;
		height: auto;
	}
	#bodyR {
		width: 100%;
		height: auto;
	}
	#bodyR-bio {
		margin-bottom: 50px;
	}
}
@media (min-width: 769px) {
	#menu-toggle {
		display: none;
	}
}