
body {
	background-color: rgba(196, 196, 196, 0.3);
	font-family: "open sans"; sans-serif;
}

header {
	width: 100%;
	max-width: 1000px;
	margin: auto;
}
.topNav{
	display: flex;
	justify-content: space-between;
	background-color: #ffffff;
	padding: 3% 7%;
}

.menuButton {
	display: none;
	margin-top: 2.75em;
	
}

.buttonLine {
	width: 45px;
	background-color: #694477;
	border-radius: 4px;
	height: 7px;
	margin: .5em;
}

.logo{
	width: 45%;
	min-width: 150px;
}

.logo img {
	width: 100%;
	max-width: 211px;
	height: auto;
}

.navigation {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
}

.navigation a{
	text-decoration: none;
	color: #297988;
	font-family: Neucha, sans-serif;
}

.navItem {
	width: 6em;
	text-align: center;
	margin-bottom: 1em;
	font-size: 18px;
}

.mainContainer {
	width: 100%;
	max-width: 1000px;
	margin: auto;
}

.mainContainer {
	width: 100%;
	max-width: 1000px;
	margin: auto;
}

footer {
	width: 100%;
	max-width: 1000px;
	margin: -1.3em auto 0 auto;
	background-color: #686868;
	padding: 0 0 2em 0;
}

.footerSocial{
	display: flex;
	justify-content: center;
	height: auto;
}
.footerSocial img {
	width: 30%;
	max-width: 43px;
	height: auto;
	max-height: 43px;
	padding: 0 2%;
}

.footerContact {
	color: white;
	text-align: center;
	padding-top: 2em;
}



@media only screen and (max-width: 450px){
	.menuButton {
		display: block;
	}
	.littleNavWrapper{
		margin-right: 11%;
		width: 8em;
		//height: 1px;
		float: right;
	}
	.navigation {
		display: none;
		position: absolute;
		//margin: 110px 0 0 120px;
		background-color: #56497F;
		padding: 20px 30px 5px 5px;
		z-index: 1;
		color: white;
	}
	.navigation a {
		color: white;
	}
	.navItem {
		text-align: right;
	}
}

@media only screen and (min-width: 451px) and (max-width: 780px){
	.navigation {
		display: block;
	}
	.littleNavWrapper {
		display: none;
	}
}





