* {
	font-family: roboto, sans-serif;
	margin: 0;
	box-sizing: border-box;
}
::-webkit-scrollbar {
	width: 10px;
}
::-webkit-scrollbar-track {
	background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
	background: #7d212b;
	border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
	background: #dd7008;
}
a {
	color: #7d212b;
	text-decoration: none;
	margin: 0;
	padding: 0;
}
a:hover {
	color: #dd7008;
	transition: .3s ease-in-out;
}
p {
	font-size: 1em;
	font-weight: 400;
	line-height: 1.5em;
	word-spacing: .1em;
	margin: 10px 0;
	padding: 0 10px;
	column-gap: 30px;
	column-fill: balance;
	cursor: default;
}
h1 {
	color: #7d212b;
	font-size: 3em;
	font-weight: 200;
	font-family: Delius;
	letter-spacing: .3em;
	cursor: default;
}
h2 {
	color: #7d212b;
	font-size: 1.8em;
	line-height: 1.8em;
	font-weight: 200;
	font-family: Delius;
	letter-spacing: .26em;
	cursor: default;
}
h3 {
	color: #dd7008;
	font-size: 1.8em;
	font-weight: 200;
	font-family: Delius;
	letter-spacing: .18em;
	word-spacing: .18em;
	line-height: 1.8em;
	border-bottom: 1px solid;
	cursor: default;
}
h4 {
	color: #7d212b;
	font-size: 1.5em;
	font-weight: 200;
	font-family: Delius;
	letter-spacing: .18em;
	word-spacing: .18em;
	line-height: 1.8em;
	border-bottom: 1px solid;
	cursor: default;
}
h5 {
	color: #7d212b;
	font-size: 1.2em;
	font-weight: 300;
	font-family: Delius;
	letter-spacing: .12em;
	word-spacing: .12em;
	line-height: 1.2em;
	padding: 0;
	margin: 20px 0 0 0;
}
.white {
	color: white;
}
.red {
	color: rgb(125, 35, 45);
}
.yellow {
	color: #dd7008;
}
.upper {
	text-transform: uppercase;
}
.quote {
	font-family: Delius;
	font-size: 1.2em;
}
.underline {
	text-decoration: underline;
}
.underlineRed {
	border-bottom: 1px solid #7d212b;
}
.center {
	text-align: center;
	clear: both;
}
.flex {
	display: flex;
	flex-flow: row wrap;
	height: auto;
	justify-content: space-between;
}
.leftfloat {
	text-align: left;
	float: left;
}
.rightfloat {
	text-align: right;
	float: right;
}
img {
	overflow: hidden;
	width: 100%;
}
img.height {
	width: auto;
	height: 100vh;
}
body.subsite header {
	top: 0;
	height: 65px;
	position: fixed;
	background-color: #fff;
}
#wrapper {
	position: relative;
	width: 100%;
	overflow: hidden;
	z-index: 5;
}
#cookieBanner {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 10;
	width: 100%;
	background-color: #222;
	color: #fff;
	display: inline-flex;
	overflow: hidden;
	transition: .3s ease-in-out;
}
#cookieBanner div {
	display: inline-block;
	min-height: 60px;
	width: 90%;
	max-width: 1800px;
	margin-left: 5%;
}
#intro {
	width: 100%;
	height: 100vh;
	overflow: hidden;
	border-top: 4px solid #7d212b;
}
#intro::after {
	content: '';
	display: block;
	height: 100vh;
	width: 150%;
	margin-left: -25%;
	margin-top: 75vh;
	background-color: rgba(255, 255, 255, .8);
	border-top: 4px solid #7d212b;
	transform-origin: center top;
	box-shadow: 0 0 10px rgba(0, 0, 0, .1);
}
header {
	width: 100%;
	height: 20vh;
	min-height: 60px;
	background-color: rgb(255, 255, 255);
	box-shadow: 0 0 20px rgba(0, 0, 0, .3);
	position: absolute;
	top: 80vh;
	z-index: 10;
}
header.scrolled {
	position: fixed;
	top: 0;
	height: 65px;
	box-shadow: 0 0 20px rgba(0, 0, 0, .3);
}
#logo {
	position: absolute;
	left: 50%;
	top: 40vh;
	padding: 10px 25px 10px 30px;
	background-color: rgba(255, 255, 255, .7);
	border: 3px solid #7d212b;
	transform: translate(-50%, -50%);
	text-align: center;
	line-height: 4em;
}
#mobilenav {
	display: none;
}
#headerlogo {
	max-height: 20vh;
}
#headerlogo img {
	height: 15vh;
	width: auto;
	margin-bottom: 12px;
	transition: .3s ease-out;
}
#mobilelogo {
	display: none;
}
nav {
	height: 60px;
	margin-top: calc(20vh - 60px);
}
header.scrolled nav {
	margin-top: 5px;
}
header.scrolled #headerlogo img {
	height: 50px;
	margin-bottom: 3px;
	transition: .3s ease-out;
}
nav ul {
	list-style: none;
	width: 80%;
	max-width: 1800px;
	height: 100%;
	padding: 0;
	margin-left: 50%;
	transform: translate(-50%, 0);
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: flex-end;
}
nav ul li::after {
	content: '';
	display: block;
	height: 5px;
	width: 0;
	margin-left: 50%;
	margin-top: 1px;
	background-color: #7d212b;
	transition: .3s ease-in-out;
}
nav ul li:hover a h5 {
	color: #dd7008;
	transition: .3s ease-in-out;
}
nav ul li:hover::after {
	width: 100%;
	margin-left: 0;
}
nav ul li.active::after {
	content: '';
	display: block;
	height: 5px;
	width: 100%;
	margin-left: 0;
}
nav ul li a h5 {
	letter-spacing: 2px;
	font-weight: 300;
	font-size: 1.4em;
	padding: 10px 60px 0 60px;
}
#main {
	background-color: rgba(255, 255, 255, .8);
	z-index: 5;
	padding-top: 60px;
	padding-bottom: 60px;
	overflow: hidden;
	border-bottom: 4px solid #7d212b;
}
#content {
	background-color: rgb(255, 255, 255);
	width: 80%;
	max-width: 1800px;
	margin-left: 50%;
	transform: translate(-50%, 0);
	z-index: 0;
	box-shadow: 0 0 15px rgba(0, 0, 0, .3);
}
section {
	min-height: 80vh;
	padding: 90px 60px 0 60px;
}
#workgrid {
	width: 100%;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
}
.project {
	position: relative;
	height: calc((80vw - 120px) * 0.5);
	min-height: 350px;
	max-height: 800px;
	width: calc(50% - 15px);
	background-color: rgba(255, 255, 255, .7);
	margin: 15px 0;
	padding-top: 25vh;
	backround-position: center;
	box-shadow: 0 0 5px rgba(0, 0, 0, .2);
	opacity: .8;
	overflow: hidden;
	cursor: pointer;
	transition: .3s ease-in-out;
}
.project h3 {
	position: relative;
	height: 1.8em;
	text-align: center;
	padding-left: 5px;
	background-color: rgba(125, 35, 45, .9);
	transition: .3s ease-in-out;
	z-index: 1;
	cursor: pointer;
}
.project p {
	position: relative;
	color: rgb(255, 255, 255);
	padding: 15px;
	margin-top: 0;
	width: 100%;
	background-color: rgba(125, 35, 45, .6);
	border-top: 2px solid white;
	z-index: 1;
	cursor: pointer;
}
.project p:nth-child(3) {
	border-top: none;
	margin-top: 100%;
}
.project.active p:nth-child(3) {
	margin: 0;
	min-height: 100%;
	height: auto;
}
.project a {
	color: rgb(255, 255, 255);
	text-decoration: underline;
}
.project:hover {
	box-shadow: 0 0 15px rgba(0, 0, 0, .3);
	opacity: 1;
}
.project.active {
	padding-top: 0px;
	padding-bottom: 30px;
	box-shadow: 0 0 10px rgba(0, 0, 0, .25);
	opacity: .9;
	cursor: default;
}
.project.active p {
	padding: 30px inherit;
	margin: 0;
	height: auto;
	background-color: rgba(125, 35, 45, .8);
}
.project img {
	margin: 0 50%;
	transform: translate(-50%, 0);
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: auto;
}
.offerSection {
	display: flex;
	flex-flow: row wrap;
	height: auto;
	justify-content: space-between;
}
.offerSection img {
	padding-top: 20px;
}
#gallery {
	min-height: auto;
	height: auto;
}
#images {
	width: calc(100% + 10px);
	height: auto;
	margin: 15px -5px;
	display: inline-flex;
	flex-wrap: nowrap;
	justify-content: flex-start;
}
.galleryImg {
	height: auto;
	width: auto;
	padding: 5px;
	flex-grow: 1;
	cursor: pointer;
}
#images img {
	width: 100%;
	height: 100%;
}
#lightbox {
	position: fixed;
	top: 50vh;
	left: 50%;
	width: 0;
	height: 0;
	background-color: rgba(30,30,30,.7);
	transition: .3s ease-in-out;
	z-index: 25;
	overflow: hidden;
}
#lightbox.active {
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;	
}
#lightboximg {
	height: 0;
	width: 0;
	margin: 50vh 50%;
	transition: .3s ease-in-out;
	transform: translate(-50%, -50%);
	box-shadow: 0 0 100px rgba(30,30,30,.8);
}
#lightbox.active #lightboximg {
	height: auto;
	width: auto;
	max-height: 90vh;
	max-width: 90%;
}
#lightbox aside {
	transition: .3s ease-in-out;
	position: fixed;
	cursor: pointer;
	opacity: .6;
}
#lightbox aside:hover {
	opacity: 1;
}
#next, #prev {
	height: 70px;
	width: 50px;
	top: 50vh;
	transform: translate(0,-50%);
}
#next {
	right: -50px;	
}
#prev {
	left: -50px;
}
#close {
	height: 50px;
	width: 50px;
	top: 25px;
	right: -50px;
}
#lightbox.active #close, #lightbox.active #next {
	right: 25px;
}
#lightbox.active #prev {
	left: 25px;
}
#prev::before, #prev::after, #next::before, #next::after, #close::before, #close::after {
	content: '';
	display: inline-block;
	height: 50px;
	width: 7px;
	background-color: #fff;
	border-radius: 10px;
	position: absolute;
	transform-origin: center center;
	transition: .3s ease-in-out;
}
#prev::before {
	transform: rotate(45deg);
	top: -6px;
	left: 50%;
}
#prev::after {
	transform: rotate(-45deg);
	bottom: -6px;
	left: 50%;
}
#prev:hover::before, #prev:hover::after {
	left: 25%;
}
#next::before {
	transform: rotate(-45deg);
	top: -6px;
	right: 50%;
}
#next::after {
	transform: rotate(45deg);
	bottom: -6px;
	right: 50%;
}
#next:hover::before, #next:hover::after {
	right: 25%;
}
#close::before {
	transform: rotate(45deg);
	left: 50%;
}
#close::after {
	transform: rotate(-45deg);
	left: 50%;
}
#close:hover::before {
	transform: rotate(225deg);
}
#close:hover::after {
	transform: rotate(135deg);
}
#map {
	height: 80vh;
	width: 100%;
	margin-top: 20px;
}
#route a {
	display: inline-block;
	font-size: 1.2em;
	margin-left: 50%;
	padding-top: 10px;
	transform: translate(-50%, 0);
	border-bottom: 1px solid #7d212b;
}
#route a:hover {
	border-bottom: 4px solid #7d212b;
	transition: .3s ease-in-out;
}
#contact {
	min-height: auto;
	padding-bottom: 60px;
}
#contact div:nth-child(2) {
	margin-top: 20px;
	display: flex;
	flex-flow: row wrap;
	height: auto;
}
#contact .half {
	margin-left: 0;
}
#contact p {
	margin-left: 20px;
	margin-top: 25%;
}
#bgwindow {
	height: calc(50vh - 130px);
	width: 100%;
	overflow: hidden;
}
footer {
	width: 100%;
	min-height: 300px;
	max-height: 800px;
	background-color: rgba(255, 255, 255, .9);
	border-top: 4px solid #7d212b;
}
#footercont {
	height: 100%;
	padding: 30px calc(10% - 15px);
	display: flex;
	flex-flow: row wrap;
	justify-content: space-between;
}
#footercont span {
	min-height: 60px;
	flex-grow: 1;
	margin: 0 15px;
	flex-basis: 30%;
}
#footercont span p {
	column-count: 1;
}
#footercont span h5 {
	text-align: left;
}
#footercont .below {
	break-before: always;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 15px;
	width: 100%;
	border-top: 1px solid #7d212b;
}
#footercont .below p {
	margin: 0;
}
#footercont .below img {
	height: 80px;
	width: 100%;
}
#disclaim {
	width: 100%;
	padding: 0 10%;
	height: 30px;
	background-color: rgba(125, 35, 45, .8);
	color: white;
	text-align: center;
	font-weight: 200;
	letter-spacing: 5px;
	line-height: 30px;
}
#btt {
	position: fixed;
	bottom: 60px;
	right: 60px;
	width: 64px;
	height: 64px;
	background-color: rgba(125, 35, 45, 0.2);
	border-radius: 50%;
	cursor: pointer;
	transition: .3s ease-in-out;
	border: 2px solid #fff;
}
#btt::before {
	content: '';
	display: block;
	width: 32px;
	height: 7px;
	background-color: #fff;
	border-radius: 10px;
	transform: rotate(-45deg);
	position: absolute;
	left: 5px;
	top: 25px;
}
#btt::after {
	content: '';
	display: block;
	width: 32px;
	height: 7px;
	background-color: #fff;
	border-radius: 10px;
	transform: rotate(45deg);
	position: absolute;
	right: 5px;
	top: 25px;
}
#btt:hover {
	background-color: rgba(125, 35, 45, 0.7);
	box-shadow: 0 0 15px rgba(0, 0, 0, .3);
}
#background {
	height: 200%;
	width: 100%;
	overflow: hidden;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1;
}
#background img {
	height: 100%;
	width: auto;
	margin: 0;
}
@media only screen and (max-width: 1600px) {
	.project {
		padding-top: 10vh;
	}
	nav ul li a h5 {
		padding: 10px 30px 0 30px;
	}
}
@media only screen and (max-width: 1270px) {
	#intro {
		height: 80vh;
	}
	#intro::after {
		height: 0;
		border: none;
	}
	header {
		position: fixed;
		height: 65px;
		top: 0;
		border-bottom: 4px solid #7d212b;
	}
	#mobilelogo {
		display: block;
		position: absolute;
		top: 0;
		left: 50%;
		width: 50%;
		transform: translate(-50%, 0);
	}
	#mobilelogo img {
		height: 50px;
		width: auto;
		margin: 5px 50%;
		transform: translate(-50%, 0);
	}
	#mobilenav {
		display: block;
		position: absolute;
		right: 5px;
		top: 25px;
		width: auto;
		cursor: pointer;
	}
	#mobilenav .bar {
		width: 35px;
		height: 7px;
		background-color: #7d212b;
		margin: 4px 0;
		border-radius: 10px;
		position: absolute;
		right: 5px;
	}
	#mobilenav .bar:nth-child(1) {
		top: -11px;
	}
	#mobilenav .bar:nth-child(2) {
		top: 0;
	}
	#mobilenav .bar:nth-child(3) {
		top: 11px;
	}
	@keyframes bar1rev {
		0% {
			transform: rotate(0deg);
		}
		50% {
			transform: rotate(0deg);
			top: 0;
		}
		100% {
			transform: rotate(-45deg);
			top: 0;
		}
	}
	nav.clicked #mobilenav .bar:nth-child(1) {
		animation-name: bar1rev;
		animation-duration: .3s;
		animation-fill-mode: forwards;
	}
	@keyframes bar2rev {
		0% {
			opacity: 1;
		}
		50% {
			opacity: 0;
		}
		100% {
			opacity: 0;
		}
	}
	nav.clicked #mobilenav .bar:nth-child(2) {
		animation-name: bar2rev;
		animation-duration: .3s;
		animation-fill-mode: forwards;
	}
	@keyframes bar3rev {
		0% {
			transform: rotate(0deg);
		}
		50% {
			transform: rotate(0deg);
			top: 0;
		}
		100% {
			transform: rotate(45deg);
			top: 0;
		}
	}
	nav.clicked #mobilenav .bar:nth-child(3) {
		animation-name: bar3rev;
		animation-duration: .3s;
		animation-fill-mode: forwards;
	}
	@keyframes bar1 {
		0% {
			transform: rotate(-45deg);
			top: 0;
		}
		50% {
			transform: rotate(0deg);
			top: 0;
		}
		100% {
			transform: rotate(0deg);
			top: -11px;
		}
	}
	#mobilenav .bar:nth-child(1) {
		animation-name: bar1;
		animation-duration: .3s;
		animation-fill-mode: forwards;
	}
	@keyframes bar2 {
		0% {
			opacity: 0;
		}
		50% {
			opacity: 0;
		}
		100% {
			opacity: 1;
		}
	}
	#mobilenav .bar:nth-child(2) {
		animation-name: bar2;
		animation-duration: .3s;
		animation-fill-mode: forwards;
	}
	@keyframes bar3 {
		0% {
			transform: rotate(45deg);
			top: 0;
		}
		50% {
			transform: rotate(0deg);
			top: 0;
		}
		100% {
			transform: rotate(0deg);
			top: 11px;
		}
	}
	#mobilenav .bar:nth-child(3) {
		animation-name: bar3;
		animation-duration: .3s;
		animation-fill-mode: forwards;
	}
	nav {
		margin-top: 65px;
	}
	nav.clicked #wrapper {
		position: fixed;
	}
	nav ul {
		width: 0;
		height: 100vh;
		position: fixed;
		top: 65px;
		right: 0;
		flex-direction: column;
		background-color: rgba(255, 255, 255, .8);
		box-shadow: 0 0 20px rgba(0, 0, 0, .3);
		margin: 0;
		justify-content: flex-start;
		transform: translate(0, 0);
		transition: .3s ease-in-out;
	}
	nav.clicked ul {
		width: 70vw;
		max-width: 600px;
		transition: .3s ease-in-out;
	}
	#headerlogo img {
		display: none;
	}
	nav ul li {
		width: 100%;
		text-align-last: right;
		margin-top: 10px;
	}
	nav ul li::after {
		margin-left: 100%;
	}
	#main {
		border-top: 4px solid #7d212b;
	}
	.project {
		padding-top: 0vh;
	}
	#contact div:nth-child(2) {
		margin-top: 10px;
	}
	#btt {
		display: none;
	}
}
@media only screen and (max-width: 1080px) {
	h1 {
		font-size: 2em;
		line-height: 1.8em;
	}
	h2 {
		font-size: 1.7em;
		line-height: 1.6em;
	}
	h3 {
		font-size: 1.6em;
		line-height: 1.4em;
	}
	#logo {
		padding: 0 10px 0 25px;
		line-height: 50px;
		top: 45vh;
		z-index: 0;
	}
	p {
		column-count: 1;
		margin: 5px 0;
		column-gap: 0;
	}
	#content {
		width: 100%;
	}
	section {
		padding: 10px 10px 20px 10px;
	}
	#profileimg img {
		padding: 10px 30px;
	}
	.childOffer .half:nth-child(1) {
		order: 2;
	}
	.childOffer .half:nth-child(2) {
		order: 1;
	}
	#workgrid {
		flex-direction: column;
	}
	.project {
		width: 100%;
		height: 60vh;
		margin: 5px 0;
		padding-top: 0;
		max-height: none;
	}
	@media only screen and (orientation: portrait) {
		.project {
			height: 130vw;
		}
	}
	.project p {
		min-height: 100%;
	}
	.project.active {
		padding-bottom: 0;
		height: auto;
	}
	.offerSection img {
		padding-top: 10px;
	}
	.subsite img {
		padding: 10px 0;
	}
	#images {
		flex-wrap: wrap;
	}
	#lightbox.active #lightboximg {
		max-width: 100%;
	}
	#next, #prev, #close {
		top: calc(100vh - 10px);
		transform: translate(0, -100%);
	}
	#lightbox.active #close {
		left: 50%;
		transform: translate(-50%, -100%);
	}
	#map {
		margin-top: 10px;
	}
	#contact div:nth-child(2) {
		justify-content: space-evenly;
	}
	#contact p {
		margin-left: 0;
		text-align: center;
	}
	footer {
		background-color: rgba(255, 255, 255, 1.00);
	}
	#footercont {
		flex-direction: column;
	}
	#footercont * {
		text-align: center;
	}
	#footercont span {
		margin: 0;
		margin-top: 10px;
	}
	#footercont span h5 {
		text-align: center;
	}
	#footercont .col1 {
		display: none;
	}
	#footercont .below {
		flex-flow: column wrap;
		break-before: avoid;
	}
	#footercont .below img {
		margin-top: 10px;
	}
	#disclaim {
		height: 100%;
		background-color: rgba(125, 35, 45, 1);
	}
	#disclaim span {
		display: block;
		float: none;
		text-align: center;
	}
	#bgwindow {
		height: 100vw;
	}
	#background {
		width: 100vw;
		height: 100%;
	}
	#background img {
		width: 250%;
		height: auto;
		transform: translate(-25%, 0);
	}
}
@media only screen and (min-width: 1080px) {
	.subsite p {
		padding: 0;
	}
	.subsite p:nth-child(1) {
		margin-top: 0;
	}
	.half {
		width: calc(50% - 15px);
		margin-left: 10px;
	}
	.subsite .half {
		padding-top: 30px;
		margin-left: 0;
	}
	#offer h4 {
		margin: 30px 10px 0 0;
	}
	.colon2 {
		column-count: 2;
		column-gap: 30px;
		column-fill: balance;
	}
	.subsite #content {
		margin-top: 60px;
	}
	.subsite section {
		min-height: auto;
		padding: 50px 60px 60px 60px;
	}
}