:root {
	--olive: #a7a78d;
	--darkerOlive: #87876d;
	--darkestOlive: #67674d;
	--beige: #fcf9e4;
	--darkerBeige: #dcd9c4;
	--grey: #898c90;
	--darkerGrey: #696c70;
	--darkestGrey: #494c50;
	--defaultFont: #696c70;
	--taupe: #a9a39c;
}
@font-face {
	font-family: 'NeutrafaceText-Bold';
	src: url('/fonts/NeutrafaceText-Bold.otf');
}
@font-face {
	font-family: 'NeutrafaceText-Book';
	src: url('/fonts/NeutrafaceText-Book.otf');
}
@font-face {
	font-family: 'NeutrafaceText-Demi';
	src: url('/fonts/NeutrafaceText-Demi.otf');
}
@font-face {
	font-family: 'NeutrafaceText-BoldAlt';
	src: url('/fonts/NeutrafaceText-BoldAlt.otf');
}
@font-face {
	font-family: 'NeutrafaceText-Light';
	src: url('/fonts/NeutrafaceText-Light.otf');
}
body, html {
	margin: 0px;
	padding: 0px;
	font-family: proxima-nova, sans-serif;
	color: var(--defaultFont);
}
h1, h2, h3, h4, h5, h6 {
	font-family: 'NeutrafaceText-Demi', sans-serif;
	font-weight: 400;
	margin-top: 10px;
	margin-bottom: 7px;
	color: var(--olive);
	letter-spacing: 2px;
}
h1 {
	font-size: 50px;
}
h2 {
	letter-spacing: 2px;
}
a, a:visited {
	display: inline-block;
	color: var(--defaultFont);
	font-family: proxima-nova, sans-serif;
	font-weight: 900;
	text-transform: uppercase;
	text-decoration: none;
	transform: scale(1);
	padding-left: 10px;
	padding-right: 10px;
	transition: .2s;
}
ul {
	margin-top: -5px;
	padding-left: 15px;
}
p {
	margin-top: 5px;
}

a:hover {
	transform: scale(1.05);
	transition: .2s;
}
.redBorder {
	border: 1px solid red;
}

/******************************************************
*
*								Header
*
*******************************************************/
#nav {
	box-sizing: border-box;
	display: flex;
	align-items: center;
	justify-content: left;
	top: 0px;
	left: 0px;
	width: 100%;
	padding-top: 25px;
	padding-bottom: 15px;
	z-index: 8;
	position: fixed;
	background-color: #fff;
}
#navInner {
	box-sizing: border-box;
	display: flex;
	align-items: center;
	justify-content: left;
	width: 100%;
	max-width: 1368px;
	margin: auto;
	padding: 0px;
}
#logoWrapper {
	width: 100px;
	height: auto;
	margin-left: 48px;
	padding: 0px;
}
#logo {
	width: 100%;
	padding: 0px;
	margin: 0px;
	fill: var(--darkerGrey);
	transition: .2s;
}
#logo:hover {
	fill: var(--grey);
	transform: scale(1.05);
	transition: .2s;
}
#burgerButton {
	font-size: 45px;
	color: var(--darkerGrey);
	transform: rotate(90deg) scale(1);
	margin-left: 25px;
	margin-right: 25px;
	transition: .2s;
}
#burgerButton:hover {
	cursor: pointer;
	color: var(--grey);
	transform: rotate(90deg) scale(1.1);
	transition: .2s;
}
#burgerMenu {
	display: none;
	position: fixed;
	box-sizing: border-box;
	margin: 0px;
	padding: 0px;
	top: 0px;
	left: 0px;
	width: 100vw;
	height: 100vh;
	background-color: var(--olive);
	color: var(--beige);
	z-index: 10;
}
#burgerMenuInner {
	box-sizing: border-box;
	display: block;
	width: 100%;
	max-width: 1368px;
	margin: auto;
	padding: 0px;
}
#burgerMenu h2, #burgerMenu h3 {
	margin-left: 8px;
}
#burgerMenu a, #burgerMenu a:visited {
	font-family: 'NeutrafaceText-Light', sans-serif;
	color: var(--beige);
	padding: 10px;
	text-align: center;
}
#burgerMenu a:hover {
	padding: 10px;
	background-color: var(--darkerOlive);
	background-blend-mode: darken;
}
#burgerMenuLinkList {
	/*box-sizing: border-box;
	width: calc(100% - 50px);
	max-width: 1368px;
	position: absolute;
	left: 50px;
	top: 50%;
	transform: translateY(-50%);
	border: 1px solid red;*/
	box-sizing: border-box;
	width: 100%;
	max-width: 1275px;
	margin: auto;
	margin-top: 50px;
}
#burgerMenuFlex {
	box-sizing: border-box;
	display: flex;
	align-items: center;
	justify-content: left;
	padding: 0px;
	margin: 0px;
	margin-top: 27px;
}
#burgerMenuLogoWrapper {
	box-sizing: border-box;
	width: 100px;
	height: auto;
	margin-top: -13px;
	margin-left: 40px;
	padding: 0px;
}
#logoMenuOpen {
	width: 100%;
	padding: 0px;
	margin: 0px;
	fill: var(--beige);
	transition: .2s;
}
#logoMenuOpen:hover {
	transform: scale(1.05);
	transition: .2s;
}
#closeButton {
	display: block;
	position: relative;
	color: var(--beige);
	font-size: 45px;
	line-height: .8;
	transform: scale(1);
	transition: .2s;
	text-align: center;
	margin-left: 15px;
	padding-top: 0px;
	height: 40px;
	width: 40px;
	overflow: hidden;
}
#closeButton:hover {
	cursor: pointer;
	background-color: var(--darkerOlive);
	transform: scale(1.5);
	transition: .2s;
}
#closeButtonIcon {
	transform: rotate(45deg);
}
.navThumb {
	float: left;
	width: 200px;
	margin-right: 5px;
	margin-left: 8px;
}
.burgerFloat {
	display: flex;
	align-items: center;
	justify-content: left;
	margin-left: 0px;
	margin-bottom: 8px;
	clear: both;
}
#burgerMenuFooter {
	position: absolute;
	bottom: 25px;
	left: 50%;
	width: 100%;
	max-width: 1368px;
	box-sizing: border-box;
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-family: proxima-nova, sans-serif;
	color: var(--beige);
	padding-left: 50px;
	padding-right: 50px;
	transform: translateX(-50%);
}
#burgerMenuFooter a {
	font-family: proxima-nova, sans-serif;
	font-weight: 400;
	text-transform: uppercase;
}

#burgerMenuFooter .socialIcon {
	fill: var(--beige);
}
#projNest, #serviceNest {
	transition: .2s;
	height: fit-content;
	max-height: 450px;
	overflow: hidden;
	transition: .3s;
}
.collapsed {
	max-height: 0px !important;
	transition: .3s;
}
.topLevelNavLink {
	color: #fff !important;
	text-transform: uppercase;
	max-width: fit-content;
	transition: .2s;
	padding: 15px !important;
	font-family: 'NeutrafaceText-Demi', sans-serif !important;
	font-weight: 400 !important;
	font-size: 1.5em;
	margin-top: 10px !important;
	margin-bottom: 7px;
	letter-spacing: 2px;
	transform: translateX(-12px);
}

#projHeader, #serviceHeader {
	display: block;
	max-width: fit-content;
	transition: .2s;
	padding: 15px;
	transform: translateX(-20px);
}
#projHeader:hover, #serviceHeader:hover, .topLevelNavLink:hover {
	cursor: pointer;
	background-color: var(--darkerOlive);
	letter-spacing: 10px;
	transition: .2s;
}
.dropDownArrow {
	font-family: 'NeutrafaceText-Light', sans-serif;
	width: fit-content;
	display: inline-block;
	margin-left: 15px;
	font-weight: 100 !important;
	font-size: 35px;
	text-transform: lowercase !important;
	transform: scaleX(2) scaleY(1);
	transition: .2s;
}
/*********************************************************
*
*							          	Footer
*
**********************************************************/
footer {
	box-sizing: border-box;
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	max-width: 1275px;
	margin: auto;
	padding: 0px;
	padding-top: 75px;
	padding-bottom: 50px;
	z-index: 1;
}
footer a {
	font-weight: 400;
}
.socialIcon {
	box-sizing: border-box;
	width: 25px;
	height: auto;
	margin: 0px;
	margin-left: 5px;
	margin-right: 5px;
	padding: 0px;
}
/************************************************************
*
*                     General CSS Classes
*
*************************************************************/
.fullBleedSection {
	position: relative;
	display: block;
	box-sizing: border-box;
	width: 100%;
	height: auto;
	margin: 0px;
	margin-bottom: 3vw;
	padding: 0px;
}
.fullPageSection {
	position: relative;
	display: block;
	box-sizing: border-box;
	width: 100%;
	max-width: 1368px;
	height: auto;
	margin: auto;
	margin-bottom: 3vw;
	padding: 0px;
}
.flex2Col {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin: 0px;
}
.flex2ColStart {
	width: 100%;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	margin: 0px;
}
.flex2ColStretch {
	width: 100%;
	display: flex;
	align-items: stretch;
	justify-content: space-between;
	margin: 0px;
}
.flexLooseyGoosey {
	width: 100%;
	margin: -10px;
	padding: 0px;
	display: flex;
	align-items: flex-start;
	justify-content: left;
	flex-wrap: wrap;
}
.margin15PX {
	margin: 15px;
}
.twentyWidth {
	position: relative;
	box-sizing: border-box;
	width: 20%;
}
.twentyFiveWidth {
	position: relative;
	box-sizing: border-box;
	width: 25%;
}
.thirtyWidth {
	position: relative;
	box-sizing: border-box;
	width: 30%;
}
.thirtyFiveWidth {
	position: relative;
	box-sizing: border-box;
	width: 35%;
}
.fortyWidth {
	position: relative;
	box-sizing: border-box;
	width: 40%;
}
.fortyFiveWidth {
	position: relative;
	box-sizing: border-box;
	width: 45%;
}
.fiftyWidth {
	position: relative;
	box-sizing: border-box;
	width: 50%;
}
.sixtyWidth {
	position: relative;
	box-sizing: border-box;
	width: 60%;
}
.sixtyFiveWidth {
	position: relative;
	box-sizing: border-box;
	width: 65%;
}
.seventyWidth {
	position: relative;
	box-sizing: border-box;
	width: 70%;
}
.seventyFiveWidth {
	position: relative;
	box-sizing: border-box;
	width: 75%;
}
.eightyWidth {
	position: relative;
	box-sizing: border-box;
	width: 80%;
}
.fullWidth {
	position: relative;
	box-sizing: border-box;
	width: 100%;
}
.paddedRight {
	padding-right: 55px;
}
.paddedLeft {
	padding-left: 55px;
}
.paddedLeftSmall {
	padding-left: 15px;
}
.fullWidthIMG {
	box-sizing: border-box;
	width: 100%;
	height: auto;
	margin: 0px;
	padding: 0px;
}
.halfWidthIMG {
	box-sizing: border-box;
	width: 50%;
	height: auto;
	margin: 0px;
	padding: 0px;
}
.pullQuote {
	padding-left: 2.5vw;
}
.pullQuote h2 {
	font-size: 35px;
	margin-bottom: -.75vw;
}
.pullQuote p {
	margin-right: 2vw;
}
.pullQuote a {
	display: inline-block;
	text-align: right;
	margin-left: auto;
	margin-right: 2.5vw;
}
.rightAlign {
	text-align: right;
}
.centerAlign {
	text-align: center;
}
.justifyAlign {
	text-align: left;
}
.buttonLink {
	display: block;
	padding: .5vw;
	font-size: 1.5vw;
	font-weight: 400;
	width: calc(100% - 1vw);
	text-align: center;
}
.taupe {
	background-color: var(--defaultFont);
	color: #fff !important;
}
.grey {
	background-color: var(--grey);
	color: #fff !important;
}
.olive {
	color: var(--olive) !important;
}
.oliveBTN {
	background-color: var(--olive);
	color: #fff !important;
}
.whiteText {
	color: #fff !important;
}
.videoPlayBTN {
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) scale(1);
	background-color: var(--defaultFont);
	height: 50px;
	width: 50px;
	border-radius: 50%;
	z-index: 2;
	transition: .2s;
}
.videoPlayBTN:hover {
	cursor: pointer;
	transform: translate(-50%, -50%) scale(1.1);
	transition: .2s;
}
.triangle {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-30%, -50%);
	width: 0px;
	height: 0px;
	border-top: 10px solid transparent;
	border-bottom: 10px solid transparent;
	border-left: 10px solid #fff;
}
.uppercase {
	text-transform: uppercase;
}
.marginTop {
	margin-top: 150px;
}
.arrowBTN {
	display: inline;
	fill: transparent;
	stroke: var(--defaultFont);
	stroke-width: 10px;
	height: 15px !important;
	margin-bottom: -2px !important;
	margin-left: 15px;
}
.larger {
	font-size: larger;
}

/*************************************************************
*
*                      Home Page specific
*
**************************************************************/
#philosophySlide {
	display: block;
	box-sizing: border-box;
	background-image: radial-gradient(var(--olive), var(--darkestOlive));
	background-color: var(--darkestOlive);
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	width: 100%;
	height: 100vh;
	margin: 0px;
	padding: 0px;
	color: var(--beige);
}
.philLinkWrapper {
	position: relative;
	width: auto;
	font-size: 1.5vw;
}
#philosophySlide a, #philosophySlide a:visited {
	display: inline-block;
	font-family: 'NeutrafaceText-Light';
	color: var(--beige);
	padding: 10px;
	margin: -10px;
	margin-bottom: 0px;
	text-transform: uppercase;
	transition: .2s;
}
#philosophySlide a:hover {
	/*background-color: var(--darkerGrey);*/
}
.philLinkBottom {
	position: absolute;
	bottom: 0px;
	left: 50%;
	transform: translateX(-50%);
	display: block;
	background-color: var(--beige);
	width: 0%;
	height: 3px;
}
#philosophySlide h1 {
	letter-spacing: 5px;
	text-align: center;
	margin: 0px;
	font-size: 6.4vw;
	white-space: nowrap;
	font-family: 'NeutrafaceText-Book', sans-serif;
	width: 50vw;
}
#philosophySlide h2 {
	font-size: 1.1vw;
	text-align: center;
	font-family: proxima-nova, sans-serif;
	text-transform: none;
	width: 40vw;
	margin-bottom: 3vw;
}
#philosophyContent {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
#philosophyContent p {
	font-family: proxima-nova, sans-serif;
	margin-bottom: 25px;
}
#philFlex {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}
#philDownArrow {
	position: absolute;
	bottom: 75px;
	left: 50%;
	font-weight: 100;
	transform: translateX(-50%) scale(6, 2);
	transition: .2s;
}
#philDownArrow:hover {
	cursor: pointer;
	transform: translateX(-50%) scale(7, 2.5);
	transition: .2s;
}
.philSideHead {
		font-size: 25px;
		text-transform: none !important;
	}
.featuredProject {
	display: none;
	position: relative;
	width: 100%;
	height: auto;
	margin: 0px;
	padding: 0px;
	padding-top: 66%;
}
.featuredProject img {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: auto;
	margin: 0px;
	z-index: 1;
}
.featureContentWrapper {
	width: 48vw;
}
.featureContentWrapper h2 {
	font-size: 2.5vw;
	font-family: 'NeutrafaceText-Bold', sans-serif;
	white-space: nowrap;
	margin-top: 0px;
}
.featureContentWrapper p {
	font-size: 1.5vw;
	font-family: 'NeutrafaceText-Book', sans-serif;
	margin-top: -.5vw;
}
.featureOverlay {
	position: absolute;
	box-sizing: border-box;
	padding: 30px;
	top: 40vw;
	right: 0px;
	width: 66vw;
	height: auto;
	background-color: rgba(25,25,25,.4);
	transform: translateY(-50%);
	color: var(--beige);
	text-align: left;
	transition: .2s;
	z-index: 2;
}
.featureOverlay:hover {
	background-color: rgba(25,25,25,.6);
	transition: .2s;;
}
.featureOverlay a, .featureOverlay a:visited {
	display: block;
	text-align: right;
	color: var(--beige);
	font-family: 'NeutrafaceText-Book', sans-serif;
	font-size: 1.5vw;
	margin-right: 4vw;
	margin-top: 1vw;
	margin-left: auto;
}
.rightArrow {
	box-sizing: border-box;
	position: relative;
	display: inline-block;
	font-family: 'NeutrafaceText-Light';
	padding: 0%;
	margin: 0px;
	transform: scale(3.5, 4.5) translate(.15vw, -.09vw);
	transition: .2s;
}
.featureOverlay a:hover .rightArrow {
	transform: scale(3.5, 4.5) translate(.7vw, -.09vw);
	transition: .2s;
}
.homepagePrincipal {
	display: none;
}
#homepageVid {
	display: block;
	width: 90%;
	height: auto;
	margin: auto;
	z-index: 1;
}

/*******************************************************
*
*                 Philosophy Page
*
*******************************************************/
.philosophyFeatureBTN {
	text-align: right;
	display: flex;
	height: 5.5vw;
	align-items: center;
	justify-content: right;
	padding: 0px;
	margin: 0px;
	margin-top: -1.5vw;
}
.philosophyFeatureBTN a, .philosophyFeatureBTN a:visited {
	font-family: proxima-nova, sans-serif;
	font-weight: 400;
}
#philosophyHeader {
	display: block;
	position: relative;
	width: 100%;
	height: fit-content;
	overflow-x: hidden;
}
#valuesDiv {
	box-sizing: border-box;
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	font-family: 'NeutrafaceText-Demi', sans-serif;
	font-size: 25px;
	line-height: 1;
	color: #fff;
	text-transform: uppercase;
	top: 50%;
	left: 28%;
	height: 300px;
	width: 300px;
	border: 3px solid white;
	border-radius: 50%;
	transform: translateY(-50%);
}
#valuesDiv p {
	padding-top: 1.5vw;
	text-align: center;
	opacity: 1;
}
#designsDiv {
	box-sizing: border-box;
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	font-family: 'NeutrafaceText-Demi', sans-serif;
	font-size: 25px;
	line-height: 1;
	color: #fff;
	text-transform: uppercase;
	top: 50%;
	right: 28%;
	height: 300px;
	width: 300px;
	border: 3px solid white;
	border-radius: 50%;
	transform: translateY(-50%);
}
#designsDiv p {
	padding-top: 1.5vw;
	text-align: center;
	opacity: 1;
}
@media only screen and (max-width: 1368px) {
	#designsDiv {
		right: 23vw;
		height: 22vw;
		width: 22vw;
		font-size: 1.75vw;
	}
	#valuesDiv {
		left: 23vw;
		height: 22vw;
		width: 22vw;
		font-size: 1.75vw;
	}
}
@media only screen and (max-width: 850px) {
	#designsDiv {
		right: calc(.95 * 20vw);
		font-size: 2vw;
	}
	#valuesDiv {
		left: calc(.95 * 20vw);
		font-size: 2vw;
	}
}


/*********************************************************
*
*                     Recognition
*
**********************************************************/

.recogLink {
	text-align: center;
	text-decoration: none;
	font-weight: 100;
	margin-top: 25px;
}
.recogLink p {
	margin-bottom: 0px;
}
.recogLink p:last-child {
	margin-top: 0px;
}

/******************************************************
*
*                     Contact Page              
*
******************************************************/
.emailBTN {
	display: block;
	box-sizing: border-box;
	text-align: center;
	font-weight: 400;
	font-size: 15px;
	padding: 10px;
	margin-top: 15px;
	margin-bottom: 15px;
}
#newProjForm input, 
#vendorForm input, 
#newProjForm select, 
#vendorForm textarea, 
#newProjForm textarea {
	box-sizing: border-box;
	width: 100%;
	padding: 10px;
	border: 1px solid var(--olive);
	margin-bottom: 10px;
	font-family: proxima-nova, sans-serif;
	color: var(--grey);
}
#vendorSubmit, #newProjSubmit {
	background-color: var(--olive);
	color: #fff !important;
	width: 33% !important;
	transition: .2s;
}
#vendorSubmit:hover, #newProjSubmit:hover {
	cursor: pointer;
	background-color: var(--darkerOlive);
	transition: .2s;
}
#contactPhone {
	margin-left: 0px;
	padding-left: 0px;
}


/******************************************************
*
*                     Team Page              
*
******************************************************/
.teamDiv {
	border-bottom: 3px solid var(--olive);
	margin-bottom: 45px;
	padding-bottom: 10px;
}

/*******************************************************
*
*                      Projects
*
********************************************************/

.projFlexLeft {
	display: flex;
	width: 100%;
	height: auto;
	align-items: flex-start;
	justify-content: left;
}
.projFlexRight {
	display: flex;
	width: 100%;
	height: auto;
	align-items: flex-start;
	justify-content: right;
}
.projThumbLink {
	position: relative;
	display: block;
	padding: 0px;
	margin: 0px;
	margin-right: 10px;
	margin-top: 5px;
	transition: .2s;
}
.projThumbLink:hover {
	transform: scale(1.0);
	transition: .2s;
}
.projThumbLink:hover img {
	filter:brightness(.65);
	transition: .2s;
}
.projThumbLink:hover .projThumbOverlay {
	transition: .2s;
	filter: opacity(1);
}
.projThumbLink img {
	width: 100%;
	height: auto;
	margin: 0px;
	transition: .2s;
}
.projThumbOverlay {
	position: absolute;
	box-sizing: border-box;
	top: 50%;
	left: 50%;
	width: 100%;
	padding: 0px;
	margin: 0px;
	color: #fff;
	text-align: center;
	transform: translate(-50%, -50%);
	transition: .2s;
	filter: opacity(0);
}
.projTitle {
	font-family: 'NeutrafaceText-Demi';
	font-size: min(2vw, 30px);
}
.projLocation {
	font-weight: 400;
	font-size: min(1vw, 20px);
}
#projGallery {
	display: block;
	position: relative;
	width: 100%;
	height: auto;
	padding-top: 63%;
	overflow-x: hidden;
}
#projGalleryFooter {
	display: block;
	position: relative;
}
.projFooterBTN {
	display: inline-block;
	width: 15px;
	margin-right: 5px;
	font-size: 12px;
	padding: 2px;
	transform: scale(1);
	transition: .2s;
}
.projFooterBTN:hover {
	cursor: pointer;
	transform: scale(1.3);
	transition: .2s;
}
.activeProjBTN {
	font-weight: 600;
	transform: scale(1.3);
	transition: .2s;
}
.projGalleryIMG {
	display: block;
	position: absolute;
	top: 0px;
	left: 50%;
	width: auto;
	height: 600px;
	opacity: 0;
	transition: .2s;
	transform: translateX(-50%);
}
.projLocHeader {
	font-family: 'NeutrafaceText-Bold', sans-serif;
	font-weight: 900;
	margin-bottom: 0px;
}
.projNameHeader {
	font-family: 'NeutrafaceText-Book', sans-serif;
	font-size: 45px;
}
#loadingWrapper {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 60vh;
	opacity: .75;
}
#loadingIcon {
	position: absolute;
	fill: var(--defaultFont);
	width: 200px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.loadingBar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 200px;
	margin-top: 250px;
}
.loadingBar .loadingBlock:first-child {
	margin-left: 0px;
}
.loadingBar .loadingBlock:last-child {
	margin-right: 0px;
}
.loadingBlock {
	box-sizing: border-box;
	background-color: var(--defaultFont);
	width: 25px;
	height: 25px;
	margin: 5px;
	transform: scale(1);
}
.leftGalleryBTN {
	width: fit-content;
	height: fit-content;
	position: absolute;
	top: 50%;
	left: 0%;
	transform: translateY(-50%) scale(1);
	filter: brightness(150%);
	transition: .3s;
}
.rightGalleryBTN {
	width: fit-content;
	height: fit-content;
	position: absolute;
	top: 50%;
	right: 0%;
	transform: translateY(-50%) scale(1);
	filter: brightness(150%);
	transition: .3s;
}
.leftGalleryBTN:hover, .rightGalleryBTN:hover {
	cursor: pointer;
	
	transform: translateY(-50%) scale(1.1);
	transition: .3s;
}
.galleryArrowBTN {
	height: 75px;
	width: auto;
	margin: auto;
}

/******************************************************
*
*                     Case Studies
*
********************************************************/
.tagline {
	box-sizing: border-box;
	width: 100%;
	margin: 0px;
	margin-top: 5px;
	margin-bottom: 10px;
	padding: 25px;
	text-align: center;
	color: #fff;
}
.oliveBG {
	background-color: var(--darkerOlive);
	padding: 25px;
	color: #fff;
	margin: 0px;
	margin-top: 5px;
	margin-bottom: 10px;
}
.beigeBG {
	background-color: var(--darkerBeige);
	padding: 25px;
	margin: 0px;
	margin-top: 5px;
	margin-bottom: 10px;
	margin-left: 10px;
	color: var(--darkerGrey);
}
.mtnModernH3 {
	color: var(--darkerGrey);
	text-align: center;
	margin-top: 0px;
}
.topLine {
	font-size: 30px;
	font-family: 'NeutrafaceText-Bold', sans-serif;
	width: 100%;
	margin: auto;
	margin-bottom: 10px;
}
.bottomLine {
	font-size: 18px;
	width: 100%;
	margin: auto;
}
.caseStudyBadge {
	display: inline-block;
	padding: 5px;
	background-color: var(--darkerGrey);
	color: #fff;
	font-size: 15px;
	transform: translateY(-3px);
}
.caseStudyPullQuote {
	font-size: xx-large;
	width: 50%;
	margin: auto;
}

/******************************************************
*
*                     Process Page
*
********************************************************/
.processWrapper p {
	margin-top: -5px;
}
.infoGraphicAnimated {
	position: relative;
	margin-bottom: 25px;
	margin-top: 25px;
	overflow: hidden;
	height: calc(.45 * 1368);
}

.infoGraphicSection {
	box-sizing: border-box;
	padding: 2%;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 250px;
	height: 250px;
	color: #fff;
	text-align: center;
	border-radius: 50%;
	font-size: 35px;
	background-color: rgba(25,25,25,0);
	font-weight: 600;
	text-shadow: 0px 0px 25px #000;
}
.infoGraphicSection h2 {
	color: #fff;
	font-size: 35px;
}
.vertBar {
	width: 3px;
	height: 10vw;
	background: #fff;
}
#vert1 {
	position: absolute;
	top: 50%;
	left: 35%;
	transform: translate(-35%, -50%);
	opacity: 0;
}
#vert2 {
	position: absolute;
	top: 50%;
	left: 65%;
	transform: translate(-65%, -50%);
	opacity: 0;
}
#vert3 {
	position: absolute;
	top: 50%;
	left: 35%;
	transform: translate(-35%, -50%);
	opacity: 0;
}
#vert4 {
	position: absolute;
	top: 50%;
	left: 65%;
	transform: translate(-65%, -50%);
	opacity: 0;
}
#infoOverlay1 {
	position: absolute;
	top: 50%;
	left: 25%;
	transform: translate(-75%, -50%);
	opacity: 0;
}
#infoOverlay2 {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	opacity: 0;
}
#infoOverlay3 {
	position: absolute;
	top: 50%;
	left: 75%;
	transform: translate(-25%, -50%);
	opacity: 0;
}
#infoOverlay4 {
	position: absolute;
	top: 50%;
	left: 25%;
	transform: translate(-75%, -50%);
	opacity: 0;
}
#infoOverlay5 {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	opacity: 0;
}
#infoOverlay6 {
	position: absolute;
	top: 50%;
	left: 75%;
	transform: translate(-25%, -50%);
	opacity: 0;
}
#infoOverlay7 {
	position: absolute;
	width: 380px;
	top: 50%;
	left: 50%;
	opacity: 0;
	transform: translate(-50%, -50%);
}
#conBox1 {
	display: block;
	height: 3px;
	width: 100%;
	background: #fff;
	margin-left: auto;
	margin-right: 0px;
}
#conBox2 {
	display: block;
	height: 3px;
	width: 100%;
	background: #fff;
	margin-left: 0px;
	margin-right: auto;
}
@media only screen and (max-width: 1368px) {
	.infoGraphicAnimated {
		height: calc(.45 * 100vw);
	}
	.infoGraphicSection {
		box-sizing: border-box;
		padding: 2vw;
		display: flex;
		align-items: center;
		justify-content: center;
		width: 25vw;
		height: 25vw;
		color: #fff;
		text-align: center;
		border-radius: 50%;
		font-size: 1.5vw;
		background-color: rgba(25,25,25,0);
		font-weight: 600;
		text-shadow: 0px 0px 25px #000;
	}
	.infoGraphicSection h2 {
		color: #fff;
		font-size: 1.75vw;
	}
	.vertBar {
		width: 3px;
		height: 10vw;
		background: #fff;
	}
	#vert1 {
		position: absolute;
		top: 50%;
		left: 33%;
		transform: translate(-33%, -50%);
		opacity: 0;
	}
	#vert2 {
		position: absolute;
		top: 50%;
		left: 66%;
		transform: translate(-66%, -50%);
		opacity: 0;
	}
	#vert3 {
		position: absolute;
		top: 50%;
		left: 33%;
		transform: translate(-33%, -50%);
		opacity: 0;
	}
	#vert4 {
		position: absolute;
		top: 50%;
		left: 66%;
		transform: translate(-66%, -50%);
		opacity: 0;
	}
	#infoOverlay1 {
		position: absolute;
		top: 50%;
		left: 25%;
		transform: translate(-75%, -50%);
		opacity: 0;
	}
	#infoOverlay2 {
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		opacity: 0;
	}
	#infoOverlay3 {
		position: absolute;
		top: 50%;
		left: 75%;
		transform: translate(-25%, -50%);
		opacity: 0;
	}
	#infoOverlay4 {
		position: absolute;
		top: 50%;
		left: 25%;
		transform: translate(-75%, -50%);
		opacity: 0;
	}
	#infoOverlay5 {
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		opacity: 0;
	}
	#infoOverlay6 {
		position: absolute;
		top: 50%;
		left: 75%;
		transform: translate(-25%, -50%);
		opacity: 0;
	}
	#infoOverlay7 {
		position: absolute;
		width: 30vw;
		top: 50%;
		left: 50%;
		opacity: 0;
		transform: translate(-50%, -50%);
	}
	#conBox1 {
		display: block;
		height: 3px;
		width: 100%;
		background: #fff;
		margin-left: auto;
		margin-right: 0px;
	}
	#conBox2 {
		display: block;
		height: 3px;
		width: 100%;
		background: #fff;
		margin-left: 0px;
		margin-right: auto;
	}
}



/*******************************************************
*
*                        Mobile
*
********************************************************/


@media only screen and (max-width: 600px) {

	/*************************************************
	*
	*                     General CSS Mobile
	*
	**************************************************/
	h1 {
		font-size: 45px;
	}
	.mobileHide {
		display: none !important;
	}
	.flex2ColStretch, .flex2Col, .flex2ColStart, .flexLooseyGoosey {
		flex-flow: column;
	}
  .flex2ColStretch > div, .flex2Col > div, .flex2ColStart > div, .flexLooseyGoosey > div {
		width: 100% !important;
	}
	.caseStudyPullQuote {
		width: 90%;
		margin: auto;
	}
	footer {
		flex-flow: column;
		justify-content: left;
	}
	footer > div {
		width: 100%;
		margin-bottom: 15px;
		text-align: center;
	}
	
	.navThumb, #burgerMenuCopy {
		display: none;
	}
	#logoWrapper, #burgerMenuLogoWrapper {
		margin-left: 12px;
	}
	#burgerMenuLinkList {
		left: 14px;
		width: calc(100% - 14px);
	}
	.burgerLink {
		margin-top: 0px;
		margin-bottom: 0px;
		padding: 5px !important;
		padding-left: 10px !important;
		line-height: 1;
	}
	#burgerMenuFooter {
		display: none;
		flex-flow: column;
		flex-direction: column-reverse;
	}
	#burgerMenuContact {
		text-align: center;
		line-height: .8;
	}
	#burgerContactText {
		display: none;
	}
	#burgerMenuSocial {
		display: block;
		width: 100%;
		text-align: center;
	}
	#burgerMenuSocial .socialLink {
		margin: 0px;
		padding: 0px;
	}
	#philosophyContent {
		width: 90%;
		text-align: center;
	}
	#philosophyContent h1 {
		width: 100%;
		text-align: center;
		font-size: 10vw;
	}
	.philSideHead {
		font-size: 25px;
		text-transform: none !important;
	}
	.philLinkWrapper {
		font-size: 4vw;
	}
	.pullQuote > h2 {
		font-size: 4vw;
		text-align: center;
	}
	.paddedRight, .paddedLeft {
		padding-right: 5%;
		padding-left: 5%;
	}
	.buttonLink {
		font-size: 4vw;
	}

	/********************************
	*
	*       Homepage Mobile
	*
	*********************************/
	.featureOverlay {
		background: var(--darkestGrey);
		display: block;
		position: relative;
		width: 100%;
		top: 0px;
		transform: translateY(0%);
		margin-bottom: 25px;
	}
	.featureContentWrapper {
		width: 100%;
	}
	.featureContentWrapper h2 {
		font-size: 22px;
		white-space: normal;
	}
	.featureContentWrapper p {
		font-size: 16px;
	}
	.featureContentWrapper a {
		width: 100%;
		font-size: 16px;
	}
	.rightArrow {
		margin-left: 10px;
		transform: scale(2.0, 2.5) translate(0px, -1px);
	}

	/********************************
	*
	*        Philosophy Mobile
	*
	*********************************/
	#valuesDiv p, #designsDiv p {
		font-size: 3vw;
		width: 15vw;
		text-align: center;
	} 
	/*********************************
	*
	*        CaseStudies Mobile
	*
	**********************************/
	.topLine, .bottomLine {
		width: 100%;
	}
	.shrunked {

		width: 100% !important;
	}
	.caseStudyPullQuote {
		font-size: 22px;
	}

	/***********************************
	*
	*       Recognition Mobile
	*
	***************************************/
	.recogLink {
		width: 100%;
	}

	/*****************************************
	*
	*     Projects Pages
	*
	******************************************/
	.projFlexRight, .projFlexLeft {
		flex-flow: column;
	}
	.projFlexRight a, .projFlexLeft a {
		width: 100% !important;
	}
	.projThumbOverlay {
		display: block;
		position: relative;
		color: var(--defaultFont);
		top: 0px;
		left: 0px;
		transform: translate(0%, 0%);
		filter: opacity(1);
		text-align: left;
		margin-bottom: 15px;
	}
	.projTitle {
		font-size: 18px;
	}
	.projLocation {
		font-size: 14px;
	}
	#projGalleryFooter, .leftGalleryBTN, .rightGalleryBTN {
		display: none;
	}
	#projGallery {
		padding-top: 0px !important;
	}
	.projGalleryIMG {
		position: relative;
		opacity: 1;
		margin-bottom: 10px;
		width: 100%;
		height: auto;
	}

}

