/****************************** Reset **************************************/

	html, body, div, span, applet, object, iframe, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
		margin: 0;
		padding: 0;
		border: 0;
		font: inherit;
		vertical-align: baseline;
	}

	article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
		display: block;
	}

	ul {
		list-style: none;
	}

	table {
		border-collapse: collapse;
		border-spacing: 0;
	}

	body {
		-webkit-text-size-adjust: none;
		-moz-text-size-adjust: none;
		-ms-text-size-adjust: none;
	}
/***************************** End Reset **************************************/


body, html {
	background: #ffffff; /*#222833;*/
	color: #555;
	font-family: Verdana, sans-serif;
	font-size: 15px;
	font-weight: 300;
	text-align: left;
	margin:0;
	padding:0;
	height: 100%; /* height and width needed for google map */
	width: 100%;
}
html{
	overflow-x:hidden;
}
.container {
	display: block;
	/*overflow: auto; causes scroll bars on small screens */
	clear: both;
}
.flexbox {
	display: flex;
	justify-content: center;
	margin: 0 auto;
	padding: 3% 0 5% 0;
}

.flex-item-3 {
	max-width: 280px;
	border: 1px solid #ccc;
	/*flex: 1;*/
	flex-grow: 1;
	flex-basis: 0;
	flex-shrink: 1;
	padding: 15px;
	margin: 10px;
	-webkit-border-radius: 15px;
	-moz-border-radius: 15px;
	-o-border-radius: 15px;
	-ms-border-radius: 15px;
	-khtml-border-radius: 15px;
	border-radius: 15px;
}

@media screen and (max-width: 730px) {
    .flexbox {
		flex-direction: column;
    }
	.flex-item-3 {
		width: 300px;
		margin: 10px auto;
	}
}
.nav {
	color: #fff !important;
	background-color: #1b354b !important;
	padding: 0 5% 0 5%;
	overflow: auto;
}
.nav-item {
	float: left;
    width: auto;
    border: none;
    display: block;
    outline: 0;
	white-space: normal;
	padding: 12px 24px!important;
	vertical-align: middle;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    background-color: inherit;
    text-align: center;
    cursor: pointer;
	transition: all 0.3s linear 0s;
}
.nav-item:hover {
	color:#333;
	background: #eee;
}
@media screen and (max-width: 600px) {
    .nav-item {
		padding: 12px!important;
		font-size: 0.9em;
	}
}
.nav_image {
	float: right;
}
.content_wrapper {
	max-width: 1000px;
	margin: 0 auto;
}
.content_flex_wrapper {
	max-width: 1000px;
	/*margin: 0 auto;*/
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
.footer-pre {
	color: #ddd;
	background-color: #49576f;
	padding: 2% 5%;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}
.footer-pre p {
	padding: 10px 15px;
}
.footer-pre a {
	color: #ddd;
	text-decoration: none;
}
.footer {
	color: #ccc;
	background-color: #2f3847;
	padding: 2% 5%;
	font-size: 0.9em
}
.center {
	text-align: center;
}
.left {
	text-align: left;
}
.right {
	text-align: right;
}
.gray {
	background: #eee;
}
.white {
	background: #fff;
}
.padded {
	width: 94%;
	padding: 3%;
}
.reduced-bottom-padding {
	width: 94%;
	padding: 3% 3% 0 3%;
}
.reduced-top-margin{
	margin-top: 0;
}
.reduced-bottom-margin{
	margin-bottom: 7px;
}
. {
	margin-bottom: 40px;
}
ul {
	margin-top: 20px;
}
li {
	text-align: left;
	padding: 0 0 10px 0;
}
p {
	line-height: 1.65em;
	margin: 1em auto;
}
.nav a {
	text-decoration: none;
	color: #eee;
}
.button a {
	text-decoration: none;
	color: #111;
}
h1, h2 {
	color: #666;
	text-align: center;
}
h2 {
	padding-top: 10px;
	margin-bottom: 2em;
}
h4 {
	margin-top: 2em;
}

#map {
	max-width: 980px;
	height: 50vh;
	width: 90%;
	border: 1px solid #bbb;
	margin: 0 auto;
	-webkit-border-radius: 15px;
	-moz-border-radius: 15px;
	-o-border-radius: 15px;
	-ms-border-radius: 15px;
	-khtml-border-radius: 15px;
	border-radius: 15px;
}

.icon {
	width: 30px;
	height: 30px;
	opacity: 0.5;
}

/****************************************** button ****************/
.button_wrapper { /* used for centering the button */
	display: flex;
	justify-content: center;
	align-items: center;
}

.button {
    background: #bbb;
    color: #111;
    font-size: 1.2em;
	-webkit-border-radius: 28;
	-moz-border-radius: 28;
	border-radius: 28px;
	border: 0;
	padding: 12px 30px 12px 30px;
    transition: all 0.3s linear 0s;
	text-decoration: none;
	display: inline-block;
	vertical-align: middle;
    overflow: hidden;
    white-space: nowrap;
}
.button:hover {
	background: #5dc4c3;
	color: #000;
}

/* Key Frames */
@-webkit-keyframes fade-in { from { opacity:0; } to { opacity:1; } }
@-moz-keyframes fade-in { from { opacity:0; } to { opacity:1; } }
@-o-keyframes fade-in { from { opacity:0; } to { opacity:1; } }
@keyframes fade-in { from { opacity:0; } to { opacity:1; } }

/*** From / to not working on mobile. 0% / 100% works ***/
@-webkit-keyframes scale-width-up {
    0% {-webkit-transform: scaleX(0);}
    100% {-webkit-transform: scaleX(1);}
}
/*@-webkit-keyframes scale-width-up {from {transform: scaleX(0);} to {transform: scaleX(1);} }*/
@-moz-keyframes scale-width-up {from {transform: scaleX(0);} to {transform: scaleX(1);} }
@-o-keyframes scale-width-up {from {transform: scaleX(0);} to {transform: scaleX(1);} }
@keyframes scale-width-up {from {transform: scaleX(0);} to {transform: scaleX(1);} }


.blue {color: #434d74;}
.aqua {color: #69c5c4;}

.provider-image {
	/*margin: 1.2em 0 0 0;*/
	/*margin: 0 auto;*/
	padding: 5px;
	background: #ccc;
}

.bio_img_wrapper {
	/*margin: 0 auto;*/
	padding: 40px 10px 0 40px;
	width: 240px;
	
}
.bio_content_wrapper {
	/*max-width: 800px;*/
	padding: 40px 40px 0 40px;
	width: 500px;
}
.caption {
	width: 270px;
	/*color: #fff;*/
	background: #ccc;
	text-align: center;
	padding: 0 0 10px 0;
	margin: -5px auto 20px auto;
	font-size: 0.8em;
}
.bio_title {
	width: 100%;
	/*color: #fff;*/
	/*background: #1b354b;*/
	border-bottom: 1px solid #bbb;
	font-size: 1.5em;
}
.bio_content_wrapper h3 {
	padding: 0 0 2% 0;
	margin: 0 0 30px 0;
}

.flex-container-hero {
	display: flex;
	justify-content: space-around;
	align-items: center;
	width: 100%;
	
}
.flex-item-hero-image {
	max-width: 400px;
	min-width: 300px;
}
.flex-item-hero-logo {
	max-width: 400px;
	padding: 20px;
}

@media screen and (max-width: 1650px) {
    .hero-image-outer {
		display: none;
	}
	.flex-container-hero {
		justify-content: space-between;
	}
}
@media screen and (max-width: 1100px) {
    .hero-image-inner {
		display: none;
	}
	.flex-container-hero {
		justify-content: center;
	}
}
.banner-image-container {
	min-width: 100%;
	padding: 0;
	margin: 0;
	overflow: auto;
}

.banner-image-container3 {
	background-color: #333333;
}

.banner-image {
	float: left;
	max-width: 100%;
}
.footer2 {
	display: flex;
	justify-content: space-between;
	text-align: center;
	position: relative;
	top: 0;
	left: 0;
	background: #333;
}
.footer-text {
	/*position: absolute;*/
	/*bottom: 0;*/
	line-height: 40px;
	padding: 0;
	/*background-color:rgba(0, 0, 0, 0.8);*/
	background-color: #1f252f; /*#1b354b;*/
	width: 100%;
	z-index: 10;
	color: #999;
	text-shadow: 0px 0px 7px #000000;
	font-size: 0.8em;
}

@media screen and (max-width: 1910px) { /* 1 2 3 4 5 6 7 8 */
    .footer-image9 {
		display: none;
	}
	.footer-image1, .footer-image3, .footer-image5, .footer-image7 {
		width: 16.67%;
	}
	.footer-image2, .footer-image4, .footer-image6, .footer-image8 {
		width: 8.33%;
	}
}
@media screen and (max-width: 1610px) { /* 1 2 3 4 5 6 7 */
    .footer-image8 {
		display: none;
	}
	.footer-image1, .footer-image3, .footer-image5, .footer-image7 {
		width: 18.18%;
	}
	.footer-image2, .footer-image4, .footer-image6 {
		width: 9.09%;
	}
}
@media screen and (max-width: 1510px) { /* 1 2 3 4 5 6 */
    .footer-image7 {
		display: none;
	}
	.footer-image1, .footer-image3, .footer-image5 {
		width: 22.22%;
	}
	.footer-image2, .footer-image4, .footer-image6 {
		width: 11.11%;
	}
}
@media screen and (max-width: 1210px) { /* 1 2 3 4 5 */
    .footer-image6 {
		display: none;
	}
	.footer-image1, .footer-image3, .footer-image5 {
		width: 25%;
	}
	.footer-image2, .footer-image4 {
		width: 12.5%;
	}
}
@media screen and (max-width: 1110px) { /* 1 3 5 */
    .footer-image2, .footer-image4 {
		display: none;
	}
	.footer-image1, .footer-image3, .footer-image5 {
		width: 33.33%;
	}
}
@media screen and (max-width: 910px) { /* 1 2 3 */
    .footer-image1, .footer-image3 {
		display: block;
		width: 40%;
	}
	.footer-image2 {
		display: block;
		width: 20%;
	}
	.footer-image4, .footer-image5, .footer-image6, .footer-image7, .footer-image9 {
		display: none;
	}
}
@media screen and (max-width: 710px) { /* 1 3 */
    .footer-image2, .footer-image4, .footer-image5, .footer-image6, .footer-image7, .footer-image9 {
		display: none;
	}
	.footer-image1, .footer-image3 {
		display: block;
		width: 50%;
	}
}
@media screen and (max-width: 610px) { /* 1 2 4 */
	.footer-image3, .footer-image4, .footer-image5, .footer-image6, .footer-image7, .footer-image9 {
		display: none;
	}
    .footer-image1 {
		display: block;
		width: 50%;
		order: 2;
	}
	 .footer-image2, .footer-image4 {
		 display: block;
		 width: 25%;
	 }
	 .footer-image2 {
		 order: 1;
	 }
	 .footer-image4 {
		 order: 3;
	 }
}
@media screen and (max-width: 510px) { /* 2 4 6 8 */
    .footer-image1, .footer-image3, .footer-image5, .footer-image7, .footer-image9 {
		display: none;
	}
	.footer-image2, .footer-image4, .footer-image6, .footer-image8 {
		display: block;
		width: 25%;
	}
}
@media screen and (max-width: 410px) { /* 1 */
    .footer-image2, .footer-image3, .footer-image4, .footer-image5, .footer-image6, .footer-image7, .footer-image8, .footer-image9 {
		display: none;
	}
	.footer-image1 {
		display: block;
	}
	.footer2 img {
		width: 100%;
	}
}
@media screen and (max-width: 310px) { /* 2 4 */
    .footer-image1, .footer-image3, .footer-image5, .footer-image6, .footer-image7, .footer-image8, .footer-image9 {
		display: none;
	}
	.footer-image2, .footer-image4 {
		display: block;
		width: 50%;
	}
}

ol {
	margin: 20px;
}
strong {
	font-weight: 900;
}

.flexbox_footer {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
	background-color: #49576f;
	color: #eee;
	padding: 20px 0 20px 0;
}
.flexbox_footer_child {
	min-width: 200px;
	/*border: 1px solid #aaa;*/
}
.flexbox_footer_child a {
	color: #fff;
	text-decoration: none;
}
.flexbox_footer_child p {
	line-height: 1em;
}
.footer_icon {
	position: relative;
	padding-right: 10px;
	top: 4px;
	/*background: #bbb;
	border-radius: 10px;*/
}