/*-----Prevents iPhone from resizing in landscape mode -----*/
html {
	-webkit-text-size-adjust: none;
}

/*----------- apply a natural box layout model to all elements --------------*/
* { -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box; }

/*-----BODY -----*/
body {
	font-size: 16px;
}


/*-----CONTAINER -----*/
#container {
	background-color: #fff;   /*becomes the nav background color*/
	min-width: 320px;
	max-width: 1140px;
	box-shadow: 4px 4px 20px #222222;
}

/*-----HEADER -----*/
header {
	display: flex;
	align-items: center;
	border-bottom: 3px solid #FF9257;
}
header img {
	width: 35%;
	margin-right: 2%;
}
header h1 {
	font-size: 32px;
	color: #17C9FF;
}
header h2 {
	font-size: 24px;
	color: #4B5E99;
}



/*-----NAVigation -----*/
nav {}
nav ul li {}
nav ul li a {
	display: block;
	background: #4B5E99;
	width: 100%;
	border-radius: 10px;
	margin: 10px 0;
	text-align: center;
	padding: 10px;
	color: white;
	text-decoration: none;
	font-size: 28px;
}

nav ul li.phone a {
		background-color:#274FCC;
}




/*-----CONTENT -----*/
#content {
	min-height: 5em;
}

#content .banner {
	width: 100%;
}

#content img {
	width: 100%;
	display: block;
}

#content h1 {
	font-size: 22px;
	color: #4B5E99;
	margin: 20px 0 0;
}

#content h1.tablet, h1.desktop {
	display: none;
}

#content p {
	font-size: 18px;
}

#content .content-boxes{
	clear: both;
}

#content .news h2, .tweets h2 {
	background-color: #4B5E99;
	color: white;
	padding: 10px;
	margin: 15px 0 5px;
}

#content .news p, .tweets p {
	background-color: gray;
	height: 300px;
	overflow: scroll;
}



/*----- FOOTER -----*/
footer {
	clear: both;
	text-align: center;
	padding: 1em;
}
