html {
	font-size: 62.5%;
}

body {
	font-family: "Helvetica Neue", "Open Sans", sans-serif;
	font-weight: 200;
	text-align: center;
	color: #ffffff;
	background-color: #6BABFA;
	-webkit-text-size-adjust: 100%;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

body a {
	text-decoration: none;
}

body li {
	list-style: none;
}

.clearfix:before,
.clearfix:after {
    content: " "; /* 1 */
    display: table; /* 2 */
}
.clearfix:after {
	clear: both
}

.wrapper {
	position: relative;
	width: 100vw;
	height: 100vh;
	background-color: #6F9DFB;
	background: radial-gradient(at top center, #63CCF9, #7A6DFC);
	overflow: hidden;
}

.fullsize-container {
	position: relative;
	height: 100%;
}

.content {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 80%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

.nav {
	position: absolute;
	top: 20px;
	left: 0;
	width: 100%;
	height: 30px;
}

.nav .logo {
	position: relative;
	float: left;
}

.nav .social {
	position: relative;
	float: right;
}

.nav .logo img,
.nav .logo span,
.nav .social a {
	display: inline-block;
	vertical-align: middle;
}
.nav .logo img {
	width: 34px;
	height: 24px;
}

.nav .logo span {
	font-size: 1.4rem;
	color: #fff;
}

.nav .logo span b {
	font-weight: 500;
}

.nav .social a {
	margin: 0 5px;
    text-decoration: none;
    -webkit-transition: opacity .4s;
    -o-transition: opacity .4s;
    transition: opacity .4s;
}

.nav .social a:hover {
	opacity: .8;
}

.nav .social a img {
	width: 20px;
	height: 20px;
}

@media (max-width: 414px) {
	.nav {
		top: 10px;
		height: 20px;
	}
	.nav .logo img {
		width: 14px;
		height: 14px;
	}
	.nav .logo span {
		font-size: 1.0rem;
	}
	.nav .social a {
		margin: 0 3px;
	}
	.nav .social a img {
		width: 14px;
		height: 14px;
	}
}

.text, .image {
	position: absolute;
	top: 50%;
	width: 50%;
	-webkit-transform: translate(0, -50%);
	-ms-transform: translate(0, -50%);
	-o-transform: translate(0, -50%);
	transform: translate(0, -50%);
}

.text {
	left: 0;
}

.image {
	right: 0;
}

.text p {
	margin: 0 auto 30px auto;
	text-align: left;
	width: 80%;
}

.text .title {
	font-size: 3.6rem;
}

.text .desc {
	font-size: 1.8rem;
}

.text .download {
	display: block;
	margin: 0 auto;
	width: 80%;
}

.text .download span {
	margin-top: 20px;
	float: left;
	padding: 10px 20px;
	color: #739DF8;
	font-size: 2.4rem;
	background: #fff;
	border-radius: 6px;
}

.text .download img {
	margin-top: 20px;
	float: left;
	width: 200px;
	height: 61px;
}

.image img {
	width: 90%;
}

.image .two {
	display: inline;
}

.image .single {
	display: none;
}

@media (max-width: 768px) {
	.wrapper {
		height: 1200px;
		background: radial-gradient(at top left, #63CCF9, #7A6DFC);
	}
	.content {
		height: 100%;
	}
	.text, .image {
		left: 0;
		width: 100%;
		-webkit-transform: translate(0, 0);
		-ms-transform: translate(0, 0);
		-o-transform: translate(0, 0);
		transform: translate(0, 0);
	}

	.text {
		top: 200px;
	}

	.text p {
		text-align: center;
	}

	.text .download span {
		float: none;
	}

	.text .download img {
		float: none;
	}

	.image {
		top: 500px;
	}
}

@media (max-width: 414px) {
	
	.wrapper {
		height: 880px;
	}
	
	.text {
		top: 120px;
	}

	.text .title {
		font-size: 2.2rem;
	}

	.text .desc {
		display: none;
	}

	.text .download span {
		padding: 5px 10px;
		font-size: 2.2rem;
	}

	.text .download img {
		width: 160px;
		height: 48px;
	}

	.image {
		top: 280px;
	}

	.image .two {
		display: none;
	}

	.image .single {
		display: inline;
		width: 100%;
	}
}

.footer {
	position: absolute;
	bottom: 20px;
	left: 0;
	width: 100%;
	height: 30px;
}

.footer p {
	text-align: center;
	font-size: 1.2rem;
	color: #fff;
}

@media (max-width: 414px) {
	.footer {
		bottom: 10px;
		height: 20px;
	}
	.footer .p {
		font-size: 1.0rem;
	}
}