/* Reset */
* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	list-style-type: none;
	list-style: none;
}

/* 
	colors - triad based on 007fff
	
	primary: #007FFF;
	Primary Highlight Dark: #0059b6;
	Primary Highlight Darker: #00448b
	Prmary Highlight Light: #1085ff;
	Primary Highlight Lighter: 3a99fc;
	
	Call to Action: #ff5600;
	Call to Action light: #ff722a;
	Call to Action dark: #d54800;
	
	Tertiary color: #ffc500;
	Tertiary Light: #ffce2a;
	Tertiary Dark: D5a400;
*/


/* Utilities */
.u-accLabel {
	display: inline-block;
	height: 0;
	width: 0;
	border: 0 !important;
	box-shadow: none !important;
	text-indent: -9999em;
	overflow: hidden;
}
html {
	height: 100%;
}
body {
	height: 100%;
	font-size: 16px;
	font-family: arial;
}

/* header */
header {
	background-color: #3e67b1;
	padding: 0 10px;
	height: 55px;
	/*box-shadow: 0px 4px 5px 0px #00448b;*/
	display: flex;
	flex-flow: row nowrap;
	justify-content: space-between;
	align-items: flex-end;
}
header .contactSection {
	align-self: center;
	width: 200px;
	display: flex;
	align-items: center;
}
header .button {
	padding-left: 15px;
	padding-right: 15px;
}
header .button:after {
	display: none;
}
#facebookButton img {
	margin-top: 3px;
}
header .header-logo,
header .header-logo:hover{
	text-decoration: none;
}
header .header-logoImage {
	height: 45px;
}
header .header-tagLine {
	color: white;
	font-family: Arial;
	font-weight: 200;
	font-size: 1.2rem;
	font-style: italic;
	margin-bottom: 2px;
}

header .contactButton img {
	height: 45px;
	width: auto;
}

.contactNumber {
	color: #fff;
	display: block;
	width: 100%;
	text-align: right;
	font-size: 0.8rem;
	margin-bottom: 9px;
}
/* navigation */
navigation {
	height: 100%;
}
.navigation-list {
	height: 100%;
	display: flex;
	flex-flow: row nowrap;
	align-items: stretch;
}
.navigation-link {
	display: block;
	background-color: #0059b6;
	height: 100%;
	line-height: 55px;
	padding: 0 20px;
	text-decoration: none;
	color: white;
	border-left: 1px solid #007fff;
	box-shadow: inset 2px 0px 20px 0px rgba(0,0,0,0.3);
}
.navigation-item:first-child .navigation-link {
	border-left-width: 0px;
}
.navigation-link:hover,
.navigation-link:focus {
	background-color: #00448b;
}
/* Content */
#Content {
	height: calc(100% - 55px);
	width: 100%;
	overflow: hidden;
}

.Background {
	position: absolute;
	top: 0;
	z-index:-1;
	height: 100%;
	overflow: hidden;
	width: 100%;
}
.Content-item img {
	position: relative;
	width: 100%;
	height: auto;
	top: 50%;
	transform: translateY(-50%);
}

.Content-item {
	height: 100%;
	width: 100%;
	position: relative;
}

.Content-itemContent {
	color: white;
	background-color: rgba(0,0,0,0.5);
	top: 30px;
	position: relative;
	min-height: calc(100% - 60px);
	padding: 10px;
}

.Content-itemContent div {
	line-height: 1.4rem;
	position: absolute;
	top: 50%;
	right: 15%;
	width: 30%;
	min-width: 436px;
	padding: 30px;
	background-color: rgba(0,0,0,0.9);
	border-radius:10px;
	transform: translateY(-50%);
	max-height: calc(100% + 60px);
	overflow: auto;
}

.Content-item h1 {
	font-size: 2rem;
	line-height: 2rem;
	margin-bottom: 30px;
	color: #ff5600;
}

.Content-item a {
	display: block;
	margin-top: 10px;
}


p + p {
	margin-top: 20px;
}

#StartHere {
	margin-top: 20px;
}

/* Buttons */
p + button,
p + .button {
	margin-top: 30px;
}


button,
.button {
	display: inline-block;
	background-color: #007FFF;
	color: white;
	text-transform: uppercase;
	font-weight: bold;
	padding: 5px;
	font-size: 1.1rem;
	line-height: 1.4rem;
	border: 1px solid #00448b;
	text-decoration: none;
	text-align: center;
	position: relative;
}
button:hover,
.button:hover {
	background-color: #d54800;
	box-shadow: inset 0px 0px 8px 1px rgba(0,0,0,0.3);
	border-color: #ff5600;
}
button.active,
.button.active {
	background-color: #d54800;
	border-color: #ff5600;
	box-shadow: inset 0px 0px 8px 1px rgba(0,0,0,0.3);
}
button.active:hover,
.button.active:hover {
	cursor: default;
}
button.active:after,
.button.active:after {
	content: '';
	display: none;
}


button:after,
.button:after {
	content: '';
	width: 0;
	height: 0;
	border-top: 6px solid transparent;
	border-bottom: 6px solid transparent;
	border-left: 6px solid white;
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
}

/*Forms*/
label, input, textarea {
	display: block;
}
label + label {
	margin-top: 20px;
}
input, textarea {
	box-sizing: border-box;
	width: 100%;
	min-height: 35px;
	color: #222;
	border: 2px solid #ccc;
	padding: 5px;
}

textarea {
	min-height: 140px;
}

input:focus,
textarea:focus {
	border: 2px solid #ff5600;
	outline: none;
}
.contacted {
	visibility: hidden;
}
.sent .contacted {
	visibility: visible;
}
.sent form {
	display: none;
}
form button:after {
	display: none;
}
form button:hover {
	cursor: pointer;
}

@media only screen and (max-width: 850px) {
    .headerExtra {
    	display: none;
    }
}

@media only screen and (max-width: 600px) {
	.Content-itemContent {
		top: 0;
	}
    .Content-itemContent div {
    	min-width: auto;
    	width: 100%;
    	position: relative;
    	transform: translateY(0);
    	right: 0;
    	max-height: auto;
    }
    
    .Content-itemContent div h1 {
    	color: #ff5600;
    }
    
    #Content {
    	height: auto;
    	overflow: auto;
    }
    
    .Background {
    	display: none;
    }
    
    button:after,
	.button:after {
		display: none;
	}
	
	.no-mobile {
		display: none !important;
	}
}

@media only screen and (max-width: 400px) {
	header .button {
		width: auto;
		font-size: 0.9rem;
		height: 55px;
		line-height: 50px;
		float: right;
		margin-right:-10px;
	}
}