/*
 Table Of Contents
 1.) Eric Meyer's Reset
 2.) Global Typography
	 2.0.2) Global Headings
	 2.0.3) Form Elements
	 2.0.4) List styles
	 2.0.5) General Text Formatting
	 2.0.6) Link elements
	 2.0.7) Table Elements
	 2.0.8) Button Styles
 3.) Header Style
 4.) Footer Style
 ===============================================*/

/*
 1.) Eric Meyer's Reset
 ----------------------------------------*/
/**
 * Eric Meyer's Reset CSS v2.0 (http://meyerweb.com/eric/tools/css/reset/)
 * http://cssreset.com
 */
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;
	line-height: 1.2;
}
/* HTML5 display-role reset for older browsers */
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;
}

/*
 1.) Global Typography
 ----------------------------------------*/
*, :before, :after{
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}
html {
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
	font-size: 100%;
}
body {
	font-family: 'Roboto', sans-serif;
	background:#fff;
    font-weight: 400;
    color: #555555;
    line-height: 1.4;
}
/*
 2.0.2) Global Headings
 -----------------------------*/
h1, h2, h3, h4, h5, h6 {
	font-weight: 700;
	color: #333333;
	line-height:1.3;
	margin-bottom:15px;
	font-family: 'Lora', serif;
}
h1 {
	font-size:28px;	
}
h2 
{
	font-size:25px; 
	line-height:28px;
}
h2 span {
	color: #6aaf08;
}
h3 {
	 font-size: 22px; 
	 line-height:26px;
}
h4 {
	 font-size:20px; 
	line-height:24px;
}
h5 {
	 font-size:18px; 
	line-height:24px;
}
h6 {
	 font-size:17px; 
	line-height:24px;
}
/*
 2.0.3) Form Elements
 -----------------------------*/
button, input, optgroup, select, textarea {
	margin: 0;
	padding: 0;
	font-size: 100%;
	color: inherit;
	background: none;
	border: 1px solid #ccc;
	font-family: 'Roboto', sans-serif;
	-webkit-transition: all 0.5s ease ;
	-moz-transition: all 0.5s ease ;
	-ms-transition: all 0.5s ease ;
	-o-transition: all 0.5s ease ;
	transition: all 0.5s ease;
}
input,textarea,select {
    border-radius:2px;
    padding: 10px 20px;
    max-width:100%;
    color:#999999;
	font-family: 'Roboto', sans-serif;
   font-size: 13px;
   font-weight:300;
   line-height:24px;
   border:1px solid #e6e6e6;
   margin-bottom:20px;
}
textarea {
	width:100%;
}
input[type='text'],input[type='number'],input[type='email'],input[type='url'],input[type='search'],select {
	height:50px;  
	width:100%;
}
input:focus, select:focus, textarea:focus, button:focus 
{
	border: 1px solid;
	outline: 0;
}
input[type="checkbox"], input[type="radio"] {
	padding: 0;
	border: none;
}
button, input[type="button"], input[type="reset"], input[type="submit"], input[type="file"] {
	-webkit-appearance: none;
	cursor: pointer;
	line-height: normal;
	overflow: visible;
}
button[disabled], input[disabled] {
	cursor: default;
	color: #999;
	border-color: #ccc;
}
button::-moz-focus-inner, input::-moz-focus-inner {
	padding: 0;
	border: 0;
}
.btn.focus, .btn:focus, .btn:hover {
	color:inherit;
}
label {
	line-height:1.5;
}

/*
 2.0.4) List Styles
 ---------------------------------*/
ul, ol, dl {
	font-size: 100%;
	line-height: 1.5;
}
li, dt {
	line-height: 1.5em;
}
dt {
	font-weight:700;
}
dl {
	margin: 0 0 1em 0;
}
dd {
	margin: 0 0 1em 0.8em;
}
ul {
	list-style-type: disc;
	margin: 0 0 1em 0;
	list-style-position: outside;
	padding-left:25px;
}
ol {
	list-style-type: decimal;
	margin: 0 0 1em 0;
	list-style-position: inside;
}
ul ul, ol ul {
	list-style-type: circle;
	margin-top: 0;
	padding-left: 15px;
}
ol ol {
	list-style-type: lower-latin;
	margin-top: 0;
	padding-left:15px;
}

/*
 2.0.5) General Text Formatting
 -----------------------------------*/
p ,blockquote,q ,.degree {
   font-family: 'Roboto', sans-serif;
   font-size: 15px;
   font-weight:400;
   color:#555555;
   line-height: 24px;
   margin-bottom:15px;
}
blockquote {
	padding: 0 16px 0 11px;
    line-height: 1.6;
    position: relative;
    margin-bottom:15px;
    background:#f9f9f9;
}
blockquote:before {
	content:"";
	position:absolute;
	left:0px;
	top:0px;
    background: #7bc144;
    /*font-family: 'Roboto', sans-serif;
    font-size: 48px;
    line-height: 1;*/
    height:100%;
    width:4px;
}
blockquote > p {
    padding: 19px 15px;
    width: 100%;
    letter-spacing: -0.1px;
    font-size:16px;
    font-weight:700;
}
q {
	color: #7bc144;
    letter-spacing: -0.1px;
}
small {
	/* font-size: 12px; */
	font-size: 85.71429%;
	line-height: 1.75;
}
address {
	color: #555555;
    line-height: 24px;
    font-size: 16px;
    font-weight: 400;
}
pre, code, kbd, tt, samp, var {
	font-size: 100%;
}
pre {
	font-size: 100%;
	line-height: 1.5;
	margin: 0 0 1.5em 0;
	white-space: pre;
	white-space: pre-wrap;
	word-wrap: break-word;
	padding: 15px 20px;
}
pre, code {
	color: #6aaf08;
	background:rgba(106,175,8,.05);
}
samp, var {
	color: #666666;
	font-weight: bold;
}
acronym, abbr {
	border-bottom: 1px #aaa dotted;
	font-variant: small-caps;
	cursor: help;
}
sub, sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}
sup {
	top: -0.5em;
}
sub {
	bottom: -0.25em;
}
img{
	max-width: 100%;
	height: auto;
}
big {
    font-size: larger;
}
i, cite, em, var, dfn {
    font-style: italic;
}
tt, code, kbd, samp {
    font-family: monospace;
}
figure {
	max-width:100%;
}
figcaption {
	line-height:1.5;
}
b, strong {
    font-weight: 700;
}
.mark, mark {
	color:#fff;
	background:#6aaf08;
}
/*
 2.0.6) Link style
 -------------------------*/
a {
	color: inherit;
	text-decoration: none;
}
a:hover
 {
	color: #6aaf08;
	text-decoration: none;
}
a:active {
	outline: none;
}

/*
 2.0.7) Table Elements
 --------------------------*/
table {
	width: 100%;
	border-collapse: collapse;
	    color: inherit;
	border: 1px #e6e6e6 solid;
	margin: 0 0 15px 0;
}
caption {
	font-variant: small-caps;
	line-height: 1.5;
}
th, td {
	line-height: 1.5;
	vertical-align: top;
	padding: 10px 5px;
}
th *:first-child, td *:first-child {
	margin-top: 0;
}
thead th {
	text-align: left;
	font-weight:700;
	border-bottom: 2px #e6e6e6 solid;
}
tbody th {
	text-align: left;
	border-top: 1px solid #e6e6e6;
	font-weight: 700;
}
tbody td {
	text-align: left;
	border-top: 1px solid #e6e6e6;
}
tfoot #next {
	text-align:right;
}

/*
 2.0.8) Button Styles
 -------------------------*/
.btn , input.btn, button.btn ,input[type="submit"] {
 font-size: 11px;
 color:#fff;
 line-height:24px;
 background:#6aaf08;
 text-transform:uppercase;
 font-weight:700;
 padding: 11px 18px 10px;
 border-radius: 2px;
 display:inline-block;
 max-width:200px;
 letter-spacing: 0.04em;
 border:1px solid transparent;
 -webkit-transition: all 0.4s ease 0.2s ;
 -moz-transition: all 0.4s ease 0.2s ;
 -ms-transition: all 0.4s ease 0.2s ;
 -o-transition: all 0.4s ease 0.2s;
 transition: all 0.4s ease 0.2s;
}
.place-order input[type="submit"] {
	max-width:100%;
}
.button {
	 border:1px solid transparent;
 -webkit-transition: all 0.4s ease 0.2s ;
 -moz-transition: all 0.4s ease 0.2s ;
 -ms-transition: all 0.4s ease 0.2s ;
 -o-transition: all 0.4s ease 0.2s;
 transition: all 0.4s ease 0.2s;
}
.btn:hover , input.btn:hover, button.btn:hover ,input[type="submit"]:hover,
.button:hover,.gardening-shop-layout .button:hover {
	background:#fff;
	color:#6aaf08;
	border-color:#6aaf08;
}

/* jquery spinner */
.ui-spinner {
	position: relative; 
	border: 0px solid white;
	height:35px; 
	overflow: visible;
}
.ui-spinner-buttons {position: absolute}
.ui-spinner-button {
	overflow: hidden;
	right:10px;
}
div.product .entry-summary input[type=number]::-webkit-inner-spin-button,
div.product .entry-summary input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  margin: 0;
}
div.product .entry-summary input[type=number] {
    -moz-appearance:textfield;
}
.ui-spinner-buttons {
	border-left:1px solid #fff;
	width:30px !important;
	background-color: #6aaf08;
	-webkit-border-radius: 0 6px 6px 0;
	border-radius: 0 6px 6px 0;
}

.ui-state-default, .ui-widget-content .ui-state-default {
	border:none;
	background:none;
	color:#fff;
	display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow: visible;
    
}
.ui-state-default .ui-icon {
	background: none;
	background-position: 0;
	display: inline-block;
}
.ui-spinner-up:after {
	content: "\f0d8";
    position: absolute;
    left: 9px;
    top: 4px;
}
.ui-spinner-down:after {
	content: "\f0d7";
    position: absolute;
    left: 9px;
    bottom: 4px;
}


.clear {
	clear: both;
	display: block;
	overflow: hidden;
	visibility: hidden;
	width: 0;
	height: 0;
}

/* http://perishablepress.com/press/2008/02/05/lessons-learned-concerning-the-clearfix-css-hack */

.clearfix:after {
	clear: both;
	content: ' ';
	display: block;
	font-size: 0;
	line-height: 0;
	visibility: hidden;
	width: 0;
	height: 0;
}

.clearfix {
	display: inline-block;
}

* html .clearfix {
	height: 1%;
}

.clearfix {
	display: block;
}

/*--------------------------------------------------------------
# Alignments
--------------------------------------------------------------*/
.alignleft {
	display: inline;
	float: left;
	margin-right: 15px;
	margin-bottom: 15px;
}

.alignright {
	display: inline;
	float: right;
	margin-left: 15px;
	margin-bottom: 15px;
}

.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 15px;
}
.screen-reader-text {
	display:none;
}
/*--------------------------------------------------------------
## Comments
--------------------------------------------------------------*/
.comment-content a {
	word-wrap: break-word;
}
.leave-comment input,
.leave-comment textarea {
	border-radius: 1px;
}

.bypostauthor {
	display: block;
}

/*--------------------------------------------------------------
## Captions
--------------------------------------------------------------*/
.wp-caption {
	margin-bottom: 15px;
	max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.wp-caption .wp-caption-text {
	margin: 10px 0;
}

.wp-caption-text {
	text-align: center;
}
.gallery-caption {
	display: block;
}
.mejs-container {
    margin-bottom: 30px;
}

.sticky,.tag-sticky-2 {
	position:relative;
	margin-bottom:15px;
	padding:20px;
	padding-bottom:0;
}
.blog-details-page .blog-section .sticky .layout-one {
	margin-bottom:0;
}
.stick-pin {
    border-style: solid;
    border-width: 25px 14px 22px 13px;
    position: absolute;
    right: 32px;
    top: 0;
    z-index: 6;
    display: block;
    border-color: #6aaf08 #6aaf08 transparent;
}
.stick-pin i {
    color: #fff;
    font-size: 16px;
    left: -4px;
    position: absolute;
    top: -19px;
}
#wrapper.boxed {
    margin: 0 auto;
    max-width: 1200px;
    width: 100%;
}
/*
     sticky header style 
 ----------------------------------------*/
body #header {
	-webkit-transition: all 0.4s ease-in-out;
	-moz-transition: all 0.4s ease-in-out;
	-ms-transition: all 0.4s ease-in-out;
	-o-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
}
body #header.fixed {
	left: 0;
	margin: 0 auto;
	position: fixed !important;
	right: 0;
	top: 0;
	width: 100%;
	z-index: 999;
	background:#fff;
}
body #header.intelligent {
	left: 0;
	position: fixed !important;
	right: 0;
	top: 0;
	width: 100%;
	z-index: 99;
	background:#fff;
}
body.admin-bar #header.fixed,
body.admin-bar #header.intelligent {
	top:32px;
}
body #header.up {
	opacity: 0;
	top: -162px;
	visibility: hidden;
}

/* mailChimp Style */
.mc4wp-form-fields input[type='email'] {
	border: 2px solid #e5e5e5;
    display: inline-block;
    width: 78%; 
    border-radius: 0;
}
.mc4wp-form-fields button {
	background: #6aaf08;
    color: #fff;
    line-height: 34px;
    padding: 8px 40px;
    vertical-align: middle;
    border: 1px solid transparent;
    font-size: 32px;
    width:20%;
}
.mc4wp-form-fields button:hover {
	background: #fff;
    color: #6aaf08;
    border-color:#6aaf08;
}
/*--------------------------------
 * headers style
 ---------------------------------*/
.nav>li>a:focus,
.nav>li>a:hover {
	background:none;
}
.navbar {
	min-height: 0;
    margin-bottom: 0;
    border: none;
}
.navbar-nav ul.sub-menu  {
	list-style: none;
	position:absolute;
	min-width:250px;
	background:#f9f9f9;
	z-index:-1;
	text-align:left;
	opacity:0;
	top:130%;
	padding-left:0;
	-webkit-transition: all .3s ease-in;
	-moz-transition: all .3s ease-in;
	-ms-transition: all .3s ease-in;
	-o-transition: all .3s ease-in;
	transition: all .3s ease-in; 
}
.navbar-nav .sub-menu .sub-menu {
	left:100%;
}
.navbar-nav ul.sub-menu > li {
	border-bottom: 1px solid #ccc;	
    text-transform: capitalize;
    position: relative;
}
.navbar-nav ul.sub-menu > li > a {
	display:block;
	padding: 10px;
	font-weight: 700;
	font-size:15px;
	color:#333;
	line-height:24px;
	-webkit-transition: all .5s ease-in;
	-moz-transition: all .5s ease-in;
	-ms-transition: all .5s ease-in;
	-o-transition: all .5s ease-in;
	transition: all .5s ease-in;
}
.navbar-nav ul.sub-menu > li:hover > a {
	color:#fff !important;
}
.navbar-nav ul.sub-menu > li > a:before {
	content:"";
	left:0;
	top:0;
	width:0;
	height:100%;
	z-index: -1;
	position:absolute;
	background:rgba(0,0,0,.8);
	-webkit-transition: all .3s ease-in;
	-moz-transition: all .3s ease-in;
	-ms-transition: all .3s ease-in;
	-o-transition: all .3s ease-in;
	transition: all .3s ease-in;
}
.navbar-nav ul.sub-menu > li:hover > a:before {
	width:100%;
}
.navbar-collapse {
	padding:0;
}
.navbar-header {
	float: right;
	 position: relative;
    z-index: 9999;
}
.navbar-toggle {
	 border: 1px solid #6aaf08;
    float: none;
    margin-bottom: 8px;
    margin-right: 25px;
    margin-top: 18px;
}
.navbar-toggle .icon-bar {
	background: #6aaf08;
}

/*layout one */
.gardening-header-one .header-upper-section {
	background: #21252b;
    padding: 12px 0 19px;
    color: #fff;
    font-size: 13px;
    line-height: 24px;
    font-weight: 300;
    letter-spacing: 0.04em;
    font-family: 'Roboto', sans-serif;
}
.gardening-header-one .header-upper-section i {
	display: inline-block;
	text-align:center;
	border-radius:4px;
	background:#6aaf08;
	margin-right:12px;
	font-size: 14px;
	height:24px;
	width:24px;
	line-height:24px;
}
.gardening-header-one .header-upper-section .adds {
	margin-right:18px;
}
.gardening-header-one .nav-section {
	background:#f5f5f5;
	padding: 19px 0 13px;
}
.gardening-header-one .nav-section .header-logo {
	display: inline-block;
}
.gardening-header-one .nav-section .navbar-nav {
	float: right;
	margin-top:17px;
}
.gardening-header-one .nav-section .navbar-nav > li {
	font-size: 16px;
	font-weight:700;
	line-height:24px;
	color:#333333;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	font-family: 'Roboto', sans-serif;
}
.gardening-header-one .nav-section .navbar-nav > li > a {
	padding:10px 0 20px 18px;
}
.gardening-header-one .nav>li.current-menu-parent>a:after,
.gardening-header-one .nav>li.current-menu-item>a:after {
	content:"";
	height:2px;
	width:80%;
	background:#6aaf08;
	display: block;
	margin-left:auto;
	margin-right:auto;
}

/* layout two */
.gardening-header-two .header-upper-section {
	background:#000;
	color:#fff;
	padding-left: 0;
}
.gardening-header-two .header-upper-section .tagline {
	font-size: 14px;
	font-weight:300;
	line-height:24px;
	color:#dbdbdb;
	letter-spacing: 0.028em;
    text-transform: capitalize;
    font-family: 'Roboto', sans-serif;
    padding: 15px 0 12px;
	display:inline-block;
}
.gardening-header-two .header-upper-section .tagline i {
	color:#6aaf08;
	font-size:24px;
	margin-right:10px;
	    vertical-align: middle;
}
.gardening-header-two .header-middle-section {
	padding: 15px 0 29px;
}
.gardening-header-two .header-middle-section i {
	border:1px solid #6aaf08;
	border-radius: 100%;
	font-size:20px;
	height:32px;
	width:32px;
	text-align:center;
	line-height:28px;
	position: absolute;
	left:0;
	top:27px;
	color:#000;
	margin-right:10px;
	vertical-align: middle;
}
.gardening-header-two .header-middle-section .h-text {
	font-size: 15px;
	font-weight:700;
	line-height:24px;
	color:#333333;
	letter-spacing: 0.05em;
	text-transform: capitalize;
	font-family: 'Lora', serif;
	padding: 18px 0px 10px 45px;
	display: inline-block;
	position:relative;
	text-align:left;
}
.gardening-header-two .header-middle-section .h-text span {
	display: block;
	font-size: 13px;
	font-weight:300;
	line-height:24px;
	color:#555555;
	letter-spacing: 0.05em;
	text-transform: capitalize;
	font-family: 'Roboto', sans-serif;
}
.gardening-header-two .header-lower-section {
	background:#6aaf08;
	padding:23px 0 21px;
	position: relative;
	min-height:90px;
}
.gardening-header-two .header-lower-section .navbar-nav>li>a {
	font-size: 16px;
	font-weight:700;
	line-height:24px;
	color:#fff;
	letter-spacing: 0.045em;
	text-transform: uppercase;
	font-family: 'Lora', serif;
	border-bottom:2px solid transparent;
	padding:10px 25px 8px 0;
}
.gardening-header-two .header-social {
	list-style: none;
	padding-left: 0;
	float:right;
	margin: 0;
}
.gardening-header-two .header-social li {
	padding: 16px 15px; 
	border-left:1px solid rgba(85,85,85,.7);
	color:#fff;
	display: inline-block;
}
.gardening-header-two .header-lower-section .navbar-nav>li>a:hover,
.gardening-header-two .header-lower-section .nav>li>a:focus {
	color:#e1e1e1;
}
.gardening-header-two .header-lower-section i {
	border:2px solid #6aaf08;
	border-radius: 100%;
	font-size:17px;
	height:34px;
	width:34px;
	text-align:center;
	line-height:32px;
	    display: inline-block;
	color:#fff;
	margin-right:10px;
}
.gardening-header-two .header-lower-section .phone-b {
	background:#000;
	position:absolute;
	right:0;
	width:25.5%;
	top:0;
	z-index:1;
	height:100%;
	padding:25px 0 20px;
}
.gardening-header-two .header-logo {
	display: block;
    padding-right: 39px;
}
.gardening-header-two .header-lower-section .phone-b:before {
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 90px 90px 0;
	border-color: transparent #000000 transparent transparent;
	content: "";
	top: 0;
	z-index:-1;
    left: -89px;
    position: absolute;
}
.gardening-header-two .header-lower-section .phone-b span {
	font-size: 26px;
	font-weight:700;
	line-height:28px;
	color:#eeeeee;
	font-family: 'Lora', serif
}
.gardening-header-two .nav>li.current-menu-parent>a,
.gardening-header-two .nav>li.current-menu-item>a {
	color:#000;
}

.navbar-nav > li.gardening-mega-menu-item-layout {
	position:static;
}
.navbar > .main-navigation {
	position: static;
}
.gardening-mega-menu-warp {
	left:0;
	padding: 15px !important;
}


/*--------------------------------
 * footers style
 ---------------------------------*/
.footer {
	background:#011823;
	color:#cccccc;
	font-size:14px;
	font-family: 'Roboto', sans-serif;
}
.footer p {
	color:#cccccc;
	font-size:15px;
	line-height: 24px;
}
.footer-bottom {
	background: #000;
    padding: 27px 0;
    font-size: 13px;
    line-height: 24px;
    font-family: 'Roboto', sans-serif;
    color: #cccccc;
    letter-spacing: 0.03em;
}
.footer-bottom .footer-copyright span {
	color:#6aaf08;
	position:relative;
	text-transform: capitalize;
}
.footer-bottom .footer-copyright span:after {
	    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
     content: "\f06c";
     position: absolute;
     left:4px;
     top:-5px;
     font-size:11px;
}
.footer-one .widget-title {
	color:#fff;
	font-size:15px;
	line-height: 24px;
	font-weight:700;
	letter-spacing: 0.075em;
	text-transform: uppercase;
}
.footer .widget_recent-posts-widget .recent-info h5 {
	margin-botton:10px;
}
.footer-copyright {
	display: block;
}
.footer .widget_recent-posts-widget .recent-info h5 a {
	font-size:15px;
	line-height:20px;
	font-family: 'Roboto', sans-serif;
	color:#dddddd;
	font-weight: 400;
	display:block;
}
.footer .widget_recent-posts-widget .recent-info time {
	font-size:13px;
	line-height:24px;
	font-weight:300;
	font-family: 'Roboto', sans-serif;
	color:#aaaaaa;
	letter-spacing: 0.025em;
}
.footer-one .widget-title:after {
	content:"";
	height:1px;
	background:#34464f;
	width:50px;
	display:block;
	margin-top:15px;
	margin-bottom:30px;
}
.mc4wp-error {
	clear: both;
}
.footer-one .gardening_widget_contact {
	margin-top: -20px;
}
.footer-one .footer-top {
	padding-top:81px;
}
.footer-one .gardening-footer-widgets:nth-of-type(3n+1) {
	clear: both;
}
.footer-one .widget-icons a {
	height:42px;
	width:42px;
	border-radius: 100%;
	background:#343434;
	color:#999999;
	display: inline-block;
	line-height: 42px;
	text-align:center;
	margin-right:4px;
	-webkit-transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-ms-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
transition: all 0.3s ease;
}
.footer-one .widget-icons a:hover {
	background:#6aaf08; 
	color:#fff;
}
.footer-one .footer-bottom nav ul {
	list-style: none;
	padding-left: 0;
	float: right;
	margin:0;
}
.footer-one .footer-bottom nav ul li {
	display: inline-block;
	padding-left:25px;
	color:#aaaaaa;
	position:relative;
}
.footer-one .footer-bottom nav ul li:hover {
	color:#fff;
}
.footer-one .footer-bottom nav ul.sub-menu {
	display:none;
	position: absolute;
	bottom:100%;
	padding:15px;
	background:#000;
	left:0;
	min-width:150px;
}
.footer-one .footer-bottom nav ul li:hover > ul {
	display: block;
}
.footer-one .footer-bottom nav ul.sub-menu li {
	padding-left: 0;
	line-height: 2;
	display:block;
}
/* layout two */
.footer-two .footer-top {
	padding-top:49px;
}
.footer-two .widget-title {
	color:#efefef;
	line-height: 24px;
	letter-spacing: 0.02em;
	text-transform: capitalize;
	margin-bottom:27px;
}
.footer-two .gardening_widget_contact {
	width:100%;
	padding-bottom: 50px;
    margin-bottom: 45px;
	border-bottom: 1px solid #1b3039;
	overflow: hidden;
}
.footer-two .widget-icons {
	float:right;
	padding-top: 25px;
}
.footer-two .widget-icons a {
	height:48px;
	width:48px;
	border-radius: 4px;
	background:#1b3039;
	color:#fff;
	display: inline-block;
	line-height: 48px;
	text-align:center;
	margin-left:4px;
	-webkit-transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-ms-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
transition: all 0.3s ease;
}
.footer-two .widget-icons a:hover {
	background: #808c91;
	color:#000;
}
.footer-two .gardening_widget_contact figure {
	float:left;
	width:16.66%;
}
.footer-two .gardening_widget_contact .info-desc {
	float:left;
	width:45%;
	padding-left: 41px;
    margin-left: 29px;
	border-left:2px solid #6aaf08;
	margin-top:15px;
}
.footer-two .gardening_widget_contact .info-desc:after {
	content:"";
	display:none;
}
/*--------------------------------
 * widgets style
 ---------------------------------*/
.gardening-widgets {
	background:#f9f9f9;
	border:1px solid #e6e6e6;
	padding: 25px 30px 13px;
	margin-bottom:30px;
}
.gardening-widgets .widget-title {
	border-bottom:1px solid #e6e6e6;
	padding-bottom: 13px;
    margin-bottom: 17px;
	text-transform: capitalize;
	font-size:20px;
}
.gardening-widgets ul,
.gardening-footer-widgets ul {
	list-style: none;
	padding-left: 0;
	margin-bottom: 0;
}
.gardening-widgets ul ul,
.gardening-footer-widgets ul ul {
	padding-left: 10px;
}
.gardening-widgets li {
	font-size: 15px;
    line-height: 24px;
    font-family: 'Lora', serif;
    color: #333333;
    font-weight: 500;
    padding: 8px 0 8px 15px;
    text-transform: capitalize;
    position: relative;
}
.gardening-widgets li.menu-item-has-children,
.gardening-widgets li.page_item_has_children,
.gardening-widgets ul.children li:last-child {
	padding-bottom:0;
}
.gardening-widgets li::before {
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\f192";
    font-size:12px;
    color: #6aaf08;
    position: absolute;
    top:14px;
    left:0;
}
.gardening-widgets #searchsubmit {
	height:45px;
}
.gardening-widgets.widget_calendar tbody td a {
	color:#6aaf08;
}
.gardening-widgets.widget_rss li .rss-date {
	display:block;
	margin-bottom:8px;
	color:#6aaf08;
}
.gardening-widgets.widget_rss li .rssSummary {
	line-height: 21px;
    font-size: 14px;
}
.gardening-widgets.widget_nav_menu ul ul {
	padding-left:0;
}
.gardening-widgets .tagcloud a {
	border:1px solid #e6e6e6;
	display: inline-block;
	padding:0 15px;
	height:40px;	
	line-height:38px;
	border-radius: 4px;
	margin-bottom:7px;
	margin-right:5px;
}
.gardening-widgets.widget_search .widget-title,
.gardening-widgets.widget_product_search .widget-title {
	padding:15px;
	display: none;
}
.gardening_widget_contact figure {
	margin-bottom:20px;
}
.gardening_widget_contact .info-desc:after {
	content:"";
	height:1px;
	background:#34464f;
	width:80%;
	display:block;
	margin-top:34px;
	margin-bottom:30px;
}
.gardening_newsletter_widget .newletter {
	margin-top:30px;
	overflow: hidden;
}
.widget_mc4wp_form_widget form {
	overflow: hidden;
}
.gardening_newsletter_widget .newletter input,
.gardening-footer-widgets .gardening_newsletter_widget .newletter input,
.widget_mc4wp_form_widget input {
	border:1px solid #e6e6e6;
	background:none;
	height:52px;
	line-height:50px;
	padding:10px ;
	border-right:none;
	float: left;
	width:80%;
	border-radius: 2px 0 0 2px;
}
.gardening-footer-widgets .gardening_newsletter_widget .newletter input {
	border:1px solid #fff;
}
.gardening_newsletter_widget .newletter button,
.gardening-footer-widgets .gardening_newsletter_widget .newletter button,
.widget_mc4wp_form_widget button {
	background: #6aaf08;
    color: #fff;
    height: 52px;
    line-height: 1;
    padding: 0.5em;
    border: none;
    float: left;
    width: 15%;
    font-size: 1em;
}
.gardening-footer-widgets .gardening_newsletter_widget .newletter button {
	line-height:34px;
	padding:10px ;
	width:15%;
	font-size:22px;
}
.gardening-widgets.widget_search,
.gardening-footer-widgets.widget_search ,
.gardening-widgets.widget_product_search {
	padding: 0;
	border: none;
	position:relative;
}
.blog-aside-search {
	position:relative;	
}
.gardening-widgets.widget_search input[type="submit"],
.gardening-footer-widgets.widget_search input[type="submit"],
.gardening-widgets.widget_product_search input[type="submit"],
.blog-aside-search input[type="submit"]  {
	position: absolute;
    right: 3px;
    top: 2px;
    border: none;
    height: 45px;
    width: 45px;
    background: none;
	font-size:0;
	color:#333;
	padding: 0;
	margin: 0;
	background:url(../images/search-icon.png) no-repeat center;
}
.widget_calendar thead th,
.widget_calendar tbody td  {
    text-align: center;
}
.gardening-widgets.widget_search input[type='text'],
.gardening-widgets.widget_product_search input[type=search] {
	width:100%;
	margin-bottom:0;
	padding-right: 45px;
}
.gardening-required {
	border-color: #ff0000 !important;
}
.gardening-footer-widgets {
	margin-bottom:30px;
}
.gardening-footer-widgets li {
	font-size:14px;
	line-height:35px;
	font-family: 'Roboto', sans-serif;
	color:#ccc;
}
.gardening-footer-widgets li:before {
	display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\f105";
    margin-right:8px;
    color:#ccc;
    vertical-align: middle;
}
.gardening-footer-widgets .rssSummary {
	line-height: 21px;
}
.gardening-footer-widgets .tagcloud a {
	border:1px solid #e6e6e6;
	display: inline-block;
	padding:0 15px;
	height:40px;	
	line-height:38px;
	border-radius: 4px;
	margin-bottom:7px;
	margin-right:5px;
}
.gardening_clients_widget .clints-carousel {
	padding-top:12px;
}
.gardening_clients_widget .clints-carousel img {
	border-radius:4px;
} 
.gardening_clients_widget .clints-carousel .owl-dots {
	text-align: center;
    padding-top: 30px;
}
.gardening_clients_widget .clints-carousel .owl-dots .owl-dot,
.gardening_gallery_widget .gallery-carousel .owl-dots .owl-dot {
	background: #fff;
    height: 13px;
    width: 13px;
    display: inline-block;
    border-radius: 100%;
    margin:0 4px;
}
.gardening_clients_widget .clints-carousel .owl-dots .owl-dot.active,
.gardening_gallery_widget .gallery-carousel .owl-dots .owl-dot.active {
	background: #6aaf08;
}
.gardening_gallery_widget .gallery-carousel .owl-dots {
	text-align:center;
	position: relative;
	margin-top:-35px;
	z-index: 99;
}
.widget_recent-posts-widget figure {
	float: left;
	width:33%;
	padding-right: 15px;
	max-width: 120px;
}
.widget_recent-posts-widget figure + .recent-info {
	float: left;
	width:67%;
}
.widget_recent-posts-widget .latest-post {
	margin-bottom: 30px;
}
.widget_recent-posts-widget .latest-post:last-child {
	margin-bottom:0;
}
.gardening-widgets.widget_recent-posts-widget,
.gardening-widgets.widget_calendar {
	padding: 20px 0;
    border: none;
    background: none;
}
.widget_recent-posts-widget h5 {
	margin-bottom:5px;
}
.widget_recent-posts-widget h5 a {
	font-size:15px;
	line-height:22px;
	font-family: 'Roboto', sans-serif;
	/*color:#333;*/
	display: block;
}
.widget_recent-posts-widget .recent-info time {
	font-size:13px;
	line-height:24px;
	font-family: 'Roboto', sans-serif;
	color:#555;
	font-weight: 300;
}
.widget_recent-posts-widget .recent-info time .fa {
	color: #6aaf08;
}
.gardening_office_schedule_widget .info-desc {
	border-bottom:1px solid #34464f;
	padding-bottom:22px;
	margin-bottom:12px;
}
.gardening_office_schedule_widget .office-timing {
	line-height:35px;
}
.gardening_office_schedule_widget .office-timing li:before {
	content:"";
	display:none;
}
.gardening_office_schedule_widget .office-timing li span {
	display: inline-block;
	min-width:45%;
	color:#aaaaaa;
	font-size:15px;
	font-family: 'Roboto', sans-serif;
	font-weight:300;
	font-style: italic;
}
.gardening_office_schedule_widget .office-timing li strong {
	display: inline-block;
	color:#aaaaaa;
	font-size:14px;
	font-family: 'Roboto', sans-serif;
	font-weight:600;
}
.gardening-footer-widgets input::-webkit-input-placeholder {
  color: #ccc !important;
}
.gardening-footer-widgets input::-moz-placeholder {
  color: #ccc !important;
}
.gardening-footer-widgets input:-ms-input-placeholder {
  color: #ccc !important;
}
.gardening-footer-widgets input:-moz-placeholder {
  color: #ccc !important;
}

/* pagination style */
.sidebar-paging-list {
	list-style:none;
	display:inline-block;
}
.sidebar-paging-list li {
	display: inline-block;
	background:#eeeeee;
	font-size:18px;
	text-align:center;
	font-family: 'Lora', serif;
	color:#333333;
	margin-right:10px;
	height:40px;
	width:40px;
	font-weight: 700;
}
.sidebar-paging-list li a {
	display:block;
	line-height: 40px;
}
.sidebar-paging-list li.active,
.sidebar-paging-list li:hover {
	background:#6aaf08;
	color:#fff;
}
.sidebar-paging-list li:hover a {
	color:#fff;
}
.sidebar-paging-list li.pag-link {
	background:none;
}
.sidebar-paging-list li.pag-link:hover a {
	color:#555;
}

/* 404 page */
.gardening-404-page {
	min-height:892px;
	padding:328px 0;
	background-repeat:no-repeat;
	background-position:  center center;
}
.gardening-404-page.no-back {
	min-height:502px;
	padding:150px 0;
}
.gardening-404-page .inner-404 {
	width: 50%;
    float: right;
    padding: 0 15px;
    max-width:730px;
}
.gardening-404-page.no-back .inner-404 {
	float:none;
	margin:0 auto;
}
.gardening-404-page .inner-404 h1 {
	font-size:70px;
	color:#333333;
	font-weight: 700;
	letter-spacing: -3px;
}
.error-img {
	max-width: 70px;
    max-height: 85px;
    vertical-align: middle;
}
.error-para {
	color:#555555;
	font-family: 'Roboto', sans-serif;
	font-size: 18px;
	font-weight:300;
	text-align:center;
	font-style: italic;
}

/* blog pages style */
.blog-page {
	padding: 75px 0 85px;
}
.blog-section .layout-one {
	border-bottom: 1px solid #eaeaea;
	margin-bottom: 20px;
}
.layout-one .about-blog i,
.layout-one .meta-entry i,
.layout-two .about-blog i,
.layout-two .meta-entry i {
	color:#6aaf08;
	margin-right:4px;
}
.layout-one .about-blog > span,
.layout-two .about-blog > span {
	margin-right:15px;
	margin-bottom:18px;
	display: inline-block;
	position:relative;
}
.layout-one .about-blog > span:after,
.layout-two .about-blog > span:after,
.layout-three .about-blog > span:after,
.layout-four .about-blog > span:after {
	position:absolute;
	top: 4px;
    right: -9px;
    width: 1px;
    height: 15px;
	display:block;
	background:#6aaf08;
	content:"";
}
.layout-three .about-blog > span:after {
	background:#fff;
	/*right: -10px;*/
}
.layout-four .about-blog > span {
	position:relative;
}
.layout-four .about-blog > span:after {
	right: -5px;
}
.layout-one .about-blog > span:last-child:after,
.layout-two .about-blog > span:last-child:after,
.layout-three .about-blog > span:last-child:after,
.layout-four .about-blog > span:last-child:after {
	content:"";
	display:none;
}
.layout-one .article-text,
.layout-two .article-text {
	color:#555555;
	font-family: 'Roboto', sans-serif;
	font-size: 15px;
}
.layout-one .about-blog a,
.layout-one .meta-entry a,
.layout-one .about-blog .comments-link,
.layout-one .about-blog .time,
.layout-two .about-blog a,
.layout-two .meta-entry a,
.layout-two .about-blog .comments-link,
.layout-two .about-blog .time,
.layout-one .comment-n {
	font-style: italic;
	font-size:13px;
	line-height: 24px;
	font-family: 'Roboto', sans-serif;	
	color:#555555;
	/*text-transform: capitalize;*/
}
.layout-one .about-blog .time a {
	text-transform:none;
}
.layout-one .meta-entry {
	margin:25px 0;
}
.layout-one .meta-entry a {
	font-weight:700;
}
.gardening-post-content a {
	text-decoration: underline;
}
.layout-one .gardening-catgegory,
.layout-one .gardening-tags {
	margin-bottom:10px;
}
.more-btn {
	margin-bottom:28px;
}
.layout-two .more-btn {
	margin-bottom: 8px;
}
.layout-two .more-btn .btn {
	padding: 4px 25px;
    margin: 7px 0;
}
.page-title {
	text-transform: uppercase;
}
.page-title:after {
	content:"";
	height:2px;
	width:70px;
	background:#6aaf08;
	display: block;
	margin:5px 0 15px;
}
.layout-one .blog-figure img {
	display:block;
}
.layout-one .article-text p {
	font-size:16px;
}

/* blog layout two */
.layout-two .article-text {
	width: 80%;
    margin-left: auto;
    margin-right: auto;
    background: #f1f1f1;
    padding: 35px 25px 25px;
    margin-top: -44px;
    position: relative;
    border:1px solid #e6e6e6;
}
.blog .layout-two .g-post-title {
	font-size:20px;
}
.blog .layout-two .article-text {
	margin-top: -37px;
	padding: 35px 30px 25px;
} 
.layout-two .blog-figure img {
	display: block;
	width:100%;
}
.layout-two .article-text.no-thumb {
	margin-top:0;
}
.blog-section .layout-two {
	margin-bottom:69px;
	text-align:center;
}
.blog-section .sidebar-paging {
	text-align:center;
	clear: both;
}
.blog-4-layout .blog-section .sidebar-paging {
	text-align:right;
}
/* blog layout three */
.blog-section .layout-three {
	margin-bottom:45px;
}
.layout-three .b-image {
	width:45%;
}
.layout-three .b-content {
	width:55%;
}
.blog-section .layout-three .about-blog {
	background:#6aaf08;
	color:#fff;
	padding:5px 9px;
	margin-bottom:20px;
	text-align:center;
}
.layout-three .no-thumb {
	width:100%;
}
.layout-three .about-blog a,
.layout-three .meta-entry a,
.layout-three .about-blog .comments-link,
.layout-three .about-blog .time {
	font-style: italic;
	font-size:13px;
	line-height: 24px;
	font-family: 'Roboto', sans-serif;	
	color:#fff;
	text-transform: capitalize;
}
.layout-three .about-blog > span {
	margin-right:15px;
	display: inline-block;
	position:relative;
}
.layout-three .simple-btn {
	font-size:11px;
	line-height: 24px;
	font-family: 'Lora', serif;	
	font-weight:700;
	text-transform:uppercase;
	color:#6aaf08;
}
/* layout four */
.layout-four .blog-figure {
	position:relative;
	min-height: 65px;
}
.layout-four .blog-figure img {
	width:100%;
	display: block;
}
.layout-four h4 {
	margin-bottom:10px;
}
.layout-four .about-blog {
	margin-bottom:10px;
}
.layout-four .blog-date {
	position: absolute;
    left: 9px;
    top: 11px;
    background: #6aaf08;
    width: 53px;
    padding: 6px 0 0px;
    text-align: center;
} 
.blog-4-layout {
	padding-top: 24px;
}
.layout-four .blog-date strong,
.layout-four .blog-date span {
	display:block;
	font-family: 'Lora', serif;	
	color:#fff;
	font-weight:700;
}
.layout-four .blog-date strong {
	font-size:20px;
	line-height: 20px;
}
.layout-four .blog-date span.b-month {
	font-size:10px;
	line-height: 10px;
	padding-bottom:8px;
	border-bottom:1px solid #fff;
}
.layout-four .blog-date span.b-year {
	font-size:11px;
	line-height: 17px;
}
.layout-four .article-text {
	padding:24px 25px 30px;
	border:1px solid #e5e5e5;
	border-top:none;
	margin-top:-4px;
	margin-bottom:40px;
	overflow: hidden;
}
.layout-four .about-blog .fa {
	color:#6aaf08;
	margin-right:8px;
}
.layout-four .about-blog .author {
	margin-right: 15px;
}
.layout-four .about-blog a {
	font-style: italic;
	font-size:13px;
	line-height: 24px;
	font-family: 'Roboto', sans-serif;	
	color:#555;
	text-transform: capitalize;
}
.layout-four .about-blog a:hover {
	color:#333;
}
.layout-four .more-btn {
    margin-bottom: 0px;
    text-align: right;
}
.blog-section .blog-four:nth-of-type(3n+1) {
	clear: both;
} 
.gardening-latest-blog-list .about-blog {
    margin-bottom: 5px;
}

/* single post */
.blog-details-page .layout-one .about-blog > span {
	margin-top:15px;
	margin-bottom:15px;
}
.blog-details-page .blog-section .layout-one {
	padding-bottom: 42px;
    margin-bottom: 53px;
}
.author-main-info {
	background: #f5f5f5;
	padding: 24px 19px 18px;
	margin-bottom:65px;
}
.comments-sec >h2 {
	margin-bottom:36px;
}
.author-main-info figure,
.commentor-image {
	width:18%;
	float:left;	
	padding-right: 15px;
	overflow: hidden;
}
.author-main-info figure img,
.comments-wrap >.commentor-image img {
	border-radius: 100%;
}
.author-main-info figure + .author-info-text,
.comments-wrap > .commentor-image + .comment-content {
	width:82%;
	float:left;
	padding-top:10px;	
}
.author-info-text .author-name-blog,
.commentlist .commentor {
	text-transform: capitalize;
	font-size:18px;
	margin-bottom: 6px;
}
.author-info-text > h3 {
	margin-bottom:10px;
	font-size:20px;
}
.comments-area .comment,.pingback  {
	background: #f5f5f5;
	margin-bottom:20px;	
}
.comments-area .comment .comments-wrap {
	padding: 34px 25px;
}
.comments-area .comment .comments-wrap p {
	margin-bottom:10px;
	font-size:16px; 
}
.comments-area .bypostauthor > .comments-wrap {
	background:rgba(106,175,8,.2);	
}
.pingback {
	padding:25px;
	padding-bottom: 15px;
}
.comments-area .comment > .comment,
.comments-area .pingback > .pingback {	
	margin-top: 0px;
	margin-bottom:0;
	padding-left:68px; 
	padding-bottom:0;
}
.comments-area .comment .comment .comments-wrap,
.comments-area .pingback > .pingback {
	border-top:1px solid #dcdcdc;
}
.comment-time {
	font-style: italic;
	font-size:13px;
	line-height: 24px;
	font-family: 'Roboto', sans-serif;	
	color:#999999;
	margin-bottom:10px;
	display: inline-block;
}
.comments-area .reply-link,.comments-area .edit-reply-link {
	font-size:14px;
	line-height: 24px;
	font-family: 'Lora', serif;	
	color:#333333;	
}
.comments-area .reply-link a,.comments-area .edit-reply-link a {
	margin-right:30px;
	display: inline-block;
}
.comment-reply-title {
	text-transform:capitalize;
}
.comments-area .sub-comment-title,
.logged-in-as {
	display:block;
	font-variant: small-caps;
	font-weight: 400;
	font-size:14px;
}
.logged-in-as a {
	font-weight: 700;
	font-size:1.1em;
}
.comment-respond {
	padding:62px 0 10px;
}
.comment + .comment-respond {
	padding-left:25px;
}
.comment-respond .comment-form {
	max-width:480px;
}
h2.comment-reply-title {
	font-size:25px;
}
#commentform .btn {
	padding: 10px 46px;
    font-size: 16px;
    border-radius: 4px;
}
.blog-details-page .post-summery {
	color:#555;
	font-size:18px;
	line-height: 26px;
	padding:20px 0 34px;
	font-family: 'Roboto', sans-serif;
	font-weight:500;
}
.blog-details-page blockquote {
	border-left:4px solid #6aaf08;
	background:#f5f5f5;
	padding:20px;
	margin:46px 67px 48px 51px;
}
.blog-details-page blockquote:before {
	content: "";
	display: none;
}
.blog-details-page blockquote p {
	font-weight:500;
	font-style: italic;
	font-size:16px;
	line-height:26px;
	color:#333;
	padding:0;
	margin:0;
}

/* breadcrumb style */
.breadcrumb {
    padding: 8px 15px;
    margin-bottom: 20px;
    list-style: none;
    background: none;
    border-radius: 0;
    display: inline-block;
}
.breadcrumb li,.breadcrumb>.active {
	color:#f5f5f5;
	font-size:16px;
	line-height: 24px;
	font-family: 'Roboto', sans-serif;
	font-weight:300;
	letter-spacing: .06em;
	text-transform: capitalize;
}
.banner-section {
	padding: 124px 0 95px;
	background-position: center center;
    background-size: cover;
}
.banner-section h1 {
	color:#fff;
	font-size:30px;
	line-height: 24px;
	font-weight:700;
	text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: 0.07em;
}
.btn-gn,.btn-wh {
	font-size:15px;
	line-height: 24px;
	font-family: 'Lora', serif;	
	font-weight:700;
	padding: 11px 28px 13px;
}
.btn-gn {
	background:#6aaf08;
	color:#fff;
}
.btn-wh {
	background:#fff !important;
	color:#6aaf08;
}
.owl-carousel .owl-nav .owl-prev, 
.owl-carousel .owl-nav .owl-next {
	font-size:0;
	text-align:center;
}
.owl-prev:after,
.owl-next:after {
	display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;   
    font-size: 20px;
    color: #fff;
    line-height: 25px; 
}
.owl-prev:after {
	content: "\f0d9";
}
.owl-next:after {
	    content: "\f0da";
}

/* comming soon style */
.header-cooming {
	padding:75px 0 222px;
}
.gardening-cooming-soon .content {
	max-width:830px;
	margin-left: auto;
	margin-right: auto;
}
.gardening-cooming-soon h1 {
	font-size:42px;
	line-height: 45px;
	font-weight:700;
	color:#fff;
	padding: 0 30px;
}
.gardening-cooming-soon .coming-soon-content {
	color:#fff;
	font-size:18px;
	line-height: 24px;
	font-family: 'Roboto', sans-serif;
	font-weight:300;
	padding: 0 10%;
	font-style: italic;
	margin-bottom:38px;
}
.gardening-cooming-soon #gardening-counter .ddt {
	display:none;
}
.gardening-cooming-soon #gardening-counter {
	font-size:14px;
	line-height: 17px;
	font-family: 'Lora', serif;	
	font-weight:700;
	color:#dddddd;
	text-align:center;
	margin-bottom:52px;
}
.gardening-cooming-soon #gardening-counter strong {
	display:inline-block;	
	background:rgba(0,0,0,.4);
	border-radius:100%;
	height:115px;
	width:115px;	
	padding:20px 10px;
	margin:10px;
	text-transform: capitalize;
}
.gardening-cooming-soon #gardening-counter strong span {
	font-size:35px;
	display: block;
}
.gardening-coming-form {
	margin-bottom: 250px;
    max-width: 543px;
    margin-left: auto;
    margin-right: auto;
}
.gardening-coming-form input {
	border:1px solid #fff;
	background:none;
	height:52px;
	line-height:50px;
	padding:10px ;
	border-right:none;
	float: left;
	width:80%;
	border-radius: 2px;
	color:#fff;
}
.gardening-coming-form button {
	background:#6aaf08;
	color:#fff;
	height:52px;
	line-height:34px;
	padding:10px ;
	border:none;
	float: left;
	width:15%;
	font-size:22px;
}
.gardening-cooming-soon .footer-cooming {
	color:#ccc;
	font-size:13px;
	line-height: 24px;
	font-family: 'Roboto', sans-serif;
	font-weight:400;
}
.gardening-cooming-soon .footer-cooming  span {
	color:#6aaf08;	
}
.gardening-cooming-soon .social-icons {
	position:fixed;
	right: 0;
	top:47%;
	background:#000;
	width: 46px;
	padding: 15px 10px 5px;
}
.gardening-cooming-soon .social-icons a {
	display:block;
	color:#4b4b4b;
	margin-bottom:10px
}
.gardening-cooming-soon .social-icons a:hover {
	color:#fff;
}

/* gallery pages style */
.gardening-gallery {
	padding:65px 0 90px;
}
.gardening-gallery #filter {
	list-style: none;
	text-align: center;
	    margin-bottom: 21px;
}
.gardening-gallery #filter li {
	display: inline-block;
	color:#333;
	font-size:16px;
	line-height: 24px;
	font-family: 'Roboto', sans-serif;
	font-weight:700;
	cursor:pointer;
	padding:10px 25px;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	cursor: pointer;
}
.gardening-gallery #filter li.active,
.gardening-gallery #filter li:hover {
	color:#6aaf08;
}
.gallery-layout-one {
	padding-bottom: 40px;
}
.gallery-layout-one figure {
	position: relative;
	margin-bottom: 30px;
}
.gallery-layout-one .figcaption {
	background:rgba(106,175,8,.8);
	position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: hidden;
  width: 100%;
  height: 0;
  transition: .5s ease;
}
.gallery-layout-one figure:hover .figcaption {
	height: 100%;
}
.gallery-layout-one .figcaption .figtext {
	background:#fff;
	color:#333;
	width:100%;
	bottom:0;
	position:absolute;
	padding:15px;
	left:0;
	text-align:center;
}
.gardening-gallery .gardening-pagination {
	padding:40px 0;
}
.gallery-layout-one  .gardening-pagination {
	text-align:right;
    padding-top: 17px;
    padding-bottom: 47px;
}
.gallery-layout-two .all {
	width:25%;
	float:left;
} 
.gallery-layout-two .figcaption {
	background:rgba(0,0,0,.7);
	position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: hidden;
  width: 100%;
  height: 0;
  transition: .5s ease;
}
.gallery-layout-two figure:hover .figcaption {
	height: 100%;
}
.gallery-layout-two .figcaption i.fa-arrows {
	position:absolute;
	top:10px;
	right:10px;
	color:#6aaf08;
	font-size:28px;
	-moz-transform: rotate(45deg);
-webkit-transform: rotate(45deg);
-o-transform: rotate(45deg);
-ms-transform: rotate(45deg);
transform: rotate(45deg);
}
.gallery-layout-two figure {
	position: relative;
	margin-bottom: -4px;
}
/*.gallery-list {
	-webkit-transition: height, width 0.5s linear;
	-moz-transition: height, width 0.5s linear;
	-ms-transition: height, width 0.5s linear;
	-o-transition: height, width 0.5s linear;
	transition: height, width 0.5s linear;
}
.gallery-list-masonry > figure,
.gallery-layout-two .all {
	-webkit-transition: -webkit-transform, opacity 0.5s linear;
	-moz-transition: -moz-transform, opacity 0.5s linear;
	-ms-transition: -ms-transform, opacity 0.5s linear;
	-o-transition: -o-transform, opacity 0.5s linear;
	transition: transform, opacity 0.5s linear;
}*/
@media screen and (min-width:1024px){
	.gallery-layout-two figure img {
		min-height:345px;
		display: block;
	}
}

.gallery-layout-three figure {
	margin-bottom:20px;	
}
.gallery-layout-three figure a {
	display: block;
	overflow: hidden;
}
.gallery-layout-three figure:hover img {
	-moz-transform: scale(1.1);
	-webkit-transform: scale(1.1);
	-o-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1);
	-webkit-transition: all .3s ease-in;
	-moz-transition: all .3s ease-in;
	-ms-transition: all .3s ease-in;
	-o-transition: all .3s ease-in;
	transition: all .3s ease-in;
}
.fancybox-caption-wrap p {
	color:#fafafa;
}

.wpb_button, .wpb_content_element, 
ul.wpb_thumbnails-fluid>li {
	margin-bottom:0 !important;
}
.vc_row {
	margin-left: 0 !important;
    margin-right: 0 !important;
}
.vc_column_container>.vc_column-inner {
	padding-left: 0 !important;
    padding-right: 0 !important;
}
/* shortcodes style */
.ptb{
	padding-bottom: 90px;
	padding-top: 90px;
}
.section-header {
	padding-bottom:30px;
}
.section-header h2 {
	font-size:30px;
	text-transform: capitalize;
}
.section-header h2 span {
	text-transform: uppercase;
}
.section-header p {
	font-weight: 300;
	font-style: italic;
	max-width: 735px;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: 0.05em;
}
.services-layout-one {
	background: #f5f5f5;
}
.nature-out-of-style {
	padding:90px 0 26px;
	border-bottom:1px solid #e5e5e5;
}
.nature-out-of-style h2 {
	font-size:40px;
	line-height:48px;
	margin-bottom: 10px;
}
.nature-out-of-style p {
	margin-bottom:25px;
	font-size:16px;
}
.nature-out-of-style .border-im {
	margin-bottom:10px;
}
.nature-out-of-style .nature-of-style {
	margin-top:10px;
}
.nature-out-of-style .content-nature {
	padding-bottom: 10px;
}
.gardening-best-service-layout img {
	margin-bottom:15px;
}
.nature-out-of-style h4 {
	margin-bottom: 20px;
}
.nature-out-of-style ul {
	list-style: none;
	padding-left: 0;
}
.nature-out-of-style ul li {
	float:left;
	width:50%;
}
.nature-out-of-style ul li i {
	color:#6aaf08;
	margin-right:10px;
}
.nature-out-of-style ul li span {
	color:#333;
	font-size:16px;
	line-height: 45px;
	font-family: 'Roboto', sans-serif;
	font-weight:400;
	font-style: italic;
	display: inline-block;
}
.nature-out-of-style .owl-prev,
.nature-out-of-style .owl-next {
	position: absolute;
	top:48%;
	width:25px;
	height:25px;
	background:rgba(0,0,0,0.3);	
	line-height:25px;
}
.nature-out-of-style .owl-prev {
	left:0;
}
.nature-out-of-style .owl-next {
	right:0;
}
.home-about-detail-list {
	padding:55px 0;
}
.home-about-detail-list i {
	border: 1px solid #6aaf08;
    border-radius: 100%;
    font-size: 40px;
    height: 80px;
    width: 80px;
    text-align: center;
    line-height: 80px;
    color: #333333;
    margin-right: 10px;
    vertical-align: middle;
}
.home-about-detail-list .service-icon {
	float:left;
	width:100px;
	margin-top: 10px;
}
.home-about-detail-list .detail-text {
	float:right;
	width:calc(100% - 106px);
}
.home-about-detail-list .detail-text h4 {
	margin-bottom: 20px;
}
.home-expert-team-list .member-image {
	position: relative;
	border-radius: 100%;
	overflow: hidden;
	max-width:208px;
	margin-left:auto;
	margin-right:auto;
}
.home-expert-team-list .member-image img {
	display:block;
}
.home-expert-team-list {
	padding-top: 88px;
}
.home-expert-team-list .section-header {
	padding-bottom: 50px;
}
.home-expert-team-list .hover-content {
	position: absolute;
	background:rgba(0,0,0,0.7);	
  bottom: 0;
  left: 0;
  right: 0;
  overflow: hidden;
  width: 100%;
  height: 0;
  transition: .5s ease;
}
.home-expert-team-list .item:hover .hover-content {
	height: 100%;
	padding:70px 0px 30px;
}
.home-expert-team-list .item .memer-detail {
	opacity:1;
	visibility:visible;
  transition: .5s ease;
}
.home-expert-team-list .item:hover .memer-detail {
	opacity:0;
	visibility:hidden;
}
.home-expert-team-list h2 {
	font-size:30px;
}
.home-expert-team-list h5 {
	margin-bottom:0;
	margin-top:15px;
}
.home-expert-team-list .deg {
	color:#6aaf08;
	font-size:15px;
	line-height: 24px;
	font-family: 'Roboto', sans-serif;
	font-weight:300;
	font-style: italic;
	display: inline-block;
}
.home-expert-team-list .hover-content h5 {
	margin: 0;
	color:#fefefe;
}
.home-expert-team-list .hover-content span.deg-h {
	color:#6aaf08;
	font-size:15px;
	line-height: 24px;
	font-family: 'Roboto', sans-serif;
	font-weight:300;
	font-style: italic;
	display: block;
}
.home-expert-team-list .hover-content span.deg-h:after {
	content:"";
	width:60%;
	height:2px;
	margin-left:auto;
	margin-right:auto;
	background:#6aaf08;
	display:block;
	margin-top:14px;
}
.home-expert-team-list .hover-content a {
	display: inline-block;
	color:#999999;
	margin:15px 8px;
}
.home-expert-team-list .hover-content a:hover {
	color:#fff;
}

.home-expert-team-list .owl-carousel .owl-nav.disabled {
	display:block;
	text-align:center;
}
.home-expert-team-list .owl-prev,
.home-expert-team-list .owl-next {
	width:25px;
	height:25px;
	background:#6aaf08;
	line-height:25px;
	display: inline-block;
	margin:46px 11px 12px 5px;
}
.client-testimonial-list {
	background-attachment: fixed;
	background-color: rgba(0,0,0,.8);
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}
.client-testimonial-list h2 {
	color:#fff;
	font-size:30px;
	line-height: 34px;
	text-transform: capitalize;
}
.client-testimonial-list h2 span {
	text-transform: uppercase;
}
.client-testimonial-list p {
	color:#eeeeee;
	padding: 0 35px;
}
.client-testimonial-list .client-image {
	position: relative;
	max-width:251px;
	margin-left:auto;
	margin-right:auto;
	text-align: center;
	padding: 18px 23px 13px 29px;
	margin-bottom: 10px;
}
.client-testimonial-list .client-image img.clint-images {
	max-width:200px;
	border-radius: 100%;
	display:inline-block;
}
.client-testimonial-list .client-image img.back-image {
	position: absolute;
	top:50%;
	left:50%;
	width:auto;
	z-index:-1;
	-moz-transform: translateX(-50%) translateY(-50%);
-webkit-transform: translateX(-50%) translateY(-50%);
-o-transform: translateX(-50%) translateY(-50%);
-ms-transform: translateX(-50%) translateY(-50%);
transform: translateX(-50%) translateY(-50%);
}
.client-testimonial-list .client-image img.fore-image {
	z-index:2;
}
.client-testimonial-list .client-testimonial-slider {
	margin-top:43px;
}
.client-testimonial-list .client-testimonial-slider h4 {
	color:#eeeeee;
	margin-bottom: 5px;
}
.client-testimonial-list .client-testimonial-slider span {
	color:#eeeeee;
	font-size:13px;
	line-height: 24px;
	font-family: 'Roboto', sans-serif;
	font-weight:300;
	font-style: italic;
	margin-bottom: 5px;
	display: block;
}
.client-testimonial-list .client-testimonial-slider a {
	display: inline-block;
	margin: 5px;
	color:#999999;
}
.client-testimonial-list a:hover {
	color:#fff;
}
.client-testimonial-list .owl-dot {
	display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
     color:#999999;  
     margin:45px 5px 8px; 
}
.client-testimonial-list .owl-dot:after {
	content: "\f06c";
}
.client-testimonial-list .owl-dot.active {
	color:#6aaf08;	
}
.services-layout-one .icon-s {
	border: 1px solid #6aaf08;
    border-radius: 100%;
    font-size: 40px;
    height: 66px;
    display:inline-block;
    width: 66px;
    text-align: center;
    line-height: 65px;
    color: #333333;
    vertical-align: middle;
    margin-bottom:17px;
    overflow: hidden;
    -webkit-transition: all .3s ease-in;
	-moz-transition: all .3s ease-in;
	-ms-transition: all .3s ease-in;
	-o-transition: all .3s ease-in;
	transition: all .3s ease-in;
}
.services-layout-one .icon-s img {
	border-radius: 100%;
	max-width:66px;
	display:inline-block;
}
.services-layout-one {
	padding-bottom:29px;
	padding-top: 93px;
}
.services-layout-one .section-header {
    padding-bottom: 46px;
}
.services-layout-one .service-l:hover .icon-s {
	background: #6aaf08;
	color:#fff;
}
.services-layout-one .service-l h4 {
	margin-bottom:4px;
	transition: .5s ease;
}
.services-layout-one .service-l:hover h4 {
	color:#6aaf08;
}
.services-layout-one .service-l {
	margin-bottom: 50px;
    margin-left: auto;
    margin-right: auto;
    max-width: 480px;
}
.services-layout-one .service-l:nth-of-type(4n+1) {
	clear: both;
}
.services-layout-one .service-l p {
	font-size:15px;
	font-weight:300;
}
.gardening-latest-blog-list {
	background:#f5f5f5;
	padding-top: 93px;
	padding-bottom: 58px;
}
.gardening-latest-blog-list .section-header {
    padding-bottom: 37px;
}
.gardening-latest-blog-list .about-blog {
	margin-bottom:5px;
}
.gardening-latest-blog-list .layout-four .article-text {
    padding: 20px 25px 29px;
}
.layout-four .more-btn .btn {
	padding: 5px 18px;
}
.gardening-projects-layout-one .item {
	width:25%;
	float:left;
	position: relative;
}
.gardening-projects-layout-one .item img {
	display: block;
  width: 100%;
  height: auto;
}
.gardening-projects-layout-one .figcaption {
	background:rgba(0,0,0,.7);
    text-align: center;
    position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: hidden;
  width: 100%;
  height: 0;
  transition: .5s ease;
}
.gardening-projects-layout-one figure:hover .figcaption {
	height: 100%;
}
.gardening-projects-layout-one .figcaption i {
	position:absolute;
	top:-60px;
	right:10px;
	color:#6aaf08;
	font-size:28px;
}
.gardening-projects-layout-one .figcaption .figtext {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  padding: 0px 20px 0px;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}
.gardening-projects-layout-one .figcaption h4 {
	color:#dddddd;
}
.gardening-projects-layout-one .figcaption h4:after {
	content:"";
	background:#dddddd;
	height:2px;
	width:60px;
	display: block;
	margin-left:auto;
	margin-right:auto;
	margin-top:10px;
}
.gardening-projects-layout-one .figcaption span {
	color:#dddddd;
	font-weight: 300;
}
@media screen and (min-width:1024px){
	.gardening-projects-layout-one figure img {
		min-height:345px;
	}
}
.gardening-news-latter-form {
	padding:115px 0 105px;
	background-color: rgba(0,0,0,.8);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed !important;
}
.gardening-news-latter-form h2 {
	font-size:30px;
	color:#fff;
	margin-bottom: 20px; 
}
.gardening-news-latter-form p {
	color:#f8f8f8;
	font-size:16px;
	line-height: 24px;
	font-weight:300;
	max-width:940px;
	margin-left:auto;
	margin-right:auto;
	margin-bottom:40px;
}
.gardening-news-latter-form .mail-form {
	max-width:535px;
	margin-left:auto;
	margin-right:auto;
}
.gardening-news-latter-form .mail-form input {
	border:2px solid #fff;
	display:inline-block;
	margin-right:15px;
	max-width:362px;
}
.gardening-news-latter-form .mail-form input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #fff;
}
.gardening-news-latter-form .mail-form input::-moz-placeholder { /* Firefox 19+ */
  color: #fff;
}
.gardening-news-latter-form .mail-form input:-ms-input-placeholder { /* IE 10+ */
  color: #fff;
}
.gardening-news-latter-form .mail-form input:-moz-placeholder { /* Firefox 18- */
  color: #fff;
}
.gardening-news-latter-form .mail-form button {
    background: #fff;
    color: #6aaf08;
    line-height: 34px;
    padding: 15px 40px;
    vertical-align: middle;
    border: none;
    font-size: 15px;
    border-radius: 4px;
    font-family: 'Lora', serif;
    font-weight:700;
    text-transform: uppercase;
    width:auto;
}
.gardening-news-latter-form .mail-form button i {
	display:none;
}
.gardening-news-latter-form .mail-form button .hidden {
	display: block !important;
}
.counter-layout-one {
	padding: 103px 0 96px;
	background: #f5f5f5;
}
.counter-layout-one h2 {
	font-size: 50px;
	color:#000;
}
.counter-layout-one .icons {
	display: block;
	color:#6aaf08;
	margin:19px 0;
}
.counter-layout-one .about-counter {
	color:#000;
	font-size:15px;
	line-height: 24px;
	font-family: 'Lora', serif;
}
.gardening-contact-layout {
	padding: 94px 0 24px;
}
.gardening-contact-layout h2 {
	font-size:30px;
	color:#000; 
	letter-spacing: 0.09em;
	margin-bottom: 25px;
}
.gardening-contact-layout .section-desc {
	padding-bottom: 37px;
    border-bottom: 1px solid #6aaf08;
    margin-bottom: 44px;
}
.gardening-contact-layout .address-block {
	list-style: none;
	padding-left: 0;
}
.gardening-contact-layout .address-block li {
	position: relative;
	color:#000;
	font-size:15px;
	line-height: 44px;
	font-family: 'Lora', serif;
	padding: 5px 0 12px;
	padding-left:40px;
}
.gardening-contact-layout .address-block li span {
	border: 1px solid #6aaf08;
    border-radius: 100%;
    font-size: 20px;
    height: 33px;
    width: 33px;
    text-align: center;
    line-height: 32px;
    color: #000;
    position: absolute;
    left: 0;
    top: 10px;
}
.gardening-contact-layout .address-block li a,
.gardening-contact-layout .address-block li address {
	display: inline-block;
	color:#333333;
	font-size:15px;
	font-family: 'Lora', serif;
}
.gardening-contact-layout .contact-form h2 {
	margin-bottom: 40px;
}
.gardening-contact-layout .contact-form input[type="submit"]{
	float: right;
    padding: 10px 40px;
    max-width: 120px;
    font-size: 15px;
}
.counter-layout-two {
	padding: 54px 0 83px;
	background: #f5f5f5;
}
.counter-layout-two h2 {
	font-size: 50px;
	color:#000;
}
.counter-layout-two .icons {
	display: block;
	color:#6aaf08;
	margin: 24px 0 17px;
	font-size:32px;
}
.counter-layout-two .about-counter {
	color:#000;
	font-size:15px;
	line-height: 24px;
	font-family: 'Lora', serif;
}
.services-layout-three .service-l {
	float:left;
	width:25%;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}
.services-layout-three .service-inner {
	height:100%;
	width: 100%;
	background:rgba(0,0,0,.3);
	padding: 60px 20px 40px;
	min-height:345px;
}
.services-layout-three .service-inner .icon-s {
	border: 1px solid #6aaf08;
    border-radius: 100%;
    font-size: 30px;
    height: 66px;
    width: 66px;
    overflow: hidden;
    text-align: center;
    line-height: 64px;
    color: #f5f5f5;
    vertical-align: middle;
    display: inline-block;
    margin-bottom:30px;
    transition: .5s ease;
}
.services-layout-three .service-inner:hover .icon-s {
	background: #6aaf08;
}
.services-layout-three .service-inner h4 {
	color: #f5f5f5;
}
.services-layout-three .service-inner p {
	color: #f5f5f5;
	font-weight:300;
	font-size:16px;
}
.home-team-list2 {
	background:#f5f5f5;
	    padding-bottom: 106px;
}
.home-team-list2 .item {
	padding:0 15px;
}
.home-team-list2 .member-image2 {
	position:relative;
}
.home-team-list2 .toverlay {
	background:rgba(106,175,8,0.3);
	position: absolute;
  bottom: 100%;
  left: 0;
  right: 0;
  overflow: hidden;
  width: 100%;
  height:0;
  transition: .5s ease;
}
.home-team-list2 .item:hover .toverlay {
	bottom: 0;
  height: 100%;
    overflow: visible;
}
.home-team-list2 .social-icon {
	position:absolute;
	bottom:-20px;
	left:50%;
	min-width: 196px;
	-moz-transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
}
.home-team-list2 .social-icon a {
	height: 40px;
	width: 40px;
	line-height: 40px;
	background:#f5f5f5;
	color:#000;
	font-size:15px;
	margin:0 3px;
	display: inline-block;
}
.home-team-list2 .social-icon a:hover {
	color:#fff;
	background:#6aaf08;
}
.home-team-list2 .memer-detail {
	padding:30px 10px;
	background: #fff;
}
.home-team-list2 .memer-detail h5 {
	margin-bottom:5px;
}
.home-team-list2 .memer-detail .deg {
	color:#6aaf08;
}
.home-team-list2 .owl-prev,
.home-team-list2 .owl-next {
	position: absolute;
	top:48%;
	width:53px;
	height:53px;
	background:rgba(0,0,0,0.5);
	line-height: 65px;
    display: block;
}
.home-team-list2 .owl-prev {
	left:-40px;
}
.home-team-list2 .owl-next {
	right:-40px;
}
.gallery-home-layout .gallery-list1 figure {
	position: relative;
	margin-bottom:25px;
}
.gallery-home-layout .gallery-list1 figure img {
	display: block;
}
.gallery-home-layout .gallery-list1 .figcaption {
	background: rgba(0,0,0,.3);
	border:0px solid transparent;
	text-align:center;
	position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: hidden;
  width: 0;
  height: 100%;
  transition: .5s ease;
}
.gallery-home-layout .gallery-list1 figure:hover .figcaption {
	width: 100%;
	border:3px solid #6aaf08;
}
.gallery-home-layout .gallery-list1 .figcaption i {
	color:#fff;
	position: relative;
	top:48%;
	font-size:30px;
}
.gallery-home-layout .btn {
	margin-top:40px;	
	font-size:15px;
	padding:10px 30px;
	letter-spacing: 0.05em;
}
.section-header2 {
	padding-bottom:48px;
	text-align:center;	    
}
.section-header2 h2 {
	font-size:30px;
	text-transform: capitalize;
	color:#000;
	margin-bottom: 10px;
	letter-spacing: 0.03em; 
}
.section-header2 h2:after {
	content:"";
	height:2px;
	width:145px;
	background: #6aaf08;
	display: block;
	margin:13px auto 0;
}
.section-header2 p {
	font-weight:300;
	font-style: italic;
	color:#333;
}
.client-testimonial-list2  {
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	padding-top: 100px;
}
.client-testimonial-list2 .item2 {
	margin:0 10px;	
}
.client-testimonial-list2 .item2 .item-2-inner {
	background: rgba(0,0,0,.3);
	padding:60px 20px 30px;
	position: relative;
	min-height:346px;
}
.client-testimonial-list2 .item2 figure {
	max-width:115px;
	border-radius: 100%;
	overflow: hidden;
	margin-left:auto;
	margin-right:auto;
	margin-bottom: 20px;
}
.client-testimonial-list2 .item2 h5 {
	color:#fff;
	margin-bottom:10px;
}
.client-testimonial-list2 .item2 span {
	color:#fff;
	font-weight:300;
	font-style:italic;
	margin-bottom:10px;
	display: block;
}
.client-testimonial-list2 .item2 a {
	color:#fff;
	margin:5px;
}
.client-testimonial-list2 .item2 a:nth-of-type(2) {
	color:#6aaf08;
}
.client-testimonial-list2 .item2 .hover-content {
	background: rgba(0,0,0,.5);
	text-align:center;
	 position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: hidden;
  width: 100%;
  height: 0;
  transition: .5s ease;
}
.client-testimonial-list2 .item2 .hover-content p {
	color:#fff;
	font-weight:300;
	font-size:16px;
	color: white;
	width:100%;
  position: absolute;
  overflow: hidden;
  padding:0px 20px;
  top: 65%;
  left: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}
.client-testimonial-list2 .item2:hover .hover-content {
	height: 100%;
}
.client-testimonial-list2 .item2:hover .hover-content-none {
	opacity:0;
	transition: .2s ease;
}
.client-testimonial-list2 .owl-dots {
	text-align: center;
    margin-top: 52px
}
.client-testimonial-list2 .owl-dot {
	height:13px;
	width:13px;
	border:1px solid #6aaf08;
	border-radius: 100%;
	margin:0 5px;
	display: inline-block;
}
.client-testimonial-list2 .owl-dot.active {
	background: #6aaf08;
}
.gardening-latest-blog-list2 .section-header2 {
	padding-bottom: 52px;
}
.gardening-latest-blog-list2 .layout-two .about-blog > span {
	margin-bottom: 15px;
}
.gardening-latest-blog-list2 .layout-two .article-text {
	width:97%;
	padding: 20px 20px 15px;	
	margin-bottom: 10px;
	margin-top: 0px;
}
.gardening-latest-blog-list2 .layout-two figure +.article-text {
	margin-top: -43px;
}
.gardening-latest-blog-list2 .layout-two .about-blog a {
	font-size:13px;
}
.gardening-latest-blog-list2 .layout-two p {
	font-weight: 300;
	margin-bottom: 0;
}
.gardening-latest-blog-list2 .more-btn {
	margin-bottom: 0;
}
.gardening-latest-blog-list2 .layout-two .more-btn a {
	float:right;
	padding:5px 20px;
}
.home2-our-garden-layout {	
	background:#f5f5f5;
}
.home2-our-garden-layout > .container {
	border-bottom: 1px solid #6aaf08;
	padding-top: 99px;
	padding-bottom: 50px;
}
.home2-our-garden-layout .service-list {
	list-style: none;
	padding-left: 0;
}
.home2-our-garden-layout .service-list li {
	margin-bottom:30px;
}
.home2-our-garden-layout .service-icon {
    float: left;
    width: 90px;
    padding-right:10px;
}

.home2-our-garden-layout .service-icon i,
.home2-our-garden-layout .service-icon img {
    border: 1px solid #6aaf08;
    border-radius: 100%;
    font-size: 30px;
    height: 66px; 
    width: 66px;
    display:inline-block;
    text-align: center;
    line-height: 66px;
    color: #6aaf08;
    margin-right: 10px;
    vertical-align: middle;
    -webkit-transition: all .3s ease-in;
-moz-transition: all .3s ease-in;
-ms-transition: all .3s ease-in;
-o-transition: all .3s ease-in;
transition: all .3s ease-in;
}
.home2-our-garden-layout li:hover .service-icon i {
    background: #6aaf08;
    color: #fff;
}
.home2-our-garden-layout .section-header2 {
	padding-bottom: 48px;
}
.home2-our-garden-layout .detail-text {
    float: right;
    width: calc(100% - 90px);
}
.home2-our-garden-layout .detail-text h5 {
	text-transform: capitalize;
	    margin-bottom: 0;
}
.home2-our-garden-layout .project-list img {
	margin-bottom:20px;
}
.home2-our-garden-layout .project-list p {
	font-size:16px;
}
.home2-our-garden-layout .project-list .btn {
	padding: 7px 20px;
	border-radius:2px;
	margin-top: 20px;
}
.video-image {
    position: relative;
}
.video-image i {
	font-size:34px;
}
.video-image .video-link {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    padding-top: 12px;
    border: 2px solid #fff;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    height: 60px;
    width: 60px;
    text-align: center;
    color: #fff;
        background-color: #6aaf08;
}
.video-image iframe {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
.gardening-shop-layout {
	background: #f5f5f5;
	text-align: center;
	padding-bottom: 100px;
}
.gallery-home-layout {
	padding-bottom: 78px;
}
.gardening-shop-layout .product-image {
	border-radius: 100%;
    overflow: hidden;
    height: 268px;
    width: 268px;
    line-height: 268px;
    background: #fff;
    margin-bottom:25px;
    margin-left: auto;
    margin-right: auto;
}
.gardening-shop-layout .product-image img {
	vertical-align: middle;
}
/*.gardening-shop-layout h4 {
	color:#333;
}*/
.gardening-shop-layout h4:after {
	content: "";
    height: 1px;
    width: 20px;
    background: #6aaf08;
    display: block;
    margin: 6px auto 0;
}
.gardening-shop-layout .pro-price {
	font-family: 'Lora', serif;
	font-weight:700;
    font-size: 20px;
    line-height: 24px;
    color:#333;
    display:block;
    margin-bottom:20px;
}
.gardening-shop-layout .button {
	font-family: 'Lora', serif;
	font-weight:700;
    font-size: 11px;
    line-height: 24px;
    color:#fff;
    padding: 4px 12px;
    background: #6aaf08;
    text-transform: uppercase;
    display: inline-block;
    border-radius: 6px;
}
.gardening-health-plants {
	margin-top:50px;
	background: #f5f5f5;
	position:relative;
	padding-bottom: 88px;
}
.gardening-health-plants h2 {
	color:#000000;
	text-transform: uppercase;
}
.gardening-health-plants p {
	color:#000000;
	font-size: 16px;
}
.gardening-health-plants .back-img {
	position:absolute;
	left:65%;
	bottom: -16px;
	z-index:2;
}
.gardening-health-plants .btn {
	margin-top: 36px;
    padding: 12px 41px;
    font-size: 15px;
    margin-bottom: 10px;
}
.gardening-pricing-table {
	padding-top: 92px;
}
.pricing-table-inner {
	background:#f5f5f5;
	padding:32px;
	border-radius: 4px;
	position: relative;
	overflow: hidden;
}
.pricing-table-inner .plan-tag {
	background:#fff;
	color:#000;
	font-size: 16px;
	font-weight: 300;
	-moz-transform: rotate(-39deg);
	-webkit-transform: rotate(-39deg);
	-o-transform: rotate(-39deg);
	-ms-transform: rotate(-39deg);
	transform: rotate(-39deg);
	position: absolute;
    top: 24px;
    left: -21px;
    width: 130px;
}
.plans-list .col-sm-4:nth-of-type(2n) .pricing-table-inner {
	background: #6aaf08;
}
.pricing-table-inner h2 {
	padding-bottom: 37px;
    border-bottom: 1px solid #c4c4c4;
    margin-bottom: 30px;
    text-transform: capitalize;
}
.plans-list .col-sm-4:nth-of-type(2n) .pricing-table-inner h2 {
	color:#fff;
	border-color: rgba(255,255,255,.5);
}
.pricing-table-inner .feature {
	padding: 10px 35px 0;
	margin-bottom: 30px;
	
}
.pricing-table-inner .feature span {
	display:block;
	font-size:16px;
	font-weight: 300;
	color:#333333;
	border-bottom:1px solid #c4c4c4;
	line-height:24px;
	padding: 10px 0 7px;
}
.plans-list .col-sm-4:nth-of-type(2n) .pricing-table-inner .feature span {
	border-color: rgba(255,255,255,.5);
	color:#fff;
}
.pricing-table-inner .feature span:last-child {
	border-bottom: none;
}
.pricing-table-inner .plan-price {
	height:96px;
	width:96px;
	border-radius: 100%;
	background:#6aaf08;
	color:#fff;
	line-height:96px;
	font-size:30px;
	font-weight:700;
	font-family: 'Lora', serif;
	display: inline-block;
	margin-bottom: 5px;
}
.plans-list .col-sm-4:nth-of-type(2n) .pricing-table-inner .plan-price {
	background:#fff;
	color:#6aaf08;
}
.pricing-table-inner .plan-price .curency {
	font-size:17px;
	vertical-align: baseline;
}
.pricing-table-inner .btn {
	font-size: 13px;
    padding: 11px 35px 10px;
}
.plans-list .col-sm-4:nth-of-type(2n) .pricing-table-inner .btn {
	color: #6aaf08;
    background: #fff;
}
.ptbs {
	padding-bottom: 75px;
	padding-top: 75px;
}
.gardening-best-service-layout {
	background:#f5f5f5;
	padding-bottom: 77px;
}
.gardening-best-service-layout h2 {
	font-size: 30px;
	letter-spacing: 0.05em;
	margin-top: -10px;
	    margin-bottom: 27px;
}
.gardening-best-service-layout p {
	font-size:16px;
	line-height:26px;
	font-style: italic;
}
.gardening-best-service-layout .subtitle {
	font-size:18px;
	line-height:26px;
	font-style: italic;
	margin-bottom: 9px;
	display: inline-block;
	letter-spacing: 0.09em;
}
.gardening-best-service-layout .subtitle:first-letter {
	font-size: 40px;
	text-transform: uppercase;
}
.gardening-best-service-layout .service-text {
	margin-bottom:40px;
}
.gardening-best-service-layout .btn {
	max-width:100%;
	padding:0;
	overflow: hidden;
	margin:0 7px;
	color:#fff;
}
.gardening-best-service-layout .btn span {
	padding:15px 30px 14px;
	display: inline-block;
	font-size:15px;
}
.gardening-best-service-layout .btn i {
	padding:15px;
	display: inline-block;
	background:#619f09;
	font-size:20px;
	color:#fff;
}
.gardening-best-service-layout  #shortcode-c {
	display:none;
}
.gardening-services.services-layout-two {
	padding-top: 83px;
	padding-bottom: 40px;
}
.gardening-services.services-layout-two .section-header {
	padding-bottom: 47px;
}
.services-layout-two img {
	display: block;
}
.services-layout-two figure {
	padding-bottom: 0;
	position:relative;
	margin-bottom:35px;
	overflow: hidden;
}
.services-layout-two .service-text {
	padding:30px 25px;
	background:#6aaf08;
	text-align:center;
	min-height:148px;	
}
.services-layout-two .service-text2  {
	padding:30px 25px;
	background:rgba(106,175,8,.9);
	text-align:center;
	min-height:148px;
	position: absolute;	  
	  left: 0;
	  width: 100%;
	  transition: .5s ease;
	  bottom: 0; 
	opacity:0;
}
.services-layout-two figure:hover .service-text2 {
	opacity:1;
	visibility: visible;
}
.services-layout-two .service h4,
.services-layout-two .service p {
	color:#fff;
}
.services-layout-two figure:hover .service-text h4,
.services-layout-two figure:hover .service-text p {
	color:#6aaf08;
}
.services-layout-two .service h4:hover a {
	color:#333;
}
.services-layout-two .service p {
	font-size:16px;
	font-weight: 300;
	margin-bottom:0;
}
.gardening-how-work {
	background:#f5f5f5;
    padding-bottom: 80px;
    transition: .5s ease;
}
.gardening-how-work .section-header {
	padding-bottom: 45px;
}
.gardening-how-work .numbering {
	padding:5px;
	font-weight: 700;
    color: #fff;
    line-height: 34px;
    font-size:18px;
    font-family: 'Lora', serif;
    background: #6aaf08;
    height:43px;
    width:43px;
    text-align: center;
    position:absolute;
    top:-20px;
    left:0px;
    border-radius: 4px;
}
.gardening-how-work .steps-inner {
	padding:40px 30px 17px;
	border:1px solid #dbdbdb; 
}
.gardening-how-work .detail-text h5 {
	margin-bottom:4px;
}
.gardening-how-work .steps-inner .service-icon {
	margin-bottom:20px;
	display: block;
}
.gardening-how-work .steps-inner i {
	border: 1px solid #6aaf08;
    border-radius: 100%;
    font-size: 30px;
    height: 66px;
    width: 66px;
    display: inline-block;
    text-align: center;
    line-height: 66px;
    color: #6aaf08;
    margin-right: 10px;
    vertical-align: middle;
}
.gardening-health-plants-two {
	background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding-bottom: 78px;
}
.gardening-health-plants-two h2,
.gardening-health-plants-two h2 span {
	color:#fff;
}
.gardening-health-plants-two p {
	font-size:16px;
	color:#000;
	letter-spacing: 0.04em;
	max-width:830px;
	margin-left:auto;
	margin-right:auto;
	margin-bottom: 49px;
}
.gardening-health-plants-two .btn {
	background: none;
	border:1px solid #fff;
	color:#fff;
	font-weight: 700;
    line-height: 34px;
    font-size:24px;
    font-family: 'Lora', serif;
    padding: 0;
    max-width:268px;
    overflow: hidden;
}
.gardening-health-plants-two .btn span {
	display: inline-block;
	padding: 10px 18px;
}
.gardening-health-plants-two .btn i {
	padding:16px 15px;
	display: inline-block;
	color:#619f09;
	background:#fff;
	font-size:20px;
	margin-left: -1px;
}
.gardening-about-welcome {
	background:#f5f5f5;
	padding-top:75px;
}
.gardening-about-welcome h2 {
	font-size:40px;
}
.gardening-about-welcome p {
	font-weight: 300;
	font-size:16px;
	line-height:34px;
}
.gardening-about-welcome .about-img {
	margin-top:40px;
}
.gardening-about-welcome .about-img img {
	min-height:665px;
}
.gardening-about-welcome .subtitle {
	font-style: italic;
	font-size:17px;
	color:#333333;
	font-weight: 400;
	display: inline-block;
	max-width:770px;
}
.about-best-quality {
	padding-top: 68px;
	padding-bottom: 45px;
}
.about-best-quality h2 {
	font-size:30px;
}
.about-best-quality .para {
	margin-bottom:45px;
}
.quality-list {
	margin-bottom:10px;
}
.quality-title {
	background: #6aaf08;
	font-size:16px;
	color:#fff;
	padding:11px 20px 11px 15px;
	line-height:24px;
	text-transform: capitalize;
	border:1px solid #6aaf08;
	position:relative;
}
.quality-title i {
	position:absolute;
	top:32%;
	right:22px;
}
.quality-detail {
	background: #f5f5f5;
	padding:16px 20px;
	display:none;
}
.quality-detail img {
	display: block;
}
.quality-detail p {
	margin-bottom:10px;
}
.team-layout3 {
	background: #f5f5f5;
	padding-bottom: 29px;
	padding-top: 68px;
}
.team-layout3 .team-list .item {
	margin-bottom:45px;
}
.team-layout3 .team-list .item:nth-of-type(4n + 1) {
	clear: both;
}
.gardening-awards-list {
	padding-bottom: 45px;
}
.gardening-awards-list h2,
.gardening-awards-list h4 {
	color:#fff;
}
.gardening-awards-list p {
	color:#eeeeee;
}
.gardening-awards-list .section-header {
	padding-bottom: 50px;
}
.gardening-awards-list .award-icon {
	height: 102px;
    width: 102px;
    background: #6aaf08;
    color: #fff;
    line-height:100px;
    font-size: 45px;
    float: left;
    border-radius: 100%;
    margin-right: 36px;
    text-align: center;
}
.gardening-awards-list .award-icon i {
	vertical-align: middle;
}
.gardening-awards-list .detail-text {
	padding:10px 0;
}
.gardening-awards-list .award-wrap {
	padding: 38px 40px 20px;
	border:1px solid #fff;
	margin-bottom:35px;
}
.color2 .gardening-health-plants-two h2 {
	color:#333;
}
.color2 .gardening-health-plants-two h2 span {
	color:#6aaf08;
}
.color2 .gardening-health-plants-two .btn i {
	color:#fff;
	background:#6aaf08;
}
.color2 .gardening-health-plants-two .btn {
	border-color:#6aaf08;
	color:#6aaf08;
}
.load-more {
	display: inline-block;
    margin: 60px 0 90px;
    padding: 13px 60px;
    font-size: 15px;
    max-width:100%;
}

.gallery-layout-two .figcaption i {
    position: absolute;
    top: 30px;
    right: 10px;
    color: #6aaf08;
    font-size: 28px;
}
.gardening-faq-list .slide-show {
	background: #fff;
	color:#333;
}
.gardening-faq-list .slide-show i {
	color: #6aaf08;
}
.gardening-faq-list .col-sm-6:nth-of-type(2n + 1) {
	clear: both;
}
.client-testimonial-three figure {
	overflow: hidden;
	border-bottom: 8px solid #6aaf08;
    border-radius: 100%;
    max-width: 171px;
    margin-bottom:25px;
}
.client-testimonial-three figure img {
	display: block;
}
.client-testimonial-three .testi-wrap {
	margin-bottom:40px;
}
.client-testimonial-three .cl-deg {
	font-size: 13px;
	font-weight: 300;
	font-style: italic;
	display: inline-block;
	line-height: 24px;
	margin-bottom: 10px;
}
.client-testimonial-three .cl-deg:after {
	background: #6aaf08;
	height:1px;
	width:61px;
	margin-top:5px;
	display:block;
	content:"";
}

/* woocommerce style */
.woocommerce ul.products li.product, 
.woocommerce-page ul.products li.product {
	margin:0;
	width:25%;
	padding:30px 15px;
	text-align:center;
	margin-bottom:15px;
	border:1px solid transparent;
}
.woocommerce .shop-columns-4 ul.products li.product, 
.woocommerce-page .shop-columns-4 ul.products li.product {
	width:25%;
}
.woocommerce .shop-columns-3 ul.products li.product, 
.woocommerce-page .shop-columns-3 ul.products li.product {
	width:33.3%;
}
.woocommerce .shop-columns-5 ul.products li.product, 
.woocommerce-page .shop-columns-5 ul.products li.product {
	width:20%;
}
#customer_details {
	margin-bottom:35px;
}
.woocommerce ul.products li.product:hover, .woocommerce-page ul.products li.product:hover {
	border:1px solid #e5e5e5;
	-webkit-box-shadow: 0px 0px 5px 5px rgba(243,243,243,0.9);
	box-shadow: 0px 0px 5px 5px rgba(243,243,243,0.9);
}
.woocommerce ul.products li.product .woocommerce-loop-category__title, 
.woocommerce ul.products li.product .woocommerce-loop-product__title, 
.woocommerce ul.products li.product h3 {
	font-size: 20px;
    line-height: 24px;
    color: #333;
    text-transform: capitalize;
}
.woocommerce ul.products li.product .woocommerce-loop-category__title:after,
.woocommerce ul.products li.product .woocommerce-loop-product__title:after, 
.woocommerce ul.products li.product h3:after {
    content: "";
    height: 1px;
    width: 20px;
    background: #6aaf08;
    display: block;
    margin: 6px auto 0;
}
.woocommerce ul.products li.product .price {
    font-family: 'Lora', serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
    color: #333;
    display: block;
    margin-bottom: 20px;
}
.woocommerce ul.products li.product .price del {
	display: inline-block;
	color: #999999;
	opacity:1;
	font-size:16px;
}
.woocommerce ul.products li.product .price ins {
	text-decoration: none;
}
.woocommerce ul.products li.product .star-rating {
	margin-left:auto;
	margin-right:auto;
}
.woocommerce #respond input#submit, 
.woocommerce a.button, 
.woocommerce button.button, 
.woocommerce input.button {	
    font-family: 'Lora', serif;
    font-weight: 700;
    font-size: 11px;
    line-height: 24px;
    color: #fff;
    padding: 5px 20px;
    background: #6aaf08;
    text-transform: capitalize;
    display: inline-block;
    border-radius: 2px;
        border: 1px solid transparent;
    -webkit-transition: all 0.4s ease 0.2s;
    -moz-transition: all 0.4s ease 0.2s;
    -ms-transition: all 0.4s ease 0.2s;
    -o-transition: all 0.4s ease 0.2s;
    transition: all 0.4s ease 0.2s;
}
.woocommerce #respond input#submit:hover, 
.woocommerce a.button:hover, 
.woocommerce button.button:hover, 
.woocommerce input.button:hover {
	background: #fff;
    color: #6aaf08;
    border-color: #6aaf08;
}
.woocommerce .star-rating span::before,
.woocommerce .star-rating::before {
    color: #febf00;
}
.woocommerce .star-rating span::before {
	top: -1px;
}
.woocommerce-info::before,
.woocommerce-message:before {
	color:#fff;
}
.woocommerce ul.products li.product .onsale {
    top: 0;
    right: 10px;
    left: auto;
    margin: 0;
    border-radius: 0;
    min-width: 70px;
    height: 40px;
    line-height: 40px;
    font-family: 'Lora', serif;
    text-transform: uppercase;
    background: #6aaf08;
}
.woocommerce span.onsale {
	margin: 0;
    border-radius: 0;
    min-width: 70px;
    height: 40px;
    line-height: 40px;
    font-family: 'Lora', serif;
    text-transform: uppercase;
    background: #6aaf08;
}
.woocommerce ul.products li.product a img {
    min-height: 242px;
    margin-bottom: 28px;
    width: auto;
    margin-left: auto;
    margin-right: auto
}
.woocommerce ul.products li.product a.woocommerce-LoopProduct-link {
	min-height:390px;
	display: block;
}
.woocommerce nav.woocommerce-pagination ul {
	border:none;
	    margin-top: 13px;
}
.woocommerce nav.woocommerce-pagination ul li {
    display: inline-block;
    background: #eeeeee;
    text-align: center;    
]    margin-right: 10px;
    height: 40px;
    width: 40px;
    border: none;
    float: none;
    
}
.woocommerce nav.woocommerce-pagination ul li a, 
.woocommerce nav.woocommerce-pagination ul li span {
	font-weight: 700;
	font-family: 'Lora', serif;
    color: #333333;
    font-size: 18px;
    line-height: 24px;
}
.woocommerce nav.woocommerce-pagination ul li a {
    display: block;
    line-height: 40px;
    padding: 0;
}
.woocommerce nav.woocommerce-pagination ul li a:focus, 
.woocommerce nav.woocommerce-pagination ul li a:hover, 
.woocommerce nav.woocommerce-pagination ul li span.current{
    background: #6aaf08;
    color: #fff;
}
.woocommerce .woocommerce-ordering select {
	min-width: 280px;
	line-height: 40px;
    font-size: 16px;
    padding-left: 10px;
    color: #333;
    font-weight: 400;
}
.woocommerce #review_form #respond p {
    margin: 0 0 17px;
}
.shop-layout-two {
	padding-top:80px;
}
.shop-layout-two .woocommerce-result-count {
	padding: 30px 0;
    line-height: 36px;
    color: #333;
}
.woocommerce .shop-layout-two ul.products li.product, 
.woocommerce-page .shop-layout-two ul.products li.product {
	    margin-bottom: 27px;
}
.woocommerce .shop-layout-two ul.products li.product a img {
    min-height: 242px;
    margin-bottom: 15px;
}
.woocommerce .shop-layout-two ul.products li.product a.woocommerce-LoopProduct-link {
    min-height: 375px;
}
.woocommerce #review_form #respond {
	margin-bottom:18px;
}
.woocommerce #reviews #comment {
    height: 130px;
}
.woocommerce ul.products li.product a.added_to_cart {
	font-size: 11px;
    background: #3c763d;
    color: #fff;
    line-height: 26px;
    padding: 0 5px;
    border-radius: 4px;
    margin: 0;
    vertical-align: middle;
}
.gardening-widgets.woocommerce li:before {
	content: "";
	display: none;
	width: 0;
    height: 0;
    border: none;
    padding: 0;
}
.woocommerce ul.cart_list li a, 
.woocommerce ul.product_list_widget li a,
.woocommerce ul.cart_list li .quantity,
.gardening-widgets-shop .product-title,
.gardening-widgets-shop .woocommerce-Price-amount {
    font-weight: 700;
    font-size: 16px;
    font-family: 'Lora', serif;
    line-height: 22px;
    text-transform: capitalize;
}
.woocommerce ul.cart_list li .quantity,
.gardening-widgets-shop .woocommerce-Price-amount {
    font-size: 18px;
    line-height:24px;
}
.gardening-widgets-shop li ins {
	text-decoration: none;
}
.gardening-widgets-shop li {
	padding-left:0;
}
.widget_shopping_cart .total .woocommerce-Price-amount {
	float: right;
	font-size:20px;	
	color:#000;
}
.woocommerce .widget_shopping_cart .cart_list li a.remove, 
.woocommerce.widget_shopping_cart .cart_list li a.remove {
    position: absolute;
    top: 4px;
    left: 0;
    line-height: 14px;
    text-align: center;
}
.widget_product_categories .cat-item .count {
	float:right;
}
.fullwidthbanner-container.rev_slider_wrapper {
	max-width:100%;
}
.widget_price_filter .price_label {
	margin-top: 10px;
    display: inline-block;
}
.widget_top_rated_products .star-rating {
	margin: 8px 0;
}
.woocommerce div.product .product_title {
	text-transform: capitalize;
	    margin-bottom: 9px;
}
.woocommerce.single div.product .woocommerce-product-rating {
    margin-bottom: 0px;
}
.woocommerce-review-link {
	font-size: 15px;
    font-family: 'Lora', serif;
    line-height: 36px;
    display: inline-block;
    letter-spacing: 0.05em;
}
.woocommerce div.product p.price del, 
.woocommerce div.product span.price del {
	opacity:1;
	font-family: 'Lora', serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    color: #999;
    margin-right:8px;
}
.woocommerce div.product p.price ins, 
.woocommerce div.product span.price ins,
.woocommerce div.product p.price > .woocommerce-Price-amount {
	font-family: 'Lora', serif;
    font-weight: 700;
    font-size: 26px;
    line-height: 24px;
    color: #333333;
    text-decoration: none;
}
.woocommerce div.product p.price ins .woocommerce-Price-currencySymbol, 
.woocommerce div.product span.price ins .woocommerce-Price-currencySymbol,
.woocommerce div.product p.price > .woocommerce-Price-amount .woocommerce-Price-currencySymbol {
	font-size:16px;
	vertical-align: baseline;
}
.woocommerce #respond input#submit.alt, 
.woocommerce a.button.alt, 
.woocommerce button.button.alt, 
.woocommerce input.button.alt {
	background-color: #6aaf08;
}
.woocommerce #respond input#submit.alt:hover, 
.woocommerce a.button.alt:hover, 
.woocommerce button.button.alt:hover, 
.woocommerce input.button.alt:hover {
    background-color: transparent;
    color: #6aaf08;
}
.woocommerce div.product form.cart div.quantity {
	margin-right:40px;
}
.woocommerce.single .quantity .qty {
	background-color: #6aaf08;
	color:#fff; 
	width:50px !important;
	padding:0px 15px;
	-webkit-border-radius: 6px 0 0 6px;
	border-radius: 6px 0 0 6px;
	text-align: center !important;
	height:36px;
	border:none;
	margin-bottom:0;
	-webkit-appearance: textfield;
	-moz-appearance: textfield;
}
.woocommerce-tabs.wc-tabs-wrapper {
	border-top:1px solid #e5e5e5;
	padding-top:25px;
}
.woocommerce div.product .woocommerce-tabs ul.tabs {
    padding: 0;
    margin: 0 0 27px;
}
.woocommerce div.product .woocommerce-tabs ul.tabs::before,
.woocommerce div.product .woocommerce-tabs ul.tabs li.active::before,
.woocommerce div.product .woocommerce-tabs ul.tabs li.active::after,
.woocommerce div.product .woocommerce-tabs ul.tabs li::before,
.woocommerce div.product .woocommerce-tabs ul.tabs li::after {
	content:"";
	display: none;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li {
    border: none;
    background-color: transparent;
    border-radius: 0;
    margin: 0;
    padding: 0;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li a {
	font-weight: 700;
    color: #333333;
    line-height: 24px;
    font-size:25px;
    font-family: 'Lora', serif;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
	color:#6aaf08;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li a:after {
	content: "";
    width: 1px;
    height: 20px;
    display: inline-block;
    margin: 0 20px;
    background: #e5e5e5;
    vertical-align: middle;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li:last-child a:after {
	content:"";
	display: none;
}
.woocommerce #reviews #comments ol.commentlist li img.avatar {
    float: left;
    position: static;
    padding: 0;
    width: 100px;
    height: 100px;
    border-radius: 100%;
    background: none;
    border: none;
    margin-right: 25px;
        margin-top: 10px;
}
.woocommerce #reviews #comments ol.commentlist {
	margin-bottom: 13px;
}
.woocommerce #reviews #comments ol.commentlist li {
    margin: 0 0 20px;
    border: none;
    border-bottom: 1px solid #e5e5e5;
    border-radius: 0;
    padding-bottom: 20px;
}
.woocommerce #reviews #comments ol.commentlist li .comment-text {
	margin: 0;
    border: none;
    border-bottom: none;
    border-radius: 0;
    padding: 0;
    float:left;
        width: calc(100% - 125px);
}
.woocommerce #reviews #comments ol.commentlist li .comment-text p.meta {
	margin-bottom:5px;
}
.woocommerce .woocommerce-Reviews .star-rating {
	float:none;
	margin-top: 18px;
    /*margin-bottom: 30px;*/
}
.woocommerce-review__author {
	font-weight: 700;
    color: #333333;
    line-height: 40px;
    font-size:18px;
    font-family: 'Lora', serif;
    display: block;
    /*margin-top: -89px;
    margin-bottom: 31px;*/
}
.woocommerce-review__dash {
	display:none;
}
.woocommerce-review__published-date {
	font-weight: 300;
    color: #6aaf08;
    line-height: 24px;
    font-size:15px;
    display: block;
}
.woocommerce-Tabs-panel h4 {
	margin-bottom:18px;
}
.woocommerce #content div.product div.summary, .woocommerce div.product div.summary, .woocommerce-page #content div.product div.summary, .woocommerce-page div.product div.summary {
	width:41%;
}
.woocommerce div.product .woocommerce-tabs .panel {
    margin: 0 0 60px;
    padding: 0 0 26px;
}
.woocommerce div.product .woocommerce-tabs .panel.woocommerce-Tabs-panel--reviews {
    margin: 0 0 60px;
    padding: 0 0 26px;
}
#gardening-product-images {
	float: left;
	width:55.5%;
	margin-bottom:20px;
}
#gardening-product-images .flexslider {
	margin:0;
	border:none;
}
#gardening-product-slider img {
	width:auto;
	margin-left:auto;
	margin-right:auto;
	min-height:397px;
}
.woocommerce #review_form #respond p.comment-notes {
	    margin: 5px 0 20px;
}
#gardening-product-images .g-gallery-thumb {
	margin: 20px;
}
#gardening-product-carousel.flexslider .slides > li {
	padding:0 5px;
}
#gardening-product-images .flex-direction-nav a{
	opacity:1;	
	font-size:0;
	width: 18px;
    height: 20px;
    top: 60%;
}

#gardening-product-images .flex-direction-nav a:before {
	display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size:20px;
}
#gardening-product-images .flex-direction-nav a.flex-prev {
	left:-18px
}
#gardening-product-images .flex-direction-nav a.flex-prev:before {
	content: "\f060";
}
#gardening-product-images .flex-direction-nav a.flex-next {
	right:-18px;
}
#gardening-product-images .flex-direction-nav a.flex-next:before {
	content: "\f061";
}

.woocommerce-Reviews .comment-reply-title {
	font-weight: 700;
    color: #333333;
    line-height: 24px;
    font-size:20px;
    font-family: 'Lora', serif;
    display: block;
}
#review_form label {
	font-weight: 400;
    color: #333333;
    line-height: 24px;
    font-size:18px;
    font-family: 'Lora', serif;
    display: block;
}
.woocommerce #review_form #respond p.stars {
	display: inline-block;
	    margin: 10px 0 32px;
}
.woocommerce #review_form #respond .form-submit input[type=submit] {
	font-weight: 700;
    font-size:15px;
    line-height: 37px;
    text-transform:uppercase;
}
#add_payment_method table.cart input, 
.woocommerce-cart table.cart input, 
.woocommerce-checkout table.cart input {
	line-height: 24px;
}
#add_payment_method table.cart td.actions .coupon .input-text, 
.woocommerce-cart table.cart td.actions .coupon .input-text, 
.woocommerce-checkout table.cart td.actions .coupon .input-text {
	height:42px;
	min-width:150px;
	    border-radius: 3px;
}
.woocommerce-checkout .checkbox input[type=checkbox] {
	position: static;
}
.woocommerce .cart .button, 
.woocommerce .cart input.button {
    float: none;
    display: inline-block;
    max-width: 120px;
    height: 42px;
        text-transform: uppercase;
}
.select2-container--default .select2-selection--single {
	height:50px;
	border-color: #e6e6e6;
}
.select2-container > .selection {
	height:50px;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
	line-height: 50px;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
	top:13px;
}
.woocommerce form .form-row input.input-text {
	height:50px;
}
.woocommerce-account .woocommerce-MyAccount-content,
.woocommerce-account .woocommerce-MyAccount-navigation {
	float: none;
    width: 100%;
}
.woocommerce-account .woocommerce-MyAccount-navigation {
	background:#6aaf08;
	margin-bottom:25px;
}
.woocommerce #payment #place_order, .woocommerce-page #payment #place_order {
	font-size:15px;
	text-transform:uppercase;
	    padding: 10px 35px;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul {
	list-style: none;
	padding:15px 0;
}
.woocommerce-account .woocommerce-MyAccount-navigation li {
	display: inline-block;
}
.woocommerce-account .woocommerce-MyAccount-navigation li a {
	font-weight: 700;
    color: #fff;
    line-height: 24px;
    font-size:18px;
    font-family: 'Lora', serif;
    padding: 0 20px;
    display: inline-block;
}
.woocommerce-account .woocommerce-MyAccount-navigation li a:hover {
	color: #eaeaea;
}
.woocommerce-account .woocommerce-MyAccount-navigation li:after {
	content: "";
    width: 1px;
    height: 20px;
    display: inline-block;
    background: #fff;
    vertical-align: middle;
}
.woocommerce-MyAccount-content .woocommerce-EditAccountForm.edit-account legend {
	font-weight: 700;
    color: #333;
    line-height: 24px;
    font-size:18px;
    font-family: 'Lora', serif;
}
.woocommerce div.product div.images .woocommerce-product-gallery__image img {
	width:auto;
}
.woocommerce form.checkout_coupon .button {
	height: 50px;
}
.woocommerce .widget_price_filter .ui-slider .ui-slider-handle {
	top : -2px;
}
.woocommerce #review_form #respond textarea,
.woocommerce #review_form #respond input {
	margin-bottom:0;
	width:100%;
	max-width:100%;
}
.header-cart-checkout {
	margin-bottom:66px;
	margin-top:5px;
}
.header-cart-checkout i {
    height: 102px;
    width: 102px;
    background: none;
    border-radius: 100%;
    border:1px solid #6aaf08;
    font-size: 32px;
    color: #6aaf08;
    line-height: 100px;
    margin-bottom: 25px;
}
.header-cart-checkout h5 {
	margin-bottom:5px;
}
.header-cart-checkout .active i {
	background: #6aaf08;
	color:#fff;
}
.custom-cart-number,
.woocommerce-cart-form__contents thead th {
	font-size:16px;
	font-weight:700;
	text-transform: uppercase;
}
.custom-cart-number {
	margin-bottom:34px;
	display: block;
}
.woocommerce-cart-form__contents thead {
	background: #6aaf08;
	color:#fff;
}
.woocommerce-cart-form__contents thead th,
.woocommerce table.shop_table.cart .woocommerce-cart-form__cart-item.cart_item td {
	text-align:center;
}
 .woocommerce table.shop_table.cart .woocommerce-cart-form__cart-item.cart_item td {
	border:none;
	padding: 30px 10px 25px;
	font-weight: 700;
    color: #333;
    line-height: 24px;
    font-size:20px;
    font-family: 'Lora', serif;
}
.woocommerce table.shop_table.cart tbody td a.remove {
	margin-left: auto;
	margin-right: auto;
}
.woocommerce-cart-form__contents thead th {	
	color:#fff;
	border:none;
	text-align:center;
}
.up-sells h2,
.related h2 {
	margin-bottom:24px;
}
.woocommerce .entry-summary div.product p.price, 
.woocommerce .entry-summary div.product span.price {
	margin-bottom:9px;
}
.woocommerce div.product .entry-summary .woocommerce-product-details__short-description {
	    margin-bottom: 40px; 
}
.woocommerce div.product .entry-summary form.cart {
	margin-bottom:10px;
}
.header-cart-checkout .icon:after {
	height:1px;
	width:100px;
	background:#e5e5e5;
	content:"";
	position:absolute;
	top: 50px;
    right: -42px;
}
.header-cart-checkout .icon:before {
	content: "\f105";
	position:absolute;
        display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color:#e5e5e5;
    top: 40px;
    font-size: 20px;
    left: 38px;
}
.header-cart-checkout div:first-child .icon:before,
.header-cart-checkout div:last-child .icon:after {
	content:"";
	display: none;
}
#gardening-product-images >img {
	display:block;
	width:auto;
	margin-left: auto;
	margin-right: auto;
}
.woocommerce-cart table.cart th {
	padding:15px 12px;
}
#add_payment_method table.cart img, 
.woocommerce-cart table.cart img, 
.woocommerce-checkout table.cart img {
    width: 119px;
    box-shadow: none;
}
.woocommerce table.cart .quantity .qty{	
	padding: 5px 3px;
    height: auto;
    border-radius: 0;
}
.woocommerce table.shop_table.cart {
	margin-bottom:70px;
	border:none;
}
.woocommerce table.shop_table.cart .woocommerce-cart-form__cart-item.cart_item td.product-thumbnail {
	border-left:1px solid rgba(0,0,0,.1);
}
.woocommerce table.shop_table.cart .woocommerce-cart-form__cart-item.cart_item td.product-remove {
	border-right:1px solid #e5e5e5;
}
.cart_totals {
	border:1px solid #e5e5e5;
}
.woocommerce table.shop_table.cart td.actions {
    border-top: 1px solid rgba(0,0,0,.1);
    padding: 30px 0 10px;
   }
.woocommerce table.shop_table.cart td.actions .button {
	border-radius: 2px;
	font-size:15px;
	max-width:100%;
}
.cart_totals h2 {
    font-size:20px;
    background:#f5f5f5;
    padding:20px 32px;
    text-transform:capitalize;   
}
.woocommerce-cart .cart-collaterals .cart_totals .shop_table {
	border:none;	
	padding: 0 32px;
}
.cart_totals .shop_table td,
.cart_totals .shop_table th {
	border:none;
	padding: 12px 0;
	text-transform: uppercase;
	font-size:16px;
	color:#333;
}
.woocommerce .cart-collaterals .cart_totals .shop_table th {
	padding-left:0;
}
.woocommerce .cart-collaterals .cart_totals .shop_table td {
	padding-right: 0;
}
.cart_totals .shop_table td span {
	font-size:20px;
	font-weight:700;
	color:#333;
	font-family: 'Lora', serif;
}
.cart_totals .shop_table tr:last-child td,
.cart_totals .shop_table tr:last-child th {
	border-bottom: 1px solid #ebe9eb;
}
.cart_totals .shop_table tr td {
	text-align:right;
}
.cart_totals .shop_table .order-total span {
	color:#6aaf08;
	font-size:24px;
}
.cart_totals .wc-proceed-to-checkout a.checkout-button {
	font-size:15px;
	text-transform: uppercase;
	    padding: 10px 20px;
    max-width: 245px;
    margin-left: auto;
    margin-right: auto;
    font-family: 'Lora', serif;
}
.woocommerce-checkout h3 {
	font-size:30px;
	text-transform: capitalize;
    font-family: 'Lora', serif;
    color:#000;
    font-weight:700;
}
.woocommerce form.woocommerce-checkout .woocommerce-billing-fields label {
	display:none;
}
.woocommerce-billing-fields__field-wrapper .select2-container--default .select2-selection--single .select2-selection__rendered {
	padding: 0px 20px;
    color: #999999;
    font-size: 13px;
    font-weight: 300;
    display: inline-block;
}
.woocommerce form.woocommerce-checkout .form-row-first, 
.woocommerce-page form.woocommerce-checkout .form-row-first,
.woocommerce form.woocommerce-checkout .form-row-last, 
.woocommerce-page form.woocommerce-checkout .form-row-last {
	width:100%;
	float:none;
}
.woocommerce-checkout .woocommerce-checkout-review-order-table thead {
	background:#f5f5f5;
	padding:0 20px;
}
.woocommerce .woocommerce-checkout table.shop_table th {
	text-transform: uppercase;
	color:#333;
	font-weight:700;
	font-size:16px;
	font-family: 'Roboto', sans-serif;
	border:none;
	padding: 14px 20px;
}
.woocommerce .woocommerce-checkout table.shop_table tr {
	padding:0 20px;
}
.woocommerce .woocommerce-checkout table.shop_table td {
	border:none;
	padding: 20px 20px 0;
	font-family: 'Lora', serif;
	font-size:18px;
	color:#333;
	text-transform: capitalize;
}
.woocommerce .woocommerce-checkout table.shop_table td span {
	font-size:20px;	
    font-weight: 700;
}
.woocommerce .woocommerce-checkout table.shop_table tr th:last-child,
.woocommerce .woocommerce-checkout table.shop_table tr td:last-child {
	text-align: right;
}
.woocommerce .woocommerce-checkout table.shop_table tbody tr:last-child th,
.woocommerce .woocommerce-checkout table.shop_table tbody tr:last-child td {
	padding-bottom:15px;
}
.woocommerce .woocommerce-checkout table.shop_table tfoot td {
	padding:10px 20px;
}
.woocommerce .woocommerce-checkout .woocommerce-additional-fields {
	border:1px solid rgba(0,0,0,.1);
	padding:20px;
}
.woocommerce .woocommerce-checkout .woocommerce-additional-fields textarea {
	background:#f5f5f5;
	color:#999999;
	font-size:13px;
}
.woocommerce .woocommerce-checkout .woocommerce-additional-fields label {
	text-transform: uppercase;
	font-weight: 700;
	color:#333;
	font-size:16px;
}
.woocommerce .woocommerce-checkout .woocommerce-account-fields p.create-account {
	text-transform: uppercase;
	font-weight: 700;
	color:#333;
	font-size:16px;
	background:#f5f5f5;
	padding:15px;
	margin: 0;
}
.woocommerce .woocommerce-checkout table.shop_table .cart-subtotal th,
.woocommerce .woocommerce-checkout table.shop_table .cart-subtotal td,
.woocommerce .woocommerce-checkout table.shop_table .order-total th,
.woocommerce .woocommerce-checkout table.shop_table .order-total td  {
	border-top:1px solid rgba(0,0,0,.1);	
}
.woocommerce-info,
.woocommerce-message {
	border:none;
	color:#fff;
	background:#6aaf08;
	font-size:16px;
	line-height:34px;
}
.woocommerce-info a:hover,
.woocommerce-message a:hover {
	color:#fff;
	text-decoration:underline;	
}
.woocommerce form.checkout_coupon, 
.woocommerce form.login, 
.woocommerce form.register {
	border:none;
}
.woocommerce form.woocommerce-form-login.login,
.woocommerce-checkout form.checkout_coupon { 
	    max-width: 720px;
    padding: 20px 10px;
    margin-left: auto;
    margin-right: auto;
}
.woocommerce-checkout form.checkout_coupon .form-row {
	float:none;
	width:100%;
	text-align:center;
}
.woocommerce-form-login.login .form-row {
	padding:3px 50px;
	width: 100%;
}
#ship-to-different-address .checkbox input[type=checkbox]  {
	top:7px;
}
.woocommerce form.woocommerce-form-login.login .form-row .button,
.woocommerce form.register .form-row .button {
	margin-left: auto;
    margin-right: auto;
    display: block;
    text-transform: uppercase;
    font-size: 15px;
    padding: 8px 30px;
}
.woocommerce form.woocommerce-form-login.login .woocommerce-form__label-for-checkbox {
	display: block;
	text-align:center;
	font-weight:700;
	    text-transform: uppercase;
    margin: 15px 0 12px;
}
#createaccount {
	position:relative;
}
.lost_password {
	text-align:center;	
}

.contactus-contact-detail {
	margin-top:-50px;
}
.contactus-contact-detail .hover-content {
	padding: 10px 30px;
	text-align:center;
	min-height:302px;
	line-height:280px;
	background-color: #6aaf08;
	background-repeat: no-repeat;
	background-position: center;
}
.contactus-contact-detail .hover-content-inner {
	display: inline-block;
	vertical-align: middle;
}
.contactus-contact-detail .hover-content h2 {
	color:#fff;
	font-size:30px;
	text-transform: uppercase;
	margin-bottom: 30px;
}
.contactus-contact-detail .g-contact a,
.contactus-contact-detail .g-mail a,
.contactus-contact-detail .l-chat p,
.contactus-contact-detail .l-chat a {
	display: block;
	font-size:30px;
	color:#333;
	font-weight:700;
	font-family: 'Lora', serif;
}
.contactus-contact-detail .g-mail a,
.contactus-contact-detail .l-chat p,
.contactus-contact-detail .l-chat a {
	font-size:20px;
}
.contactus-contact-detail .l-chat a {
	display: inline;
	text-decoration: underline;
	
}
.contact-us-connect-to-world {
	padding:66px 0 90px;
}
.contact-us-connect-to-world p.connect-desc {
    -webkit-column-count: 2; /* Chrome, Safari, Opera */
    -moz-column-count: 2; /* Firefox */
    column-count: 2;
    -webkit-column-gap: 40px; /* Chrome, Safari, Opera */
    -moz-column-gap: 40px; /* Firefox */
    column-gap: 40px;
    margin-bottom:60px;
}
.contact-us-connect-to-world h4:after {
	content:"";
	width:109px;
	height:1px;
	display: block;
	background: #6aaf08;
	margin:12px 0;
}
.contact-us-connect-to-world .connect-addresses h4:after {
	margin: 25px 0 18px;
}
.contact-us-connect-to-world .connect-addresses i {
	color:#6aaf08;
	font-size:18px;
	margin-right:10px;
	display: inline-block;
}
.contact-us-connect-to-world .connect-addresses span,
.contact-us-connect-to-world .connect-addresses address {
	display: inline-block;
	font-size:15px;
	line-height:24px;
	font-family: 'Lora', serif;
}
.contact-us-connect-to-world .connect-addresses .adds {
	position: relative;
	padding:5px 0 5px 36px;
}
.contact-us-connect-to-world .connect-addresses i {
	position: absolute;
	left:0;
	top:8px;
}
.contact-us-form-map {
	background: #f5f5f5
}
.contact-us-form-map .contact-form-layout {
	padding:96px 0 88px;
	max-width: 470px;
	
}
.contact-us-form-map  h2 {
	font-size:30px;
	margin-bottom: 34px;
	color:#000;
}
.contact-us-form-map .contact-form-layout .wpcf7-submit {
	width:100%;
	max-width:100%;
	margin-bottom:0;
	font-size:15px;
}
#contact-google-map {
	height:765px;
}
.contact-form-layout form p {
	margin-bottom:0;
}
.contact-google-map-wrap {
	padding-right:0;
}
.page-links a,
.page-links span {
	display: inline-block;
    background: #eeeeee;
    font-size: 18px;
    text-align: center;
    font-family: 'Lora', serif;
    color: #333333;
    margin-right: 10px;
    height: 40px;
    width: 40px;
    font-weight: 700;
    line-height: 40px;
}
.page-links > span {
	background: #6aaf08;
    color: #fff;
}
.client-testimonial-three {
	padding-top:100px;
	padding-bottom: 27px;
}
.client-testimonial-three .client-comment {
	padding-top:20px;
}
.client-testimonial-three .client-comment p {
	font-size:16px;
	line-height:30px;
}
.gardening-faq-list {
	padding-top: 80px;
	padding-bottom: 80px;
}
.gardening-faq-list .section-header {
	padding-bottom: 53px;
}
.gardening-faq-list .quality-list {
	margin-bottom:19px;
}
.gardening-related-gallery figure {
	position: relative;
}
.gardening-related-gallery figure img {
	display:block;
}
.gardening-related-gallery figure .figcaption {
    background: rgba(0,0,0,.3);
    text-align: center;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    overflow: hidden;
    width: 0;
    height: 100%;
    transition: .5s ease;
}
.gardening-related-gallery figure:hover .figcaption {
	width:100%
}
.gardening-related-gallery figure .figcaption i {
    color: #fff;
    top: 42%;
    position:relative;
    font-size: 22px;
    background:#6aaf08;
    height:41px;
    width:41px;
    border-radius: 100%;
    line-height: 40px;
    display: inline-block;
    text-align: center;    
}
.gallery-details-page {
	padding-top: 80px;
	padding-bottom: 80px;
}
.gallery-details-page .gallery-info {
	background:#f5f5f5;
	padding:25px 30px 15px;
	border:1px solid #dcdcdc;
}
.related-single-gallery {
	margin-bottom:20px;
}
.gallery-details-page .gallery-info h4 {
	margin-bottom:6px;
	padding-bottom:13px;
	border-bottom:1px solid #dcdcdc;
	text-transform: capitalize;
}
.gallery-details-page .gallery-info ul {
	list-style: none;
	padding-left: 0;
	margin-bottom: 0;
}
.gallery-details-page .gallery-info ul li {
	line-height:40px;
}
.gallery-details-page .gallery-info ul strong {
	font-size:16px;
	font-family: 'Lora', serif;	
	color:#333;
	padding-right:10px;
	min-width:125px;
	display: inline-block;
}
.gallery-details-page .gallery-info ul span {	
	font-size:15px;
	font-family: 'Lora', serif;	
	padding-left:10px;
}
.gallery-details-page .gallery-figure {
	padding-bottom:35px;
}
.gallery-details-page .gallery-title {
	font-size:25px;
}
.gallery-details-page .project-summery {
	color:#555;
	font-size:18px;
	line-height: 26px;
	padding:6px 0 37px;
	font-family: 'Roboto', sans-serif;
	font-weight:500;
}
.gallery-details-page .gallery-text p {
	font-size:16px;
	color:#555;
	line-height: 26px;
}
.gallery-details-page .gallery-text figure img {
	display:block;
}
.gallery-details-page .gallery-text figcaption {
	background:#f5f5f5;
	font-size: 20px;
	font-weight: 700;
	font-family: 'lora';
	text-transform: uppercase;
	border: 1px solid #dcdcdc;
	display: block;
	padding:10px;
	color:#333;
	margin: 0;
    border-top: none;
    margin-bottom:20px;
}
.gallery-details-page .gallery-section {
	padding-bottom: 35px;
	border-bottom: 1px solid #dcdcdc;
	margin-bottom:76px;
}
.gardening-related-gallery > h2 {
	margin-bottom:35px;
}
.products-lists .product a.added_to_cart {
    font-size: 11px;
    background: #3c763d;
    color: #fff;
    line-height: 26px;
    padding: 5px;
    border-radius: 4px;
    margin: 0;
    vertical-align: middle;
}
.gardening-mega-menu-item-layout .gardening-mega-menu-warp ul.products li.product {
	width:100%;
	text-align: left;
	padding: 12px;
}
.gardening-mega-menu-item-layout .gardening-mega-menu-warp ul.products li.product .price {
	margin-bottom:5px;
}
.gardening-mega-menu-item-layout .gardening-mega-menu-warp ul.products li.product a.woocommerce-LoopProduct-link {
	min-height:0;
}
.gardening-mega-menu-item-layout .gardening-mega-menu-warp ul.products li.product h2:after{
	content:"";
	display: none;
}
.gardening-mega-menu-item-layout .gardening-mega-menu-warp {
	width:100%;
}
.gardening-mega-menu-item-layout .gardening-mega-menu-warp h3 {
	margin-bottom:20px !important;
}
.gardening-mega-menu-item-layout .gardening-mega-menu-warp ul.products li.product .star-rating {
	margin:0;
}
.gardening-mega-menu-item-layout .gardening-mega-menu-warp ul.products li.product img {
	float: left;
    width: 100px;
    min-height: 0;
    margin-right: 20px;   
}
.gardening-mega-menu-item-layout .vc_col-sm-4 {
	padding-left: 10px !important;
	padding-right: 10px !important;
}
.gardening-health-plants-two .btn:hover {
	color: inherit;
	opacity:0.75;
}

.vc_separator-has-text { 
	font-weight:700;
	text-transform: uppercase;
}
.vc_row .vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-color-blue .vc_icon_element-icon {
	color:#6aaf08;
} 
.gardening-container {
	margin-left:auto !important;
	margin-right:auto !important;
	padding-left:15px;
	padding-right:15px;
}
.woocommerce div.product form.cart .button {
    height: initial;
}
.single form.cart,
.yith-wcwl-add-to-wishlist {
	display: inline-block;
	vertical-align: middle;
}
.yith-wcwl-add-button > a i {
	margin-right:0;
}
.yith-wcwl-add-to-wishlist {
    margin-top: 0px;
    margin-left: 15px;
    margin-bottom: 10px;
}
.yith-wcwl-add-to-wishlist .feedback {
	font-size:0;
    color: #6aaf08;
    padding: 8px 20px;
    background: #fff;
    border-radius: 6px;
    border: 1px solid #6aaf08;
    display: inline-block;
}
.yith-wcwl-add-to-wishlist .feedback:after {
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: 14px;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
        content: "\f004";
}
.yith-wcwl-add-to-wishlist .feedback + a {
	font-size:10px;
	display: inline-block;
	color: #fff;
    padding: 4px 10px;
    background: #6aaf08;
    border-radius: 6px;
    border: 1px solid #6aaf08;
}
.woocommerce .wishlist_table td.product-add-to-cart a {
    margin-bottom: 0;
    line-height: 24px;
}
.woocommerce table.wishlist_table {
    font-size: 16px;
}
.service-details .blog-figure {
	margin-bottom:20px;
}
.slider-heading:first-letter {
	color:#6aaf08;	
}
.slider-heading:after {
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\f06c";
    position: absolute;
    left: 32px;
    top: -6px;
    color:#6aaf08;	
    font-size:30px;
}
.gardening-contact-layout .address-block li a:hover{
	color: #6aaf08;
}

/*span.wpcf7-not-valid-tip{
	display: none;
}*/
.gardening-contact-layout input.wpcf7-not-valid{
	    border: 1px solid red!important;
}
.footer .widget_recent-posts-widget .recent-info h5 a:hover{
	color: #6aaf08;
}

.services-layout-three .service-inner {
    background: rgba(0,0,0,.6);
}


.pricing-table-inner:hover .btn , .plans-list .col-sm-4:nth-of-type(2n) .pricing-table-inner .btn{
	    background-color: #6aaf08;
	    color: #ffffff;
}
 
.plans-list .col-sm-4:nth-of-type(2n) .pricing-table-inner h2{
    color: #333;
   }
.plans-list .col-sm-4:nth-of-type(2n) .pricing-table-inner{
	    background: #f5f5f5;
}
.plans-list .col-sm-4:nth-of-type(2n) .pricing-table-inner .feature span{
	    color: #333333;
}
.plans-list .col-sm-4:nth-of-type(2n) .pricing-table-inner .feature span {
    border-color: #c4c4c4;
}
.plans-list .col-sm-4:hover .pricing-table-inner {
	background: #6aaf08;
} 
.plans-list .col-sm-4:hover .pricing-table-inner h2 {
	color:#fff;
	border-color: rgba(255,255,255,.5);
}
.plans-list .col-sm-4:hover .pricing-table-inner .feature span {
	border-color: rgba(255,255,255,.5);
	color:#fff;
}
.col-sm-4:hover .pricing-table-inner .plan-price{
	background:#ffffff;
	color: #6aaf08;
}
.pricing-table-inner:hover .btn , .plans-list .col-sm-4:nth-of-type(2n):hover .pricing-table-inner .btn{
	    background-color: #ffffff;
	    color: #6aaf08;
}
.header-lower-section .menu-item a{
	font-family: 'Roboto', sans-serif;
}
.gardening-latest-blog-list2 .layout-two .article-text{
    width: 92%;
    padding: 20px 20px 15px;
    margin-bottom: 10px;
    margin-top: 0px;
   }
.gardening-latest-blog-list2 .layout-two a +.article-text {
	margin-top: -43px;
}   
.layout-two .article-text {
    background: #ffffff;
   }
   

.gallery-list h5 a:focus, .gallery-list h5 a:hover{
	color: #333333;
}
.woocommerce table.wishlist_table tbody td {
    text-align: left;
    border-color: #e7e7e7;
}
.office-timing + .site-logo {
	text-align: center;
}
#cancel-comment-reply-link {
	float: right;
    color: red;
    border: 1px solid red;
    padding: 5px 10px;
    font-size: 13px;
    margin-right: 20px;
}
.comments-area .nav-previous,
.comments-area .nav-next {
	font-size: 16px;
    color: #6aaf08;
}
.comments-area .nav-previous {
	float:left;
}
.comments-area .nav-next {
	float:right;
}
.gardening-header-two .header-lower-section.no-menu {
	height:2px;
	padding:0;
	min-height:0px;
}
.layout-one .blog-figure {
	margin-bottom:20px;
}
.footer-cooming {
	padding: 15px 0;
}
.woocommerce-cart .blog-details-page .blog-section .layout-one,
.woocommerce-account .blog-details-page .blog-section .layout-one {
	border:none;
}
.inner-404 .btn {
	font-size:15px;
}
