@import url('css/font-awesome.min.css');
@import url('css/site-fonts.css');

* {box-sizing: border-box;}
html { 
	/*background-image: linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35));*/
	background-color: #f4f4f4;
	font-family: "Roboto", Helvetica, Arial, sans-serif;
	font-size: 15px; 
	line-height: 1.5; 
	-ms-text-size-adjust: 100%; 
	-webkit-text-size-adjust: 100%; 
	height: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
	margin: 0; 
	text-align: center; 
	color: #666;
	display: flex;
	height: 100%;
	flex-direction: column;
}

h1, h2 { color: white; margin-bottom: 0; }

a { color: #00535E; text-decoration: none; }
a:hover { color: #003c45; text-decoration: underline; }

.wrap {
	width: 100%;
	max-width: 960px;
  margin: 0 auto;
  
}
.panel {
	padding: 20px 0;
  background-color: #fff;
  width: 100%;
}
.logos {
	text-align: center;
	margin:  0 -20px 20px;
	display: inline-flex;
	justify-content: center;
	flex-wrap: wrap;
	width: 100%;
}
.logo {
	padding: 0 20px 0;
	margin-bottom: 20px;
	width: 50%;
	border-right: 1px solid #ccc;
	display: flex;
	align-items: center;
	justify-content: center;
}
.logo--primary {
	width:  100%;
	border-right: 0;
}
.logo:last-of-type {
	border-right: 0;
}
.logo-image {
  max-width: 100%;
  height: auto;
}
.body-text {
	margin-bottom: 20px;
}
.areas__wrap {
	max-width: 600px;
	padding:  0;
}
.areas {
	text-align: left;
	margin:  20px 0 0;
	display: inline-flex;
	justify-content: center;
	flex-wrap: wrap;
	width: 100%;
}
.areas__column {
	padding: 0 20px;
	width: 100%;
}
.areas__list {
	list-style-type: none;
	padding-left: 0;
}
.areas__list img {
	margin-right: 10px;
}
.footer {
	font-size: 16px;
	text-align: center;
	padding: 15px 0;
}
@media screen and (min-width: 480px) {
	.areas__column {
		width: 50%;
	}
}
@media screen and (min-width: 600px) {
	body {
		justify-content: center;
		padding: 0 10px;
	}
	.panel {
	  padding: 40px 20px;
	}
	.logo,
	.logo--primary {
		width: calc(100% / 3);
	}
	.logo--primary {
		border-right: 1px solid #ccc;
	}
	.areas {
		text-align: left;
		margin:  20px -10px 0;
	}
	.areas__column {
		padding: 0 10px;
	}
}
@media screen and (min-width: 600px) {
	.areas__column {
		width: 33.3%;
	}
}