@charset "utf-8";
/* CSS Document */


/* MENU BAR */

.toggle,
[id^=drop] {
	display: none;
}

/* Giving a background-color to the nav container. */
nav { 
	margin:0;
	padding: 0;
	/* background-color:#0260b5; */
	font-size:1em;
	color:#0C3D1E; /* DARK GREEN */
	/*font-family: 'Montserrat', sans-serif;*/
	font-family: 'Didact Gothic', sans-serif;
	/* border-bottom: 4px solid #FFF; */	
}



/* Since we'll have the "ul li" "float:left"
 we need to add a clear after the container. */

nav:after {
	content:"";
	display:table;
	clear:both;
}

/* Removing padding, margin and "list-style" from the "ul",
 * and adding "position:reltive" */
nav ul {
	float: right;
	padding:0;
	margin:0;
	list-style: none;
	position: relative;
	}

/* Positioning the navigation items inline */
nav ul li {
	margin: 0px;
	display:inline-block;
	float: left;
	/* background-color: #0260b5; DARK BLUE */
	}

/* Styling the links */
nav a {
	display:block;
	padding:14px 20px;	
	color:#0C3D1E; /* DARK GREEN */
	font-size:1.3em;
	text-decoration:none;
	transition:0.3s;
}


nav ul li ul li:hover { background: #076737; }

/* Background color change on Hover */
nav a:hover { 
	background-color:#076737; /*BRIGHT GREEN*/
	color:#FFF;
}

/* Hide Dropdowns by Default
 * and giving it a position of absolute */
nav ul ul {
	display: none;
	position: absolute; 
	/* has to be the same number as the "line-" of "nav a" */
	top: 1.5em; 
}

	
/* Display Dropdowns on Hover */
nav ul li:hover > ul {
	display:inherit;
}


	
/* Fisrt Tier Dropdown */
nav ul ul li {
	width:auto;
	float:none;
	display:list-item;
	position: relative;
	z-index:9999; !important
}

	
/* Change ' +' in order to change the Dropdown symbol */
nav li > a:after { content:  ' +'; }
nav li > a:only-child:after { content: ''; }

.centered
{
	text-align:center;	
}


.telephone
{
	font-family: 'Didact Gothic', sans-serif;
	text-align:right;
	padding-right: 2%;
	font-size: 1.4em;
	font-weight:bold;
	width: 400px;
}

.greenHeader
{
	font-family: 'Didact Gothic', sans-serif;
	font-size: 1.5em;
	color:#076737; /*BRIGHT GREEN*/
	text-align:center;
	padding: 0.25em 0 0.25em 0.25em;	
}

.greenHeaderLeft
{
	font-family: 'Didact Gothic', sans-serif;
	font-size: 1.5em;
	color:#076737; /*BRIGHT GREEN*/
	text-align:left;
	padding: 0.25em 0 0.25em 0.4em;	
}

.shortDescription
{
	font-family: 'Montserrat', sans-serif;
	font-size: 1.25em;
	text-align: center;
	color:#0C3D1E; /* DARK GREEN */
	margin: 15px 15%;
	line-height: 125%;
}

.shortDescriptionLeft
{
	font-family: 'Montserrat', sans-serif;
	font-size: 1.25em;
	text-align: left;
	color:#0C3D1E; /* DARK GREEN */
	margin: 15px 20%;
	line-height: 125%;
}


.blurb
{
	font-family:Arial, Helvetica, sans-serif;
	font-size: 1.25em;
	text-align: left;
	color: #000000;
	margin: 15px 10%;
	line-height: 125%;	
}

.blurbCentered
{
	font-family: 'Didact Gothic', sans-serif;
	font-size: 1.25em;
	text-align:center;
	color: #000000;
	line-height: 125%;	
	margin: auto 0;
}

.blurbCentered img
{
	max-width: 100%;
	height: auto;
	padding-top: 10px;	
}

.newsletterBox
{
	background-color: #93A78B;
	border: 1px solid #0C3D1E;
	width: 80%;
	margin: 0 auto;
	height: auto;	
}

.box-footer a
{
	color:#0C3D1E; /* DARK GREEN */
}

.box-footer a:hover
{
	color:#076737; /*BRIGHT GREEN*/
	text-decoration:none;
}	

.row {
  display: -ms-flexbox; /* IE10 */
  display: flex;
  -ms-flex-wrap: wrap; /* IE10 */
  flex-wrap: wrap;
  padding: 0 4px;
}

/* Create four equal columns that sits next to each other */
.column {
  -ms-flex: 25%; /* IE10 */
  flex: 25%;
  max-width: 25%;
  padding: 0 4px;
}

.column img {
  margin-top: 8px;
  vertical-align: middle;
  width: 100%;
}

.column img:hover{
	opacity: 0.5;
	cursor:pointer;
}

.formBox
{
	width: 95%;
	height: auto;
	margin-left:2em;
	background-color:rgba(0, 175, 156, 0.1); /* PALE GREEN */
	padding: 1em;
	box-shadow: 0 0 0 3px #fff inset;
}

.samples
{
	width: 100%;
	height: auto;
	margin: 10px auto;	
}

.samples img
{
	max-width:45%;
	padding: 0.5em;
	height: auto;
	margin: auto;	
}


/* Create two equal columns that floats next to each other */
.sampleImageColumn {
  float: left;
  width: 50%;
  padding: 0 10px;
}

/* Clear floats after the columns */
.samplesRow:after {
  content: "";
  display: table;
  clear: both;
}

.servicesButton
{
	display:block;
	background-color:#628E57;
	padding: 0.75em;
	color: #FFFFFF;
	font-family:Arial, Helvetica, sans-serif;
	font-size: 1em;
	width: 200px;
	text-align:center;
	margin: 1em auto 0 auto;
	border-radius: 4px;
	border: 1px solid #FFF;
}

.servicesButton a
{
	color: #FFF;
	text-decoration: none;	
}

.servicesButton:hover
{
	background-color:#090;
	color:#000;
	border: 1px solid #000;
}

.video1
{
	margin: 0 5%;	
}

#background-video {
  width: 80vw;
  height: auto;
  margin: auto;
 
}



/* MEDIA QUERIES
--------------------------------------------- */
@media all and (max-width : 1080px) {
.telephone
{
	text-align:center;
	padding:0;	
}

}

@media all and (max-width : 960px) {
	
nav {
		margin: 0;	
	}

	/* Hide the navigation menu by default */
	/* Also hide the  */
	.toggle + a,
	.menu {
		display: none;
		 
	}

	/* Styling the toggle lable */
	.toggle {
		display: block;
		/* background-color: #0260b5; /*Dark Blue */
		background-color: #148E41; /* LIGHTER GREEN */
		padding:14px 20px;	
		color:#FFFFFF;
		font-size:17px;
		text-decoration:none;
		border:none;
		text-align:center;
		/* border-radius: 8px; */
	}

	.toggle:hover {
		background-color:#076737; /*BRIGHT GREEN*/
		color: #000000;
		text-align:center;
		
	}

	/* Display Dropdown when clicked on Parent Lable */
	[id^=drop]:checked + ul {
		display: block;
	}

	/* Change menu item's width to 100% */
	nav ul li {
		display: block;
		width: 100%;
		text-align:center;
		}

	nav ul ul .toggle,
	nav ul ul a {
		padding: 10px 40px;
		
		
		
	}
	
	nav ul li
	{
		border-bottom:1px dotted #000000;	
	}

	/* nav ul ul ul a {
		padding: 0 80px;
	}
*/
	nav a:hover,
 	nav ul ul ul a {
		background-color:#076737; /*BRIGHT GREEN*/
		
	}

	/* Hide Dropdowns by Default */
	nav ul ul {
		float: none;
		position:static;
		color: #ffffff;
		/* has to be the same number as the "line-" of "nav a" */
	}
		
	/* Hide menus on hover */
	nav ul ul li:hover > ul,
	nav ul li:hover > ul {
		display: none;
	}
		
	/* Fisrt Tier Dropdown */
	nav ul ul li {
		display: block;
		width: 100%;
	}

	nav ul ul ul li {
		position: static;
		/* has to be the same number as the "width" of "nav ul ul li" */ 
	}
	
	.shortDescriptionLeft
{
	margin: 15px 5%;
	line-height: 125%;
}

.sampleImageColumn
{
	width: 100%;
	float: none;
	text-align:center;
	margin: 0;
}

.sampleImageColumn img
{
	max-width: 100%;
	height: auto;	
}

}
	

@media all and (max-width: 850px) {

nav a
{
	font-size: 1.2em;	
}

.shortDescription
{
	margin: 15px 2%;	
}

.blurb
{
	margin: 15px 2%;	
}
	
}

@media screen and (max-width: 800px) {
  .column {
    -ms-flex: 50%;
    flex: 50%;
    max-width: 50%;
  }
  
  
  
}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .column {
    -ms-flex: 100%;
    flex: 100%;
    max-width: 100%;
  }
  
  #background-video
  {
	  display:none;
  }
  
  .greenHeaderLeft
  {
		text-align:center;  
  }
  .blurb
  {
	  text-align:left;
  }
}

@media all and (max-width : 330px) {
nav ul li {
		display:block;
		width: 94%;
	}
}