/*! HTML5 Boilerplate v5.0 | MIT License | http://h5bp.com/ */

html {
	color: #222;
	font-size: 1em;
	line-height: 1.4;
}

::-moz-selection {
	background: #003059;
	text-shadow: none;
}

::selection {
	background: #003059;
	text-shadow: none;
}

hr {
	display: block;
	height: 1px;
	border: 0;
	border-top: 1px solid #ccc;
	margin: 1em 0;
	padding: 0;
}

audio,
canvas,
iframe,
img,
svg,
video {
	vertical-align: middle;
}

fieldset {
	border: 0;
	margin: 0;
	padding: 0;
}

textarea {
	resize: vertical;
}

/* ===== Initializr Styles ==================================================
   Author: Jonathan Verrecchia - verekia.com/initializr/responsive-template
   ========================================================================== */

body {
	font: 19px/25px "sofia-pro",sans-serif;
	font-weight: 300;
}

/* ==========================================================================
   Landing Page Styles
   ========================================================================== */

* {
	box-sizing: border-box;
}

html, body {
	height: 100%;
}

html {
	background-color: #004987;
	background-image: url('../img/background.png');
	background-position: 0px 0px;
	background-size: 100% auto;
	
	color: #ffffff;
}

body {
	display: table;
	width: 100%;
}

main, footer {
	display: table-row;
	height: 1px;
}

main {
	height: 100%;
}

main .container {
	padding-bottom: 90px;
}

.container {
	margin-left: auto;
	margin-right: auto;
	padding-left: 40px;
	padding-right: 40px;
	width: 100%;
	max-width: 700px;
}


header {
	padding: 15% 0;
	
	text-align: center;
}

header h1 {
	margin: 0;
}

footer {
	background-color: #003059;
	background-color: rgba(0,48,89,0.5);
	
	text-align: center;
}

footer .container {
	padding-top: 40px;
	padding-bottom: 40px;
}

img {
	max-width: 100%;
	height: auto;
}

form {
	
}
form .field {
	clear: both;
	margin: 30px 0;
}

form .field input, form .field textarea {
	display: block;
	border: 1px solid #ffffff;
	border-radius: 2px;
	padding: 10px;
	width: 100%;
	
	background-color: transparent;
	color: #ffffff;
	
	outline: none;
	box-shadow: none !important;
	
	transition-property: background-color, color;
	transition-duration: 0.33s;
	transition-timing-function: ease-in-out;
}
form .field input:active, form .field textarea:active,
form .field input:focus, form .field textarea:focus {
	background-color: #003059;
	background-color: rgba(0,48,89,0.5);
	color: #ffffff;
}

::-webkit-input-placeholder { color: #ffffff; opacity: 1; }
::-moz-input-placeholder { color: #ffffff; opacity: 1; }
:-ms-input-placeholder { color: #ffffff; opacity: 1; }
:-moz-placeholder { color: #ffffff; opacity: 1; }
::placeholder { color: #ffffff; opacity: 1; }

form .field.error input, form .field.error textarea {
	border-color: #f00;
}
.errText {
	font-size: smaller;
}

input[type=submit] {
	display: inline-block;
	border: 1px solid #ffffff;
	border-radius: 4px;
	padding: 9px 18px;
	min-width: 120px;
	
	background-color: #ffffff;
	color: #004987;
	font-weight: 400;
	text-align: center;
	
	transition-property: background-color, color;
	transition-duration: 0.33s;
	transition-timing-function: ease-in-out;
}
input[type=submit]:hover {
	background-color: #003059;
	background-color: rgba(0,48,89,0.5);
	color: #ffffff;
}

a {
	color: #ffffff;
}

address {
	font-style: normal;
	white-space: pre-line;
}

/* ==========================================================================
   Media Queries
   ========================================================================== */

@media only screen and (min-width: 480px) {

}

@media only screen and (min-width: 768px) {
	form .field.field-half {
		float: left;
		clear: none;
		
		margin-top: 0;
		padding-right: 1%;
		width: 50%;
	}
	form .field.field-half + .field-half {
		padding-left: 1%;
		padding-right: 0;
	}
}

@media only screen and (min-width: 1140px) {

}

/* ==========================================================================
   Helper classes
   ========================================================================== */

.hidden {
	display: none !important;
	visibility: hidden;
}

.visuallyhidden {
	border: 0;
	clip: rect(0 0 0 0);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
}

.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
	clip: auto;
	height: auto;
	margin: 0;
	overflow: visible;
	position: static;
	width: auto;
}

.invisible {
	visibility: hidden;
}

.clearfix:before,
.clearfix:after {
	content: " ";
	display: table;
}

.clearfix:after {
	clear: both;
}

.clearfix {
	*zoom: 1;
}

/* ==========================================================================
   Print styles
   ========================================================================== */

@media print {
	*,
	*:before,
	*:after {
		background: transparent !important;
		color: #000 !important;
		box-shadow: none !important;
		text-shadow: none !important;
	}

	a,
	a:visited {
		text-decoration: underline;
	}

	a[href]:after {
		content: " (" attr(href) ")";
	}

	abbr[title]:after {
		content: " (" attr(title) ")";
	}

	a[href^="#"]:after,
	a[href^="javascript:"]:after {
		content: "";
	}

	pre,
	blockquote {
		border: 1px solid #999;
		page-break-inside: avoid;
	}

	thead {
		display: table-header-group;
	}

	tr,
	img {
		page-break-inside: avoid;
	}

	img {
		max-width: 100% !important;
	}

	p,
	h2,
	h3 {
		orphans: 3;
		widows: 3;
	}

	h2,
	h3 {
		page-break-after: avoid;
	}
	
	form {
		display: none;
	}
}