@font-face {
	font-family: "Maven Pro";
	src: url("fonts/mavenpro-regular.woff2") format("woff2"),
		url("fonts/mavenpro-regular.woff") format("woff");
	font-weight: normal;
	font-style: normal;
}
@font-face {
	font-family: "Maven Pro";
	src: url("fonts/mavenpro-black.woff2") format("woff2"),
		url("fonts/mavenpro-black.woff") format("woff");
	font-weight: 900;
	font-style: normal;
}
@font-face {
	font-family: "Maven Pro";
	src: url("fonts/mavenpro-bold.woff2") format("woff2"),
		url("fonts/mavenpro-bold.woff") format("woff");
	font-weight: 700;
	font-style: normal;
}

html {
	width: 100%;
	height: 100%;
}
body {
	width: 100%;
	height: 100%;
	margin: 0;
	font-family: "Maven Pro";
	font-size: 18px;
	background: url("img/bg.svg") center center no-repeat;
	background-size: cover;
}
body > .rocket {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 80%;
	height: 80%;
	background: url("img/rocket.svg") left bottom no-repeat;
	background-size: contain;
}
.logo {
	position: absolute;
	bottom: 15px;
	left: 15px;
	display: block;
	width: 150px;
	background: url("img/logo.svg") left bottom no-repeat;
	background-size: contain;
}
.logo:before {
	content: "";
	display: block;
	width: 100%;
	padding-top: 13.88136%;
}
.logo:after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	display: block;
	background: url("img/logo_black.svg") left bottom no-repeat;
	background-size: contain;
	opacity: 0;
	-o-transition: all .2s;
	-moz-transition: all .2s;
	-webkit-transition: all .2s;
	transition: all .2s;
}
.logo:hover:after {
	opacity: 0.5;
}
body > .container {
	position: absolute;
	top: 0;
	right: 0;
	display: table;
	width: 50%;
	height: 55%;
}
body > .container > .inner {
	display: table-cell;
	vertical-align: middle;
}
body > .container > .inner > .content {
	padding: 20px;
}
body > .container .logo {
	position: relative;
	right: 0;
	bottom: unset;
	left: 0;
	width: 250px;
	margin: 0 auto 40px;
	background-image: url("img/logo_black.svg");
}
body > .container .logo:after {
	background-image: url("img/logo.svg");
}

h1 {
	font-family: 'Maven Pro', sans-serif;
	font-size: 46px;
	color: #000;
	font-weight: 900;
	text-transform: uppercase;
	margin: 0 0 50px;
	text-align: center;
}
p {
	margin: 0 0 15px;
}
ul {
	margin: 0 0 15px;
}
a {
	font-weight: 600;
	color: #ff9900;
	text-decoration: none;
	-o-transition: all .2s;
	-moz-transition: all .2s;
	-webkit-transition: all .2s;
	transition: all .2s;
}
a:hover {
	color: #e58200;
}
.button {
	display: inline-block;
	padding: 10px 20px;
	border-radius: 40px;
	border: 2px solid transparent;
	margin: 15px 5px;
	font-size: 14px;
	font-weight: 400;
	background: #f90;
	color: #fff;
	text-decoration: none;
	text-transform: uppercase;
	-o-transition: 0.2s all;
	-moz-transition: 0.2s all;
	-webkit-transition: 0.2s all;
	transition: 0.2s all;
}
.button:hover {
	background-color: rgba(255, 255, 255, .6);
	border-color: #f90;
	color: #f90;
}

@media(max-width: 880px) {
	body > .container {
		left: 0;
		width: 100%;
	}
	body > .rocket {
		width: 100%;
		height: 50%;
	}
}
@media(max-width: 450px) {
	body > .container {
		height: auto;
	}
	body > .rocket {
		display: none;
	}
	.logo {
		right: 0;
		left: 0;
		margin: 0 auto;
		background-image: url("img/logo_black.svg");
	}
	.logo:after {
		display: none;
	}
}