@charset "utf-8";
/* CSS Document */

/* Global Styles */

* {
	margin: 0;
	padding: 0;
	border: none;
	outline: none;
}

html {
	height: 100%;
}

header, nav, main, footer {
	display: block; /* IE Compatibility*/
}

a, a:visited {
	text-decoration: none;
	color: black;
}

a:hover {
	color: #AAAAAA;	
}

/* BODY */

body {
	background: #99b8dd url(media/bgpattern.png);
	padding: 50px;
	font-family: 'Open Sans', Helvetica, sans-serif;
}

#bodyDiv {
	display: block;
	margin: 0 auto;
	width: 1000px;
	max-width: 100%;
	background: white;
	border-radius: 8px;
	-webkit-box-shadow: 0px 0px 40px 10px rgba(0,0,0,0.5);
	-moz-box-shadow: 0px 0px 40px 10px rgba(0,0,0,0.5);
	box-shadow: 0px 0px 40px 10px rgba(0,0,0,0.5);
}

/* Header Styles */

header {
	padding: 2em;
	text-align: center;
}

 #logoDiv {
	 margin-left: -3em;
 }

#logo {
	display: inline-block;
	vertical-align: middle;
	width: 175px;
	height: auto;
}

#logoText {
	display: inline-block;
	vertical-align: middle;
	margin-left: 3%;
	font-family: "Times New Roman", Times, serif;
	text-align: center;
}

#lt1 {
	display: block;
	font-size: 2.3em;
	margin-bottom: 0.2em;
}

#lt1 span {
	font-size: 0.7em;
}

#lt2 {
	display: block;
	font-size: 1.5em;
}

hr {
	height: 5px;
	color: #262A2D;
	background: #262A2D;
}

/* CONTACT INFO */
#contact {
	display: flex;
	text-align: center;
	padding: 1em 2em;
	background: #262A2D;
	color: white;
	font-size: 15px;
	font-weight: bold;
}

#contact span {
	display: inline-block;
	flex: 1;
}

#contact span a {
	color: white;
}

#contact span a:hover, #contact span a:hover,visited {
	color: #789ECD;
}


/* SITE MESSAGE */
#site-msg {
	display: flex;
	justify-content: center;
	text-align: center;
	padding: 0.8em 1.8em;
	background: white;
	color: red;
	font-size: 14px;
	font-weight: bold;
}
	

/* BANNER */
#banner {
	display: block;
	margin: 0 auto;
	width: 100%;
	max-width: 1200px;
	height: 300px;
	background-color: #AAAAAA;
	background-image: url('images/banner.jpg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}


/* BLURB */
#blurb {
	display: flex;
	justify-content: center;
	text-align: center;
	padding: 1.5em 2em;
	background: #262A2D;
	color: #99b8dd;
	font-size: 22px;
}

/* CONTENT */

main {
	padding: 2em;
	text-align: center;
	background: white;
}

/* DIFFERENTIATORS */
#differs {
	display: flex;
	justify-content: center;
}

figure {
	display: inline-block;
	margin: 0 3.25%;
	flex: 1;	
}

figcaption {
	font-size: 22px;
	margin-bottom: 5px;
}


/* PRICING SECTION */

#pricing-title {
	font-size: 22px;
	font-weight: normal;
	text-transform: uppercase;
	margin: 15px auto;
	text-align: center;
	color: #789ECD;
}


/* Footer Styles */

footer {
	display: flex;
	justify-content: center;
	padding: 1em;
	background: #262A2D;
	color: white;
	font-size: 0.7em;
}


/* Change color of highlighted text */
::selection {
	color: white;
 	background: #789eCD;
}



/* RESPONSIVE STYLES */

@media only screen and (max-width: 1050px) {
	
	body {
		padding: 0;
	}
	
	#bodyDiv {
		border-radius: 0;
	}
	
	#logoDiv {
		margin: 0;
	}

	#contact {
		/*flex-direction: column;*/
		display: block;
	}
	
	#contact span {
		display: block;
		margin: 0.5em auto;
	}

}

@media only screen and (max-width: 780px) {
	
	#contact {
		font-size: 12px;
	}
	
	#banner {
		height: 200px;
		background-size: 125% auto;
		background-position: center 65%;
	}
	
}

@media only screen and (max-width: 640px) {
	
	
	#contact span {
		margin: 0.5em 0;
	}
	
	#banner {
		height: 200px;
		background-size: 165% auto;
	}
	
	
	#blurb {
		font-size: 18px;
		padding: 1em 2em;
	}
	
	#differs, #pricing-container {
		flex-direction: column;
	}
	
	#pricing-container > div {
		margin-top: 15px;
		-webkit-box-shadow: inset 0 2px 1px -1px #AAAAAA;
		-moz-box-shadow: inset 0 2px 1px -1px #AAAAAA;
		box-shadow: inset 0 2px 1px -1px #AAAAAA;
	}
	
	figure {
		margin: 1em 3.25%;
	}
	
}

@media only screen and (max-width: 480px) {
	
	header {
		padding: 2em 1em 1em 1em;
	}
	
	#lt1 {
		font-size: 2em;
	}

	#lt1 span {
		font-size: 0.5em;
	}

	#lt2 {
		display: block;
		font-size: 1.1em;
	}

	#contact {
		font-size: 15px;
	}
	
	#contact span {
		margin: 0.3em 0;
	}
	
	#banner {
		height: 150px;
		background-size: 200% auto;
	}
	
	#blurb {
		padding: 1em;
	}
	
}


/* Brand Colors

Main Blue: #789eCD
Dark Blue: #4b637F
Light Blue: #9cc9FF

Light Gray: #AAAAAA
Dark Gray: #262A2D

*/


/* END CSS */