/* Services section: This file works for Google Chrome, Firefox and Edge.
	Problem in services section of index page in Safari - rendering svg flex items too wide and cutting off/creating horizontal scrollbar - fixed by making SVG images square by adding white
	background.
	Problems in IE (11) - too wide with horizontal scroll, footer flex items not sized/positioned correctly. #footerCTA is displaying inside #footerContent instead of above - 
	probably a result of #footerContent flex container not rendering correctly.
*/

/*
**	----------------------------------------------------------------------
**	Global styles
**  ----------------------------------------------------------------------
**  Default styles are mobile-first for XS screens
*/

html {
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
            box-sizing: border-box;
            
            height: 100%;
            scroll-padding-top: 120px;
}
*,
*::before,
*::after {
    -webkit-box-sizing: inherit; 
       -moz-box-sizing: inherit;
            box-sizing: inherit;
}
body {
	font-family: 'Ubuntu', sans-serif;
	color: #333333;
	background-color: #0B2817;
	margin: 0;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-direction: column;
	flex-direction: column;
	height: 100vh;
	min-width: 20em;
}
/* Pre-load background images used on hover */
body:after {
	content: url(../images/koc_multiscreen500_hover.png) url(../images/ccb_multiscreen500_hover.png);
	display: none;
}
header,
footer {
}
/* Giving the site header an id and specifically selecting it here broke the layout in IE11. It didn't recognize the position fixed and z-index code */
header {
	position: fixed;
	width: 100%;
	top: 0px;
	margin: 0;
	z-index: 1;
}
main {
  background-color: #ffffff;
  -webkit-flex:  1 0 auto;
  flex: 1 0 auto;
  width: 100%;
}
article, section {
	padding-top: 2em;
	padding-right: 1em;
	padding-left: 1em;
	position: relative;
}
section.last {
	padding-bottom: 2em;
}
/*	Media Query - Small screen - min 480px at 16px base em */
@media only screen and (min-width: 30em) {
	article, section {
		padding-right: 2em;
		padding-left: 2em;
	}
}
/*	Media Query - Medium screen - min 704px at 16px base em */
@media only screen and (min-width: 44em) {
	article, section {
		padding-right: 4em;
		padding-left: 4em;
	}
}
section > header {
	position: static;
	padding-bottom: 0.5em;
}
section > header.image {
	position: static;
	padding-bottom: 2em;
}
h1, h2, h3, h4, h5, h6 {
	font-family: 'Nova Oval', sans-serif;
}
h1 {
	font-size: 1.5em;
	margin: 0;
	color: #377a47;
}
h1.big {
	font-size: 4em;
	text-align: center;
	padding-bottom: 0.5em;
	color: #e07901;
}
.page404 li {
	font-size: 1.2em;
	line-height: 1.6em;
}
h2 {
	font-size: 1.3em;
	margin: 0;
	color: #62bd63;
}
h2.center {
	margin-top: 1.5em;
	text-align: center;
}
h3 {
	font-size: 1.3em;
	margin: 0;
	color: #377a47;
}
h4 {
	font-size: 1.1em;
	color: #377a47;
	margin-top: 0;
	margin-bottom: 0;
}
h5 {
	font-size: 1em;
	font-weight: bold;
	color: #377a47;
	margin-bottom: 0;
}
p {
	font-size: 1.2em;
	line-height: 1.5em;
}
ul {
	list-style-type: none;
	-webkit-padding-start: 0.5em;
	padding-left: 0.5em;
}
ol li {
	padding-bottom: 1em;
}
a {
	text-decoration: none;
	color: #377a47;
	font-weight: bold;
}
a:hover {
	color: #62bd63;
}
a:active {
	color: #65ea61;
}
.clrfix {
	clear: both;
}
.important {
	font-weight: bold;
}
/*
**	----------------------------------------------------------------------
**	Top navigation section styles
**  ----------------------------------------------------------------------
*/
nav {
	background-color: #104325;
}
#logo {
	width: 14em;
	height: auto;
	padding: 0.5em 3em 0.2em 1em;
}
/*	Media Query - Small screen - min 480px at 16px base em */
@media only screen and (min-width: 30em) {
}
/*	Media Query - Medium screen - min 704px at 16px base em */
@media only screen and (min-width: 44em) {
	#logo {
	width: 15em;
	padding-right: 1.5em;
	}
}
/*	Media Query - Medium screen - min 640px at 16px base em */
@media only screen and (min-width: 40em) {
	#logosvg {
	}
}
#logosvg:hover {
	width: 101%;
}
nav ul {
	padding-top: 0.5em;
	padding-bottom: 0;

	margin-top: 0;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-flow: row nowrap;
	flex-flow: row nowrap; /* This is the default with display: flex */
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-webkit-align-items: center;
	align-items: center;
	margin-bottom: 0;
}
nav ul {
	list-style-type: none;
	padding-left: 0;
	padding-right: 0.5em;
}
nav ul li {
	font-family: 'Nova Oval', sans-serif;
	padding-left: 0.4em;
	padding-right: 0;
	padding-bottom: 0.4em;
}
nav ul li a {
	text-decoration: none;
	display: block;
	color: #ffffff;
}
/* This is class for php to change link color of current page */
.current-page a {
    color:#65ea61;
}
nav ul li a:hover {
	color: #9cff98;
	/* color: #0aff00; */
	font-weight: normal;
}
nav ul li a:active {
	color: #377a47;
	font-weight: normal;
}
#hamburger {
	margin-right: 0.5em;
	width: 40px;
	text-align: center;
}
#hamburger svg .hmb {
	stroke: #ffffff;
}
#hamburger svg:hover .hmb {
	stroke: #9cff98;
}

/*	Media Query - Medium screen - min 704px at 16px base em */
@media only screen and (min-width: 44em) {
	#hamburger {
		display: none;
	}
}

/* side nav menu */

.sidenav {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1;
    top: 0;
    right: 0;
    background-color: rgba(11,40,20,0.9);
    color: #ffffff;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 5em;
}
.sidenav a {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 25px;
    color: #ffffff;
    display: block;
    transition: 0.3s;
}
.sidenav a:hover {
    color: #ffffff;
	background-color: #7072ef;
}
.sidenav a:active {
	color: #ffffff;
	background-color: #55569d;
}
.sidenav a.closebtn:hover {
	background-color: transparent;
	color: #9cff98;
}
.sidenav .closebtn {
    position: absolute;
    top: 0;
    font-size: 4em;
    right: 0.1em;
    margin-left: 2em;
}
.sidenav a.closebtn {
	padding: 8px 8px 8px 8px;
	line-height: 1em;
}
@media screen and (max-height: 450px) {
  .sidenav {padding-top: 15px;}
  .sidenav a {font-size: 18px;}
}

/* end side nav menu */

.menu-horiz {
	font-family: 'Nova Oval', sans-serif;
	display: none;
}
/*	Media Query - Medium+ screen - min 704px at 16px base em */
@media only screen and (min-width: 44em) {
	.menu-horiz {
		display: inline-block;
		vertical-align: middle;
		font-size: 1.1em;
		padding-top: 0.4em;
		padding-right: 1em;
		
	}
	.menu-horiz a:hover {

	}
}
/*	Med-large size screen media queries - 50em*16 = 800px */
@media only screen and (min-width: 50em) {
	.menu-horiz {
		font-size: 1.3em;
	}
}
/*	Large size screen media queries - 60em*16 = 960px */
@media only screen and (min-width: 60em) {
	.menu-horiz {
		font-size: 1.5em;
	}
}
#topcontact {
	padding-top: 5em;
	padding-bottom: 0.5em;
	display: block;
	background-color: #104325;
	clear: both;
	-webkit-flex-shrink: 0;
	flex-shrink: 0; /* Needed for mobile to keep info visible */
}
#topcontact p a {
	font-weight: 300;
}
#topcontact a {
	color: #ffffff;
}
/*	Media Query - Small screen - min 704px at 16px base em */
@media only screen and (min-width: 44em) {
	#topcontact {
		padding-top: 5.5em;
	}
}
#phoneemail {
	width: 20em;
	margin-left: auto;
	margin-right: auto;
}
#topcontact p {
	text-align: center;
	color: #ffffff;
	background-color: #104325;
	font-size: 1em;
	line-height: 1.2em;
	margin: 0;
	padding-top: 0;
	padding-bottom: 0;
}
#pod p {
	text-align: center;
	color: #ffffff;
	background-color: #7072ef;
	font-weight: 400;
	font-size: 1em;
	line-height: 1.2em;
	margin: 0;
	padding: 0.3em;
}
#pod a {
	color: #fff;
	font-weight: 400;
	text-decoration: underline;
}
#pod a:hover {
	/*background-color: #ff9b29;	*/
	/*background-color: #7f49ea;*/
	color: #104325;
}
#pod a:active {
	/*background-color: #b15f00;	*/
	/*background-color: #522c9e;*/
	color: #3d3d70;
}
#blm p {
	text-align: center;
	color: #65ea61;
	background-color: #000000;
	font-weight: 700;
	font-size: 1.2em;
	line-height: 1.5em;
	margin: 0;
	padding: 2em 0.3em;
}
#ukr1 p {
	text-align: center;
	color: #ffd700;
	background-color: #0057b7;
	font-weight: 700;
	font-size: 1.2em;
	line-height: 1.5em;
	margin: 0;
	padding: 0.5em 0.3em;
}
#ukr2 p {
	text-align: center;
	color: #0057b7;
	background-color: #ffd700;
	font-weight: 700;
	font-size: 1.2em;
	line-height: 1.5em;
	margin: 0;
	padding: 0.5em 0.3em;
}
@media only screen and (min-width: 44em) {
	#topcontact p {
		float: right;
		text-align: right;
		padding-right: 1.5em;
		font-weight: 300;
	}
}
@media only screen and (min-width: 60em) {
	#topcontact p {
		font-size: 1.2em;
	}
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
	body {
		display: block;
	}
	main {
		display: table;
	}
	nav ul {
		height: 6em;
	}
	#topcontact {
		padding-top: 7em;
		margin-top: 0px;
		overflow: auto;
	}
}

/*
**	----------------------------------------------------------------------
**	Main section styles
**  ----------------------------------------------------------------------
*/
.heroContainer {
	position: relative;
}
.heroContainer h1 {
	padding: 1.5em 0.5em 0.5em 0.5em;
	text-align: center;
	line-height: 1.3em;
	color: #ffffff;
	background-color: #2b824f;
}
#heroCTA {
	position: absolute;
	bottom: -5%; left: 50%;
	transform: translate(-50%,-50%);
}
#heroCTA p {
	margin: 0;
}
img.fullwidth {
	width: 100%;
	margin: 0;
}
#title, #title-wide {
	padding-top: 0.5em;
	padding-bottom: 1em;
	clear: both;
	font-weight: bold;
	color: #377a47;
}
#title-wide {
	display: none;
}
#title p {
	font-size: 1em;
}
#title p, #title-wide p {
	margin: 0;
	text-align: center;
}

/*	Media Query - Medium screen - min 400px at 16px base em */
@media only screen and (min-width: 25em) {
	#title p {
		font-size: 1.2em;
	}
}

/*	Media Query - Medium screen - min 640px at 16px base em */
@media only screen and (min-width: 40em) {
	#title {
		display: none;
	}
	#title-wide {
		display: block;
		padding-top: 1em;
		padding-bottom: 3em;
	}
	#footerText {
		text-align: center;
	}
}

.sectionTitle, .pageTitle {
	padding-top: 2em;
	padding-bottom: 1em;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-flow: row nowrap;
	flex-flow: row nowrap;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-align-items: center;
	align-items: center;
	clear: both;
}
.sectionTitle h1, .pageTitle h1 {
	color: #377a47;
}
.ornament {
	margin-left: 0.5em;
	margin-right: 0.5em;
	width: 2em;
	height: auto;
}
section.intro, section.first {
	padding-top: 0;
}
.intro {
	font-weight: 300;
	font-size: 1.1em;
}
.notice {
	color: #7072ef;
	font-style: italic;
	padding: 1em 1em;
	width: 90%;
	margin: 0 auto;
	line-height: 1.3em;
}
#devices {
	width: 60%;
	max-width: 35em;
	margin-top: 1em;
	margin-bottom: 3em;
	margin-left: auto;
	margin-right: auto;
}
#devices > svg {
	width: 100%;
}
.half {
	float: left;
	width: 50%;
}
.portfolioButton {
	width: 7em;
	height: auto;
	margin-top: 1.5em;
	margin-bottom: 1.5em;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
	border-radius: 0.5em;
	color: #ffffff;
	background-color: #7072ef;
	box-shadow: 3px 3px 5px #2a2a2a;
}
.portfolioButton p {
	padding: 0.5em;
	font-size: 0.9em;
}
.portfolioButton a, .portfolioButton a:hover, .portfolioButton a:active {
	color: #ffffff;
}
.portfolioButton:hover {
	background-color: #55569d;
	box-shadow: 2px 2px 3px #2a2a2a;
}
.portfolioButton:active {
	background-color: #3d3d70;
	box-shadow: 1px 1px 2px #2a2a2a;
}
.consultationButton {
	width: 7em;
	height: auto;
	margin-top: 1.5em;
	margin-bottom: 1.5em;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
	border-radius: 0.5em;
	color: #ffffff;
	background-color: #7072ef;
	box-shadow: 3px 3px 5px #2a2a2a;
}
.consultationButton p {
	padding: 0.2em 1em;
	font-size: 0.9em;
}
.consultationButton a, .consultationButton a:hover, .consultationButton a:active {
	color: #ffffff;
}
.consultationButton:hover {
	background-color: #55569d;
	box-shadow: 2px 2px 3px #2a2a2a;
}
.consultationButton:active {
	background-color: #3d3d70;
	box-shadow: 1px 1px 2px #2a2a2a;
}
.featuredContainer {
	margin: 1em 0 2em 0;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-direction: row;
	flex-direction: row;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-justify-content: space-between;
	justify-content: space-between;
}
.featured {
	-webkit-flex: 1 1 100%;
	flex: 1 1 100%;
	min-height: 15em;
	
	display: -webkit-flex;
	display: flex;
	-webkit-flex-direction: column;
	flex-direction: column;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-align-content: center;
	align-content: center;
}
.featured p, .featured h4 {
	text-align: center;
	color: #ffffff;
	opacity: 0;
	color: #4bff8a;	
}
.featured h4 {
	font-size: 1.2em;
} 
.orange {
	background: #7274e2 url('../images/btm_multiscreen500_shift.png') left center / cover no-repeat;
    -webkit-transition: all 0.7s;
    transition: all 0.7s;
}
.green {
    -webkit-transition: all 0.7s;
    transition: all 0.7s;
	background: #00893f url('../images/asc_multiscreen500_shift.png') right center / cover no-repeat;
}
.featured:hover.orange {
	background-image: url("../images/btm_multiscreen500_hover.png");
    -webkit-transition: all 0.7s;
    transition: all 0.7s;
}
.featured:hover.green {
	background-image: url("../images/asc_multiscreen500_hover.png");
    -webkit-transition: all 0.7s;
    transition: all 0.7s;
}
.featured:hover p, .featured:hover h4 {
	opacity: 1;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}
.featured:active {
	opacity: 0.5;
}
.featured:hover a p {
	font-weight: normal;
}
.featured a:hover h4, .featured a:hover p {
}
@media only screen and (min-width: 22em) {
	.featured {
		min-height: 17em;
	}
}
@media only screen and (min-width: 26em) {
	.featured {
		min-height: 20em;
	}
}
@media only screen and (min-width: 30em) {
	.featured {
		min-height: 11em;
	}
}
@media only screen and (min-width: 33em) {
	.featured {
		min-height: 13em;
	}
}
@media only screen and (min-width: 40em) {
	.featured {
		min-height: 15em;
	}
}
@media only screen and (min-width: 50em) {
	.featured {
		min-height: 18em;
	}
}
@media only screen and (min-width: 60em) {
	.featured {
		min-height: 24em;
	}
}
@media only screen and (min-width: 70em) {
	.featured {
		min-height: 28em;
	}
}
.featured img {
	width: 100%;
	height: auto;
}
@media only screen and (min-width: 30em) {
	.featured {
		-webkit-flex: 1 1 50%;
		flex: 1 1 50%;
	}
}

/* Multiple services block styles on Index page */

.servicesContainer {
	margin: 1em 0 2em 0;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-direction: row;
	flex-direction: row;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-justify-content: space-around;
	justify-content: space-around;
	-webkit-align-items: flex-end;
	align-items: flex-end;
}
.services {
	-webkit-flex: 1 1 100%;
	flex: 1 1 100%;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-direction: column;
	flex-direction: column;
	-webkit-align-items: center;
	align-items: center;
}
.services svg {
	width: auto;
	height: 10em;
	border: 2px solid rgba(255,255,255,0);
	
}
.services svg:hover {
	border: 0;
}
.services p {
	text-align: center;
	padding-bottom: 2em;
}
.services p a {
	font-size: 1.2em;
}
.services p a:hover {
	
}

@media only screen and (min-width: 47em) {
	.services {
		-webkit-flex: 1 1 25%;
		flex: 1 1 25%;
	}
	.services svg {
		width: auto;
		height: 6.5em;
	}
	.services p a {
		font-size: 1em;
	}
}

/*
**	----------------------------------------------------------------------
**	Services and Graphics page main section styles
**  ----------------------------------------------------------------------
*/
.serviceContainer, .graphicsContainer {
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-justify-content: space-around;
	justify-content: space-around;
	-webkit-align-items: center;
	align-items: center;
}
.serviceSVG, .serviceDesc, .graphicsIMG {
	-webkit-flex: 1 1 100%;
	flex: 1 1 100%;
	padding-bottom: 1em;
}
.graphicsDesc {
	-webkit-flex: 1 1 100%;
	flex: 1 1 100%;
	padding-bottom: 0;
}
.serviceSVG svg, .graphicsIMG img, .serviceDesc p, .graphicsDesc p {
	margin: 0;
	width: 100%;
	padding-bottom: 1em;
}
.graphicsContainer p.graphics {
	text-align: left;
	font-family: 'Nova Oval', sans-serif;
	font-size: 1.3em;
	color: #377a47;
}
.graphicsContainer p.detail {
	text-align: left;
	font-family: 'Ubuntu', sans-serif;
	font-size: 1.1em;
	line-height: 1.3em;
	color: #333333;
}
.serviceDesc p a {
	color: #62bd63;
}
.serviceDesc p a:hover {
	color: #65ea61;
}
.serviceDesc p a:active {
	color: #00893f;
}
.serviceDesc ul {
	-webkit-padding-start: 0.5em;
	width: 19em;
	margin-right: auto;
	margin-left: auto;
}
.serviceDesc ul li {
	list-style: none;
	line-height: 1.5em;
	font-size: 1.2em;
}
.serviceDesc ul li:before {
   content: '';
   display: inline-block;
   vertical-align: middle;
   width: 1.2em;
   height: 1.2em;
   background-image: url("../images/clover40.png");
   background-size: contain;
   background-repeat: no-repeat;
}
.serviceList {
	padding-left: 0.5em;
	display: inline-block;
	vertical-align: middle;

}
/*	Media Query - Medium+ screen - min 704px at 16px base em */
@media only screen and (min-width: 44em) {
	.serviceContainer, .graphicsContainer {
		-webkit-flex-wrap: nowrap;
		flex-wrap: nowrap;
	}
	.graphicsContainer {
		-webkit-justify-content: space-between;
		justify-content: space-between;
	}

	.serviceSVG {
		-webkit-flex: 1 1 40%;
		flex: 1 1 40%;
	}
	.serviceDesc {
		-webkit-flex: 1 1 60%;
		flex: 1 1 60%;
	}
	.serviceDesc ul {
		width: 20em;
		margin-left: 1em;
	}
	.graphicsIMG {
		-webkit-flex: 1 1 60%;
		flex: 1 1 60%;
	}
	.graphicsDesc {
		-webkit-flex: 1 1 40%;
		flex: 1 1 40%;
	}
	.graphicsContainer p.graphics {
		font-size: 1.3em;
	}
	.serviceContainer p.service {
		padding-left: 1em;
		padding-right: 0;
	}
	.graphicsIMG img {
		padding-left: 1em;
		padding-right: 1em;
		padding-bottom: 3em;
	 }

	/* For alternating image/text positioning on services and graphics page rows */
	.serviceContainerReverse, .graphicsContainerReverse {
		-webkit-flex-direction: row-reverse;
		flex-direction: row-reverse;
	}
	.serviceContainerReverse p.service, .graphicsContainerReverse p.graphics {
		padding-left: 0;
		padding-right: 1em;
		padding-bottom: 1em;
	}
	.graphicsContainerReverse p.graphics, .graphicsContainerReverse p.detail {
		text-align: right;
		padding-right: 0;
	}
}


/* Target IDs used for links to Services page sections */
#design, #develop, #graphic, #admin {
	position: absolute;
	top: -8em;
}

/* Organizations section on index.php for Chamber of Commerce badge */
#orgs {
	position: relative;
	-webkit-flex: 1 0 100%;
	flex: 1 0 100%;
	/* width: 100%; */
	font-size: 1.3em;
	text-align: center;
	padding-top: 2em;
	padding-bottom: 0.5em;
	background-color: #ffffff;
}
div#orgs:before {
  content : "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  height  : 1px;
  width   : 50%;  /* or 100px */
  border-bottom:1px solid #377a47;
}
#chambergmc-badge {
	font-size: 0.8em;
	color: #377a47;
	padding-bottom: 110px;
}
#memberText {
	background-color: #ffffff;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	z-index: 99;
}
.mn-widget-member-assoc {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
}


/*
**	----------------------------------------------------------------------
**	Portfolio page main section styles
**  ----------------------------------------------------------------------
*/
.graphicsPageButton {
	width: 7em;
	height: auto;
	margin-top: 1.5em;
	margin-bottom: 1.5em;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
	border-radius: 0.5em;
	color: #ffffff;
	/*background-color: #104325;*/
	/*background-color: #9091dd;*/
	background-color: #7072ef;
	box-shadow: 3px 3px 5px #2a2a2a;
}
.graphicsPageButton p {
	padding: 0.5em;
	font-size: 0.9em;
}
.graphicsPageButton a, .graphicsPageButton a:hover, .graphicsPageButton a:active {
	color: #ffffff;
}
.graphicsPageButton:hover {
	/*background-color: #00c15b;*/
	/*background-color: #7f49ea;*/
	background-color: #55569d;
	box-shadow: 2px 2px 3px #2a2a2a;
}
.graphicsPageButton:active {
	/*background-color: #377a47;*/
	/*background-color: #522c9e;*/
	background-color: #3d3d70;
	box-shadow: 1px 1px 2px #2a2a2a;
}

#projectsContainer {
	display: block;
	/*
	display: -webkit-flex;
	display: flex;
	-webkit-flex-direction: column;
	flex-direction: column;
		-webkit-flex-wrap: wrap;
		flex-wrap: wrap;
	-webkit-justify-content: space-around;
	justify-content: space-around;
	-webkit-align-items: center;
	align-items: center;
	*/
}
.project {
	display: block;
	margin: 1em;

	/*
	-webkit-flex: 1 0 100%;
	flex: 1 0 100%;
	padding: 1em 1em 1.5em 1em;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-direction: column;
	flex-direction: column;
	-webkit-justify-content: space-around;
	justify-content: space-around;
	*/
}
.project a {
	display: block;
	/*
	-webkit-flex: 1 0 100%;
	flex: 1 0 100%;
	*/
}
.projectDesc {
	display: block;
	margin: 1em;
}
img.thumb {
	display: block;

	width: 100%;
	max-width: 350px;
	margin-top: 1em;
	margin-bottom: 1em;
	margin-left: auto;
	margin-right: auto;
}
p.projectLabel {
	display: block;
	
	width: 100%;
	max-width: 350px;
	margin: 0;
	font-size: 1em;
	line-height: 1.3em;
	font-style: italic;
	margin-left: auto;
	margin-right: auto;
	
}

.projectLabel a {
	color: #62bd63;
}
.projectLabel a:hover {
	color: #65ea61;
}
.projectLabel a:active {
	color: #00893f;
}

@media only screen and (min-width: 44em) {
	#projectsContainer {
		display: -webkit-flex;
		display: flex;
		-webkit-flex-direction: row;
		flex-direction: row;
		-webkit-flex-wrap: wrap;
		flex-wrap: wrap;
		-webkit-justify-content: space-around;
		justify-content: space-around;
		-webkit-align-items: flex-start;
		align-items: flex-start;	
	}
	.project {
		flex: 1 0 350px;
		margin: 1em 1em 1.5em 1em;

	}
	.project a {
	}
	.projectDesc {
	}
}
@media only screen and (min-width: 50em) {
	.project {
	}
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
	#projectsContainer {
		display: block;
	}
	.project {
		min-height: 20em;
	}
	.project a {
	}
	.projectDesc {
		min-height: 5em;
	}
}


/*
**	----------------------------------------------------------------------
**	Blog index page main section styles
**  ----------------------------------------------------------------------
*/




.blog-posts {
	width: 100%;
}
h3.archiveHeader {
	font-size: 1em;
	padding-top: 1em;
	padding-left: 1em;
}
.entry-title {
	padding-top: 0.5em;
}
img.postThumb {
	width: 17em;
	height: auto;
	padding-top: 0.5em;
}
img.postIMG {
	width: 19em;
	height: auto;
	padding-bottom: 1em;
}
.sidebar {
	padding-right: 1em;
	padding-left: 1em;
	padding-top: 2em;
	width: 100%;
}
article.post {
	padding-top: 1em;
	padding-bottom: 2em;
}
.blog-posts h3 {
	margin-top: 2em;
}
div.description.e-content ul li {
	margin-bottom: 0.6em;
}
.readmore {
	width: 8em;
	height: auto;
	margin-top: 1em;
	margin-bottom: 3em;
	margin-left: 0;
	font-size: 0.9em;
	text-align: center;
	border-radius: 0.5em;
	color: #ffffff;
	background-color: #00893f;
}
.readmore a, .readmore a:hover, .readmore a:active {
	color: #ffffff;
}
.readmore:hover {
	background-color: #00c15b;
}
.readmore:active {
	background-color: #377a47;
}

.readmore p {
	padding: 0.5em;
}


@media only screen and (min-width: 44em) {
	.blogContainer {
		display: -webkit-flex;
		display: flex;
		-webkit-flex-direction: row;
		flex-direction: row;
		-webkit-align-items: flex-start;
		align-items: flex-start;	
	}
	h3.archiveHeader {
		padding-left: 4em;
	}
	.blog-posts {
		width: 70%;
	}
	
	img.postIMG {
		width: 80%;
	}
	.sidebar {
		width: 30%;
	}
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
	.blogContainer {
		display: block;
	}
	.blog-posts, .sidebar {
		float: left;
	}
}
/*
**	----------------------------------------------------------------------
**	Contact page main section styles
**  ----------------------------------------------------------------------
*/
svg.contactClover {
	width: 100%;
	max-width: 8em;
	display: none;
}
label {
	display: block;
}
#contactInfo {
	width: 100%;
	padding-top: 1em;
	padding-right: 1em;
	padding-left: 1em;
}
#contactInfo p {
	font-size: 1.05em;
	line-height: 1.3em;
}
.contact {
	margin-top: 1em;
	margin-bottom: 1em;
}	
p.contact {
	margin-top: 0;
	margin-bottom: 0;
	}
#contactInfo header, #formContainer header {
	position: static;
}

#formContainer {
	width: 100%;
	padding-top: 1em;
	padding-left: 1em;
	padding-right: 1em;
}
form {
	border: 3px solid #b1d9bb;
	border-radius: 0.5em;
	padding: 0.5em;
	margin-bottom: 2em;
}
input, select, textarea {
	margin-top: 0.2em;
	margin-bottom: 0.5em;
}
form h4 {
	width: 100%;
	margin-top: 1em;
	margin-bottom: 0.7em;
	border-bottom: 1px solid #b1d9bb;
}
select, input[type="text"], input[type="email"], textarea, input[type="submit"] {
	width: 100%;
	outline-color: #b1d9bb;
}

.special {
	font-weight: bold;
	color: #377a47;
}
input[type="submit"] {
	padding: 0.5em;
	border: 2px solid #00893f;
	border-radius: 0.3em;
	background-color: #00893f;
	/* background-color: #a1c8ab; */
	outline: none;
	color: #ffffff;
}
input[type="submit"]:hover {
	background-color: #00ad3e;
	border-color: #00ad3e;
	color: #ffffff;
}
input[type="submit"]:active {
	background-color: #007c2d;
	border-color: #007c2d;
	color: #ffffff;
}
select {
	background-color: rgba(177, 217, 187, 0.2) !important;
}
.instruction {
	font-size: 0.9em;
	font-style: italic;
	color: #377a47;
}
.alert {
	
	margin-top: 0;
	padding: 0.3em;
	border-radius: 0.3em;
	color: #ffffff;
	background-color: #7072ef;
	font-size: 0.9em;
	font-style: italic;

}
#sendmail {
	width: 100%;
	display: none;
}
/*	Media Query - Medium screen - min 720px at 16px base em  */
@media only screen and (min-width: 45em) {
	/*  This is the contact info in the left column on contact page - not in topcontact or footer */
	#contactInfo {
		float: left;
		width: 30%;
		vertical-align: top;
		padding-right: 1em;
		
	}
	svg.contactClover {
		display: inherit;
		width: 40%;
		margin-left: 0;
		margin-right: auto;
	}
	#formContainer {
		float: left;
		vertical-align: top;
		width: 70%;
		
	}
	.formFullWidth {
		width: 100%;
		display: block;
	}
	.formHalfWidth {
		width: 50%;
		float: left;
		padding-right: 0.3em;
	}
	select, input[type="text"], input[type="email"], textarea, input[type="submit"], .alert {
		width: 95%;
	}

}



/*
**	----------------------------------------------------------------------
**	Thanks page main section styles
**  ----------------------------------------------------------------------
*/
#thanks {
	text-align: center;
	padding-top: 2em;
	padding-bottom: 5em;
	background: url('../images/sendmail.svg') no-repeat top center;
	background-size: contain;
	
}
.bigThanks {
	font-size: 1.5em;
	color: #62bd63;
}

/*	Media Query - Medium screen - min 720px at 16px base em                */
@media only screen and (min-width: 45em) {
	#thanks {
		text-align: left;
		padding-left: 2em;
		padding-bottom: 7em;
	}
	.bigThanks {
			font-size: 2em;
	}
}
/*
**	----------------------------------------------------------------------
**	Shop page styles
**  ----------------------------------------------------------------------
*/
#categoriesContainer {
	display: -webkit-flex;
	display: flex;
	-webkit-flex-direction: row;
	flex-direction: row;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-justify-content: space-around;
	justify-content: space-around;
	-webkit-align-items: flex-start;
	align-items: flex-start;	

}
.categoryButton {
	width: 12em;
	height: auto;
	margin-top: 1.5em;
	margin-bottom: 1.5em;
	margin-left: 0.5em;
	margin-right: 0.5em;
	text-align: center;
	border-radius: 0.5em;
	color: #ffffff;
	/*background-color: #104325;*/
	/*background-color: #9091dd;*/
	background-color: #7072ef;
	box-shadow: 3px 3px 5px #2a2a2a;
}
.categoryButton p {
	padding: 0 1em;
	font-size: 1em;
	line-height: 0.9em;
	font-family: "Nova Oval";
}
.categoryButton a, .categoryButton a:hover, .categoryButton a:active {
	color: #ffffff;
}
.categoryButton:hover {
	/*background-color: #00c15b;*/
	/*background-color: #7f49ea;*/
	background-color: #55569d;
	box-shadow: 2px 2px 3px #2a2a2a;
}
.categoryButton:active {
	/*background-color: #377a47;*/
	/*background-color: #522c9e;*/
	background-color: #3d3d70;
	box-shadow: 1px 1px 2px #2a2a2a;
}

/*
**	----------------------------------------------------------------------
**	Shop page subcategories styles
**  ----------------------------------------------------------------------
*/
#subcategoriesContainer {
	display: -webkit-flex;
	display: flex;
	-webkit-flex-direction: row;
	flex-direction: row;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-justify-content: space-around;
	justify-content: space-around;
	-webkit-align-items: flex-start;
	align-items: flex-start;	

}
.subcategoryButton {
	
	height: auto;
	margin-top: 1.5em;
	margin-bottom: 1.5em;
	margin-left: 0.5em;
	margin-right: 0.5em;
	text-align: center;
	border-radius: 0.5em;
	color: #ffffff;
	/*background-color: #104325;*/
	/*background-color: #9091dd;*/
	background-color: #104325;
	box-shadow: 3px 3px 5px #2a2a2a;
}
.subcategoryButton p {
	padding: 0 1em;
	font-size: 1em;
	line-height: 0.9em;
	font-family: "Nova Oval";
}
.subcategoryButton a, .subcategoryButton a:hover, .subcategoryButton a:active {
	color: #ffffff;
}
.subcategoryButton:hover {
	/*background-color: #00c15b;*/
	/*background-color: #7f49ea;*/
	background-color: #55569d;
	box-shadow: 2px 2px 3px #2a2a2a;
}
.subcategoryButton:active {
	/*background-color: #377a47;*/
	/*background-color: #522c9e;*/
	background-color: #3d3d70;
	box-shadow: 1px 1px 2px #2a2a2a;
}

/*
**	----------------------------------------------------------------------
**	Footer section styles
**  ----------------------------------------------------------------------
*/
footer {
	width: 100%;
	clear: both;
	background-color: #0B2817;
	color: #ffffff;
	font-size: 0.9em;

}
#footerCTA {
	-webkit-flex: 1 0 100%;
	flex: 1 0 100%;
	/* width: 100%; */
	font-size: 1.3em;
	text-align: center;
	padding: 0.5em;
	/*background-color: #e07901;*/
	/*background-color: #9091dd;*/
	background-color: #7072ef;
}
#footerCTA > a {
	text-decoration: none;
	color: #ffffff;
	outline: none;
}
#footerCTA > a:hover {
	color: #ffffff;
}
#footerCTA > a:active {
	color: #ffffff;
}

#footerCTA:hover {
	/*background-color: #ff9b29;	*/
	/*background-color: #7f49ea;*/
	background-color: #55569d;
}
#footerCTA:active {
	/*background-color: #b15f00;	*/
	/*background-color: #522c9e;*/
	background-color: #3d3d70;
}
#footerCTA p {
	margin: 0;
	width: 100%;
}

#footerContent {
	display: -webkit-flex;
	display: flex;
	-webkit-flex-direction: row;
	flex-direction: row;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-justify-content: space-between;
	justify-content: space-between;
}

#footerLogo {
	-webkit-flex: 1 0 50%;
	flex: 1 0 50%;
	order: 1;
	padding: 0.5em;
}
#footerLogo svg {
	width: 9em;
	height: auto;
}
#footerContact {
	-webkit-flex: 1 0 80%;
	flex: 1 0 80%;
	order: 3;
	-webkit-align-self: flex-end;
	align-self: flex-end;
	text-align: left;
	font-size: 1.2em;
}
svg#location, svg#phone, svg#fax {
	height: 1em;
	width: 1em;
}
svg#envelope {
	width: 1em;
	height: 0.8em;
}
.emailSmall {
	font-size: 0.8em;
}
#footerSocial  {
	padding-top: 1em;
	-webkit-flex: 1 0 20%;
	flex: 1 0 20%;
	order: 4;
	text-align: right;
	-webkit-align-self: flex-end;
	align-self: flex-end;
}
#footerSocial svg {
	width: 2em;
	height: 2em;
}
a svg #fb, a svg #in, a svg #ma, a svg #li, a svg #pi {
	fill: #ffffff;
}

a svg:hover #fb, a svg:hover #in, a svg:hover #ma, a svg:hover #li, a svg:hover #pi {
	/* fill: #0aff00; */
	fill: #9cff98;
}
#footerLinks {
	-webkit-flex: 1 0 50%;
	flex: 1 0 50%;
	order: 2;
	/* width: 100%; */
	text-align: right;
	font-size: 1.2em;
}
footer ul {
	margin: 0;
	padding: 0.5em;
	list-style-type: none;
}
footer a {
	color: #ffffff;
}
footer a:hover {
	/* color: #0aff00; */
	color: #9cff98;
}
footer a:active {
	color: #377a47;
}

#footerText {
	/* width: 100%; */
	text-align: center;
	padding: 1em;
	/* background-color: #504965; */
	font-size: 0.9em;
	font-style: italic;
}
a.policy {
	font-weight: 400;
	text-decoration: underline;
}


@media only screen and (min-width: 34em) {
}
@media only screen and (min-width: 47em) {
	#footerLogo {
		-webkit-flex: 1 1 20%;
		flex: 1 1 20%;
	}
	#footerContact {
		-webkit-flex: 1 1 36%;
		flex: 1 1 36%;
		order: 2;
		-webkit-align-self: flex-start;
		align-self: flex-start;
	}
	#footerSocial {
		padding-top: 0;
		-webkit-flex: 1 1 25%;
		flex: 1 1 25%;
		order: 3;
		-webkit-align-self: flex-start;
		align-self: flex-start;

	}
	#footerSocial ul li {
		display: inline;
	}
	#footerLinks {
		-webkit-flex: 1 1 19%;
		flex: 1 1 19%;
		order: 4;
	}
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
	#footerContent {

	}
	#footerLogo {
		flex: 0 0 30%;
	}
	
	#footerSocial {
		flex: 0 0 100%;
		order: 4;
		align-self: flex-start;

	}
	#footerContact {
		flex: 0 0 90%;
		order: 3;
	}
	
	#footerLinks {
		padding-top: 0.5em;
		flex: 0 0 50%;
		order: 2;
	}
	#footerSocial ul li {
		display: inline;
	}
	footerText {
	}
}

.fb-share-button, .tw-share-button {
	display: inline-block !important;
	vertical-align: top;
	padding-bottom: 0.5em;
}
