/*
	Theme Name: Happy Roots
	Description: Custom Genesis child theme for Happy Roots
	Author: David Green
	
	Template: genesis
*/
 

/* Table of Contents

	01 Import Fonts
	02 Defaults
	03 Typography
		- Font Color
		- Font Family
		- Font Size
		- Font Miscellaneous
	04 Layout
		- Structure
		- 1152px CSS Grid
		- Header
		- Main Content
		- Post Info & Meta
		- Column Classes
		- Miscellaneous
	05 Menus
		- Primary Navigation Extras
	06 Headings
	07 Lists
	08 Post Navigation
	09 Comments
	10 Sidebars
	11 Footer
		- Footer Widgets
	12 Forms & Buttons
		- Gravity Forms
	13 Images & Captions
	14 Media Queries
		- max-width: 1024px
		- max-width: 768px
		- max-width: 480px

*/


/*
02 Defaults
---------------------------------------------------------------------------------------------------- */

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,
input, menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	border: 0;
	margin: 0;
	padding: 0;
	vertical-align: baseline;
}

html {
	font-size: 14px; /* 16px browser default */
}

body {
	background-color: #fff;
	line-height: 1.2;
}

body,
input,
select,
textarea,
.footer-widgets-1,
.footer-widgets-2,
.footer-widgets-3 {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	
}

input {
	-webkit-appearance: none;
}

input[type="checkbox"], input[type="radio"] {
	-webkit-appearance: checkbox;
	box-shadow: none;
	width: auto;
}

a,
a:visited,
button,
input[type="button"],
input[type="submit"],
.btn {
	-moz-transition: all 0.1s ease-in-out;
	-webkit-transition: all 0.1s ease-in-out;
	transition: all 0.1s ease-in-out;
}

::-moz-selection {
	background-color: #1e1e1e;
	color: #fff;
}

::selection {
	background-color: #1e1e1e;
	color: #fff;
}

a img {
	border: none;
}


/*
03 Typography
-------------------------------------------------------------------------------------------------------

	This section covers font colors, families, size, styles and weight.

	This style sheet uses rem values with a pixel fallback.
	The rem values are calculated per the examples below:

	12 / 16 =		0.75rem
	14 / 16 =		0.875rem
	16 / 16 =		1rem	
	18 / 16 =		1.125rem
	20 / 16 =		1.25rem
	24 / 16 =		1.5rem
	30 / 16 =		1.875rem
	36 / 16 =		2.25rem
	42 / 16 =		2.625rem
	48 / 16 =		3rem
	
	Further reading on the use and compatibility of rems:
	
	http://caniuse.com/rem
	http://snook.ca/archives/html_and_css/font-size-with-rem
	
*/

/* 03a - Font Color ----------- */

a:hover,
body,
h2 a,
h2 a:visited,
h4.widgettitle a,
input,
.author,
.date,
.genesis-nav-menu a,
.genesis-nav-menu li li a,
.genesis-nav-menu li li a:link,
.genesis-nav-menu li li a:visited,
.post-comments,
#title a,
#title a:hover {
	color: #1e1e1e;
}

a,
h2 a:hover,
.genesis-nav-menu li a:hover,
.genesis-nav-menu li:hover a,
.genesis-nav-menu li li a:hover,
.genesis-nav-menu .current-menu-item a {
	color: #000;
}

.genesis-nav-menu li a:hover, .genesis-nav-menu li:hover a,
.genesis-nav-menu li li a:hover{
	background-color: #939598;
	background-image: none;
}

.post-info,
.post-meta,
#description {
	color: #636363;
}

blockquote::before,
blockquote p,
input,
select,
textarea {
	color: #999;
}

button,
input[type="button"],
input[type="submit"],
.btn,
.genesis-nav-menu .highlight-menu-item a,
.genesis-nav-menu .highlight-menu-item a:hover,
.navigation li a,
.navigation li a:hover,
.navigation li.active a,
.navigation li.disabled {
	color: #fff;
}

/* 03b - Font Family ----------- */

body,
input,
textarea,
.author-box h1 {
	font-family: 'Open Sans', sans-serif;
	color: #404040;
}

#content p {
	font-weight: 600;
}

h1,
h2,
h3,
h4,
h5,
h6,
.entry-title a,
#title {
	font-family: 'Open Sans', sans-serif;
}

/* 03c - Font Size ----------- */

#title {
	font-size: 42px;
	font-size: 2.625rem;
}

h1,
.entry-title,
.entry-title a {
	color: #008100;
	font-family: 'Open Sans', sans-serif;
	font-size: 42px;
	font-weight: 300;
}

blockquote::before {
	font-size: 32px;
	font-size: 2rem;
}

h2 {
	font-size: 30px;
	font-size: 1.875rem;
}

h3 {
	font-size: 24px;
	font-size: 1.5rem;
}

h4,
.archive-title,
.taxonomy-description h1,
.widgettitle {
	font-size: 20px;
	font-size: 1.25rem;
}

h5 {
	font-size: 18px;
	font-size: 1.125rem;
}

h6,
.author-box h1,
.sidebar h2 a {
	font-size: 16px;
	font-size: 1rem;
}


input,
select,
textarea,
.genesis-nav-menu,
.post-info,
.post-meta,
.wp-caption,
#footer p {
	font-size: 12px;
	font-size: 0.75rem;
}


/* 03d - Font Miscellaneous ----------- */

blockquote p {
	font-style: italic;
}

cite {
	font-style: normal;
}

button,
input[type="button"],
input[type="submit"],
h1,
h2,
h3,
h4,
h5,
h6,
.btn,
.entry-title a,
.genesis-nav-menu,
.post-comments,
.post-info .author,
.post-info .date,
.wp-caption,
#footer p,
#title {
}

.wp-caption {
	text-align: center;
}

h2 a,
h2 a:visited,
.genesis-nav-menu a,
.navigation li a,
.widgettitle a,
#title a {
	text-decoration: none;
}

/*
04 Layout
---------------------------------------------------------------------------------------------------- */

/* 04a - Structure ----------- */

#wrap {
	margin: 0 auto;
	max-width:100%;
}

.wrap {
	max-width: 950px;
	margin: 0 auto;
}

#inner {
	clear: both;
	overflow: hidden;
	background: #fff;
	max-width: 100%;
	padding: 0;
}

/* 04b - 1152px CSS Grid ----------- */

#content-sidebar-wrap {
	background: #fff;
	max-width: 100%;
	/*max-width: 960px;
	margin: 0 auto;
	float: none;*/
}

#sidebar-alt {
	width: 15.277777777%; /* 176px / 1152px */
}

.footer-widgets-1,
.footer-widgets-2,
.footer-widgets-3,
.sidebar{
	width: 30.555555555%; /* 352px / 1152px */
}

.sidebar {
	width: 100%;
	max-width: 280px;
}

.content-sidebar-sidebar .sidebar,
.sidebar-content-sidebar .sidebar,
.sidebar-sidebar-content .sidebar {
	width: 37.931034482%; /* 352px / 928px */
}

.content-sidebar-sidebar #content,
.sidebar-content-sidebar #content,
.sidebar-sidebar-content #content {
	width: 56.896551724%; /* 528px / 928px */
}

.content-sidebar #content,
.sidebar-content #content,
#title-area {
	max-width: 620px;
	
}

.content-sidebar-sidebar #content-sidebar-wrap,
.sidebar-content-sidebar #content-sidebar-wrap,
.sidebar-sidebar-content #content-sidebar-wrap {
	width: 80.555555555%; /* 928px / 1152px */
}

.content-sidebar #content-sidebar-wrap,
.full-width-content #content,
.full-width-content #content-sidebar-wrap,
.sidebar-content #content-sidebar-wrap {
	/*width: 100%; /* 1152px / 1152px */*/
	max-width: 100%;
}

#content-sidebar-wrap {
	/*padding: 0 60px;*/
	max-width: 100%;
	padding: 0;
	width: 100%;
	
}

.footer-widgets-1,
.footer-widgets-2,
.sidebar-content #sidebar,
.sidebar-sidebar-content #sidebar,
#content,
#content-sidebar-wrap,
#footer .gototop,
#sidebar-alt,
#title-area {
	float: left;
}

.content-sidebar-sidebar #sidebar-alt,
.footer-widgets-3,
.sidebar,
.sidebar-content #content,
.sidebar-content-sidebar #content-sidebar-wrap,
.sidebar-sidebar-content #content,
.sidebar-sidebar-content #content-sidebar-wrap,
#header .widget-area {
	float: right;
}

/* 04c - Header ----------- */

#header {
	float: left;
	clear: both;
	background: #fff;
	width: 100%;
}

#header .wrap {
	position: relative;
}

#header-container {
	width: 100%;
}


#title {
	line-height: 1;
/*	margin: 40px 0 8px;
	margin: 2.5rem 0 0.5rem;*/
}

.header-image #title {
	margin: 0;
}

#description {
	line-height: 1.25;
}

.header-full-width #title,
.header-full-width #title a,
.header-full-width #title-area {
	width: 100%;
}

.header-image #title,
.header-image #title a,
.header-image #title-area {
	display: block;
	float: left;
	min-height: 120px;
	overflow: hidden;
	width: 225px;
	height: 91px;
}

.header-image #description {
	display: block;
	overflow: hidden;
}

#header #title-area {
	background: url(https://coloradohappyroots.com/wp-content/uploads/2017/04/Happy-Roots-Logo-e1491317984886.jpg) no-repeat;
	margin: 12px 65px -6px 0;
	position: relative;
	z-index: 9998;
	background-position: 0px 25px;
}

.home #header #title-area {

	margin-bottom: -14px;
}

#sitelogo {
	display: inline-block;
}

#header #title-area a, #header h1#title, #header p#title {
	width: 193px;
	height: 91px;
	min-height: 0;
}

/* 04d - Main Content ----------- */

#content {
	padding:0 0 10px;
	/*margin-top: 31px;*/
	width: 100%;
	overflow: hidden;
}

.home #content {
	overflow: visible;
}

.entry,
.page .post.entry {
	margin-bottom: 80px;
	margin-bottom: 5rem;
}

.single .entry {
	margin-bottom: 36px;
	border-bottom: solid 1px #ebebec;
}

.page .entry {
	margin: 0;
}

.entry-content {
	overflow: hidden;
}

.entry-content,
.entry-content p {
	line-height: 1.3;
}

.entry-content p {
	margin-bottom: 26px;
	margin-bottom: 1.625rem;
}

blockquote {
	padding: 24px 64px;
	padding: 1.5rem 4rem;
}

blockquote::before {
	content: "“";
	display: block;
	height: 0;
	left: -20px;
	position: relative;
	top: -10px;
}

#content p {
	line-height: 1.2;
}

#content h2, #content h3, #content h4, #content h5, #content h6 {
	color: #008100;
	font-weight: 300;
}

/* 04e - Post Info & Meta ----------- */

.post-info,
.post-meta {
	clear: both;
	line-height: 1.5;
}

.post-info {
	padding-bottom: 20px;
	margin-top: 13px;
	margin-bottom: 22px;
	border-bottom: solid 1px #dededf;
	color: #414042;
	font-family: Georgia, Times, "Times New Roman", serif;
	font-style: italic;
	font-size: 12px;
}

.post-info a {
	color: #414042;
	text-decoration: none;
	margin-left: 23px;
}

.post-comments {
	margin-left: 16px;
	margin-left: 1rem;
	padding-left: 20px;
	padding-left: 1.25rem;
}

.post-meta {
	border-top: 1px solid #ccc;
	padding-top: 24px;
	padding-top: 1.5rem;
}

.categories,
.tags {
	display: block;
}

/* 04f - Column Classes ----------- */

.five-sixths,
.four-fifths,
.four-sixths,
.one-fifth,
.one-fourth,
.one-half,
.one-sixth,
.one-third,
.three-fifths,
.three-fourths,
.three-sixths,
.two-fifths,
.two-fourths,
.two-sixths,
.two-thirds {
	float: left;
	margin-left: 4.166666666%; /* 48px / 1152px */
}

.one-half,
.three-sixths,
.two-fourths {
	width: 47.9166666666%; /* 552px / 1152px */
}

.one-third,
.two-sixths {
	width: 30.555555555%; /* 352px / 1152px */
}

.four-sixths,
.two-thirds {
	width: 65.277777777%; /* 752px / 1152px */
}

.one-fourth {
	width: 21.875%; /* 252px / 1152px */
}

.three-fourths {
	width: 73.958333333%; /* 852px / 1152px */
}

.one-fifth {
	width: 16.666666666%; /* 192px / 1152px */
}

.two-fifths {
	width: 37.5%; /* 432px / 1152px */
}

.three-fifths {
	width: 58.333333333%; /* 672px / 1152px */
}

.four-fifths {
	width: 79.166666666%; /* 912px / 1152px */
}

.one-sixth {
	width: 13.194444444%; /* 152px / 1152px */
}

.five-sixths {
	width: 82.638888888%; /* 952px / 1152px */
}

.first {
	margin-left: 0;
}

/* 04g - Miscellaneous ----------- */

p.subscribe-to-comments {
	padding: 24px 0 16px;
	padding: 1.5rem 0 1rem;
}

p.pages,
.clear,
.clear-line,
.first {
	clear: both;
}

.clear-line {
	border-bottom: 1px solid #ccc;
	margin-bottom: 26px;
	margin-bottom: 1.625rem;
}

.alignleft,
.archive-page {
	float: left;
}

.alignright {
	float: right;
}

.archive-page {
	width: 50%;
}

.author-box,
.sticky {
	margin-bottom: 80px;
	margin-bottom: 5rem;
}

.author-box,
.author-box h1,
.taxonomy-description {
	line-height: 1.5;
}

.author-box,
.breadcrumb,
.sticky,
.taxonomy-description {
	background-color: #f5f5f5;
	margin-bottom: 48px;
	margin-bottom: 3rem;
	overflow: hidden;
	padding: 32px;
	padding: 2rem;
}


/*
05 Menus
---------------------------------------------------------------------------------------------------- */

.genesis-nav-menu {
	overflow: hidden;
}

#header .genesis-nav-menu {
	float: right;
	margin-top: 48px;
	margin-top: 3rem;
	width: auto;
}

#nav {
	float: left;
	max-width: 100%;
	width: 100%;
	overflow: visible;
	margin-bottom: 47px;
	/*border: solid 1px #e9e9e9;*/
	background: url(images/inner-menu-bg.png) repeat-x;
}

#nav .wrap {
	background: url(images/menu-shadow.png) no-repeat top center;
}

.home #nav {
	float: left;
	background: #008100;
	max-width: 100%;
	width: 100%;
	overflow: visible;
	margin-bottom: 47px;
}

.genesis-nav-menu.menu-primary{
}

.genesis-nav-menu ul {
	float: left;
	width: 100%;
}

.genesis-nav-menu li {
	display: inline-block;
	float: left;
	list-style-type: none;
	text-align: left;
	padding: 0;
	border-left: solid 1px #e8e8e8;
	border-right: solid 1px #e8e8e8;
}

.home .genesis-nav-menu li {
	display: inline-block;
	float: left;
	list-style-type: none;
	text-align: left;
	padding: 0;
	border-left: solid 1px #68a967;
	border-right: solid 1px #68a967;
}

.genesis-nav-menu a {
	display: block;
	padding: 0 20px;
	position: relative;
}

.genesis-nav-menu li.highlight-menu-item {
	margin-left: 20px;
	margin-left: 1.25rem;
}

.genesis-nav-menu .highlight-menu-item a {
	background-color: #1e1e1e;
}

.genesis-nav-menu .highlight-menu-item a:hover {
	background-color: #fff;
}

.genesis-nav-menu li li a,
.genesis-nav-menu li li a:link,
.genesis-nav-menu li li a:visited {
	background: #939597;
	border-bottom: solid 1px #c9cacb;
	padding: 6px;
	position: relative;
	width: 250px;
	color: #000;
	font-size: 16px;
}

.genesis-nav-menu li li a:hover {
	background: #fff !important;
	color: #fff;
}

.genesis-nav-menu li ul {
	left: -9999px;
	position: absolute;
	width: 262px;
	z-index: 99;
}

.genesis-nav-menu li ul ul {
	margin: -55px 0 0 211px;
}

.genesis-nav-menu li:hover ul ul,
.genesis-nav-menu li.sfHover ul ul {
	left: -9999px;
}

.genesis-nav-menu li:hover,
.genesis-nav-menu li.sfHover {
	position: static;
}

ul.genesis-nav-menu li:hover>ul,
ul.genesis-nav-menu li.sfHover ul,
#header .genesis-nav-menu li:hover>ul,
#header .genesis-nav-menu li.sfHover ul {
	left: auto;
}

.genesis-nav-menu li a .sf-sub-indicator,
.genesis-nav-menu li li a .sf-sub-indicator,
.genesis-nav-menu li li li a .sf-sub-indicator {
	position: absolute;
	text-indent: -9999px;
}

#wpadminbar li:hover ul ul {
	left: 0;
}

/* 05a - Primary Navigation Extras ----------- */

.genesis-nav-menu li.right {
	float: right;
	padding: 24px 20px;
	padding: 1.5rem 1.25rem;
}

.genesis-nav-menu li.right a {
	display: inline;
	padding: 0;
}

.genesis-nav-menu li.search {
	padding: 6px 0 0;
	padding: 0.375rem 0 0;
}

.genesis-nav-menu li.rss a {
	background: url(images/rss.png) no-repeat center left;
	margin-left: 20px;
	margin-left: 1.25rem;
	padding-left: 20px;
	padding-left: 1.25rem;
}

.genesis-nav-menu li.twitter a {
	background: url(images/twitter-nav.png) no-repeat center left;
	padding-left: 24px;
	padding-left: 1.5rem;
}


.genesis-nav-menu.menu-primary a{
	padding: 0 22px;
	line-height: 40px;
	color: #008100;
	font-family: "Source Sans Pro", sans-serif;
	font-size: 18px;
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: 1px;
	background-repeat: no-repeat;

}

.home .genesis-nav-menu.menu-primary a{
	color: #fff;

}

.genesis-nav-menu.menu-primary .last-menu-item a {
	margin-right: 0;
}

.genesis-nav-menu.menu-primary a:hover {
	color: #008100;
	background: url(images/menu-smiley.png) #fff no-repeat 3px center;
}

.genesis-nav-menu.menu-primary a:hover:before  {
	content: ' ';
	display: inline-block;
	border-bottom: solid 2px #008100;
	width: 72%;
	margin: 0 auto;
	position: absolute;
	bottom: 10px;
	left: 25px;
	-webkit-transform:rotate(-0.5deg);   
               -moz-transform:rotate(-1deg);  
                -ms-transform:rotate(-1deg);  
                 -o-transform:rotate(-1deg);
                    transform:rotate(-0.5deg);
    min-width: 50px;
}

.genesis-nav-menu.menu-primary .shortlink a:hover:before {
	max-width: 50px;
}

.genesis-nav-menu.menu-primary .medlink a:hover:before {
	max-width: 70px;
}


/*
06 Headings
---------------------------------------------------------------------------------------------------- */

h1,
h2,
h3,
h4,
h5,
h6,
.entry-title a {
	line-height: 1.2;
	margin-bottom: 16px;
	margin-bottom: 1rem;
}

.author-box h1 {
	margin: 0
}

.taxonomy-description h1 {
	margin-bottom: 4px;
	margin-bottom: 0.25rem;
}

.archive-title {
	margin-bottom: 24px;
	margin-bottom: 1.5rem;
}


/*
07 Lists
---------------------------------------------------------------------------------------------------- */

.entry-content ol,
.entry-content ul {
	margin-bottom: 26px;
	margin-bottom: 1.625rem;
}

.entry-content ol li,
.entry-content ul li {
	line-height: 1.625;
}

.entry-content ol li,
.entry-content ul li {
	margin-left: 40px;
	margin-left: 2.5rem;
}

.entry-content ol li {
	list-style-type: decimal;
}

.entry-content ul li {
	list-style-type: disc;
}

.entry-content ol ol,
.entry-content ul ul {
	margin-bottom: 0;
}


/*
08 Post Navigation
---------------------------------------------------------------------------------------------------- */

.navigation li {
	display: inline;
}

.navigation li a,
.navigation li a:hover,
.navigation li.active a,
.navigation li.disabled {
	background-color: #1e1e1e;
	border-radius: 3px;
	cursor: pointer;
	padding: 12px;
	padding: 0.75rem;
}

.navigation li a:hover,
.navigation li.active a {
	background-color: #fff;
}


/*
09 Comments
---------------------------------------------------------------------------------------------------- */

#comments,
#respond {
	line-height: 1.5;
	overflow: hidden;
}

.ping-list,
#comments {
	margin-bottom: 48px;
	margin-bottom: 3rem;
}

#author,
#email,
#url {
	width: 50%;
}

.commentmetadata,
#author,
#email,
#url {
	margin-bottom: 12px;
	margin-bottom: 0.75rem;
}

#comment {
	margin: 12px 0;
	margin: 0.75rem 0;
}

label {
	margin-left: 12px;
	margin-left: 0.75rem;
}

.comment-list li,
.ping-list li {
	list-style-type: none;
	margin-top: 24px;
	margin-top: 1.5rem;
	padding: 32px;
	padding: 2rem;
}

.comment-list li ul li {
	margin-right: -32px;
	margin-right: -2rem;
}

.comment-header {
	overflow: hidden;
}

.comment {
	background-color: #f5f5f5;
	border: 2px solid #fff;
	border-right: none;
}

.comment-content p {
	margin-bottom: 24px;
	margin-bottom: 1.5rem;
}

.bypostauthor {
}

#comments .navigation {
	margin-top: 32px;
	margin-top: 2rem;
}


/*
10 Sidebars
---------------------------------------------------------------------------------------------------- */

.sidebar {
	display: inline;
	line-height: 1;
	max-width: 225px;
}


.sidebar .widget {
	overflow: hidden;
	padding-bottom: 22px;
	border-bottom: solid 4px #008100;
	margin-top: 25px;
}

.sidebar .widget:last-child {
	border-bottom: 0;
}

.sidebar .widget:nth-child(1) {
	margin-top: 0;
}

.sidebar.widget-area ul li {
	list-style-type: none;
	margin-bottom: 6px;
	margin-bottom: 0.375rem;
	word-wrap: break-word;
}

#sidebar {
	text-align: center;
}

#sidebar .widget-title {
	font-size: 24px;
	color:  #008100;
	font-family: 'Open Sans', sans-serif;
	text-transform: uppercase;
	font-weight: 800;
	margin-bottom: 9px;
}

#sidebar h5 {
	font-size: 16px;
	color: #000;
	font-family: 'Open Sans', sans-serif;
	font-weight: 800;
	margin-bottom: 6px;
}

#sidebar a{
	color: #008100;
	font-family: 'Open Sans', sans-serif;
	font-size: 14px;
	line-height: 1.3;
	text-decoration: none;
	transition: none;
}

#sidebar p {
	font-size: 14px;
	color: #000;
	font-family: 'Open Sans', sans-serif;
	font-weight: 600;
	margin-bottom: 8px;
}

#sidebar p:last-child {
	margin-bottom: 0;
}

#sidebar .sourcesanspro {
	color: #666666;
	font-family: "Source Sans Pro", sans-serif;
	font-size: 18px;
	line-height: 1.2;
	font-weight: 400;
}

#sidebar .sourcesanspro-bold {
	color: #4e4c4c;
	font-family: "Source Sans Pro", sans-serif;
	font-size: 18px;
	line-height: 1.2;
	font-weight: 600;
}

#sidebar .sourcesanspro-bold a {
	font-size: 18px;
}


.sidebar a:hover {
	opacity: 0.8;
}

#sidebar .post-info {
	margin-top: 0;
	border: 0;
	display: inline-block;
}

.sidebar .post {
	border: 0;
}

.sidebar h2 {
	margin-bottom: 1px;
	
}

.sidebar .widget_nav_menu {
	margin-bottom: 0;
	padding-bottom: 24px;
}

.sidebar .widget_nav_menu li{
	margin-bottom: 20px !important;
}

.sidebar .widget_nav_menu a{
	font-family: 'Open Sans', sans-serif;
	font-weight: 400;
	font-size: 12px;
	color: #f9a456;
	text-decoration: none;
	text-transform: uppercase;
}

.sidebar .widget_nav_menu a:hover {
	color: #414042 !important;
}

.sidebar .widget_nav_menu a:after {
	 content: "\00bb";
	 margin-left: 3px;
}

#sidebar .post {
	margin-bottom: 0;
}
/*
11 Footer
---------------------------------------------------------------------------------------------------- */

#footer {
	clear: both;
	background: #000;
}

#footer .wrap {
	overflow: hidden;
	padding: 0 0;
}

#footer .creds, #footer .creds a, #footer .gototop, #footer .gototop a {
	color: #fff;
	font-family: "Open Sans", sans-serif;
	font-size: 12px;
	font-weight: 600;
}

#footer .creds {
	float: left;
}

#footer .gototop {
	float: left;
	text-align: left;
}

#footer .gototop a {
	text-decoration: underline;
}

#footer .creds,
#footer .gototop {
	margin: 8px 0;
	margin: 0.5rem 0;
}

/* 11a - Footer Widgets ----------- */

.footer-widgets {
	background: #212121;
	color: #898989;
	font-weight: 600;
	font-size: 12px;
	font-family: 'Open Sans', sans-serif;
	clear: both;
	overflow: hidden;
	padding: 0 0 5px;
}


.footer-widgets p {
	margin-top: 16px;
}

.footer-widgets a {
	text-decoration: none;
	font-size: 12px;
	color: #417cb3;
	font-weight: 400;
	text-decoration: none;
}


.footer-widgets h4.widgettitle {
	text-transform: uppercase;
	font-size: 17px;
	color: #fff;
	margin-bottom: 15px;
	line-height: 1;
	font-family: 'Open Sans', sans-serif;
	font-weight: 400;
}

.footer-widgets-3 ul {
	margin-top: 37px;
}

.footer-widgets .widget {
	margin-bottom: 0;
}

.footer-widgets .widget-area ul li {
	list-style-type: none;
	margin-bottom: 18px;
	word-wrap: break-word;
}

.footer-widgets-1 {
	margin-right: 40px; /* 48px / 1152px */
	max-width: 440px;
	width: 100%;
}

.footer-widgets-2 {
	width: 100%;
	max-width: 460px;
}

.footer-widgets-1, .footer-widgets-2, .footer-widgets-3 {
	
	float: left;
}

.footer-widgets-4 {
	float: right;
	text-align: right;
}

.footer-widgets-4 h4.widgettitle {
	text-transform: uppercase;
	color: #417cb3;
	font-weight: 200;
	font-size: 36px;
	margin-bottom: 6px;
	line-height: 1;
	padding-top: 0;
}

.footer-widgets-4 p {
	font-family: “Trebuchet MS”, “Lucida Sans Unicode”, “Lucida Grande”,” Lucida Sans”, Arial, sans-serif;
	font-size: 14px;
	color: #868686;
	font-weight: 200;
	margin: 0 0 11px 0;
}

.footer-widgets .post-info, .footer-widgets .date {
	border: 0;
	display: inline;
	color: #fff;
	font-size: 12px;
	font-family: Georgia, Times, "Times New Roman", serif;
}

.footer-widgets .featured-content-latest-news h2, .footer-widgets .featured-content-latest-news h2 a {
	display: inline;
	color: #fff;
	font-size: 12px;
	font-family: Georgia, Times, "Times New Roman", serif;
}

.footer-widgets .post {
	border: 0 !important;
	min-height: 0 !important;
}

.footer-widgets .post.entry {
	margin-bottom: 0;
}

.footer-widgets .date {
	margin-right: 5px;
}


.footer-widgets .more-link {
	color: #808285;
}

/* Footer Newsletter sign-up*/

.footer-widgets input[type=text] {
	border: 0;
	padding: 3px 5px;
	border-radius: 0;
	box-shadow: none;
	max-width: 215px;
	color: #f9a456;
	font-size: 12px;
	font-family: Georgia, Times, "Times New Roman", serif;
	font-style: italic;
}

.footer-widgets input[type=submit] {
	color: #fff;
	border-radius: 0;
	box-shadow: none;
	letter-spacing: 1px;
	text-transform: uppercase;
	padding: 2px 11px;
	font-size: 12px;
	font-family: 'Open Sans', sans-serif;
	border: solid 1px #fff;
	background-color:  #f9a456;
	margin-left: 4px;
}

.footer-widgets input[type=submit]:hover {
	color: #f9a456;
	background-color: #fff;
}

.footer-widgets-1 {
	margin-right: 30px;
}

.lightred {
	color: #d25b6c !important;
}

.darkred {
	color: #cc021e !important;
}

#sidebar .darkred {
	font-weight: 200;
}

.footer-widgets-4 .join-mailing {
	color: #417cb3;
	margin-top: 11px;
}

.footer-widgets-4 .join-mailing-text {
	line-height: 28px;
	display: block;
	float:right;
	clear: none;
	margin-right: 15px;
}

.footer-widgets-4 input {
	width: 192px;
	height: 28px;
	padding: 9px 6px;
	background: #f4f3f3;
	border: solid 1px #cacbcb;
	font-family: “Trebuchet MS”, “Lucida Sans Unicode”, “Lucida Grande”,” Lucida Sans”, Arial, sans-serif;
	font-size: 14px;
	color: #b2b2b2;
	float: right;
	clear: none;
	
}



/* Header */

.header-widget-area {
	float: right;
	width: 100%;
	max-width: 490px;
	margin-top: 25px;
}


/*
12 Forms & Buttons
---------------------------------------------------------------------------------------------------- */

input,
select,
textarea {
	background-color: #fff;
	border: 1px solid #ddd;
	border-radius: 3px;
	box-shadow: 0 0 5px #ddd inset;
	padding: 16px;
	padding: 1rem;
	width: 100%;
}

#header .search-form {
	float: right;
	margin-top: 56px;
	margin-top: 3.5rem;
	width: 100%;
}

button,
input[type="button"],
input[type="submit"],
.btn {
	background-color: #1e1e1e;
	border: none;
	box-shadow: none;
	cursor: pointer;
	padding: 16px 24px;
	padding: 1rem 1.5rem;
	width: auto;
}

button:hover,
input:hover[type="button"],
input:hover[type="submit"],
.btn:hover {
	background-color: #fff;
}

.enews input[type="submit"],
.search-form input[type="submit"] {
	border: 0;
	clip: rect(0, 0, 0, 0);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
}

/* 12a - Gravity Forms ----------- */

#content div.gform_wrapper input,
#content div.gform_wrapper select,
#content div.gform_wrapper textarea,
#content div.gform_wrapper .ginput_complex label {
	font-size: 16px;
	font-size: 1rem;
	padding: 16px;
	padding: 1rem;
}

#content div.gform_wrapper input[type="submit"] {
	padding: 16px 24px;
	padding: 1rem 1.5rem;
}

#content div.gform_wrapper .ginput_complex label {
	padding: 0;
}

div.gform_wrapper li,
div.gform_wrapper form li {
	margin: 16px 0 0;
	margin: 1rem 0 0;
}


/*
13 Images & Captions
---------------------------------------------------------------------------------------------------- */

embed,
img,
object,
video {
	max-width: 100%;
}

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

.alignleft .avatar {
	margin-right: 24px;
	margin-right: 1.5rem;
}

.alignright .avatar {
	margin-left: 24px;
	margin-left: 1.5rem;
}

.author-box .avatar {
	float: left;
	margin-right: 24px;
	margin-right: 1.5rem
}

.comment-list li .avatar {
	float: left;
	margin: 0 16px 24px 0;
	margin: 0 1rem 1.5rem 0;
}

img.centered,
.aligncenter {
	display: block;
	margin: 0 auto 24px;
	margin: 0 auto 1.5rem
}

img.alignnone {
	display: inline;
	margin-bottom: 12px;
	margin-bottom: 0.75rem;
}

img.alignleft,
.post-image,
.wp-caption.alignleft {
	display: inline;
	margin: 0 24px 24px 0;
	margin: 0 1.5rem 1.5rem 0;
}

img.alignright,
.wp-caption.alignright {
	display: inline;
	margin: 0 0 24px 24px;
	margin: 0 0 1.5rem 1.5rem;
}

p.wp-caption-text {
	line-height: 1.2;
	margin-top: 12px;
	margin-top: 0.75rem;
}



/* Pages */


/* Archives */

.archive .post-info {
	border-bottom: 0;
	margin-bottom: 15px;
	padding-bottom: 0;
	display: inline;
}

.archive .post {
	border-bottom: solid 1px #d7d8d9;
	padding-bottom: 3px;
	margin-bottom: 29px;
	line-height: 1.2;
	min-height: 200px;
}

.archive .sidebar .post {
	border: 0;
	min-height: 0;
}

.archive .entry-title {
	color: #008100;
	font-family: 'Open Sans', sans-serif;
	font-size: 42px;
	font-weight: 300;
}

.archive .entry-title a {
	color: #008100;
	font-family: 'Open Sans', sans-serif;
	font-size: 42px;
	font-weight: 300;
}

.archive .entry-content {
	margin-top: 16px;
}

.archive .details-more {
	font-family: Georgia, Times, "Times New Roman", serif;
	font-size: 12px;
	font-style: italic;
	color: #6d6e71;
	margin-top: 0;
	font-weight: bold;
	text-decoration: underline;
	display: inline-block;
}

.archive .details-more:hover {
	color: #f9a456;
}

/* Sidebar */

.prev-next-navigation {
	font-size: 12px;
	color: #008100;
	margin-top: 39px;
}

.prev-next-navigation a{
	text-decoration: none;
	font-family: 'Open Sans', sans-serif;
	color: #008100;
}



.navigation li a {
	background: none;
	color: #008100;
	font-family: 'Open Sans', sans-serif;
	padding: 0 10px;
	border-right: solid 1px #f9a456;
}

.navigation li a:hover, .navigation li.active a {
	background: none;
	color: #414042;
	padding: 0 10px;
}

.navigation .pagination-next {
	border: 0;
}

.header-inner-social-icons {
	display: inline-block;
	margin: 0;
}

#mobile-menu {
	display: none;
	visibility: hidden;
}

#sidebar .wk-slideshow img {
	margin-bottom: 0;
}


.responsive-menu-icon {
	display: inline-block;
	width: 24px;
	height: 24px;
	background: url(images/mobile-menu.png) no-repeat;
	margin-left: 8px;
	position: relative;
	top: 5px;
}


/* Footer - Green Bar */

.footer-green-bar {
	clear: both;
	background: #008100;
	padding: 10px 0;
	color: #ffffff;
	font-family: 'Open Sans', sans-serif;
	text-transform: uppercase;
	font-size: 14px;
	font-weight: 600;
}

.footer-green-bar .widget{
	max-width: 950px;
	margin: 0 auto;
}

#menu-footer {
	max-width: 950px;
	margin: 7px auto;
}

#menu-footer li {
	list-style-type: none;
	display: inline;
}

#menu-footer li a {
	text-decoration: none;
	color: #008100;
	font-family: 'Open Sans', sans-serif;
	font-size: 16px;
	font-weight: 600;
}

#menu-footer li a:hover {
	color: #082206;
}

#menu-footer li a:after {
	content: " - ";
}

#menu-footer li.last-menu-item a:after {
	content: '';
}

/* Home */




.home-slider {
	max-width: 950px;
	margin: 0 auto;
	width: 100%;
	position: relative;
	clear: both;
}

.slider-shadow {
	margin: 0 auto;
	clear: both;
	width: 100%;
	max-width: 950px;
	height: auto;
	margin-bottom: 26px;
}

.home-slider ul, .home-slider li, .home-slider img, .home-slider p {
	line-height: 1;
	margin-bottom: 0;
	-webkit-margin-before: 0 !important;
	-webkit-margin-after: 0 !important;
}

/* Header */

.header-widget-area .top-green {
	color: #008100;
	font-family: "Source Sans Pro", sans-serif;
	font-size: 21px;
	margin-bottom: 6px;
}

.header-widget-area .call-us {
	color: #3b3b3b;
	font-family: "Source Sans Pro", sans-serif;
	font-size: 27px;
}

.header-widget-area .greentxt {
	color: #008100;
}

.header-widget-area a {
	text-decoration: none;
}

.header-widget-area a:hover {
	opacity: 0.7;
}

/* 3 CTAs */

.weekly-mowing {
	max-width: 100%;
	width: 281px;
	height: 218px;
	background: url(images/weekly-mowing.jpg) no-repeat;
	display: inline-block;
}

.yard-clean-up {
	max-width: 100%;
	width: 281px;
	height: 218px;
	background: url(images/yard-clean-up.jpg) no-repeat;
	display: inline-block;
}

.fertilizer-programs {
	max-width: 100%;
	width: 281px;
	height: 218px;
	background: url(images/elite-package-new.png) no-repeat;
	display: inline-block;
}

#home-3-cta {
	display: block;
	clear: both;
	margin-bottom: 33px;
}

#home-3-cta .widget {
	float: left;
	margin-right: 53px;
}

#home-3-cta .widget:nth-child(3) {
	margin-right: 0;
}

#home-3-cta a:hover {
	opacity: 0.7;
}

/* Home Wide Ad */

#home-wide-ad {
	width: 100%;
	margin: 0 auto 34px;
	background: url(images/grass-wide-2.jpg) center repeat-x;
	display: block;
	clear: both;
	height: 207px;
	position: relative;
	text-align: center;
	overflow: hidden;
}

#home-wide-ad .widget {
	max-width: 950px;
	margin: 30px auto 0;
	padding: 28px 0;
	max-height: 75px;
	height: 100%;
	border: solid 8px #ffffff;
	width: 90%;
}

#home-wide-ad .textwidget {
	color: #f4f4f4;
	font-family: "Gochi Hand";
	font-size: 48px;
}

#home-wide-ad .textwidget .ad-go {
	display: inline-block;
	border: solid 4px #ffffff;
	padding: 9px;
	color: #fff000;

}

#home-wide-ad .textwidget a:hover .ad-go {
	border: solid 4px #fff000;
	color: #fff;
}

.clearboth {
	clear: both;
}

#home-wide-text {
	font-family: "Source Sans Pro", sans-serif;
	font-size: 22px;
	font-weight: 400;
	color: #008100;
	position: relative;
	border-bottom: solid 3px #008100;
	margin-bottom: 54px;
}

#home-wide-text .widget {
	max-width: 950px;
	margin: 0 auto;
	width: 100%;
	position: relative;
}

#home-wide-text h4 {
	color: #000;
	font-family: "Source Sans Pro", sans-serif;
	font-size: 36px;
	font-weight: 200;
	margin-bottom: 11px;
}

#home-wide-text .program-information {
	position: absolute;
	right: 0;
	bottom: -2px;
	width: 183px;
	height: 13px;
	display: inline-block;
	background: url(images/program-information.png) no-repeat;
}

#home-wide-text p {
	padding-bottom: 24px;
}

#home-awards {
	border-bottom: solid 3px #eeeeee;
}

#home-awards .widget {
	max-width: 950px;
	margin: 0 auto 0;
	padding-bottom: 27px;
}

#home-awards article {
	/*padding: 0 64px;*/
	width: 325px;
}

#home-awards article img {
	margin-bottom: 0;
}

#home-awards .sets {
	padding-bottom: 20px;
}

#home-awards .wk-slideset .prev {
	visibility: visible;
	left: 0px;
	background: url(images/prev.png) no-repeat;
	width: 16px;
	height: 53px;
	top: 50%;
	margin-top: -35px;
}

#home-awards .wk-slideset .next {
	visibility: visible;
	right: 0px;
	background: url(images/next.png) no-repeat;
	width: 16px;
	height: 53px;
	top: 50%;
	margin-top: -35px;
}

#home-awards .wk-slideset .next:hover, #home-awards .wk-slideset .prev:hover {
	opacity: 0.7;
}


#home-bottom-text {
	margin: 32px auto 40px;
	width: 100%;
	max-width: 950px;
}

#home-bottom-text .textwidget {
	-webkit-column-count: 2;
      -moz-column-count: 2;
           column-count: 2;
  -webkit-column-gap: 50px;
     -moz-column-gap: 50px;
          column-gap: 50px; 
}

#home-bottom-text .widget-title {
	color: #008100;
	font-family: "Open Sans", sans-serif;
	font-size: 36px;
	font-weight: 300;
	margin-bottom: 12px;
}

#home-bottom-text h3 {
	color: #404040;
	font-family: "Open Sans", sans-serif;
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 13px;
}

#home-bottom-text p {
	margin-bottom: 30px;
	color: #404040;
	font-family: "Open Sans", sans-serif;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.3;
}

#home-bottom-text img {
	margin: 0 10px 10px 0;
}

#sidebar form p {
	text-align: left;
}

#sidebar form p:last-child {
	text-align: center;
}

#sidebar form input[type="text"], #sidebar textarea, #sidebar input[type="email"] {
	padding: 4px 6px;
}

.designedby {
	display: inline-block;
	margin-left: 72px;
}

.designedby a {
	color: #fff;
	text-decoration: none;
}

.designedby a:hover {
	text-decoration: underline;
}


.footer-menu .textwidget {
	position: relative;
	max-width: 950px;
	margin: 0 auto;
}

.footer-hiring-now {
	width: 150px;
	height: 110px;
	background: url(images/nowHiring-final.png) no-repeat;
	position: absolute;
	right: 160px;
	top: -75px;
	z-index: 99999;
}

/*
14 Media Queries
---------------------------------------------------------------------------------------------------- */

/* Desktops, laptops and iPads (landscape) ----------- */


/* iPads (portrait) ----------- */

@media only screen and (max-width: 768px) {

	#wrap {
		padding: 0;
	}
	.wrap, .footer-green-bar, .footer-menu, #home-wide-text, #home-bottom-text {
		padding-left: 5%;
		padding-right: 5%;
	}

	#sidebar {
		margin-bottom: 25px;
	}

	.home-slider {
		padding-top: 15px;
	}

	#home-wide-ad .textwidget {
		position: relative;
		top: -15px;
		font-size: 40px;
		line-height: 1.2;
	}

	#home-wide-ad .textwidget .ad-go {
		padding: 3px 9px;
	}

	#home-bottom-text .textwidget {
		-webkit-column-count: 1;
		-moz-column-count: 1;
		column-count: 1;
		max-width: 90%;
	}

	#home-3-cta .widget {
		float: none;
		margin: 0 auto 25px;
		max-width: 100%;
		text-align: center;
	}

	.footer-widgets-1,
	.footer-widgets-2,
	.footer-widgets-3,
	.wrap,
	#footer .creds,
	#footer .gototop,
	#header .widget-area,
	#inner,
	#title-area,
	#wrap .sidebar,
	#wrap #content,
	#wrap #content-sidebar-wrap,
	#wrap #sidebar-alt {
		max-width: 100%;
	}

	.genesis-nav-menu li,
	#footer .creds,
	#footer .gototop,
	#header ul.genesis-nav-menu,
	#header .search-form {
		float: none;
	}

	.genesis-nav-menu,
	#description,
	#footer .creds,
	#footer .gototop,
	#header .search-form,
	#title,
	#title-area {
		text-align: center;
	}

	.genesis-nav-menu a {
		padding: 20px 16px;
		padding: 1.25rem 1rem;
	}

	#title {
		/*margin: 16px 0;
		margin: 1rem 0;*/
	}

	#header .search-form {
		margin: 32px auto 0;
		margin: 2rem auto 0;
		width: 50%;
	}

	.genesis-nav-menu li.right {
		display: none;
	}

	#footer .wrap {
		padding: 24px 0;
		padding: 1.5rem 0;
	}

	.footer-widgets-1,
	#header .genesis-nav-menu {
		margin: 0;
	}
	
	.header-widget-area {
		max-width: 100%;
	}
	

	
	.footer-widgets-1.widget-area, .footer-widgets-2.widget-area, .footer-widgets-3.widget-area {
		width: 100%;
		margin: 10px auto;
	}
	
	#header #title-area {
		display: block;
		float: none;
		margin: 15px auto;
		background-size: 100%;
	}
	
	.header-widget-area {
		max-width: 100%;
		float: none;
		position: relative;
		margin: 0 auto 10px;
		text-align: center;
	}

	.footer-hiring-now {
		display: none;
	}
	

#mobile-menu {
	text-align: center;
	cursor: pointer;
	display: inline-block;
	float: none;
	margin: 0px auto;
	height: 34px;
	width: 100%;
	visibility: visible;
	font-size: 17px;
	font-family: 'Open Sans', sans-serif;
	color: #fff;
	line-height: 34px;
	text-transform: uppercase;
}
#nav {
	background: #008100;
	margin-bottom: 20px;
}

#header #title-area, .home #header #title-area {
	margin-bottom: 5px;
}



#mobile-menu.active {
	background: #026902;
}

#menu-main { display: none; }

.genesis-nav-menu li, .home .genesis-nav-menu li {
	display: block;
	float: none;
	border: 0;
}


.genesis-nav-menu.menu-primary a, .home .genesis-nav-menu.menu-primary a {
	background: none;
	line-height: 1;
	padding: 12px 0;
	color: #fff;
}

.genesis-nav-menu.menu-primary a:hover, .home .genesis-nav-menu.menu-primary a:hover {
	background: none;
	color: #ffff01;
}
	

.genesis-nav-menu.menu-primary a {
	padding: 13px 20px;
	border-bottom: solid 1px #ffba6b;
}
	

.designedby {
	display: block;
	clear: both;
	margin-left: 0;
	margin-top: 10px;
}

}

/* iPhones (portrait and landscape) ----------- */

@media only screen and (max-width: 480px) {

	html {
		/*font-size: 87.5%; /* 14px base */
	}

	#header .search-form {
		width: 100%;
	}
	
	.wk-slideshow img {
		/*min-height: 100%;*/
		max-width: 100%;
	}

	.archive-page,
	.five-sixths,
	.four-fifths,
	.four-sixths,
	.one-fifth,
	.one-fourth,
	.one-half,
	.one-sixth,
	.one-third,
	.three-fifths,
	.three-fourths,
	.three-sixths,
	.two-fifths,
	.two-fourths,
	.two-sixths,
	.two-thirds {
		margin: 0;
		width: 100%;
	}
	
	#mobile-menu {
		text-align: center;
		cursor: pointer;
		display: inline-block;
		float: none;
		margin: 0px auto;
		height: 34px;
		width: 100%;
		visibility: visible;
		font-size: 17px;
		font-family: 'Open Sans', sans-serif;
		color: #fff;
		line-height: 34px;
		text-transform: uppercase;
	}

	#mobile-menu.active {
		background: #026902;
	}

	#menu-main { display: none; }

	.genesis-nav-menu li {
		display: block;
	}

	.genesis-nav-menu.menu-primary a {
		background: none;
	}
}

.gform_button:hover { background-color:red !important;}
.frm-til label.gfield_label{
font-size:18px !important;
}

.button {
    background-color: #4CAF50; /* Green */
    border: none;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
}

.call-us a{
    float:right;
    color:green !important;
}

@media screen and (max-width: 700px)
.call-us a {
margin-bottom:20px !important;
}