.projectDetails {
	position: absolute;
	top: 100vh;
	left: 0;
	width: 100vw;
	min-height: 100vh;
	z-index: 150;
	padding: 0 10% 80px 10%;
	background: var(--brandWhite);
	overflow: auto;
}
.details {
	display: none;
	opacity: 0;
	width: 100%;
	max-width: 1000px;
	height: auto;
	margin: 0 auto;
	float: left;
	/*transition: opacity var(--long) ease;*/
}
.details.show {
	display: block;
	opacity: 1;
}
.headline {
	margin-top: 100px;
	margin-bottom: 35px;
	color: var(--brandGreen);
	text-transform: uppercase;
}
.subline {
	color: var(--brandGreen);
	margin-top: 15px;
	margin-bottom: 10px;
}
.imgLarge {
	width: 100%;
	height: 0;
	padding-top: 50%;
	margin-bottom: 10px;
	background: grey;
	background-size: cover;
}
.text {
	width: 70%;
	margin-bottom: 20px;
	max-width: 500px;
	color: #777777;
}
.spacing {
	width: 100%;
	height: 50px;
}
.vimeo {
	width: 100%;
	max-width: 1000px;
	height: auto;
	margin-bottom: 35px;
}
@media only screen and (max-width: 700px) {
	.projectDetails p, .projectDetails h2, .projectDetails h3 {
		padding: 0 50px;
	}
	.headline {
		margin-top: 70px;
	}
	.text {
		width: 100%;
		max-width: none;
	}
	.projectDetails {
		padding: 0 0 80px 0;
	}
}