@charset "UTF-8";
/* CSS Document */


html {
	font-size: 62.5%;
	/* sets the base font to 10px for easier math */
	line-break: strict;
}

body {
	text-align: center;
	background-color: #E0E0E0;
	/*
	font-family: -apple-system, 'BlinkMacSystemFont';
	*/
	font-family: 'Roboto', "kozuka-gothic-pro";
	font-size: 15px;
	font-size: 1.5rem;
	/* sets the default sizing to make sure nothing is actually 10px */
	font-weight: 400;
	line-height: 1.7;
	min-height: 100vh;
	overflow: scroll;
	/*
	scroll-behavior: smooth;
	*/
}

h1, h2, h3, h4, h5 {
	font-feature-settings: "palt";
	color: #545454;
}

h1, h2 {
	margin-bottom: .5em;
	line-height: 1.1;
}

h3, h4, h5 {
	margin-bottom: .5em;
	line-height: 1.4;
}

h2 {
	font-weight: 400;
	font-size: 4.8rem;
	color: #d60000;
	letter-spacing: .02em;
}

h2:first-of-type {
	margin: 1.5em 0 1.2em;
}

h3 {
	font-weight: 300;
	font-size: 2.5rem;
}

p {
	margin: .5em 0;
}

img {
	vertical-align: top;
}

a {
	color: #499ede;
	transition: all .2s ease-out;
}

a:hover {
	opacity: .75;
}

a:hover img {
	filter: alpha(opacity=70);
	opacity: .7;
}

a img {
	transition: opacity .2s ease-out;
}

.anchorlink {
	position: relative;
	top: -80px;
	display: block;
}

.wrapper {
	max-width: 1000px;
	margin: 0 auto;
	text-align: left;
	overflow: hidden;
}

#content {
	background-color: #fff;
	min-height: 600px;
	padding-bottom: 12rem;
	color: #545454;
}

.uppercase {
	text-transform: uppercase;
}

.nowrap {
	white-space: nowrap;
}


/* ===========================
   Responsive
=========================== */

@media screen and (max-width: 1080px) {

	img {
		max-width: 100%;
		height: auto;
	}

	.wrapper {
		margin: 0 3.7% !important;
	}
}


@media screen and (max-width: 540px) {
	#content {
		min-height: 100vw;
	}

	h2 {
		font-size: 3.2rem;
	}
}


@media screen and (max-width: 320px) {

	h2 {
		font-size: 3rem;
	}
}