html, body {
	padding: 0px;
	margin: 0px;
	font-family: proxima-nova, sans-serif;
	overflow-x: hidden;
}
header {
	background: url("img/header.jpg") rgba(168, 161, 100, 1);
	background-position: center;
	background-size: cover;
	background-blend-mode: multiply;
	color: #fff;
	position: relative;
	padding: 0px;
	width: 100%;
	height: calc(100vw * .59);
	min-height: 500px;
}
#headerIMG {
	position: absolute;
	top: 0%;
	left: 50%;
	width: 100%;
	height: auto;
	transform: translate(-50%, 0%);
	z-index: 1;
}
#headerText {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100vw;
	height: calc(100vw * .56);
	min-height: 500px;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	z-index: 2;
}
#headerBlurb {
	font-family: old-standard, serif;
	font-size: 50px;
	text-align: center;
	line-height: 1;
	width: 80%;
	margin: auto;
}
#headerAttr {
	width: 60%;
	margin: auto;
	font-size: 20px;
	text-align: right;
}
#headerSubText {
	width: 60%;
	margin: auto;
	font: 18px;
	text-align: center;
}
#vertLogo {
	display: block;
	width: auto;
	height: 175px;
	margin: auto;
}
#horizLogo {
	display: none;
	width: 200px;
	height: auto;
}
#inquiry {
	display: block;
	width: 100px;
	padding: 5px;
	background-color: rgba(168, 161, 100, 1);
	border: 1px solid white;
	color: #fff;
	margin: auto;
	transition: .2s;
}
#inquiry:hover {
	cursor: pointer;
	filter: brightness(1.1);
	transition: .2s;
}
#inquiry a, #inquiry a:visited {
    text-decoration: none;
    color: #fff;
}
footer {
	padding: 0px;
	margin: 0px;
	color: #fff;
}
footer a {
	text-decoration: none;
	color: #fff;
	transition: .2s;
}
footer a:hover {
	color: #ddd;
	transition: .2s;
}
footer a:hover img {
	opacity: .7;
}
#collabPartners {
	background-color: rgba(168, 161, 100, 1);
	text-align: center;
	padding: 10px;
}
#collabLogos {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
}
#collabLogos img {
	width: 175px;
	height: auto;
	margin: 25px;
}
#footerWrap {
	text-align: center;
	padding: 15px;
	background-color: rgba(168, 161, 100, 1);
}

#panorama {
	position: relative;
	width: 65vw;
	height: calc(.56 * 65vw);
	margin: auto;
	margin-top: 25px;
	margin-bottom: 25px;
}
#pano {
	box-sizing: border-box;
	display: block;
	position: relative;
	width: 65vw;
	height: calc(.56 * 65vw);
	margin: auto;
	margin-bottom: 25px;
	margin-top: 25px;
	clear: both;
}
#snapWrapper {
	box-sizing: border-box;
	display: block;
	position: relative;
	width: 65vw;
	margin: auto;
	margin-top: 25px;
	margin-bottom: 25px;
}
#spgLogo {
    transform: translateY(-5px);
}
@media only screen and (max-width: 1000px) {
  #headerBlurb {
		font-size: 25px;
		width: 90%;
	}
	#headerAttr {
		width: 80%;

	}
	#headerSubText {
		width: 80%;
	}
	#vertLogo {
		display: none;
	}
	#horizLogo {
		display: block;
		margin-top: 25px;
	}
	#panorama {
		box-sizing: border-box;
		width: 100vw;
		height: calc(.56 * 100vw);
	}
	#collabLogos img {
		width: 125px;
	}
	@media screen and (orientation: landscape) {
		#pano {
			box-sizing: border-box;
			width: 100vw;
			height: 80vh;
		}
	}
}