//Basic Layout 2
.parent{
	display: inline-flex;
	flex-direction: column;
}
/*Start of NavBar Style*/
.navbar{
	overflow: hidden;
	background-color: #333;
	border: 1px black;
	position: fixed;
	top: 0;
	width: 100%;
	order: 1;
	height: 65px;
}
.navbar img{
	height: 55px;
	float: left;
	padding-left: 25px;
	vertical-align: middle;
}
.navbar a{
	float: right;
  	display: block;
  	color: #f2f2f2;
  	text-align: center;
  	padding: 14px;
  	text-decoration: none;
  	font-family: 'GCI Light';
  	font-size: 20px;
  	padding-right: 35px;
}
.navbar a:hover{
	color: #ffdb4d;
}
.here{
	color: #ffdb4d;
}
/*End of Navbar */
/*Start of Header*/
.header{
	margin-top: 60px;
	background-color: black;
	min-width: 100%;
	min-height: 400px;
	border: 1px solid black;
	display: inline-flex;
	order: 2;
	justify-content: space-between;
	align-content: center;
}
.header img{
	align-self: center;
	padding-left: 45px;
	width: 200px;
	order: 1;
}
.header_words{
	min-width: 100%;
	display: inline-block;
	flex-direction: column;
	order: 2;
	align-self: center;
}	
.header_words h1{
	color: white;
	text-align: right;
	order: 1;
	font-family: 'GCI Light';
	padding-right: 45px;
}
.header_words h2{
	color: white;
	order: 2;
	text-align: right;
	font-family: 'GCI Light';
	padding-right: 45px;
}
.header_words p{
	color: white;
	text-align: right;
	order: 3;
	font-family: 'GCI Light';
	padding-right: 45px;
}
.header_words h3{
	color: white;
	order: 4;
	text-align: center;
	font-family: 'GCI Light';
	font-style: italic;
	font-size: 30px;
	padding-top: 45px;
}
/*End of Header Sytle*/
/*Start of Body*/
/*Column Style Boxes*/
.body{
	margin-top: 35px;
	font-family: 'GCI Light';
	order: 3;
	display: inline-flex;
	flex-direction: column;
	justify-content: space-between;
	min-width: 100%;
}
.BoxA{
	min-width: 100%;
	border-bottom: 5px solid black;
	border-top: 5px solid black;
}
.BoxA h2{
	padding-right: 10%;
	padding-left: 10%;
}
.BoxA p{
	padding-right: 10%;
	padding-left: 10%;
	font-size: 20px;
}
.BoxB{
	width: 100%;
}
.BoxB h2{
	padding-right: 10%;
	padding-left: 10%;
}
.BoxB p{
	padding-right: 10%;
	padding-left: 10%;
	font-size: 20px;
}
/*End of Column Boxes*/
/*Start of Row Boxes*/
.body2{
	margin-top: 35px;
	font-family: 'GCI Light';
	display: inline-flex;
	flex-direction: row;
	justify-content: space-between;
	min-width: 100%;
	text-align: center;
}
.BoxC{
	min-width:700px;
	border-bottom: 5px solid black;
	border-top: 5px solid black;
}
.BoxD{
	min-width: 30%;
	border-bottom: 5px solid black;
	border-top: 5px solid black;
}
/*End of Body*/
/*Start of Footer*/
.footer{
	background-color: #333;
	display: inline-flex;
	min-width: 100%;
	min-height: 75px;
	flex-direction: row;
}
.footer img{
	height: 50px;
	order: 1;
	vertical-align: middle;
	padding-left: 25px;
	padding-top: 10px;
}
.footer p{
	font-family: 'GCI Light';
	color: white;
	vertical-align: bottom;
	text-align: right;
	float: right;
	order: 2;
	padding-left: 25px;
	padding-top: 15px;
}