/*Styles mostly follow DOM structure*/

body, .button {
	font-family: 'Open Sans', Arial, sans-serif;
	font-size: 16px;
	margin: 0;
	padding: 0;
}
p, q, h2, h3 {
	color: #447573;
}
h2 {
	margin-top: 1em;
}
.button {
		color: #FFF;
		background-color: #03ADAD;
		border: none;
		border-radius: 3px;
		text-decoration: none;
		padding: 0 .4em;
	}
.button.reverse {
		background-color: #E1A955;
	}
/********
header
*********/
	.logo {
		width: 170px;
		float: left;
		padding: 16px 0;
	}
		.logo img {
			width: 100%;
		}
		.site-info-group {
			float: right;
			position:relative;
			top: 30px;
	}
		.site-info-group .button,
		.site-info-group p {
			display: inline-block;
			margin-left: 40px;
		}
		.site-info-group .button {
			padding: 2px 8px;
		}
			header p {
				font-weight: 600;
			}
/********
banner
**********/
.banner {
	background: 
			url('../img/city-illustration.png') bottom center no-repeat,
			url('../img/grit.png') #03ADAD repeat;
	clear: both;
	overflow: hidden;
	margin-bottom: 1.6em;
}
	h1 {
		color: #FFF;
		font-size: 3em;
		margin: .5em 0 20px 0;
	}
		h1 span {
			font-size: .4em;
		}
	.banner .button, .supersize .button {
		font-size: 1.5em;
		padding: 4px 16px 8px 16px;
		display: inline-block;
		margin-bottom: 90px;
	}
	.supersize .button {
		font-size: 2.25em;
		font-weight: 700;
		display: block;
		margin: 0 auto 16px auto;
		text-align: center;
		}
	.banner p, .supersize p {
		color: #FFF;
		font-size: 1.5em;
	}
	.banner p {
		position: relative;
		top: .6em;
		right: 1.5em;
	}
		
/**********
main content
***********/

#local:before, 
#experienced:before, 
#tier-1:before, 
#uptime:before, 
#safety-backup:before, 
#twentyfour-7:before, 
#tech-support:before, 
#mobile-apps:before {
	content: '';
	display: inline-block;
	width: 28px;
	height: 22px;
	margin-right: .45em;
}

#local:before {
	background: url('../img/local-oregon.png') no-repeat;
	}
#experienced:before {
	background: url('../img/fifteenplus.png') no-repeat;
}
#tier-1:before {
	background: url('../img/bolt.png') no-repeat;
}
#uptime:before {
	background: url('../img/uptime.png') no-repeat;
}
#safety-backup:before {
	background: url('../img/keyplus.png') no-repeat;
}
#twentyfour-7:before {
	background: url('../img/vip.png') no-repeat;
}
#tech-support:before {
	background: url('../img/happyface.png') no-repeat;
}
#mobile-apps:before {
	background: url('../img/mobile-landscape.png') no-repeat;
}

.supersize p {
	font-size: 2.25em;
	font-weight: 700;
	color: #fff;
	margin-bottom: 16px;
	text-align: center;
}
.quote-wrap {
		display: block;
		padding: 1em 3em 0 1em;
		box-sizing: border-box;
	}
		.quote-wrap h2, q {
			padding: 1em 0;
			color: #fff;
		}
		.quote-wrap q {
			font-size: 1.5em;
		}
		.quote-wrap img {
			opacity: .8;
			margin-top: 1em;
		}

footer {
	background: -webkit-linear-gradient(-90deg,  #03ADAD 10%, #447573);
	background: -moz-linear-gradient(-90deg,  #03ADAD 10%, #447573);
	background: -o-linear-gradient(-90deg,  #03ADAD 10%, #447573);
	background: -ms-linear-gradient(-90deg,  #03ADAD 10%, #447573);
	background: linear-gradient(to bottom,  #03ADAD 10%, #447573);
	clear: both;
	overflow: hidden;
}
/**************************
added media queries
*************************/

@media all and (max-width: 660px) {
	.logo {
		float: none;
		margin: 0 auto;
	}
	h1 {
		font-size: 36px;
		text-align: center;
	}
	.site-info-group {
		float: none;
		position: static;
		text-align: center;
	}
		.site-info-group p, .site-info-group a {
			margin: 0;
			margin-bottom: 1em;
		}
		.site-info-group span {
			display: none;
		}
	.banner .button {
		display: block;
		width: 150px;
		text-align: center;
		margin: 0 auto 1em auto;
	}
	
}

@media screen and (max-width: 768px) {
	p, h2 {
		padding: 0 1em;
	}
	.banner {
		background: #03ADAD;
	}
		.banner p {
		display: none;
		}
		.banner .button {
		margin-bottom: 20px;
		}
	#some_clients {
		padding-left: 16px;
	}
	.supersize .button {
		width: 250px;
	}
	.quote-wrap {
		display: block;
		padding: 1em 1em;
		box-sizing: border-box;
	}
}

@media screen and (max-width: 1255px) {
	.site-info-group {
		margin-right: 20px;
	}


/*color swatches******
Kattare blue-green: #03ADAD;
Kattare dark-blue-green: #447573;
*/