@font-face {
	font-family: "GothamProRegular";
	src: url("../fonts/GothamProRegular/GothamProRegular.eot");
	src: url("../fonts/GothamProRegular/GothamProRegular.eot?#iefix")format("embedded-opentype"),
	url("../fonts/GothamProRegular/GothamProRegular.woff") format("woff"),
	url("../fonts/GothamProRegular/GothamProRegular.ttf") format("truetype");
	font-style: normal;
	font-weight: normal;
}

@font-face {
	font-family: "GothamProBold";
	src: url("../fonts/GothamProBold/GothamProBold.eot");
	src: url("../fonts/GothamProBold/GothamProBold.eot?#iefix")format("embedded-opentype"),
	url("../fonts/GothamProBold/GothamProBold.woff") format("woff"),
	url("../fonts/GothamProBold/GothamProBold.ttf") format("truetype");
	font-style: normal;
	font-weight: normal;
}

html {
	font-family: "GothamProRegular";
	font-size: 15px;
	margin: 0;
}

body {
	margin: 0;
	padding: 0;
	color: rgb(68, 68, 68);
}

a {
	color: #1bbff5;
	opacity: .95;
	text-decoration: none;
	transition: opacity 0.1s;
	-moz-transition: opacity 0.1s;
	-webkit-transition: opacity 0.1s;
	-o-transition: opacity 0.1s;
}

a:hover {
	text-decoration: underline;
}

.wrapper {
	width: 100%;
	flex-wrap: nowrap;
	justify-content: center;
}

.wrapper .content {
	max-width: 1000px;
	margin: 0 auto;
	padding-left: 50px;
	padding-right: 50px;
}

.header	{
	background-color: #eee;
	padding: 30px 0 35px 0;
}

.header h1 {
	margin: 0;
	width:175px;
	height:18px;

	text-indent: -9999px;
	background: url("../logo-fixed.svg") no-repeat;
}

.footer	{
	padding: 30px 0 35px 0;
	color: #ccc;
}

.page h2 {
	font-family: "GothamProBold";
	font-size: 25px;
}

form {
	margin: 20px 0 25px 0;
}

form .field {
	margin: 10px 0 15px 0;
}

form .field .help {
	font-size: 14px;
	margin: 5px 0 5px 0;
	color: #ccc;
}


form .field .error {
	margin: 5px 0 5px 0;
	color: red;
}

form .submit {
	margin: 20px 0 30px 0;
}

form label {
	font-size: 20px;
	display: block;
	margin: 5px 0 5px 0;
}

form input {
	padding: 12px;
	font-size: 20px;
	width: 60%;
	border: 3px solid #eee;
	border-radius: 7px;
	outline: none;
}

form input:focus {
	background-color: #fffaed;
	border-color: #ccc;
}

form input[type="checkbox"] {
	width: inherit;
}

form .field.checkbox label {
	display: inline-block;
	width: inherit;
}

form input[type="submit"] {
	padding: 0;
	border: none;
	cursor: pointer;
	font-family: 'Gotham Pro', sans-serif;
	color: #FFFFFF;
	font-size: 24px;
	font-weight: 600;
	line-height: 48px;
	letter-spacing: 1.5px;
	-webkit-transition: .3s ease;
	-o-transition: .3s ease;
	transition: .3s ease;
	width: 292px;
	height: 68px;
	border-radius: 12px;
	background-color: transparent;
	border: 2px solid white;
	background: #35c3f6;
	border: 2px solid #35c3f6;
}

form input[type="submit"]:hover  {
	background: #005aa0;
	border: 2px solid #0d79cd;
}

form .field.required label:after { 
	content:" *"; 
	color: red;
}

.hidden {
	display: none;
}












