/*

https://kuler.adobe.com/create/color-wheel/?base=2&rule=Analogous&selected=4&name=My%20Kuler%20Theme&mode=rgb&rgbvalues=0.788235294117647,0.858006832497104,0.8941176470588236,0.615686274509804,0.7415748846423671,0.807843137254902,0.0392156862745098,0.42745098039215684,0.6352941176470588,0,0.31993968186198424,0.49411764705882355,0.01568627450980392,0.23529411764705882,0.3568627450980392&swatchOrder=0,1,2,3,4

#C9DBE4
#9DBDCE
#0A6DA2
#00527E
#043C5B

#C9DBE4,#9DBDCE,#0A6DA2,#00527E,#043C5B

light Blue: #C9DBE4
Grey Blue: #9DBDCE
Mid Blue: #0A6DA2
Mid Mid Blue: #00527E
Dark Blue: #043C5B
*/
html {
overflow: -moz-scrollbars-vertical; 
overflow-y: scroll;
}
html, body {height:100%;}
body {
    margin: 0px;
    font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
    font-size: 18px;
    line-height: 22px;
    color: rgb(51, 51, 51);
    background-color: rgb(255, 255, 255);
}

h1 { font-size: 1.9em; }
h2 { font-size: 1.2em; }

.logo {
	margin: 10px 0 10px 0;
	height: 60px;
	width: 300px;
	max-width: 100%;
}

.container
{
	position: relative;
	margin-left: auto;
	margin-right: auto;
	width: 1000px;
	max-width: 95%;
	padding: 0 2.5%;
	box-sizing: border-box;
}
.container a, .container a img {
	border: none;
}

header { 
	position: fixed; 
	top: 0px; 
	left: 0px; 
	right: 0px; 
	height: 80px; 
	background-color: #f7f7f9; 
	border-bottom: medium none rgb(224, 224, 224); 
	box-shadow: 0px 0px 5px rgb(136, 136, 136); 
	z-index: 100; clear: both; 
}

.header-container {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	box-sizing: border-box;
}

.logo-link {
	display: flex;
	align-items: center;
}

/* Hamburger Menu Button */
.hamburger {
	display: none;
	flex-direction: column;
	background: none;
	border: none;
	cursor: pointer;
	padding: 5px;
}

.hamburger span {
	width: 25px;
	height: 3px;
	background-color: rgb(51, 51, 51);
	margin: 5px 0;
	transition: all 0.3s ease;
	border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
	transform: rotate(45deg) translate(12px, 12px);
}

.hamburger.active span:nth-child(2) {
	opacity: 0;
}

.hamburger.active span:nth-child(3) {
	transform: rotate(-45deg) translate(8px, -8px);
}

/* Navigation Menu */
.nav-menu {
	display: flex;
	align-items: center;
	gap: 30px;
}

.nav-link {
	font-size: 18px;
	color: rgb(85, 85, 85);
	text-decoration: none;
	transition: color 0.3s ease;
}

.nav-link:hover {
	color: #000;
}

ul, ol {
    padding: 0px;
    margin: 0px 0px 9px 25px;
}

ul {
    list-style: disc outside none;
}

li {
    line-height: 22px;
}

a {
    color: rgb(0, 136, 204);
    text-decoration: none;
}

a:focus
{
	outline: 5px auto -webkit-focus-ring-color;
	outline: thin dotted #333;
	outline-offset: -2px;
}

a:hover,a:active
{
	outline: 0;
}

.wraper {
       min-height: 100%;
       height: auto !important;
       height: 100%;
       margin: 0px 0px -90px 0px;
}

.wraper_in {
       width: 100%;
       padding: 100px 0px 90px 0px;
       box-sizing: border-box;
}

footer { 
	height: 80px; 
	color: #C9DBE4;
	background-color: #0A6DA2;
	border-top: medium none rgb(224, 224, 224); 
	box-shadow: 0px 0px 5px rgb(136, 136, 136); 
	margin: 10px 0px 0px 0px;
}
footer p {
    padding: 30px 0px 0px 0px;
	margin: 0px;
}

.fieldWrapper {

}

.fieldWrapper label {
	width: 80px;
	display: inline-block;
	text-align: right;
	margin-right: 5px;
	height: 20px;
	vertical-align: top;
}
.fieldWrapper input { 
	height: 20px;
}
.fieldWrapper textarea {
	min-width: 500px;
} 

.fieldWrapper input, .fieldWrapper textarea, .fieldWrapper label { 
	margin: 1px;
	padding: 1px 3px;
}

.fieldWrapper input, .fieldWrapper textarea {
	border: 1px #bbb solid;
}

.email {
	background-color: #f7f7f9;
	padding: 10px;

}

.round5 {
	border: 1px #bbb solid;
	-moz-border-radius: 5px;
	border-radius: 5px;
}

.errorlist {
	color: #f44;
	display: inline-block;
		vertical-align: top;
}

#map_canvas {
	width: 100%;
	height: 300px;
}

p img {
	float:left; 
	margin-right:15px;
}

.about {

}
.about img {
	border: 1px solid #777;
	margin: 0px;
	vertical-align:bottom;
}
.about div.img {
	border: 1px solid #777;
	padding: 9px;
	float: right;
}

/* Responsive Design */

/* Tablets (iPad) - 768px and below */
@media (max-width: 768px) {
	body {
		font-size: 16px;
		line-height: 20px;
	}
	
	h1 { font-size: 1.5em; }
	h2 { font-size: 1.1em; }
	
	.container {
		width: 90%;
		padding: 0 5%;
	}
	
	.logo {
		height: 50px;
		width: 250px;
	}
	
	.hamburger {
		display: flex;
	}
	
	.nav-menu {
		position: absolute;
		top: 80px;
		right: 0;
		left: 0;
		flex-direction: column;
		background-color: #f7f7f9;
		border-bottom: 1px solid rgb(224, 224, 224);
		max-height: 0;
		overflow: hidden;
		transition: max-height 0.3s ease;
		gap: 0;
	}
	
	.nav-menu.active {
		max-height: 200px;
		box-shadow: 0 2px 5px rgb(136, 136, 136);
	}
	
	.nav-link {
		padding: 15px 20px;
		font-size: 16px;
		border-bottom: 1px solid #eee;
	}
	
	.nav-link:last-child {
		border-bottom: none;
	}
	
	.wraper_in {
		padding: 80px 0px 90px 0px;
	}
	
	footer {
		height: auto;
		padding: 20px;
	}
	
	footer p {
		padding: 0;
		margin: 0;
	}
	
	.fieldWrapper textarea {
		min-width: 100%;
		box-sizing: border-box;
	}
}

/* Mobile phones - 480px and below */
@media (max-width: 480px) {
	body {
		font-size: 14px;
		line-height: 18px;
	}
	
	h1 { font-size: 1.3em; }
	h2 { font-size: 1em; }
	
	header {
		height: 70px;
	}
	
	.header-container {
		padding: 0 15px;
	}
	
	.logo {
		height: 45px;
		width: 200px;
	}
	
	.hamburger span {
		width: 20px;
		height: 2px;
		margin: 4px 0;
	}
	
	.nav-menu {
		top: 70px;
	}
	
	.nav-link {
		padding: 12px 15px;
		font-size: 14px;
	}
	
	.container {
		width: 100%;
		padding: 0 10px;
	}
	
	.wraper_in {
		padding: 70px 0px 80px 0px;
	}
	
	footer {
		height: auto;
		padding: 15px;
		text-align: center;
	}
	
	footer p {
		font-size: 12px;
	}
	
	#map_canvas {
		height: 200px;
	}
	
	p img {
		float: none;
		max-width: 100%;
		margin-right: 0;
		margin-bottom: 10px;
	}
	
	.about div.img {
		float: none;
		margin-bottom: 15px;
	}
	
	.fieldWrapper {
		display: block;
	}
	
	.fieldWrapper label {
		width: 100%;
		display: block;
		text-align: left;
		margin-right: 0;
		margin-bottom: 5px;
	}
	
	.fieldWrapper textarea {
		min-width: 100%;
		width: 100%;
		box-sizing: border-box;
	}
	
	.fieldWrapper input {
		width: 100%;
		box-sizing: border-box;
	}
}

/* Large screens - above 1200px */
@media (min-width: 1200px) {
	.container {
		width: 1200px;
	}
}


ul, ol {
    padding: 0px;
    margin: 0px 0px 9px 25px;
}

ul {
    list-style: disc outside none;
}

li {
    line-height: 22px;
}
header nav a {
    font-size: 18px;
    color: rgb(85, 85, 85);
}

a:focus
{
	outline: 5px auto -webkit-focus-ring-color;
	outline: thin dotted #333;
	outline-offset: -2px;
}
a:hover,a:active
{
	outline: 0;
}

header nav a:hover
{
	color: #000;
	text-decoration: none;
}

a {
    color: rgb(0, 136, 204);
    text-decoration: none;
}

.wraper {
       min-height: 100%;
       height: auto !important;
       height: 100%;
       margin: 0px 0px -90px 0px;
}

.wraper_in {
       width: 100%;
       padding: 0px 0px 90px 0px;
}

footer { 
	height: 80px; 
	color: #C9DBE4;
	background-color: #0A6DA2;
	border-top: medium none rgb(224, 224, 224); 
	box-shadow: 0px 0px 5px rgb(136, 136, 136); 
	margin: 10px 0px 0px 0px;
}
footer p {
    padding: 30px 0px 0px 0px;
	margin: 0px;
}

.fieldWrapper {

}

.fieldWrapper label {
	width: 80px;
	display: inline-block;
	text-align: right;
	margin-right: 5px;
	height: 20px;
	vertical-align: top;
}
.fieldWrapper input { 
	height: 20px;
}
.fieldWrapper textarea {
	min-width: 500px;
} 

.fieldWrapper input, .fieldWrapper textarea, .fieldWrapper label { 
	margin: 1px;
	padding: 1px 3px;
}

.fieldWrapper input, .fieldWrapper textarea {
	border: 1px #bbb solid;
}

.email {
	background-color: #f7f7f9;
	padding: 10px;

}

.round5 {
	border: 1px #bbb solid;
	-moz-border-radius: 5px;
	border-radius: 5px;
}

.errorlist {
	color: #f44;
	display: inline-block;
		vertical-align: top;
}

#map_canvas {
	width: 1000px;
	height: 300px;
}

p img {
	float:left; 
	margin-right:15px;
}

.about {

}
.about img {
	border: 1px solid #777;
	margin: 0px;
	vertical-align:bottom;
}
.about div.img {
	border: 1px solid #777;
	padding: 9px;
	float: right;
}
