﻿/*===================== 
	Color information
	
	- Dark Green: #172F19;
	- Orange: #F6911D;
	- Green: #4e8134;
	-
		 
=======================*/
/*===================== 
	CSS reset/normalize 
=======================*/

/**Correct `block` display not defined in IE 8/9.**/
article,aside,details,figcaption,figure,footer,header,hgroup,
main,nav,section,summary {display: block;}
pre {white-space: pre-wrap;}
small { font-size: 80%;}


/*===================== 
	     Font 
=======================*/
@import url('https://fonts.googleapis.com/css?family=Roboto:400,700,900');

/*===================== 
	base styles 
=======================*/

html {
    font-family: 'Roboto', sans-serif;
    -ms-text-size-adjust: 100%; /* 2 */
    -webkit-text-size-adjust: 100%; /* 2 */
	}

body {
    margin: 0;
	}

svg:not(:root) {overflow: hidden;/*reset*/}
	
/* clear floats */ 
.group:before,
.group:after {content: ""; display: table;} 
.group:after {clear: both;}
.group {zoom: 1;}	
.clear { clear: both;}

hr {
    -moz-box-sizing: content-box;
    box-sizing: content-box;
	border-style: solid;
    height: 0;
	} 

img { border: 0;}
.orange{color:#F6911D;}
	
/*===================== 
	typography 
=======================*/

h1, h2, h3, h4, h5, h6 {
	margin: 0;
	padding: 0;
	}
	h1 {
		font-size: 30px;
		color:#000;
		padding:3% 0 2% 0;
	}
	.green_wrap > h1 {
		font-size: 30px;
		text-align:center;
		font-weight:900;
		padding:1% 0;
		color:#fff;
	}
	h2 {
		font-size: 30px;
		padding:0 0 2% 0;
		color:#000;
	}
	h3{
		font-size: 21px;
	}
p {
	line-height:24px;
	font-size:16px;
	margin: 0;
	}

.bold {font-weight: bold;}

/*===================== 
	link styles 
=======================*/

a:focus {outline: thin dotted;/*reset*/
	}
	
a,
a:link, 
a:visited, 
a:active {
	outline: 0;/*reset*/
    color: #4e8134;
    text-decoration:none;
	}
	a:hover  {
		outline: 0;/*reset*/
		text-decoration: none;
		color: #ccc;
		}  

/*===================== 
	header styles 
=======================*/
header {
	margin:0;
	padding:0;
	width: 100%;
	background:#172F19;
	border-bottom: 8px #F6911D solid;
	}
img.main_logo{
	display:block;
	float:left;
	padding:1% 0 1% 4%;
	width:20%;
}
.phone{
	float:right;
	display:block;
	font-size:30px;
	padding: 2% 4% 0 0;	
}

/*===================== 
	nav styles 
=======================*/
.nav_wrapper{
	margin:0;
	padding:0;
	}
nav.primary {
	display:block;
	width:70%;
	float:right;
	margin:0;
	padding:3.5% 0 0 0;
	text-align:right;
	overflow:hidden;
	position:relative;
	z-index:999;
	}
	nav.primary ul {
		padding:0;
		margin:0;
		display:inline-block;
		}
		nav.primary ul li {
			padding:0;
			margin:0;
			list-style-type:none;
			display:inline-block;
			}
			nav.primary ul li a {
				color:#F6911D;
				display:block;
				padding:15px 25px;
				font-size: 18px;
				text-decoration:none;
				}	
			nav.primary ul li a:hover {
				color:#fff;
				}
.nav__dropdown {
	padding: 2rem;
	white-space: nowrap;
	top: 100%;
	right: 0;
	background-color: #fff;
	transition: 300ms cubic-bezier(0.25, 2, 0.25, 1);
	-webkit-transform-origin: center top;
		  transform-origin: center top;
	-webkit-transform: rotateX(-30deg);
		  transform: rotateX(-30deg);
	opacity: 0; }

.nav__dropdown.show {
	-webkit-transform: rotateX(0deg);
			transform: rotateX(0deg);
	opacity: 1;
	visibility: visible;
	box-shadow: 0 0 20px 0 rgba(49, 49, 49, 0.25);
	transition: 300ms cubic-bezier(0.25, 2, 0.25, 1), box-shadow 1000ms cubic-bezier(0.25, 2, 0.25, 1); }
.nav__dropdown:after {
	content: '';
	display: block;
	position: absolute;
	height: 0;
	width: 0;
	border-bottom: 8px solid #fff;
	border-left: 8px solid transparent;
	border-right: 8px solid transparent;
	content: '';
	top: -8px;
	right: 2rem; }
.nav__dropdown-wrapper {
	display: inline-block;
	-webkit-perspective: 500px;
			perspective: 500px; }

.nav__dropdown-toggle {
	display: inline-block;
	border: none;
	background: none;
	text-decoration: none;
	color: #F6911D;
	padding:15px 20px;
	font-size: 18px;
}
.nav__dropdown-toggle:hover{
  color:#fff;
  cursor:pointer;
}
.nav__dropdown li {
	display: block !important; }
.nav__dropdown a {
	display: inline-block;
	padding: .5rem 2rem;
	font-weight: 400;
	font-size: 1.6rem; 
	}
.nav__dropdown a:hover{
	color:#fff;
	background: #F6911D;
}

/*===================== 
	content styles 
=======================*/

/********* Grid and hover effect ************/
.grid {
	position: relative;
	display:block;
	margin: 0 auto;
	padding: 1em 0;
	list-style: none;
	text-align: center;
}

/* Common style */
.grid figure {
	position: relative;
	float: left;
	overflow: hidden;
	margin: 10px 3.5%;
	width: 26%;
	background: #000;
	text-align: center;
	cursor: pointer;
}

.grid figure img {
	position: relative;
	display: block;
	height: 100%;
	width: 100%;
}

.grid figure figcaption {
	padding: 25% 0;
	font-size: 20px;
	position:absolute;
	top:0;
	left:0;
	background:rgba(0,0,0,.6);
	height:100%;
	width:100%;
	-webkit-transition: all .5s ease; /* Safari and Chrome */
	-moz-transition: all .5s ease; /* Firefox */
	-ms-transition: all .5s ease; /* IE 9 */
	-o-transition: all .5s ease; /* Opera */
	transition: all .5s ease;
}
.grid figure:hover figcaption{
	opacity:0;
	visibility:hidden;
}
.grid figure figcaption h2,
.grid figure figcaption p {
	position:relative;
	margin: 0;
	opacity:1 !important;
}

.grid figure figcaption h2 {
	word-spacing: -0.15em;
	font-weight: 700;
	letter-spacing: 1px;
	color:#fff;
	
}

.grid figure figcaption p {
	letter-spacing: 1px;
	font-size: 80%;
	color:#fff;
	font-weight: 400;
}


/*---------------*/
/***** Effect *****/
/*---------------*/

figure.effect {
}

figure.effect img {
	display: block;
	width: 100%;
	position: relative;
	bottom:0;
	-webkit-transition: all .5s ease; /* Safari and Chrome */
	-moz-transition: all .5s ease; /* Firefox */
	-ms-transition: all .5s ease; /* IE 9 */
	-o-transition: all .5s ease; /* Opera */
	transition: all .5s ease;
}

/********* End of Grid and hover effect ************/
	
/*===================== 
	slideshow styles 
=======================*/
.cycle-slideshow img{
	width:100%;
}


/*===================== 
	banner styles 
=======================*/

.banner {
	}

/*===================== 
	layout styles 
=======================*/

.wrap {
	width: 100%;
	margin: 0;
	padding:0;
	}
.icon_wrap{
	width:100%;
	margin:0;
	padding:0;
	background:url(../siteart/extra_clean_paper.png) repeat;
}
.green_wrap{
	width:100%;
	margin:0;
	padding:0;
	background:#4e8134;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	}
	
.col-1-6 { width: 16%;}
.col-1-5 { width: 20%;}
.col-1-4 { width: 24%;}
.col-1-3 { 
	width: 32%;
	box-sizing:border-box;
	float:left;
	display:block;
	padding:4% 2%;
}
.col-1-2 { 
	width: 48%;
	box-sizing:border-box;
	float:left;
	display:block;
	padding:4% 2%;
	}
.col-2-3 { 
	width: 65%;
	box-sizing:border-box;
	float:left;
	display:block;
	padding:4% 2%;
}
.col-3-4 { width: 75%;}

/*===================== 
	footer styles 
=======================*/

footer {
	margin: 0;
	width: 100%;
	background:#333;
	}
	
a.footerlink:link,
a.footerlink:visited, 
a.footerlink:active {
	text-decoration: none; 
	font-size:11px;
	color: #ababab;
	}
	a.footerlink:hover {
		text-decoration:none; 
		font-size:11px;
		color: #ababab;
		}

.footertext {
	font-size:11px; 
	color: #ababab;
	}

.smallfootertext {
	font-size:11px; 
	color: #ababab;
	}

.divfooter {
	color: #ababab;
	max-width:800px; 
	text-align:center; 
	margin:0 auto;
	box-sizing:border-box;
	padding:2%;
	}
/*=========================== 
	Responsive styles 
=============================*/
@media screen and (max-width: 1300px)  {
img.main_logo{width:26%;}
}
@media screen and (max-width: 1120px)  {
nav.primary {overflow:visible;}
}
@media screen and (max-width: 750px)  {
img.main_logo{
	width:40%;
	float:none;
	margin:auto;
	display:block;
	padding:1% 0;
}
.phone{
	float:none;
	margin:auto;
	padding:.5% 0;
	text-align:center;
	font-size:21px;
}
nav.primary {
	display:block;
	width:100%;
	float:none;
	margin:0;
	padding:2% 0 0 0;
	text-align:center;
	overflow:visible;
}
.green_wrap > h1 {font-size: 21px; font-weight:700;}
.green_wrap{
	box-sizing:border-box;
	padding:0 3%;
}
.col-1-2 { 
	width: 90%;
	box-sizing:border-box;
	float:none;
	display:block;
	margin:auto;
	padding:4% 0;
	}
.col-1-3 { 
	width: 90%;
	box-sizing:border-box;
	float:none;
	display:block;
	margin:auto;
	padding:4% 0;
}
.col-2-3 { 
	width: 90%;
	box-sizing:border-box;
	float:none;
	display:block;
	margin:auto;
	padding:4% 0;
}
}
@media screen and (max-width: 630px)  {
.grid figure {
    position: relative;
    float: none;
    overflow: hidden;
    width: 50%;
    background: #000;
    text-align: center;
    cursor: pointer;
	margin:3% auto;
	display:block;
}
.cycle-slideshow{display:none;}
img.main_logo{width:55%;}
}
@media screen and (max-width: 460px)  {
.phone{font-size:16px;}
.grid figure {width: 75%;}
.green_wrap > h1 {font-size: 18px;}
}