@font-face {
    font-family: 'SangBleu BP';
    src: url('/fonts/SangBleuBP-Light.eot');
    src: url('/fonts/SangBleuBP-Light.eot?#iefix') format('embedded-opentype'),
        url('/fonts/SangBleuBP-Light.woff2') format('woff2'),
        url('/fonts/SangBleuBP-Light.woff') format('woff'),
        url('/fonts/SangBleuBP-Light.ttf') format('truetype'),
        url('/fonts/SangBleuBP-Light.svg#SangBleuBP-Light') format('svg');
    font-weight: 400;
    font-style: normal;
}

html {
	-webkit-text-size-adjust: 100%;
}

body, html {
	min-height: 100%;
}

body {
	color: #222;
    font-family: 'SangBleu BP', Times New Roman;
	font-weight: 400;
	font-style: normal;
	font-feature-settings: "kern";
	-webkit-font-feature-settings: "kern";
	-webkit-font-smoothing: subpixel-antialiased;
	font-size: 10.5pt;
	margin: 0;
	overflow-y: scroll;
	-webkit-overflow-scrolling: touch;
	opacity: 0;
	padding: 0;
	text-rendering: optimizeLegibility;
	-webkit-transition: opacity 0.5s linear 0.5s;
	transition: opacity 0.5s linear 0.5s;
}

body.loaded {
	opacity: 1;
}

.marquee {
	background: #fff url(/images/tobias-meyer-landing-image.jpg) 0 50% no-repeat;
	background-size: cover;
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	z-index: 0;
}

.marquee img {
	display: none;
}

.main-content {
	background: #fff;
	overflow: hidden;
	position: relative;
	z-index: 1;
}

.about-visible .main-content {
	min-height: 100vh;
}

.card {
    opacity: 0;
	padding: 70px 0 30px;
    text-align: center;
    transform: translateY(20px);
    transition: opacity 0.5s linear 1s, transform 0.75s ease 1s;
}

.loaded .card {
	opacity: 1;
	transform: translateY(0);
}

h1 {
    font-size: 22px;
    font-weight: normal;
    letter-spacing: 2px;
    margin: 0 0 40px 0;
    text-transform: uppercase;
}

.card p {
	font-size: 10.5pt;
    letter-spacing: 0.5px;
    line-height: 140%;
    margin: 0 0 20px;
    text-transform: uppercase;
}

@media screen and (max-width: 480px) {
	.card {
		padding: 50px 0 25px;
	}
	
	h1 {
		font-size: 18px;
		margin-bottom: 30px;
	}
	
	.card p {
		font-size: 11px;
	}
}

.card a {
	color: #222;
	display: inline-block;
	margin-left: 10px;
	text-decoration: none;
}

.card a:hover {
	text-decoration: underline;
}

.toggle {
	background: url(/images/chevron-down-thin.svg) 50% 50% no-repeat;
	background-size: 40px auto;
	display: block;
	margin: 0 auto;
	height: 30px;
	text-indent: -9999px;
	-webkit-transition: opacity 0.2s ease, transform 0.75s linear;
	transition: opacity 0.2s ease, transform 0.75s linear;
	width: 40px;
}

.toggle:hover {
	opacity: .7;
}

.scrolled .toggle {
	-moz-transform: scale(1, -1);
	-webkit-transform: scale(1, -1);
	-o-transform: scale(1, -1);
	-ms-transform: scale(1, -1);
	transform: scale(1, -1);
}

.about-content {
	display: none;
	margin: 0 auto;
	max-width: 1090px;
	opacity: 0;
	-webkit-transition: opacity 1s linear;
	padding: 0 30px 30px;
	transition: opacity 1s linear;
}

@media screen and (min-width: 650px) {
	.about-content {
		-webkit-column-count: 2;
		-moz-column-count: 2;
		column-count: 2;
		-webkit-column-gap: 50px;
		-moz-column-gap: 50px;
		column-gap: 70px;
		padding: 0 50px 50px;
	}
}

.about-visible .about-content {
	display: block;
}

.about-visible.scrolled .about-content {
	opacity: 1;
}

.about-content p {
	text-align: justify;
	line-height: 144%;
	margin: 0 0 20px 0;
}

.about-content p:last-child {
	margin: 0;
}

