@charset "UTF-8";
@import "compass/css3";
/* CSS Document */

/*--------- screen 1 ---------*/

#screen1 {
	background-color: #222;
	position: relative;
	height: 100%;
	width: 100%;
	margin: -50px 0 0 0;
	padding-bottom: 10vw;
	overflow: auto;
	text-align: left;
}

#screen1 p {
	width: 100%;
	margin-bottom: 36px;
	font-family: 'Work Sans', sans-serif;
	font-weight: 900;
	font-size: 70px;
	color: #EEE;
}

#screen1 #container {
	width: 100%;
	margin-bottom: -100px;
}

#screen1 #container form {
	width: 100%;
	margin-top: -50px;
	padding-top: 50px;
}

#screen1 #container form p {
	width: calc(100% - 424px);
	width: -moz-calc(100% - 424px);
	width: -o-calc(100% - 424px);
	width: -webkit-calc(100% - 424px);
	font-size: 24px;
	line-height: 24px;
	margin-bottom: -15px;
	float: left;
	color: #AAA;
	font-family: 'Open Sans', sans-serif;
	font-weight: 900;
	clear: both;
}

#screen1 #container form d {
	width: 100%;
	line-height: 42px;
	font-size: 32px;
	margin-top: 70px;
	margin-bottom: 0px;
	float: left;
	color: #EEE;
	font-family: 'Work Sans', sans-serif;
	font-weight: 900;
}

#screen1 #container form input[type="text"], #screen1 #container form .input, #screen1 #container form input[type="submit"] {
	height: 36px;
	width: 400px;
	margin-bottom: 0px;
	margin-top: -20px;
	float: right;
	border: 2px solid #AAA;
	border-radius: 10px;
	padding-right: 10px;
	padding-left: 10px;
	text-align: left;
	font-size: 26px;
	font-family: 'Work Sans', sans-serif;
	font-weight: 600;
	background-color: #292929;
	color: #AAA;
	clear: both;
}

#screen1 #container form .input {
	height: 200px;
	box-shadow: 0px 0px 0px 0px #AAA;
}

#screen1 #container form input[type="text"]:focus, #screen1 #container form .input:focus, #screen1 #container form input[type="submit"]:focus {
	background-color: #444;
	border: 2px solid #666;
	outline: none;
}

input[type="checkbox"] {
	width: 30px;
	height: 30px;
	cursor: pointer;
	-webkit-appearance: none;
	appearance: none;
	background: #292929;
	border-radius: 10px;
	box-sizing: border-box;	
	position: relative;
	top: 50px;
	box-sizing: content-box;
	border: 2px solid #AAA;
	margin-top: 5px;
	margin-left: 0px;
	margin-bottom: 58px;
	-webkit-transition-duration: 0.2s;
	transition: 0.2s;
}

input[type="checkbox"]:hover {
	outline: 0 none;
	box-shadow: none;
	background-color: #444;
}

input[type="checkbox"]:focus {
	outline: 0 none;
}

label {
	width: 15px;
	height: 15px;
	background-color: rgba(0, 0, 0, 0);
	position: absolute;
	margin-top: 14px;
	margin-left: -26px;
	border: 0;
	border-radius: 100%;
	pointer-events: none;
	-webkit-transition-duration: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}

input[type="checkbox"]:checked + label {
	width: 15px;
	height: 7px;
	top: 320px;
	content: '';
	margin-top: 13px;
	margin-left: -29px;
	background: rgba(0, 0, 0, 0);
	border: 5px solid #AAA;
	border-radius: 0;
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
	-webkit-transition-duration: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s;
	border-top: none;
	border-right: none;
}

#screen1 #container form input[type="submit"] {
	margin-right: 100px;
	margin-top: 150px;
	float: right;
	background-color: #AAA;
	color: #222;
	height: 50px;
	width: 200px;
	text-align: center;
	border: none;
	-webkit-transition-duration: all 0.1s ease-in-out;
	-moz-transition: all 0.1s ease-in-out;
	-o-transition: all 0.1s ease-in-out;
	transition: all 0.1s ease-in-out;
}

#screen1 #container form input[type="submit"]:hover {
	width: 220px;
	height: 56px;
	margin-top: 147px;
	margin-bottom: -3px;
	margin-right: 90px;
	background-color: rgba(231, 76, 60, 1.0);
	color: #222;
	border: none;
	-webkit-transition-duration: all 0.1s ease-in-out;
	-moz-transition: all 0.1s ease-in-out;
	-o-transition: all 0.1s ease-in-out;
	transition: all 0.1s ease-in-out;
}

.g-recaptcha {
	position: relative;
	top: 830px;
	left: 70px;
}