/*
light green: #afd646
dark green: #97c332
light blue: #eaf7f1
dark blue: #e2f4ec
dark grey: #909d97
light grey: #aabdb4
*/
@import url('https://fonts.googleapis.com/css?family=Open+Sans&display=swap');

:root {
	--button_padding:11px 23px;
	--button_font_size:13px;
	--button_line_height:16px;
}

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, 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-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

html {
	font-family: "Open Sans", Arial, Helvetica, sans-serif;
}
body {
	border-top: #97c332 solid 3px;
	border-bottom: #97c332 solid 3px;
	background: rgba(69, 84, 28, 0.25);
	font-family: 'Open Sans', sans-serif;
	color: #333;
}
header {
	width: 100%;
	border-bottom: #97c332 solid 3px;
	background: linear-gradient(#b8dbee, #cbceec, #e2f4ec);
}
header .inner {
	width: 100%;
	max-width: 1200px;
	position: relative;
	display: flex;
	flex-direction:row;
	justify-content: flex-start;
	align-items: flex-end;
	margin: 0 auto;
}
h1 {
	position: relative;
	z-index: 50;
}
h1 img {
	display: block;
}
.menu {
	list-style:none;
	display: flex;
	flex-direction: row;
	position: relative;
	z-index: 10;
	margin: 0 0 2.2em;
}
.menu li {
	margin: 0 0.25em;
	padding: 0;
}
.menu a {
	padding: 0.25em 0.5em;
	display: block;
	background: linear-gradient(#eaf7f1, white, white, #eaf7f1);
	border: solid 2px #97c332;
	border-radius: 0.5em;
	box-shadow: 2px 2px 2px #648813, -2px -2px 4px #bddc76;
}
.menu a:hover {
	background: linear-gradient(#eaf7f1, #eaf7f1, #white, white);
	box-shadow: 2px 2px 2px white, -2px -2px 2px white;
}
.communications {
	position: absolute;
	top: 0;
	right: 0;
	display: flex;
	flex-direction: row;
	list-style: none;
	margin: 5px;
	z-index: 10;
}
.communications li {
	margin: 0 0 0 5px;
	padding: 0;
}
header svg {
	position: absolute;
	bottom:0;
	left: 0;
	z-index: 0;
}
header #range {
	z-index: 2;
}
header #range path {
	fill:#afd646;
}
header #buildings {
	z-index: 3;
}
header #buildings path {
	fill:#97c332;
}
header #rays {
	z-index: 1;
}
header #rays path {
	fill:#eaf7f1;
	transform: translate(-90px, -30px);
}
main {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	background: #f1ebeb;
	padding: 0 0 5px;
}
header a {
	text-decoration: none;
}
a {
	color: #909d97;
}
.hero,
.hero img {
	width: 100%;
}

h1 {
	font-weight: bold;
	font-size: 1.3em;
}
h2, legend {
	font-weight: bold;
	font-size: 1.2em;
	margin: 0.5em 15px;
}
h3 {
	font-weight: bold;
	font-size: 1.1em;
	margin: 0.5em 15px;
}
p {
	line-height: 1.1em;
	margin: 0 15px 0.5em;
}
small,
figcaption {
	font-size: 0.75em;
}
ul {
	margin: 0.5em 15px;
	list-style:inside;
}
ol {
	margin: 0.5em 15px;
}
li {
	padding-left: 2em;
	margin-bottom: 0.25em;
}
strong {
	font-weight:700;
}
.figure-right {
	background: white;
	padding: 5px;
	float: right;
	margin: 0 15px 0.5em 1em;
}
.figure-right figcaption {
	text-align:right;
}
hr {
	border-top:solid 1px #e2f4ec;
	border-bottom:solid 1px #afd646;
	margin: 0.5em 15px;
}
.gallery {
	width: calc(100% - 30px);
	overflow:hidden;
	overflow-x: auto;
	padding-bottom: 1em;
}
.gallery .viewbox {
	display: flex;
}
.gallery figure {
	background: white;
	padding: 5px;
	margin: 0 15px;
	text-align: center;
}
.gallery img {
	max-height: 400px;
	max-width: 800px;
	height:auto;
	width:auto;
}
.project {
	background: rgba(100,100,100,0.05);
	padding: 0.5em 0;
	margin: 7.5px 15px;
	border: solid 1px #333;
	box-sizing: border-box;
}
.project iframe {
	width: 100%;
	min-width: 600px;
	height: auto; 
	min-height: 420px;
	
}
small {
	margin: 1em 15px;
	display: block;
}
form div {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
	margin: 0 15px 0;
	padding: 0 0 2em;
}
fieldset {
	width: 49%;
	margin-top: 1em;
}
label,
input,
textarea,
select,
button {
	width:100%;
	font-family: inherit;
}
fieldset.submit {
	display: flex;
	align-items: flex-end;
}
button {
	margin-top: 1em;
	height: calc(100% - 1em);
	border-color: #afd646 #97c332 #909d97 #aabdb4;
	border-width: 2px;
	border-radius: 0.5em;
	border-style: solid;
	font-size: 1.25em;
	background: linear-gradient(#e2f4ec, #afd646, #97c332, #e2f4ec);
	cursor: pointer;
	text-shadow: black 1px 1px 1px, white -1px -1px 1px;
	box-shadow: grey 3px 3px 3px;
}
button:hover {
	background: linear-gradient(#97c332, #e2f4ec, #e2f4ec, #afd646);
	text-shadow: black -1px -1px -1px, white 1px 1px 1px;
	color: #97c332;
	box-shadow: grey -3px -3px 3px;
}
footer {
	text-align: center;
	width: 100%;
	display: block;
	margin: 0;
	width: 100%;
	border-top: #97c332 solid 3px;
	background: linear-gradient(#a55e57, #aa5b52, #43231f);
	color: white;
	position: relative;
}
footer small,
footer ul {
	margin: 0;
	padding: 1em 0;
	position: relative;
	z-index:1;
}
footer a {
	color: white;
}
footer svg {
	position: absolute;
	bottom:0;
	left: 50%;
	transform: translate(-50%, 0);
	z-index: 0;
}
footer svg path {
	fill: url(#pattern);
}




.contact-submission main {
	padding-bottom: 1em;
}
.contact-submission main h1 {
	padding: 1em 15px;
}
.contact-submission main figure {
	width: 100%;
	text-align: center;
}
table {
	margin: 1em 15px;
}
tr {
	border-bottom: solid 1px #aabdb4;
}
td {
	padding: 0.5em 1em;
}

.hidden {
	display: none;
}