<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*
Landing Page
*/
body,html {
	background-color: #000;
    margin: 0;
    padding: 0;
}
body.landing-page {
	background-color: #000;
}
body.landing-page img{
/*	object-fit: none;*/
	object-fit: contain;
}
body.landing-page .logo {
	position: fixed;
    width: 100%;
    height: 100%;
    justify-content: center;
    display: flex;
    align-content: center;
    left: 0;
    top: 0;
	mix-blend-mode: exclusion;
}
.header-logo img {
	max-width: 200px;
}
header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
}

body.landing-page .content {
	height: 100vh;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	isolation: isolate;
	overflow: hidden;
	pointer-events: none;
	z-index: 100;
}
body.landing-page .content-img {
	max-width: 500px;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	will-change: transform;
	filter: var(--filter-img);
}
/*
Home
*/
.home-wrapper {
	font-size: 24px;
	padding: 0px;
	background-color: #000;
	color: #fff;
	position: relative;
	height: 100vh;
	align-items: center;
	width: 100%;
	justify-content: center;
	overflow: hidden;
}
.home-wrapper img{
	width: 100%;
	max-width: 100%;
	height: 80vh;
}
.projects {
	font-size: 24px;
	padding: 0px;
	background-color: #000;
	color: #fff;
	position: relative;
	height: 100%;
	align-items: center;
	display: flex;
	width: 100%;
	justify-content: center;
}
.projects a:hover {
	opacity: .5;
}
.project-thumbnail {
	margin: 0px 0px 0px 0px;
	position: relative;
	display: inline-block;
}
.project-thumbnail .project-title .title {
	font-size: 24px;
	padding: 0px 40px;
}
.project-thumbnail .project-title .client {
	font-family: 'Beausite';
	font-size: 10px;
	font-weight: 100;
	text-transform: uppercase;
	margin-top: 5px;
}
body.landing-page .logo {
  position: fixed;
  width: 100%;
  height: 100%;
  justify-content: center;
  display: flex;
  align-content: center;
  left: 0;
  mix-blend-mode: exclusion;
}
body.landing-page .logo img {
  width: 100%;
  max-width: 100%;
  height: auto;
}
body.landing-page img {
  object-fit: contain;
}
@media only screen and (max-width: 820px) {
    body.landing-page .content {
		height: auto;
		position: relative;
		display: flex;
		justify-content: center;
		align-items: center;
		isolation: inherit;
		overflow: auto;
		pointer-events: initial;
		z-index: 100;
		flex-direction: column;
		animation:autoscroll 150s linear;
		max-width: 100%;
	}
	@keyframes autoscroll{
		to{
			margin-top:-3000px;
		}    
	}
	body.landing-page .content-img {
		max-width: 1200px;
		position: relative;
		top: 0;
		left: 0;
		opacity: 0;
		will-change: inherit;
		filter: inherit;
		opacity: 1 !important;
		width: 100%;
		transform: none !important;
	}
    .home-wrapper img {
		height: 80svh;
	}
    .home {
		height: 100svh;
	}
}</pre></body></html>