@font-face {
	font-family: 'Book';
	src: url('fonts/LubalinGraphBookRegular.eot');
	src: url('fonts/LubalinGraphBookRegular.eot') format('embedded-opentype'), url('fonts/LubalinGraphBookRegular.woff2') format('woff2'), url('fonts/LubalinGraphBookRegular.woff') format('woff'), url('fonts/LubalinGraphBookRegular.ttf') format('truetype'), url('fonts/LubalinGraphBookRegular.svg#LubalinGraphBookRegular') format('svg');
}
@font-face {
	font-family: 'Demi';
	src: url('fonts/LubalinGraphDemiRegular.eot');
	src: url('fonts/LubalinGraphDemiRegular.eot') format('embedded-opentype'), url('fonts/LubalinGraphDemiRegular.woff2') format('woff2'), url('fonts/LubalinGraphDemiRegular.woff') format('woff'), url('fonts/LubalinGraphDemiRegular.ttf') format('truetype'), url('fonts/LubalinGraphDemiRegular.svg#LubalinGraphDemiRegular') format('svg');
}
body {
	width: 100%;
	max-width: 535px;
	margin: 0 auto;
	height: 100%;
	min-height: 380px;
	position: relative;
	font-family: 'Book', Arial, sans-serif;
	font-weight: bold;
}
.wrapper {
	background: url("images/bg.png") bottom center no-repeat;
	padding-bottom: 210px;
	-webkit-background-size: 100% auto;
	-o-background-size: 100% auto;
	background-size: 100% auto;
	position: relative;
}
.btn {
	background: #FFF;
	-webkit-border-radius: 8px;
	border-radius: 8px;
	padding: 5px 15px;
	text-decoration: none;
	font-family: 'Demi', Arial, sans-serif;
	font-weight: normal;
}

/* Radial In */
.btn {
	display: inline-block;
	vertical-align: middle;
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
	box-shadow: 0 0 1px rgba(0, 0, 0, 0);
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-moz-osx-font-smoothing: grayscale;
	position: relative;
	overflow: hidden;
	-webkit-transition-property: color;
	transition-property: color;
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;
}
.btn:before {
	content: "";
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border-radius: 100%;
	-webkit-transform: scale(2);
	transform: scale(2);
	-webkit-transition-property: transform;
	transition-property: transform;
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;
	-webkit-transition-timing-function: ease-out;
	transition-timing-function: ease-out;
}
.btn:hover, .btn:focus, .btn:active {
	color: white;
}
.btn:hover:before, .btn:focus:before, .btn:active:before {
	-webkit-transform: scale(0);
	transform: scale(0);
}
.btn-orange {
	background: #e26f1b;
	color: #FFF;
}
.btn-orange:before {
	background: #e26f1b;
}
.btn-orange:hover {
	background: #c05405;
	color: #FFF;
}
.btn-white {
	background: #FFF;
	color: #000;
}
.btn-white:before {
	background: #FFF;
}
.btn-white:hover {
	background: #000;
	color: #fff;
}

.title, .subtitle {
	text-align: center;
	font-family: 'Demi', Arial, sans-serif;
	font-size: 36px;
	max-width: 350px;
	margin: 60px auto 0;
	color: #E26F1B;
	font-weight: normal;
}
.subtitle {
	font-size: 18px;
	margin: 15px auto 0;
}
.btn-cta {
	text-align: center;
	// position: absolute;
	width: 100%;
	// bottom: 250px;
	margin: 50px 0;
}
.btn-cta .btn {
	margin: 0 15px;
	display: inline-block;
	min-width: 60px;
}
.answer-content {
	line-height: 1.5;
	padding: 30px 30px 0;
}
.answer-title {
	color: #E26F1B;
	font-size: 24px;
	font-family: 'Demi', Arial, sans-serif;
	font-weight: normal;
}
.answer-content a {
	color: #E26F1B;
	text-decoration: none;
}
.answer-content a:hover {
	text-decoration: underline;
}
.footer {
	position: absolute;
	bottom: 60px;
	width: 100%;
}
.footer .btn {
	margin: 0 30px;
	font-size: 13px;
}
.btn-back {
	float: left;
}
.btn-restart {
	float: right;
}

@media screen and (max-width:430px) {
	.btn-cta{
		margin: 30px 0;
	}

	.wrapper {
		padding-bottom: 160px;
	}

	.footer {
		bottom: 50px;
	}
	.title, .subtitle{
		font-size: 24px;
	}

	.subtitle{
		font-size: 16px;
	}

}
@media screen and (max-width:330px) {
	.wrapper {
		padding-bottom: 120px;
	}
	.footer {
		bottom: 40px;
	}
}

