* {
	outline: none;
	box-sizing: border-box;
	list-style: none;
	margin: 0;
	padding: 0;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
	font-size: 16px;
  line-height: 1.3;
  color: #fff;
	font-family: 'Open Sans', sans-serif;
	font-weight: 300;
	background: #000;
}

input, button, select, textarea {
	font-weight: 600;
  font-family: 'Open Sans', sans-serif;
  font-size: inherit;
  line-height: inherit;
  border: none;
}

button, html input[type="button"], input[type="reset"], input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}

img {
	display: block;
	max-width: 100%;
}

a {
	text-decoration: underline;
	color: #ABED4A;
}

a:hover {
	color: #fff;
}

h1 {
	font-size: 64px;
	text-align: center;
	font-family: 'Quicksand', sans-serif;
	font-weight: normal;
	line-height: 70px;
}

.flex {
	display: flex;
	align-items: flex-start;
	flex-wrap: wrap;
}

.flex-column {
	flex-direction: column;
}

.align-center {
	align-items: center;
}

.align-bottom {
	align-items: flex-end;
}

.flex-justify {
	justify-content: space-between;
}

.flex-center {
	justify-content: center;
}

.btn {
	border-radius: 13px;
}

a {
	text-decoration: none;
}

.btn-main {
	background: linear-gradient(180deg, #7000FF 0%, #4B00AB 100%);
	box-shadow: 0px 0px 30px #000AFF;
	font-size: 24px;
	text-align: center;
	line-height: 60px;
	color: #fff;
	font-weight: 600;
	margin: 30px auto 0;
	width: 100%;
	max-width: 300px;
	display: block;
	transition: 0.2s ease;
	cursor: pointer;
}

.btn-main:hover {
	box-shadow: 0px 0px 30px #000AFF;
}

.btn-first {
  background: linear-gradient(180deg, #4fff00 0%, #196a01 100%);
  box-shadow: 0px 0px 30px #1ca600;
}

.btn-first:hover {
	box-shadow: 0px 0px 30px #4fff00;
}

.btn-secondary {
	background: linear-gradient(180deg, #d50000 0%, #530000 100%);
  box-shadow: 0px 0px 30px #7c0000;
}

.btn-secondary:hover {
	box-shadow: 0px 0px 30px #840000;
}

.wrap {
	height: 100vh;
	max-height: -webkit-fill-available;
}

.question {
	width: 100%;
	padding: 0 20px;
}

.question-2 {
	display: none;
}

.question-3 {
	display: none;
}

header {
	padding: 30px 0 0;
	position: absolute;
	top: 0;
	width: 100%;
	left: 0;
}

.logo {
	width: 150px;
	margin: 0 auto;
}

@media screen and (max-width: 1300px) {
	.container {
		width: 90%;
	}
}

@media screen and (max-width: 1170px) {
 	h1 {
	    font-size: 48px;
	    line-height: 54px;
	    max-width: 100%;
	}
	
}

@media screen and (max-width: 1000px) {
 	h1 {
	    font-size: 32px;
	    line-height: 40px;
	}
	
}