:root {
	--lightGrey: #b4b5a9;
	--darkGrey: #464f54;
	--gold: #ac6307;
	--offWhite: #e7e6e2;
}

* {
	box-sizing: border-box;
	margin: 0px;
	padding: 0px;
	font-family: 'Helvetica', sans-serif;
}

html, body {
	background-color: var(--lightGrey);
	color: var(--darkGrey);
	font-size: 16px;
	line-height: 1.25;
	overflow-x: hidden;
}
a:link, a:visited {
	color: var(--darkGrey);
	text-decoration: none;
	font-weight: 700;
	transition: .2s;
}
a:hover {
	color: var(--gold);
	transition: .2s;
}
h1 {
	font-size: 45px;
}
footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 20px;
	padding-left: 40px;
	padding-right: 40px;
	font-weight: 100;
}
.flexVertCenter {
	display: flex;
	align-items: center;
}
.gap10 {
	gap: 10px;
}
.gap15 {
	gap: 15px;
}
.gap20 {
	gap: 20px;
}
.gap30 {
	gap: 30px;
}
.gap40 {
	gap: 40px;
}
.gap50 {
	gap: 50px;
}
.gap60 {
	gap: 60px;
}
.gap70 {
	gap: 70px;
}
.gap80 {
	gap: 80px;
}
.gap90 {
	gap: 90px;
}
.pb10 {
	padding-bottom: 10px;
}
.pb15 {
	padding-bottom: 15px;
}
.pb20 {
	padding-bottom: 20px;
}
.pb30 {
	padding-bottom: 30px;
}
.pb40 {
	padding-bottom: 40px;
}
.pb50 {
	padding-bottom: 50px;
}
.pb60 {
	padding-bottom: 60px;
}
.pb70 {
	padding-bottom: 70px;
}
.pb80 {
	padding-bottom: 80px;
}
.pb90 {
	padding-bottom: 90px;
}	
.pt10 {
	padding-top: 10px;
}
.pt15 {
	padding-top: 15px;
}
.pt20 {
	padding-top: 20px;
}
.pt30 {
	padding-top: 30px;
}
.pt40 {
	padding-top: 40px;
}
.pt50 {
	padding-top: 50px;
}
.pt60 {
	padding-top: 60px;
}
.pt70 {
	padding-top: 70px;
}
.pt80 {
	padding-top: 80px;
}
.pt90 {
	padding-top: 90px;
}
.pl10 {
	padding-left: 10px;
}
.pl15 {
	padding-left: 15px;
}
.pl20 {
	padding-left: 20px;
}
.pl30 {
	padding-left: 30px;
}
.pl40 {
	padding-left: 40px;
}
.pl50 {
	padding-left: 50px;
}
.pl60 {
	padding-left: 60px;
}
.pl70 {
	padding-left: 70px;
}
.pl80 {
	padding-left: 80px;
}
.pl90 {
	padding-left: 90px;
}
.pr10 {
	padding-right: 10px;
}
.pr15 {
	padding-right: 15px;
}
.pr20 {
	padding-right: 20px;
}
.pr30 {
	padding-right: 30px;
}
.pr40 {
	padding-right: 40px;
}
.pr50 {
	padding-right: 50px;
}
.pr60 {
	padding-right: 60px;
}
.pr70 {
	padding-right: 70px;
}
.pr80 {
	padding-right: 80px;
}
.pr90 {
	padding-right: 90px;
}
.p0 {
	padding: 0px;
}
.p10 {
	padding: 10px;
}
.p15 {
	padding: 15px;
}
.p20 {
	padding: 20px;
}
.p30 {
	padding: 30px;
}
.p40 {
	padding: 40px;
}
.p50 {
	padding: 50px;
}
.m0 {
	margin: 0px;
}
.m10 {
	margin: 10px;
}
.m15 {
	margin: 15px;
}
.m20 {
	margin: 20px;
}
.m30 {
	margin: 30px;
}
.m40 {
	margin: 40px;
}
.m50 {
	margin: 50px;
}
.mAuto {
	margin: auto;
}
.w20 {
	width: 20%;
}
.w25 {
	width: 25%;
}
.w30 {
	width: 30%;
}
.w40 {
	width: 40%;
}
.w50 {
	width: 50%;
}
.w60 {
	width: 60%;
}
.w70 {
	width: 70%;
}
.w80 {
	width: 80%;
}
.w90 {
	width: 90%;
}
.w100 {
	width: 100%;
}
.fitContent {
	width: fit-content;
}
.flex {
	display: flex;
	box-sizing: border-box;
}
.alignItemsCenter {
	align-items: center;
}
.justifyCenter {
	justify-content: center;
}
.justifyEnd {
	justify-content: flex-end;
}
.justifyStart {
	justify-content: flex-start;
}
.justifyBetween {
	justify-content: space-between;
}
.justifyAround {
	justify-content: space-around;
}
.justifyEvenly {
	justify-content: space-evenly;
}
.alignCenter {
	align-items: center;
}
.alignStart {
	align-items: flex-start;
}
.alignEnd {
	align-items: flex-end;
}
.alignStretch {
	align-items: stretch;
}
.alignBaseline {
	align-items: baseline;
}
.flexColumn {
	flex-direction: column;
}
.flexRow {
	flex-direction: row;
}
.flexRowReverse {
	flex-direction: row-reverse;
}
.flexWrap {
	flex-wrap: wrap;
}
.flexNoWrap {
	flex-wrap: nowrap;
}
.flexWrapReverse {
	flex-wrap: wrap-reverse;
}
.inset1px {
	clip-path: inset(1px);
}
/*
*
* Navigation
*
*/

nav {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	padding: 15px;
	position: fixed;
	top: 0px;
	left: 0px;
	z-index: 50;
	width: 100%;
	height: 60px;
	filter: drop-shadow(0px 0px 10px rgba(25, 25, 25, .25));
}
#navLogoContainer {
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
	width: 40%;
	height: fit-content;
}
#navLogo {
	width: 225px;
	height: auto;
	z-index: 100;
	position: relative;
	margin-top: 15px;
	margin-left: 15px;
}
#desktopMenuLinks {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 30px;
	z-index: 100;
	width: 60%;
}
#desktopMenuLinks a, #desktopMenuLinks button {
	color: #fff;
	background-color: transparent;
	border: none;
	font-size: 16px;
	font-weight: 700;
	letter-spacing: 1px;
}
#desktopMenuLinks button:hover {
	cursor: pointer;
}
#desktopMenuLinks button:hover .linkBottomBorder {
	width: 100%;
	transition: .2s;
}
#burgerButtonContainer {
	display: none;
}
#burgerButton {
	display: block;
	width: 45px;
	height: 45px;
	background-color: transparent;
	border: none;
	position: relative;
	transition: .3s;
	transform: scale(1.0);
	z-index: 100;
}
#burgerButton:hover {
	cursor: pointer;
	transform: scale(1.1);
	transition: .3s;
}
#burgerIcon {
	display: block;
	width: 40px;
	height: 40px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	opacity: 1;
	transition: .2s;
}
#closeIcon {
	display: block;
	width: 40px;
	height: 40px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	opacity: 0;
	transition: .2s;
}
#menuLinks {
	display: none;
	position: absolute;
	top: -300px;
	left: 0px;
	width: 100%;
	height: fit-content;
	background-color: var(--darkGrey);
	z-index: 50;
	padding: 15px;
	padding-top: 65px;
	transition: .3s;
}
#menuLinks a {
	display: block;
	width: fit-content;
	padding: 10px;
	color: var(--lightGrey);
	text-align: right;
	margin-left: auto;
	margin-right: 0px;
	transition: .2s;
}
#menuLinks a:hover {
	color: var(--offWhite);
	transition: .2s;
}
.linkBottomBorder {
	display: block;
	margin-left: auto;
	margin-right: 0px;
	margin-top: 0px;
	margin-bottom: 0px;
	width: 0%;
	height: 2px;
	background-color: var(--gold);
	transition: .2s;
}
#menuLinks a:hover .linkBottomBorder,
#desktopMenuLinks a:hover .linkBottomBorder {
	
	width: 100%;
	transition: .2s;
}
#footerContact {
	position: relative;
	color: var(--offWhite);
	text-align: right;
	text-shadow: 0px 0px 10px rgba(25, 25, 25, .5);
	padding: 40px;
	width: 100%;
	min-height: 350px;
	margin: auto;
	background-color: rgba(25, 25, 25, 1);
	z-index: 2;
}
#footerContact::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-image: url('footerBanner.jpg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	opacity: 0.85;
	z-index: -1;
}
#footerContact h2 {
	font-size: 45px;
	margin-bottom: 25px;
}
#footerContact p {
	font-size: 20px;
	margin-bottom: 25px;
}
#footerContact a {
	color: var(--offWhite);
	font-size: 25px;
}
#footerContactLink {
	display: inline-block;
}
.bottomLinkBorder {
	display: block;
	width: 0%;
	height: 3px;
	background-color: var(--gold);
	transition: .2s;
	margin-left: auto;
	margin-right: 0px;
}
#footerContactLink:hover .bottomLinkBorder {
	width: 100%;
	transition: .2s;
}
/*
*
* Homepage
*
*/
#homeSlider {
	display: block;
	margin: 0px;
	padding: 0px;
	width: 100%;
	height: 100vh;
	position: absolute;
	top: 0px;
	left: 0px;
	right: 0px;
	bottom: 0px;
	z-index: 0;
	overflow: hidden;
}
.slide {
	margin: 0px;
	padding: 0px;
	min-width: 100%;
	height: 100%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background-size: cover;
	color: #fff;
	font-size: 3.5vw;
	font-weight: 700;
	text-align: right;
	text-shadow: 0px 0px 25px rgba(25, 25, 25, .25);
	z-index: 0;
	position: absolute;
	top: 0px;
	left: 100vw;
}
.slide:first-of-type {
	left: 0vw;
}
#homeFooter {
	position: absolute;
	bottom: 0px;
	left: 0px;
	right: 0px;
	padding: 15px;
	color: var(--offWhite);
	display: flex;
	align-items: center;
	justify-content: space-between;
	z-index: 50;
}
#homeFooter a {
	color: var(--offWhite);
}

/*****************************
*
*   Projects   
*
***********************************/
.splashContainer {
	display: flex;
	align-items: flex-end;
	justify-content: left;
	width: 100%;
	height: 95vh;
	background-size: cover;
	background-position: center;
	color: var(--offWhite);
	text-shadow: 0px 0px 25px rgba(25, 25, 25, .25);
}
.splashContainer h1 {
	text-transform: uppercase;
}
#projectThumbWrapper .w50 {
	width: calc(50% - 20px)
}
#projectThumbWrapper a {
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	clip-path: inset(1px);
}
.projThumb {
	aspect-ratio: 3/2;
	background-color: rgba(25, 25, 25, 0);
	align-items: flex-end;
	justify-content: left;
	padding: 20px;
	display: flex;
	color: var(--offWhite);
	transition: .3s;
	
}
.callOutThumb {
	aspect-ratio: 3/2;
	background-color: rgba(25, 25, 25, .5);
	align-items: flex-end;
	justify-content: space-evenly;
	padding: 20px;
	display: flex;
	flex-direction: column;
	color: var(--offWhite);
	transition: .3s;
	text-shadow: 0px 0px 5px rgba(25, 25, 25, .75);
	text-align: right;
}
.callOutThumb:hover {
	background-color: rgba(25, 25, 25, .75);
	transition: .3s;
}
.callOutThumb h2 {
	font-size: 45px;
	text-transform: uppercase;
	font-weight: 700;
}
.callOutThumb b {
	text-transform: uppercase;
	font-size: 25px;
}
.callOutThumb p {
	max-width: 65%;
	font-size: 18px;
}
.projThumb h2 {
	color: var(--offWhite);
}
.projThumb h3 {
	color: var(--lightGrey);
	font-weight: 400;
}
.projThumb h2, 
.projThumb h3 {
	text-shadow: 0px 0px 20px rgba(25, 25, 25, .25);
	opacity: 0;
	transition: .3s;
}
.projThumb:hover {
	background-color: rgba(25, 25, 25, .5);
	transition: .3s;
}
.projThumb:hover h2,
.projThumb:hover h3 {
	opacity: 1;
	transition: .3s;
}
.projDesc h2 {
	border-bottom: 2px solid var(--gold);
	padding-bottom: 10px;
	margin-bottom: 40px;
	font-size: 30px;
}
.projDesc h3 {
	font-weight: 300;
	margin-bottom: 40px;
	font-size: small;
	letter-spacing: 1px;
}
.projDesc p {
	margin-bottom: 40px;
	line-height: 1.4;
}
.projDesc ul {
	margin-left: 15px;
}
.projImgFull {
	display: block;
	width: calc(100% - 40px);
	height: auto;
	margin: auto;
	margin-bottom: 20px;
	clip-path: inset(1px);
}
.projImg2Flex {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: calc(100% - 40px);
	height: auto;
	margin: auto;
	margin-bottom: 20px;
	gap: 20px;
}
.projImg2Flex img {
	width: calc(50% - 10px);
	height: auto;
	clip-path: inset(1px);
}
.projFooterNav a {
	font-size: 24px;
}
.projFooterNav a:hover {
	color: var(--darkGrey);
}
/*****************************
*
*   Design Build
*
***********************************/
#designQuote {
	width: calc(100% - 40px);
	margin: auto;
	margin-bottom: 20px;
	margin-top: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 40px;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	color: var(--offWhite);
	text-shadow: 0px 0px 25px rgba(25, 25, 25, .25);
	min-height: 325px;
}
#designQuote .quote::before {
	content: '"';
	font-size: 30px;
	margin-left: -16px;
	margin-right: -10px;
}
.quote {
	font-size: 30px;
	font-weight: 600;
	letter-spacing: 2px;
}
.attribution {
	font-size: 20px;
	font-weight: 300;
	margin-top: 20px;
	color: var(--lightGrey);
}

/*****************************
*
*   About
*
***********************************/
#aboutStory {
	width: calc(100% - 40px);
	margin: auto;
	margin-bottom: 20px;
	margin-top: 20px;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	padding: 40px;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	color: var(--offWhite);
	text-shadow: 0px 0px 25px rgba(25, 25, 25, .25);
}
#aboutStory h2 {
	border-bottom: 2px solid var(--gold);
	padding-bottom: 10px;
	margin-bottom: 20px;
}
#aboutStory p {
	margin-bottom: 20px;
}
.aboutTeam {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	width: calc(100% - 80px);
	margin: auto;
	margin-bottom: 20px;
	padding: 40px;
	gap: 40px;
}
.aboutTeamMember {
	width: 24%;
}
.aboutTeamMember img {
	margin-bottom: 20px;
	clip-path: inset(1px);
}
.aboutTeamMember h2 {
	margin-bottom: 5px;
}
.aboutTeamMember h3 {
	font-weight: 100;
	padding-bottom: 40px;
	margin-bottom: 40px;
	border-bottom: 1px solid var(--darkGrey);
}
.aboutTeamMember .quote {
	font-weight: 700;
	font-size: 16px;
	letter-spacing: 0px;
	margin-bottom: 20px;
}
.teamBioWrapper {
	line-height: 1.15em;
	height: fit-content;
	max-height: calc(1.15em * 12);
	overflow: hidden;
	transition: .5s;
}
.teamBioWrapper.expanded {
	max-height: 1000px;
	transition: 1s;
}
#aboutFooter {
	width: calc(100% - 40px);
	margin: auto;
	display: flex;
	align-items: flex-end;
	justify-content: flex-end;
	padding: 60px;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	color: var(--offWhite);
	text-shadow: 0px 0px 25px rgba(25, 25, 25, .25);
	min-height: 500px;
}
#aboutFooter a {
	color: var(--offWhite);
	text-shadow: 0px 0px 25px rgba(25, 25, 25, .25);
	letter-spacing: 1px;
}
#aboutFooter .bottomLink {
	display: inline-block;
	width: fit-content
}
#aboutFooter .bottomLink .bottomLinkBorder {
	margin-top: 8px;
	display: block;
	width: 0%;
	height: 2px;
	background-color: var(--gold);
	transition: .3s;
}
#aboutFooter .bottomLink:hover .bottomLinkBorder {
	width: 100%;
	transition: .2s;
}
button.readMore {
	display: inline-block;
	margin-left: 18px;
	margin-right: auto;
	margin-top: 20px;
	background-color: transparent;
	border: 0px;
	font-weight: 700;
	font-size: 16px;
	color: var(--darkGrey);
}
button.readMore:hover {
	cursor: pointer;
}
button.readMore::before {
	content: attr(data-text);
	margin-top: -3px;
	margin-left: -27px;
	display: inline-block;
	width: 25px;
	text-align: center;
}
button.readMore::after {
	display: block;
	content: '';
	height: 2px;
	width: 0%;
	background-color: var(--gold);
	transition: .3s;
	margin-left: auto;
	margin-right: 0px;
}
button.readMore:hover::after {
	width: 100%;
	transition: .3s;
}
/*************************
*
*   Contact
*
**************************/
#contactButton,
#homeContactButton {
	display: block;
	margin-left: auto;
	margin-right: 0px;
	background: transparent;
	border: none;
	color: var(--lightGrey);
	font-size: 16px;
	font-weight: 700;
	letter-spacing: 1px;
	padding: 10px;
}
#homeContactButton {
	color: var(--offWhite);
}
#contactButton:hover,
#homeContactButton:hover {
	cursor: pointer;
	color: var(--offWhite);
}
#contactButton:hover .linkBottomBorder,
#homeContactButton:hover .linkBottomBorder {
	width: 100%;
	transition: .2s;
}
#contactWrapper {
	width: 100vw;
	height: 100vh;
	position: fixed;
	top: 0px;
	left: 0px;
	right: 0px;
	bottom: 0px;
	background-image: url('contactBG.jpg');
	background-size: cover;
	background-position: center bottom;
	background-repeat: no-repeat;
	z-index: 75;
	overflow: hidden;
	transition: .3s;
}
#contactWrapper.closed {
	width: 100vw;
	height: 0vh;
	position: fixed;
	top: 100vh;
	left: 0px;
	right: 0px;
	bottom: 0px;
	background-image: url('contactBG.jpg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	z-index: 75;
	overflow: hidden;
	transition: .3s;
}
#contactInfoWrapper {
	background-color: var(--darkGrey);
	color: var(--offWhite);
	display: flex;
	align-items: flex-end;
	width: 33%;
	height: 100%;
	position: relative;
}
#contactHeader {
	display: block;
	font-size: 30px;
	margin-bottom: 40px;
	padding-bottom: 40px;
	border-bottom: 1px solid var(--offWhite);
	width: 100%;
}
#contactLinks {
	margin-bottom: 40px;
}
#contactInfoWrapper a {
	display: block;
	margin-bottom: 5px;
	width: fit-content;
	color: var(--offWhite);
}
#contactInfoWrapper a:hover {
	color: var(--gold);
}
#contactLogo {
	display: block;
	position: absolute;
	left: 40px;
	top: 40px;
	width: 225px;
	height: auto;
}
#contactClose {
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	top: 40px;
	right: 40px;
	width: fit-content;
	height: fit-content;
	background-color: transparent;
	border: none;
}
#contactClose:hover {
	cursor: pointer;
	opacity: .5;
}
#contactClose img {
	width: 40px;
	height: 40px;
}
.projFooterNav a  {
	display: flex;
	align-items: center;
	gap: 10px;
}
.projFooterNav a:hover .bottomLinkBorder {
	background-color: var(--darkGrey);
	transition: .2s;
}
#homeFooter .separator {
	display: inline-block;
	opacity: 1;
}

@media (max-width: 1200px) {
	#desktopMenuLinks {
		display: none;
	}
	#burgerButtonContainer {
		display: block;
	}
	#menuLinks {
		display: block;
	}
	#navLogoContainer {
		width: fit-content;
	}
	nav {
		justify-content: space-between;
	}
	.vertMobileColumn {
		flex-direction: column;
	}
	.flipMobileColumn {
		flex-direction: column-reverse;
	}
	.vertMobileColumn .w40,
	.vertMobileColumn .w60 {
		width: 100%;
		height: fit-content;
	}
	#aboutStory .w50 {
		width: 100%;
		height: fit-content;
	}
	#projectThumbWrapper .w50 {
		width: 100%;
		height: fit-content;
	}
	#contactInfoWrapper {
		min-width: 350px;
	}
	#contactWrapper {
		background-position: bottom right;
	}
	.projImg2Flex {
		flex-direction: column;
	}
	.projImg2Flex img {
		width: 100%;
	}
	.slideText {
		font-size: 40px;
		text-align: center;
	}
	
}
@media (max-width: 600px) {
	#menuLinks {
		height: 100vh;
		top: -100vh;
		display: flex;
		flex-direction: column;
		align-items: flex-end;
		justify-content: flex-end;
	}
	#contactInfoWrapper {
		width: 100%;
	}
	footer {
		flex-direction: column;
		align-items: flex-start;
		justify-content: flex-start;
	}
	.callOutThumb {
		gap: 10px;
	}
	.callOutThumb h2{
		font-size: 25px;
		max-width: 100%;
	}
	.callOutThumb h2 br {
		display: none;
	}
	.callOutThumb p {
		max-width: 100%;
		font-size: 16px;
	}
	.callOutThumb b {
		font-size: 18px;
	}
	#homeFooter .separator {
		display: block;
		opacity: 0;
		height: 1px;
		overflow: hidden;
	}
	#homeFooter .copyright {
		display: none;
	}
	#homeFooter .instagramLink {
		display: none;
	}
	#homeFooter {
		z-index:1;
	}
	#projectThumbWrapper {
		padding: 5%;
		gap: 5vw;
	}
	.projFooterNav a {
		font-size: 16px;
	}
	.projDesc {
		padding: 0;
	}
	#footerContact .w60 {
		width: 100%;
	}
}