@font-face {
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 300;
  src: local(''),
       url('/asset/font/roboto-condensed-300.woff2') format('woff2'),
       url('/asset/font/roboto-condensed-300.woff') format('woff')
}

@font-face {
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 400;
  src: local(''),
       url('/asset/font/roboto-condensed-400.woff2') format('woff2'),
       url('/asset/font/roboto-condensed-400.woff') format('woff')
}

html, body {
	margin: 0;
	padding: 0;
}
body {
	font: 300 normal 20px/30px 'Roboto Condensed', Arial, sans-serif;
	text-align: center;
	color: #fff;
	background-color: #313130;
}
body * {
	box-sizing: content-box;
}
article, audio, aside, canvas, details, figcaption, figure, footer, header, main, menu, nav, section, summary, video {
	display: block;
	margin: 0;
}
img, svg {
	vertical-align: middle;
}
a {
	text-decoration: none;
	color: #fff;
	background-color: transparent;
	cursor: pointer;
}
a:hover {
	text-decoration: underline;
}
a:active, a:hover {
	outline: 0;
}
b, strong {
	font-weight: 400;
}
p {
	margin: 0;
	padding: 0 0 1em 0;
}
ul, ol {
	margin: 0 0 1em 25px;
	padding: 0 ;
}
sub, sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}
sup {
	top: -0.5em;
}
sub {
	bottom: -0.25em;
}


.main {
	display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-content: center;
    align-items: center;
	width: 740px;
	min-height: calc(100vh - 110px);
	margin: 0 auto;
	padding: 30px 30px 0 30px;
}
.content {
	order: 0;
    flex: 0 1 auto;
    align-self: auto;
	text-align: left;
}
.logo {
	width: 740px;
	height: auto;
	margin-bottom: 110px;
}
h1 {
	margin: 0;
	padding: 0 0 1em 0;
	font-size: 26px;
	font-weight: 400;
	line-height: 36px;
}
h2 {
	margin: 0;
	padding: 0 0 .5em 0;
	font-size: 22px;
	font-weight: 400;
	line-height: 32px;
}
h3 {
	margin: 0;
	padding: 0;
	font-size: 20px;
	font-weight: 400;
	line-height: 30px;
}
.twoCols {
	column-width: 360px;
	column-count: 2;
	column-gap: 20px;
	padding: 0 0 45px 0;
	text-transform: uppercase;
}
.twoCols span {
	display: block;
	-webkit-column-break-inside: avoid;
	page-break-inside: avoid;
	break-inside: avoid;
}
.twoCols span:last-child {
	text-align: right;
}
.btn {
	width: 100%;
	padding-bottom: 30px;
	text-align: center;
}
.btn a {
	display: inline-block;
	width: 180px;
	height: 50px;
	border: 1px solid #fff;
	border-radius: 25px;
	color: #fff;
	line-height: 48px;
	transition: all .6s ease;
}
.btn a:hover {
	background-color: #fff;
	color: #313130;
	text-decoration: none;	
}
.btn a:first-child {
	margin-right: 30px;
}
.footer {
	padding: 30px 0;
	text-align: center;
	font-size: 14px;
	font-weight: 400;
	line-height: 20px;
}

@media screen and (max-width: 800px) {
	.main {
		display: block;
		width: calc(100% - 60px);
	}
	.logo {
		width: 100%;
	}
	.twoCols {
		columns: unset;
	}
	.twoCols span:last-child {
		padding-top: 1em;
		text-align: left;
	}
	.btn a:first-child {
		margin-right: 0;
		margin-bottom: 30px;
	}
}