@charset "UTF-8";
/*
  @package tillage
*/
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# base
    ## Normalize
	## Common
	## Media
	## Menus
	## Mixins
	## Placeholders
	## Variables
	## Wordpress
# admin
	## Sidebar

--------------------------------------------------------------*/
/* Import
  ---------------------
*/
/*
  @package tillage
*/
/*
  Normalize
  ---------------------
*/
html {
  font-family: sans-serif;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%; }

body {
  margin: 0; }

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
  display: block; }

audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline; }

audio:not([controls]) {
  display: none;
  height: 0; }

[hidden],
template {
  display: none; }

a {
  background-color: transparent; }

a:active,
a:hover {
  outline: 0; }

abbr[title] {
  border-bottom: 1px dotted; }

b,
strong {
  font-weight: bold; }

dfn {
  font-style: italic; }

h1 {
  font-size: 2em;
  margin: 0.67em 0; }

mark {
  background: #ff0;
  color: #000; }

small {
  font-size: 80%; }

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sup {
  top: -0.5em; }

sub {
  bottom: -0.25em; }

img {
  border: 0; }

svg:not(:root) {
  overflow: hidden; }

figure {
  margin: 1em 40px; }

hr {
  box-sizing: content-box;
  height: 0; }

pre {
  overflow: auto; }

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em; }

button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0; }

button {
  overflow: visible; }

button,
select {
  text-transform: none; }

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer; }

button[disabled],
html input[disabled] {
  cursor: default; }

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0; }

input {
  line-height: normal; }

input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  padding: 0; }

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto; }

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em; }

legend {
  border: 0;
  padding: 0; }

textarea {
  overflow: auto; }

optgroup {
  font-weight: bold; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

td,
th {
  padding: 0; }

/*
  @package tillage
*/
/*
    Variables
  ---------------------
*/
/*
  @package tillage
*/
/*
  Mixins
  ---------------------
*/
@keyframes spin {
  from {
    transform: rotate(0deg); }
  to {
    transform: rotate(360deg); } }
@keyframes blend-anim {
  0% {
    transform: scale(0.01, 0.01) rotateY(0);
    animation-timing-function: cubic-bezier(0.47, 0, 0.745, 0.715); }
  50% {
    transform: scale(1, 1) rotateY(0);
    animation-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1); }
  100% {
    transform: scale(0.01, 0.01) rotateY(0); } }
@-o-keyframes blend-anim {
  0% {
    -o-transform: scale(0.01, 0.01) rotateY(0);
    -o-animation-timing-function: cubic-bezier(0.47, 0, 0.745, 0.715); }
  50% {
    -o-transform: scale(1, 1) rotateY(0);
    -o-animation-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1); }
  100% {
    -o-transform: scale(0.01, 0.01) rotateY(0); } }
@-ms-keyframes blend-anim {
  0% {
    -ms-transform: scale(0.01, 0.01) rotateY(0);
    -ms-animation-timing-function: cubic-bezier(0.47, 0, 0.745, 0.715); }
  50% {
    -ms-transform: scale(1, 1) rotateY(0);
    -ms-animation-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1); }
  100% {
    -ms-transform: scale(0.01, 0.01) rotateY(0); } }
@-webkit-keyframes blend-anim {
  0% {
    -webkit-transform: scale(0.01, 0.01) rotateY(0);
    -webkit-animation-timing-function: cubic-bezier(0.47, 0, 0.745, 0.715); }
  50% {
    -webkit-transform: scale(1, 1) rotateY(0);
    -webkit-animation-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1); }
  100% {
    -webkit-transform: scale(0.01, 0.01) rotateY(0); } }
@-moz-keyframes blend-anim {
  0% {
    -moz-transform: scale(0.01, 0.01) rotateY(0);
    -moz-animation-timing-function: cubic-bezier(0.47, 0, 0.745, 0.715); }
  50% {
    -moz-transform: scale(1, 1) rotateY(0);
    -moz-animation-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1); }
  100% {
    -moz-transform: scale(0.01, 0.01) rotateY(0); } }
@keyframes cssload-part-anim {
  0% {
    transform: translate3d(-10px, -10px, 0); }
  100% {
    transform: translate3d(10px, 10px, 0); } }
@-o-keyframes cssload-part-anim {
  0% {
    -o-transform: translate3d(-10px, -10px, 0); }
  100% {
    -o-transform: translate3d(10px, 10px, 0); } }
@-ms-keyframes cssload-part-anim {
  0% {
    -ms-transform: translate3d(-10px, -10px, 0); }
  100% {
    -ms-transform: translate3d(10px, 10px, 0); } }
@-webkit-keyframes cssload-part-anim {
  0% {
    -webkit-transform: translate3d(-10px, -10px, 0); }
  100% {
    -webkit-transform: translate3d(10px, 10px, 0); } }
@-moz-keyframes cssload-part-anim {
  0% {
    -moz-transform: translate3d(-10px, -10px, 0); }
  100% {
    -moz-transform: translate3d(10px, 10px, 0); } }
/*
  @package tillage
*/
/* Placeholders
  ---------------------
*/
.tillage-format-image .entry-header, .tillage-format-gallery .carousel-control {
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5); }

.entry-excerpt.image-caption {
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.5) 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.5) 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.5) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#80000000',GradientType=0 );
  /* IE6-9 */ }

/*
  @package tillage
*/
.alignnone {
  margin: 5px 20px 20px 0; }

.aligncenter,
div.aligncenter {
  display: block;
  margin: 5px auto 5px auto; }

.alignright {
  float: right;
  margin: 5px 0 20px 20px; }

.alignleft {
  float: left;
  margin: 5px 20px 20px 0; }

a img.alignright {
  float: right;
  margin: 5px 0 20px 20px; }

a img.alignnone {
  margin: 5px 20px 20px 0; }

a img.alignleft {
  float: left;
  margin: 5px 20px 20px 0; }

a img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto; }

.wp-caption {
  background: #fff;
  border: 1px solid #f0f0f0;
  max-width: 96%;
  /* Image does not overflow the content area */
  text-align: center; }

dl.wp-caption {
  border: none; }

.wp-caption.alignnone {
  margin: 5px 20px 20px 0; }

.wp-caption.alignleft {
  margin: 5px 20px 20px 0; }

.wp-caption.alignright {
  margin: 5px 0 20px 20px; }

.wp-caption img {
  border: 0 none;
  height: auto;
  margin: 0;
  max-width: 98.5%;
  padding: 0;
  width: auto; }

.wp-caption p.wp-caption-text {
  font-size: 11px;
  line-height: 17px;
  margin: 0;
  padding: 0 4px 5px; }

.gallery-caption {
  color: #888;
  font-size: 12px;
  margin: 0 0 12px; }

/* Text meant only for screen readers. */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  white-space: nowrap;
  height: 1px;
  width: 1px;
  overflow: hidden; }

.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  color: #21759b;
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
  /* Above WP toolbar. */ }

.size-auto,
.size-full,
.size-large,
.size-medium,
.size-thumbnail {
  max-width: 100%;
  height: auto; }

/*
  Menus
  ---------------------
*/
.main-navigation {
  clear: both;
  display: block;
  float: left;
  width: 100%; }
  .main-navigation ul {
    display: none;
    list-style: none;
    margin: 0;
    padding-left: 0; }
    .main-navigation ul ul {
      box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
      float: left;
      position: absolute;
      top: auto;
      left: -999em;
      z-index: 99999;
      background: rgba(255, 255, 255, 0.96) none repeat scroll 0 0; }
      .main-navigation ul ul ul {
        left: -999em;
        top: 0; }
      .main-navigation ul ul li:hover > ul, .main-navigation ul ul li.focus > ul {
        left: 100%; }
      .main-navigation ul ul a {
        width: 200px; }
    .main-navigation ul li:hover > ul,
    .main-navigation ul li.focus > ul {
      left: auto; }
    .main-navigation ul .sub-menu, .main-navigation ul .children {
      padding: 15px; }
      .main-navigation ul .sub-menu li a, .main-navigation ul .children li a {
        display: block;
        color: #333333;
        font-size: 14px;
        line-height: 2;
        letter-spacing: 0px;
        font-weight: 500;
        text-transform: none;
        border: none;
        padding: 10px 0; }
        .main-navigation ul .sub-menu li a:after, .main-navigation ul .children li a:after {
          opacity: 0; }
        .main-navigation ul .sub-menu li a:hover, .main-navigation ul .sub-menu li a:focus, .main-navigation ul .children li a:hover, .main-navigation ul .children li a:focus {
          background: none;
          color: #7AC77C; }
          .main-navigation ul .sub-menu li a:hover:after, .main-navigation ul .sub-menu li a:focus:after, .main-navigation ul .children li a:hover:after, .main-navigation ul .children li a:focus:after {
            opacity: 0; }
      .main-navigation ul .sub-menu:after, .main-navigation ul .children:after {
        content: "";
        display: block;
        height: 20px;
        position: absolute;
        top: -20px;
        width: 100%; }
  .main-navigation li {
    float: left;
    position: relative; }
  .main-navigation a {
    display: block;
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    padding: 10px 15px;
    line-height: 2; }

/* Small menu. */
.menu-toggle,
.main-navigation.toggled ul {
  display: block; }

@media screen and (min-width: 767px) {
  .menu-toggle {
    display: none; }

  .main-navigation ul {
    display: block; } }
#mega-menu-wrap-primary, #mega-menu-wrap-secondary, #mega-menu-wrap-fullnav {
  background: transparent; }
  #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item, #mega-menu-wrap-primary #mega-menu-secondary > li.mega-menu-item, #mega-menu-wrap-primary #mega-menu-fullnav > li.mega-menu-item, #mega-menu-wrap-secondary #mega-menu-primary > li.mega-menu-item, #mega-menu-wrap-secondary #mega-menu-secondary > li.mega-menu-item, #mega-menu-wrap-secondary #mega-menu-fullnav > li.mega-menu-item, #mega-menu-wrap-fullnav #mega-menu-primary > li.mega-menu-item, #mega-menu-wrap-fullnav #mega-menu-secondary > li.mega-menu-item, #mega-menu-wrap-fullnav #mega-menu-fullnav > li.mega-menu-item {
    margin: 0 5px; }
    #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > a.mega-menu-link, #mega-menu-wrap-primary #mega-menu-secondary > li.mega-menu-item > a.mega-menu-link, #mega-menu-wrap-primary #mega-menu-fullnav > li.mega-menu-item > a.mega-menu-link, #mega-menu-wrap-secondary #mega-menu-primary > li.mega-menu-item > a.mega-menu-link, #mega-menu-wrap-secondary #mega-menu-secondary > li.mega-menu-item > a.mega-menu-link, #mega-menu-wrap-secondary #mega-menu-fullnav > li.mega-menu-item > a.mega-menu-link, #mega-menu-wrap-fullnav #mega-menu-primary > li.mega-menu-item > a.mega-menu-link, #mega-menu-wrap-fullnav #mega-menu-secondary > li.mega-menu-item > a.mega-menu-link, #mega-menu-wrap-fullnav #mega-menu-fullnav > li.mega-menu-item > a.mega-menu-link {
      font-size: 13px;
      text-transform: uppercase;
      color: #333333;
      padding: 5px 10px;
      font-weight: 600 !important; }
      #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > a.mega-menu-link:hover, #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > a.mega-menu-link:focus, #mega-menu-wrap-primary #mega-menu-secondary > li.mega-menu-item > a.mega-menu-link:hover, #mega-menu-wrap-primary #mega-menu-secondary > li.mega-menu-item > a.mega-menu-link:focus, #mega-menu-wrap-primary #mega-menu-fullnav > li.mega-menu-item > a.mega-menu-link:hover, #mega-menu-wrap-primary #mega-menu-fullnav > li.mega-menu-item > a.mega-menu-link:focus, #mega-menu-wrap-secondary #mega-menu-primary > li.mega-menu-item > a.mega-menu-link:hover, #mega-menu-wrap-secondary #mega-menu-primary > li.mega-menu-item > a.mega-menu-link:focus, #mega-menu-wrap-secondary #mega-menu-secondary > li.mega-menu-item > a.mega-menu-link:hover, #mega-menu-wrap-secondary #mega-menu-secondary > li.mega-menu-item > a.mega-menu-link:focus, #mega-menu-wrap-secondary #mega-menu-fullnav > li.mega-menu-item > a.mega-menu-link:hover, #mega-menu-wrap-secondary #mega-menu-fullnav > li.mega-menu-item > a.mega-menu-link:focus, #mega-menu-wrap-fullnav #mega-menu-primary > li.mega-menu-item > a.mega-menu-link:hover, #mega-menu-wrap-fullnav #mega-menu-primary > li.mega-menu-item > a.mega-menu-link:focus, #mega-menu-wrap-fullnav #mega-menu-secondary > li.mega-menu-item > a.mega-menu-link:hover, #mega-menu-wrap-fullnav #mega-menu-secondary > li.mega-menu-item > a.mega-menu-link:focus, #mega-menu-wrap-fullnav #mega-menu-fullnav > li.mega-menu-item > a.mega-menu-link:hover, #mega-menu-wrap-fullnav #mega-menu-fullnav > li.mega-menu-item > a.mega-menu-link:focus {
        color: #7AC77C; }
        #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > a.mega-menu-link:hover:before, #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > a.mega-menu-link:focus:before, #mega-menu-wrap-primary #mega-menu-secondary > li.mega-menu-item > a.mega-menu-link:hover:before, #mega-menu-wrap-primary #mega-menu-secondary > li.mega-menu-item > a.mega-menu-link:focus:before, #mega-menu-wrap-primary #mega-menu-fullnav > li.mega-menu-item > a.mega-menu-link:hover:before, #mega-menu-wrap-primary #mega-menu-fullnav > li.mega-menu-item > a.mega-menu-link:focus:before, #mega-menu-wrap-secondary #mega-menu-primary > li.mega-menu-item > a.mega-menu-link:hover:before, #mega-menu-wrap-secondary #mega-menu-primary > li.mega-menu-item > a.mega-menu-link:focus:before, #mega-menu-wrap-secondary #mega-menu-secondary > li.mega-menu-item > a.mega-menu-link:hover:before, #mega-menu-wrap-secondary #mega-menu-secondary > li.mega-menu-item > a.mega-menu-link:focus:before, #mega-menu-wrap-secondary #mega-menu-fullnav > li.mega-menu-item > a.mega-menu-link:hover:before, #mega-menu-wrap-secondary #mega-menu-fullnav > li.mega-menu-item > a.mega-menu-link:focus:before, #mega-menu-wrap-fullnav #mega-menu-primary > li.mega-menu-item > a.mega-menu-link:hover:before, #mega-menu-wrap-fullnav #mega-menu-primary > li.mega-menu-item > a.mega-menu-link:focus:before, #mega-menu-wrap-fullnav #mega-menu-secondary > li.mega-menu-item > a.mega-menu-link:hover:before, #mega-menu-wrap-fullnav #mega-menu-secondary > li.mega-menu-item > a.mega-menu-link:focus:before, #mega-menu-wrap-fullnav #mega-menu-fullnav > li.mega-menu-item > a.mega-menu-link:hover:before, #mega-menu-wrap-fullnav #mega-menu-fullnav > li.mega-menu-item > a.mega-menu-link:focus:before {
          background: #7AC77C;
          opacity: 1;
          -webkit-transform: translateY(10px);
          -moz-transform: translateY(10px);
          -ms-transform: translateY(10px);
          -o-transform: translateY(10px);
          transform: translateY(10px); }
      #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > a.mega-menu-link:before, #mega-menu-wrap-primary #mega-menu-secondary > li.mega-menu-item > a.mega-menu-link:before, #mega-menu-wrap-primary #mega-menu-fullnav > li.mega-menu-item > a.mega-menu-link:before, #mega-menu-wrap-secondary #mega-menu-primary > li.mega-menu-item > a.mega-menu-link:before, #mega-menu-wrap-secondary #mega-menu-secondary > li.mega-menu-item > a.mega-menu-link:before, #mega-menu-wrap-secondary #mega-menu-fullnav > li.mega-menu-item > a.mega-menu-link:before, #mega-menu-wrap-fullnav #mega-menu-primary > li.mega-menu-item > a.mega-menu-link:before, #mega-menu-wrap-fullnav #mega-menu-secondary > li.mega-menu-item > a.mega-menu-link:before, #mega-menu-wrap-fullnav #mega-menu-fullnav > li.mega-menu-item > a.mega-menu-link:before {
        content: '';
        position: absolute;
        left: 0;
        right: 0;
        display: block;
        bottom: 5px;
        height: 2px;
        background: #333333;
        opacity: 0;
        -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;
        -webkit-transform: translateY(20px);
        -moz-transform: translateY(20px);
        -ms-transform: translateY(20px);
        -o-transform: translateY(20px);
        transform: translateY(20px); }
      @media (min-width: 992px) and (max-width: 1199px) {
        #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > a.mega-menu-link, #mega-menu-wrap-primary #mega-menu-secondary > li.mega-menu-item > a.mega-menu-link, #mega-menu-wrap-primary #mega-menu-fullnav > li.mega-menu-item > a.mega-menu-link, #mega-menu-wrap-secondary #mega-menu-primary > li.mega-menu-item > a.mega-menu-link, #mega-menu-wrap-secondary #mega-menu-secondary > li.mega-menu-item > a.mega-menu-link, #mega-menu-wrap-secondary #mega-menu-fullnav > li.mega-menu-item > a.mega-menu-link, #mega-menu-wrap-fullnav #mega-menu-primary > li.mega-menu-item > a.mega-menu-link, #mega-menu-wrap-fullnav #mega-menu-secondary > li.mega-menu-item > a.mega-menu-link, #mega-menu-wrap-fullnav #mega-menu-fullnav > li.mega-menu-item > a.mega-menu-link {
          padding: 5px 3px; } }
    #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item.mega-toggle-on > a.mega-menu-link, #mega-menu-wrap-primary #mega-menu-secondary > li.mega-menu-item.mega-toggle-on > a.mega-menu-link, #mega-menu-wrap-primary #mega-menu-fullnav > li.mega-menu-item.mega-toggle-on > a.mega-menu-link, #mega-menu-wrap-secondary #mega-menu-primary > li.mega-menu-item.mega-toggle-on > a.mega-menu-link, #mega-menu-wrap-secondary #mega-menu-secondary > li.mega-menu-item.mega-toggle-on > a.mega-menu-link, #mega-menu-wrap-secondary #mega-menu-fullnav > li.mega-menu-item.mega-toggle-on > a.mega-menu-link, #mega-menu-wrap-fullnav #mega-menu-primary > li.mega-menu-item.mega-toggle-on > a.mega-menu-link, #mega-menu-wrap-fullnav #mega-menu-secondary > li.mega-menu-item.mega-toggle-on > a.mega-menu-link, #mega-menu-wrap-fullnav #mega-menu-fullnav > li.mega-menu-item.mega-toggle-on > a.mega-menu-link {
      color: #7AC77C; }
      #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item.mega-toggle-on > a.mega-menu-link:before, #mega-menu-wrap-primary #mega-menu-secondary > li.mega-menu-item.mega-toggle-on > a.mega-menu-link:before, #mega-menu-wrap-primary #mega-menu-fullnav > li.mega-menu-item.mega-toggle-on > a.mega-menu-link:before, #mega-menu-wrap-secondary #mega-menu-primary > li.mega-menu-item.mega-toggle-on > a.mega-menu-link:before, #mega-menu-wrap-secondary #mega-menu-secondary > li.mega-menu-item.mega-toggle-on > a.mega-menu-link:before, #mega-menu-wrap-secondary #mega-menu-fullnav > li.mega-menu-item.mega-toggle-on > a.mega-menu-link:before, #mega-menu-wrap-fullnav #mega-menu-primary > li.mega-menu-item.mega-toggle-on > a.mega-menu-link:before, #mega-menu-wrap-fullnav #mega-menu-secondary > li.mega-menu-item.mega-toggle-on > a.mega-menu-link:before, #mega-menu-wrap-fullnav #mega-menu-fullnav > li.mega-menu-item.mega-toggle-on > a.mega-menu-link:before {
        background: #7AC77C;
        opacity: 1;
        -webkit-transform: translateY(10px);
        -moz-transform: translateY(10px);
        -ms-transform: translateY(10px);
        -o-transform: translateY(10px);
        transform: translateY(10px); }
    #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item.mega-toggle-on .mega-sub-menu, #mega-menu-wrap-primary #mega-menu-secondary > li.mega-menu-item.mega-toggle-on .mega-sub-menu, #mega-menu-wrap-primary #mega-menu-fullnav > li.mega-menu-item.mega-toggle-on .mega-sub-menu, #mega-menu-wrap-secondary #mega-menu-primary > li.mega-menu-item.mega-toggle-on .mega-sub-menu, #mega-menu-wrap-secondary #mega-menu-secondary > li.mega-menu-item.mega-toggle-on .mega-sub-menu, #mega-menu-wrap-secondary #mega-menu-fullnav > li.mega-menu-item.mega-toggle-on .mega-sub-menu, #mega-menu-wrap-fullnav #mega-menu-primary > li.mega-menu-item.mega-toggle-on .mega-sub-menu, #mega-menu-wrap-fullnav #mega-menu-secondary > li.mega-menu-item.mega-toggle-on .mega-sub-menu, #mega-menu-wrap-fullnav #mega-menu-fullnav > li.mega-menu-item.mega-toggle-on .mega-sub-menu {
      margin-top: 10px !important; }
    #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item.mega-current-menu-item > a.mega-menu-link, #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item.mega-current-menu-ancestor > a.mega-menu-link, #mega-menu-wrap-primary #mega-menu-secondary > li.mega-menu-item.mega-current-menu-item > a.mega-menu-link, #mega-menu-wrap-primary #mega-menu-secondary > li.mega-menu-item.mega-current-menu-ancestor > a.mega-menu-link, #mega-menu-wrap-primary #mega-menu-fullnav > li.mega-menu-item.mega-current-menu-item > a.mega-menu-link, #mega-menu-wrap-primary #mega-menu-fullnav > li.mega-menu-item.mega-current-menu-ancestor > a.mega-menu-link, #mega-menu-wrap-secondary #mega-menu-primary > li.mega-menu-item.mega-current-menu-item > a.mega-menu-link, #mega-menu-wrap-secondary #mega-menu-primary > li.mega-menu-item.mega-current-menu-ancestor > a.mega-menu-link, #mega-menu-wrap-secondary #mega-menu-secondary > li.mega-menu-item.mega-current-menu-item > a.mega-menu-link, #mega-menu-wrap-secondary #mega-menu-secondary > li.mega-menu-item.mega-current-menu-ancestor > a.mega-menu-link, #mega-menu-wrap-secondary #mega-menu-fullnav > li.mega-menu-item.mega-current-menu-item > a.mega-menu-link, #mega-menu-wrap-secondary #mega-menu-fullnav > li.mega-menu-item.mega-current-menu-ancestor > a.mega-menu-link, #mega-menu-wrap-fullnav #mega-menu-primary > li.mega-menu-item.mega-current-menu-item > a.mega-menu-link, #mega-menu-wrap-fullnav #mega-menu-primary > li.mega-menu-item.mega-current-menu-ancestor > a.mega-menu-link, #mega-menu-wrap-fullnav #mega-menu-secondary > li.mega-menu-item.mega-current-menu-item > a.mega-menu-link, #mega-menu-wrap-fullnav #mega-menu-secondary > li.mega-menu-item.mega-current-menu-ancestor > a.mega-menu-link, #mega-menu-wrap-fullnav #mega-menu-fullnav > li.mega-menu-item.mega-current-menu-item > a.mega-menu-link, #mega-menu-wrap-fullnav #mega-menu-fullnav > li.mega-menu-item.mega-current-menu-ancestor > a.mega-menu-link {
      color: #7AC77C;
      background: #ffffff; }
      #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item.mega-current-menu-item > a.mega-menu-link:before, #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item.mega-current-menu-ancestor > a.mega-menu-link:before, #mega-menu-wrap-primary #mega-menu-secondary > li.mega-menu-item.mega-current-menu-item > a.mega-menu-link:before, #mega-menu-wrap-primary #mega-menu-secondary > li.mega-menu-item.mega-current-menu-ancestor > a.mega-menu-link:before, #mega-menu-wrap-primary #mega-menu-fullnav > li.mega-menu-item.mega-current-menu-item > a.mega-menu-link:before, #mega-menu-wrap-primary #mega-menu-fullnav > li.mega-menu-item.mega-current-menu-ancestor > a.mega-menu-link:before, #mega-menu-wrap-secondary #mega-menu-primary > li.mega-menu-item.mega-current-menu-item > a.mega-menu-link:before, #mega-menu-wrap-secondary #mega-menu-primary > li.mega-menu-item.mega-current-menu-ancestor > a.mega-menu-link:before, #mega-menu-wrap-secondary #mega-menu-secondary > li.mega-menu-item.mega-current-menu-item > a.mega-menu-link:before, #mega-menu-wrap-secondary #mega-menu-secondary > li.mega-menu-item.mega-current-menu-ancestor > a.mega-menu-link:before, #mega-menu-wrap-secondary #mega-menu-fullnav > li.mega-menu-item.mega-current-menu-item > a.mega-menu-link:before, #mega-menu-wrap-secondary #mega-menu-fullnav > li.mega-menu-item.mega-current-menu-ancestor > a.mega-menu-link:before, #mega-menu-wrap-fullnav #mega-menu-primary > li.mega-menu-item.mega-current-menu-item > a.mega-menu-link:before, #mega-menu-wrap-fullnav #mega-menu-primary > li.mega-menu-item.mega-current-menu-ancestor > a.mega-menu-link:before, #mega-menu-wrap-fullnav #mega-menu-secondary > li.mega-menu-item.mega-current-menu-item > a.mega-menu-link:before, #mega-menu-wrap-fullnav #mega-menu-secondary > li.mega-menu-item.mega-current-menu-ancestor > a.mega-menu-link:before, #mega-menu-wrap-fullnav #mega-menu-fullnav > li.mega-menu-item.mega-current-menu-item > a.mega-menu-link:before, #mega-menu-wrap-fullnav #mega-menu-fullnav > li.mega-menu-item.mega-current-menu-ancestor > a.mega-menu-link:before {
        opacity: 1;
        background: #7AC77C;
        -webkit-transform: translateY(10px);
        -moz-transform: translateY(10px);
        -ms-transform: translateY(10px);
        -o-transform: translateY(10px);
        transform: translateY(10px); }
    #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > .mega-sub-menu, #mega-menu-wrap-primary #mega-menu-secondary > li.mega-menu-item > .mega-sub-menu, #mega-menu-wrap-primary #mega-menu-fullnav > li.mega-menu-item > .mega-sub-menu, #mega-menu-wrap-secondary #mega-menu-primary > li.mega-menu-item > .mega-sub-menu, #mega-menu-wrap-secondary #mega-menu-secondary > li.mega-menu-item > .mega-sub-menu, #mega-menu-wrap-secondary #mega-menu-fullnav > li.mega-menu-item > .mega-sub-menu, #mega-menu-wrap-fullnav #mega-menu-primary > li.mega-menu-item > .mega-sub-menu, #mega-menu-wrap-fullnav #mega-menu-secondary > li.mega-menu-item > .mega-sub-menu, #mega-menu-wrap-fullnav #mega-menu-fullnav > li.mega-menu-item > .mega-sub-menu {
      box-shadow: 0 1px 1px 1px #cccccc; }
    #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item .mega-sub-menu, #mega-menu-wrap-primary #mega-menu-secondary > li.mega-menu-item .mega-sub-menu, #mega-menu-wrap-primary #mega-menu-fullnav > li.mega-menu-item .mega-sub-menu, #mega-menu-wrap-secondary #mega-menu-primary > li.mega-menu-item .mega-sub-menu, #mega-menu-wrap-secondary #mega-menu-secondary > li.mega-menu-item .mega-sub-menu, #mega-menu-wrap-secondary #mega-menu-fullnav > li.mega-menu-item .mega-sub-menu, #mega-menu-wrap-fullnav #mega-menu-primary > li.mega-menu-item .mega-sub-menu, #mega-menu-wrap-fullnav #mega-menu-secondary > li.mega-menu-item .mega-sub-menu, #mega-menu-wrap-fullnav #mega-menu-fullnav > li.mega-menu-item .mega-sub-menu {
      background: #ffffff; }
      #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item .mega-sub-menu .mega-menu-item .mega-sub-menu .mega-menu-item a.mega-menu-link, #mega-menu-wrap-primary #mega-menu-secondary > li.mega-menu-item .mega-sub-menu .mega-menu-item .mega-sub-menu .mega-menu-item a.mega-menu-link, #mega-menu-wrap-primary #mega-menu-fullnav > li.mega-menu-item .mega-sub-menu .mega-menu-item .mega-sub-menu .mega-menu-item a.mega-menu-link, #mega-menu-wrap-secondary #mega-menu-primary > li.mega-menu-item .mega-sub-menu .mega-menu-item .mega-sub-menu .mega-menu-item a.mega-menu-link, #mega-menu-wrap-secondary #mega-menu-secondary > li.mega-menu-item .mega-sub-menu .mega-menu-item .mega-sub-menu .mega-menu-item a.mega-menu-link, #mega-menu-wrap-secondary #mega-menu-fullnav > li.mega-menu-item .mega-sub-menu .mega-menu-item .mega-sub-menu .mega-menu-item a.mega-menu-link, #mega-menu-wrap-fullnav #mega-menu-primary > li.mega-menu-item .mega-sub-menu .mega-menu-item .mega-sub-menu .mega-menu-item a.mega-menu-link, #mega-menu-wrap-fullnav #mega-menu-secondary > li.mega-menu-item .mega-sub-menu .mega-menu-item .mega-sub-menu .mega-menu-item a.mega-menu-link, #mega-menu-wrap-fullnav #mega-menu-fullnav > li.mega-menu-item .mega-sub-menu .mega-menu-item .mega-sub-menu .mega-menu-item a.mega-menu-link {
        color: #555555 !important; }
        #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item .mega-sub-menu .mega-menu-item .mega-sub-menu .mega-menu-item a.mega-menu-link:hover, #mega-menu-wrap-primary #mega-menu-secondary > li.mega-menu-item .mega-sub-menu .mega-menu-item .mega-sub-menu .mega-menu-item a.mega-menu-link:hover, #mega-menu-wrap-primary #mega-menu-fullnav > li.mega-menu-item .mega-sub-menu .mega-menu-item .mega-sub-menu .mega-menu-item a.mega-menu-link:hover, #mega-menu-wrap-secondary #mega-menu-primary > li.mega-menu-item .mega-sub-menu .mega-menu-item .mega-sub-menu .mega-menu-item a.mega-menu-link:hover, #mega-menu-wrap-secondary #mega-menu-secondary > li.mega-menu-item .mega-sub-menu .mega-menu-item .mega-sub-menu .mega-menu-item a.mega-menu-link:hover, #mega-menu-wrap-secondary #mega-menu-fullnav > li.mega-menu-item .mega-sub-menu .mega-menu-item .mega-sub-menu .mega-menu-item a.mega-menu-link:hover, #mega-menu-wrap-fullnav #mega-menu-primary > li.mega-menu-item .mega-sub-menu .mega-menu-item .mega-sub-menu .mega-menu-item a.mega-menu-link:hover, #mega-menu-wrap-fullnav #mega-menu-secondary > li.mega-menu-item .mega-sub-menu .mega-menu-item .mega-sub-menu .mega-menu-item a.mega-menu-link:hover, #mega-menu-wrap-fullnav #mega-menu-fullnav > li.mega-menu-item .mega-sub-menu .mega-menu-item .mega-sub-menu .mega-menu-item a.mega-menu-link:hover {
          color: #7AC77C !important; }
      #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item .mega-sub-menu .mega-menu-item .mega-sub-menu .mega-menu-item.mega-current-menu-item > a.mega-menu-link, #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item .mega-sub-menu .mega-menu-item .mega-sub-menu .mega-menu-item.mega-current-menu-ancestor > a.mega-menu-link, #mega-menu-wrap-primary #mega-menu-secondary > li.mega-menu-item .mega-sub-menu .mega-menu-item .mega-sub-menu .mega-menu-item.mega-current-menu-item > a.mega-menu-link, #mega-menu-wrap-primary #mega-menu-secondary > li.mega-menu-item .mega-sub-menu .mega-menu-item .mega-sub-menu .mega-menu-item.mega-current-menu-ancestor > a.mega-menu-link, #mega-menu-wrap-primary #mega-menu-fullnav > li.mega-menu-item .mega-sub-menu .mega-menu-item .mega-sub-menu .mega-menu-item.mega-current-menu-item > a.mega-menu-link, #mega-menu-wrap-primary #mega-menu-fullnav > li.mega-menu-item .mega-sub-menu .mega-menu-item .mega-sub-menu .mega-menu-item.mega-current-menu-ancestor > a.mega-menu-link, #mega-menu-wrap-secondary #mega-menu-primary > li.mega-menu-item .mega-sub-menu .mega-menu-item .mega-sub-menu .mega-menu-item.mega-current-menu-item > a.mega-menu-link, #mega-menu-wrap-secondary #mega-menu-primary > li.mega-menu-item .mega-sub-menu .mega-menu-item .mega-sub-menu .mega-menu-item.mega-current-menu-ancestor > a.mega-menu-link, #mega-menu-wrap-secondary #mega-menu-secondary > li.mega-menu-item .mega-sub-menu .mega-menu-item .mega-sub-menu .mega-menu-item.mega-current-menu-item > a.mega-menu-link, #mega-menu-wrap-secondary #mega-menu-secondary > li.mega-menu-item .mega-sub-menu .mega-menu-item .mega-sub-menu .mega-menu-item.mega-current-menu-ancestor > a.mega-menu-link, #mega-menu-wrap-secondary #mega-menu-fullnav > li.mega-menu-item .mega-sub-menu .mega-menu-item .mega-sub-menu .mega-menu-item.mega-current-menu-item > a.mega-menu-link, #mega-menu-wrap-secondary #mega-menu-fullnav > li.mega-menu-item .mega-sub-menu .mega-menu-item .mega-sub-menu .mega-menu-item.mega-current-menu-ancestor > a.mega-menu-link, #mega-menu-wrap-fullnav #mega-menu-primary > li.mega-menu-item .mega-sub-menu .mega-menu-item .mega-sub-menu .mega-menu-item.mega-current-menu-item > a.mega-menu-link, #mega-menu-wrap-fullnav #mega-menu-primary > li.mega-menu-item .mega-sub-menu .mega-menu-item .mega-sub-menu .mega-menu-item.mega-current-menu-ancestor > a.mega-menu-link, #mega-menu-wrap-fullnav #mega-menu-secondary > li.mega-menu-item .mega-sub-menu .mega-menu-item .mega-sub-menu .mega-menu-item.mega-current-menu-item > a.mega-menu-link, #mega-menu-wrap-fullnav #mega-menu-secondary > li.mega-menu-item .mega-sub-menu .mega-menu-item .mega-sub-menu .mega-menu-item.mega-current-menu-ancestor > a.mega-menu-link, #mega-menu-wrap-fullnav #mega-menu-fullnav > li.mega-menu-item .mega-sub-menu .mega-menu-item .mega-sub-menu .mega-menu-item.mega-current-menu-item > a.mega-menu-link, #mega-menu-wrap-fullnav #mega-menu-fullnav > li.mega-menu-item .mega-sub-menu .mega-menu-item .mega-sub-menu .mega-menu-item.mega-current-menu-ancestor > a.mega-menu-link {
        -webkit-transform: translateX(10px) !important;
        -moz-transform: translateX(10px) !important;
        -ms-transform: translateX(10px) !important;
        -o-transform: translateX(10px) !important;
        transform: translateX(10px) !important;
        color: #7AC77C !important;
        background: transparent; }
        #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item .mega-sub-menu .mega-menu-item .mega-sub-menu .mega-menu-item.mega-current-menu-item > a.mega-menu-link:before, #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item .mega-sub-menu .mega-menu-item .mega-sub-menu .mega-menu-item.mega-current-menu-ancestor > a.mega-menu-link:before, #mega-menu-wrap-primary #mega-menu-secondary > li.mega-menu-item .mega-sub-menu .mega-menu-item .mega-sub-menu .mega-menu-item.mega-current-menu-item > a.mega-menu-link:before, #mega-menu-wrap-primary #mega-menu-secondary > li.mega-menu-item .mega-sub-menu .mega-menu-item .mega-sub-menu .mega-menu-item.mega-current-menu-ancestor > a.mega-menu-link:before, #mega-menu-wrap-primary #mega-menu-fullnav > li.mega-menu-item .mega-sub-menu .mega-menu-item .mega-sub-menu .mega-menu-item.mega-current-menu-item > a.mega-menu-link:before, #mega-menu-wrap-primary #mega-menu-fullnav > li.mega-menu-item .mega-sub-menu .mega-menu-item .mega-sub-menu .mega-menu-item.mega-current-menu-ancestor > a.mega-menu-link:before, #mega-menu-wrap-secondary #mega-menu-primary > li.mega-menu-item .mega-sub-menu .mega-menu-item .mega-sub-menu .mega-menu-item.mega-current-menu-item > a.mega-menu-link:before, #mega-menu-wrap-secondary #mega-menu-primary > li.mega-menu-item .mega-sub-menu .mega-menu-item .mega-sub-menu .mega-menu-item.mega-current-menu-ancestor > a.mega-menu-link:before, #mega-menu-wrap-secondary #mega-menu-secondary > li.mega-menu-item .mega-sub-menu .mega-menu-item .mega-sub-menu .mega-menu-item.mega-current-menu-item > a.mega-menu-link:before, #mega-menu-wrap-secondary #mega-menu-secondary > li.mega-menu-item .mega-sub-menu .mega-menu-item .mega-sub-menu .mega-menu-item.mega-current-menu-ancestor > a.mega-menu-link:before, #mega-menu-wrap-secondary #mega-menu-fullnav > li.mega-menu-item .mega-sub-menu .mega-menu-item .mega-sub-menu .mega-menu-item.mega-current-menu-item > a.mega-menu-link:before, #mega-menu-wrap-secondary #mega-menu-fullnav > li.mega-menu-item .mega-sub-menu .mega-menu-item .mega-sub-menu .mega-menu-item.mega-current-menu-ancestor > a.mega-menu-link:before, #mega-menu-wrap-fullnav #mega-menu-primary > li.mega-menu-item .mega-sub-menu .mega-menu-item .mega-sub-menu .mega-menu-item.mega-current-menu-item > a.mega-menu-link:before, #mega-menu-wrap-fullnav #mega-menu-primary > li.mega-menu-item .mega-sub-menu .mega-menu-item .mega-sub-menu .mega-menu-item.mega-current-menu-ancestor > a.mega-menu-link:before, #mega-menu-wrap-fullnav #mega-menu-secondary > li.mega-menu-item .mega-sub-menu .mega-menu-item .mega-sub-menu .mega-menu-item.mega-current-menu-item > a.mega-menu-link:before, #mega-menu-wrap-fullnav #mega-menu-secondary > li.mega-menu-item .mega-sub-menu .mega-menu-item .mega-sub-menu .mega-menu-item.mega-current-menu-ancestor > a.mega-menu-link:before, #mega-menu-wrap-fullnav #mega-menu-fullnav > li.mega-menu-item .mega-sub-menu .mega-menu-item .mega-sub-menu .mega-menu-item.mega-current-menu-item > a.mega-menu-link:before, #mega-menu-wrap-fullnav #mega-menu-fullnav > li.mega-menu-item .mega-sub-menu .mega-menu-item .mega-sub-menu .mega-menu-item.mega-current-menu-ancestor > a.mega-menu-link:before {
          left: 0 !important; }
  #mega-menu-wrap-primary #mega-menu-primary .mega-menu-flyout.mega-menu-item .mega-sub-menu, #mega-menu-wrap-primary #mega-menu-secondary .mega-menu-flyout.mega-menu-item .mega-sub-menu, #mega-menu-wrap-primary #mega-menu-fullnav .mega-menu-flyout.mega-menu-item .mega-sub-menu, #mega-menu-wrap-secondary #mega-menu-primary .mega-menu-flyout.mega-menu-item .mega-sub-menu, #mega-menu-wrap-secondary #mega-menu-secondary .mega-menu-flyout.mega-menu-item .mega-sub-menu, #mega-menu-wrap-secondary #mega-menu-fullnav .mega-menu-flyout.mega-menu-item .mega-sub-menu, #mega-menu-wrap-fullnav #mega-menu-primary .mega-menu-flyout.mega-menu-item .mega-sub-menu, #mega-menu-wrap-fullnav #mega-menu-secondary .mega-menu-flyout.mega-menu-item .mega-sub-menu, #mega-menu-wrap-fullnav #mega-menu-fullnav .mega-menu-flyout.mega-menu-item .mega-sub-menu {
    padding: 15px;
    background: #ffffff; }
    #mega-menu-wrap-primary #mega-menu-primary .mega-menu-flyout.mega-menu-item .mega-sub-menu .mega-menu-item a.mega-menu-link, #mega-menu-wrap-primary #mega-menu-secondary .mega-menu-flyout.mega-menu-item .mega-sub-menu .mega-menu-item a.mega-menu-link, #mega-menu-wrap-primary #mega-menu-fullnav .mega-menu-flyout.mega-menu-item .mega-sub-menu .mega-menu-item a.mega-menu-link, #mega-menu-wrap-secondary #mega-menu-primary .mega-menu-flyout.mega-menu-item .mega-sub-menu .mega-menu-item a.mega-menu-link, #mega-menu-wrap-secondary #mega-menu-secondary .mega-menu-flyout.mega-menu-item .mega-sub-menu .mega-menu-item a.mega-menu-link, #mega-menu-wrap-secondary #mega-menu-fullnav .mega-menu-flyout.mega-menu-item .mega-sub-menu .mega-menu-item a.mega-menu-link, #mega-menu-wrap-fullnav #mega-menu-primary .mega-menu-flyout.mega-menu-item .mega-sub-menu .mega-menu-item a.mega-menu-link, #mega-menu-wrap-fullnav #mega-menu-secondary .mega-menu-flyout.mega-menu-item .mega-sub-menu .mega-menu-item a.mega-menu-link, #mega-menu-wrap-fullnav #mega-menu-fullnav .mega-menu-flyout.mega-menu-item .mega-sub-menu .mega-menu-item a.mega-menu-link {
      -webkit-transition: all 320ms ease !important;
      -moz-transition: all 320ms ease !important;
      -ms-transition: all 320ms ease !important;
      -o-transition: all 320ms ease !important;
      transition: all 320ms ease !important;
      -webkit-transform: translateX(0);
      -moz-transform: translateX(0);
      -ms-transform: translateX(0);
      -o-transform: translateX(0);
      transform: translateX(0);
      padding: 8px 0 !important;
      color: #555555 !important;
      overflow: hidden !important;
      background: transparent !important; }
      #mega-menu-wrap-primary #mega-menu-primary .mega-menu-flyout.mega-menu-item .mega-sub-menu .mega-menu-item a.mega-menu-link:before, #mega-menu-wrap-primary #mega-menu-secondary .mega-menu-flyout.mega-menu-item .mega-sub-menu .mega-menu-item a.mega-menu-link:before, #mega-menu-wrap-primary #mega-menu-fullnav .mega-menu-flyout.mega-menu-item .mega-sub-menu .mega-menu-item a.mega-menu-link:before, #mega-menu-wrap-secondary #mega-menu-primary .mega-menu-flyout.mega-menu-item .mega-sub-menu .mega-menu-item a.mega-menu-link:before, #mega-menu-wrap-secondary #mega-menu-secondary .mega-menu-flyout.mega-menu-item .mega-sub-menu .mega-menu-item a.mega-menu-link:before, #mega-menu-wrap-secondary #mega-menu-fullnav .mega-menu-flyout.mega-menu-item .mega-sub-menu .mega-menu-item a.mega-menu-link:before, #mega-menu-wrap-fullnav #mega-menu-primary .mega-menu-flyout.mega-menu-item .mega-sub-menu .mega-menu-item a.mega-menu-link:before, #mega-menu-wrap-fullnav #mega-menu-secondary .mega-menu-flyout.mega-menu-item .mega-sub-menu .mega-menu-item a.mega-menu-link:before, #mega-menu-wrap-fullnav #mega-menu-fullnav .mega-menu-flyout.mega-menu-item .mega-sub-menu .mega-menu-item a.mega-menu-link:before {
        -webkit-transition: all 320ms ease !important;
        -moz-transition: all 320ms ease !important;
        -ms-transition: all 320ms ease !important;
        -o-transition: all 320ms ease !important;
        transition: all 320ms ease !important;
        content: "\f344";
        font-family: "dashicons";
        position: relative !important;
        left: -20px;
        transition: left 0.35s cubic-bezier(0.04, 0.25, 0.32, 0.94) 0s; }
      #mega-menu-wrap-primary #mega-menu-primary .mega-menu-flyout.mega-menu-item .mega-sub-menu .mega-menu-item a.mega-menu-link:hover, #mega-menu-wrap-primary #mega-menu-primary .mega-menu-flyout.mega-menu-item .mega-sub-menu .mega-menu-item a.mega-menu-link:focus, #mega-menu-wrap-primary #mega-menu-secondary .mega-menu-flyout.mega-menu-item .mega-sub-menu .mega-menu-item a.mega-menu-link:hover, #mega-menu-wrap-primary #mega-menu-secondary .mega-menu-flyout.mega-menu-item .mega-sub-menu .mega-menu-item a.mega-menu-link:focus, #mega-menu-wrap-primary #mega-menu-fullnav .mega-menu-flyout.mega-menu-item .mega-sub-menu .mega-menu-item a.mega-menu-link:hover, #mega-menu-wrap-primary #mega-menu-fullnav .mega-menu-flyout.mega-menu-item .mega-sub-menu .mega-menu-item a.mega-menu-link:focus, #mega-menu-wrap-secondary #mega-menu-primary .mega-menu-flyout.mega-menu-item .mega-sub-menu .mega-menu-item a.mega-menu-link:hover, #mega-menu-wrap-secondary #mega-menu-primary .mega-menu-flyout.mega-menu-item .mega-sub-menu .mega-menu-item a.mega-menu-link:focus, #mega-menu-wrap-secondary #mega-menu-secondary .mega-menu-flyout.mega-menu-item .mega-sub-menu .mega-menu-item a.mega-menu-link:hover, #mega-menu-wrap-secondary #mega-menu-secondary .mega-menu-flyout.mega-menu-item .mega-sub-menu .mega-menu-item a.mega-menu-link:focus, #mega-menu-wrap-secondary #mega-menu-fullnav .mega-menu-flyout.mega-menu-item .mega-sub-menu .mega-menu-item a.mega-menu-link:hover, #mega-menu-wrap-secondary #mega-menu-fullnav .mega-menu-flyout.mega-menu-item .mega-sub-menu .mega-menu-item a.mega-menu-link:focus, #mega-menu-wrap-fullnav #mega-menu-primary .mega-menu-flyout.mega-menu-item .mega-sub-menu .mega-menu-item a.mega-menu-link:hover, #mega-menu-wrap-fullnav #mega-menu-primary .mega-menu-flyout.mega-menu-item .mega-sub-menu .mega-menu-item a.mega-menu-link:focus, #mega-menu-wrap-fullnav #mega-menu-secondary .mega-menu-flyout.mega-menu-item .mega-sub-menu .mega-menu-item a.mega-menu-link:hover, #mega-menu-wrap-fullnav #mega-menu-secondary .mega-menu-flyout.mega-menu-item .mega-sub-menu .mega-menu-item a.mega-menu-link:focus, #mega-menu-wrap-fullnav #mega-menu-fullnav .mega-menu-flyout.mega-menu-item .mega-sub-menu .mega-menu-item a.mega-menu-link:hover, #mega-menu-wrap-fullnav #mega-menu-fullnav .mega-menu-flyout.mega-menu-item .mega-sub-menu .mega-menu-item a.mega-menu-link:focus {
        color: #7AC77C !important;
        background: transparent !important; }
    #mega-menu-wrap-primary #mega-menu-primary .mega-menu-flyout.mega-menu-item .mega-sub-menu .mega-menu-item .mega-sub-menu .mega-menu-item a.mega-menu-link, #mega-menu-wrap-primary #mega-menu-secondary .mega-menu-flyout.mega-menu-item .mega-sub-menu .mega-menu-item .mega-sub-menu .mega-menu-item a.mega-menu-link, #mega-menu-wrap-primary #mega-menu-fullnav .mega-menu-flyout.mega-menu-item .mega-sub-menu .mega-menu-item .mega-sub-menu .mega-menu-item a.mega-menu-link, #mega-menu-wrap-secondary #mega-menu-primary .mega-menu-flyout.mega-menu-item .mega-sub-menu .mega-menu-item .mega-sub-menu .mega-menu-item a.mega-menu-link, #mega-menu-wrap-secondary #mega-menu-secondary .mega-menu-flyout.mega-menu-item .mega-sub-menu .mega-menu-item .mega-sub-menu .mega-menu-item a.mega-menu-link, #mega-menu-wrap-secondary #mega-menu-fullnav .mega-menu-flyout.mega-menu-item .mega-sub-menu .mega-menu-item .mega-sub-menu .mega-menu-item a.mega-menu-link, #mega-menu-wrap-fullnav #mega-menu-primary .mega-menu-flyout.mega-menu-item .mega-sub-menu .mega-menu-item .mega-sub-menu .mega-menu-item a.mega-menu-link, #mega-menu-wrap-fullnav #mega-menu-secondary .mega-menu-flyout.mega-menu-item .mega-sub-menu .mega-menu-item .mega-sub-menu .mega-menu-item a.mega-menu-link, #mega-menu-wrap-fullnav #mega-menu-fullnav .mega-menu-flyout.mega-menu-item .mega-sub-menu .mega-menu-item .mega-sub-menu .mega-menu-item a.mega-menu-link {
      -webkit-transition: all 320ms ease !important;
      -moz-transition: all 320ms ease !important;
      -ms-transition: all 320ms ease !important;
      -o-transition: all 320ms ease !important;
      transition: all 320ms ease !important;
      -webkit-transform: translateX(0);
      -moz-transform: translateX(0);
      -ms-transform: translateX(0);
      -o-transform: translateX(0);
      transform: translateX(0);
      padding: 8px 0 !important;
      color: #555555;
      overflow: hidden !important;
      background: transparent !important; }
      #mega-menu-wrap-primary #mega-menu-primary .mega-menu-flyout.mega-menu-item .mega-sub-menu .mega-menu-item .mega-sub-menu .mega-menu-item a.mega-menu-link:before, #mega-menu-wrap-primary #mega-menu-secondary .mega-menu-flyout.mega-menu-item .mega-sub-menu .mega-menu-item .mega-sub-menu .mega-menu-item a.mega-menu-link:before, #mega-menu-wrap-primary #mega-menu-fullnav .mega-menu-flyout.mega-menu-item .mega-sub-menu .mega-menu-item .mega-sub-menu .mega-menu-item a.mega-menu-link:before, #mega-menu-wrap-secondary #mega-menu-primary .mega-menu-flyout.mega-menu-item .mega-sub-menu .mega-menu-item .mega-sub-menu .mega-menu-item a.mega-menu-link:before, #mega-menu-wrap-secondary #mega-menu-secondary .mega-menu-flyout.mega-menu-item .mega-sub-menu .mega-menu-item .mega-sub-menu .mega-menu-item a.mega-menu-link:before, #mega-menu-wrap-secondary #mega-menu-fullnav .mega-menu-flyout.mega-menu-item .mega-sub-menu .mega-menu-item .mega-sub-menu .mega-menu-item a.mega-menu-link:before, #mega-menu-wrap-fullnav #mega-menu-primary .mega-menu-flyout.mega-menu-item .mega-sub-menu .mega-menu-item .mega-sub-menu .mega-menu-item a.mega-menu-link:before, #mega-menu-wrap-fullnav #mega-menu-secondary .mega-menu-flyout.mega-menu-item .mega-sub-menu .mega-menu-item .mega-sub-menu .mega-menu-item a.mega-menu-link:before, #mega-menu-wrap-fullnav #mega-menu-fullnav .mega-menu-flyout.mega-menu-item .mega-sub-menu .mega-menu-item .mega-sub-menu .mega-menu-item a.mega-menu-link:before {
        -webkit-transition: all 320ms ease !important;
        -moz-transition: all 320ms ease !important;
        -ms-transition: all 320ms ease !important;
        -o-transition: all 320ms ease !important;
        transition: all 320ms ease !important;
        content: "\f344";
        font-family: "dashicons";
        position: relative !important;
        left: -20px;
        transition: left 0.35s cubic-bezier(0.04, 0.25, 0.32, 0.94) 0s; }
    #mega-menu-wrap-primary #mega-menu-primary .mega-menu-flyout.mega-menu-item .mega-sub-menu .mega-menu-item .mega-sub-menu .mega-menu-item:hover a.mega-menu-link, #mega-menu-wrap-primary #mega-menu-secondary .mega-menu-flyout.mega-menu-item .mega-sub-menu .mega-menu-item .mega-sub-menu .mega-menu-item:hover a.mega-menu-link, #mega-menu-wrap-primary #mega-menu-fullnav .mega-menu-flyout.mega-menu-item .mega-sub-menu .mega-menu-item .mega-sub-menu .mega-menu-item:hover a.mega-menu-link, #mega-menu-wrap-secondary #mega-menu-primary .mega-menu-flyout.mega-menu-item .mega-sub-menu .mega-menu-item .mega-sub-menu .mega-menu-item:hover a.mega-menu-link, #mega-menu-wrap-secondary #mega-menu-secondary .mega-menu-flyout.mega-menu-item .mega-sub-menu .mega-menu-item .mega-sub-menu .mega-menu-item:hover a.mega-menu-link, #mega-menu-wrap-secondary #mega-menu-fullnav .mega-menu-flyout.mega-menu-item .mega-sub-menu .mega-menu-item .mega-sub-menu .mega-menu-item:hover a.mega-menu-link, #mega-menu-wrap-fullnav #mega-menu-primary .mega-menu-flyout.mega-menu-item .mega-sub-menu .mega-menu-item .mega-sub-menu .mega-menu-item:hover a.mega-menu-link, #mega-menu-wrap-fullnav #mega-menu-secondary .mega-menu-flyout.mega-menu-item .mega-sub-menu .mega-menu-item .mega-sub-menu .mega-menu-item:hover a.mega-menu-link, #mega-menu-wrap-fullnav #mega-menu-fullnav .mega-menu-flyout.mega-menu-item .mega-sub-menu .mega-menu-item .mega-sub-menu .mega-menu-item:hover a.mega-menu-link {
      -webkit-transform: translateX(10px);
      -moz-transform: translateX(10px);
      -ms-transform: translateX(10px);
      -o-transform: translateX(10px);
      transform: translateX(10px);
      color: #7AC77C; }
      #mega-menu-wrap-primary #mega-menu-primary .mega-menu-flyout.mega-menu-item .mega-sub-menu .mega-menu-item .mega-sub-menu .mega-menu-item:hover a.mega-menu-link:before, #mega-menu-wrap-primary #mega-menu-secondary .mega-menu-flyout.mega-menu-item .mega-sub-menu .mega-menu-item .mega-sub-menu .mega-menu-item:hover a.mega-menu-link:before, #mega-menu-wrap-primary #mega-menu-fullnav .mega-menu-flyout.mega-menu-item .mega-sub-menu .mega-menu-item .mega-sub-menu .mega-menu-item:hover a.mega-menu-link:before, #mega-menu-wrap-secondary #mega-menu-primary .mega-menu-flyout.mega-menu-item .mega-sub-menu .mega-menu-item .mega-sub-menu .mega-menu-item:hover a.mega-menu-link:before, #mega-menu-wrap-secondary #mega-menu-secondary .mega-menu-flyout.mega-menu-item .mega-sub-menu .mega-menu-item .mega-sub-menu .mega-menu-item:hover a.mega-menu-link:before, #mega-menu-wrap-secondary #mega-menu-fullnav .mega-menu-flyout.mega-menu-item .mega-sub-menu .mega-menu-item .mega-sub-menu .mega-menu-item:hover a.mega-menu-link:before, #mega-menu-wrap-fullnav #mega-menu-primary .mega-menu-flyout.mega-menu-item .mega-sub-menu .mega-menu-item .mega-sub-menu .mega-menu-item:hover a.mega-menu-link:before, #mega-menu-wrap-fullnav #mega-menu-secondary .mega-menu-flyout.mega-menu-item .mega-sub-menu .mega-menu-item .mega-sub-menu .mega-menu-item:hover a.mega-menu-link:before, #mega-menu-wrap-fullnav #mega-menu-fullnav .mega-menu-flyout.mega-menu-item .mega-sub-menu .mega-menu-item .mega-sub-menu .mega-menu-item:hover a.mega-menu-link:before {
        left: 0px; }
    #mega-menu-wrap-primary #mega-menu-primary .mega-menu-flyout.mega-menu-item .mega-sub-menu .mega-menu-item:hover a.mega-menu-link, #mega-menu-wrap-primary #mega-menu-secondary .mega-menu-flyout.mega-menu-item .mega-sub-menu .mega-menu-item:hover a.mega-menu-link, #mega-menu-wrap-primary #mega-menu-fullnav .mega-menu-flyout.mega-menu-item .mega-sub-menu .mega-menu-item:hover a.mega-menu-link, #mega-menu-wrap-secondary #mega-menu-primary .mega-menu-flyout.mega-menu-item .mega-sub-menu .mega-menu-item:hover a.mega-menu-link, #mega-menu-wrap-secondary #mega-menu-secondary .mega-menu-flyout.mega-menu-item .mega-sub-menu .mega-menu-item:hover a.mega-menu-link, #mega-menu-wrap-secondary #mega-menu-fullnav .mega-menu-flyout.mega-menu-item .mega-sub-menu .mega-menu-item:hover a.mega-menu-link, #mega-menu-wrap-fullnav #mega-menu-primary .mega-menu-flyout.mega-menu-item .mega-sub-menu .mega-menu-item:hover a.mega-menu-link, #mega-menu-wrap-fullnav #mega-menu-secondary .mega-menu-flyout.mega-menu-item .mega-sub-menu .mega-menu-item:hover a.mega-menu-link, #mega-menu-wrap-fullnav #mega-menu-fullnav .mega-menu-flyout.mega-menu-item .mega-sub-menu .mega-menu-item:hover a.mega-menu-link {
      -webkit-transform: translateX(10px);
      -moz-transform: translateX(10px);
      -ms-transform: translateX(10px);
      -o-transform: translateX(10px);
      transform: translateX(10px);
      color: #7AC77C;
      background: transparent; }
      #mega-menu-wrap-primary #mega-menu-primary .mega-menu-flyout.mega-menu-item .mega-sub-menu .mega-menu-item:hover a.mega-menu-link:before, #mega-menu-wrap-primary #mega-menu-secondary .mega-menu-flyout.mega-menu-item .mega-sub-menu .mega-menu-item:hover a.mega-menu-link:before, #mega-menu-wrap-primary #mega-menu-fullnav .mega-menu-flyout.mega-menu-item .mega-sub-menu .mega-menu-item:hover a.mega-menu-link:before, #mega-menu-wrap-secondary #mega-menu-primary .mega-menu-flyout.mega-menu-item .mega-sub-menu .mega-menu-item:hover a.mega-menu-link:before, #mega-menu-wrap-secondary #mega-menu-secondary .mega-menu-flyout.mega-menu-item .mega-sub-menu .mega-menu-item:hover a.mega-menu-link:before, #mega-menu-wrap-secondary #mega-menu-fullnav .mega-menu-flyout.mega-menu-item .mega-sub-menu .mega-menu-item:hover a.mega-menu-link:before, #mega-menu-wrap-fullnav #mega-menu-primary .mega-menu-flyout.mega-menu-item .mega-sub-menu .mega-menu-item:hover a.mega-menu-link:before, #mega-menu-wrap-fullnav #mega-menu-secondary .mega-menu-flyout.mega-menu-item .mega-sub-menu .mega-menu-item:hover a.mega-menu-link:before, #mega-menu-wrap-fullnav #mega-menu-fullnav .mega-menu-flyout.mega-menu-item .mega-sub-menu .mega-menu-item:hover a.mega-menu-link:before {
        left: 0px; }
    #mega-menu-wrap-primary #mega-menu-primary .mega-menu-flyout.mega-menu-item .mega-sub-menu .mega-menu-item.mega-current-menu-item > a.mega-menu-link, #mega-menu-wrap-primary #mega-menu-primary .mega-menu-flyout.mega-menu-item .mega-sub-menu .mega-menu-item.mega-current-menu-ancestor > a.mega-menu-link, #mega-menu-wrap-primary #mega-menu-secondary .mega-menu-flyout.mega-menu-item .mega-sub-menu .mega-menu-item.mega-current-menu-item > a.mega-menu-link, #mega-menu-wrap-primary #mega-menu-secondary .mega-menu-flyout.mega-menu-item .mega-sub-menu .mega-menu-item.mega-current-menu-ancestor > a.mega-menu-link, #mega-menu-wrap-primary #mega-menu-fullnav .mega-menu-flyout.mega-menu-item .mega-sub-menu .mega-menu-item.mega-current-menu-item > a.mega-menu-link, #mega-menu-wrap-primary #mega-menu-fullnav .mega-menu-flyout.mega-menu-item .mega-sub-menu .mega-menu-item.mega-current-menu-ancestor > a.mega-menu-link, #mega-menu-wrap-secondary #mega-menu-primary .mega-menu-flyout.mega-menu-item .mega-sub-menu .mega-menu-item.mega-current-menu-item > a.mega-menu-link, #mega-menu-wrap-secondary #mega-menu-primary .mega-menu-flyout.mega-menu-item .mega-sub-menu .mega-menu-item.mega-current-menu-ancestor > a.mega-menu-link, #mega-menu-wrap-secondary #mega-menu-secondary .mega-menu-flyout.mega-menu-item .mega-sub-menu .mega-menu-item.mega-current-menu-item > a.mega-menu-link, #mega-menu-wrap-secondary #mega-menu-secondary .mega-menu-flyout.mega-menu-item .mega-sub-menu .mega-menu-item.mega-current-menu-ancestor > a.mega-menu-link, #mega-menu-wrap-secondary #mega-menu-fullnav .mega-menu-flyout.mega-menu-item .mega-sub-menu .mega-menu-item.mega-current-menu-item > a.mega-menu-link, #mega-menu-wrap-secondary #mega-menu-fullnav .mega-menu-flyout.mega-menu-item .mega-sub-menu .mega-menu-item.mega-current-menu-ancestor > a.mega-menu-link, #mega-menu-wrap-fullnav #mega-menu-primary .mega-menu-flyout.mega-menu-item .mega-sub-menu .mega-menu-item.mega-current-menu-item > a.mega-menu-link, #mega-menu-wrap-fullnav #mega-menu-primary .mega-menu-flyout.mega-menu-item .mega-sub-menu .mega-menu-item.mega-current-menu-ancestor > a.mega-menu-link, #mega-menu-wrap-fullnav #mega-menu-secondary .mega-menu-flyout.mega-menu-item .mega-sub-menu .mega-menu-item.mega-current-menu-item > a.mega-menu-link, #mega-menu-wrap-fullnav #mega-menu-secondary .mega-menu-flyout.mega-menu-item .mega-sub-menu .mega-menu-item.mega-current-menu-ancestor > a.mega-menu-link, #mega-menu-wrap-fullnav #mega-menu-fullnav .mega-menu-flyout.mega-menu-item .mega-sub-menu .mega-menu-item.mega-current-menu-item > a.mega-menu-link, #mega-menu-wrap-fullnav #mega-menu-fullnav .mega-menu-flyout.mega-menu-item .mega-sub-menu .mega-menu-item.mega-current-menu-ancestor > a.mega-menu-link {
      -webkit-transform: translateX(10px) !important;
      -moz-transform: translateX(10px) !important;
      -ms-transform: translateX(10px) !important;
      -o-transform: translateX(10px) !important;
      transform: translateX(10px) !important;
      color: #7AC77C !important;
      background: transparent; }
      #mega-menu-wrap-primary #mega-menu-primary .mega-menu-flyout.mega-menu-item .mega-sub-menu .mega-menu-item.mega-current-menu-item > a.mega-menu-link:before, #mega-menu-wrap-primary #mega-menu-primary .mega-menu-flyout.mega-menu-item .mega-sub-menu .mega-menu-item.mega-current-menu-ancestor > a.mega-menu-link:before, #mega-menu-wrap-primary #mega-menu-secondary .mega-menu-flyout.mega-menu-item .mega-sub-menu .mega-menu-item.mega-current-menu-item > a.mega-menu-link:before, #mega-menu-wrap-primary #mega-menu-secondary .mega-menu-flyout.mega-menu-item .mega-sub-menu .mega-menu-item.mega-current-menu-ancestor > a.mega-menu-link:before, #mega-menu-wrap-primary #mega-menu-fullnav .mega-menu-flyout.mega-menu-item .mega-sub-menu .mega-menu-item.mega-current-menu-item > a.mega-menu-link:before, #mega-menu-wrap-primary #mega-menu-fullnav .mega-menu-flyout.mega-menu-item .mega-sub-menu .mega-menu-item.mega-current-menu-ancestor > a.mega-menu-link:before, #mega-menu-wrap-secondary #mega-menu-primary .mega-menu-flyout.mega-menu-item .mega-sub-menu .mega-menu-item.mega-current-menu-item > a.mega-menu-link:before, #mega-menu-wrap-secondary #mega-menu-primary .mega-menu-flyout.mega-menu-item .mega-sub-menu .mega-menu-item.mega-current-menu-ancestor > a.mega-menu-link:before, #mega-menu-wrap-secondary #mega-menu-secondary .mega-menu-flyout.mega-menu-item .mega-sub-menu .mega-menu-item.mega-current-menu-item > a.mega-menu-link:before, #mega-menu-wrap-secondary #mega-menu-secondary .mega-menu-flyout.mega-menu-item .mega-sub-menu .mega-menu-item.mega-current-menu-ancestor > a.mega-menu-link:before, #mega-menu-wrap-secondary #mega-menu-fullnav .mega-menu-flyout.mega-menu-item .mega-sub-menu .mega-menu-item.mega-current-menu-item > a.mega-menu-link:before, #mega-menu-wrap-secondary #mega-menu-fullnav .mega-menu-flyout.mega-menu-item .mega-sub-menu .mega-menu-item.mega-current-menu-ancestor > a.mega-menu-link:before, #mega-menu-wrap-fullnav #mega-menu-primary .mega-menu-flyout.mega-menu-item .mega-sub-menu .mega-menu-item.mega-current-menu-item > a.mega-menu-link:before, #mega-menu-wrap-fullnav #mega-menu-primary .mega-menu-flyout.mega-menu-item .mega-sub-menu .mega-menu-item.mega-current-menu-ancestor > a.mega-menu-link:before, #mega-menu-wrap-fullnav #mega-menu-secondary .mega-menu-flyout.mega-menu-item .mega-sub-menu .mega-menu-item.mega-current-menu-item > a.mega-menu-link:before, #mega-menu-wrap-fullnav #mega-menu-secondary .mega-menu-flyout.mega-menu-item .mega-sub-menu .mega-menu-item.mega-current-menu-ancestor > a.mega-menu-link:before, #mega-menu-wrap-fullnav #mega-menu-fullnav .mega-menu-flyout.mega-menu-item .mega-sub-menu .mega-menu-item.mega-current-menu-item > a.mega-menu-link:before, #mega-menu-wrap-fullnav #mega-menu-fullnav .mega-menu-flyout.mega-menu-item .mega-sub-menu .mega-menu-item.mega-current-menu-ancestor > a.mega-menu-link:before {
        left: 0 !important; }
  #mega-menu-wrap-primary #mega-menu-primary .mega-menu-megamenu.mega-menu-item .mega-sub-menu, #mega-menu-wrap-primary #mega-menu-secondary .mega-menu-megamenu.mega-menu-item .mega-sub-menu, #mega-menu-wrap-primary #mega-menu-fullnav .mega-menu-megamenu.mega-menu-item .mega-sub-menu, #mega-menu-wrap-secondary #mega-menu-primary .mega-menu-megamenu.mega-menu-item .mega-sub-menu, #mega-menu-wrap-secondary #mega-menu-secondary .mega-menu-megamenu.mega-menu-item .mega-sub-menu, #mega-menu-wrap-secondary #mega-menu-fullnav .mega-menu-megamenu.mega-menu-item .mega-sub-menu, #mega-menu-wrap-fullnav #mega-menu-primary .mega-menu-megamenu.mega-menu-item .mega-sub-menu, #mega-menu-wrap-fullnav #mega-menu-secondary .mega-menu-megamenu.mega-menu-item .mega-sub-menu, #mega-menu-wrap-fullnav #mega-menu-fullnav .mega-menu-megamenu.mega-menu-item .mega-sub-menu {
    background: #ffffff; }
    #mega-menu-wrap-primary #mega-menu-primary .mega-menu-megamenu.mega-menu-item .mega-sub-menu .mega-menu-item > a.mega-menu-link, #mega-menu-wrap-primary #mega-menu-secondary .mega-menu-megamenu.mega-menu-item .mega-sub-menu .mega-menu-item > a.mega-menu-link, #mega-menu-wrap-primary #mega-menu-fullnav .mega-menu-megamenu.mega-menu-item .mega-sub-menu .mega-menu-item > a.mega-menu-link, #mega-menu-wrap-secondary #mega-menu-primary .mega-menu-megamenu.mega-menu-item .mega-sub-menu .mega-menu-item > a.mega-menu-link, #mega-menu-wrap-secondary #mega-menu-secondary .mega-menu-megamenu.mega-menu-item .mega-sub-menu .mega-menu-item > a.mega-menu-link, #mega-menu-wrap-secondary #mega-menu-fullnav .mega-menu-megamenu.mega-menu-item .mega-sub-menu .mega-menu-item > a.mega-menu-link, #mega-menu-wrap-fullnav #mega-menu-primary .mega-menu-megamenu.mega-menu-item .mega-sub-menu .mega-menu-item > a.mega-menu-link, #mega-menu-wrap-fullnav #mega-menu-secondary .mega-menu-megamenu.mega-menu-item .mega-sub-menu .mega-menu-item > a.mega-menu-link, #mega-menu-wrap-fullnav #mega-menu-fullnav .mega-menu-megamenu.mega-menu-item .mega-sub-menu .mega-menu-item > a.mega-menu-link {
      padding: 0 20px;
      margin-top: 10px;
      margin-bottom: 10px;
      color: #333333; }
    #mega-menu-wrap-primary #mega-menu-primary .mega-menu-megamenu.mega-menu-item .mega-sub-menu .mega-menu-item .mega-block-title, #mega-menu-wrap-primary #mega-menu-secondary .mega-menu-megamenu.mega-menu-item .mega-sub-menu .mega-menu-item .mega-block-title, #mega-menu-wrap-primary #mega-menu-fullnav .mega-menu-megamenu.mega-menu-item .mega-sub-menu .mega-menu-item .mega-block-title, #mega-menu-wrap-secondary #mega-menu-primary .mega-menu-megamenu.mega-menu-item .mega-sub-menu .mega-menu-item .mega-block-title, #mega-menu-wrap-secondary #mega-menu-secondary .mega-menu-megamenu.mega-menu-item .mega-sub-menu .mega-menu-item .mega-block-title, #mega-menu-wrap-secondary #mega-menu-fullnav .mega-menu-megamenu.mega-menu-item .mega-sub-menu .mega-menu-item .mega-block-title, #mega-menu-wrap-fullnav #mega-menu-primary .mega-menu-megamenu.mega-menu-item .mega-sub-menu .mega-menu-item .mega-block-title, #mega-menu-wrap-fullnav #mega-menu-secondary .mega-menu-megamenu.mega-menu-item .mega-sub-menu .mega-menu-item .mega-block-title, #mega-menu-wrap-fullnav #mega-menu-fullnav .mega-menu-megamenu.mega-menu-item .mega-sub-menu .mega-menu-item .mega-block-title {
      margin-top: 10px;
      margin-bottom: 20px;
      color: #333333; }
    #mega-menu-wrap-primary #mega-menu-primary .mega-menu-megamenu.mega-menu-item .mega-sub-menu .mega-menu-item .mega-sub-menu .mega-menu-item a.mega-menu-link, #mega-menu-wrap-primary #mega-menu-secondary .mega-menu-megamenu.mega-menu-item .mega-sub-menu .mega-menu-item .mega-sub-menu .mega-menu-item a.mega-menu-link, #mega-menu-wrap-primary #mega-menu-fullnav .mega-menu-megamenu.mega-menu-item .mega-sub-menu .mega-menu-item .mega-sub-menu .mega-menu-item a.mega-menu-link, #mega-menu-wrap-secondary #mega-menu-primary .mega-menu-megamenu.mega-menu-item .mega-sub-menu .mega-menu-item .mega-sub-menu .mega-menu-item a.mega-menu-link, #mega-menu-wrap-secondary #mega-menu-secondary .mega-menu-megamenu.mega-menu-item .mega-sub-menu .mega-menu-item .mega-sub-menu .mega-menu-item a.mega-menu-link, #mega-menu-wrap-secondary #mega-menu-fullnav .mega-menu-megamenu.mega-menu-item .mega-sub-menu .mega-menu-item .mega-sub-menu .mega-menu-item a.mega-menu-link, #mega-menu-wrap-fullnav #mega-menu-primary .mega-menu-megamenu.mega-menu-item .mega-sub-menu .mega-menu-item .mega-sub-menu .mega-menu-item a.mega-menu-link, #mega-menu-wrap-fullnav #mega-menu-secondary .mega-menu-megamenu.mega-menu-item .mega-sub-menu .mega-menu-item .mega-sub-menu .mega-menu-item a.mega-menu-link, #mega-menu-wrap-fullnav #mega-menu-fullnav .mega-menu-megamenu.mega-menu-item .mega-sub-menu .mega-menu-item .mega-sub-menu .mega-menu-item a.mega-menu-link {
      -webkit-transition: all 320ms ease !important;
      -moz-transition: all 320ms ease !important;
      -ms-transition: all 320ms ease !important;
      -o-transition: all 320ms ease !important;
      transition: all 320ms ease !important;
      -webkit-transform: translateX(0);
      -moz-transform: translateX(0);
      -ms-transform: translateX(0);
      -o-transform: translateX(0);
      transform: translateX(0);
      padding: 10px 0 !important;
      color: #555555;
      overflow: hidden !important; }
      #mega-menu-wrap-primary #mega-menu-primary .mega-menu-megamenu.mega-menu-item .mega-sub-menu .mega-menu-item .mega-sub-menu .mega-menu-item a.mega-menu-link:before, #mega-menu-wrap-primary #mega-menu-secondary .mega-menu-megamenu.mega-menu-item .mega-sub-menu .mega-menu-item .mega-sub-menu .mega-menu-item a.mega-menu-link:before, #mega-menu-wrap-primary #mega-menu-fullnav .mega-menu-megamenu.mega-menu-item .mega-sub-menu .mega-menu-item .mega-sub-menu .mega-menu-item a.mega-menu-link:before, #mega-menu-wrap-secondary #mega-menu-primary .mega-menu-megamenu.mega-menu-item .mega-sub-menu .mega-menu-item .mega-sub-menu .mega-menu-item a.mega-menu-link:before, #mega-menu-wrap-secondary #mega-menu-secondary .mega-menu-megamenu.mega-menu-item .mega-sub-menu .mega-menu-item .mega-sub-menu .mega-menu-item a.mega-menu-link:before, #mega-menu-wrap-secondary #mega-menu-fullnav .mega-menu-megamenu.mega-menu-item .mega-sub-menu .mega-menu-item .mega-sub-menu .mega-menu-item a.mega-menu-link:before, #mega-menu-wrap-fullnav #mega-menu-primary .mega-menu-megamenu.mega-menu-item .mega-sub-menu .mega-menu-item .mega-sub-menu .mega-menu-item a.mega-menu-link:before, #mega-menu-wrap-fullnav #mega-menu-secondary .mega-menu-megamenu.mega-menu-item .mega-sub-menu .mega-menu-item .mega-sub-menu .mega-menu-item a.mega-menu-link:before, #mega-menu-wrap-fullnav #mega-menu-fullnav .mega-menu-megamenu.mega-menu-item .mega-sub-menu .mega-menu-item .mega-sub-menu .mega-menu-item a.mega-menu-link:before {
        -webkit-transition: all 320ms ease !important;
        -moz-transition: all 320ms ease !important;
        -ms-transition: all 320ms ease !important;
        -o-transition: all 320ms ease !important;
        transition: all 320ms ease !important;
        content: "\f344";
        font-family: "dashicons";
        position: relative !important;
        left: -20px;
        transition: left 0.35s cubic-bezier(0.04, 0.25, 0.32, 0.94) 0s; }
    #mega-menu-wrap-primary #mega-menu-primary .mega-menu-megamenu.mega-menu-item .mega-sub-menu .mega-menu-item .mega-sub-menu .mega-menu-item:hover a.mega-menu-link, #mega-menu-wrap-primary #mega-menu-secondary .mega-menu-megamenu.mega-menu-item .mega-sub-menu .mega-menu-item .mega-sub-menu .mega-menu-item:hover a.mega-menu-link, #mega-menu-wrap-primary #mega-menu-fullnav .mega-menu-megamenu.mega-menu-item .mega-sub-menu .mega-menu-item .mega-sub-menu .mega-menu-item:hover a.mega-menu-link, #mega-menu-wrap-secondary #mega-menu-primary .mega-menu-megamenu.mega-menu-item .mega-sub-menu .mega-menu-item .mega-sub-menu .mega-menu-item:hover a.mega-menu-link, #mega-menu-wrap-secondary #mega-menu-secondary .mega-menu-megamenu.mega-menu-item .mega-sub-menu .mega-menu-item .mega-sub-menu .mega-menu-item:hover a.mega-menu-link, #mega-menu-wrap-secondary #mega-menu-fullnav .mega-menu-megamenu.mega-menu-item .mega-sub-menu .mega-menu-item .mega-sub-menu .mega-menu-item:hover a.mega-menu-link, #mega-menu-wrap-fullnav #mega-menu-primary .mega-menu-megamenu.mega-menu-item .mega-sub-menu .mega-menu-item .mega-sub-menu .mega-menu-item:hover a.mega-menu-link, #mega-menu-wrap-fullnav #mega-menu-secondary .mega-menu-megamenu.mega-menu-item .mega-sub-menu .mega-menu-item .mega-sub-menu .mega-menu-item:hover a.mega-menu-link, #mega-menu-wrap-fullnav #mega-menu-fullnav .mega-menu-megamenu.mega-menu-item .mega-sub-menu .mega-menu-item .mega-sub-menu .mega-menu-item:hover a.mega-menu-link {
      -webkit-transform: translateX(10px);
      -moz-transform: translateX(10px);
      -ms-transform: translateX(10px);
      -o-transform: translateX(10px);
      transform: translateX(10px);
      color: #7AC77C; }
      #mega-menu-wrap-primary #mega-menu-primary .mega-menu-megamenu.mega-menu-item .mega-sub-menu .mega-menu-item .mega-sub-menu .mega-menu-item:hover a.mega-menu-link:before, #mega-menu-wrap-primary #mega-menu-secondary .mega-menu-megamenu.mega-menu-item .mega-sub-menu .mega-menu-item .mega-sub-menu .mega-menu-item:hover a.mega-menu-link:before, #mega-menu-wrap-primary #mega-menu-fullnav .mega-menu-megamenu.mega-menu-item .mega-sub-menu .mega-menu-item .mega-sub-menu .mega-menu-item:hover a.mega-menu-link:before, #mega-menu-wrap-secondary #mega-menu-primary .mega-menu-megamenu.mega-menu-item .mega-sub-menu .mega-menu-item .mega-sub-menu .mega-menu-item:hover a.mega-menu-link:before, #mega-menu-wrap-secondary #mega-menu-secondary .mega-menu-megamenu.mega-menu-item .mega-sub-menu .mega-menu-item .mega-sub-menu .mega-menu-item:hover a.mega-menu-link:before, #mega-menu-wrap-secondary #mega-menu-fullnav .mega-menu-megamenu.mega-menu-item .mega-sub-menu .mega-menu-item .mega-sub-menu .mega-menu-item:hover a.mega-menu-link:before, #mega-menu-wrap-fullnav #mega-menu-primary .mega-menu-megamenu.mega-menu-item .mega-sub-menu .mega-menu-item .mega-sub-menu .mega-menu-item:hover a.mega-menu-link:before, #mega-menu-wrap-fullnav #mega-menu-secondary .mega-menu-megamenu.mega-menu-item .mega-sub-menu .mega-menu-item .mega-sub-menu .mega-menu-item:hover a.mega-menu-link:before, #mega-menu-wrap-fullnav #mega-menu-fullnav .mega-menu-megamenu.mega-menu-item .mega-sub-menu .mega-menu-item .mega-sub-menu .mega-menu-item:hover a.mega-menu-link:before {
        left: 0px; }

/*
  Header
  ---------------------
*/
.nav_wrapper.home2-header {
  position: absolute;
  width: 100%;
  z-index: 99; }
  .nav_wrapper.home2-header .header-container .nav-container {
    background: transparent; }
    .nav_wrapper.home2-header .header-container .nav-container .site-branding .site-title a {
      color: #ffffff; }
    .nav_wrapper.home2-header .header-container .nav-container #mega-menu-wrap-fullnav #mega-menu-fullnav > li.mega-menu-item > a.mega-menu-link {
      color: #ffffff; }
    .nav_wrapper.home2-header .header-container .nav-container #mega-menu-wrap-fullnav #mega-menu-fullnav > li.mega-menu-item.mega-current-menu-ancestor > a.mega-menu-link {
      background: transparent; }
    .nav_wrapper.home2-header .header-container .nav-container.affix {
      background: #1F1F1F; }
.nav_wrapper.home5-header {
  position: absolute;
  width: 100%;
  z-index: 99; }
  .nav_wrapper.home5-header .header-container .nav-container {
    background: transparent; }
    .nav_wrapper.home5-header .header-container .nav-container .container {
      background: #ffffff;
      padding: 10px 15px;
      border-radius: 4px; }
    .nav_wrapper.home5-header .header-container .nav-container.affix {
      box-shadow: none; }
      .nav_wrapper.home5-header .header-container .nav-container.affix .container {
        box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.2); }
  @media (min-width: 768px) and (max-width: 991px) {
    .nav_wrapper.home5-header .navbar-tillage {
      display: flex; } }
.nav_wrapper.home6-header {
  position: absolute;
  width: 100%;
  z-index: 99; }
  .nav_wrapper.home6-header .header-container .nav-container {
    background: transparent; }
    .nav_wrapper.home6-header .header-container .nav-container .site-branding .site-title a {
      color: #ffffff; }
    .nav_wrapper.home6-header .header-container .nav-container .menu-container .navbar-tillage .navbar-nav li.menu-item a {
      color: #ffffff; }
    .nav_wrapper.home6-header .header-container .nav-container.affix {
      background: #1F1F1F; }
  @media (min-width: 767px) and (max-width: 991px) {
    .nav_wrapper.home6-header .header-container .nav-container .site-branding {
      text-align: left; }
    .nav_wrapper.home6-header .header-container .nav-container .menu-container {
      text-align: left !important; }
      .nav_wrapper.home6-header .header-container .nav-container .menu-container .navbar-tillage .navbar-nav {
        float: left !important; } }
  @media (max-width: 600px) {
    .nav_wrapper.home6-header .header-container .nav-container.affix {
      position: fixed;
      top: 0; } }

.header-container {
  position: relative;
  display: block; }
  .header-container .nav-container {
    padding: 15px 0;
    background: #ffffff;
    width: 100%; }
    .header-container .nav-container .site-branding {
      text-align: center; }
      .header-container .nav-container .site-branding .site-title {
        margin: 0;
        display: inline-block;
        font-size: 24px;
        font-weight: 600;
        text-transform: uppercase;
        line-height: 2; }
        .header-container .nav-container .site-branding .site-title a {
          color: #333333; }
          .header-container .nav-container .site-branding .site-title a i {
            color: #7AC77C; }
    .header-container .nav-container .topbar-right {
      text-align: right; }
    .header-container .nav-container .topbar-icons, .header-container .nav-container .topbar-widgets {
      display: inline; }
    .header-container .nav-container .head-search {
      display: inline-block; }
      .header-container .nav-container .head-search .toggle-search {
        -webkit-transition: all 320ms ease;
        -moz-transition: all 320ms ease;
        -ms-transition: all 320ms ease;
        -o-transition: all 320ms ease;
        transition: all 320ms ease;
        background: #7AC77C;
        border-radius: 50%;
        color: #ffffff;
        font-size: 14px;
        font-weight: normal;
        height: 40px;
        line-height: 40px;
        text-align: center;
        width: 40px;
        margin: 3px 0;
        cursor: pointer; }
        .header-container .nav-container .head-search .toggle-search:hover, .header-container .nav-container .head-search .toggle-search:focus {
          background: #F3CE72;
          color: #ffffff; }
      .header-container .nav-container .head-search .search-expand {
        display: none;
        position: fixed;
        right: 0;
        left: 0;
        top: 50%;
        z-index: 9;
        max-width: 800px;
        margin: 0 auto;
        width: 100%;
        padding: 20px; }
        .header-container .nav-container .head-search .search-expand .search-expand-inner {
          position: relative; }
          .header-container .nav-container .head-search .search-expand .search-expand-inner .searchform {
            display: block;
            margin-top: 10px;
            margin-bottom: 10px; }
            .header-container .nav-container .head-search .search-expand .search-expand-inner .searchform .input-group .form-control {
              height: 53px;
              background: transparent;
              border: 2px solid #ffffff;
              border-radius: 0;
              color: #ffffff;
              border-right: none;
              font-weight: 500;
              font-size: 18px; }
            .header-container .nav-container .head-search .search-expand .search-expand-inner .searchform .btn.submit {
              -webkit-transition: all 320ms ease;
              -moz-transition: all 320ms ease;
              -ms-transition: all 320ms ease;
              -o-transition: all 320ms ease;
              transition: all 320ms ease;
              display: inline-block;
              border-radius: 0px;
              padding: 15px 26px;
              font-size: 16px;
              background: #7AC77C;
              border-color: #7AC77C;
              box-shadow: none;
              text-shadow: none;
              color: #ffffff; }
              .header-container .nav-container .head-search .search-expand .search-expand-inner .searchform .btn.submit:hover, .header-container .nav-container .head-search .search-expand .search-expand-inner .searchform .btn.submit:focus {
                background: #F3CE72;
                border-color: #F3CE72;
                color: #ffffff; }
      .header-container .nav-container .head-search .search-overlay {
        background: rgba(0, 0, 0, 0.7) none repeat scroll 0 0;
        bottom: 0;
        cursor: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABUAAAAVBAMAAABbObilAAAAMFBMVEVMaXH////////////////////////////////////////////////////////////6w4mEAAAAD3RSTlMAlAX+BKLcA5+b6hJ7foD4ZP1OAAAAkUlEQVR4XkWPoQ3CUBQAL4SktoKAbCUjgAKLJZ2ABYosngTJCHSD6joUI6BZgqSoB/+Shqde7sS9x3OGk81fdO+texMtRVTia+TsQtHEUJLdohJfgNNPJHyEJPZTsWLoxShqsWITazEwqePAn69Sw2TUxk1+euPis3EwaXy8RMHSZBIlRcKKnC5hRctjMf57/wJbBlAIs9k1BAAAAABJRU5ErkJggg=="), progress;
        display: none;
        left: 0;
        position: fixed;
        right: 0;
        top: 0;
        z-index: 3; }
    .header-container .nav-container .tillage-home-icon a {
      font-size: 24px;
      color: #7AC77C;
      font-weight: normal;
      line-height: 20px;
      padding: 12px;
      text-align: center;
      opacity: 1; }
      .header-container .nav-container .tillage-home-icon a:hover, .header-container .nav-container .tillage-home-icon a:focus {
        opacity: 0.8; }
    .header-container .nav-container .tillage-login {
      display: inline-block; }
      .header-container .nav-container .tillage-login .toggle-login .login_button {
        font-size: 16px;
        line-height: 20px;
        padding: 15px;
        text-align: center;
        color: #936FA4; }
        .header-container .nav-container .tillage-login .toggle-login .login_button i {
          color: #936FA4; }
    .header-container .nav-container .cart-content {
      display: inline-block;
      line-height: 20px;
      padding: 15px;
      font-weight: normal;
      text-align: center;
      color: #936FA4; }
      .header-container .nav-container .cart-content .shop-cart-icon {
        font-size: 16px; }
        .header-container .nav-container .cart-content .shop-cart-icon i {
          color: #936FA4; }
      .header-container .nav-container .cart-content .circle {
        background: #936FA4;
        color: #ffffff;
        border-radius: 50%;
        bottom: 8px;
        display: inline-block;
        font-size: 13px;
        font-weight: bold;
        height: 20px;
        left: 0;
        line-height: 20px;
        position: relative;
        text-align: center;
        width: 20px; }
    .header-container .nav-container .sidebar-open {
      -webkit-transition: all 320ms ease;
      -moz-transition: all 320ms ease;
      -ms-transition: all 320ms ease;
      -o-transition: all 320ms ease;
      transition: all 320ms ease;
      display: inline-block;
      cursor: pointer;
      color: #ffffff;
      background: #7AC77C;
      font-size: 14px;
      font-weight: normal;
      height: 40px;
      line-height: 40px;
      text-align: center;
      width: 40px;
      border-radius: 50%;
      margin: 3px 10px; }
      .header-container .nav-container .sidebar-open:hover, .header-container .nav-container .sidebar-open:focus {
        color: #ffffff;
        background: #F3CE72; }
    .header-container .nav-container.affix {
      position: fixed;
      z-index: 9999;
      box-shadow: 0 0 3px 1px #555555;
      top: 0;
      left: 0;
      right: 0; }
      .admin-bar .header-container .nav-container.affix {
        top: 46px; }
        @media screen and (min-width: 783px) {
          .admin-bar .header-container .nav-container.affix {
            top: 32px; } }
      @media (max-width: 991px) {
        .header-container .nav-container.affix {
          position: relative;
          top: 0 !important;
          box-shadow: none;
          z-index: 0; } }
  @media (max-width: 767px) {
    .header-container .nav-container {
      position: relative; }
      .header-container .nav-container .site-branding {
        text-align: left; } }

.header-container .nav-container.home1-menu .menu-container .navbar-tillage #mega-menu-wrap-primary, .header-container .nav-container.home1-menu .menu-container .navbar-tillage #mega-menu-wrap-secondary, .header-container .nav-container.home1-menu .menu-container .navbar-tillage #mega-menu-wrap-fullnav {
  clear: none;
  display: inline-block; }
@media (min-width: 768px) and (max-width: 991px) {
  .header-container .nav-container.home1-menu .menu-container {
    margin-bottom: 15px; }
    .header-container .nav-container.home1-menu .menu-container.menu-container-default {
      float: right; } }
.header-container .nav-container.default-splited-menu .navbar-tillage {
  display: flex; }
  .header-container .nav-container.default-splited-menu .navbar-tillage #mega-menu-wrap-primary, .header-container .nav-container.default-splited-menu .navbar-tillage #mega-menu-wrap-secondary, .header-container .nav-container.default-splited-menu .navbar-tillage #mega-menu-wrap-fullnav {
    width: 100%; }
    .header-container .nav-container.default-splited-menu .navbar-tillage #mega-menu-wrap-primary #mega-menu-primary, .header-container .nav-container.default-splited-menu .navbar-tillage #mega-menu-wrap-secondary #mega-menu-primary, .header-container .nav-container.default-splited-menu .navbar-tillage #mega-menu-wrap-fullnav #mega-menu-primary {
      text-align: right; }
  .header-container .nav-container.default-splited-menu .navbar-tillage .nav.navbar-nav {
    width: 100%; }
  .header-container .nav-container.default-splited-menu .navbar-tillage.tillage-primary .nav.navbar-nav li {
    float: right; }
    .header-container .nav-container.default-splited-menu .navbar-tillage.tillage-primary .nav.navbar-nav li .children li, .header-container .nav-container.default-splited-menu .navbar-tillage.tillage-primary .nav.navbar-nav li .dropdown-menu li, .header-container .nav-container.default-splited-menu .navbar-tillage.tillage-primary .nav.navbar-nav li .sub-menu li {
      float: none;
      text-align: left; }
.header-container .navbar-default {
  background-color: none;
  border: none; }
.header-container .navbar {
  border-radius: 0; }
.header-container .navbar {
  border: none;
  margin-bottom: 0;
  min-height: auto; }

/*
  Navbar
  ---------------------
*/
.navbar-tillage {
  margin-bottom: 0;
  background: transparent;
  border: none;
  padding: 0;
  text-shadow: none; }
  .navbar-tillage.navbar-default {
    background: transparent; }
  .navbar-tillage .navbar-nav li a {
    font-size: 13px;
    background: none;
    font-weight: 700;
    color: #333333;
    text-transform: uppercase;
    -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; }
    .navbar-tillage .navbar-nav li a:hover, .navbar-tillage .navbar-nav li a:focus {
      color: #7AC77C;
      background: none; }
      .navbar-tillage .navbar-nav li a:hover:before, .navbar-tillage .navbar-nav li a:focus:before {
        background: #7AC77C;
        opacity: 1;
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0); }
    .navbar-tillage .navbar-nav li a:before {
      content: '';
      position: absolute;
      left: 15px;
      right: 15px;
      display: block;
      bottom: 0;
      height: 2px;
      background: #333333;
      opacity: 0;
      -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;
      -webkit-transform: translateY(10px);
      -moz-transform: translateY(10px);
      -ms-transform: translateY(10px);
      -o-transform: translateY(10px);
      transform: translateY(10px); }
  .navbar-tillage .navbar-nav li.active > a, .navbar-tillage .navbar-nav li.current_page_item > a, .navbar-tillage .navbar-nav li.current_page_parent > a, .navbar-tillage .navbar-nav li.current_page_ancestor > a {
    color: #7AC77C;
    background: #ffffff; }
    .navbar-tillage .navbar-nav li.active > a:before, .navbar-tillage .navbar-nav li.current_page_item > a:before, .navbar-tillage .navbar-nav li.current_page_parent > a:before, .navbar-tillage .navbar-nav li.current_page_ancestor > a:before {
      opacity: 1;
      background: #7AC77C;
      -webkit-transform: translateY(0);
      -moz-transform: translateY(0);
      -ms-transform: translateY(0);
      -o-transform: translateY(0);
      transform: translateY(0); }
    .navbar-tillage .navbar-nav li.active > a:hover, .navbar-tillage .navbar-nav li.active > a:focus, .navbar-tillage .navbar-nav li.current_page_item > a:hover, .navbar-tillage .navbar-nav li.current_page_item > a:focus, .navbar-tillage .navbar-nav li.current_page_parent > a:hover, .navbar-tillage .navbar-nav li.current_page_parent > a:focus, .navbar-tillage .navbar-nav li.current_page_ancestor > a:hover, .navbar-tillage .navbar-nav li.current_page_ancestor > a:focus {
      opacity: 1;
      color: #7AC77C; }
      .navbar-tillage .navbar-nav li.active > a:hover:before, .navbar-tillage .navbar-nav li.active > a:focus:before, .navbar-tillage .navbar-nav li.current_page_item > a:hover:before, .navbar-tillage .navbar-nav li.current_page_item > a:focus:before, .navbar-tillage .navbar-nav li.current_page_parent > a:hover:before, .navbar-tillage .navbar-nav li.current_page_parent > a:focus:before, .navbar-tillage .navbar-nav li.current_page_ancestor > a:hover:before, .navbar-tillage .navbar-nav li.current_page_ancestor > a:focus:before {
        background: #7AC77C;
        opacity: 1;
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0); }
  .navbar-tillage .navbar-nav li.open a {
    background: rgba(0, 0, 0, 0.5);
    color: #7AC77C; }
    .navbar-tillage .navbar-nav li.open a:before {
      opacity: 0;
      -webkit-transform: translateY(10);
      -moz-transform: translateY(10);
      -ms-transform: translateY(10);
      -o-transform: translateY(10);
      transform: translateY(10); }
    .navbar-tillage .navbar-nav li.open a:hover, .navbar-tillage .navbar-nav li.open a:focus {
      color: #7AC77C;
      background: rgba(0, 0, 0, 0.5); }
      .navbar-tillage .navbar-nav li.open a:hover:before, .navbar-tillage .navbar-nav li.open a:focus:before {
        opacity: 1;
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0); }
  .navbar-tillage .navbar-nav li .children, .navbar-tillage .navbar-nav li .dropdown-menu, .navbar-tillage .navbar-nav li .sub-menu {
    background: #ffffff;
    padding: 15px;
    min-width: 280px;
    text-align: left; }
    .navbar-tillage .navbar-nav li .children li, .navbar-tillage .navbar-nav li .dropdown-menu li, .navbar-tillage .navbar-nav li .sub-menu li {
      display: block;
      float: none; }
      .navbar-tillage .navbar-nav li .children li a, .navbar-tillage .navbar-nav li .dropdown-menu li a, .navbar-tillage .navbar-nav li .sub-menu li a {
        -webkit-transition: all 320ms ease !important;
        -moz-transition: all 320ms ease !important;
        -ms-transition: all 320ms ease !important;
        -o-transition: all 320ms ease !important;
        transition: all 320ms ease !important;
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -ms-transform: translateX(0);
        -o-transform: translateX(0);
        transform: translateX(0);
        position: relative;
        display: block;
        width: 100%;
        padding: 10px 0; }
        .navbar-tillage .navbar-nav li .children li a:before, .navbar-tillage .navbar-nav li .dropdown-menu li a:before, .navbar-tillage .navbar-nav li .sub-menu li a:before {
          -webkit-transform: translateY(0);
          -moz-transform: translateY(0);
          -ms-transform: translateY(0);
          -o-transform: translateY(0);
          transform: translateY(0);
          -webkit-transition: all 320ms ease !important;
          -moz-transition: all 320ms ease !important;
          -ms-transition: all 320ms ease !important;
          -o-transition: all 320ms ease !important;
          transition: all 320ms ease !important;
          content: "\f344";
          font-family: "dashicons";
          position: relative;
          left: -20px;
          bottom: auto;
          right: auto;
          display: inline-block;
          transition: left 0.35s cubic-bezier(0.04, 0.25, 0.32, 0.94) 0s;
          opacity: 0;
          background: transparent;
          margin: 0 0 0 6px; }
        .navbar-tillage .navbar-nav li .children li a:hover, .navbar-tillage .navbar-nav li .children li a:focus, .navbar-tillage .navbar-nav li .dropdown-menu li a:hover, .navbar-tillage .navbar-nav li .dropdown-menu li a:focus, .navbar-tillage .navbar-nav li .sub-menu li a:hover, .navbar-tillage .navbar-nav li .sub-menu li a:focus {
          -webkit-transform: translateX(10px);
          -moz-transform: translateX(10px);
          -ms-transform: translateX(10px);
          -o-transform: translateX(10px);
          transform: translateX(10px); }
          .navbar-tillage .navbar-nav li .children li a:hover:before, .navbar-tillage .navbar-nav li .children li a:focus:before, .navbar-tillage .navbar-nav li .dropdown-menu li a:hover:before, .navbar-tillage .navbar-nav li .dropdown-menu li a:focus:before, .navbar-tillage .navbar-nav li .sub-menu li a:hover:before, .navbar-tillage .navbar-nav li .sub-menu li a:focus:before {
            -webkit-transform: translateY(0);
            -moz-transform: translateY(0);
            -ms-transform: translateY(0);
            -o-transform: translateY(0);
            transform: translateY(0);
            opacity: 1;
            left: -5px;
            background: transparent; }
      .navbar-tillage .navbar-nav li .children li.page_item_has_children:hover > a, .navbar-tillage .navbar-nav li .children li.page_item_has_children:focus > a, .navbar-tillage .navbar-nav li .children li.menu-item-has-children:hover > a, .navbar-tillage .navbar-nav li .children li.menu-item-has-children:focus > a, .navbar-tillage .navbar-nav li .dropdown-menu li.page_item_has_children:hover > a, .navbar-tillage .navbar-nav li .dropdown-menu li.page_item_has_children:focus > a, .navbar-tillage .navbar-nav li .dropdown-menu li.menu-item-has-children:hover > a, .navbar-tillage .navbar-nav li .dropdown-menu li.menu-item-has-children:focus > a, .navbar-tillage .navbar-nav li .sub-menu li.page_item_has_children:hover > a, .navbar-tillage .navbar-nav li .sub-menu li.page_item_has_children:focus > a, .navbar-tillage .navbar-nav li .sub-menu li.menu-item-has-children:hover > a, .navbar-tillage .navbar-nav li .sub-menu li.menu-item-has-children:focus > a {
        -webkit-transform: translateX(10px);
        -moz-transform: translateX(10px);
        -ms-transform: translateX(10px);
        -o-transform: translateX(10px);
        transform: translateX(10px); }
        .navbar-tillage .navbar-nav li .children li.page_item_has_children:hover > a:before, .navbar-tillage .navbar-nav li .children li.page_item_has_children:focus > a:before, .navbar-tillage .navbar-nav li .children li.menu-item-has-children:hover > a:before, .navbar-tillage .navbar-nav li .children li.menu-item-has-children:focus > a:before, .navbar-tillage .navbar-nav li .dropdown-menu li.page_item_has_children:hover > a:before, .navbar-tillage .navbar-nav li .dropdown-menu li.page_item_has_children:focus > a:before, .navbar-tillage .navbar-nav li .dropdown-menu li.menu-item-has-children:hover > a:before, .navbar-tillage .navbar-nav li .dropdown-menu li.menu-item-has-children:focus > a:before, .navbar-tillage .navbar-nav li .sub-menu li.page_item_has_children:hover > a:before, .navbar-tillage .navbar-nav li .sub-menu li.page_item_has_children:focus > a:before, .navbar-tillage .navbar-nav li .sub-menu li.menu-item-has-children:hover > a:before, .navbar-tillage .navbar-nav li .sub-menu li.menu-item-has-children:focus > a:before {
          -webkit-transform: translateY(0);
          -moz-transform: translateY(0);
          -ms-transform: translateY(0);
          -o-transform: translateY(0);
          transform: translateY(0);
          opacity: 1;
          left: -5px;
          background: transparent; }
      .navbar-tillage .navbar-nav li .children li.current_page_ancestor > a, .navbar-tillage .navbar-nav li .children li.current_page_item > a, .navbar-tillage .navbar-nav li .dropdown-menu li.current_page_ancestor > a, .navbar-tillage .navbar-nav li .dropdown-menu li.current_page_item > a, .navbar-tillage .navbar-nav li .sub-menu li.current_page_ancestor > a, .navbar-tillage .navbar-nav li .sub-menu li.current_page_item > a {
        -webkit-transform: translateX(10px);
        -moz-transform: translateX(10px);
        -ms-transform: translateX(10px);
        -o-transform: translateX(10px);
        transform: translateX(10px); }
        .navbar-tillage .navbar-nav li .children li.current_page_ancestor > a:before, .navbar-tillage .navbar-nav li .children li.current_page_item > a:before, .navbar-tillage .navbar-nav li .dropdown-menu li.current_page_ancestor > a:before, .navbar-tillage .navbar-nav li .dropdown-menu li.current_page_item > a:before, .navbar-tillage .navbar-nav li .sub-menu li.current_page_ancestor > a:before, .navbar-tillage .navbar-nav li .sub-menu li.current_page_item > a:before {
          -webkit-transform: translateY(0);
          -moz-transform: translateY(0);
          -ms-transform: translateY(0);
          -o-transform: translateY(0);
          transform: translateY(0);
          opacity: 1;
          left: -5px;
          background: transparent; }
      .navbar-tillage .navbar-nav li .children li.active > a, .navbar-tillage .navbar-nav li .children li.current_page_item > a, .navbar-tillage .navbar-nav li .children li.current_page_parent > a, .navbar-tillage .navbar-nav li .children li.current_page_ancestor > a, .navbar-tillage .navbar-nav li .dropdown-menu li.active > a, .navbar-tillage .navbar-nav li .dropdown-menu li.current_page_item > a, .navbar-tillage .navbar-nav li .dropdown-menu li.current_page_parent > a, .navbar-tillage .navbar-nav li .dropdown-menu li.current_page_ancestor > a, .navbar-tillage .navbar-nav li .sub-menu li.active > a, .navbar-tillage .navbar-nav li .sub-menu li.current_page_item > a, .navbar-tillage .navbar-nav li .sub-menu li.current_page_parent > a, .navbar-tillage .navbar-nav li .sub-menu li.current_page_ancestor > a {
        background: none; }
  .navbar-tillage .navbar-nav li.page_item_has_children > a:after, .navbar-tillage .navbar-nav li.menu-item-has-children > a:after {
    content: "\f078";
    display: inline-block;
    font-family: "Fontawesome";
    font-weight: normal;
    margin: 0 0 0 6px;
    vertical-align: top; }
  .navbar-tillage .navbar-nav li.page_item_has_children:hover > a, .navbar-tillage .navbar-nav li.menu-item-has-children:hover > a {
    color: #7AC77C; }
    .navbar-tillage .navbar-nav li.page_item_has_children:hover > a:before, .navbar-tillage .navbar-nav li.menu-item-has-children:hover > a:before {
      background: #7AC77C;
      opacity: 1;
      -webkit-transform: translateY(0);
      -moz-transform: translateY(0);
      -ms-transform: translateY(0);
      -o-transform: translateY(0);
      transform: translateY(0); }

/*
  Off canvas mobile menu
  ---------------------
*/
.tillage-offcanvas-toggle-menu {
  display: inline-block; }

.tillage-offcanvas-menu {
  padding: 0 20px 20px; }
  .tillage-offcanvas-menu .navbar-nav {
    border-top: none;
    box-shadow: none; }
    .tillage-offcanvas-menu .navbar-nav > li > a:before {
      content: '\f009';
      font-family: "Fontawesome";
      display: inline-block;
      margin-right: 5px; }
  .tillage-offcanvas-menu ul {
    padding: 0;
    border: none;
    float: none;
    display: block;
    margin: 0 auto; }
    .tillage-offcanvas-menu ul li {
      display: block;
      float: none;
      list-style: none; }
      .tillage-offcanvas-menu ul li a {
        background: transparent;
        color: #ffffff;
        font-weight: 500;
        display: block;
        font-size: 14px;
        text-transform: capitalize;
        padding: 8px 10px; }
        .tillage-offcanvas-menu ul li a:hover, .tillage-offcanvas-menu ul li a:focus {
          color: #edb62c;
          background: transparent; }
      .tillage-offcanvas-menu ul li.current-menu-item > a, .tillage-offcanvas-menu ul li.active > a {
        color: #edb62c;
        background: transparent; }
        .tillage-offcanvas-menu ul li.current-menu-item > a:hover, .tillage-offcanvas-menu ul li.current-menu-item > a:focus, .tillage-offcanvas-menu ul li.active > a:hover, .tillage-offcanvas-menu ul li.active > a:focus {
          color: #edb62c;
          background: transparent; }
      .tillage-offcanvas-menu ul li .sub-menu, .tillage-offcanvas-menu ul li .children {
        padding-left: 20px;
        background: none; }

/*
  Generic
  ---------------------
*/
body {
  font-size: 14px;
  font-family: "Raleway", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  color: #555555;
  overflow-x: hidden;
  word-wrap: break-word; }
  body.no-scroll {
    overflow-y: hidden; }

/* Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  body.tp-boxed {
    width: 1240px;
    background: url("../img/noise_pattern_with_crosslines.png");
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
    margin: 0 auto; } }
.background-image {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover; }

.table {
  display: table;
  width: 100%;
  height: 100%; }
  .table .table-cell {
    display: table-cell;
    width: 100%;
    height: 100%;
    vertical-align: middle; }

.btn {
  -webkit-transition: all 320ms ease;
  -moz-transition: all 320ms ease;
  -ms-transition: all 320ms ease;
  -o-transition: all 320ms ease;
  transition: all 320ms ease; }

.btn-tillage {
  -webkit-transition: all 320ms ease;
  -moz-transition: all 320ms ease;
  -ms-transition: all 320ms ease;
  -o-transition: all 320ms ease;
  transition: all 320ms ease;
  display: inline-block;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  padding: 12px 20px;
  border: 2px solid #7AC77C;
  background-color: #7AC77C; }
  .btn-tillage:hover, .btn-tillage:focus {
    color: #ffffff;
    background: #F3CE72;
    border-color: #F3CE72; }

.btn-white {
  -webkit-transition: all 320ms ease;
  -moz-transition: all 320ms ease;
  -ms-transition: all 320ms ease;
  -o-transition: all 320ms ease;
  transition: all 320ms ease;
  display: inline-block;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
  color: #1F1F1F;
  padding: 12px 30px;
  border-radius: 0;
  border: none;
  background: #ffffff; }
  .btn-white:hover, .btn-white:focus {
    color: #ffffff;
    background: #7AC77C; }

.btn-black {
  -webkit-transition: all 320ms ease;
  -moz-transition: all 320ms ease;
  -ms-transition: all 320ms ease;
  -o-transition: all 320ms ease;
  transition: all 320ms ease;
  display: inline-block;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
  color: #ffffff;
  padding: 12px 30px;
  border-radius: 0;
  border: none;
  background: #1F1F1F; }
  .btn-black:hover, .btn-black:focus {
    color: #ffffff;
    background: #7AC77C; }

.btn-primary {
  background: #7AC77C;
  color: #ffffff;
  border-color: #7AC77C; }
  .btn-primary:hover, .btn-primary:active, .btn-primary:focus {
    background: #48ac4b;
    color: #ffffff;
    border-color: #48ac4b; }

.text-primary {
  color: #7AC77C; }

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
font-family: 'Playfair Display', serif;
  color: #BB4233;
  line-height: 1.1; }

.h4, h4 {
  font-size: 20px; }

.h5, h5 {
  font-size: 18px; }

.h6, h6 {
  font-size: 16px; }

p {
  font-size: 16px;
  color: #000;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7; }

ul, ol, li {
  color: #000;
  font-weight: 400;
  line-height: 1.7; }

a {
  -webkit-transition: color 320ms ease;
  -moz-transition: color 320ms ease;
  -ms-transition: color 320ms ease;
  -o-transition: color 320ms ease;
  transition: color 320ms ease;
  color: #7AC77C; }
  a:hover, a:focus {
    color: #48ac4b;
    text-decoration: none;
    outline: none; }

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

blockquote {
  border-left: 5px solid #cccccc;
  font-size: 18px;
  font-style: italic; }
  blockquote p {
    font-size: 18px; }

p b, p strong {
  font-weight: bold; }

table {
  max-width: 100%;
  overflow: scroll; }
  table tr th {
    font-weight: bold; }
  table tr th, table tr td {
    padding: 15px;
    vertical-align: middle;
    border: 1px solid #eeeeee; }

button, input, select, textarea {
  max-width: 100%;
  color: #000; }

dl {
  padding-left: 15px; }
  dl dt {
    color: #000;
    font-size: 16px; }
  dl dd {
    line-height: 1.7; }

address {
  line-height: 2; }

kbd {
  padding: 4px;
  font-size: 11px; }

form.post-password-form {
  padding: 20px 0; }
  form.post-password-form p {
    margin-bottom: 10px; }
  form.post-password-form label {
    margin-top: 20px; }
  form.post-password-form input[type='password'] {
    border: 1px solid #cccccc;
    border-radius: 0;
    height: 46px;
    text-indent: 10px; }
  form.post-password-form input[type='submit'] {
    margin-top: 20px;
    background: #7AC77C;
    color: #ffffff;
    border: 1px solid #7AC77C;
    font-weight: bold;
    padding: 6px 20px; }
    form.post-password-form input[type='submit']:hover {
      background: #48ac4b; }

.dropcap {
  font-size: 42px; }

.tpcontent-tooltip, .tpcontent-popover {
  color: #7AC77C;
  cursor: pointer; }

.circled-list {
  list-style-type: none; }
  .circled-list li:before {
    color: #7AC77C;
    content: "\f1db";
    display: inline-block;
    font-family: "FontAwesome";
    font-size: 12px;
    font-weight: normal;
    margin-right: 10px;
    vertical-align: middle; }

.arrow-list {
  list-style: none; }
  .arrow-list li:before {
    color: #7AC77C;
    content: "\f178";
    display: inline-block;
    font-family: "FontAwesome";
    font-size: 12px;
    font-weight: normal;
    margin-right: 10px;
    vertical-align: middle; }

.hand-list {
  list-style: none; }
  .hand-list li:before {
    color: #7AC77C;
    content: "\f25a";
    display: inline-block;
    font-family: "FontAwesome";
    font-size: 12px;
    font-weight: normal;
    margin-right: 10px;
    vertical-align: middle; }

.header-title {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  text-transform: capitalize;
  font-weight: 700;
  position: relative;
  display: block;
  color: #333333;
  margin-bottom: 20px;
  margin-top: 10px; }

.header-icon-title {
  font-size: 18px;
  text-transform: capitalize;
  font-weight: 600;
  position: relative;
  display: block;
  color: #333333; }
  .header-icon-title:before {
    content: "\f18c";
    font-family: 'Fontawesome';
    position: relative;
    display: block;
    color: #7AC77C;
    font-size: 32px;
    font-weight: normal;
    margin-bottom: 10px; }

.vc_tta-container .vc_tta-tabs.vc_tta-style-classic .vc_tta-tabs-container .vc_tta-tabs-list .vc_tta-tab a {
  background: transparent;
  color: #F3CE72;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase; }
  .vc_tta-container .vc_tta-tabs.vc_tta-style-classic .vc_tta-tabs-container .vc_tta-tabs-list .vc_tta-tab a:hover, .vc_tta-container .vc_tta-tabs.vc_tta-style-classic .vc_tta-tabs-container .vc_tta-tabs-list .vc_tta-tab a:focus {
    background: transparent; }
.vc_tta-container .vc_tta-tabs.vc_tta-style-classic .vc_tta-tabs-container .vc_tta-tabs-list .vc_tta-tab.vc_active a {
  background: transparent;
  color: #7AC77C;
  text-transform: uppercase; }
.vc_tta-container .vc_tta-tabs.vc_tta-style-classic .vc_tta-tabs-container .vc_tta-tabs-list .vc_tta-tab:last-child a {
  border-right: none; }
.vc_tta-container .vc_tta-tabs.vc_tta-style-modern .vc_tta-tabs-container .vc_tta-tabs-list .vc_tta-tab a {
  color: #ffffff;
  background: #F3CE72;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase; }
  .vc_tta-container .vc_tta-tabs.vc_tta-style-modern .vc_tta-tabs-container .vc_tta-tabs-list .vc_tta-tab a i {
    color: #ffffff; }
.vc_tta-container .vc_tta-tabs.vc_tta-style-modern .vc_tta-tabs-container .vc_tta-tabs-list .vc_tta-tab.vc_active a {
  color: #7AC77C;
  background: transparent; }
  .vc_tta-container .vc_tta-tabs.vc_tta-style-modern .vc_tta-tabs-container .vc_tta-tabs-list .vc_tta-tab.vc_active a i {
    color: #7AC77C; }
.vc_tta-container .vc_tta-tabs.vc_tta-style-outline .vc_tta-tabs-container .vc_tta-tabs-list .vc_tta-tab a {
  color: #F3CE72;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase; }
  .vc_tta-container .vc_tta-tabs.vc_tta-style-outline .vc_tta-tabs-container .vc_tta-tabs-list .vc_tta-tab a i {
    color: #F3CE72; }
  .vc_tta-container .vc_tta-tabs.vc_tta-style-outline .vc_tta-tabs-container .vc_tta-tabs-list .vc_tta-tab a:hover {
    color: #ffffff;
    background: #F3CE72; }
    .vc_tta-container .vc_tta-tabs.vc_tta-style-outline .vc_tta-tabs-container .vc_tta-tabs-list .vc_tta-tab a:hover i {
      color: #ffffff; }
.vc_tta-container .vc_tta-tabs.vc_tta-style-outline .vc_tta-tabs-container .vc_tta-tabs-list .vc_tta-tab.vc_active a {
  color: #7AC77C; }
  .vc_tta-container .vc_tta-tabs.vc_tta-style-outline .vc_tta-tabs-container .vc_tta-tabs-list .vc_tta-tab.vc_active a i {
    color: #7AC77C; }
  .vc_tta-container .vc_tta-tabs.vc_tta-style-outline .vc_tta-tabs-container .vc_tta-tabs-list .vc_tta-tab.vc_active a:hover {
    background: transparent; }
.vc_tta-container .vc_tta-tabs.vc_tta-style-flat .vc_tta-tabs-container .vc_tta-tabs-list .vc_tta-tab a {
  color: #ffffff;
  background: #F3CE72;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase; }
  .vc_tta-container .vc_tta-tabs.vc_tta-style-flat .vc_tta-tabs-container .vc_tta-tabs-list .vc_tta-tab a i {
    color: #ffffff; }
.vc_tta-container .vc_tta-tabs.vc_tta-style-flat .vc_tta-tabs-container .vc_tta-tabs-list .vc_tta-tab.vc_active a {
  color: #ffffff;
  background: #7AC77C; }
  .vc_tta-container .vc_tta-tabs.vc_tta-style-flat .vc_tta-tabs-container .vc_tta-tabs-list .vc_tta-tab.vc_active a i {
    color: #ffffff; }
.vc_tta-container .vc_tta-tabs.vc_tta-style-flat .vc_tta-panels-container .vc_tta-panels .vc_tta-panel .vc_tta-panel-body {
  background: #F3CE72;
  color: #ffffff; }
  .vc_tta-container .vc_tta-tabs.vc_tta-style-flat .vc_tta-panels-container .vc_tta-panels .vc_tta-panel .vc_tta-panel-body p {
    color: #ffffff; }

.vc_tta-container .vc_tta-accordion {
  margin-bottom: 40px; }
  .vc_tta-container .vc_tta-accordion .vc_tta-panels-container .vc_tta-panels .vc_tta-panel {
    margin-bottom: 20px; }
    .vc_tta-container .vc_tta-accordion .vc_tta-panels-container .vc_tta-panels .vc_tta-panel .vc_tta-panel-heading .vc_tta-panel-title a {
      color: #333333;
      padding-bottom: 20px;
      padding-top: 20px; }
      .vc_tta-container .vc_tta-accordion .vc_tta-panels-container .vc_tta-panels .vc_tta-panel .vc_tta-panel-heading .vc_tta-panel-title a:hover {
        color: #7AC77C; }
        .vc_tta-container .vc_tta-accordion .vc_tta-panels-container .vc_tta-panels .vc_tta-panel .vc_tta-panel-heading .vc_tta-panel-title a:hover i {
          color: #7AC77C; }
          .vc_tta-container .vc_tta-accordion .vc_tta-panels-container .vc_tta-panels .vc_tta-panel .vc_tta-panel-heading .vc_tta-panel-title a:hover i:after, .vc_tta-container .vc_tta-accordion .vc_tta-panels-container .vc_tta-panels .vc_tta-panel .vc_tta-panel-heading .vc_tta-panel-title a:hover i:before {
            border-color: #7AC77C; }
    .vc_tta-container .vc_tta-accordion .vc_tta-panels-container .vc_tta-panels .vc_tta-panel .vc_tta-panel-heading:hover {
      background: none; }
    .vc_tta-container .vc_tta-accordion .vc_tta-panels-container .vc_tta-panels .vc_tta-panel .vc_tta-panel-body {
      padding: 30px; }
    .vc_tta-container .vc_tta-accordion .vc_tta-panels-container .vc_tta-panels .vc_tta-panel.vc_active .vc_tta-panel-heading .vc_tta-panel-title a {
      color: #ffffff;
      background: #7AC77C; }
      .vc_tta-container .vc_tta-accordion .vc_tta-panels-container .vc_tta-panels .vc_tta-panel.vc_active .vc_tta-panel-heading .vc_tta-panel-title a i {
        color: #ffffff; }
        .vc_tta-container .vc_tta-accordion .vc_tta-panels-container .vc_tta-panels .vc_tta-panel.vc_active .vc_tta-panel-heading .vc_tta-panel-title a i:after, .vc_tta-container .vc_tta-accordion .vc_tta-panels-container .vc_tta-panels .vc_tta-panel.vc_active .vc_tta-panel-heading .vc_tta-panel-title a i:before {
          border-color: #ffffff; }
      .vc_tta-container .vc_tta-accordion .vc_tta-panels-container .vc_tta-panels .vc_tta-panel.vc_active .vc_tta-panel-heading .vc_tta-panel-title a:hover {
        color: #ffffff; }
        .vc_tta-container .vc_tta-accordion .vc_tta-panels-container .vc_tta-panels .vc_tta-panel.vc_active .vc_tta-panel-heading .vc_tta-panel-title a:hover i {
          color: #ffffff; }
          .vc_tta-container .vc_tta-accordion .vc_tta-panels-container .vc_tta-panels .vc_tta-panel.vc_active .vc_tta-panel-heading .vc_tta-panel-title a:hover i:after, .vc_tta-container .vc_tta-accordion .vc_tta-panels-container .vc_tta-panels .vc_tta-panel.vc_active .vc_tta-panel-heading .vc_tta-panel-title a:hover i:before {
            border-color: #ffffff; }
  .vc_tta-container .vc_tta-accordion.vc_tta-style-outline .vc_tta-panels-container .vc_tta-panels .vc_tta-panel .vc_tta-panel-heading {
    border-radius: 10px; }
    .vc_tta-container .vc_tta-accordion.vc_tta-style-outline .vc_tta-panels-container .vc_tta-panels .vc_tta-panel .vc_tta-panel-heading .vc_tta-panel-title a {
      color: #ffffff;
      background: #F3CE72; }
      .vc_tta-container .vc_tta-accordion.vc_tta-style-outline .vc_tta-panels-container .vc_tta-panels .vc_tta-panel .vc_tta-panel-heading .vc_tta-panel-title a:hover {
        color: #ffffff;
        background: #7AC77C; }
        .vc_tta-container .vc_tta-accordion.vc_tta-style-outline .vc_tta-panels-container .vc_tta-panels .vc_tta-panel .vc_tta-panel-heading .vc_tta-panel-title a:hover i {
          color: #ffffff; }
          .vc_tta-container .vc_tta-accordion.vc_tta-style-outline .vc_tta-panels-container .vc_tta-panels .vc_tta-panel .vc_tta-panel-heading .vc_tta-panel-title a:hover i:after, .vc_tta-container .vc_tta-accordion.vc_tta-style-outline .vc_tta-panels-container .vc_tta-panels .vc_tta-panel .vc_tta-panel-heading .vc_tta-panel-title a:hover i:before {
            border-color: #ffffff; }
  .vc_tta-container .vc_tta-accordion.vc_tta-style-outline .vc_tta-panels-container .vc_tta-panels .vc_tta-panel.vc_active .vc_tta-panel-heading .vc_tta-panel-title a {
    color: #ffffff;
    background: #7AC77C; }
    .vc_tta-container .vc_tta-accordion.vc_tta-style-outline .vc_tta-panels-container .vc_tta-panels .vc_tta-panel.vc_active .vc_tta-panel-heading .vc_tta-panel-title a i {
      color: #ffffff; }
      .vc_tta-container .vc_tta-accordion.vc_tta-style-outline .vc_tta-panels-container .vc_tta-panels .vc_tta-panel.vc_active .vc_tta-panel-heading .vc_tta-panel-title a i:after, .vc_tta-container .vc_tta-accordion.vc_tta-style-outline .vc_tta-panels-container .vc_tta-panels .vc_tta-panel.vc_active .vc_tta-panel-heading .vc_tta-panel-title a i:before {
        border-color: #ffffff; }

.vc_toggle.tillage-framed-toggle {
  padding: 20px;
  border: 1px solid #cccccc; }
  .vc_toggle.tillage-framed-toggle .vc_toggle_content {
    margin-top: 20px; }
.vc_toggle.vc_toggle_active .vc_toggle_title h4 {
  color: #7AC77C; }
.vc_toggle.vc_toggle_default .vc_toggle_title .vc_toggle_icon {
  background: #7AC77C;
  border-color: #7AC77C; }
  .vc_toggle.vc_toggle_default .vc_toggle_title .vc_toggle_icon:before, .vc_toggle.vc_toggle_default .vc_toggle_title .vc_toggle_icon:after {
    background: #7AC77C;
    border-color: #7AC77C; }
.vc_toggle.vc_toggle_round .vc_toggle_title .vc_toggle_icon, .vc_toggle.vc_toggle_square .vc_toggle_title .vc_toggle_icon {
  background: #7AC77C; }
  .vc_toggle.vc_toggle_round .vc_toggle_title .vc_toggle_icon:before, .vc_toggle.vc_toggle_round .vc_toggle_title .vc_toggle_icon:after, .vc_toggle.vc_toggle_square .vc_toggle_title .vc_toggle_icon:before, .vc_toggle.vc_toggle_square .vc_toggle_title .vc_toggle_icon:after {
    background: #ffffff; }
.vc_toggle.vc_toggle_round .vc_toggle_title:hover .vc_toggle_icon, .vc_toggle.vc_toggle_square .vc_toggle_title:hover .vc_toggle_icon {
  background: #F3CE72; }
  .vc_toggle.vc_toggle_round .vc_toggle_title:hover .vc_toggle_icon:before, .vc_toggle.vc_toggle_round .vc_toggle_title:hover .vc_toggle_icon:after, .vc_toggle.vc_toggle_square .vc_toggle_title:hover .vc_toggle_icon:before, .vc_toggle.vc_toggle_square .vc_toggle_title:hover .vc_toggle_icon:after {
    background: #ffffff; }
.vc_toggle.vc_toggle_round.vc_toggle_color_inverted .vc_toggle_title .vc_toggle_icon, .vc_toggle.vc_toggle_square.vc_toggle_color_inverted .vc_toggle_title .vc_toggle_icon {
  border-color: #7AC77C;
  background: transparent; }
  .vc_toggle.vc_toggle_round.vc_toggle_color_inverted .vc_toggle_title .vc_toggle_icon:before, .vc_toggle.vc_toggle_round.vc_toggle_color_inverted .vc_toggle_title .vc_toggle_icon:after, .vc_toggle.vc_toggle_square.vc_toggle_color_inverted .vc_toggle_title .vc_toggle_icon:before, .vc_toggle.vc_toggle_square.vc_toggle_color_inverted .vc_toggle_title .vc_toggle_icon:after {
    background: #7AC77C; }
.vc_toggle.vc_toggle_round.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon, .vc_toggle.vc_toggle_square.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon {
  border-color: #F3CE72; }
  .vc_toggle.vc_toggle_round.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon:before, .vc_toggle.vc_toggle_round.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon:after, .vc_toggle.vc_toggle_square.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon:before, .vc_toggle.vc_toggle_square.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon:after {
    background: #F3CE72; }
.vc_toggle.vc_toggle_arrow .vc_toggle_title .vc_toggle_icon:before, .vc_toggle.vc_toggle_arrow .vc_toggle_title .vc_toggle_icon:after {
  border-color: #7AC77C; }
.vc_toggle.vc_toggle_arrow .vc_toggle_title:hover .vc_toggle_icon:before, .vc_toggle.vc_toggle_arrow .vc_toggle_title:hover .vc_toggle_icon:after {
  border-color: #F3CE72 !important; }

.vc_progress_bar .vc_single_bar {
  background: #eeeeee !important;
  border-radius: 30px !important; }
  .vc_progress_bar .vc_single_bar .vc_label {
    font-size: 13px;
    font-weight: bold;
    padding: 12px 20px !important;
    text-shadow: none !important; }
  .vc_progress_bar .vc_single_bar .vc_bar {
    border-radius: 30px !important; }

.vc_btn3-container .vc_general.vc_btn3 {
  text-transform: uppercase; }
  .vc_btn3-container .vc_general.vc_btn3.vc_btn3-style-modern, .vc_btn3-container .vc_general.vc_btn3.vc_btn3-style-flat {
    background: #7AC77C;
    color: #ffffff; }
    .vc_btn3-container .vc_general.vc_btn3.vc_btn3-style-modern:hover, .vc_btn3-container .vc_general.vc_btn3.vc_btn3-style-flat:hover {
      background: #edb62c;
      color: #ffffff; }
  .vc_btn3-container .vc_general.vc_btn3.vc_btn3-style-classic {
    border-color: #edb62c;
    background: #F3CE72;
    color: #ffffff; }
    .vc_btn3-container .vc_general.vc_btn3.vc_btn3-style-classic:hover {
      background: #edb62c;
      color: #ffffff; }
  .vc_btn3-container .vc_general.vc_btn3.vc_btn3-style-outline {
    border-color: #F3CE72;
    color: #F3CE72;
    background: #ffffff; }
    .vc_btn3-container .vc_general.vc_btn3.vc_btn3-style-outline:hover {
      background: #edb62c;
      color: #ffffff; }
  .vc_btn3-container .vc_general.vc_btn3.vc_btn3-style-3d {
    background: #7AC77C;
    color: #ffffff;
    box-shadow: 0 5px 0 #48ac4b; }
    .vc_btn3-container .vc_general.vc_btn3.vc_btn3-style-3d.vc_btn3-size-lg, .vc_btn3-container .vc_general.vc_btn3.vc_btn3-style-3d.vc_btn3-size-sm, .vc_btn3-container .vc_general.vc_btn3.vc_btn3-style-3d.vc_btn3-size-xs {
      box-shadow: 0 5px 0 #48ac4b; }
    .vc_btn3-container .vc_general.vc_btn3.vc_btn3-style-3d:hover {
      background: #edb62c;
      color: #ffffff; }

.vc_cta3-container .vc_general.vc_cta3 {
  padding: 40px; }
  .vc_cta3-container .vc_general.vc_cta3.vc_cta3-style-flat .vc_cta3_content-container .vc_cta3-content p, .vc_cta3-container .vc_general.vc_cta3.vc_cta3-style-3d .vc_cta3_content-container .vc_cta3-content p {
    color: #ffffff; }
  .vc_cta3-container .vc_general.vc_cta3.vc_cta3-style-flat.vc_cta3-color-sandy-brown, .vc_cta3-container .vc_general.vc_cta3.vc_cta3-style-3d.vc_cta3-color-sandy-brown {
    background: #7AC77C; }
  .vc_cta3-container .vc_general.vc_cta3.vc_cta3-style-outline.vc_cta3-color-sandy-brown {
    border-color: #7AC77C; }
    .vc_cta3-container .vc_general.vc_cta3.vc_cta3-style-outline.vc_cta3-color-sandy-brown .vc_cta3_content-container .vc_cta3-content .vc_cta3-content-header {
      color: #7AC77C; }

.tp-icon-boxes .tp-about-features {
  text-align: center; }
  .tp-icon-boxes .tp-about-features .tp-feature-icon {
    -webkit-transition: all 320ms ease;
    -moz-transition: all 320ms ease;
    -ms-transition: all 320ms ease;
    -o-transition: all 320ms ease;
    transition: all 320ms ease;
    background: #7AC77C;
    color: #ffffff;
    font-size: 20px;
    display: inline-block;
    height: 70px;
    line-height: 70px;
    margin: 10px auto;
    text-align: center;
    width: 70px;
    border-radius: 50%; }
    .tp-icon-boxes .tp-about-features .tp-feature-icon img {
      max-width: 100px;
      width: 100%;
      height: auto;
      margin: 0 auto; }
  .tp-icon-boxes .tp-about-features h4 {
    color: #1F1F1F;
    text-transform: capitalize;
    margin: 10px 0; }
  .tp-icon-boxes .tp-about-features p {
    overflow: auto; }
  .tp-icon-boxes .tp-about-features:hover .tp-feature-icon {
    background: #F3CE72;
    color: #ffffff; }
.tp-icon-boxes.tp-left-icons .tp-about-features {
  text-align: left; }
.tp-icon-boxes.tp-left-floated-icons .tp-about-features {
  padding-bottom: 20px;
  text-align: left; }
  .tp-icon-boxes.tp-left-floated-icons .tp-about-features .tp-feature-icon {
    margin: 10px 20px 20px 0px;
    float: left; }
@media (min-width: 768px) and (max-width: 991px) {
  .tp-icon-boxes.tp-left-floated-icons .tp-about-features .tp-feature-icon {
    float: none;
    display: block; } }
.tp-icon-boxes.tp-right-icons .tp-about-features {
  text-align: right; }
.tp-icon-boxes.tp-right-floated-icons .tp-about-features {
  padding-bottom: 20px;
  text-align: right; }
  .tp-icon-boxes.tp-right-floated-icons .tp-about-features .tp-feature-icon {
    float: right;
    margin: 10px 0px 20px 20px; }
@media (min-width: 768px) and (max-width: 991px) {
  .tp-icon-boxes.tp-right-floated-icons .tp-about-features .tp-feature-icon {
    float: none;
    display: block;
    margin-left: auto; } }

.tillage-testimonial-carousel .sp-testimonial-section .owl-wrapper-outer .owl-wrapper .owl-item .testimonial-free {
  color: #333333;
  font-weight: normal; }
  .tillage-testimonial-carousel .sp-testimonial-section .owl-wrapper-outer .owl-wrapper .owl-item .testimonial-free .tf-client-image {
    height: 80px;
    margin: 0 auto 30px;
    width: 80px; }
  .tillage-testimonial-carousel .sp-testimonial-section .owl-wrapper-outer .owl-wrapper .owl-item .testimonial-free .tf-client-testimonial {
    font-size: 18px;
    font-style: italic;
    line-height: 32px; }
    .tillage-testimonial-carousel .sp-testimonial-section .owl-wrapper-outer .owl-wrapper .owl-item .testimonial-free .tf-client-testimonial:before {
      content: '“';
      display: block;
      font-size: 68px;
      position: relative;
      margin-right: 10px;
      color: #333333; }
  .tillage-testimonial-carousel .sp-testimonial-section .owl-wrapper-outer .owl-wrapper .owl-item .testimonial-free .tf-client-name {
    color: #333333;
    font-size: 20px;
    text-transform: uppercase; }
  .tillage-testimonial-carousel .sp-testimonial-section .owl-wrapper-outer .owl-wrapper .owl-item .testimonial-free .tf-client-designation {
    color: #333333; }
.tillage-testimonial-carousel .sp-testimonial-section .owl-controls .owl-pagination .owl-page {
  background-color: #F3CE72; }
  .tillage-testimonial-carousel .sp-testimonial-section .owl-controls .owl-pagination .owl-page span {
    height: auto;
    width: auto; }
  .tillage-testimonial-carousel .sp-testimonial-section .owl-controls .owl-pagination .owl-page.active {
    background-color: #7AC77C; }
.tillage-testimonial-carousel .sp-testimonial-section .owl-controls .owl-buttons .owl-prev, .tillage-testimonial-carousel .sp-testimonial-section .owl-controls .owl-buttons .owl-next {
  color: #333333;
  background: transparent;
  border-radius: 0;
  display: inline-block;
  font-size: 26px;
  margin: 5px;
  padding: 3px 10px; }

/* Contact Form 7 Styles
---------------------------------*/
.wpcf7 .wpcf7-form label {
  display: block;
  color: #555555;
  font-size: 16px;
  font-weight: 400;
  line-height: 2; }
.wpcf7 .wpcf7-form input[type="text"], .wpcf7 .wpcf7-form input[type="email"], .wpcf7 .wpcf7-form input[type="password"], .wpcf7 .wpcf7-form input[type="tel"] {
  width: 100%;
  border: 1px solid #eeeeee;
  border-radius: 4px;
  text-indent: 20px;
  margin: 10px 0;
  height: 48px;
  font-size: 14px; }
.wpcf7 .wpcf7-form textarea {
  width: 100%;
  border: 1px solid #eeeeee;
  border-radius: 4px;
  text-indent: 20px;
  margin: 10px 0;
  font-size: 14px;
  padding: 15px 0;
  height: 200px; }
.wpcf7 .wpcf7-form .wpcf7-textarea {
  width: 100%; }
.wpcf7 .wpcf7-form .wpcf7-text {
  width: 100%; }
.wpcf7 .wpcf7-form .wpcf7-submit {
  -webkit-transition: all 320ms ease;
  -moz-transition: all 320ms ease;
  -ms-transition: all 320ms ease;
  -o-transition: all 320ms ease;
  transition: all 320ms ease;
  display: inline-block;
  padding: 10px 20px 8px;
  border-radius: 4px;
  background: #F3CE72;
  color: #ffffff;
  font-size: 14px;
  margin: 20px 0 0;
  text-transform: uppercase;
  font-weight: bold;
  border: none; }
  .wpcf7 .wpcf7-form .wpcf7-submit:hover, .wpcf7 .wpcf7-form .wpcf7-submit:focus {
    background: #7AC77C;
    color: #ffffff; }
.wpcf7 .wpcf7-form div.wpcf7-validation-errors {
  padding: 15px; }

.contact-form-dark .wpcf7 {
  border: none;
  background: none; }
.contact-form-dark .wpcf7-form {
  background: #1F1F1F;
  padding: 40px;
  max-width: 700px;
  margin: 20px auto; }
  .contact-form-dark .wpcf7-form input[type="text"], .contact-form-dark .wpcf7-form input[type="email"], .contact-form-dark .wpcf7-form input[type="password"] {
    background: #333333;
    color: #ffffff;
    border: 1px solid #333333; }
  .contact-form-dark .wpcf7-form textarea {
    background: #333333;
    color: #ffffff;
    border: 1px solid #333333; }
  .contact-form-dark .wpcf7-form .wpcf7-submit {
    background: #F3CE72;
    color: #ffffff; }
    .contact-form-dark .wpcf7-form .wpcf7-submit:hover, .contact-form-dark .wpcf7-form .wpcf7-submit:focus {
      background: #edb62c;
      color: #ffffff; }
  .contact-form-dark .wpcf7-form div.wpcf7-validation-errors {
    color: #ffffff; }

.contact-form-colorful .wpcf7 {
  border: none;
  background: none; }
.contact-form-colorful .wpcf7-form {
  background: #f3ce72;
  background: rgba(243, 206, 114, 0.5);
  padding: 40px;
  max-width: 700px;
  margin: 20px auto; }
  .contact-form-colorful .wpcf7-form input[type='text'], .contact-form-colorful .wpcf7-form input[type='email'], .contact-form-colorful .wpcf7-form input[type='password'] {
    background: transparent;
    color: #ffffff;
    border: 1px solid #eeeeee; }
  .contact-form-colorful .wpcf7-form textarea {
    background: transparent;
    color: #ffffff;
    border: 1px solid #eeeeee; }
  .contact-form-colorful .wpcf7-form .wpcf7-submit {
    background: #48ac4b;
    color: #ffffff; }
    .contact-form-colorful .wpcf7-form .wpcf7-submit:hover, .contact-form-colorful .wpcf7-form .wpcf7-submit:focus {
      background: #7AC77C;
      color: #ffffff; }
  .contact-form-colorful .wpcf7-form div.wpcf7-validation-errors {
    border-color: #ff0000;
    color: #ff0000; }

.contact-form-light .wpcf7 {
  background: #ffffff; }
.contact-form-light .wpcf7-form .wpcf7-submit {
  background: #edb62c;
  color: #ffffff; }
  .contact-form-light .wpcf7-form .wpcf7-submit:hover, .contact-form-light .wpcf7-form .wpcf7-submit:focus {
    background: #F3CE72;
    color: #ffffff; }
.contact-form-light .wpcf7-form div.wpcf7-validation-errors {
  border-color: #ffffff; }

.contact-form-color-inverse .wpcf7 {
  border: none;
  background: #7ac77c;
  background: rgba(122, 199, 124, 0.5);
  padding: 40px; }
.contact-form-color-inverse .wpcf7-form {
  background: #ffffff;
  padding: 40px;
  max-width: 700px;
  margin: 20px auto; }
  .contact-form-color-inverse .wpcf7-form input[type="text"], .contact-form-color-inverse .wpcf7-form input[type="email"], .contact-form-color-inverse .wpcf7-form input[type="password"] {
    background: #ffffff;
    border: 1px solid #F1F1F1; }
  .contact-form-color-inverse .wpcf7-form textarea {
    background: #ffffff;
    border: 1px solid #F1F1F1; }
  .contact-form-color-inverse .wpcf7-form .wpcf7-submit {
    background: #48ac4b;
    color: #ffffff; }
    .contact-form-color-inverse .wpcf7-form .wpcf7-submit:hover, .contact-form-color-inverse .wpcf7-form .wpcf7-submit:focus {
      background: #7AC77C;
      color: #ffffff; }
  .contact-form-color-inverse .wpcf7-form div.wpcf7-validation-errors {
    border-color: #F1F1F1; }

.parallax-number-counter .statistics {
  background: transparent;
  color: #555555; }
  .parallax-number-counter .statistics > h3 {
    color: #555555;
    display: none; }
  .parallax-number-counter .statistics .statistics-inner .stat {
    margin: 35px 10px; }
    .parallax-number-counter .statistics .statistics-inner .stat span {
      color: #555555; }
    .parallax-number-counter .statistics .statistics-inner .stat .fa {
      color: #7AC77C; }
    .parallax-number-counter .statistics .statistics-inner .stat .number {
      color: #1F1F1F;
      margin: 20px 0;
      font-weight: 600; }
    .parallax-number-counter .statistics .statistics-inner .stat .count-title {
      color: #555555;
      font-size: 18px; }
.parallax-number-counter.counter-type-2 .statistics .statistics-inner .stat .number {
  color: #7AC77C; }
.parallax-number-counter.counter-type-2 .statistics .statistics-inner .stat .count-title {
  color: #333333;
  font-size: 20px; }
.parallax-number-counter.counter-type-3 .statistics .statistics-inner .stat span.fa {
  position: relative;
  padding: 13px;
  color: #ffffff;
  background: #7AC77C;
  border-radius: 4px; }
.parallax-number-counter.counter-type-4 .statistics .statistics-inner .stat {
  position: relative; }
  .parallax-number-counter.counter-type-4 .statistics .statistics-inner .stat span.fa {
    color: #ffffff;
    background: #7AC77C;
    height: 60px;
    width: 60px;
    line-height: 60px;
    z-index: 1;
    border-radius: 50%;
    display: block;
    position: absolute;
    left: 0;
    top: 0; }
  .parallax-number-counter.counter-type-4 .statistics .statistics-inner .stat .number {
    border-radius: 50%;
    display: block;
    height: 120px;
    line-height: 120px;
    margin-left: 30px;
    width: 120px;
    border: 2px solid #eeeeee; }
  .parallax-number-counter.counter-type-4 .statistics .statistics-inner .stat .count-title {
    display: block; }
.parallax-number-counter.counter-type-5 .statistics .statistics-inner .stat {
  position: relative; }
  .parallax-number-counter.counter-type-5 .statistics .statistics-inner .stat span.fa {
    color: #ffffff;
    background: #7AC77C;
    height: 60px;
    width: 60px;
    line-height: 60px;
    z-index: 1;
    border-radius: 50%;
    display: block;
    margin: 20px auto;
    border-bottom: 2px solid #F1F1F1; }
  .parallax-number-counter.counter-type-5 .statistics .statistics-inner .stat .number {
    display: block; }
    .parallax-number-counter.counter-type-5 .statistics .statistics-inner .stat .number:before {
      content: "";
      width: 50px;
      height: 1px;
      background: #cccccc;
      position: relative;
      top: 0; }

.tp-pricing-table.pricing-style-1 .plan-table {
  -webkit-transition: all 320ms ease;
  -moz-transition: all 320ms ease;
  -ms-transition: all 320ms ease;
  -o-transition: all 320ms ease;
  transition: all 320ms ease;
  text-align: center;
  border: 1px solid #cccccc;
  border-radius: 8px; }
  .tp-pricing-table.pricing-style-1 .plan-table .table-header {
    -webkit-transition: all 320ms ease;
    -moz-transition: all 320ms ease;
    -ms-transition: all 320ms ease;
    -o-transition: all 320ms ease;
    transition: all 320ms ease;
    padding: 40px;
    border-radius: 8px;
    background: #7AC77C;
    color: #ffffff; }
    .tp-pricing-table.pricing-style-1 .plan-table .table-header h4 {
      font-size: 28px;
      text-transform: uppercase;
      color: #ffffff; }
    .tp-pricing-table.pricing-style-1 .plan-table .table-header p {
      padding-bottom: 20px;
      border-bottom: 1px solid #eeeeee;
      color: #ffffff; }
    .tp-pricing-table.pricing-style-1 .plan-table .table-header .pricing-cost {
      padding-top: 10px; }
      .tp-pricing-table.pricing-style-1 .plan-table .table-header .pricing-cost h5 {
        font-size: 42px;
        font-weight: bold;
        color: #ffffff; }
  .tp-pricing-table.pricing-style-1 .plan-table .plan-list {
    list-style: none;
    padding: 40px;
    margin: 0; }
    .tp-pricing-table.pricing-style-1 .plan-table .plan-list li {
      padding: 10px 0;
      color: #333333;
      border-bottom: 1px solid #F1F1F1; }
  .tp-pricing-table.pricing-style-1 .plan-table .buy-button {
    padding: 0 0 40px; }
    .tp-pricing-table.pricing-style-1 .plan-table .buy-button a.btn-primary {
      font-size: 15px;
      padding: 15px 30px;
      text-transform: uppercase;
      background: #7AC77C;
      color: #ffffff;
      border: none;
      font-weight: 600; }
  .tp-pricing-table.pricing-style-1 .plan-table:hover .table-header {
    background: #F3CE72;
    color: #ffffff; }
  .tp-pricing-table.pricing-style-1 .plan-table:hover .buy-button a.btn-primary {
    background: #F3CE72;
    color: #ffffff; }
  .tp-pricing-table.pricing-style-1 .plan-table.featured-plan .table-header {
    background: #F3CE72;
    color: #ffffff; }
  .tp-pricing-table.pricing-style-1 .plan-table.featured-plan .buy-button a.btn-primary {
    background: #F3CE72;
    color: #ffffff; }
.tp-pricing-table.pricing-style-2 .plan-table {
  -webkit-transition: all 320ms ease;
  -moz-transition: all 320ms ease;
  -ms-transition: all 320ms ease;
  -o-transition: all 320ms ease;
  transition: all 320ms ease;
  text-align: center;
  border: 1px solid #cccccc;
  border-radius: 8px; }
  .tp-pricing-table.pricing-style-2 .plan-table .icon-wrapper {
    height: 130px;
    position: relative;
    width: 100%; }
    .tp-pricing-table.pricing-style-2 .plan-table .icon-wrapper i {
      color: #333333;
      font-size: 36px;
      line-height: 130px;
      position: relative;
      z-index: 1; }
    .tp-pricing-table.pricing-style-2 .plan-table .icon-wrapper:before {
      background: #ffffff;
      border-radius: 10px;
      content: "";
      height: 80px;
      left: 0;
      margin: auto;
      position: absolute;
      right: 0;
      top: 25px;
      transform: rotate(45deg);
      transition: all 0.3s linear 0s;
      width: 80px; }
  .tp-pricing-table.pricing-style-2 .plan-table .table-header {
    padding: 40px; }
    .tp-pricing-table.pricing-style-2 .plan-table .table-header h4 {
      font-size: 28px;
      text-transform: uppercase; }
    .tp-pricing-table.pricing-style-2 .plan-table .table-header p {
      padding-bottom: 20px; }
  .tp-pricing-table.pricing-style-2 .plan-table .pricing-cost {
    -webkit-transition: all 320ms ease;
    -moz-transition: all 320ms ease;
    -ms-transition: all 320ms ease;
    -o-transition: all 320ms ease;
    transition: all 320ms ease;
    padding: 40px; }
    .tp-pricing-table.pricing-style-2 .plan-table .pricing-cost h4 {
      font-size: 18px;
      text-transform: uppercase;
      padding-bottom: 20px; }
    .tp-pricing-table.pricing-style-2 .plan-table .pricing-cost h5 {
      font-size: 42px;
      font-weight: bold;
      color: #333333; }
  .tp-pricing-table.pricing-style-2 .plan-table .buy-button {
    padding: 40px; }
    .tp-pricing-table.pricing-style-2 .plan-table .buy-button a.btn-primary {
      font-size: 15px;
      padding: 15px 30px;
      text-transform: uppercase;
      background: #ffffff;
      color: #333333;
      border: none;
      font-weight: 600; }
  .tp-pricing-table.pricing-style-2 .plan-table:hover .icon-wrapper i {
    color: #ffffff; }
  .tp-pricing-table.pricing-style-2 .plan-table:hover .icon-wrapper:before {
    background: #7AC77C; }
  .tp-pricing-table.pricing-style-2 .plan-table:hover .pricing-cost {
    padding: 40px;
    background: #7AC77C;
    color: #ffffff; }
    .tp-pricing-table.pricing-style-2 .plan-table:hover .pricing-cost h4, .tp-pricing-table.pricing-style-2 .plan-table:hover .pricing-cost h5, .tp-pricing-table.pricing-style-2 .plan-table:hover .pricing-cost p {
      color: #ffffff; }
  .tp-pricing-table.pricing-style-2 .plan-table:hover .buy-button a.btn-primary {
    background: #7AC77C;
    color: #ffffff; }
  .tp-pricing-table.pricing-style-2 .plan-table.featured-plan .icon-wrapper i {
    color: #ffffff; }
  .tp-pricing-table.pricing-style-2 .plan-table.featured-plan .icon-wrapper:before {
    background: #7AC77C; }
  .tp-pricing-table.pricing-style-2 .plan-table.featured-plan .pricing-cost {
    padding: 40px;
    background: #7AC77C;
    color: #ffffff; }
    .tp-pricing-table.pricing-style-2 .plan-table.featured-plan .pricing-cost h4, .tp-pricing-table.pricing-style-2 .plan-table.featured-plan .pricing-cost h5, .tp-pricing-table.pricing-style-2 .plan-table.featured-plan .pricing-cost p {
      color: #ffffff; }
  .tp-pricing-table.pricing-style-2 .plan-table.featured-plan .buy-button a.btn-primary {
    background: #7AC77C;
    color: #ffffff; }
.tp-pricing-table.pricing-style-3 .plan-table {
  -webkit-transition: all 320ms ease;
  -moz-transition: all 320ms ease;
  -ms-transition: all 320ms ease;
  -o-transition: all 320ms ease;
  transition: all 320ms ease;
  text-align: center;
  border: 1px solid #cccccc;
  margin-top: 40px;
  position: relative; }
  .tp-pricing-table.pricing-style-3 .plan-table .table-header {
    padding: 40px;
    border-bottom: 1px solid #cccccc;
    background: #ffffff;
    color: #333333; }
    .tp-pricing-table.pricing-style-3 .plan-table .table-header h4 {
      font-size: 28px;
      text-transform: uppercase;
      color: #333333;
      margin-top: 40px; }
    .tp-pricing-table.pricing-style-3 .plan-table .table-header p {
      color: #555555; }
    .tp-pricing-table.pricing-style-3 .plan-table .table-header .pricing-cost h5 {
      -webkit-transition: all 320ms ease;
      -moz-transition: all 320ms ease;
      -ms-transition: all 320ms ease;
      -o-transition: all 320ms ease;
      transition: all 320ms ease;
      font-size: 42px;
      font-weight: bold;
      background: #7AC77C;
      border-radius: 50%;
      color: #ffffff;
      width: 120px;
      line-height: 120px;
      height: 120px;
      left: 0;
      margin: 0 auto;
      padding-top: 10px;
      position: absolute;
      right: 0;
      top: -60px; }
  .tp-pricing-table.pricing-style-3 .plan-table .plan-list {
    list-style: none;
    padding: 40px;
    margin: 0; }
    .tp-pricing-table.pricing-style-3 .plan-table .plan-list li {
      padding: 10px 0;
      color: #333333;
      border-bottom: 1px solid #F1F1F1; }
  .tp-pricing-table.pricing-style-3 .plan-table .buy-button {
    padding: 0 0 40px; }
    .tp-pricing-table.pricing-style-3 .plan-table .buy-button a.btn-primary {
      font-size: 15px;
      padding: 15px 30px;
      text-transform: uppercase;
      background: transparent;
      border: 2px solid #7AC77C;
      color: #7AC77C;
      font-weight: 600; }
  .tp-pricing-table.pricing-style-3 .plan-table:hover .table-header .pricing-cost h5 {
    background: #F3CE72;
    color: #ffffff; }
  .tp-pricing-table.pricing-style-3 .plan-table:hover .buy-button a.btn-primary {
    border: 2px solid #F3CE72;
    background: #F3CE72;
    color: #ffffff; }
  .tp-pricing-table.pricing-style-3 .plan-table.featured-plan .table-header .pricing-cost h5 {
    background: #F3CE72;
    color: #ffffff; }
  .tp-pricing-table.pricing-style-3 .plan-table.featured-plan .buy-button a.btn-primary {
    border: 2px solid #F3CE72;
    background: #F3CE72;
    color: #ffffff; }

/*
  Color google maps
  ---------------------
*/
.google-contact-map.colored iframe {
  -webkit-filter: hue-rotate(255deg);
  -moz-filter: hue-rotate(255deg);
  -ms-filter: hue-rotate(255deg);
  -o-filter: hue-rotate(255deg);
  filter: hue-rotate(255deg); }
.google-contact-map.grayscale iframe {
  -webkit-filter: grayscale(70%);
  -moz-filter: grayscale(70%);
  -ms-filter: grayscale(70%);
  -o-filter: grayscale(70%);
  filter: grayscale(70%); }
.google-contact-map.inverted iframe {
  -webkit-filter: invert(80%);
  -moz-filter: invert(80%);
  -ms-filter: invert(80%);
  -o-filter: invert(80%);
  filter: invert(80%); }
.google-contact-map.combined iframe {
  -webkit-filter: brightness(1) drop-shadow(15px 15px 20px black) grayscale(1) hue-rotate(90deg) invert(1) opacity(1) sepia(1);
  -moz-filter: brightness(1) drop-shadow(15px 15px 20px black) grayscale(1) hue-rotate(90deg) invert(1) opacity(1) sepia(1);
  -ms-filter: brightness(1) drop-shadow(15px 15px 20px black) grayscale(1) hue-rotate(90deg) invert(1) opacity(1) sepia(1);
  -o-filter: brightness(1) drop-shadow(15px 15px 20px black) grayscale(1) hue-rotate(90deg) invert(1) opacity(1) sepia(1);
  filter: brightness(1) drop-shadow(15px 15px 20px black) grayscale(1) hue-rotate(90deg) invert(1) opacity(1) sepia(1); }

/*
  Media
  ---------------------
*/
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
  border: none;
  margin-bottom: 0;
  margin-top: 0;
  padding: 0; }

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
  max-width: 100%; }

/*--------------------------------------------------------------
## Captions
--------------------------------------------------------------*/
.wp-caption {
  max-width: 100%; }
  .wp-caption img[class*="wp-image-"] {
    display: block;
    margin-left: auto;
    margin-right: auto; }
  .wp-caption .wp-caption-text {
    margin: 0.8075em 0; }

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

/*--------------------------------------------------------------
## Galleries
--------------------------------------------------------------*/
.gallery {
  margin-bottom: 1.5em; }

.gallery-item {
  display: inline-block;
  text-align: center;
  vertical-align: top;
  width: 100%; }
  .gallery-columns-2 .gallery-item {
    max-width: 50%; }
  .gallery-columns-3 .gallery-item {
    max-width: 33.33%; }
  .gallery-columns-4 .gallery-item {
    max-width: 25%; }
  .gallery-columns-5 .gallery-item {
    max-width: 20%; }
  .gallery-columns-6 .gallery-item {
    max-width: 16.66%; }
  .gallery-columns-7 .gallery-item {
    max-width: 14.28%; }
  .gallery-columns-8 .gallery-item {
    max-width: 12.5%; }
  .gallery-columns-9 .gallery-item {
    max-width: 11.11%; }

.gallery-caption {
  display: block; }

h1.tillage-username,
h2.tillage-description {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  color: #222; }

h1.tillage-username {
  font-size: 24px;
  margin: 0 0 10px; }

p.tillage-description {
  font-size: 14px;
  margin: 0 0 20px;
  color: inherit; }

.tillage-icon-sidebar {
  margin: 0 5px; }
  .tillage-icon-sidebar:before {
    width: 18px;
    height: 18px;
    font-size: 18px; }

.tillage-icon-sidebar--gplus {
  margin-left: 8px; }

.tillage-icon-button:before {
  margin-top: 3px;
  margin-left: -3px; }

.image-container {
  display: block;
  width: 100%;
  overflow: hidden;
  margin: 20px auto; }

.profile-picture {
  display: inline-block; }

.profile-picture img {
  height: auto;
  max-width: 220px;
  width: 100%; }

.icon-wrapper-title {
  font-size: 18px;
  margin-bottom: 20px; }

/*
  Home page styles
  ---------------------
*/
.topbar-container {
  background: #1F1F1F;
  color: #cccccc;
  padding: 15px 0;
  line-height: 2;
  font-size: 14px; }
  .topbar-container .tillage-widget.tillage-topbar-widget a {
    color: #cccccc; }
  .topbar-container .topbar-contact-info i, .topbar-container .topbar-contact-info em {
    margin-right: 5px; }
  .topbar-container .topbar-contact-info a {
    color: #cccccc;
    margin-right: 10px; }
    .topbar-container .topbar-contact-info a:hover {
      color: #ffffff; }
  .topbar-container .tillage-login {
    display: inline-block;
    padding: 0 15px; }
    .topbar-container .tillage-login .toggle-login .login_button {
      text-align: center;
      color: #cccccc; }
      .topbar-container .tillage-login .toggle-login .login_button:hover {
        color: #ffffff; }
  .topbar-container .cart-content {
    display: inline-block;
    padding: 0 15px;
    font-weight: normal;
    text-align: center;
    color: #cccccc; }
    .topbar-container .cart-content .circle {
      background: #ffffff;
      color: #333333;
      border-radius: 50%;
      bottom: 8px;
      display: inline-block;
      font-size: 11px;
      font-weight: bold;
      height: 20px;
      left: 0;
      line-height: 20px;
      position: relative;
      text-align: center;
      width: 20px; }
    .topbar-container .cart-content:hover {
      color: #ffffff; }

.home-container .home-post-article {
  margin-top: 0;
  margin-bottom: 0;
  padding-bottom: 0; }

.home-offer-container-block {
  padding-top: 40px;
  padding-bottom: 40px; }
  .home-offer-container-block.vc_parallax .vc_parallax-inner {
    background-position: left center;
    background-size: cover;
    background-repeat: no-repeat; }
    .home-offer-container-block.vc_parallax .vc_parallax-inner:before {
      background: #ffffff;
      content: "";
      display: block;
      height: 100%;
      opacity: 0.5;
      width: 100%; }
  .home-offer-container-block .home-offer-block .home-offer-content {
    background: rgba(255, 255, 255, 0.7);
    padding: 40px;
    margin: 40px 0;
    position: relative; }
    .home-offer-container-block .home-offer-block .home-offer-content h4 {
      text-transform: uppercase;
      font-weight: 400;
      color: #1F1F1F;
      font-size: 32px;
      letter-spacing: 2px; }
      .home-offer-container-block .home-offer-block .home-offer-content h4 .text-primary {
        color: #48ac4b;
        font-weight: bold; }
    .home-offer-container-block .home-offer-block .home-offer-content h3 {
      text-transform: uppercase;
      font-weight: 600;
      color: #edb62c;
      font-size: 52px;
      letter-spacing: 2px; }
      .home-offer-container-block .home-offer-block .home-offer-content h3 .text-primary {
        color: #48ac4b; }
      .home-offer-container-block .home-offer-block .home-offer-content h3 sup {
        font-size: 32px; }
    .home-offer-container-block .home-offer-block .home-offer-content h5 {
      text-transform: uppercase;
      font-weight: 400;
      color: #1F1F1F;
      font-size: 23px;
      letter-spacing: 2px; }
    .home-offer-container-block .home-offer-block .home-offer-content:before, .home-offer-container-block .home-offer-block .home-offer-content:after, .home-offer-container-block .home-offer-block .home-offer-content > :first-child:before, .home-offer-container-block .home-offer-block .home-offer-content > :first-child:after {
      position: absolute;
      width: 80px;
      height: 80px;
      border-color: #edb62c;
      border-style: solid;
      content: ' '; }
    .home-offer-container-block .home-offer-block .home-offer-content:before {
      top: 0;
      left: 0;
      border-width: 1px 0 0 1px; }
    .home-offer-container-block .home-offer-block .home-offer-content:after {
      top: 0;
      right: 0;
      border-width: 1px 1px 0 0; }
    .home-offer-container-block .home-offer-block .home-offer-content > :first-child:before {
      bottom: 0;
      right: 0;
      border-width: 0 1px 1px 0; }
    .home-offer-container-block .home-offer-block .home-offer-content > :first-child:after {
      bottom: 0;
      left: 0;
      border-width: 0 0 1px 1px; }
  .home-offer-container-block .home-offer-block .btn-tillage {
    background: #edb62c;
    border-color: #edb62c;
    color: #ffffff;
    display: inline-block;
    margin: 20px 0;
    padding: 20px 40px 18px;
    border-radius: 0;
    font-size: 18px; }
    .home-offer-container-block .home-offer-block .btn-tillage:hover {
      background: #48ac4b;
      border-color: #48ac4b; }

/*
  Home page v1 styles
  ---------------------
*/
.home-intro-block {
  padding-top: 110px;
  padding-bottom: 110px; }
  .home-intro-block.vc_parallax .vc_parallax-inner {
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat; }
  .home-intro-block .banner-content-block {
    background: #ffffff;
    max-width: 700px;
    margin: 0 auto;
    padding: 80px;
    text-align: center;
    box-shadow: 0 0 2px 2px #cccccc; }
    .home-intro-block .banner-content-block .btn-primary {
      background: #F3CE72;
      color: #ffffff;
      border-color: #F3CE72;
      display: inline-block;
      font-size: 16px;
      font-weight: 600;
      padding: 14px 20px 12px;
      text-transform: uppercase;
      margin-top: 20px; }
      .home-intro-block .banner-content-block .btn-primary:hover, .home-intro-block .banner-content-block .btn-primary:focus {
        background: #7AC77C;
        color: #ffffff;
        border-color: #7AC77C; }
  @media (max-width: 767px) {
    .home-intro-block .banner-content-block {
      padding: 20px 10px; } }

.home-products-block {
  padding-top: 40px;
  padding-bottom: 40px; }
  .home-products-block .vc_tta-container .vc_tta-tabs.vc_tta-style-classic .vc_tta-tabs-container .vc_tta-tabs-list .vc_tta-tab a {
    background: transparent;
    border: none;
    color: #333333;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase; }
    .home-products-block .vc_tta-container .vc_tta-tabs.vc_tta-style-classic .vc_tta-tabs-container .vc_tta-tabs-list .vc_tta-tab a:hover, .home-products-block .vc_tta-container .vc_tta-tabs.vc_tta-style-classic .vc_tta-tabs-container .vc_tta-tabs-list .vc_tta-tab a:focus {
      color: #7AC77C;
      background: transparent; }
  .home-products-block .vc_tta-container .vc_tta-tabs.vc_tta-style-classic .vc_tta-tabs-container .vc_tta-tabs-list .vc_tta-tab.vc_active a {
    background: transparent;
    color: #7AC77C;
    text-transform: uppercase; }
  .home-products-block .vc_tta-container .vc_tta-tabs.vc_tta-style-classic .vc_tta-tabs-container .vc_tta-tabs-list .vc_tta-tab:last-child a {
    border-right: none; }
  .home-products-block .vc_tta-container .vc_tta-tabs.vc_tta-style-classic .vc_tta-panels-container .vc_tta-panels {
    border: none; }

.home-parallax-block {
  padding-top: 110px;
  padding-bottom: 110px; }
  .home-parallax-block.vc_parallax .vc_parallax-inner {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat; }
    .home-parallax-block.vc_parallax .vc_parallax-inner:before {
      background: #000000;
      content: "";
      display: block;
      height: 100%;
      opacity: 0.6;
      width: 100%; }
  .home-parallax-block .wpb_content_element {
    margin-bottom: 0; }
  .home-parallax-block .title-block {
    padding-bottom: 30px;
    margin-bottom: 30px; }
    .home-parallax-block .title-block .header-title, .home-parallax-block .title-block .header-icon-title {
      color: #ffffff; }
    .home-parallax-block .title-block p {
      color: #cccccc; }
  .home-parallax-block .content-block h1 {
    font-weight: 700;
    font-size: 52px;
    color: #ffffff;
    padding-top: 20px;
    margin-bottom: 20px; }
  .home-parallax-block .content-block .button-block {
    padding-top: 20px;
    padding-bottom: 20px; }
  .home-parallax-block .content-block .sp-testimonial-section .owl-wrapper-outer .owl-wrapper .owl-item .testimonial-free {
    background: white;
    background: rgba(255, 255, 255, 0.1);
    position: relative;
    max-width: 500px;
    margin: 0 auto;
    display: block;
    color: #ffffff;
    font-weight: normal;
    min-height: auto;
    text-align: left;
    padding: 40px; }
    .home-parallax-block .content-block .sp-testimonial-section .owl-wrapper-outer .owl-wrapper .owl-item .testimonial-free .tf-client-image {
      position: absolute;
      top: 40px;
      left: -50px;
      height: 120px;
      width: 120px; }
      .home-parallax-block .content-block .sp-testimonial-section .owl-wrapper-outer .owl-wrapper .owl-item .testimonial-free .tf-client-image img {
        max-width: 100%;
        height: auto; }
    .home-parallax-block .content-block .sp-testimonial-section .owl-wrapper-outer .owl-wrapper .owl-item .testimonial-free .tf-client-testimonial {
      color: #cccccc;
      float: none;
      font-size: 16px;
      font-style: italic;
      line-height: 30px;
      padding-left: 30px; }
    .home-parallax-block .content-block .sp-testimonial-section .owl-wrapper-outer .owl-wrapper .owl-item .testimonial-free .tf-client-name {
      display: inline-block;
      margin-right: 10px;
      padding-left: 30px;
      float: none;
      color: #ffffff;
      font-size: 16px;
      text-transform: uppercase; }
    .home-parallax-block .content-block .sp-testimonial-section .owl-wrapper-outer .owl-wrapper .owl-item .testimonial-free .tf-client-designation {
      font-family: 'Playfair Display', serif;
      font-size: 20px;
      font-weight: 800;
      text-transform: capitalize;
      display: inline-block;
      color: #7AC77C;
      float: none; }
    .home-parallax-block .content-block .sp-testimonial-section .owl-wrapper-outer .owl-wrapper .owl-item .testimonial-free:after {
      content: '“';
      display: block;
      font-size: 68px;
      position: absolute;
      margin-right: 20px;
      color: #cccccc;
      right: 0; }
  .home-parallax-block .content-block .sp-testimonial-section .owl-controls .owl-pagination {
    padding-top: 30px; }
    .home-parallax-block .content-block .sp-testimonial-section .owl-controls .owl-pagination .owl-page {
      background-color: #555555; }
      .home-parallax-block .content-block .sp-testimonial-section .owl-controls .owl-pagination .owl-page span {
        height: auto;
        width: auto; }
      .home-parallax-block .content-block .sp-testimonial-section .owl-controls .owl-pagination .owl-page.active {
        background-color: #7AC77C; }
  .home-parallax-block .content-block .sp-testimonial-section .owl-controls .owl-buttons .owl-prev, .home-parallax-block .content-block .sp-testimonial-section .owl-controls .owl-buttons .owl-next {
    color: #555555;
    background: #ffffff;
    border-radius: 0;
    display: inline-block;
    font-size: 20px;
    padding: 8px 15px;
    opacity: 1;
    top: 30%; }
    .home-parallax-block .content-block .sp-testimonial-section .owl-controls .owl-buttons .owl-prev:hover, .home-parallax-block .content-block .sp-testimonial-section .owl-controls .owl-buttons .owl-prev:focus, .home-parallax-block .content-block .sp-testimonial-section .owl-controls .owl-buttons .owl-next:hover, .home-parallax-block .content-block .sp-testimonial-section .owl-controls .owl-buttons .owl-next:focus {
      color: #ffffff;
      background: #7AC77C; }
  @media (max-width: 767px) {
    .home-parallax-block .content-block .sp-testimonial-section .owl-wrapper-outer .owl-wrapper .owl-item .testimonial-free {
      padding: 20px; }
      .home-parallax-block .content-block .sp-testimonial-section .owl-wrapper-outer .owl-wrapper .owl-item .testimonial-free .tf-client-image {
        left: 0;
        position: relative;
        top: 0;
        width: 100%;
        height: auto; }
      .home-parallax-block .content-block .sp-testimonial-section .owl-wrapper-outer .owl-wrapper .owl-item .testimonial-free .tf-client-testimonial, .home-parallax-block .content-block .sp-testimonial-section .owl-wrapper-outer .owl-wrapper .owl-item .testimonial-free .tf-client-name {
        padding-left: 10px; } }

.home-portfolio-block {
  padding: 40px 0; }
  .home-portfolio-block .tlp-portfolio {
    margin-bottom: 0;
    margin-top: 10px; }
    .home-portfolio-block .tlp-portfolio .filter-button-group {
      margin-bottom: 10px;
      text-align: center; }
      .home-portfolio-block .tlp-portfolio .filter-button-group button {
        background: transparent;
        color: #333333;
        text-transform: uppercase;
        font-weight: 500;
        font-size: 14px; }
        .home-portfolio-block .tlp-portfolio .filter-button-group button:hover, .home-portfolio-block .tlp-portfolio .filter-button-group button:focus {
          background: transparent;
          color: #7AC77C; }
        .home-portfolio-block .tlp-portfolio .filter-button-group button.selected {
          color: #7AC77C;
          background: transparent; }

.home-feature-block {
  padding-top: 110px;
  padding-bottom: 110px; }
  .home-feature-block.vc_parallax .vc_parallax-inner {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat; }
    .home-feature-block.vc_parallax .vc_parallax-inner:before {
      background: #000000;
      content: "";
      display: block;
      height: 100%;
      opacity: 0.3;
      width: 100%; }
  .home-feature-block .header-title, .home-feature-block .header-icon-title {
    color: #ffffff; }
  .home-feature-block .header-title {
    font-size: 52px; }
  .home-feature-block .header-icon-title {
    font-size: 26px;
    text-transform: uppercase; }
  .home-feature-block .btn-tillage {
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    padding: 14px 20px 12px;
    text-transform: uppercase;
    margin-top: 20px; }

.home-aboutus-block {
  padding: 40px 0; }
  .home-aboutus-block .title-block {
    padding-bottom: 40px; }
  .home-aboutus-block .tp-about-features {
    text-align: center; }
    .home-aboutus-block .tp-about-features .tp-feature-icon {
      display: inline-block;
      margin: 10px auto; }
      .home-aboutus-block .tp-about-features .tp-feature-icon img {
        max-width: 100px;
        width: 100%;
        height: auto;
        margin: 0 auto; }
      .home-aboutus-block .tp-about-features .tp-feature-icon i, .home-aboutus-block .tp-about-features .tp-feature-icon em {
        font-size: 32px;
        height: 70px;
        width: 70px;
        background: #7AC77C;
        color: #ffffff;
        line-height: 70px;
        border-radius: 50%;
        margin: 0 auto; }
    .home-aboutus-block .tp-about-features h4 {
      color: #1F1F1F; }

.home-featured-product-block {
  padding: 35px 20px;
  margin-bottom: 40px; }
  .home-featured-product-block.vc_parallax .vc_parallax-inner {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat; }
    .home-featured-product-block.vc_parallax .vc_parallax-inner:before {
      background: #7AC77C;
      content: "";
      display: block;
      height: 100%;
      opacity: 0.92;
      width: 100%; }
  .home-featured-product-block .wpb_content_element {
    margin-bottom: 0; }
  .home-featured-product-block .tp-featured-product {
    display: inline-block;
    border: 1px solid #BDFFBF;
    padding: 20px; }
    .home-featured-product-block .tp-featured-product .header-title {
      text-align: center;
      color: #ffffff;
      margin-bottom: 0;
      font-size: 42px; }
    .home-featured-product-block .tp-featured-product .woocommerce .single-product .shop-image-summary-section .images {
      margin-bottom: 0; }
      .home-featured-product-block .tp-featured-product .woocommerce .single-product .shop-image-summary-section .images .yith_magnifier_zoom_magnifier {
        z-index: 0px !important; }
    .home-featured-product-block .tp-featured-product .woocommerce .single-product .shop-image-summary-section .summary {
      color: #ffffff;
      padding-top: 30px; }
      .home-featured-product-block .tp-featured-product .woocommerce .single-product .shop-image-summary-section .summary .product_title {
        color: #ffffff;
        font-size: 24px; }
        .home-featured-product-block .tp-featured-product .woocommerce .single-product .shop-image-summary-section .summary .product_title:after {
          content: '';
          width: 80px;
          height: 1px;
          background: #ffffff;
          display: block;
          margin-top: 5px; }
      .home-featured-product-block .tp-featured-product .woocommerce .single-product .shop-image-summary-section .summary .woocommerce-product-rating .star-rating {
        color: #ffffff; }
      .home-featured-product-block .tp-featured-product .woocommerce .single-product .shop-image-summary-section .summary .onsale {
        display: block;
        position: relative;
        border-radius: 0;
        background: transparent;
        text-align: left; }
      .home-featured-product-block .tp-featured-product .woocommerce .single-product .shop-image-summary-section .summary .shop-price-container {
        display: block; }
        .home-featured-product-block .tp-featured-product .woocommerce .single-product .shop-image-summary-section .summary .shop-price-container .price {
          color: #ffffff;
          position: absolute;
          top: 0;
          left: 0;
          background: #FFC737;
          height: 100px;
          width: 100px;
          line-height: 10px;
          text-align: center;
          border-radius: 50%;
          font-weight: 600;
          display: block; }
          .home-featured-product-block .tp-featured-product .woocommerce .single-product .shop-image-summary-section .summary .shop-price-container .price del {
            opacity: 1; }
          .home-featured-product-block .tp-featured-product .woocommerce .single-product .shop-image-summary-section .summary .shop-price-container .price:before {
            content: "Only";
            display: block;
            line-height: 60px; }
      .home-featured-product-block .tp-featured-product .woocommerce .single-product .shop-image-summary-section .summary .woocommerce-product-details__short-description {
        color: #ffffff; }
        .home-featured-product-block .tp-featured-product .woocommerce .single-product .shop-image-summary-section .summary .woocommerce-product-details__short-description p {
          color: #ffffff; }
      .home-featured-product-block .tp-featured-product .woocommerce .single-product .shop-image-summary-section .summary .cart .quantity {
        display: none; }
      .home-featured-product-block .tp-featured-product .woocommerce .single-product .shop-image-summary-section .summary .cart .single_add_to_cart_button {
        background: #F3CE72;
        color: #ffffff;
        border-color: #F3CE72;
        display: inline-block;
        font-size: 14px;
        font-weight: 600;
        padding: 12px 20px 8px;
        text-transform: uppercase;
        margin-top: 20px;
        border-radius: 4px; }
        .home-featured-product-block .tp-featured-product .woocommerce .single-product .shop-image-summary-section .summary .cart .single_add_to_cart_button:hover {
          background: #48ac4b;
          border-color: #48ac4b; }
      .home-featured-product-block .tp-featured-product .woocommerce .single-product .shop-image-summary-section .summary .tm-woocompare-button-single, .home-featured-product-block .tp-featured-product .woocommerce .single-product .shop-image-summary-section .summary .tm-woowishlist-button-single, .home-featured-product-block .tp-featured-product .woocommerce .single-product .shop-image-summary-section .summary .tm-woowishlist-page-button {
        display: none; }
      .home-featured-product-block .tp-featured-product .woocommerce .single-product .shop-image-summary-section .summary .product_meta .posted_in {
        text-transform: uppercase;
        font-size: 16px;
        font-weight: 600; }
        .home-featured-product-block .tp-featured-product .woocommerce .single-product .shop-image-summary-section .summary .product_meta .posted_in a {
          text-transform: capitalize;
          color: #ffffff;
          font-weight: 500; }
          .home-featured-product-block .tp-featured-product .woocommerce .single-product .shop-image-summary-section .summary .product_meta .posted_in a:hover {
            color: #48ac4b; }
      .home-featured-product-block .tp-featured-product .woocommerce .single-product .shop-image-summary-section .summary .product_meta .tagged_as {
        display: none; }
    .home-featured-product-block .tp-featured-product .woocommerce .single-product .woocommerce_tabs_wrapper {
      display: none; }
    .home-featured-product-block .tp-featured-product .woocommerce .single-product .wpn_buttons, .home-featured-product-block .tp-featured-product .woocommerce .single-product .related.products {
      display: none; }

.home-faq-block {
  padding: 40px 0; }

.home-newsletter-block {
  padding-top: 40px;
  padding-bottom: 40px;
  margin-top: 40px;
  margin-bottom: 40px;
  position: relative !important;
  overflow: visible !important; }
  .home-newsletter-block.vc_parallax .vc_parallax-inner {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat; }
    .home-newsletter-block.vc_parallax .vc_parallax-inner:before {
      background: #ffffff;
      content: "";
      display: block;
      height: 100%;
      opacity: 0.8;
      width: 100%; }
  .home-newsletter-block .header-title .title-highlight {
    color: #7AC77C; }
  .home-newsletter-block .wpb_content_element {
    margin-bottom: 0; }
  .home-newsletter-block .vc_row .newletter-form-block, .home-newsletter-block .vc_row .header-title, .home-newsletter-block .vc_row img, .home-newsletter-block .wpb_single_image .newletter-form-block, .home-newsletter-block .wpb_single_image .header-title, .home-newsletter-block .wpb_single_image img {
    z-index: 3;
    position: relative; }
  .home-newsletter-block .newletter-form-block {
    padding-top: 20px;
    padding-bottom: 20px; }
    .home-newsletter-block .newletter-form-block .tnp-subscription-minimal form {
      display: flex; }
      .home-newsletter-block .newletter-form-block .tnp-subscription-minimal form .tillage-features-block {
        padding: 40px 0; }
        .home-newsletter-block .newletter-form-block .tnp-subscription-minimal form .tillage-features-block h2 {
          font-size: 32px;
          font-weight: 600;
          margin-bottom: 20px; }
        .home-newsletter-block .newletter-form-block .tnp-subscription-minimal form .tillage-features-block p {
          font-weight: 400;
          font-size: 16px;
          line-height: 1.9em; }
      @media (max-width: 480px) {
        .home-newsletter-block .newletter-form-block .tnp-subscription-minimal form {
          display: block; }
          .home-newsletter-block .newletter-form-block .tnp-subscription-minimal form .tnp-email, .home-newsletter-block .newletter-form-block .tnp-subscription-minimal form .tnp-submit {
            display: block;
            width: 100%;
            margin: 10px auto; } }
    .home-newsletter-block .newletter-form-block .tnp-subscription-minimal .tnp-email {
      border: 1px solid #cccccc;
      max-width: 100%;
      width: 100%;
      border-radius: 4px;
      margin: 0 10px; }
    .home-newsletter-block .newletter-form-block .tnp-subscription-minimal .tnp-submit {
      -webkit-transition: all 320ms ease;
      -moz-transition: all 320ms ease;
      -ms-transition: all 320ms ease;
      -o-transition: all 320ms ease;
      transition: all 320ms ease;
      padding: 12px 10px 8px;
      text-transform: uppercase;
      font-size: 16px;
      font-weight: 700;
      background: #7AC77C;
      line-height: 2;
      border-radius: 4px; }
      .home-newsletter-block .newletter-form-block .tnp-subscription-minimal .tnp-submit:hover, .home-newsletter-block .newletter-form-block .tnp-subscription-minimal .tnp-submit:focus {
        background: #F3CE72; }
  .home-newsletter-block .bottom-left-image-block img {
    position: absolute;
    left: 0;
    max-width: none; }
  .home-newsletter-block .bottom-right-image-block img {
    position: absolute;
    max-width: none;
    right: 0; }
  @media (max-width: 767px) {
    .home-newsletter-block .bottom-left-image-block img, .home-newsletter-block .bottom-right-image-block img {
      position: relative;
      bottom: 0; } }
  .home-newsletter-block .wpb_column.vc_column_container {
    position: unset; }

.home-latestpost-block {
  padding-top: 40px;
  padding-bottom: 40px; }
  .home-latestpost-block .wplp_outside {
    margin: 0 auto; }
    .home-latestpost-block .wplp_outside .wplp_widget_default .flex-viewport .wplp_listposts li .insideframe ul li {
      padding: 20px; }
      .home-latestpost-block .wplp_outside .wplp_widget_default .flex-viewport .wplp_listposts li .insideframe ul li .insideframe {
        border: 1px solid #eeeeee; }
      .home-latestpost-block .wplp_outside .wplp_widget_default .flex-viewport .wplp_listposts li .insideframe ul li:hover .wpcu-front-box .thumbnail .img_cropper img {
        -webkit-transform: scale(1.2);
        -moz-transform: scale(1.2);
        -ms-transform: scale(1.2);
        -o-transform: scale(1.2);
        transform: scale(1.2); }
      .home-latestpost-block .wplp_outside .wplp_widget_default .flex-viewport .wplp_listposts li .insideframe ul li:hover .wpcu-front-box .thumbnail .img_cropper:before {
        opacity: 0.5; }
      .home-latestpost-block .wplp_outside .wplp_widget_default .flex-viewport .wplp_listposts li .insideframe ul li:hover .wpcu-front-box .thumbnail .img_cropper:after {
        opacity: 1; }
    .home-latestpost-block .wplp_outside .wplp_widget_default .flex-viewport .wplp_listposts li .insideframe .wpcu-front-box {
      text-align: center; }
      .home-latestpost-block .wplp_outside .wplp_widget_default .flex-viewport .wplp_listposts li .insideframe .wpcu-front-box .thumbnail {
        border-radius: 0; }
        .home-latestpost-block .wplp_outside .wplp_widget_default .flex-viewport .wplp_listposts li .insideframe .wpcu-front-box .thumbnail .img_cropper {
          height: auto !important; }
          .home-latestpost-block .wplp_outside .wplp_widget_default .flex-viewport .wplp_listposts li .insideframe .wpcu-front-box .thumbnail .img_cropper img {
            -webkit-transform: scale(1);
            -moz-transform: scale(1);
            -ms-transform: scale(1);
            -o-transform: scale(1);
            transform: scale(1);
            -webkit-transition: all 1000ms ease;
            -moz-transition: all 1000ms ease;
            -ms-transition: all 1000ms ease;
            -o-transition: all 1000ms ease;
            transition: all 1000ms ease; }
          .home-latestpost-block .wplp_outside .wplp_widget_default .flex-viewport .wplp_listposts li .insideframe .wpcu-front-box .thumbnail .img_cropper:before {
            -webkit-transition: all 320ms ease;
            -moz-transition: all 320ms ease;
            -ms-transition: all 320ms ease;
            -o-transition: all 320ms ease;
            transition: all 320ms ease;
            background: #000000 none repeat scroll 0 0;
            bottom: 0;
            content: "";
            display: block;
            height: 100%;
            left: 0;
            opacity: 0;
            position: absolute;
            right: 0;
            top: 0;
            width: 100%;
            z-index: 2; }
          .home-latestpost-block .wplp_outside .wplp_widget_default .flex-viewport .wplp_listposts li .insideframe .wpcu-front-box .thumbnail .img_cropper:after {
            -webkit-transition: all 320ms ease;
            -moz-transition: all 320ms ease;
            -ms-transition: all 320ms ease;
            -o-transition: all 320ms ease;
            transition: all 320ms ease;
            content: "\f0c1";
            font-family: 'Fontawesome';
            display: block;
            font-size: 20px;
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            margin: -30px auto 0;
            z-index: 3;
            color: #7AC77C;
            text-align: center;
            width: 45px;
            height: 45px;
            line-height: 47px;
            border-radius: 50%;
            background: #ffffff;
            box-shadow: 0 0 0 4px #cccccc;
            opacity: 0; }
      .home-latestpost-block .wplp_outside .wplp_widget_default .flex-viewport .wplp_listposts li .insideframe .wpcu-front-box .title {
        text-align: center;
        max-width: 100%;
        font-size: 20px !important;
        padding-top: 20px;
        color: #555555;
        font-weight: 600; }
      .home-latestpost-block .wplp_outside .wplp_widget_default .flex-viewport .wplp_listposts li .insideframe .wpcu-front-box .date {
        background: #7AC77C;
        border-radius: 30px;
        color: #ffffff;
        display: inline-block;
        font-size: 16px !important;
        font-weight: 600;
        left: 0;
        margin: 0 auto;
        padding: 15px 20px !important;
        position: absolute;
        right: 0;
        top: -45%;
        clear: both;
        max-width: 250px;
        z-index: 2; }
      .home-latestpost-block .wplp_outside .wplp_widget_default .flex-viewport .wplp_listposts li .insideframe .wpcu-front-box .author, .home-latestpost-block .wplp_outside .wplp_widget_default .flex-viewport .wplp_listposts li .insideframe .wpcu-front-box .category {
        display: inline-block;
        font-size: 16px;
        margin: 10px 10px 0;
        color: #797979; }
        .home-latestpost-block .wplp_outside .wplp_widget_default .flex-viewport .wplp_listposts li .insideframe .wpcu-front-box .author:before, .home-latestpost-block .wplp_outside .wplp_widget_default .flex-viewport .wplp_listposts li .insideframe .wpcu-front-box .category:before {
          font-family: 'Fontawesome';
          display: inline-block;
          margin-right: 5px;
          color: #999999; }
      .home-latestpost-block .wplp_outside .wplp_widget_default .flex-viewport .wplp_listposts li .insideframe .wpcu-front-box .author:before {
        content: '\f007'; }
      .home-latestpost-block .wplp_outside .wplp_widget_default .flex-viewport .wplp_listposts li .insideframe .wpcu-front-box .category:before {
        content: '\f07b'; }
      .home-latestpost-block .wplp_outside .wplp_widget_default .flex-viewport .wplp_listposts li .insideframe .wpcu-front-box .text {
        padding: 10px 20px;
        line-height: 2; }
        .home-latestpost-block .wplp_outside .wplp_widget_default .flex-viewport .wplp_listposts li .insideframe .wpcu-front-box .text span {
          max-height: 100px !important;
          min-height: 100px; }
      .home-latestpost-block .wplp_outside .wplp_widget_default .flex-viewport .wplp_listposts li .insideframe .wpcu-front-box .read-more {
        color: #7AC77C;
        padding: 0 10px 20px;
        text-transform: capitalize;
        font-weight: 500; }
      .home-latestpost-block .wplp_outside .wplp_widget_default .flex-viewport .wplp_listposts li .insideframe .wpcu-front-box .text, .home-latestpost-block .wplp_outside .wplp_widget_default .flex-viewport .wplp_listposts li .insideframe .wpcu-front-box .date, .home-latestpost-block .wplp_outside .wplp_widget_default .flex-viewport .wplp_listposts li .insideframe .wpcu-front-box .read-more {
        text-align: center;
        font-size: 16px !important; }
      .home-latestpost-block .wplp_outside .wplp_widget_default .flex-viewport .wplp_listposts li .insideframe .wpcu-front-box.bottom {
        position: relative; }
    .home-latestpost-block .wplp_outside .wplp_widget_default .flex-control-nav.flex-control-paging {
      padding-top: 20px; }
      .home-latestpost-block .wplp_outside .wplp_widget_default .flex-control-nav.flex-control-paging li a.flex-active {
        background: #7AC77C; }

.home-brand-logo-block {
  padding: 60px 0; }
  .home-brand-logo-block.vc_parallax .vc_parallax-inner {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat; }
    .home-brand-logo-block.vc_parallax .vc_parallax-inner:before {
      background: #000000;
      content: "";
      display: block;
      height: 100%;
      opacity: 0.8;
      width: 100%; }
  .home-brand-logo-block .carousel-slider .carousel-slider__item img {
    -webkit-transition: all 320ms ease;
    -moz-transition: all 320ms ease;
    -ms-transition: all 320ms ease;
    -o-transition: all 320ms ease;
    transition: all 320ms ease;
    width: auto;
    filter: grayscale(1); }
    .home-brand-logo-block .carousel-slider .carousel-slider__item img:hover {
      filter: grayscale(0); }
  .home-brand-logo-block .carousel-slider .owl-nav .carousel-slider-nav-icon:hover {
    fill: #7AC77C !important; }
  .home-brand-logo-block .carousel-slider .owl-dots {
    margin-top: 40px; }
    .home-brand-logo-block .carousel-slider .owl-dots .owl-dot span {
      margin: 4px 5px;
      border-radius: 50%; }
    .home-brand-logo-block .carousel-slider .owl-dots .owl-dot:hover span {
      background: #7AC77C !important; }
    .home-brand-logo-block .carousel-slider .owl-dots .owl-dot.active span {
      background: #7AC77C !important; }

.home-farmer-team {
  padding: 40px 0; }
  .home-farmer-team .tlp-team .layout1 .single-team-area {
    -webkit-transition: all 320ms ease;
    -moz-transition: all 320ms ease;
    -ms-transition: all 320ms ease;
    -o-transition: all 320ms ease;
    transition: all 320ms ease;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 20px;
    box-shadow: 0 0 1px 1px #cccccc; }
    .home-farmer-team .tlp-team .layout1 .single-team-area .tlp-content {
      background: transparent !important;
      margin-top: 20px;
      border-top: 1px solid #cccccc; }
      .home-farmer-team .tlp-team .layout1 .single-team-area .tlp-content .name {
        color: #1F1F1F;
        text-transform: capitalize;
        font-size: 20px;
        font-weight: 600 !important; }
        .home-farmer-team .tlp-team .layout1 .single-team-area .tlp-content .name a {
          color: #1F1F1F !important; }
      .home-farmer-team .tlp-team .layout1 .single-team-area .tlp-content .designation {
        color: #7AC77C;
        text-transform: capitalize;
        font-size: 16px; }
    .home-farmer-team .tlp-team .layout1 .single-team-area .short-bio p {
      padding: 0; }
    .home-farmer-team .tlp-team .layout1 .single-team-area .tpl-social {
      -webkit-transition: right 620ms ease;
      -moz-transition: right 620ms ease;
      -ms-transition: right 620ms ease;
      -o-transition: right 620ms ease;
      transition: right 620ms ease;
      position: absolute;
      right: -50px;
      top: 0; }
      .home-farmer-team .tlp-team .layout1 .single-team-area .tpl-social a {
        -webkit-transition: all 320ms ease;
        -moz-transition: all 320ms ease;
        -ms-transition: all 320ms ease;
        -o-transition: all 320ms ease;
        transition: all 320ms ease;
        background: #7AC77C;
        color: #ffffff;
        border-radius: 50%;
        display: block;
        font-size: 20px;
        height: 40px;
        line-height: 43px;
        margin: 5px;
        width: 40px; }
        .home-farmer-team .tlp-team .layout1 .single-team-area .tpl-social a .fa {
          -webkit-transition: all 320ms ease;
          -moz-transition: all 320ms ease;
          -ms-transition: all 320ms ease;
          -o-transition: all 320ms ease;
          transition: all 320ms ease;
          display: inline-block;
          background: transparent none repeat scroll 0 0;
          height: auto;
          width: auto;
          color: #ffffff; }
        .home-farmer-team .tlp-team .layout1 .single-team-area .tpl-social a:hover, .home-farmer-team .tlp-team .layout1 .single-team-area .tpl-social a:focus {
          background: #F3CE72;
          color: #000000; }
          .home-farmer-team .tlp-team .layout1 .single-team-area .tpl-social a:hover .fa, .home-farmer-team .tlp-team .layout1 .single-team-area .tpl-social a:focus .fa {
            color: #000000; }
    .home-farmer-team .tlp-team .layout1 .single-team-area:hover {
      box-shadow: 0 0 2px 2px #cccccc; }
      .home-farmer-team .tlp-team .layout1 .single-team-area:hover .tpl-social {
        -webkit-transition: right 620ms ease;
        -moz-transition: right 620ms ease;
        -ms-transition: right 620ms ease;
        -o-transition: right 620ms ease;
        transition: right 620ms ease;
        right: 10px; }

.home-contact-block {
  padding: 40px 0; }
  .home-contact-block.vc_parallax .vc_parallax-inner {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat; }
    .home-contact-block.vc_parallax .vc_parallax-inner:before {
      background: #000000;
      content: "";
      display: block;
      height: 100%;
      opacity: 0.6;
      width: 100%; }
  .home-contact-block .title-block .header-icon-title, .home-contact-block .title-block .header-title {
    color: #ffffff; }
  .home-contact-block .wpcf7-form {
    margin: 0; }
    .home-contact-block .wpcf7-form textarea {
      height: 110px; }
    .home-contact-block .wpcf7-form .wpcf7-submit {
      display: inline-block;
      font-size: 14px;
      padding: 8px 20px 6px;
      width: auto; }

.home-brand-container {
  padding: 40px 0 0;
  background: #312E1D;
  overflow: visible !important;
  margin-bottom: 100px; }
  .home-brand-container .brand-product-block {
    background: #ffffff;
    margin-bottom: 0;
    box-shadow: 0 0 2px 2px #cccccc;
    position: absolute;
    z-index: 2; }
    .home-brand-container .brand-product-block .woocommerce .single-product .wpn_buttons {
      display: none; }
    .home-brand-container .brand-product-block .woocommerce .single-product .shop-image-summary-section .images {
      max-width: 100%;
      width: 100%;
      float: none;
      margin: 0 auto; }
      .home-brand-container .brand-product-block .woocommerce .single-product .shop-image-summary-section .images .yith_magnifier_zoom_magnifier {
        z-index: 0px !important; }
    .home-brand-container .brand-product-block .woocommerce .single-product .shop-image-summary-section .onsale {
      background: #F3CE72;
      text-transform: uppercase;
      height: 50px;
      width: 50px;
      line-height: 48px;
      left: 5px;
      top: 5px;
      margin: 0;
      z-index: 9; }
    .home-brand-container .brand-product-block .woocommerce .single-product .shop-image-summary-section .summary {
      width: 100%;
      float: none;
      color: #555555;
      padding: 0 40px 40px; }
      .home-brand-container .brand-product-block .woocommerce .single-product .shop-image-summary-section .summary .product_title {
        color: #333333;
        font-size: 24px;
        font-family: "Raleway", "Helvetica Neue", "Helvetica", Arial, sans-serif;
        margin-bottom: 10px; }
      .home-brand-container .brand-product-block .woocommerce .single-product .shop-image-summary-section .summary .woocommerce-product-rating .star-rating {
        color: #555555; }
      .home-brand-container .brand-product-block .woocommerce .single-product .shop-image-summary-section .summary .shop-price-container {
        display: inline-block; }
        .home-brand-container .brand-product-block .woocommerce .single-product .shop-image-summary-section .summary .shop-price-container .price {
          color: #edb62c;
          font-weight: 600;
          display: inline-block; }
          .home-brand-container .brand-product-block .woocommerce .single-product .shop-image-summary-section .summary .shop-price-container .price del {
            opacity: 1;
            font-size: 16px;
            font-weight: 400; }
          .home-brand-container .brand-product-block .woocommerce .single-product .shop-image-summary-section .summary .shop-price-container .price ins {
            text-decoration: none;
            font-size: 22px; }
      .home-brand-container .brand-product-block .woocommerce .single-product .shop-image-summary-section .summary .woocommerce-product-details__short-description {
        display: none; }
      .home-brand-container .brand-product-block .woocommerce .single-product .shop-image-summary-section .summary .cart {
        display: inline-block;
        float: right; }
        .home-brand-container .brand-product-block .woocommerce .single-product .shop-image-summary-section .summary .cart .quantity {
          display: none; }
        .home-brand-container .brand-product-block .woocommerce .single-product .shop-image-summary-section .summary .cart .single_add_to_cart_button {
          background: #edb62c;
          color: #ffffff;
          border-color: #edb62c;
          display: inline-block;
          font-size: 14px;
          font-weight: 600;
          padding: 12px 20px 9px;
          text-transform: uppercase;
          margin-top: 10px;
          border-radius: 0; }
          .home-brand-container .brand-product-block .woocommerce .single-product .shop-image-summary-section .summary .cart .single_add_to_cart_button:hover {
            background: #48ac4b;
            border-color: #48ac4b; }
      .home-brand-container .brand-product-block .woocommerce .single-product .shop-image-summary-section .summary .tm-woocompare-button-single, .home-brand-container .brand-product-block .woocommerce .single-product .shop-image-summary-section .summary .tm-woowishlist-button-single {
        display: none; }
      .home-brand-container .brand-product-block .woocommerce .single-product .shop-image-summary-section .summary .product_meta {
        margin-top: 15px; }
        .home-brand-container .brand-product-block .woocommerce .single-product .shop-image-summary-section .summary .product_meta .posted_in {
          text-transform: uppercase;
          font-size: 14px;
          font-weight: 600; }
          .home-brand-container .brand-product-block .woocommerce .single-product .shop-image-summary-section .summary .product_meta .posted_in a {
            text-transform: capitalize;
            color: #333333;
            font-weight: 400;
            margin: 0 3px; }
            .home-brand-container .brand-product-block .woocommerce .single-product .shop-image-summary-section .summary .product_meta .posted_in a:hover {
              color: #48ac4b; }
        .home-brand-container .brand-product-block .woocommerce .single-product .shop-image-summary-section .summary .product_meta .tagged_as {
          display: none; }
    .home-brand-container .brand-product-block .woocommerce .single-product .woocommerce_tabs_wrapper {
      display: none; }
    .home-brand-container .brand-product-block .woocommerce .single-product .related.products {
      display: none; }
  .home-brand-container .brand-product-description {
    padding-bottom: 50px;
    padding-left: 30px; }
    .home-brand-container .brand-product-description .header-icon-title {
      color: #ffffff; }
      .home-brand-container .brand-product-description .header-icon-title:before {
        border: 10px solid;
        border-radius: 50%;
        color: #7ac77c;
        display: block;
        font-family: "Fontawesome";
        font-size: 32px;
        font-weight: normal;
        height: 100px;
        line-height: 80px;
        margin-bottom: 20px;
        margin-top: 20px;
        position: relative;
        text-align: center;
        width: 100px; }
    .home-brand-container .brand-product-description .header-title {
      color: #ffffff;
      text-transform: uppercase;
      font-size: 28px;
      margin-bottom: 20px;
      margin-top: 20px; }
    .home-brand-container .brand-product-description p {
      color: #ffffff;
      font-size: 17px;
      line-height: 1.8;
      font-weight: 300; }
    .home-brand-container .brand-product-description .brand-link {
      -webkit-transition: all 320ms ease;
      -moz-transition: all 320ms ease;
      -ms-transition: all 320ms ease;
      -o-transition: all 320ms ease;
      transition: all 320ms ease;
      background: #7AC77C;
      color: #ffffff;
      display: inline-block;
      text-transform: uppercase;
      margin: 30px 0;
      font-size: 14px;
      font-weight: 600;
      padding: 12px 30px;
      border-radius: 4px; }
      .home-brand-container .brand-product-description .brand-link:hover {
        background: #F3CE72;
        color: #ffffff; }

/*
  Home page v2 styles
  ---------------------
*/
.homepage_v2 .tillage-footer {
  background: #ffffff;
  color: #333333; }
  .homepage_v2 .tillage-footer .tillage-footer-container .tillagefooter h2.tillage-widget-title {
    color: #333333; }
  .homepage_v2 .tillage-footer .tillage-footer-container .tillagefooter .tillage-widget p, .homepage_v2 .tillage-footer .tillage-footer-container .tillagefooter .tillage-widget a {
    color: #333333; }
  .homepage_v2 .tillage-footer .tillage-footer-container .tillagefooter .tillage-widget.widget_text .textwidget p {
    color: #333333; }
  .homepage_v2 .tillage-footer .tillage-footer-container .tillagefooter .tillage-widget.widget_text .textwidget .footer-contact-info h6 {
    margin: 0;
    color: #333333; }
  .homepage_v2 .tillage-footer .tillage-footer-container .tillagefooter .tillage-widget.widget_text .textwidget .footer-contact-info p {
    color: #797979; }
  .homepage_v2 .tillage-footer .tillage-footer-container .tillagefooter .tillage-widget.widget_text .textwidget .footer-contact-info a {
    color: #797979; }
    .homepage_v2 .tillage-footer .tillage-footer-container .tillagefooter .tillage-widget.widget_text .textwidget .footer-contact-info a:hover {
      color: #edb62c; }
  .homepage_v2 .tillage-footer .tillage-footer-container .tillagefooter .tillage-widget.widget_newsletterwidget .tnp-widget form {
    display: block; }
    .homepage_v2 .tillage-footer .tillage-footer-container .tillagefooter .tillage-widget.widget_newsletterwidget .tnp-widget form .tnp-field {
      margin: 10px 0; }
      .homepage_v2 .tillage-footer .tillage-footer-container .tillagefooter .tillage-widget.widget_newsletterwidget .tnp-widget form .tnp-field .tnp-submit {
        width: auto;
        border-radius: 4px; }
.homepage_v2 .tillagefooter-intro {
  background: #F1F1F1;
  padding: 20px 0; }
  .homepage_v2 .tillagefooter-intro .tillage-widget {
    margin: 30px 0; }

.home2-intro-title {
  padding-top: 40px; }

.home2-intro-block {
  padding-bottom: 40px; }
  .home2-intro-block .wpb_content_element {
    margin-bottom: 15px; }
  .home2-intro-block .vc_tta-container .vc_tta-tabs.vc_tta-style-classic .vc_tta-tabs-container .vc_tta-tabs-list {
    text-align: center;
    margin-right: 20px;
    padding: 40px; }
    .home2-intro-block .vc_tta-container .vc_tta-tabs.vc_tta-style-classic .vc_tta-tabs-container .vc_tta-tabs-list .vc_tta-tab a {
      -webkit-transform: scale(1);
      -moz-transform: scale(1);
      -ms-transform: scale(1);
      -o-transform: scale(1);
      transform: scale(1);
      -webkit-transition: all 500ms ease;
      -moz-transition: all 500ms ease;
      -ms-transition: all 500ms ease;
      -o-transition: all 500ms ease;
      transition: all 500ms ease;
      background: #ffffff;
      border: 1px solid #cccccc !important;
      border-radius: 50%;
      height: 120px;
      width: 120px;
      line-height: 90px;
      text-align: center;
      color: #333333;
      font-weight: 500;
      font-size: 16px;
      text-transform: uppercase;
      margin: 0 auto; }
      .home2-intro-block .vc_tta-container .vc_tta-tabs.vc_tta-style-classic .vc_tta-tabs-container .vc_tta-tabs-list .vc_tta-tab a:hover, .home2-intro-block .vc_tta-container .vc_tta-tabs.vc_tta-style-classic .vc_tta-tabs-container .vc_tta-tabs-list .vc_tta-tab a:focus {
        color: #7AC77C;
        background: #ffffff; }
    .home2-intro-block .vc_tta-container .vc_tta-tabs.vc_tta-style-classic .vc_tta-tabs-container .vc_tta-tabs-list .vc_tta-tab.vc_active a {
      -webkit-transform: scale(1.3);
      -moz-transform: scale(1.3);
      -ms-transform: scale(1.3);
      -o-transform: scale(1.3);
      transform: scale(1.3);
      border: 1px solid #7AC77C !important;
      z-index: 1; }
      .home2-intro-block .vc_tta-container .vc_tta-tabs.vc_tta-style-classic .vc_tta-tabs-container .vc_tta-tabs-list .vc_tta-tab.vc_active a:before, .home2-intro-block .vc_tta-container .vc_tta-tabs.vc_tta-style-classic .vc_tta-tabs-container .vc_tta-tabs-list .vc_tta-tab.vc_active a:after {
        display: none; }
    .home2-intro-block .vc_tta-container .vc_tta-tabs.vc_tta-style-classic .vc_tta-tabs-container .vc_tta-tabs-list .vc_tta-tab:last-child a {
      border: 1px solid #cccccc; }
  .home2-intro-block .vc_tta-container .vc_tta-tabs.vc_tta-style-classic .vc_tta-panels-container .vc_tta-panels {
    border: none; }
    .home2-intro-block .vc_tta-container .vc_tta-tabs.vc_tta-style-classic .vc_tta-panels-container .vc_tta-panels .vc_tta-panel-body {
      text-align: center; }
      .home2-intro-block .vc_tta-container .vc_tta-tabs.vc_tta-style-classic .vc_tta-panels-container .vc_tta-panels .vc_tta-panel-body .btn-primary {
        margin-top: 20px; }

.home2-feature-block {
  padding-top: 80px;
  padding-bottom: 80px; }
  .home2-feature-block.vc_parallax .vc_parallax-inner {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat; }
    .home2-feature-block.vc_parallax .vc_parallax-inner:before {
      background: #000000;
      content: "";
      display: block;
      height: 100%;
      opacity: 0.6;
      width: 100%; }
  .home2-feature-block .header-title, .home2-feature-block .header-icon-title {
    color: #ffffff; }
  .home2-feature-block .header-title {
    font-size: 52px; }
    .home2-feature-block .header-title .title-highlight {
      color: #7AC77C; }
  .home2-feature-block .header-icon-title {
    font-size: 26px;
    text-transform: uppercase; }
  .home2-feature-block p {
    color: #eeeeee;
    font-size: 18px;
    line-height: 1.8; }
  .home2-feature-block .btn-tillage {
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    padding: 14px 20px 12px;
    text-transform: uppercase;
    margin-top: 20px; }

.home2-latestpost-block .wplp_outside .wplp_widget_default .flex-viewport .wplp_listposts li .insideframe ul li {
  padding: 0; }
.home2-latestpost-block .latest-news-side-block .wplp_outside .wplp_widget_default .flex-viewport .wplp_listposts li .insideframe {
  padding: 0; }
  .home2-latestpost-block .latest-news-side-block .wplp_outside .wplp_widget_default .flex-viewport .wplp_listposts li .insideframe ul li {
    padding-bottom: 40px; }
    .home2-latestpost-block .latest-news-side-block .wplp_outside .wplp_widget_default .flex-viewport .wplp_listposts li .insideframe ul li:hover .wpcu-front-box .thumbnail .img_cropper:before {
      opacity: 0.5; }
    .home2-latestpost-block .latest-news-side-block .wplp_outside .wplp_widget_default .flex-viewport .wplp_listposts li .insideframe ul li:hover .wpcu-front-box .thumbnail .img_cropper:after {
      opacity: 1; }
    .home2-latestpost-block .latest-news-side-block .wplp_outside .wplp_widget_default .flex-viewport .wplp_listposts li .insideframe ul li .insideframe .wpcu-front-box.left {
      width: 40% !important;
      float: left; }
    .home2-latestpost-block .latest-news-side-block .wplp_outside .wplp_widget_default .flex-viewport .wplp_listposts li .insideframe ul li .insideframe .wpcu-front-box.right {
      width: 60% !important;
      float: left; }
  .home2-latestpost-block .latest-news-side-block .wplp_outside .wplp_widget_default .flex-viewport .wplp_listposts li .insideframe .wpcu-front-box {
    text-align: left; }
    .home2-latestpost-block .latest-news-side-block .wplp_outside .wplp_widget_default .flex-viewport .wplp_listposts li .insideframe .wpcu-front-box .thumbnail {
      padding: 0 20px 0 0;
      width: 100%; }
      .home2-latestpost-block .latest-news-side-block .wplp_outside .wplp_widget_default .flex-viewport .wplp_listposts li .insideframe .wpcu-front-box .thumbnail .img_cropper {
        position: relative; }
        .home2-latestpost-block .latest-news-side-block .wplp_outside .wplp_widget_default .flex-viewport .wplp_listposts li .insideframe .wpcu-front-box .thumbnail .img_cropper img {
          width: 100%;
          height: 250px; }
        .home2-latestpost-block .latest-news-side-block .wplp_outside .wplp_widget_default .flex-viewport .wplp_listposts li .insideframe .wpcu-front-box .thumbnail .img_cropper:before {
          -webkit-transition: all 320ms ease;
          -moz-transition: all 320ms ease;
          -ms-transition: all 320ms ease;
          -o-transition: all 320ms ease;
          transition: all 320ms ease;
          background: #000000 none repeat scroll 0 0;
          bottom: 0;
          content: "";
          display: block;
          height: 100%;
          left: 0;
          opacity: 0;
          position: absolute;
          right: 0;
          top: 0;
          width: 100%;
          z-index: 2; }
        .home2-latestpost-block .latest-news-side-block .wplp_outside .wplp_widget_default .flex-viewport .wplp_listposts li .insideframe .wpcu-front-box .thumbnail .img_cropper:after {
          -webkit-transition: all 320ms ease;
          -moz-transition: all 320ms ease;
          -ms-transition: all 320ms ease;
          -o-transition: all 320ms ease;
          transition: all 320ms ease;
          content: "\f0c1";
          font-family: 'Fontawesome';
          display: block;
          font-size: 20px;
          position: absolute;
          top: 50%;
          left: 0;
          right: 0;
          margin: -30px auto 0;
          z-index: 3;
          color: #7AC77C;
          text-align: center;
          width: 45px;
          height: 45px;
          line-height: 47px;
          border-radius: 50%;
          background: #ffffff;
          box-shadow: 0 0 0 4px #cccccc;
          opacity: 0; }
    .home2-latestpost-block .latest-news-side-block .wplp_outside .wplp_widget_default .flex-viewport .wplp_listposts li .insideframe .wpcu-front-box .title {
      text-align: left;
      padding-top: 20px;
      padding-bottom: 10px; }
    .home2-latestpost-block .latest-news-side-block .wplp_outside .wplp_widget_default .flex-viewport .wplp_listposts li .insideframe .wpcu-front-box .date {
      background: none;
      border-radius: 0;
      color: #797979;
      display: inline;
      font-weight: 500;
      margin: 0 10px;
      padding: 0 !important;
      position: relative;
      top: 0;
      max-width: auto; }
    .home2-latestpost-block .latest-news-side-block .wplp_outside .wplp_widget_default .flex-viewport .wplp_listposts li .insideframe .wpcu-front-box .author, .home2-latestpost-block .latest-news-side-block .wplp_outside .wplp_widget_default .flex-viewport .wplp_listposts li .insideframe .wpcu-front-box .category, .home2-latestpost-block .latest-news-side-block .wplp_outside .wplp_widget_default .flex-viewport .wplp_listposts li .insideframe .wpcu-front-box .date {
      display: inline;
      margin: 0 10px 0 0; }
      .home2-latestpost-block .latest-news-side-block .wplp_outside .wplp_widget_default .flex-viewport .wplp_listposts li .insideframe .wpcu-front-box .author:before, .home2-latestpost-block .latest-news-side-block .wplp_outside .wplp_widget_default .flex-viewport .wplp_listposts li .insideframe .wpcu-front-box .category:before, .home2-latestpost-block .latest-news-side-block .wplp_outside .wplp_widget_default .flex-viewport .wplp_listposts li .insideframe .wpcu-front-box .date:before {
        font-family: 'Fontawesome';
        display: inline-block;
        margin-right: 5px;
        color: #999999; }
    .home2-latestpost-block .latest-news-side-block .wplp_outside .wplp_widget_default .flex-viewport .wplp_listposts li .insideframe .wpcu-front-box .author:before {
      content: '\f007'; }
    .home2-latestpost-block .latest-news-side-block .wplp_outside .wplp_widget_default .flex-viewport .wplp_listposts li .insideframe .wpcu-front-box .date:before {
      content: '\f07b'; }
    .home2-latestpost-block .latest-news-side-block .wplp_outside .wplp_widget_default .flex-viewport .wplp_listposts li .insideframe .wpcu-front-box .category:before {
      content: '\f07b'; }
    .home2-latestpost-block .latest-news-side-block .wplp_outside .wplp_widget_default .flex-viewport .wplp_listposts li .insideframe .wpcu-front-box .text {
      padding: 10px 0 0; }
      .home2-latestpost-block .latest-news-side-block .wplp_outside .wplp_widget_default .flex-viewport .wplp_listposts li .insideframe .wpcu-front-box .text span {
        min-height: 90px;
        max-height: 90px; }
    .home2-latestpost-block .latest-news-side-block .wplp_outside .wplp_widget_default .flex-viewport .wplp_listposts li .insideframe .wpcu-front-box .read-more {
      color: #7AC77C;
      padding: 0;
      text-transform: capitalize;
      font-weight: 500;
      padding-bottom: 10px; }
    .home2-latestpost-block .latest-news-side-block .wplp_outside .wplp_widget_default .flex-viewport .wplp_listposts li .insideframe .wpcu-front-box .date {
      text-align: left;
      font-size: 14px !important; }
    .home2-latestpost-block .latest-news-side-block .wplp_outside .wplp_widget_default .flex-viewport .wplp_listposts li .insideframe .wpcu-front-box .text, .home2-latestpost-block .latest-news-side-block .wplp_outside .wplp_widget_default .flex-viewport .wplp_listposts li .insideframe .wpcu-front-box .read-more {
      text-align: left;
      font-size: 16px !important; }
.home2-latestpost-block .latest-news-side-block .wplp_outside .wplp_widget_default .flex-control-nav.flex-control-paging {
  padding-top: 20px; }
  .home2-latestpost-block .latest-news-side-block .wplp_outside .wplp_widget_default .flex-control-nav.flex-control-paging li a.flex-active {
    background: #7AC77C; }

/*
  Home page v3 styles
  ---------------------
*/
@media (min-width: 768px) and (max-width: 991px) {
  .homepage_default .home3-header .navbar-tillage {
    display: flex; } }
.homepage_default .logo-container {
  padding: 20px 15px;
  border-bottom: 1px solid #cccccc; }
  .homepage_default .logo-container .topbar-widgets .tillage-widget.widget_text {
    margin: 0; }
  .homepage_default .logo-container .topbar-widgets .topbar-contact-info {
    display: inline-flex; }
    .homepage_default .logo-container .topbar-widgets .topbar-contact-info span {
      display: inline-block;
      font-size: 14px;
      line-height: 1.8;
      text-transform: uppercase;
      font-weight: 500;
      color: #555555; }
    .homepage_default .logo-container .topbar-widgets .topbar-contact-info .contact-icon {
      color: #797979;
      font-size: 28px;
      padding: 0 20px; }
  .homepage_default .logo-container .site-branding {
    text-align: center; }
    .homepage_default .logo-container .site-branding .site-title {
      margin: 0;
      display: inline-block;
      font-size: 28px;
      font-weight: 600;
      text-transform: uppercase;
      line-height: 2; }
      .homepage_default .logo-container .site-branding .site-title a {
        color: #333333; }
        .homepage_default .logo-container .site-branding .site-title a i {
          color: #7AC77C; }
    @media (max-width: 767px) {
      .homepage_default .logo-container .site-branding {
        margin-top: 30px;
        text-align: left; } }
  .homepage_default .logo-container .tillage-sidebar-cart {
    display: block; }
    .homepage_default .logo-container .tillage-sidebar-cart .cart-customlocation {
      color: #555555; }
    .homepage_default .logo-container .tillage-sidebar-cart .shop-cart-content {
      display: block;
      font-size: 14px; }
      .homepage_default .logo-container .tillage-sidebar-cart .shop-cart-content .shop-cart-icon {
        position: relative;
        display: inline-block;
        color: #797979;
        font-size: 28px;
        padding: 0 20px; }
        .homepage_default .logo-container .tillage-sidebar-cart .shop-cart-content .shop-cart-icon .circle {
          background: #7AC77C;
          color: #ffffff;
          border-radius: 50%;
          height: 20px;
          width: 20px;
          display: inline-block;
          text-align: center;
          font-size: 14px;
          position: absolute;
          margin-left: -5px;
          margin-top: -5px; }
      .homepage_default .logo-container .tillage-sidebar-cart .shop-cart-content .shop-cart-total {
        display: inline-block;
        text-transform: uppercase;
        font-weight: 500;
        color: #555555;
        line-height: 1.6; }
        .homepage_default .logo-container .tillage-sidebar-cart .shop-cart-content .shop-cart-total .amount {
          color: #1F1F1F;
          font-size: 16px;
          font-weight: 600;
          line-height: 1.8; }
  .homepage_default .logo-container .head-search {
    display: inline-block; }
    .homepage_default .logo-container .head-search .toggle-search {
      -webkit-transition: all 320ms ease;
      -moz-transition: all 320ms ease;
      -ms-transition: all 320ms ease;
      -o-transition: all 320ms ease;
      transition: all 320ms ease;
      background: #7AC77C;
      border-radius: 50%;
      color: #ffffff;
      font-size: 14px;
      font-weight: normal;
      height: 40px;
      line-height: 40px;
      text-align: center;
      width: 40px;
      margin: 3px 0;
      cursor: pointer; }
      .homepage_default .logo-container .head-search .toggle-search:hover, .homepage_default .logo-container .head-search .toggle-search:focus {
        background: #F3CE72;
        color: #ffffff; }
    .homepage_default .logo-container .head-search .search-expand {
      display: none;
      position: fixed;
      right: 0;
      left: 0;
      top: 50%;
      z-index: 9;
      max-width: 800px;
      margin: 0 auto;
      width: 100%;
      padding: 20px; }
      .homepage_default .logo-container .head-search .search-expand .search-expand-inner {
        position: relative; }
        .homepage_default .logo-container .head-search .search-expand .search-expand-inner .searchform {
          display: block;
          margin-top: 10px;
          margin-bottom: 10px; }
          .homepage_default .logo-container .head-search .search-expand .search-expand-inner .searchform .input-group .form-control {
            height: 53px;
            background: transparent;
            border: 2px solid #ffffff;
            border-radius: 0;
            color: #ffffff;
            border-right: none;
            font-weight: 500;
            font-size: 18px; }
          .homepage_default .logo-container .head-search .search-expand .search-expand-inner .searchform .btn.submit {
            -webkit-transition: all 320ms ease;
            -moz-transition: all 320ms ease;
            -ms-transition: all 320ms ease;
            -o-transition: all 320ms ease;
            transition: all 320ms ease;
            display: inline-block;
            border: none;
            border-radius: 0px;
            padding: 15px 26px;
            font-size: 16px;
            background: #7AC77C;
            box-shadow: none;
            text-shadow: none;
            color: #ffffff; }
            .homepage_default .logo-container .head-search .search-expand .search-expand-inner .searchform .btn.submit:hover, .homepage_default .logo-container .head-search .search-expand .search-expand-inner .searchform .btn.submit:focus {
              background: #F3CE72;
              color: #ffffff; }
    .homepage_default .logo-container .head-search .search-overlay {
      background: rgba(0, 0, 0, 0.7) none repeat scroll 0 0;
      bottom: 0;
      cursor: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABUAAAAVBAMAAABbObilAAAAMFBMVEVMaXH////////////////////////////////////////////////////////////6w4mEAAAAD3RSTlMAlAX+BKLcA5+b6hJ7foD4ZP1OAAAAkUlEQVR4XkWPoQ3CUBQAL4SktoKAbCUjgAKLJZ2ABYosngTJCHSD6joUI6BZgqSoB/+Shqde7sS9x3OGk81fdO+texMtRVTia+TsQtHEUJLdohJfgNNPJHyEJPZTsWLoxShqsWITazEwqePAn69Sw2TUxk1+euPis3EwaXy8RMHSZBIlRcKKnC5hRctjMf57/wJbBlAIs9k1BAAAAABJRU5ErkJggg=="), progress;
      display: none;
      left: 0;
      position: fixed;
      right: 0;
      top: 0;
      z-index: 3; }
  .homepage_default .logo-container .sidebar-open {
    -webkit-transition: all 320ms ease;
    -moz-transition: all 320ms ease;
    -ms-transition: all 320ms ease;
    -o-transition: all 320ms ease;
    transition: all 320ms ease;
    display: inline-block;
    cursor: pointer;
    color: #ffffff;
    background: #7AC77C;
    font-size: 14px;
    font-weight: normal;
    height: 40px;
    line-height: 40px;
    text-align: center;
    width: 40px;
    border-radius: 50%;
    margin: 3px 10px; }
    .homepage_default .logo-container .sidebar-open:hover, .homepage_default .logo-container .sidebar-open:focus {
      color: #ffffff;
      background: #F3CE72; }
  @media (max-width: 767px) {
    .homepage_default .logo-container .topbar-widgets .topbar-contact-info .contact-icon {
      padding: 0 10px; }
    .homepage_default .logo-container .site-branding {
      padding: 0; }
      .homepage_default .logo-container .site-branding .site-title {
        font-size: 24px; } }
.homepage_default .tillage-footer {
  background-color: #F1F1F1;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: scroll;
  position: relative;
  color: #333333;
  border-top: 1px solid #eeeeee; }
  .homepage_default .tillage-footer .tillage-footer-container .tillagefooter h2.tillage-widget-title {
    color: #333333; }
  .homepage_default .tillage-footer .tillage-footer-container .tillagefooter .tillage-widget a {
    color: #333333; }
  .homepage_default .tillage-footer .tillage-footer-container .tillagefooter .tillage-widget.widget_text .textwidget p {
    color: #333333; }
  .homepage_default .tillage-footer .tillage-footer-container .tillagefooter .tillage-widget li {
    color: #333333; }
  .homepage_default .tillage-footer .tillage-footer-copyright {
    background: #eeeeee;
    color: #333333; }
    .homepage_default .tillage-footer .tillage-footer-copyright .site-info {
      text-align: left; }
      .homepage_default .tillage-footer .tillage-footer-copyright .site-info i, .homepage_default .tillage-footer .tillage-footer-copyright .site-info a {
        color: #7AC77C;
        font-weight: 600; }
  .homepage_default .tillage-footer:before {
    bottom: 0;
    content: "";
    height: 100%;
    position: absolute;
    right: 0;
    width: 100%;
    z-index: 0; }
  @media (max-width: 767px) {
    .homepage_default .tillage-footer:before {
      display: none; } }

.home3-banner-block {
  padding-top: 40px;
  padding-bottom: 20px; }
  .home3-banner-block .banner-slider .flexslider {
    box-shadow: none; }
    .home3-banner-block .banner-slider .flexslider .flex-viewport ul.slides {
      text-align: center; }
      .home3-banner-block .banner-slider .flexslider .flex-viewport ul.slides li img {
        border-radius: 50%;
        height: auto;
        margin: 10px auto;
        max-width: 100%;
        width: auto; }
      .home3-banner-block .banner-slider .flexslider .flex-viewport ul.slides li .flex-caption h2.post-title {
        font-size: 22px;
        text-transform: uppercase;
        font-weight: 800;
        position: relative;
        display: inline-block;
        margin-top: 10px;
        margin-bottom: 20px;
        color: #333333;
        font-family: 'Playfair Display', serif; }
    .home3-banner-block .banner-slider .flexslider .flex-control-nav li {
      margin: 0 2px; }
      .home3-banner-block .banner-slider .flexslider .flex-control-nav li a {
        background: #F3CE72; }
        .home3-banner-block .banner-slider .flexslider .flex-control-nav li a.flex-active {
          background: #7AC77C; }
    .home3-banner-block .banner-slider .flexslider .flex-direction-nav {
      display: none; }
      .home3-banner-block .banner-slider .flexslider .flex-direction-nav li {
        display: inline-block;
        text-align: center;
        margin: 5px; }
        .home3-banner-block .banner-slider .flexslider .flex-direction-nav li .flex-prev, .home3-banner-block .banner-slider .flexslider .flex-direction-nav li .flex-next {
          opacity: 1;
          top: auto;
          left: auto;
          right: auto;
          padding: 10px;
          line-height: 1.6;
          background: #F3CE72;
          color: #ffffff;
          position: relative;
          text-align: center;
          margin-top: 0; }
          .home3-banner-block .banner-slider .flexslider .flex-direction-nav li .flex-prev:hover, .home3-banner-block .banner-slider .flexslider .flex-direction-nav li .flex-prev:focus, .home3-banner-block .banner-slider .flexslider .flex-direction-nav li .flex-next:hover, .home3-banner-block .banner-slider .flexslider .flex-direction-nav li .flex-next:focus {
            background: #7AC77C; }
          .home3-banner-block .banner-slider .flexslider .flex-direction-nav li .flex-prev:before, .home3-banner-block .banner-slider .flexslider .flex-direction-nav li .flex-next:before {
            font-size: 16px;
            line-height: 1.5; }

.home3-parallax-block {
  padding-bottom: 40px;
  padding-top: 40px; }
  .home3-parallax-block.vc_parallax .vc_parallax-inner {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat; }
    .home3-parallax-block.vc_parallax .vc_parallax-inner:before {
      background: #000000;
      content: "";
      display: block;
      height: 100%;
      opacity: 0.2;
      width: 100%; }
  .home3-parallax-block .title-block {
    margin-bottom: 20px;
    padding-bottom: 0; }
  .home3-parallax-block .content-block .sp-testimonial-section .owl-wrapper-outer .owl-wrapper .owl-item .testimonial-free {
    text-align: center;
    background: transparent;
    max-width: 800px; }
    .home3-parallax-block .content-block .sp-testimonial-section .owl-wrapper-outer .owl-wrapper .owl-item .testimonial-free .tf-client-image {
      left: auto;
      position: relative;
      top: 0;
      margin: 0 auto; }
    .home3-parallax-block .content-block .sp-testimonial-section .owl-wrapper-outer .owl-wrapper .owl-item .testimonial-free:after {
      left: 0;
      right: 0;
      bottom: -30px;
      margin-right: 0; }

.home3-newsletter-block {
  position: relative;
  background: #F3CE72;
  z-index: 2; }
  .home3-newsletter-block p {
    color: #ffffff; }
  .home3-newsletter-block .newletter-form-block {
    padding-top: 20px;
    padding-bottom: 20px; }
    .home3-newsletter-block .newletter-form-block .tnp-subscription-minimal .tnp-email {
      border: 1px solid #F1F1F1; }
    .home3-newsletter-block .newletter-form-block .tnp-subscription-minimal .tnp-submit:hover {
      background: #48ac4b; }
  .home3-newsletter-block .bottom-right-image-block img {
    position: absolute;
    top: -5px;
    max-width: none;
    right: 0; }

.home3-services-block .tp-about-features {
  padding-bottom: 20px; }
  .home3-services-block .tp-about-features .tp-feature-icon {
    -webkit-transition: all 320ms ease;
    -moz-transition: all 320ms ease;
    -ms-transition: all 320ms ease;
    -o-transition: all 320ms ease;
    transition: all 320ms ease;
    background: #7AC77C;
    color: #ffffff;
    font-size: 20px;
    display: inline-block;
    float: left;
    height: 70px;
    line-height: 70px;
    margin: 10px 20px 20px 0px;
    text-align: center;
    width: 70px;
    border-radius: 50%; }
  .home3-services-block .tp-about-features h4 {
    color: #1F1F1F;
    text-transform: capitalize;
    margin: 10px 0; }
  .home3-services-block .tp-about-features p {
    overflow: auto; }
  .home3-services-block .tp-about-features:hover .tp-feature-icon {
    background: #F3CE72;
    color: #ffffff; }
@media (min-width: 768px) and (max-width: 991px) {
  .home3-services-block .tp-about-features .tp-feature-icon {
    float: none;
    display: block; } }

/*
  Home page v4 styles
  ---------------------
*/
.home4-container .no-margin {
  margin: 0; }
.home4-container .home-4-sidebar-content-area {
  -webkit-transition: all 320ms ease;
  -moz-transition: all 320ms ease;
  -ms-transition: all 320ms ease;
  -o-transition: all 320ms ease;
  transition: all 320ms ease;
  background: #1F1F1F;
  height: 100vh;
  overflow: auto;
  position: fixed;
  top: 0;
  z-index: 9; }
  .home4-container .home-4-sidebar-content-area .home4-sidebar {
    position: relative;
    padding: 20px; }
    .home4-container .home-4-sidebar-content-area .home4-sidebar .home4-sidebar-container .sidebar-logo .site-title a {
      color: #ffffff; }
    .home4-container .home-4-sidebar-content-area .home4-sidebar .home4-sidebar-container .home4-sidebar-menu {
      margin-top: 20px;
      margin-bottom: 20px; }
      .home4-container .home-4-sidebar-content-area .home4-sidebar .home4-sidebar-container .home4-sidebar-menu .tillage-offcanvas-menu {
        padding: 0; }
      .home4-container .home-4-sidebar-content-area .home4-sidebar .home4-sidebar-container .home4-sidebar-menu ul.navbar-nav > li > a:before {
        content: '\f009';
        font-family: "Fontawesome";
        display: inline-block;
        margin-right: 5px; }
      .home4-container .home-4-sidebar-content-area .home4-sidebar .home4-sidebar-container .home4-sidebar-menu ul {
        float: none;
        display: block;
        margin: 0 auto; }
        .home4-container .home-4-sidebar-content-area .home4-sidebar .home4-sidebar-container .home4-sidebar-menu ul li {
          display: block;
          float: none; }
          .home4-container .home-4-sidebar-content-area .home4-sidebar .home4-sidebar-container .home4-sidebar-menu ul li a {
            display: block;
            font-size: 14px;
            font-weight: 500;
            text-transform: capitalize;
            color: #ffffff;
            padding: 8px 10px; }
            .home4-container .home-4-sidebar-content-area .home4-sidebar .home4-sidebar-container .home4-sidebar-menu ul li a:hover {
              color: #edb62c; }
          .home4-container .home-4-sidebar-content-area .home4-sidebar .home4-sidebar-container .home4-sidebar-menu ul li.current_page_item a {
            color: #edb62c;
            background: transparent; }
            .home4-container .home-4-sidebar-content-area .home4-sidebar .home4-sidebar-container .home4-sidebar-menu ul li.current_page_item a:hover {
              background: transparent;
              color: #edb62c; }
    .home4-container .home-4-sidebar-content-area .home4-sidebar .home4-sidebar-container .sidebar-search-box {
      display: inline-block;
      margin-bottom: 40px;
      margin-top: 40px;
      padding: 15px; }
      .home4-container .home-4-sidebar-content-area .home4-sidebar .home4-sidebar-container .sidebar-search-box .searchform .input-group {
        border-bottom: 1px solid #ffffff; }
        .home4-container .home-4-sidebar-content-area .home4-sidebar .home4-sidebar-container .sidebar-search-box .searchform .input-group input[type="text"] {
          background: transparent;
          border: none;
          box-shadow: none;
          color: #ffffff; }
        .home4-container .home-4-sidebar-content-area .home4-sidebar .home4-sidebar-container .sidebar-search-box .searchform .input-group .form-control::-moz-placeholder {
          color: #ffffff; }
        .home4-container .home-4-sidebar-content-area .home4-sidebar .home4-sidebar-container .sidebar-search-box .searchform .input-group .input-group-btn .submit {
          background: transparent;
          color: #ffffff;
          border: none; }
    .home4-container .home-4-sidebar-content-area .home4-sidebar .home4-sidebar-container .home4-sidebar-widgets .tillage-widget.tillage-sidebar-widget {
      padding: 0;
      color: #ffffff; }
      .home4-container .home-4-sidebar-content-area .home4-sidebar .home4-sidebar-container .home4-sidebar-widgets .tillage-widget.tillage-sidebar-widget a, .home4-container .home-4-sidebar-content-area .home4-sidebar .home4-sidebar-container .home4-sidebar-widgets .tillage-widget.tillage-sidebar-widget p {
        color: #ffffff; }
      .home4-container .home-4-sidebar-content-area .home4-sidebar .home4-sidebar-container .home4-sidebar-widgets .tillage-widget.tillage-sidebar-widget .tillage-widget-title {
        color: #ffffff;
        margin-bottom: 30px; }
      .home4-container .home-4-sidebar-content-area .home4-sidebar .home4-sidebar-container .home4-sidebar-widgets .tillage-widget.tillage-sidebar-widget.widget_shopping_cart .widget_shopping_cart_content .cart_list .mini_cart_item a {
        color: #ffffff; }
      .home4-container .home-4-sidebar-content-area .home4-sidebar .home4-sidebar-container .home4-sidebar-widgets .tillage-widget.tillage-sidebar-widget.widget_shopping_cart .widget_shopping_cart_content .cart_list .mini_cart_item .quantity {
        color: #ffffff; }
      .home4-container .home-4-sidebar-content-area .home4-sidebar .home4-sidebar-container .home4-sidebar-widgets .tillage-widget.tillage-sidebar-widget.widget_shopping_cart .widget_shopping_cart_content .total {
        color: #ffffff; }
.home4-container .home4-sidebar-close .home4-js-toggleSidebar {
  position: fixed;
  top: 0;
  left: 16.6667%;
  cursor: pointer;
  color: #ffffff;
  background: #edb62c;
  width: 50px;
  height: 50px;
  line-height: 50px;
  font-size: 16px;
  text-align: center;
  z-index: 99; }
  .admin-bar .home4-container .home4-sidebar-close .home4-js-toggleSidebar {
    top: 46px; }
    @media screen and (min-width: 783px) {
      .admin-bar .home4-container .home4-sidebar-close .home4-js-toggleSidebar {
        top: 32px; } }
  .home4-container .home4-sidebar-close .home4-js-toggleSidebar.iconleft {
    left: 0;
    background: #edb62c; }
  @media (max-width: 991px) {
    .home4-container .home4-sidebar-close .home4-js-toggleSidebar {
      left: 0; } }
.home4-container .home-4-main-content-area {
  padding: 0;
  overflow: auto; }
  .home4-container .home-4-main-content-area .vc_row {
    margin: 0 auto; }
@media (min-width: 991px) and (max-width: 1199px) {
  .home4-container .home-4-sidebar-content-area .home4-sidebar {
    padding: 0; } }

.home4-slider-block .vc_column_container > .vc_column-inner {
  padding: 0; }

.home4-latestpost-block .wplp_outside .wplp_widget_default .flex-viewport .wplp_listposts li .insideframe ul li {
  padding: 0; }
.home4-latestpost-block .latest-news-side-block .wplp_outside .wplp_widget_default .flex-viewport .wplp_listposts li .insideframe {
  padding: 0; }
  .home4-latestpost-block .latest-news-side-block .wplp_outside .wplp_widget_default .flex-viewport .wplp_listposts li .insideframe ul li {
    padding-bottom: 40px; }
    .home4-latestpost-block .latest-news-side-block .wplp_outside .wplp_widget_default .flex-viewport .wplp_listposts li .insideframe ul li:hover .wpcu-front-box .thumbnail .img_cropper:before {
      opacity: 0.5; }
    .home4-latestpost-block .latest-news-side-block .wplp_outside .wplp_widget_default .flex-viewport .wplp_listposts li .insideframe ul li:hover .wpcu-front-box .thumbnail .img_cropper:after {
      opacity: 1; }
    .home4-latestpost-block .latest-news-side-block .wplp_outside .wplp_widget_default .flex-viewport .wplp_listposts li .insideframe ul li .insideframe .wpcu-front-box.left {
      width: 40% !important;
      float: left; }
    .home4-latestpost-block .latest-news-side-block .wplp_outside .wplp_widget_default .flex-viewport .wplp_listposts li .insideframe ul li .insideframe .wpcu-front-box.right {
      width: 60% !important;
      float: left; }
  .home4-latestpost-block .latest-news-side-block .wplp_outside .wplp_widget_default .flex-viewport .wplp_listposts li .insideframe .wpcu-front-box {
    text-align: left; }
    .home4-latestpost-block .latest-news-side-block .wplp_outside .wplp_widget_default .flex-viewport .wplp_listposts li .insideframe .wpcu-front-box .thumbnail {
      height: auto;
      min-width: 400px;
      max-width: 400px;
      padding: 0 20px 0 0;
      width: 100%; }
      .home4-latestpost-block .latest-news-side-block .wplp_outside .wplp_widget_default .flex-viewport .wplp_listposts li .insideframe .wpcu-front-box .thumbnail .img_cropper {
        position: relative; }
        .home4-latestpost-block .latest-news-side-block .wplp_outside .wplp_widget_default .flex-viewport .wplp_listposts li .insideframe .wpcu-front-box .thumbnail .img_cropper img {
          width: 100%;
          height: 250px; }
        .home4-latestpost-block .latest-news-side-block .wplp_outside .wplp_widget_default .flex-viewport .wplp_listposts li .insideframe .wpcu-front-box .thumbnail .img_cropper:before {
          -webkit-transition: all 320ms ease;
          -moz-transition: all 320ms ease;
          -ms-transition: all 320ms ease;
          -o-transition: all 320ms ease;
          transition: all 320ms ease;
          background: #000000 none repeat scroll 0 0;
          bottom: 0;
          content: "";
          display: block;
          height: 100%;
          left: 0;
          opacity: 0;
          position: absolute;
          right: 0;
          top: 0;
          width: 100%;
          z-index: 2; }
        .home4-latestpost-block .latest-news-side-block .wplp_outside .wplp_widget_default .flex-viewport .wplp_listposts li .insideframe .wpcu-front-box .thumbnail .img_cropper:after {
          -webkit-transition: all 320ms ease;
          -moz-transition: all 320ms ease;
          -ms-transition: all 320ms ease;
          -o-transition: all 320ms ease;
          transition: all 320ms ease;
          content: "\f0c1";
          font-family: 'Fontawesome';
          display: block;
          font-size: 20px;
          position: absolute;
          top: 50%;
          left: 0;
          right: 0;
          margin: -30px auto 0;
          z-index: 3;
          color: #7AC77C;
          text-align: center;
          width: 45px;
          height: 45px;
          line-height: 47px;
          border-radius: 50%;
          background: #ffffff;
          box-shadow: 0 0 0 4px #cccccc;
          opacity: 0; }
    .home4-latestpost-block .latest-news-side-block .wplp_outside .wplp_widget_default .flex-viewport .wplp_listposts li .insideframe .wpcu-front-box .title {
      text-align: left;
      padding-top: 20px;
      padding-bottom: 10px; }
    .home4-latestpost-block .latest-news-side-block .wplp_outside .wplp_widget_default .flex-viewport .wplp_listposts li .insideframe .wpcu-front-box .date {
      background: none;
      border-radius: 0;
      color: #797979;
      display: inline;
      font-weight: 500;
      margin: 0 10px;
      padding: 0 !important;
      position: relative;
      top: 0;
      max-width: auto; }
    .home4-latestpost-block .latest-news-side-block .wplp_outside .wplp_widget_default .flex-viewport .wplp_listposts li .insideframe .wpcu-front-box .author, .home4-latestpost-block .latest-news-side-block .wplp_outside .wplp_widget_default .flex-viewport .wplp_listposts li .insideframe .wpcu-front-box .category, .home4-latestpost-block .latest-news-side-block .wplp_outside .wplp_widget_default .flex-viewport .wplp_listposts li .insideframe .wpcu-front-box .date {
      display: inline;
      margin: 0 10px 0 0; }
      .home4-latestpost-block .latest-news-side-block .wplp_outside .wplp_widget_default .flex-viewport .wplp_listposts li .insideframe .wpcu-front-box .author:before, .home4-latestpost-block .latest-news-side-block .wplp_outside .wplp_widget_default .flex-viewport .wplp_listposts li .insideframe .wpcu-front-box .category:before, .home4-latestpost-block .latest-news-side-block .wplp_outside .wplp_widget_default .flex-viewport .wplp_listposts li .insideframe .wpcu-front-box .date:before {
        font-family: 'Fontawesome';
        display: inline-block;
        margin-right: 5px;
        color: #999999; }
    .home4-latestpost-block .latest-news-side-block .wplp_outside .wplp_widget_default .flex-viewport .wplp_listposts li .insideframe .wpcu-front-box .author:before {
      content: '\f007'; }
    .home4-latestpost-block .latest-news-side-block .wplp_outside .wplp_widget_default .flex-viewport .wplp_listposts li .insideframe .wpcu-front-box .date:before {
      content: '\f07b'; }
    .home4-latestpost-block .latest-news-side-block .wplp_outside .wplp_widget_default .flex-viewport .wplp_listposts li .insideframe .wpcu-front-box .category:before {
      content: '\f07b'; }
    .home4-latestpost-block .latest-news-side-block .wplp_outside .wplp_widget_default .flex-viewport .wplp_listposts li .insideframe .wpcu-front-box .text {
      padding: 10px 0 0; }
      .home4-latestpost-block .latest-news-side-block .wplp_outside .wplp_widget_default .flex-viewport .wplp_listposts li .insideframe .wpcu-front-box .text span {
        min-height: 90px;
        max-height: 90px; }
    .home4-latestpost-block .latest-news-side-block .wplp_outside .wplp_widget_default .flex-viewport .wplp_listposts li .insideframe .wpcu-front-box .read-more {
      color: #7AC77C;
      padding: 0;
      text-transform: capitalize;
      font-weight: 500;
      padding-bottom: 10px; }
    .home4-latestpost-block .latest-news-side-block .wplp_outside .wplp_widget_default .flex-viewport .wplp_listposts li .insideframe .wpcu-front-box .date {
      text-align: left;
      font-size: 14px !important; }
    .home4-latestpost-block .latest-news-side-block .wplp_outside .wplp_widget_default .flex-viewport .wplp_listposts li .insideframe .wpcu-front-box .text, .home4-latestpost-block .latest-news-side-block .wplp_outside .wplp_widget_default .flex-viewport .wplp_listposts li .insideframe .wpcu-front-box .read-more {
      text-align: left;
      font-size: 16px !important; }
    @media (max-width: 767px) {
      .home4-latestpost-block .latest-news-side-block .wplp_outside .wplp_widget_default .flex-viewport .wplp_listposts li .insideframe .wpcu-front-box {
        display: block;
        float: none;
        text-align: left;
        width: 100%; }
        .home4-latestpost-block .latest-news-side-block .wplp_outside .wplp_widget_default .flex-viewport .wplp_listposts li .insideframe .wpcu-front-box .thumbnail {
          min-width: auto;
          max-width: 100%;
          padding-right: 0; } }
.home4-latestpost-block .latest-news-side-block .wplp_outside .wplp_widget_default .flex-control-nav.flex-control-paging {
  padding-top: 20px; }
  .home4-latestpost-block .latest-news-side-block .wplp_outside .wplp_widget_default .flex-control-nav.flex-control-paging li a.flex-active {
    background: #7AC77C; }

.home4-latest-products .title-block {
  padding-bottom: 40px; }

.home4-farmer-team .tlp-team .layout1 .single-team-area .tpl-social {
  position: relative;
  right: 0;
  left: 0;
  margin-top: 10px; }
  .home4-farmer-team .tlp-team .layout1 .single-team-area .tpl-social a {
    display: inline-block; }
.home4-farmer-team .tlp-team .layout1 .single-team-area:hover .tpl-social {
  position: relative;
  right: 0; }

/*
  Home page v5 styles
  ---------------------
*/
.home5-intro-block .tp-service-box1 .tp-feature-icon {
  overflow: hidden;
  margin: 0;
  padding: 20px; }
  .home5-intro-block .tp-service-box1 .tp-feature-icon img {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease; }
.home5-intro-block .tp-service-box1 .tp-about-features a {
  margin-top: 10px; }
.home5-intro-block .tp-service-box1:hover .tp-feature-icon img {
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
  transform: scale(1.2); }

.home5-parallax-block {
  background: #F3CE72; }
  .home5-parallax-block .title-block .header-title, .home5-parallax-block .title-block .header-icon-title {
    color: #333333; }
  .home5-parallax-block .title-block p {
    color: #333333; }
  .home5-parallax-block .content-block h1 {
    color: #333333; }
  .home5-parallax-block .content-block .sp-testimonial-section .owl-wrapper-outer .owl-wrapper .owl-item .testimonial-free {
    color: #333333; }
    .home5-parallax-block .content-block .sp-testimonial-section .owl-wrapper-outer .owl-wrapper .owl-item .testimonial-free .tf-client-testimonial {
      color: #333333; }
    .home5-parallax-block .content-block .sp-testimonial-section .owl-wrapper-outer .owl-wrapper .owl-item .testimonial-free .tf-client-name {
      color: #333333; }
    .home5-parallax-block .content-block .sp-testimonial-section .owl-wrapper-outer .owl-wrapper .owl-item .testimonial-free .tf-client-designation {
      color: #7AC77C; }
    .home5-parallax-block .content-block .sp-testimonial-section .owl-wrapper-outer .owl-wrapper .owl-item .testimonial-free:after {
      color: #555555; }
  .home5-parallax-block .content-block .sp-testimonial-section .owl-controls .owl-pagination {
    padding-top: 30px; }
    .home5-parallax-block .content-block .sp-testimonial-section .owl-controls .owl-pagination .owl-page {
      background-color: #555555; }
      .home5-parallax-block .content-block .sp-testimonial-section .owl-controls .owl-pagination .owl-page span {
        height: auto;
        width: auto; }
      .home5-parallax-block .content-block .sp-testimonial-section .owl-controls .owl-pagination .owl-page.active {
        background-color: #7AC77C; }
  .home5-parallax-block .content-block .sp-testimonial-section .owl-controls .owl-buttons .owl-prev, .home5-parallax-block .content-block .sp-testimonial-section .owl-controls .owl-buttons .owl-next {
    color: #555555;
    background: #ffffff;
    border-radius: 0;
    display: inline-block;
    font-size: 20px;
    padding: 8px 15px;
    opacity: 1;
    top: 30%; }
    .home5-parallax-block .content-block .sp-testimonial-section .owl-controls .owl-buttons .owl-prev:hover, .home5-parallax-block .content-block .sp-testimonial-section .owl-controls .owl-buttons .owl-prev:focus, .home5-parallax-block .content-block .sp-testimonial-section .owl-controls .owl-buttons .owl-next:hover, .home5-parallax-block .content-block .sp-testimonial-section .owl-controls .owl-buttons .owl-next:focus {
      color: #ffffff;
      background: #7AC77C; }

.home5-newsletter-block {
  position: relative;
  background: #F3CE72;
  z-index: 2; }
  .home5-newsletter-block p {
    color: #ffffff; }
  .home5-newsletter-block .newletter-form-block {
    padding-top: 20px;
    padding-bottom: 20px; }
    .home5-newsletter-block .newletter-form-block .tnp-subscription-minimal .tnp-email {
      border: 1px solid #F1F1F1; }
    .home5-newsletter-block .newletter-form-block .tnp-subscription-minimal .tnp-submit:hover {
      background: #48ac4b; }
  .home5-newsletter-block .bottom-right-image-block img {
    position: absolute;
    top: -5px;
    max-width: none;
    right: 0; }

/*
  Home page v6 styles
  ---------------------
*/
.homepage_v6 .tillage-footer {
  background-color: #F1F1F1;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  padding: 57px 0 0;
  position: relative;
  color: #333333; }
  .homepage_v6 .tillage-footer .tillage-footer-container .tillagefooter h2.tillage-widget-title {
    color: #333333; }
  .homepage_v6 .tillage-footer .tillage-footer-container .tillagefooter .tillage-widget a {
    color: #333333; }
  .homepage_v6 .tillage-footer .tillage-footer-container .tillagefooter .tillage-widget.widget_text .textwidget p {
    color: #333333; }
  .homepage_v6 .tillage-footer .tillage-footer-copyright {
    background: #eeeeee;
    color: #333333; }
    .homepage_v6 .tillage-footer .tillage-footer-copyright .site-info {
      text-align: left; }
      .homepage_v6 .tillage-footer .tillage-footer-copyright .site-info i, .homepage_v6 .tillage-footer .tillage-footer-copyright .site-info a {
        color: #7AC77C;
        font-weight: 600; }
  .homepage_v6 .tillage-footer:before {
    bottom: 0;
    content: "";
    height: 100%;
    position: absolute;
    right: 0;
    width: 100%;
    z-index: 0; }

.home6-latestpost-block {
  padding-top: 40px;
  padding-bottom: 40px; }
  .home6-latestpost-block .title-block {
    padding-bottom: 20px; }
  .home6-latestpost-block .blog-portfolio-title {
    color: #ffffff;
    text-transform: uppercase; }
    .home6-latestpost-block .blog-portfolio-title h3 {
      font-size: 14px;
      font-weight: bold;
      letter-spacing: 0.05em; }

/*
  Services page
  ---------------------
*/
.services-block-container {
  padding: 40px 0; }
  .services-block-container.vc_parallax .vc_parallax-inner {
    background-position: center;
    background-size: 500px auto;
    background-repeat: no-repeat; }
  .services-block-container .wpb_content_element {
    margin-bottom: 15px; }
  .services-block-container .title-block {
    padding-bottom: 40px; }
  .services-block-container .tp-about-features {
    text-align: center; }
    .services-block-container .tp-about-features .tp-feature-icon {
      display: inline-block;
      margin: 10px auto; }
      .services-block-container .tp-about-features .tp-feature-icon img {
        max-width: 100px;
        width: 100%;
        height: auto;
        margin: 0 auto; }
      .services-block-container .tp-about-features .tp-feature-icon i, .services-block-container .tp-about-features .tp-feature-icon em {
        -webkit-transition: all 320ms ease;
        -moz-transition: all 320ms ease;
        -ms-transition: all 320ms ease;
        -o-transition: all 320ms ease;
        transition: all 320ms ease;
        font-size: 32px;
        height: 70px;
        width: 70px;
        background: #7AC77C;
        color: #ffffff;
        line-height: 70px;
        border-radius: 50%;
        margin: 0 auto; }
    .services-block-container .tp-about-features h4 {
      color: #1F1F1F; }
    .services-block-container .tp-about-features p {
      padding: 0 30px; }
    .services-block-container .tp-about-features:hover .tp-feature-icon i, .services-block-container .tp-about-features:hover .tp-feature-icon em {
      background: #F3CE72;
      color: #ffffff; }
  .services-block-container .service-feature-background .title-block {
    background: #ffffff;
    padding: 20px;
    border-radius: 50%;
    height: 300px;
    width: 300px;
    top: 150px;
    position: relative;
    word-wrap: break-word;
    margin: 0 auto;
    box-shadow: 0 0 0 4px #cccccc; }
    .services-block-container .service-feature-background .title-block .header-title {
      font-size: 48px; }

/*
  About us page styles
  ---------------------
*/
.about-us2-our-farm-block {
  position: relative;
  padding: 40px 0;
  margin: 40px 0; }
  .about-us2-our-farm-block.vc_parallax .vc_parallax-inner {
    background-position: center 38%;
    background-size: contain;
    background-repeat: no-repeat; }
  .about-us2-our-farm-block .about-intro-image {
    position: absolute;
    margin: 0;
    box-shadow: 0 0 0 2px #cccccc; }
    .about-us2-our-farm-block .about-intro-image img {
      z-index: 0;
      max-width: 400px; }
    .about-us2-our-farm-block .about-intro-image.about-intro-image-top {
      top: -20px;
      right: 0; }
    .about-us2-our-farm-block .about-intro-image.about-intro-image-bottom {
      bottom: -20px;
      left: 0; }
  .about-us2-our-farm-block .banner-content-block {
    position: relative;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    background: #ffffff;
    padding: 20px;
    box-shadow: 0 0 2px 2px #eeeeee;
    z-index: 2; }
    .about-us2-our-farm-block .banner-content-block .tp-farmer-name {
      display: inline-block;
      font-family: 'Playfair Display', serif;
      color: #7AC77C;
      text-transform: capitalize;
      margin-right: 10px;
      font-size: 28px; }
    .about-us2-our-farm-block .banner-content-block .tp-farmer-designation {
      display: inline-block; }
    .about-us2-our-farm-block .banner-content-block .about-our-project-count .statistics {
      background: transparent; }
      .about-us2-our-farm-block .banner-content-block .about-our-project-count .statistics h3 {
        display: none; }
      .about-us2-our-farm-block .banner-content-block .about-our-project-count .statistics .statistics-inner .stat span {
        margin-top: 10px; }
      .about-us2-our-farm-block .banner-content-block .about-our-project-count .statistics .statistics-inner .stat .fa {
        color: #7AC77C; }
      .about-us2-our-farm-block .banner-content-block .about-our-project-count .statistics .statistics-inner .stat .number {
        color: #1F1F1F;
        font-weight: bold;
        margin: 20px 0; }
      .about-us2-our-farm-block .banner-content-block .about-our-project-count .statistics .statistics-inner .stat .count-title {
        color: #797979;
        text-transform: capitalize; }

/*
  Login and registration form styles
  ---------------------
*/
.login_overlay {
  height: 100%;
  width: 100%;
  background-color: #F6F6F6;
  opacity: 0.5;
  position: fixed;
  z-index: 8; }

form.ajax-auth {
  display: none;
  text-align: left;
  z-index: 9;
  position: fixed;
  top: 150px;
  right: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-height: 420px;
  max-width: 350px;
  overflow: auto;
  margin: 0 auto;
  padding: 40px 25px 25px 25px;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
  color: #555555;
  font-size: 11px; }
  form.ajax-auth h1, form.ajax-auth h3 {
    color: #333333;
    line-height: 1; }
  form.ajax-auth h1 {
    font-size: 27px;
    text-align: center;
    margin: 0 0 20px 0; }
  form.ajax-auth h3 {
    font-size: 18px;
    text-align: left;
    margin: 0; }
    form.ajax-auth h3 a {
      color: #7AC77C; }
  form.ajax-auth hr {
    background-color: rgba(0, 0, 0, 0.1);
    border: 0 none;
    height: 1px;
    margin: 20px 0; }
  form.ajax-auth input#username,
  form.ajax-auth input#password,
  form.ajax-auth input#signonname,
  form.ajax-auth input#email,
  form.ajax-auth input#signonpassword,
  form.ajax-auth input#password2,
  form.ajax-auth input#user_login {
    border: 1px solid #eeeeee;
    border-radius: 3px 3px 3px 3px;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.1) inset;
    color: #333333;
    font-size: 15px;
    padding: 10px 10px 10px 13px;
    width: 100%;
    margin: 7px 0 20px 0;
    background-color: #F1F1F1; }
    form.ajax-auth input#username:focus,
    form.ajax-auth input#password:focus,
    form.ajax-auth input#signonname:focus,
    form.ajax-auth input#email:focus,
    form.ajax-auth input#signonpassword:focus,
    form.ajax-auth input#password2:focus,
    form.ajax-auth input#user_login:focus {
      background-color: #ffffff; }
  form.ajax-auth label {
    font-size: 15px;
    color: #555555; }
  form.ajax-auth label.error {
    display: none !important; }
  form.ajax-auth input.error {
    border: 1px solid #FF0000 !important; }
  form.ajax-auth input.submit_button {
    -webkit-transition: all 320ms ease;
    -moz-transition: all 320ms ease;
    -ms-transition: all 320ms ease;
    -o-transition: all 320ms ease;
    transition: all 320ms ease;
    font-size: 13px;
    color: #ffffff;
    border: 1px solid #7AC77C;
    border-radius: 3px;
    padding: 8px 20px;
    font-weight: 600;
    background: #7AC77C;
    float: right;
    margin-bottom: 20px; }
    form.ajax-auth input.submit_button:hover, form.ajax-auth input.submit_button:focus {
      background: #F3CE72;
      border: 1px solid #F3CE72; }
  form.ajax-auth a {
    text-decoration: none; }
    form.ajax-auth a.close {
      color: #333333;
      position: absolute;
      right: 10px;
      top: 10px; }
    form.ajax-auth a.text-link {
      color: #555555;
      float: left;
      margin: 10px 0 0 0; }
      form.ajax-auth a.text-link:hover {
        color: #7AC77C; }
  form.ajax-auth p.status {
    text-align: center;
    margin: -15px 0 20px 0;
    font-weight: 600;
    display: none; }
  @media (max-width: 767px) {
    form.ajax-auth {
      top: 50px; } }

/*
  Error page styles
  ---------------------
*/
.site-main .error-404 {
  background: #ffffff;
  color: #555555;
  font-size: 14px;
  text-align: center;
  padding: 40px 0; }
.site-main .page-content .error .errorboxoutline {
  padding: 40px 0; }
  .site-main .page-content .error .errorboxoutline .error-code span {
    font-size: 180px;
    color: #7AC77C;
    position: relative;
    display: inline-block;
    font-weight: 500; }
  .site-main .page-content .error .errorboxoutline .error-code .first-err {
    left: 0;
    animation: fisrt 0.9s linear; }
  .site-main .page-content .error .errorboxoutline .error-code .first-err + span {
    color: #F3CE72;
    animation: center 1.2s; }
  .site-main .page-content .error .errorboxoutline .error-code .last-err {
    right: 0;
    animation: last 0.9s linear; }
  @media (max-width: 480px) {
    .site-main .page-content .error .errorboxoutline .error-code span {
      font-size: 100px; } }
.site-main .page-content .error .outline {
  padding: 40px 0; }
  .site-main .page-content .error .outline .error-message .error-msg-reaction {
    color: #999999;
    font-size: 42px;
    font-weight: bold;
    text-transform: uppercase; }
  .site-main .page-content .error .outline .error-message .error-page-text {
    color: #333333;
    font-size: 20px;
    font-weight: bold;
    text-transform: uppercase; }
  .site-main .page-content .error .outline .error-message p {
    color: #999999;
    font-size: 14px;
    line-height: 1.8; }
  .site-main .page-content .error .outline .errorboxbody p {
    margin-bottom: 35px;
    margin-top: 0; }
  .site-main .page-content .error .outline .errorboxbody .button-home {
    -webkit-transition: all 320ms ease;
    -moz-transition: all 320ms ease;
    -ms-transition: all 320ms ease;
    -o-transition: all 320ms ease;
    transition: all 320ms ease;
    border: 2px solid #7AC77C;
    background: #7AC77C;
    color: #ffffff;
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    border-radius: 30px;
    padding: 10px 20px 8px;
    text-decoration: none;
    text-transform: uppercase;
    margin: 20px; }
    .site-main .page-content .error .outline .errorboxbody .button-home:hover {
      background: #F3CE72;
      color: #ffffff;
      border: 2px solid #F3CE72; }
@media (max-width: 767px) {
  .site-main .page-content .error .errorboxoutline {
    padding: 40px 0 0; }
  .site-main .page-content .error .outline {
    padding: 0 0 40px; } }

/* Error Code
------------------------ */
@keyframes fisrt {
  0% {
    top: 226px;
    opacity: 0; }
  100% {
    top: 60px;
    opacity: 1; } }
@keyframes center {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }
@keyframes last {
  0% {
    bottom: 226px; }
  100% {
    bottom: 60px; } }
/*
  Standard post format
  ---------------------
*/
article {
  display: block;
  margin-top: 40px;
  margin-bottom: 40px; }

h1.entry-title {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.5em;
  padding-top: 20px;
  margin-bottom: 20px;
  color: #333333;
  text-transform: uppercase; }
  h1.entry-title a {
    color: #333333; }
    h1.entry-title a:hover {
      color: #7AC77C; }

.entry-page-title {
  font-weight: 600; }

.entry-content.post-content-container {
  display: block;
  position: relative;
  border: 1px solid #eeeeee;
  padding: 20px; }
.entry-content.post-full-width-content-container .entry-header .entry-title {
  padding-top: 0;
  margin-top: 0;
  margin-bottom: 10px; }
.entry-content.post-full-width-content-container .entry-excerpt {
  margin: 10px 0; }

.entry-date .posted-on {
  position: absolute;
  top: -40px;
  right: 0;
  left: 0;
  background: #7AC77C;
  color: #ffffff;
  padding: 15px 20px;
  display: inline-block;
  max-width: 200px;
  margin: 10px auto;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  box-shadow: 0 6px 12px 0 #7AC77C; }
  .entry-date .posted-on a {
    color: #ffffff; }
    .entry-date .posted-on a:hover {
      color: #F3CE72; }

.entry-meta {
  font-size: 15px;
  font-weight: 500;
  color: #999999;
  line-height: 2;
  text-transform: capitalize;
  margin: 10px 0; }
  .entry-meta .meta-seperator {
    margin-right: 10px;
    margin-left: 10px; }
  .entry-meta i, .entry-meta .tillage-icon {
    margin: 0 4px; }
  .entry-meta a {
    font-weight: 500;
    color: #333333; }
    .entry-meta a:hover, .entry-meta a:focus {
      color: #7AC77C; }

.entry-image {
  text-align: center; }
  .entry-image .entry-image-container img {
    max-width: 100%;
    height: auto; }

.standard-featured-link {
  position: relative;
  display: block; }
  .standard-featured-link:hover .standard-featured::after, .standard-featured-link:focus .standard-featured::after {
    background: transparent; }

.standard-featured {
  height: 330px;
  display: block;
  position: relative; }
  .standard-featured::after {
    position: absolute;
    content: '';
    display: block;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.15);
    box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.5);
    -webkit-transition: background-color 320ms ease;
    -moz-transition: background-color 320ms ease;
    -ms-transition: background-color 320ms ease;
    -o-transition: background-color 320ms ease;
    transition: background-color 320ms ease; }

.entry-excerpt {
  margin: 15px 0;
  display: block; }
  .entry-excerpt p {
    font-size: 16px; }
  .entry-excerpt.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0;
    color: #ffffff; }
    .entry-excerpt.image-caption p {
      margin: 20px 0;
      color: #ffffff; }

.button-container {
  display: block; }
  .button-container .btn-tillage {
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px);
    background: transparent;
    border: none;
    padding: 10px 0;
    color: #7AC77C;
    font-weight: 500;
    font-size: 16px;
    text-transform: capitalize; }
    .button-container .btn-tillage i, .button-container .btn-tillage em {
      margin-left: 5px; }
    .button-container .btn-tillage:hover, .button-container .btn-tillage:focus {
      -webkit-transform: translateY(2px);
      -moz-transform: translateY(2px);
      -ms-transform: translateY(2px);
      -o-transform: translateY(2px);
      transform: translateY(2px);
      background: transparent;
      color: #48ac4b; }

.entry-footer {
  padding: 15px 0;
  border-bottom: 2px solid #F1F1F1;
  color: #797979;
  display: block;
  margin: 30px 0; }
  .entry-footer a {
    color: #797979;
    display: inline-block;
    font-size: 16px;
    margin: 0 6px;
    text-transform: capitalize; }
    .entry-footer a:hover, .entry-footer a:focus {
      color: #333333; }
  .entry-footer .post-footer-container .post-footer-meta-title {
    font-weight: 600;
    font-size: 14px;
    color: #333333;
    margin-right: 10px;
    text-transform: uppercase; }
  @media (max-width: 767px) {
    .entry-footer .post-footer-container .tags-list, .entry-footer .post-footer-container .social-share-list {
      margin: 15px 0; } }

/*
  Sticky post format
  ---------------------
*/
.sticky {
  overflow: hidden;
  position: relative;
  border: 1px solid #eeeeee; }
  .sticky .entry-image {
    min-height: 40px; }
  .sticky .entry-content {
    color: #1F1F1F;
    border: none; }
    .sticky .entry-content .entry-header .entry-title a {
      color: #7AC77C; }
    .sticky .entry-content .entry-meta a {
      color: #F3CE72; }
  .sticky .entry-footer {
    box-shadow: 0 0 1px 2px #eeeeee; }
    .sticky .entry-footer .post-footer-container a {
      color: #F3CE72; }
      .sticky .entry-footer .post-footer-container a:hover {
        color: #7AC77C; }
  .sticky:before {
    content: "\f005";
    font-family: "Fontawesome";
    color: #ffffff;
    background: #F3CE72;
    display: inline-block;
    padding: 20px 50px 8px;
    position: absolute;
    right: -45px;
    top: -8px;
    font-weight: 700;
    font-size: 20px;
    z-index: 5;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg); }

/*
  Image post format
  ---------------------
*/
.tillage-format-image {
  margin-top: 60px; }
  .tillage-format-image .entry-header {
    height: 600px;
    position: relative; }
  .tillage-format-image .entry-title, .tillage-format-image .entry-meta, .tillage-format-image .entry-header {
    color: #ffffff; }
    .tillage-format-image .entry-title a, .tillage-format-image .entry-meta a, .tillage-format-image .entry-header a {
      color: #ffffff; }
  .tillage-format-image .entry-date .posted-on {
    box-shadow: none; }
  .tillage-format-image .entry-title {
    padding-top: 40px; }

/*
  STATUS POST FORMAT
  -------------------
*/
.tillage-format-status .entry-header {
  box-shadow: 0 0 3px 0 #cccccc; }
.tillage-format-status .post-details {
  padding: 20px 10px; }
  .tillage-format-status .post-details .avatar {
    border: 2px solid #ffffff;
    border-radius: 50%;
    box-shadow: 0 0 0 1px #F3CE72;
    float: left; }
    .tillage-format-status .post-details .avatar img {
      border-radius: 50%;
      display: inline-block;
      float: left; }
  .tillage-format-status .post-details .status-info {
    color: #edb62c;
    font-style: italic;
    margin: 0px 0 10px 90px;
    position: relative; }
    .tillage-format-status .post-details .status-info p {
      font-size: 14px;
      line-height: 1.6;
      margin: 10px 0; }

/*
  AUDIO POST FORMAT
  -------------------
*/
.tillage-format-audio .entry-image iframe {
  width: 100%;
  height: 166px; }
.tillage-format-audio .entry-content .entry-header .entry-title {
  padding-top: 0;
  margin-top: 0; }

/*
  VIDEO POST FORMAT
  -------------------
*/
/*
  GALLERY POST FORMAT
  -------------------
*/
.tillage-format-gallery .entry-header h1.entry-title {
  margin-top: 20px; }
.tillage-format-gallery .standard-featured {
  height: 500px;
  color: #ffffff; }
  .tillage-format-gallery .standard-featured:after {
    background-color: transparent; }
.tillage-format-gallery .carousel.slide .carousel-inner div.item {
  height: 500px;
  background-size: cover; }
.tillage-format-gallery .carousel-control {
  background: none;
  font-size: 20px;
  opacity: 1;
  filter: alpha(opacity=100);
  width: auto; }
  .tillage-format-gallery .carousel-control .preview-container {
    -webkit-transition: all 320ms ease;
    -moz-transition: all 320ms ease;
    -ms-transition: all 320ms ease;
    -o-transition: all 320ms ease;
    transition: all 320ms ease;
    display: block;
    padding: 15px;
    background-color: rgba(0, 0, 0, 0.3);
    line-height: 0;
    position: relative; }
    .tillage-format-gallery .carousel-control .preview-container .thumbnail-container {
      position: absolute;
      display: block;
      height: 50px;
      width: 50px;
      border-radius: 50%;
      background-color: #797979;
      top: 1px;
      -webkit-transition: transform 320ms ease;
      -moz-transition: transform 320ms ease;
      -ms-transition: transform 320ms ease;
      -o-transition: transform 320ms ease;
      transition: transform 320ms ease;
      -webkit-transform: scale(0);
      -moz-transform: scale(0);
      -ms-transform: scale(0);
      -o-transform: scale(0);
      transform: scale(0); }
  .tillage-format-gallery .carousel-control.right {
    right: 20px; }
    .tillage-format-gallery .carousel-control.right .preview-container .thumbnail-container {
      left: 1px; }
  .tillage-format-gallery .carousel-control.left {
    left: 20px; }
    .tillage-format-gallery .carousel-control.left .preview-container .thumbnail-container {
      right: 1px; }
  .tillage-format-gallery .carousel-control:hover {
    opacity: 1; }
    .tillage-format-gallery .carousel-control:hover .preview-container {
      background-color: rgba(0, 0, 0, 0.8); }
      .tillage-format-gallery .carousel-control:hover .preview-container .thumbnail-container {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1); }
    .tillage-format-gallery .carousel-control:hover.right .preview-container {
      padding-left: 60px;
      border-radius: 35px 0 0 35px; }
    .tillage-format-gallery .carousel-control:hover.left .preview-container {
      padding-right: 60px;
      border-radius: 0 35px 35px 0; }
.tillage-format-gallery .entry-excerpt.image-caption {
  -webkit-transition: transform 320ms ease;
  -moz-transition: transform 320ms ease;
  -ms-transition: transform 320ms ease;
  -o-transition: transform 320ms ease;
  transition: transform 320ms ease;
  -webkit-transform: translateY(100%);
  -moz-transform: translateY(100%);
  -ms-transform: translateY(100%);
  -o-transform: translateY(100%);
  transform: translateY(100%); }
.tillage-format-gallery:hover .entry-excerpt.image-caption {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0); }

/*
  Quote POST FORMAT
  -------------------
*/
.tillage-format-quote .entry-header {
  padding: 20px;
  border: 20px solid #eeeeee; }
.tillage-format-quote .quote-content {
  font-size: 19px;
  font-weight: 300;
  line-height: 1.6;
  font-style: italic; }
  .tillage-format-quote .quote-content a {
    color: #555555; }
  .tillage-format-quote .quote-content:before, .tillage-format-quote .quote-content:after {
    display: inline-block;
    position: relative;
    color: #555555; }
  .tillage-format-quote .quote-content::before {
    content: '“'; }
  .tillage-format-quote .quote-content::after {
    content: '”'; }
.tillage-format-quote .quote-author {
  font-family: 'Playfair Display', serif;
  color: #333333;
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 700; }
.tillage-format-quote:hover .quote-content a {
  color: #7AC77C; }

/*
  Link POST FORMAT
  -------------------
*/
.tillage-format-link h1.entry-title a {
  display: block; }
  .tillage-format-link h1.entry-title a .link-icon {
    -webkit-transition: all 320ms ease;
    -moz-transition: all 320ms ease;
    -ms-transition: all 320ms ease;
    -o-transition: all 320ms ease;
    transition: all 320ms ease;
    display: block;
    color: #999999;
    font-size: 26px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #ffffff;
    margin: 20px auto;
    line-height: 54px;
    box-shadow: 0 0 0 4px #cccccc; }
.tillage-format-link h1.entry-title:hover a .link-icon {
  color: #ffffff;
  background: #7AC77C;
  box-shadow: 0 0 0 4px #7AC77C; }

/*
  ASIDE POST FORMAT
  -------------------
*/
.tillage-format-aside .aside-container {
  background: #f8fbe0; }
.tillage-format-aside .aside-featured {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin: 0 auto; }
.tillage-format-aside .aside-text-block {
  padding: 20px; }
.tillage-format-aside .entry-meta {
  margin-bottom: 5px; }
  .tillage-format-aside .entry-meta a {
    color: #555555;
    font-weight: 300; }
.tillage-format-aside .entry-content {
  margin-top: 0; }
.tillage-format-aside .entry-excerpt p {
  color: #555555;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.8; }
.tillage-format-aside .entry-footer {
  border-bottom: none;
  background: rgba(0, 0, 0, 0.05);
  padding-right: 10px; }

/*
	-------------------
	CHAT POST FORMAT
	-------------------
*/
.chat-transcript .chat-row {
  -webkit-transition: all 320ms ease;
  -moz-transition: all 320ms ease;
  -ms-transition: all 320ms ease;
  -o-transition: all 320ms ease;
  transition: all 320ms ease;
  margin-bottom: 10px;
  padding-left: 15px; }
  .chat-transcript .chat-row .chat-author {
    padding-top: 5px; }
    .chat-transcript .chat-row .chat-author cite {
      color: #333333;
      font-weight: 600; }
  .chat-transcript .chat-row .chat-text p {
    padding-bottom: 5px;
    margin: 0; }
  .chat-transcript .chat-row:hover {
    background: #F1F1F1; }
.chat-transcript .chat-row:nth-child(odd) {
  border-left: 3px solid #7AC77C; }
.chat-transcript .chat-row:nth-child(even) {
  border-left: 3px solid #F3CE72; }

/*
  Single post entry meta
  -------------------
*/
.single-post-content-container {
  position: relative;
  margin-top: 40px; }
  .single-post-content-container .entry-header .entry-date .posted-on {
    top: -80px; }
  .single-post-content-container .entry-content {
    margin-top: 20px; }

.single-entry-meta {
  color: #555555;
  font-size: 16px;
  font-style: italic;
  text-transform: capitalize; }
  .single-entry-meta .meta-seperator {
    margin-left: 5px;
    margin-right: 5px; }
  .single-entry-meta a {
    color: #555555; }
    .single-entry-meta a:hover, .single-entry-meta a:focus {
      color: #7AC77C; }

/*
  Single post author details block
  -------------------
*/
.tillage-author-block {
  padding: 20px;
  margin-top: 40px;
  background: #F3CE72;
  color: #000000; }
  .tillage-author-block .tillage-author-image img.avatar {
    border-radius: 50%; }
  .tillage-author-block .tillage-author-description {
    font-size: 16px;
    font-style: italic;
    font-weight: 300;
    margin: 15px auto;
    line-height: 1.8; }
  .tillage-author-block .tillage-author-name {
    margin: 20px 0; }
    .tillage-author-block .tillage-author-name a {
      color: #000000;
      text-transform: uppercase;
      font-weight: bold;
      letter-spacing: 1px; }
      .tillage-author-block .tillage-author-name a:hover, .tillage-author-block .tillage-author-name a:focus {
        color: #7AC77C; }

/*
  Related posts
  -------------------
*/
.related-posts .related-posts_title {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  text-transform: capitalize;
  font-weight: 700;
  position: relative;
  display: block;
  color: #333333;
  margin-bottom: 20px;
  margin-top: 10px; }
.related-posts ul.related-posts_list {
  padding-left: 0;
  margin-left: 0;
  margin-bottom: 30px;
  list-style: none; }
  .related-posts ul.related-posts_list li.related-posts_item {
    margin-bottom: 5px;
    font-size: 16px; }
    .related-posts ul.related-posts_list li.related-posts_item a {
      -webkit-transition: all 320ms ease;
      -moz-transition: all 320ms ease;
      -ms-transition: all 320ms ease;
      -o-transition: all 320ms ease;
      transition: all 320ms ease;
      color: #555555;
      display: block;
      padding: 10px; }
      .related-posts ul.related-posts_list li.related-posts_item a:before {
        content: '\f178';
        font-family: 'Fontawesome';
        margin-right: 8px;
        display: inline-block; }
      .related-posts ul.related-posts_list li.related-posts_item a:hover, .related-posts ul.related-posts_list li.related-posts_item a:focus {
        color: #F3CE72;
        margin-left: 5px; }

/*
  Custom Pagination
  -------------------
*/
.tillage-navigation {
  clear: both;
  display: block;
  padding-top: 40px;
  padding-bottom: 40px;
  text-align: center; }
  .tillage-navigation ul {
    display: inline-block; }
    .tillage-navigation ul li {
      display: inline; }
      .tillage-navigation ul li a {
        color: #fff;
        text-decoration: none;
        background-color: #7AC77C;
        border-radius: 1px;
        cursor: pointer;
        padding: 12px;
        padding: 12px 15px; }
        .tillage-navigation ul li a:hover {
          background-color: #48ac4b;
          color: #fff;
          text-decoration: none; }
      .tillage-navigation ul li.active a {
        background-color: #F3CE72;
        color: #fff; }
      .tillage-navigation ul li.disabled {
        color: #fff; }

/*
  Footer section
  -------------------
*/
.tillage-footer {
  background: #1F1F1F;
  color: #ffffff;
  display: block;
  line-height: 1.8; }
  .tillage-footer .children {
    background: none; }
  .tillage-footer .tillage-footer-container {
    padding: 20px 0; }
    .tillage-footer .tillage-footer-container .tillagefooter h2.tillage-widget-title {
      background: transparent;
      text-align: left;
      text-transform: uppercase;
      position: relative;
      padding: 12px 0;
      color: #ffffff;
      font-weight: 700;
      font-size: 20px;
      border-radius: 0; }
      .tillage-footer .tillage-footer-container .tillagefooter h2.tillage-widget-title:after {
        background: #ffffff; }
    .tillage-footer .tillage-footer-container .tillagefooter .tillage-widget {
      margin: 30px 0;
      position: relative;
      z-index: 3; }
      .tillage-footer .tillage-footer-container .tillagefooter .tillage-widget a {
        color: #ffffff; }
        .tillage-footer .tillage-footer-container .tillagefooter .tillage-widget a:hover {
          color: #edb62c; }
      .tillage-footer .tillage-footer-container .tillagefooter .tillage-widget li {
        color: #ffffff; }
      .tillage-footer .tillage-footer-container .tillagefooter .tillage-widget.widget_text .textwidget p {
        color: #ffffff;
        font-size: 14px; }
      .tillage-footer .tillage-footer-container .tillagefooter .tillage-widget.widget_tag_cloud .tagcloud a {
        font-size: 14px !important;
        text-transform: capitalize;
        border-radius: 0;
        border: 1px solid #ffffff; }
        .tillage-footer .tillage-footer-container .tillagefooter .tillage-widget.widget_tag_cloud .tagcloud a:hover, .tillage-footer .tillage-footer-container .tillagefooter .tillage-widget.widget_tag_cloud .tagcloud a:focus {
          background: #7AC77C;
          color: #ffffff;
          border: 1px solid #7AC77C; }
      .tillage-footer .tillage-footer-container .tillagefooter .tillage-widget.widget_recent_entries ul li {
        position: relative;
        padding: 0 0 0 20px;
        line-height: 2; }
        .tillage-footer .tillage-footer-container .tillagefooter .tillage-widget.widget_recent_entries ul li a {
          border-bottom: 1px solid #eeeeee; }
          .tillage-footer .tillage-footer-container .tillagefooter .tillage-widget.widget_recent_entries ul li a::before {
            content: "\f101";
            font-family: "Fontawesome";
            position: absolute;
            left: 0; }
        .tillage-footer .tillage-footer-container .tillagefooter .tillage-widget.widget_recent_entries ul li:last-child {
          border-bottom: none; }
      .tillage-footer .tillage-footer-container .tillagefooter .tillage-widget.widget_newsletterwidget .tnp-widget {
        margin-top: 20px;
        margin-bottom: 20px; }
        .tillage-footer .tillage-footer-container .tillagefooter .tillage-widget.widget_newsletterwidget .tnp-widget form {
          display: inline-flex;
          vertical-align: middle; }
        .tillage-footer .tillage-footer-container .tillagefooter .tillage-widget.widget_newsletterwidget .tnp-widget .tnp-field {
          margin-bottom: 0; }
          .tillage-footer .tillage-footer-container .tillagefooter .tillage-widget.widget_newsletterwidget .tnp-widget .tnp-field label {
            display: none; }
          .tillage-footer .tillage-footer-container .tillagefooter .tillage-widget.widget_newsletterwidget .tnp-widget .tnp-field .tnp-submit {
            -webkit-transition: all 320ms ease;
            -moz-transition: all 320ms ease;
            -ms-transition: all 320ms ease;
            -o-transition: all 320ms ease;
            transition: all 320ms ease;
            background-color: #7AC77C;
            color: #ffffff;
            border-color: #7AC77C;
            text-transform: uppercase;
            font-weight: 600; }
            .tillage-footer .tillage-footer-container .tillagefooter .tillage-widget.widget_newsletterwidget .tnp-widget .tnp-field .tnp-submit:hover, .tillage-footer .tillage-footer-container .tillagefooter .tillage-widget.widget_newsletterwidget .tnp-widget .tnp-field .tnp-submit:focus {
              background-color: #48ac4b;
              border-color: #48ac4b; }
      .tillage-footer .tillage-footer-container .tillagefooter .tillage-widget.widget_newsletterwidget .tillage-social-icons-block a {
        font-size: 16px;
        padding: 10px 8px;
        color: #ffffff; }
        .tillage-footer .tillage-footer-container .tillagefooter .tillage-widget.widget_newsletterwidget .tillage-social-icons-block a:hover, .tillage-footer .tillage-footer-container .tillagefooter .tillage-widget.widget_newsletterwidget .tillage-social-icons-block a:focus {
          color: #7AC77C; }
      .tillage-footer .tillage-footer-container .tillagefooter .tillage-widget .newsletter .tnp-field .tnp-name, .tillage-footer .tillage-footer-container .tillagefooter .tillage-widget .newsletter .tnp-field .tnp-email {
        border-radius: 4px;
        margin: 10px 0;
        border: 1px solid #cccccc;
        height: 42px;
        text-indent: 10px; }
      .tillage-footer .tillage-footer-container .tillagefooter .tillage-widget .newsletter .tnp-field .tnp-button {
        -webkit-transition: all 320ms ease;
        -moz-transition: all 320ms ease;
        -ms-transition: all 320ms ease;
        -o-transition: all 320ms ease;
        transition: all 320ms ease;
        background-color: #F3CE72;
        border: medium none;
        border-radius: 4px;
        box-shadow: none;
        color: #ffffff;
        display: inline-block;
        font-size: 14px;
        font-weight: 600;
        padding: 10px 20px 8px;
        text-transform: uppercase;
        width: auto; }
        .tillage-footer .tillage-footer-container .tillagefooter .tillage-widget .newsletter .tnp-field .tnp-button:hover, .tillage-footer .tillage-footer-container .tillagefooter .tillage-widget .newsletter .tnp-field .tnp-button:focus {
          background-color: #7AC77C; }
    .tillage-footer .tillage-footer-container .tillagefooter .navbar {
      padding: 20px 0; }
      .tillage-footer .tillage-footer-container .tillagefooter .navbar .navbar-nav {
        float: none; }
        .tillage-footer .tillage-footer-container .tillagefooter .navbar .navbar-nav li {
          float: none;
          display: inline-block;
          border-right: 1px solid #ffffff; }
          .tillage-footer .tillage-footer-container .tillagefooter .navbar .navbar-nav li a {
            font-size: 15px;
            padding: 0; }
            .tillage-footer .tillage-footer-container .tillagefooter .navbar .navbar-nav li a:hover {
              background: none; }
          .tillage-footer .tillage-footer-container .tillagefooter .navbar .navbar-nav li:last-child {
            border-right: none; }
  .tillage-footer .tillage-footer-copyright {
    background: #000000;
    color: #ffffff; }
    .tillage-footer .tillage-footer-copyright .site-info {
      padding: 20px 0;
      line-height: 2;
      position: relative;
      z-index: 3; }
      .tillage-footer .tillage-footer-copyright .site-info a {
        color: #ffffff;
        font-weight: bold; }
        .tillage-footer .tillage-footer-copyright .site-info a:hover {
          color: #48ac4b; }
    .tillage-footer .tillage-footer-copyright .tillage-heart {
      color: #ffffff; }

/*
  Ajax loading
  -------------------
*/
.container-load-previous {
  margin-top: 40px; }

.tillage-blog-container {
  padding-bottom: 40px;
  padding-top: 40px; }

.tillage-posts-container article {
  -webkit-transition: all 320ms ease;
  -moz-transition: all 320ms ease;
  -ms-transition: all 320ms ease;
  -o-transition: all 320ms ease;
  transition: all 320ms ease;
  -webkit-transform: translateY(100px);
  -moz-transform: translateY(100px);
  -ms-transform: translateY(100px);
  -o-transform: translateY(100px);
  transform: translateY(100px);
  opacity: 0;
  margin-bottom: 40px;
  margin-top: 40px;
  padding-bottom: 40px; }
  .tillage-posts-container article.sticky {
    border: 1px solid #eeeeee;
    padding-bottom: 0;
    margin-bottom: 80px; }
  .tillage-posts-container article.reveal {
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px);
    opacity: 1; }
  .tillage-posts-container article .entry-image.post-image-container .entry-image-container a.standard-featured-link {
    position: relative;
    display: block; }
    .tillage-posts-container article .entry-image.post-image-container .entry-image-container a.standard-featured-link:before {
      -webkit-transition: all 320ms ease;
      -moz-transition: all 320ms ease;
      -ms-transition: all 320ms ease;
      -o-transition: all 320ms ease;
      transition: all 320ms ease;
      opacity: 0;
      background: rgba(0, 0, 0, 0.5);
      content: "";
      width: 100%;
      height: 100%;
      position: absolute;
      top: 0;
      bottom: 0;
      right: 0;
      left: 0; }
    .tillage-posts-container article .entry-image.post-image-container .entry-image-container a.standard-featured-link:after {
      -webkit-transition: all 320ms ease;
      -moz-transition: all 320ms ease;
      -ms-transition: all 320ms ease;
      -o-transition: all 320ms ease;
      transition: all 320ms ease;
      opacity: 0;
      content: "\f0c1";
      font-family: "Fontawesome";
      background: #ffffff;
      border-radius: 50%;
      color: #7AC77C;
      display: block;
      font-size: 22px;
      height: 50px;
      left: 0;
      line-height: 50px;
      margin: 0 auto;
      position: absolute;
      right: 0;
      text-align: center;
      top: 45%;
      width: 50px;
      z-index: 2;
      box-shadow: 0 0 0 4px #cccccc; }
  .tillage-posts-container article:hover .entry-image.post-image-container .entry-image-container a.standard-featured-link:before {
    opacity: 1; }
  .tillage-posts-container article:hover .entry-image.post-image-container .entry-image-container a.standard-featured-link:after {
    opacity: 1; }
.tillage-posts-container.post-columns article.sticky {
  padding-bottom: 0;
  margin-bottom: 0; }

.btn-tillage-load {
  display: block;
  font-size: 30px;
  color: #797979;
  max-width: 300px;
  margin: 20px auto;
  cursor: pointer;
  opacity: 0.5;
  -webkit-transition: opacity 320ms ease;
  -moz-transition: opacity 320ms ease;
  -ms-transition: opacity 320ms ease;
  -o-transition: opacity 320ms ease;
  transition: opacity 320ms ease; }
  .btn-tillage-load:hover, .btn-tillage-load:focus, .btn-tillage-load.loading {
    opacity: 1;
    color: #7AC77C; }
  .btn-tillage-load.loading {
    cursor: default; }
  .btn-tillage-load span {
    display: block; }

.spin {
  animation-name: spin;
  animation-duration: 1000ms;
  animation-iteration-count: infinite;
  animation-timing-function: linear; }

/*
  Single
  -------------------
*/
.single article {
  padding-bottom: 0; }
  .single article .entry-image .entry-image-container {
    min-height: 30px; }
.single .entry-title {
  color: #333333;
  font-size: 25px;
  letter-spacing: 1px; }
.single .entry-content {
  margin-top: 40px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7em; }
  .single .entry-content p, .single .entry-content li {
    margin-bottom: 15px; }
  .single .entry-content ul, .single .entry-content ol, .single .entry-content li {
    font-size: 16px; }

.post-link-nav {
  margin-bottom: 20px;
  margin-top: 20px; }
  .post-link-nav .previous, .post-link-nav .next {
    display: inline-block; }
    .post-link-nav .previous a, .post-link-nav .next a {
      -webkit-transition: all 320ms ease;
      -moz-transition: all 320ms ease;
      -ms-transition: all 320ms ease;
      -o-transition: all 320ms ease;
      transition: all 320ms ease;
      background: #7AC77C;
      color: #ffffff;
      font-weight: bold;
      font-size: 14px;
      text-transform: capitalize;
      padding: 10px 15px;
      border-radius: 4px;
      display: inline-block; }
      .post-link-nav .previous a::before, .post-link-nav .previous a:after, .post-link-nav .next a::before, .post-link-nav .next a:after {
        display: inline-block;
        position: relative;
        font-family: "Fontawesome"; }
      .post-link-nav .previous a:hover, .post-link-nav .previous a:focus, .post-link-nav .next a:hover, .post-link-nav .next a:focus {
        background: #F3CE72;
        color: #ffffff; }
  .post-link-nav .previous a::before {
    content: "\f177";
    left: 0;
    margin: 0 10px 0 0; }
  .post-link-nav .next a::after {
    content: "\f178";
    right: 0;
    margin: 0 0 0 10px; }

/*
  Sharing section
  ---------------------
*/
.tillage-shareThis {
  display: block;
  text-align: center;
  border-top: 1px solid #F1F1F1;
  padding-top: 10px;
  clear: both; }
  .tillage-shareThis ul {
    list-style: none;
    margin: 0;
    padding: 0; }
    .tillage-shareThis ul li {
      float: none;
      display: inline-block; }
  .tillage-shareThis a {
    display: inline-block;
    font-size: 20px;
    opacity: 0.65;
    margin: 0 5px;
    color: #1F1F1F; }
    .tillage-shareThis a:hover, .tillage-shareThis a:focus {
      opacity: 1;
      color: #1F1F1F; }

/*
  Comments section
  ---------------------
*/
.comments-area {
  margin-top: 40px;
  margin-bottom: 40px; }
  .comments-area .comments-title {
    margin: 20px 0;
    color: #333333;
    font-size: 24px; }

.comments-list {
  padding: 0;
  list-style: none;
  margin: 20px 0; }
  .comments-list .comment .comment-body {
    padding: 20px 0;
    border-bottom: 1px solid #cccccc; }
    .comments-list .comment .comment-body .comment-awaiting-moderation {
      color: #999999;
      float: right; }
  .comments-list .comment:last-child .comment-body {
    border-bottom: none; }
  .comments-list .pingback .comment-body, .comments-list .trackback .comment-body {
    padding: 20px 0;
    border-bottom: 1px solid #cccccc; }
    .comments-list .pingback .comment-body .col-sm-2, .comments-list .pingback .comment-body .col-sm-10, .comments-list .trackback .comment-body .col-sm-2, .comments-list .trackback .comment-body .col-sm-10 {
      width: 100%; }
    .comments-list .pingback .comment-body .comment-author, .comments-list .trackback .comment-body .comment-author {
      line-height: 1.6;
      margin-bottom: 15px;
      text-align: left; }

.comments-list .children {
  background-color: #F5F5F5;
  list-style: none; }
  .comments-list .children .comment-author:before {
    background-color: #ffffff; }
  @media (max-width: 767px) {
    .comments-list .children {
      margin-left: 0;
      padding-left: 0; } }
@media (max-width: 767px) {
  .comments-list .comment-author {
    margin-bottom: 15px; }
  .comments-list .comment-metadata .comment-edit-link {
    float: none;
    margin-top: 10px; } }

.comment-author {
  position: relative;
  display: block;
  font-size: 18px;
  line-height: 1.4;
  font-weight: 400;
  text-align: center;
  text-transform: capitalize; }
  .comment-author a {
    color: #333333; }
  .comment-author b {
    font-weight: 400; }
  .comment-author .fn {
    display: block;
    font-style: normal; }
  .comment-author .avatar {
    border-radius: 50%;
    margin-bottom: 10px;
    border: 3px solid #ffffff; }
  .comment-author cite {
    font-size: 18px;
    text-transform: capitalize;
    color: #333333; }
  @media (max-width: 767px) {
    .comment-author {
      text-align: left; } }

.bypostauthor .comment-meta .comment-author:before {
  background-color: rgba(0, 162, 228, 0.1); }
.bypostauthor .comment-meta .comment-author b {
  color: #7AC77C; }
.bypostauthor .comment-content {
  border-bottom: 1px solid #7AC77C; }

.comment-metadata {
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 10px; }
  .comment-metadata a {
    color: #1F1F1F; }
    .comment-metadata a:hover, .comment-metadata a:focus {
      color: #7AC77C; }
  .comment-metadata .edit-link {
    color: #F3CE72; }
  .comment-metadata .comment-edit-link {
    float: right; }

.comment-content {
  padding: 20px 0;
  font-size: 16px;
  font-weight: 300;
  border-bottom: 1px solid #E6E6E6;
  margin-left: 60px; }
  @media (max-width: 767px) {
    .comment-content {
      margin-left: 0; } }

.reply {
  float: right;
  padding: 5px 0; }

a.comment-reply-link {
  -webkit-transition: all 320ms ease;
  -moz-transition: all 320ms ease;
  -ms-transition: all 320ms ease;
  -o-transition: all 320ms ease;
  transition: all 320ms ease;
  text-transform: uppercase;
  background: #F3CE72;
  color: #ffffff;
  display: inline-block;
  line-height: 1.6;
  padding: 10px 16px 7px;
  border-radius: 4px;
  font-weight: bold; }
  a.comment-reply-link:before {
    content: '\f122';
    font-family: 'Fontawesome';
    display: inline-block;
    margin-right: 5px; }
  a.comment-reply-link:hover, a.comment-reply-link:focus {
    background: #7AC77C;
    color: #ffffff; }

.comment-respond {
  margin: 40px 0; }
  .comment-respond .comment-reply-title {
    display: block;
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    color: #333333; }
  .comment-respond .comment-form .comment-notes {
    color: #797979;
    margin-bottom: 30px;
    font-size: 14px; }
  .comment-respond .comment-form .form-group {
    padding: 0;
    margin-bottom: 30px; }
    .comment-respond .comment-form .form-group.half-col {
      padding-right: 15px; }
  .comment-respond .comment-form .form-control {
    height: 48px;
    border: 1px solid #eeeeee;
    box-shadow: none;
    padding: 15px; }
  .comment-respond .comment-form textarea.form-control {
    height: 200px; }
  .comment-respond .comment-form label {
    color: #797979;
    font-size: 16px;
    font-weight: 400;
    text-transform: none; }
  .comment-respond .comment-form .form-submit {
    clear: both; }
    .comment-respond .comment-form .form-submit .review-submit-button {
      -webkit-transition: all 320ms ease;
      -moz-transition: all 320ms ease;
      -ms-transition: all 320ms ease;
      -o-transition: all 320ms ease;
      transition: all 320ms ease;
      background-color: #F3CE72;
      border: 1px solid #F3CE72;
      color: #ffffff;
      display: inline-block;
      font-size: 14px;
      font-weight: 600;
      margin: 0 0 20px;
      padding: 15px 20px 12px;
      text-transform: uppercase; }
      .comment-respond .comment-form .form-submit .review-submit-button:hover, .comment-respond .comment-form .form-submit .review-submit-button:focus {
        background: #7AC77C;
        border: 1px solid #7AC77C;
        color: #ffffff; }

/*
  Sidebar section
  ---------------------
*/
.sidebar-overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  cursor: e-resize; }

.tillage-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  background: #1F1F1F;
  color: #ffffff;
  z-index: 999999;
  height: 100vh;
  width: 100%;
  max-width: 300px;
  -webkit-transition: transform 320ms ease;
  -moz-transition: transform 320ms ease;
  -ms-transition: transform 320ms ease;
  -o-transition: transform 320ms ease;
  transition: transform 320ms ease; }
  .tillage-sidebar.sidebar-closed {
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -o-transform: translateX(100%);
    transform: translateX(100%); }
  .tillage-sidebar a {
    color: #F1F1F1; }
    .tillage-sidebar a:hover, .tillage-sidebar a:focus {
      color: #ffffff; }

.tillage-sidebar-container {
  position: relative;
  display: block;
  width: 100%;
  height: 100vh;
  padding-top: 40px; }

.sidebar-scroll {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto; }

.sidebar-close {
  position: absolute;
  top: 10px;
  left: 10px;
  cursor: pointer;
  color: #ffffff; }
  .sidebar-close:hover, .sidebar-close:focus {
    color: #7AC77C; }

.sidebar-reveal {
  display: none; }

/*
  Widgets section
  ---------------------
*/
.tillage-widget.tillage-topbar-widget {
  color: #ffffff; }
  .tillage-widget.tillage-topbar-widget.widget_text {
    margin: 0; }
  .tillage-widget.tillage-topbar-widget h2.tillage-widget-title {
    color: #ffffff; }
    .tillage-widget.tillage-topbar-widget h2.tillage-widget-title a {
      color: #ffffff; }
  .tillage-widget.tillage-topbar-widget li, .tillage-widget.tillage-topbar-widget a, .tillage-widget.tillage-topbar-widget p {
    color: #ffffff; }
  .tillage-widget.tillage-topbar-widget.widget_categories .cat-item a, .tillage-widget.tillage-topbar-widget.widget_product_categories .cat-item a {
    color: #ffffff; }
    .tillage-widget.tillage-topbar-widget.widget_categories .cat-item a:hover, .tillage-widget.tillage-topbar-widget.widget_product_categories .cat-item a:hover {
      color: #7AC77C; }
  .tillage-widget.tillage-topbar-widget.widget_search .searchform .input-group .submit {
    color: #ffffff; }
  .tillage-widget.tillage-topbar-widget.widget_search .form-control {
    background: transparent; }
  .tillage-widget.tillage-topbar-widget .tagcloud a {
    background: #000000; }
    .tillage-widget.tillage-topbar-widget .tagcloud a:hover {
      background: #7AC77C; }

.tillage-widget {
  margin: 30px 0 50px;
  padding: 0 20px; }
  .tillage-widget ul {
    list-style: none;
    margin: 0;
    padding: 0; }
  .tillage-widget li {
    padding: 0;
    margin-bottom: 10px;
    color: #555555; }
    .tillage-widget li a {
      color: #1F1F1F; }
      .tillage-widget li a:hover {
        color: #7AC77C; }
  .tillage-widget h2.tillage-widget-title {
    font-family: 'Playfair Display', serif;
    display: block;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    color: #1F1F1F;
    padding-bottom: 10px;
    line-height: 1.4;
    margin-bottom: 20px; }
    .tillage-widget h2.tillage-widget-title a {
      color: #1F1F1F; }
      .tillage-widget h2.tillage-widget-title a:hover {
        color: #7AC77C; }
    .tillage-widget h2.tillage-widget-title:after {
      background: #7AC77C;
      bottom: -10px;
      content: "";
      display: block;
      height: 2px;
      left: 0;
      position: relative;
      width: 50px; }
  .tillage-widget input, .tillage-widget select, .tillage-widget textarea {
    width: 100%; }
  .tillage-widget #sb_instagram .sbi_photo {
    margin: 2px; }
  @media (min-width: 768px) and (max-width: 991px) {
    .tillage-widget {
      padding: 0; } }

.widget_text .textwidget p {
  font-size: 14px; }

.widget_search .searchform .input-group .form-control {
  border-right: medium none;
  height: 42px; }
.widget_search .searchform .input-group .submit {
  background: transparent;
  border-color: #cccccc;
  border-left: none;
  color: #797979;
  padding: 10px 12px; }

.tagcloud {
  text-align: left; }
  .tagcloud a {
    -webkit-transition: all 320ms ease;
    -moz-transition: all 320ms ease;
    -ms-transition: all 320ms ease;
    -o-transition: all 320ms ease;
    transition: all 320ms ease;
    display: inline-block;
    background: #F1F1F1;
    color: #555555;
    padding: 6px 12px;
    border-radius: 4px;
    margin: 4px 2px;
    text-transform: capitalize; }
    .tagcloud a:hover {
      color: #ffffff;
      background: #7AC77C; }

.widget_categories .cat-item, .widget_product_categories .cat-item {
  position: relative;
  margin-bottom: 0; }
  .widget_categories .cat-item a,
  .widget_categories .cat-item span, .widget_product_categories .cat-item a,
  .widget_product_categories .cat-item span {
    -webkit-transition: all 320ms ease;
    -moz-transition: all 320ms ease;
    -ms-transition: all 320ms ease;
    -o-transition: all 320ms ease;
    transition: all 320ms ease;
    display: block;
    line-height: 1em; }
  .widget_categories .cat-item a, .widget_product_categories .cat-item a {
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    padding: 15px 0;
    color: #555555; }
    .widget_categories .cat-item a:hover, .widget_product_categories .cat-item a:hover {
      color: #7AC77C; }
  .widget_categories .cat-item .post_count, .widget_product_categories .cat-item .post_count {
    position: absolute;
    right: 0;
    top: 2px;
    font-size: 12px;
    font-weight: 700;
    width: 25px;
    height: 25px;
    line-height: 25px;
    text-align: center;
    color: #ffffff;
    background: #7AC77C;
    border-radius: 50px;
    margin: 10px; }

.widget_pages ul li {
  margin-bottom: 0; }
  .widget_pages ul li a {
    color: #555555;
    padding: 5px 0;
    display: block; }

.widget_nav_menu ul li {
  margin-bottom: 0; }
  .widget_nav_menu ul li a {
    color: #555555;
    padding: 5px 0;
    display: block; }

.widget_meta li a {
  color: #555555; }

.widget_rss li a {
  display: block;
  padding-bottom: 10px; }

.recentcomments {
  font-size: 14px;
  color: #555555; }
  .recentcomments span {
    display: block;
    border-bottom: 1px solid #cccccc;
    padding-bottom: 8px;
    margin-bottom: 8px; }
    .recentcomments span a {
      display: block;
      color: #555555;
      text-transform: none; }

.widget_archive ul li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  position: relative;
  display: block; }
  .widget_archive ul li a,
  .widget_archive ul li span {
    -webkit-transition: all 320ms ease;
    -moz-transition: all 320ms ease;
    -ms-transition: all 320ms ease;
    -o-transition: all 320ms ease;
    transition: all 320ms ease;
    display: inline-block;
    line-height: 1em; }
  .widget_archive ul li a {
    padding: 15px 0;
    color: #555555; }
    .widget_archive ul li a:hover {
      color: #7AC77C; }
  .widget_archive ul li .count {
    position: absolute;
    right: 0;
    top: 2px;
    font-size: 12px;
    font-weight: 700;
    width: 25px;
    height: 25px;
    line-height: 25px;
    text-align: center;
    color: #ffffff;
    background: #7AC77C;
    border-radius: 50px;
    margin: 10px; }

.widget_calendar .calendar_wrap table caption {
  color: inherit; }
.widget_calendar .calendar_wrap table tr td, .widget_calendar .calendar_wrap table tr th {
  padding: 5px; }
.widget_calendar .calendar_wrap #today {
  color: #7AC77C;
  border: 1px solid #7AC77C; }
@media (max-width: 991px) and (min-width: 768px) {
  .widget_calendar .calendar_wrap table tr td, .widget_calendar .calendar_wrap table tr th {
    padding: 8px 4px; } }
@media (max-width: 767px) {
  .widget_calendar .calendar_wrap table tr td, .widget_calendar .calendar_wrap table tr th {
    padding: 8px; } }

.widget_recent_entries ul li a {
  display: block;
  padding-bottom: 8px;
  margin-bottom: 8px;
  border-bottom: 1px solid #cccccc;
  color: #555555; }
.widget_recent_entries ul li .post-date {
  display: block;
  text-transform: uppercase;
  font-size: 10px;
  color: #797979; }

.tillage-popular-posts-widget .media-body, .tillage-popular-posts-widget .media-left, .tillage-popular-posts-widget .media-right {
  vertical-align: middle; }
.tillage-popular-posts-widget .media-left {
  min-width: 30px; }
  .tillage-popular-posts-widget .media-left img {
    max-width: 100%;
    height: auto; }
.tillage-popular-posts-widget .media-body {
  width: auto; }
  .tillage-popular-posts-widget .media-body a {
    color: #555555;
    font-size: 14px; }
    .tillage-popular-posts-widget .media-body a:hover {
      color: #7AC77C; }

.tillage-profile-widget .icon-wrapper a {
  color: #333333; }
  .tillage-profile-widget .icon-wrapper a:hover {
    color: #edb62c; }
.tillage-profile-widget ul.navbar-nav li a {
  margin: 0 10px; }

.mega-menu-item.widget_sp_image .mega-block-title {
  display: none !important; }

/*
  Shop page Widgets section
  ---------------------
*/
.tillage-shop-widget {
  margin: 0 0 50px;
  padding: 0 20px; }
  .tillage-shop-widget ul {
    list-style: none;
    margin: 0;
    padding: 0; }
  .tillage-shop-widget li {
    padding: 0;
    margin-bottom: 10px; }
  .tillage-shop-widget h2.tillage-widget-title {
    font-family: 'Playfair Display', serif;
    display: block;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    color: #333333;
    padding-bottom: 10px;
    line-height: 1.5em;
    margin-bottom: 20px;
    margin-top: 0; }
    .tillage-shop-widget h2.tillage-widget-title:after {
      background: #7AC77C;
      bottom: -10px;
      content: "";
      display: block;
      height: 2px;
      left: 0;
      position: relative;
      width: 50px; }

.woocommerce.widget_price_filter .price_slider_wrapper {
  padding: 20px 0; }
  .woocommerce.widget_price_filter .price_slider_wrapper .ui-slider {
    background: #999999;
    height: 4px; }
    .woocommerce.widget_price_filter .price_slider_wrapper .ui-slider .ui-slider-range {
      background: #7AC77C; }
    .woocommerce.widget_price_filter .price_slider_wrapper .ui-slider .ui-slider-handle {
      -webkit-transform: rotate(45deg);
      -moz-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
      -o-transform: rotate(45deg);
      transform: rotate(45deg);
      background: #7AC77C;
      border: 2px solid #ffffff;
      box-shadow: 0 0 1px 1px #999999;
      border-radius: 0; }
  .woocommerce.widget_price_filter .price_slider_wrapper .price_slider_amount {
    padding-top: 20px; }
    .woocommerce.widget_price_filter .price_slider_wrapper .price_slider_amount .button {
      -webkit-transition: all 320ms ease;
      -moz-transition: all 320ms ease;
      -ms-transition: all 320ms ease;
      -o-transition: all 320ms ease;
      transition: all 320ms ease;
      background: #7AC77C;
      color: #ffffff;
      border-radius: 0;
      font-size: 13px;
      line-height: 18px;
      padding: 8px 15px;
      text-transform: uppercase; }
      .woocommerce.widget_price_filter .price_slider_wrapper .price_slider_amount .button:hover {
        background: #F3CE72;
        color: #ffffff; }
    .woocommerce.widget_price_filter .price_slider_wrapper .price_slider_amount .price_label {
      font-size: 14px;
      font-weight: 600; }

.woocommerce.widget_product_search .woocommerce-product-search {
  display: flex; }
  .woocommerce.widget_product_search .woocommerce-product-search input {
    border-radius: 0; }
  .woocommerce.widget_product_search .woocommerce-product-search .search-field {
    border: 1px solid #cccccc;
    height: 35px;
    text-indent: 5px;
    max-width: 65%; }
  .woocommerce.widget_product_search .woocommerce-product-search input[type="submit"] {
    -webkit-transition: all 320ms ease;
    -moz-transition: all 320ms ease;
    -ms-transition: all 320ms ease;
    -o-transition: all 320ms ease;
    transition: all 320ms ease;
    background: #7AC77C;
    color: #ffffff;
    border: medium none;
    border-radius: 0;
    font-size: 13px;
    font-weight: 700;
    padding: 8px;
    text-transform: uppercase; }
    .woocommerce.widget_product_search .woocommerce-product-search input[type="submit"]:hover {
      background: #F3CE72;
      color: #ffffff; }

.woocommerce.widget_shopping_cart .widget_shopping_cart_content .cart_list .mini_cart_item {
  padding-bottom: 10px;
  margin-bottom: 10px;
  padding-left: 0px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06); }
  .woocommerce.widget_shopping_cart .widget_shopping_cart_content .cart_list .mini_cart_item a {
    color: #555555;
    display: block;
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 2px;
    padding-bottom: 4px;
    text-transform: capitalize; }
  .woocommerce.widget_shopping_cart .widget_shopping_cart_content .cart_list .mini_cart_item .remove {
    left: auto;
    right: 0; }
  .woocommerce.widget_shopping_cart .widget_shopping_cart_content .cart_list .mini_cart_item img {
    float: left;
    height: auto;
    margin-right: 10px;
    margin-left: 0;
    width: 60px; }
  .woocommerce.widget_shopping_cart .widget_shopping_cart_content .cart_list .mini_cart_item .quantity {
    font-size: 13px;
    font-weight: 700;
    color: #333333; }
  .woocommerce.widget_shopping_cart .widget_shopping_cart_content .cart_list .mini_cart_item:last-child {
    border-bottom: none; }
.woocommerce.widget_shopping_cart .widget_shopping_cart_content .total {
  padding-top: 20px;
  padding-bottom: 10px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  font-size: 16px;
  color: #333333; }
  .woocommerce.widget_shopping_cart .widget_shopping_cart_content .total .woocommerce-Price-amount {
    font-weight: 600; }
.woocommerce.widget_shopping_cart .widget_shopping_cart_content .buttons .button {
  -webkit-transition: all 320ms ease;
  -moz-transition: all 320ms ease;
  -ms-transition: all 320ms ease;
  -o-transition: all 320ms ease;
  transition: all 320ms ease;
  background: #7AC77C;
  color: #ffffff;
  border-radius: 0;
  font-size: 13px;
  text-transform: uppercase;
  padding: 8px 12px; }
  .woocommerce.widget_shopping_cart .widget_shopping_cart_content .buttons .button:hover {
    background: #F3CE72;
    color: #ffffff; }

.woocommerce.widget_products .product_list_widget li, .woocommerce.widget_top_rated_products .product_list_widget li {
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06); }
  .woocommerce.widget_products .product_list_widget li a, .woocommerce.widget_top_rated_products .product_list_widget li a {
    color: #555555;
    display: block;
    font-weight: 400;
    margin-bottom: 2px;
    padding-bottom: 4px;
    text-transform: capitalize; }
    .woocommerce.widget_products .product_list_widget li a:hover, .woocommerce.widget_top_rated_products .product_list_widget li a:hover {
      color: #7AC77C; }
  .woocommerce.widget_products .product_list_widget li img, .woocommerce.widget_top_rated_products .product_list_widget li img {
    float: left;
    height: auto;
    margin-right: 10px;
    margin-left: 0;
    width: 60px; }
  .woocommerce.widget_products .product_list_widget li .woocs_price_code, .woocommerce.widget_top_rated_products .product_list_widget li .woocs_price_code {
    line-height: 1.5;
    display: block;
    margin-top: 10px; }
  .woocommerce.widget_products .product_list_widget li del, .woocommerce.widget_top_rated_products .product_list_widget li del {
    color: #797979;
    font-size: 14px; }
    .woocommerce.widget_products .product_list_widget li del .woocommerce-Price-amount, .woocommerce.widget_top_rated_products .product_list_widget li del .woocommerce-Price-amount {
      color: #797979;
      font-size: 14px; }
  .woocommerce.widget_products .product_list_widget li ins, .woocommerce.widget_products .product_list_widget li .woocommerce-Price-amount, .woocommerce.widget_top_rated_products .product_list_widget li ins, .woocommerce.widget_top_rated_products .product_list_widget li .woocommerce-Price-amount {
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    color: #333333; }
  .woocommerce.widget_products .product_list_widget li:last-child, .woocommerce.widget_top_rated_products .product_list_widget li:last-child {
    border-bottom: none; }

.widget-woocommerce-currency-switcher .woocommerce-currency-switcher-form .dd-container .dd-select {
  background: transparent !important; }
  .widget-woocommerce-currency-switcher .woocommerce-currency-switcher-form .dd-container .dd-select .dd-pointer {
    border-color: #936FA4 transparent transparent; }
    .widget-woocommerce-currency-switcher .woocommerce-currency-switcher-form .dd-container .dd-select .dd-pointer.dd-pointer-up {
      border-color: transparent transparent #936FA4 !important; }

/*
  About section
  ---------------------
*/
.tillage-about-container .about-team {
  -webkit-transition: all 320ms ease;
  -moz-transition: all 320ms ease;
  -ms-transition: all 320ms ease;
  -o-transition: all 320ms ease;
  transition: all 320ms ease;
  margin: 40px auto;
  position: relative;
  overflow: hidden; }
  .tillage-about-container .about-team .about-image {
    text-align: center; }
    .tillage-about-container .about-team .about-image img {
      margin: 0 auto;
      max-width: 300px;
      width: 100%;
      height: auto; }
  .tillage-about-container .about-team .about-content {
    -webkit-transition: all 320ms ease;
    -moz-transition: all 320ms ease;
    -ms-transition: all 320ms ease;
    -o-transition: all 320ms ease;
    transition: all 320ms ease;
    -webkit-transform: translateY(50px);
    -moz-transform: translateY(50px);
    -ms-transform: translateY(50px);
    -o-transform: translateY(50px);
    transform: translateY(50px);
    background: white;
    background: rgba(255, 255, 255, 0.8);
    opacity: 0;
    padding: 10px 0;
    text-align: center;
    border-bottom: 1px solid #cccccc;
    margin-bottom: 10px;
    position: absolute;
    top: 0;
    height: 100%;
    width: 100%; }
    .tillage-about-container .about-team .about-content p {
      margin: 0; }
    .tillage-about-container .about-team .about-content .about-name {
      text-transform: uppercase;
      color: #1F1F1F;
      font-size: 18px;
      font-weight: 700;
      margin-bottom: 0; }
    .tillage-about-container .about-team .about-content .about-designation {
      color: #333333;
      font-size: 14px;
      font-weight: 500; }
    .tillage-about-container .about-team .about-content .about-social-icons {
      padding: 10px 0;
      text-align: center;
      margin-top: 10px; }
      .tillage-about-container .about-team .about-content .about-social-icons a {
        -webkit-transition: all 320ms ease;
        -moz-transition: all 320ms ease;
        -ms-transition: all 320ms ease;
        -o-transition: all 320ms ease;
        transition: all 320ms ease;
        margin: 10px;
        font-size: 20px;
        color: #1F1F1F; }
        .tillage-about-container .about-team .about-content .about-social-icons a:hover {
          color: #48ac4b; }
    .tillage-about-container .about-team .about-content .about-content-inner {
      display: block;
      position: relative;
      top: 40%; }
  .tillage-about-container .about-team:hover .about-content {
    -webkit-transition: all 320ms ease;
    -moz-transition: all 320ms ease;
    -ms-transition: all 320ms ease;
    -o-transition: all 320ms ease;
    transition: all 320ms ease;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    opacity: 1; }

.tillage-contact-information {
  padding-top: 20px; }
  .tillage-contact-information .address {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 10px; }
    .tillage-contact-information .address i {
      margin-right: 15px;
      font-size: 18px;
      color: #333333; }
  .tillage-contact-information p {
    font-size: 14px; }
    .tillage-contact-information p i {
      margin-right: 10px;
      font-size: 18px;
      color: #333333; }
  .tillage-contact-information h4 {
    color: #797979;
    font-size: 16px;
    text-transform: uppercase;
    margin-top: 30px; }
    .tillage-contact-information h4 strong {
      color: #333333; }

.brand-information {
  padding-top: 20px; }
  .brand-information h4 {
    font-size: 16px;
    color: #333333;
    font-weight: bold;
    margin-bottom: 20px; }
  .brand-information p {
    margin-bottom: 20px; }

.tillage-contact-map, .tillage-contact-form {
  padding-top: 20px; }

/*
  Contact section
  ---------------------
*/
.contact-form-container {
  margin: 40px 0; }
  .contact-form-container .contact-header-title {
    font-size: 26px;
    position: relative;
    color: #333333;
    padding-bottom: 10px;
    font-weight: 600; }
    .contact-form-container .contact-header-title:after {
      content: "";
      background: #7AC77C;
      display: block;
      height: 2px;
      width: 50px;
      position: relative;
      bottom: -8px;
      left: 0; }
  .contact-form-container .contact-information .contact-info {
    display: block;
    clear: both;
    padding-bottom: 15px; }
    .contact-form-container .contact-information .contact-info .contact-icon-block {
      -webkit-transition: all 320ms ease;
      -moz-transition: all 320ms ease;
      -ms-transition: all 320ms ease;
      -o-transition: all 320ms ease;
      transition: all 320ms ease;
      background: #7AC77C;
      color: #ffffff;
      width: 60px;
      height: 60px;
      line-height: 60px;
      font-size: 22px;
      display: inline-block;
      float: left;
      text-align: center;
      border-radius: 50%;
      margin: 0 20px;
      box-shadow: 0 0 0 4px #ffffff; }
    .contact-form-container .contact-information .contact-info .contact-content-block {
      display: inline-block; }
      .contact-form-container .contact-information .contact-info .contact-content-block address, .contact-form-container .contact-information .contact-info .contact-content-block p {
        font-size: 14px; }
      .contact-form-container .contact-information .contact-info .contact-content-block h5 {
        color: #333333;
        font-size: 16px;
        font-weight: 600;
        margin: 5px 0; }
    .contact-form-container .contact-information .contact-info:hover .contact-icon-block {
      box-shadow: 0 0 0 4px #cccccc; }

.form-control-msg {
  display: none; }

.has-error .form-control-msg {
  display: block; }

.js-show-feedback {
  display: block; }

.btn-tillage-form {
  -webkit-transition: all 320ms ease;
  -moz-transition: all 320ms ease;
  -ms-transition: all 320ms ease;
  -o-transition: all 320ms ease;
  transition: all 320ms ease;
  -moz-appearance: none;
  background-color: #1F1F1F;
  border-color: transparent;
  border-radius: 0;
  border-style: solid;
  border-width: 1px;
  color: #ffffff;
  cursor: pointer;
  display: inline-block;
  font-family: inherit;
  font-size: 13px;
  font-weight: bold;
  line-height: normal;
  margin: 20px 0;
  padding: 20px 40px;
  position: relative;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase; }
  .btn-tillage-form:hover, .btn-tillage-form:focus {
    background: #48ac4b;
    color: #ffffff; }

/*--------------------------------------------------------------
# BACK TO TOP
--------------------------------------------------------------*/
#back-to-top {
  position: fixed;
  right: 30px;
  top: auto;
  z-index: 999;
  display: none;
  bottom: -60px; }
  @media (min-width: 900px) {
    #back-to-top {
      display: block; } }
  #back-to-top .btn {
    background: black;
    background: rgba(0, 0, 0, 0.8);
    -webkit-transition: all 0.32s ease;
    -moz-transition: all 0.32s ease;
    -ms-transition: all 0.32s ease;
    -o-transition: all 0.32s ease;
    transition: all 0.32s ease;
    border: 0;
    color: #ffffff;
    height: 45px;
    width: 45px;
    line-height: 8px;
    padding: 0;
    text-align: center;
    font-size: 14px;
    box-shadow: none;
    text-shadow: none; }
    #back-to-top .btn:hover, #back-to-top .btn:active, #back-to-top .btn:focus {
      background: #7AC77C;
      color: #ffffff;
      outline: none; }
  #back-to-top.affix {
    bottom: 70px; }

/*--------------------------------------------------------------
# CSS LOADER
--------------------------------------------------------------*/
.loader {
  display: flex;
  justify-content: space-around;
  align-items: center;
  position: fixed;
  z-index: 9999;
  width: 100%;
  height: 100%;
  overflow: visible;
  background: #ffffff; }

.cssload-square {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  margin: 68px auto;
  width: 19px;
  height: 19px; }

.cssload-square-part {
  position: absolute;
  width: 19px;
  height: 19px;
  z-index: 1;
  animation: cssload-part-anim 0.92s cubic-bezier(0.445, 0.05, 0.55, 0.95) infinite alternate;
  -o-animation: cssload-part-anim 0.92s cubic-bezier(0.445, 0.05, 0.55, 0.95) infinite alternate;
  -ms-animation: cssload-part-anim 0.92s cubic-bezier(0.445, 0.05, 0.55, 0.95) infinite alternate;
  -webkit-animation: cssload-part-anim 0.92s cubic-bezier(0.445, 0.05, 0.55, 0.95) infinite alternate;
  -moz-animation: cssload-part-anim 0.92s cubic-bezier(0.445, 0.05, 0.55, 0.95) infinite alternate; }

.cssload-square-green {
  background: #7AC77C;
  right: 0;
  bottom: 0;
  animation-direction: alternate-reverse;
  -o-animation-direction: alternate-reverse;
  -ms-animation-direction: alternate-reverse;
  -webkit-animation-direction: alternate-reverse;
  -moz-animation-direction: alternate-reverse; }

.cssload-square-pink {
  background: #F3CE72;
  left: 0;
  top: 0; }

.cssload-square-blend {
  background: rgba(0, 0, 0, 0.3);
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 2;
  animation: blend-anim 0.92s ease-in infinite;
  -o-animation: blend-anim 0.92s ease-in infinite;
  -ms-animation: blend-anim 0.92s ease-in infinite;
  -webkit-animation: blend-anim 0.92s ease-in infinite;
  -moz-animation: blend-anim 0.92s ease-in infinite; }

/*--------------------------------------------------------------
# SHOP PAGE
--------------------------------------------------------------*/
.woocommerce .shop-container {
  padding-top: 40px;
  padding-bottom: 40px;
  margin-top: 40px; }
  @media (max-width: 767px) {
    .woocommerce .shop-container {
      padding: 20px; } }
  .woocommerce .shop-container ul.products li.product {
    margin-bottom: 20px;
    margin-top: 20px;
    overflow: hidden;
    position: relative;
    text-align: center;
    padding: 0; }
    .woocommerce .shop-container ul.products li.product .gridlist-buttonwrap {
      margin-top: 10px;
      margin-bottom: 20px; }
    @media (min-width: 769px) {
      .woocommerce .shop-container ul.products li.product {
        width: 30.75%; } }
.woocommerce.tillage-shop-container {
  padding-top: 40px;
  padding-bottom: 40px; }
  .woocommerce.tillage-shop-container .shop-container {
    padding-top: 0;
    margin-top: 20px; }
.woocommerce .shop-list-view-container ul.products li.product {
  float: none !important;
  text-align: left !important;
  width: 100% !important; }
  .woocommerce .shop-list-view-container ul.products li.product .product-image-wrapper img {
    float: left;
    margin-bottom: 1.5em;
    margin-right: 3.8%;
    width: 30.75%; }
.woocommerce .shop-two-columns ul.products li.product {
  width: 46.15%; }
  .woocommerce .shop-two-columns ul.products li.product.first {
    clear: none; }
  .woocommerce .shop-two-columns ul.products li.product.last {
    margin-right: 3.8%; }

/*--------------------------------------------------------------
# WOOCOMMERCE
--------------------------------------------------------------*/
.woocommerce .blockUI.blockOverlay::before, .woocommerce .loader::before, .woocommerce-page .blockUI.blockOverlay::before, .woocommerce-page .loader::before {
  display: none; }
.woocommerce #respond input#submit.alt, .woocommerce a.button.alt, .woocommerce button.button.alt, .woocommerce input.button.alt,
.woocommerce #respond input#submit, .woocommerce a.button, .woocommerce button.button, .woocommerce input.button, .woocommerce .button, .woocommerce-page #respond input#submit.alt, .woocommerce-page a.button.alt, .woocommerce-page button.button.alt, .woocommerce-page input.button.alt,
.woocommerce-page #respond input#submit, .woocommerce-page a.button, .woocommerce-page button.button, .woocommerce-page input.button, .woocommerce-page .button {
  -webkit-transition: all 320ms ease;
  -moz-transition: all 320ms ease;
  -ms-transition: all 320ms ease;
  -o-transition: all 320ms ease;
  transition: all 320ms ease;
  background: #7AC77C;
  color: #ffffff;
  border-radius: 0;
  font-size: 14px;
  padding: 12px 20px;
  line-height: 2;
  text-transform: uppercase; }
  .woocommerce #respond input#submit.alt:hover, .woocommerce a.button.alt:hover, .woocommerce button.button.alt:hover, .woocommerce input.button.alt:hover,
  .woocommerce #respond input#submit:hover, .woocommerce a.button:hover, .woocommerce button.button:hover, .woocommerce input.button:hover, .woocommerce .button:hover, .woocommerce-page #respond input#submit.alt:hover, .woocommerce-page a.button.alt:hover, .woocommerce-page button.button.alt:hover, .woocommerce-page input.button.alt:hover,
  .woocommerce-page #respond input#submit:hover, .woocommerce-page a.button:hover, .woocommerce-page button.button:hover, .woocommerce-page input.button:hover, .woocommerce-page .button:hover {
    background: #48ac4b;
    color: #ffffff; }

.woocommerce-info, .woocommerce-message {
  border-top-color: #7AC77C; }
  .woocommerce-info:before, .woocommerce-message:before {
    color: #7AC77C; }

@media (max-width: 480px) {
  .woocommerce ul.products li.product, .woocommerce-page ul.products li.product, .woocommerce-page[class*="columns-"] ul.products li.product, .woocommerce[class*="columns-"] ul.products li.product {
    width: 100%; } }

.woocommerce ul.products li.product {
  position: relative;
  padding: 20px;
  margin-bottom: 20px;
  text-align: center;
  overflow: hidden;
  box-shadow: 0 0 2px 1px #cccccc; }
  .woocommerce ul.products li.product .woocommerce-LoopProduct-link {
    display: block; }
  .woocommerce ul.products li.product .onsale {
    background: #F3CE72;
    text-transform: uppercase;
    height: 50px;
    width: 50px;
    line-height: 48px;
    left: 5px;
    top: 5px;
    margin: 0; }
  .woocommerce ul.products li.product .product-image-wrapper {
    overflow: hidden;
    border-bottom: 1px solid #eeeeee; }
    .woocommerce ul.products li.product .product-image-wrapper img {
      -webkit-transform: scale(1);
      -moz-transform: scale(1);
      -ms-transform: scale(1);
      -o-transform: scale(1);
      transform: scale(1);
      -webkit-transition: all 1000ms ease;
      -moz-transition: all 1000ms ease;
      -ms-transition: all 1000ms ease;
      -o-transition: all 1000ms ease;
      transition: all 1000ms ease;
      width: 100%;
      height: auto;
      margin: 0 auto; }
    .woocommerce ul.products li.product .product-image-wrapper .out-of-stock {
      background: rgba(0, 0, 0, 0.7);
      border-radius: 50%;
      color: #ffffff;
      font-weight: 400;
      font-size: 13px;
      height: 100px;
      left: 0;
      line-height: 1.8;
      margin: 0 auto;
      overflow-wrap: break-word;
      padding-top: 25px;
      position: absolute;
      right: 0;
      text-align: center;
      text-transform: uppercase;
      top: 25%;
      width: 100px; }
      .woocommerce ul.products li.product .product-image-wrapper .out-of-stock span {
        display: block;
        font-weight: 600;
        font-size: 15px; }
  .woocommerce ul.products li.product .woocommerce-loop-product__title {
    color: #333333;
    font-size: 17px;
    margin: 10px 0 0; }
  .woocommerce ul.products li.product .shop-price-container {
    margin: 10px 0;
    display: block; }
  .woocommerce ul.products li.product .woocommerce-product-details__short-description {
    display: none; }
  .woocommerce ul.products li.product .price {
    display: inline-block;
    font-size: 14px;
    font-weight: bold;
    margin: 0 0.27778rem;
    vertical-align: middle;
    color: #555555; }
    .woocommerce ul.products li.product .price .woocommerce-Price-amount {
      color: #555555;
      font-size: 14px; }
    .woocommerce ul.products li.product .price .woocs_price_code del, .woocommerce ul.products li.product .price .woocs_price_code ins {
      display: inline-block;
      opacity: 1; }
    .woocommerce ul.products li.product .price .woocs_price_code del {
      text-decoration: line-through;
      color: #999999;
      font-size: 14px;
      line-height: 2; }
      .woocommerce ul.products li.product .price .woocs_price_code del .woocommerce-Price-amount {
        color: #999999;
        font-size: 14px; }
    .woocommerce ul.products li.product .price .woocs_price_code ins {
      text-decoration: none;
      color: #555555;
      font-size: 16px; }
      .woocommerce ul.products li.product .price .woocs_price_code ins .woocommerce-Price-amount {
        color: #555555;
        font-size: 16px; }
  .woocommerce ul.products li.product .add_to_cart_button, .woocommerce ul.products li.product .product_type_simple, .woocommerce ul.products li.product .product_type_grouped, .woocommerce ul.products li.product .product_type_external, .woocommerce ul.products li.product .product_type_variable {
    -webkit-transition: all 320ms ease;
    -moz-transition: all 320ms ease;
    -ms-transition: all 320ms ease;
    -o-transition: all 320ms ease;
    transition: all 320ms ease;
    display: inline-block;
    background: #7AC77C;
    color: #ffffff;
    font-size: 13px;
    font-weight: bold;
    position: absolute;
    top: 180px;
    right: -50px;
    text-transform: uppercase;
    border-radius: 50%;
    height: 50px;
    line-height: 50px;
    padding: 0 0 0 50px;
    text-align: center;
    width: 50px;
    opacity: 0; }
    .woocommerce ul.products li.product .add_to_cart_button:before, .woocommerce ul.products li.product .product_type_simple:before, .woocommerce ul.products li.product .product_type_grouped:before, .woocommerce ul.products li.product .product_type_external:before, .woocommerce ul.products li.product .product_type_variable:before {
      display: block;
      font-family: 'FontAwesome';
      font-size: 13px;
      margin-left: 15px;
      font-weight: normal;
      position: absolute;
      left: 0;
      right: 0;
      margin: 0 auto;
      color: #ffffff; }
    .woocommerce ul.products li.product .add_to_cart_button:hover, .woocommerce ul.products li.product .add_to_cart_buttonfocus, .woocommerce ul.products li.product .product_type_simple:hover, .woocommerce ul.products li.product .product_type_simplefocus, .woocommerce ul.products li.product .product_type_grouped:hover, .woocommerce ul.products li.product .product_type_groupedfocus, .woocommerce ul.products li.product .product_type_external:hover, .woocommerce ul.products li.product .product_type_externalfocus, .woocommerce ul.products li.product .product_type_variable:hover, .woocommerce ul.products li.product .product_type_variablefocus {
      background: #F3CE72; }
  .woocommerce ul.products li.product .added_to_cart {
    -webkit-transition: all 320ms ease;
    -moz-transition: all 320ms ease;
    -ms-transition: all 320ms ease;
    -o-transition: all 320ms ease;
    transition: all 320ms ease;
    display: inline-block;
    background: #7AC77C;
    color: #ffffff;
    font-size: 12px;
    font-weight: bold;
    margin: 5px;
    position: relative;
    padding: 8px 15px;
    text-transform: uppercase; }
    .woocommerce ul.products li.product .added_to_cart:hover, .woocommerce ul.products li.product .added_to_cart:focus {
      background: #F3CE72; }
  .woocommerce ul.products li.product .product_type_simple:before {
    content: "\f06e"; }
  .woocommerce ul.products li.product .add_to_cart_button.product_type_simple:before {
    content: "\f07a"; }
  .woocommerce ul.products li.product .product_type_variable:before {
    content: "\f06e"; }
  .woocommerce ul.products li.product .product_type_grouped:before {
    content: "\f06e"; }
  .woocommerce ul.products li.product .product_type_external:before {
    content: "\f08e"; }
  .woocommerce ul.products li.product .star-rating {
    color: #FFC737;
    margin: 10px auto; }
  .woocommerce ul.products li.product .tm-woocompare-button, .woocommerce ul.products li.product .tm-woowishlist-button {
    -webkit-transition: all 320ms ease;
    -moz-transition: all 320ms ease;
    -ms-transition: all 320ms ease;
    -o-transition: all 320ms ease;
    transition: all 320ms ease;
    opacity: 0;
    padding: 0;
    line-height: 5px;
    height: 50px;
    width: 50px;
    text-transform: uppercase;
    color: #ffffff;
    font-size: 12px;
    display: inline-block;
    font-size: 14px;
    border-radius: 50%;
    position: absolute;
    right: -50px; }
    .woocommerce ul.products li.product .tm-woocompare-button:before, .woocommerce ul.products li.product .tm-woowishlist-button:before {
      display: block;
      font-family: FontAwesome;
      text-rendering: auto;
      color: #ffffff;
      border-radius: 100%; }
    .woocommerce ul.products li.product .tm-woocompare-button:after, .woocommerce ul.products li.product .tm-woowishlist-button:after {
      display: none; }
    .woocommerce ul.products li.product .tm-woocompare-button .text, .woocommerce ul.products li.product .tm-woowishlist-button .text {
      display: none; }
    .woocommerce ul.products li.product .tm-woocompare-button:hover, .woocommerce ul.products li.product .tm-woocompare-buttonfocus, .woocommerce ul.products li.product .tm-woowishlist-button:hover, .woocommerce ul.products li.product .tm-woowishlist-buttonfocus {
      background: #F3CE72; }
  .woocommerce ul.products li.product .quick_view.button {
    -webkit-transition: all 320ms ease;
    -moz-transition: all 320ms ease;
    -ms-transition: all 320ms ease;
    -o-transition: all 320ms ease;
    transition: all 320ms ease;
    opacity: 0;
    padding: 0;
    line-height: 50px;
    height: 50px;
    width: 50px;
    text-transform: uppercase;
    text-align: center;
    color: #ffffff;
    font-size: 12px;
    display: inline-block;
    font-size: 14px;
    border-radius: 50%;
    position: absolute;
    right: -50px;
    top: 120px; }
    .woocommerce ul.products li.product .quick_view.button:before {
      content: "\f002";
      display: block;
      font-family: FontAwesome;
      text-rendering: auto;
      color: #ffffff;
      border-radius: 100%; }
    .woocommerce ul.products li.product .quick_view.button span {
      display: none; }
    .woocommerce ul.products li.product .quick_view.button:hover, .woocommerce ul.products li.product .quick_view.buttonfocus {
      background: #F3CE72; }
  .woocommerce ul.products li.product .tm-woocompare-button {
    top: 0; }
    .woocommerce ul.products li.product .tm-woocompare-button:before {
      content: "\f066"; }
  .woocommerce ul.products li.product .tm-woowishlist-button {
    top: 60px; }
    .woocommerce ul.products li.product .tm-woowishlist-button:before {
      content: "\f08a"; }
  .woocommerce ul.products li.product .tm-woocompare-page-button, .woocommerce ul.products li.product .tm-woowishlist-page-button {
    background: none;
    color: #7AC77C;
    text-transform: uppercase;
    font-size: 12px;
    display: inline-block;
    margin-top: 10px;
    margin-bottom: 10px; }
    .woocommerce ul.products li.product .tm-woocompare-page-button:hover, .woocommerce ul.products li.product .tm-woocompare-page-button:focus, .woocommerce ul.products li.product .tm-woowishlist-page-button:hover, .woocommerce ul.products li.product .tm-woowishlist-page-button:focus {
      background: none;
      color: #7AC77C; }
  .woocommerce ul.products li.product:hover, .woocommerce ul.products li.product:focus {
    outline: none; }
    .woocommerce ul.products li.product:hover .product-image-wrapper img, .woocommerce ul.products li.product:focus .product-image-wrapper img {
      -webkit-transform: scale(1.2);
      -moz-transform: scale(1.2);
      -ms-transform: scale(1.2);
      -o-transform: scale(1.2);
      transform: scale(1.2); }
    .woocommerce ul.products li.product:hover .woocommerce-loop-product__title, .woocommerce ul.products li.product:focus .woocommerce-loop-product__title {
      color: #7AC77C; }
    .woocommerce ul.products li.product:hover .add_to_cart_button, .woocommerce ul.products li.product:hover .product_type_simple, .woocommerce ul.products li.product:hover .product_type_grouped, .woocommerce ul.products li.product:hover .product_type_external, .woocommerce ul.products li.product:hover .product_type_variable, .woocommerce ul.products li.product:focus .add_to_cart_button, .woocommerce ul.products li.product:focus .product_type_simple, .woocommerce ul.products li.product:focus .product_type_grouped, .woocommerce ul.products li.product:focus .product_type_external, .woocommerce ul.products li.product:focus .product_type_variable {
      opacity: 1;
      right: 5px; }
    .woocommerce ul.products li.product:hover .tm-woocompare-button, .woocommerce ul.products li.product:hover .tm-woowishlist-button, .woocommerce ul.products li.product:hover .quick_view.button, .woocommerce ul.products li.product:focus .tm-woocompare-button, .woocommerce ul.products li.product:focus .tm-woowishlist-button, .woocommerce ul.products li.product:focus .quick_view.button {
      opacity: 1;
      right: 5px; }
.woocommerce ul.products.list li.product {
  padding: 20px; }
  .woocommerce ul.products.list li.product .product-image-wrapper, .woocommerce ul.products.list li.product .product-content-wrapper {
    display: inline; }
  .woocommerce ul.products.list li.product .product-image-wrapper img {
    margin: 0 auto 15px; }
  .woocommerce ul.products.list li.product .product-image-wrapper .out-of-stock {
    left: auto;
    right: 0;
    top: 0; }
  .woocommerce ul.products.list li.product .woocommerce-loop-product__title {
    margin-top: 0; }
  .woocommerce ul.products.list li.product .star-rating {
    margin: 10px; }
  .woocommerce ul.products.list li.product .woocommerce-product-details__short-description {
    display: inline-block;
    color: #555555;
    margin-top: 10px;
    width: 65.4%;
    float: none; }
    .woocommerce ul.products.list li.product .woocommerce-product-details__short-description p {
      color: #555555;
      font-size: 16px;
      font-weight: 400;
      line-height: 2; }
  .woocommerce ul.products.list li.product .price {
    display: block;
    float: none;
    width: 100%;
    margin: 0; }
  .woocommerce ul.products.list li.product .gridlist-buttonwrap {
    display: inline-block;
    float: none;
    margin: 0;
    width: auto; }
  .woocommerce ul.products.list li.product .quick_view.button, .woocommerce ul.products.list li.product .add_to_cart_button, .woocommerce ul.products.list li.product .product_type_simple, .woocommerce ul.products.list li.product .product_type_grouped, .woocommerce ul.products.list li.product .product_type_external, .woocommerce ul.products.list li.product .product_type_variable {
    position: relative;
    right: auto;
    top: auto;
    bottom: 5px;
    margin: 5px;
    opacity: 1; }
  .woocommerce ul.products.list li.product .tm-woocompare-button, .woocommerce ul.products.list li.product .tm-woowishlist-button {
    position: relative;
    right: auto;
    top: auto;
    bottom: 5px;
    margin: 5px;
    opacity: 1; }
  .woocommerce ul.products.list li.product hr {
    display: none; }
  .woocommerce ul.products.list li.product:hover, .woocommerce ul.products.list li.product:focus {
    outline: none; }
    .woocommerce ul.products.list li.product:hover .product-image-wrapper img, .woocommerce ul.products.list li.product:focus .product-image-wrapper img {
      -webkit-transform: scale(1);
      -moz-transform: scale(1);
      -ms-transform: scale(1);
      -o-transform: scale(1);
      transform: scale(1); }
    .woocommerce ul.products.list li.product:hover .woocommerce-loop-product__title, .woocommerce ul.products.list li.product:focus .woocommerce-loop-product__title {
      color: #7AC77C; }
    .woocommerce ul.products.list li.product:hover .add_to_cart_button, .woocommerce ul.products.list li.product:hover .product_type_simple, .woocommerce ul.products.list li.product:hover .product_type_grouped, .woocommerce ul.products.list li.product:hover .product_type_external, .woocommerce ul.products.list li.product:hover .product_type_variable, .woocommerce ul.products.list li.product:focus .add_to_cart_button, .woocommerce ul.products.list li.product:focus .product_type_simple, .woocommerce ul.products.list li.product:focus .product_type_grouped, .woocommerce ul.products.list li.product:focus .product_type_external, .woocommerce ul.products.list li.product:focus .product_type_variable {
      opacity: 1;
      bottom: 5px; }
    .woocommerce ul.products.list li.product:hover .tm-woocompare-button, .woocommerce ul.products.list li.product:hover .tm-woowishlist-button, .woocommerce ul.products.list li.product:hover .quick_view.button, .woocommerce ul.products.list li.product:focus .tm-woocompare-button, .woocommerce ul.products.list li.product:focus .tm-woowishlist-button, .woocommerce ul.products.list li.product:focus .quick_view.button {
      opacity: 1;
      bottom: 5px; }
  @media (max-width: 767px) {
    .woocommerce ul.products.list li.product .product-image-wrapper img {
      width: 100%;
      float: none; } }
.woocommerce .woocommerce-result-count {
  font-size: 16px;
  margin: 15px 0;
  line-height: 2; }
  @media (max-width: 767px) {
    .woocommerce .woocommerce-result-count {
      float: none; } }
.woocommerce .woocommerce-ordering {
  border-radius: 3px;
  overflow: hidden;
  background: #fafafa; }
  .woocommerce .woocommerce-ordering select {
    font-size: 14px;
    height: 53px;
    background-position: 98% center;
    padding-left: 15px;
    padding-right: 15px;
    margin: 0 0 10px;
    -moz-appearance: none !important;
    background-color: #ffffff;
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIgeD0iMTJweCIgeT0iMHB4IiB3aWR0aD0iMjRweCIgaGVpZ2h0PSIzcHgiIHZpZXdCb3g9IjAgMCA2IDMiIGVuYWJsZS1iYWNrZ3JvdW5kPSJuZXcgMCAwIDYgMyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+PHBvbHlnb24gcG9pbnRzPSI1Ljk5MiwwIDIuOTkyLDMgLTAuMDA4LDAgIi8+PC9zdmc+");
    background-position: 100% center;
    background-repeat: no-repeat;
    border-color: #cccccc;
    border-radius: 0;
    border-style: solid;
    border-width: 1px;
    color: #333333;
    font-family: inherit;
    line-height: normal;
    width: 100%; }
    .woocommerce .woocommerce-ordering select option {
      padding: 10px; }
.woocommerce .gridlist-toggle {
  clear: none;
  float: right;
  display: inline-block;
  padding: 0 !important;
  margin: 0 15px; }
  .woocommerce .gridlist-toggle a {
    background: #ffffff;
    padding: 15px;
    border: 1px solid #cccccc;
    margin: 0 5px;
    color: #cccccc; }
    .woocommerce .gridlist-toggle a span {
      font-size: 20px; }
    .woocommerce .gridlist-toggle a:hover, .woocommerce .gridlist-toggle a:focus {
      background: #F3CE72;
      border: 1px solid #F3CE72;
      color: #ffffff; }
    .woocommerce .gridlist-toggle a.active {
      background: #7AC77C;
      border: 1px solid #7AC77C;
      color: #ffffff; }
.woocommerce .woocommerce-breadcrumb {
  display: inline-block;
  font-size: 15px;
  margin: 20px 0;
  color: #555555; }
  .woocommerce .woocommerce-breadcrumb i, .woocommerce .woocommerce-breadcrumb em {
    margin-right: 3px; }
  .woocommerce .woocommerce-breadcrumb a {
    color: #1F1F1F; }
    .woocommerce .woocommerce-breadcrumb a:hover, .woocommerce .woocommerce-breadcrumb a:focus {
      color: #edb62c; }
.woocommerce .woocommerce-pagination {
  clear: both;
  display: block;
  padding-bottom: 40px;
  padding-top: 40px;
  text-align: center; }
  .woocommerce .woocommerce-pagination .page-numbers {
    border: none; }
    .woocommerce .woocommerce-pagination .page-numbers li {
      border: none; }
      .woocommerce .woocommerce-pagination .page-numbers li a, .woocommerce .woocommerce-pagination .page-numbers li span {
        background-color: #7AC77C;
        border-radius: 1px;
        color: #ffffff;
        cursor: pointer;
        padding: 12px 15px;
        margin: 5px;
        font-weight: 600; }
        .woocommerce .woocommerce-pagination .page-numbers li a:hover, .woocommerce .woocommerce-pagination .page-numbers li a:focus, .woocommerce .woocommerce-pagination .page-numbers li span:hover, .woocommerce .woocommerce-pagination .page-numbers li span:focus {
          background-color: #48ac4b;
          color: #ffffff; }
      .woocommerce .woocommerce-pagination .page-numbers li .current {
        background-color: #F3CE72;
        color: #ffffff; }

.woocommerce.single .wpn_buttons, .woocommerce.single-product .wpn_buttons {
  margin-bottom: 40px;
  margin-top: 40px;
  padding-top: 40px; }
  .woocommerce.single .wpn_buttons .previous, .woocommerce.single .wpn_buttons .next, .woocommerce.single-product .wpn_buttons .previous, .woocommerce.single-product .wpn_buttons .next {
    display: inline-block; }
    .woocommerce.single .wpn_buttons .previous a, .woocommerce.single .wpn_buttons .next a, .woocommerce.single-product .wpn_buttons .previous a, .woocommerce.single-product .wpn_buttons .next a {
      background: #7AC77C;
      color: #ffffff;
      font-weight: bold;
      font-size: 14px;
      text-transform: capitalize;
      padding: 10px 15px;
      border-radius: 4px;
      display: inline-block; }
      .woocommerce.single .wpn_buttons .previous a::before, .woocommerce.single .wpn_buttons .previous a:after, .woocommerce.single .wpn_buttons .next a::before, .woocommerce.single .wpn_buttons .next a:after, .woocommerce.single-product .wpn_buttons .previous a::before, .woocommerce.single-product .wpn_buttons .previous a:after, .woocommerce.single-product .wpn_buttons .next a::before, .woocommerce.single-product .wpn_buttons .next a:after {
        display: inline-block;
        position: relative;
        font-family: "Fontawesome"; }
      .woocommerce.single .wpn_buttons .previous a:hover, .woocommerce.single .wpn_buttons .previous a:focus, .woocommerce.single .wpn_buttons .next a:hover, .woocommerce.single .wpn_buttons .next a:focus, .woocommerce.single-product .wpn_buttons .previous a:hover, .woocommerce.single-product .wpn_buttons .previous a:focus, .woocommerce.single-product .wpn_buttons .next a:hover, .woocommerce.single-product .wpn_buttons .next a:focus {
        background: #F3CE72;
        color: #ffffff; }
  .woocommerce.single .wpn_buttons .previous a::before, .woocommerce.single-product .wpn_buttons .previous a::before {
    content: "\f177";
    left: 0;
    margin: 0 10px 0 0; }
  .woocommerce.single .wpn_buttons .next a::after, .woocommerce.single-product .wpn_buttons .next a::after {
    content: "\f178";
    right: 0;
    margin: 0 0 0 10px; }
.woocommerce.single .product, .woocommerce.single-product .product {
  padding: 40px 0;
  display: block; }
  .woocommerce.single .product .images img, .woocommerce.single-product .product .images img {
    max-width: 100%;
    width: auto;
    height: auto;
    margin: 0 auto; }
  .woocommerce.single .product .images .yith_magnifier_zoom_wrap, .woocommerce.single-product .product .images .yith_magnifier_zoom_wrap {
    border: 1px solid #eeeeee; }
  .woocommerce.single .product .images .thumbnails.slider .caroufredsel_wrapper, .woocommerce.single-product .product .images .thumbnails.slider .caroufredsel_wrapper {
    border: 1px solid #eeeeee; }
    .woocommerce.single .product .images .thumbnails.slider .caroufredsel_wrapper .yith_magnifier_gallery .yith_magnifier_thumbnail img, .woocommerce.single-product .product .images .thumbnails.slider .caroufredsel_wrapper .yith_magnifier_gallery .yith_magnifier_thumbnail img {
      border-right: 1px solid #eeeeee; }
  .woocommerce.single .product .images .yith_magnifier_zoom_magnifier, .woocommerce.single-product .product .images .yith_magnifier_zoom_magnifier {
    border: none; }
  .woocommerce.single .product .entry-summary .product_title, .woocommerce.single-product .product .entry-summary .product_title {
    color: #1F1F1F;
    line-height: 1.2;
    font-size: 23px;
    font-weight: 700;
    text-align: left; }
  .woocommerce.single .product .entry-summary .woocommerce-product-rating .star-rating, .woocommerce.single-product .product .entry-summary .woocommerce-product-rating .star-rating {
    color: #FFC737;
    margin-right: 15px; }
  .woocommerce.single .product .entry-summary .woocommerce-product-rating .woocommerce-review-link, .woocommerce.single-product .product .entry-summary .woocommerce-product-rating .woocommerce-review-link {
    color: #797979;
    font-size: 15px; }
  .woocommerce.single .product .entry-summary .shop-price-container, .woocommerce.single-product .product .entry-summary .shop-price-container {
    display: block;
    position: relative;
    margin-top: 15px;
    margin-bottom: 15px; }
    .woocommerce.single .product .entry-summary .shop-price-container .price, .woocommerce.single-product .product .entry-summary .shop-price-container .price {
      display: inline-block;
      font-size: 12px;
      font-weight: bold; }
      .woocommerce.single .product .entry-summary .shop-price-container .price .woocommerce-Price-amount, .woocommerce.single-product .product .entry-summary .shop-price-container .price .woocommerce-Price-amount {
        color: #1F1F1F;
        font-size: 20px; }
      .woocommerce.single .product .entry-summary .shop-price-container .price del, .woocommerce.single .product .entry-summary .shop-price-container .price ins, .woocommerce.single-product .product .entry-summary .shop-price-container .price del, .woocommerce.single-product .product .entry-summary .shop-price-container .price ins {
        display: inline-block;
        opacity: 1; }
      .woocommerce.single .product .entry-summary .shop-price-container .price del, .woocommerce.single-product .product .entry-summary .shop-price-container .price del {
        text-decoration: line-through;
        color: #999999;
        font-size: 18px;
        margin-right: 15px; }
        .woocommerce.single .product .entry-summary .shop-price-container .price del .woocommerce-Price-amount, .woocommerce.single-product .product .entry-summary .shop-price-container .price del .woocommerce-Price-amount {
          color: #999999;
          font-size: 14px; }
      .woocommerce.single .product .entry-summary .shop-price-container .price ins, .woocommerce.single-product .product .entry-summary .shop-price-container .price ins {
        text-decoration: none;
        color: #1F1F1F;
        font-size: 20px; }
        .woocommerce.single .product .entry-summary .shop-price-container .price ins .woocommerce-Price-amount, .woocommerce.single-product .product .entry-summary .shop-price-container .price ins .woocommerce-Price-amount {
          color: #1F1F1F;
          font-size: 20px; }
  .woocommerce.single .product .entry-summary .woocommerce-product-details__short-description, .woocommerce.single-product .product .entry-summary .woocommerce-product-details__short-description {
    color: #555555;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.8;
    border-top: 1px solid #eeeeee;
    border-bottom: 1px solid #eeeeee;
    padding-top: 10px;
    padding-bottom: 10px;
    margin: 15px 0; }
    .woocommerce.single .product .entry-summary .woocommerce-product-details__short-description p, .woocommerce.single-product .product .entry-summary .woocommerce-product-details__short-description p {
      margin: 10px 0; }
  .woocommerce.single .product .entry-summary .stock, .woocommerce.single-product .product .entry-summary .stock {
    font-size: 16px;
    color: #7AC77C;
    font-weight: bold;
    margin: 10px 0; }
    .woocommerce.single .product .entry-summary .stock.out-of-stock, .woocommerce.single-product .product .entry-summary .stock.out-of-stock {
      color: #ff0000; }
  .woocommerce.single .product .entry-summary .cart, .woocommerce.single-product .product .entry-summary .cart {
    margin-bottom: 30px;
    margin-top: 30px; }
    .woocommerce.single .product .entry-summary .cart .variations .label, .woocommerce.single-product .product .entry-summary .cart .variations .label {
      font-size: 12px;
      color: #1F1F1F;
      display: block;
      float: left;
      width: 100%;
      text-align: left;
      text-transform: uppercase; }
    .woocommerce.single .product .entry-summary .cart .variations .value, .woocommerce.single-product .product .entry-summary .cart .variations .value {
      display: block; }
      .woocommerce.single .product .entry-summary .cart .variations .value select, .woocommerce.single-product .product .entry-summary .cart .variations .value select {
        font-size: 14px;
        height: 60px;
        background-position: 98% center;
        font-weight: bold;
        padding-left: 15px;
        padding-right: 15px;
        margin: 0 0 10px;
        -moz-appearance: none !important;
        background-color: rgba(0, 0, 0, 0.05);
        background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIgeD0iMTJweCIgeT0iMHB4IiB3aWR0aD0iMjRweCIgaGVpZ2h0PSIzcHgiIHZpZXdCb3g9IjAgMCA2IDMiIGVuYWJsZS1iYWNrZ3JvdW5kPSJuZXcgMCAwIDYgMyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+PHBvbHlnb24gcG9pbnRzPSI1Ljk5MiwwIDIuOTkyLDMgLTAuMDA4LDAgIi8+PC9zdmc+");
        background-position: 100% center;
        background-repeat: no-repeat;
        border-color: #cccccc;
        border-radius: 0;
        border-style: solid;
        border-width: 0;
        color: #1F1F1F;
        font-family: inherit;
        line-height: normal;
        width: 100%; }
        .woocommerce.single .product .entry-summary .cart .variations .value select option, .woocommerce.single-product .product .entry-summary .cart .variations .value select option {
          padding: 10px; }
      .woocommerce.single .product .entry-summary .cart .variations .value .reset_variations, .woocommerce.single-product .product .entry-summary .cart .variations .value .reset_variations {
        font-size: 13px;
        color: #7AC77C;
        font-weight: bold; }
    .woocommerce.single .product .entry-summary .cart .single_variation_wrap .woocommerce-variation, .woocommerce.single-product .product .entry-summary .cart .single_variation_wrap .woocommerce-variation {
      padding-bottom: 20px; }
      .woocommerce.single .product .entry-summary .cart .single_variation_wrap .woocommerce-variation .woocommerce-variation-description p, .woocommerce.single-product .product .entry-summary .cart .single_variation_wrap .woocommerce-variation .woocommerce-variation-description p {
        color: #999999;
        font-size: 16px;
        font-weight: 400;
        line-height: 2; }
      .woocommerce.single .product .entry-summary .cart .single_variation_wrap .woocommerce-variation .woocommerce-variation-price, .woocommerce.single-product .product .entry-summary .cart .single_variation_wrap .woocommerce-variation .woocommerce-variation-price {
        margin: 10px 0; }
        .woocommerce.single .product .entry-summary .cart .single_variation_wrap .woocommerce-variation .woocommerce-variation-price .price, .woocommerce.single-product .product .entry-summary .cart .single_variation_wrap .woocommerce-variation .woocommerce-variation-price .price {
          display: inline-block;
          font-size: 24px;
          font-weight: bold;
          margin: 0 0.27778rem;
          vertical-align: middle; }
          .woocommerce.single .product .entry-summary .cart .single_variation_wrap .woocommerce-variation .woocommerce-variation-price .price del, .woocommerce.single .product .entry-summary .cart .single_variation_wrap .woocommerce-variation .woocommerce-variation-price .price ins, .woocommerce.single-product .product .entry-summary .cart .single_variation_wrap .woocommerce-variation .woocommerce-variation-price .price del, .woocommerce.single-product .product .entry-summary .cart .single_variation_wrap .woocommerce-variation .woocommerce-variation-price .price ins {
            display: inline-block;
            opacity: 1; }
          .woocommerce.single .product .entry-summary .cart .single_variation_wrap .woocommerce-variation .woocommerce-variation-price .price .woocommerce-Price-amount, .woocommerce.single-product .product .entry-summary .cart .single_variation_wrap .woocommerce-variation .woocommerce-variation-price .price .woocommerce-Price-amount {
            color: #1F1F1F; }
          .woocommerce.single .product .entry-summary .cart .single_variation_wrap .woocommerce-variation .woocommerce-variation-price .price del, .woocommerce.single-product .product .entry-summary .cart .single_variation_wrap .woocommerce-variation .woocommerce-variation-price .price del {
            text-decoration: line-through;
            color: #999999; }
            .woocommerce.single .product .entry-summary .cart .single_variation_wrap .woocommerce-variation .woocommerce-variation-price .price del .woocommerce-Price-amount, .woocommerce.single .product .entry-summary .cart .single_variation_wrap .woocommerce-variation .woocommerce-variation-price .price del span, .woocommerce.single-product .product .entry-summary .cart .single_variation_wrap .woocommerce-variation .woocommerce-variation-price .price del .woocommerce-Price-amount, .woocommerce.single-product .product .entry-summary .cart .single_variation_wrap .woocommerce-variation .woocommerce-variation-price .price del span {
              color: #999999; }
          .woocommerce.single .product .entry-summary .cart .single_variation_wrap .woocommerce-variation .woocommerce-variation-price .price ins, .woocommerce.single-product .product .entry-summary .cart .single_variation_wrap .woocommerce-variation .woocommerce-variation-price .price ins {
            text-decoration: none;
            color: #1F1F1F; }
            .woocommerce.single .product .entry-summary .cart .single_variation_wrap .woocommerce-variation .woocommerce-variation-price .price ins span, .woocommerce.single-product .product .entry-summary .cart .single_variation_wrap .woocommerce-variation .woocommerce-variation-price .price ins span {
              color: #1F1F1F; }
      .woocommerce.single .product .entry-summary .cart .single_variation_wrap .woocommerce-variation .woocommerce-variation-availability, .woocommerce.single-product .product .entry-summary .cart .single_variation_wrap .woocommerce-variation .woocommerce-variation-availability {
        margin: 10px 0; }
        .woocommerce.single .product .entry-summary .cart .single_variation_wrap .woocommerce-variation .woocommerce-variation-availability .stock, .woocommerce.single-product .product .entry-summary .cart .single_variation_wrap .woocommerce-variation .woocommerce-variation-availability .stock {
          font-size: 13px;
          color: #edb62c;
          font-weight: bold; }
    .woocommerce.single .product .entry-summary .cart .group_table, .woocommerce.single-product .product .entry-summary .cart .group_table {
      display: table; }
      .woocommerce.single .product .entry-summary .cart .group_table td, .woocommerce.single .product .entry-summary .cart .group_table th, .woocommerce.single-product .product .entry-summary .cart .group_table td, .woocommerce.single-product .product .entry-summary .cart .group_table th {
        display: table-cell;
        vertical-align: middle;
        width: auto;
        padding-bottom: 20px; }
      .woocommerce.single .product .entry-summary .cart .group_table .product, .woocommerce.single-product .product .entry-summary .cart .group_table .product {
        display: table-row;
        border-bottom: 1px solid #cccccc; }
        .woocommerce.single .product .entry-summary .cart .group_table .product .quantity.buttons_added, .woocommerce.single-product .product .entry-summary .cart .group_table .product .quantity.buttons_added {
          padding-right: 0; }
          .woocommerce.single .product .entry-summary .cart .group_table .product .quantity.buttons_added .qty, .woocommerce.single-product .product .entry-summary .cart .group_table .product .quantity.buttons_added .qty {
            width: 50px;
            height: 30px;
            border: 1px solid #cccccc;
            margin: 15px 0;
            font-size: 16px;
            font-weight: 500;
            padding: 0; }
          .woocommerce.single .product .entry-summary .cart .group_table .product .quantity.buttons_added .minus, .woocommerce.single .product .entry-summary .cart .group_table .product .quantity.buttons_added .plus, .woocommerce.single-product .product .entry-summary .cart .group_table .product .quantity.buttons_added .minus, .woocommerce.single-product .product .entry-summary .cart .group_table .product .quantity.buttons_added .plus {
            position: relative;
            margin: 15px 10px;
            width: 30px;
            height: 30px;
            font-size: 20px;
            border: 1px solid #eeeeee; }
          .woocommerce.single .product .entry-summary .cart .group_table .product .quantity.buttons_added .minus, .woocommerce.single-product .product .entry-summary .cart .group_table .product .quantity.buttons_added .minus {
            float: left; }
          .woocommerce.single .product .entry-summary .cart .group_table .product .quantity.buttons_added .plus, .woocommerce.single-product .product .entry-summary .cart .group_table .product .quantity.buttons_added .plus {
            float: right; }
        .woocommerce.single .product .entry-summary .cart .group_table .product .label, .woocommerce.single-product .product .entry-summary .cart .group_table .product .label {
          font-size: 16px;
          font-weight: 700;
          line-height: 1.2;
          margin: 0 0 1.66667rem;
          text-align: left;
          text-transform: none; }
          .woocommerce.single .product .entry-summary .cart .group_table .product .label a, .woocommerce.single-product .product .entry-summary .cart .group_table .product .label a {
            color: #333333; }
            .woocommerce.single .product .entry-summary .cart .group_table .product .label a:hover, .woocommerce.single-product .product .entry-summary .cart .group_table .product .label a:hover {
              color: #7AC77C; }
        .woocommerce.single .product .entry-summary .cart .group_table .product .price, .woocommerce.single-product .product .entry-summary .cart .group_table .product .price {
          font-size: 12px;
          font-weight: bold;
          padding: 0; }
          .woocommerce.single .product .entry-summary .cart .group_table .product .price .woocommerce-Price-amount, .woocommerce.single-product .product .entry-summary .cart .group_table .product .price .woocommerce-Price-amount {
            color: #1F1F1F;
            font-size: 16px; }
          .woocommerce.single .product .entry-summary .cart .group_table .product .price del, .woocommerce.single .product .entry-summary .cart .group_table .product .price ins, .woocommerce.single-product .product .entry-summary .cart .group_table .product .price del, .woocommerce.single-product .product .entry-summary .cart .group_table .product .price ins {
            display: inline-block;
            opacity: 1; }
          .woocommerce.single .product .entry-summary .cart .group_table .product .price del, .woocommerce.single-product .product .entry-summary .cart .group_table .product .price del {
            text-decoration: line-through;
            color: #999999;
            font-size: 14px; }
            .woocommerce.single .product .entry-summary .cart .group_table .product .price del .woocommerce-Price-amount, .woocommerce.single-product .product .entry-summary .cart .group_table .product .price del .woocommerce-Price-amount {
              color: #999999;
              font-size: 14px; }
          .woocommerce.single .product .entry-summary .cart .group_table .product .price ins, .woocommerce.single-product .product .entry-summary .cart .group_table .product .price ins {
            text-decoration: none;
            color: #1F1F1F;
            font-size: 16px;
            float: left;
            margin-right: 15px; }
            .woocommerce.single .product .entry-summary .cart .group_table .product .price ins .woocommerce-Price-amount, .woocommerce.single-product .product .entry-summary .cart .group_table .product .price ins .woocommerce-Price-amount {
              color: #1F1F1F;
              font-size: 16px; }
          .woocommerce.single .product .entry-summary .cart .group_table .product .price .stock, .woocommerce.single-product .product .entry-summary .cart .group_table .product .price .stock {
            font-size: 13px;
            color: #edb62c;
            font-weight: bold; }
    .woocommerce.single .product .entry-summary .cart .quantity, .woocommerce.single-product .product .entry-summary .cart .quantity {
      display: table-cell;
      padding-right: 25px;
      margin-right: 10px; }
      .woocommerce.single .product .entry-summary .cart .quantity .qty, .woocommerce.single-product .product .entry-summary .cart .quantity .qty {
        -moz-border-bottom-colors: none;
        -moz-border-left-colors: none;
        -moz-border-right-colors: none;
        -moz-border-top-colors: none;
        background: transparent none repeat scroll 0 0;
        border-color: -moz-use-text-color -moz-use-text-color #cccccc;
        border-image: none;
        border-style: none none solid;
        border-width: 0 0 2px;
        color: #1F1F1F;
        font-size: 18px;
        font-weight: bold;
        height: 57px;
        width: 70px;
        padding: 0 0 0 15px;
        margin: 0;
        text-align: center; }
      .woocommerce.single .product .entry-summary .cart .quantity.buttons_added, .woocommerce.single-product .product .entry-summary .cart .quantity.buttons_added {
        padding-right: 0; }
        .woocommerce.single .product .entry-summary .cart .quantity.buttons_added .qty, .woocommerce.single-product .product .entry-summary .cart .quantity.buttons_added .qty {
          width: 70px;
          height: 40px;
          border: 1px solid #cccccc;
          margin: 15px 0;
          font-size: 16px;
          font-weight: 500;
          padding: 0; }
        .woocommerce.single .product .entry-summary .cart .quantity.buttons_added .minus, .woocommerce.single .product .entry-summary .cart .quantity.buttons_added .plus, .woocommerce.single-product .product .entry-summary .cart .quantity.buttons_added .minus, .woocommerce.single-product .product .entry-summary .cart .quantity.buttons_added .plus {
          position: relative;
          margin: 15px 10px;
          width: 40px;
          height: 40px;
          font-size: 20px;
          border: 1px solid #eeeeee; }
        .woocommerce.single .product .entry-summary .cart .quantity.buttons_added .minus, .woocommerce.single-product .product .entry-summary .cart .quantity.buttons_added .minus {
          float: left; }
        .woocommerce.single .product .entry-summary .cart .quantity.buttons_added .plus, .woocommerce.single-product .product .entry-summary .cart .quantity.buttons_added .plus {
          float: right; }
    .woocommerce.single .product .entry-summary .cart .single_add_to_cart_button, .woocommerce.single-product .product .entry-summary .cart .single_add_to_cart_button {
      -webkit-transition: all 320ms ease;
      -moz-transition: all 320ms ease;
      -ms-transition: all 320ms ease;
      -o-transition: all 320ms ease;
      transition: all 320ms ease;
      -moz-appearance: none;
      background-color: #7AC77C;
      border-color: transparent;
      border-radius: 0;
      border-style: solid;
      border-width: 1px;
      color: #ffffff;
      cursor: pointer;
      display: inline-block;
      font-family: inherit;
      font-size: 13px;
      font-weight: 800;
      line-height: normal;
      margin: 10px;
      padding: 16px 40px;
      position: relative;
      text-align: center;
      text-decoration: none;
      text-transform: uppercase; }
      .woocommerce.single .product .entry-summary .cart .single_add_to_cart_button:hover, .woocommerce.single .product .entry-summary .cart .single_add_to_cart_button:focus, .woocommerce.single-product .product .entry-summary .cart .single_add_to_cart_button:hover, .woocommerce.single-product .product .entry-summary .cart .single_add_to_cart_button:focus {
        background: #F3CE72; }
  .woocommerce.single .product .entry-summary .tm-woocompare-button-single, .woocommerce.single .product .entry-summary .tm-woowishlist-button-single, .woocommerce.single-product .product .entry-summary .tm-woocompare-button-single, .woocommerce.single-product .product .entry-summary .tm-woowishlist-button-single {
    background: none;
    padding-left: 60px;
    line-height: 50px;
    text-transform: uppercase;
    color: #1F1F1F;
    font-size: 12px; }
    .woocommerce.single .product .entry-summary .tm-woocompare-button-single:hover, .woocommerce.single .product .entry-summary .tm-woowishlist-button-single:hover, .woocommerce.single-product .product .entry-summary .tm-woocompare-button-single:hover, .woocommerce.single-product .product .entry-summary .tm-woowishlist-button-single:hover {
      color: #999999; }
    .woocommerce.single .product .entry-summary .tm-woocompare-button-single:before, .woocommerce.single .product .entry-summary .tm-woowishlist-button-single:before, .woocommerce.single-product .product .entry-summary .tm-woocompare-button-single:before, .woocommerce.single-product .product .entry-summary .tm-woowishlist-button-single:before {
      display: block;
      font-family: 'FontAwesome';
      font-size: 16px;
      font-weight: normal;
      position: absolute;
      text-rendering: auto;
      left: 0;
      background: #7AC77C;
      color: #ffffff;
      border-radius: 100%;
      height: 50px;
      width: 50px;
      line-height: 50px; }
    .woocommerce.single .product .entry-summary .tm-woocompare-button-single:after, .woocommerce.single .product .entry-summary .tm-woowishlist-button-single:after, .woocommerce.single-product .product .entry-summary .tm-woocompare-button-single:after, .woocommerce.single-product .product .entry-summary .tm-woowishlist-button-single:after {
      display: none; }
  .woocommerce.single .product .entry-summary .tm-woocompare-button-single:before, .woocommerce.single-product .product .entry-summary .tm-woocompare-button-single:before {
    content: "\f066"; }
  .woocommerce.single .product .entry-summary .tm-woowishlist-button-single, .woocommerce.single-product .product .entry-summary .tm-woowishlist-button-single {
    display: inline-block;
    position: relative;
    padding: 10px;
    margin-bottom: 30px; }
    .woocommerce.single .product .entry-summary .tm-woowishlist-button-single .text, .woocommerce.single-product .product .entry-summary .tm-woowishlist-button-single .text {
      display: none; }
    .woocommerce.single .product .entry-summary .tm-woowishlist-button-single:before, .woocommerce.single-product .product .entry-summary .tm-woowishlist-button-single:before {
      -webkit-transition: all 320ms ease;
      -moz-transition: all 320ms ease;
      -ms-transition: all 320ms ease;
      -o-transition: all 320ms ease;
      transition: all 320ms ease;
      position: relative;
      border-radius: 0;
      content: "\f004"; }
    .woocommerce.single .product .entry-summary .tm-woowishlist-button-single:hover:before, .woocommerce.single .product .entry-summary .tm-woowishlist-button-single:focus:before, .woocommerce.single-product .product .entry-summary .tm-woowishlist-button-single:hover:before, .woocommerce.single-product .product .entry-summary .tm-woowishlist-button-single:focus:before {
      -webkit-transition: all 320ms ease;
      -moz-transition: all 320ms ease;
      -ms-transition: all 320ms ease;
      -o-transition: all 320ms ease;
      transition: all 320ms ease;
      background: #F3CE72; }
  .woocommerce.single .product .entry-summary .tm-woocompare-button-single, .woocommerce.single-product .product .entry-summary .tm-woocompare-button-single {
    display: inline-block;
    position: relative;
    padding: 10px;
    margin-bottom: 30px; }
    .woocommerce.single .product .entry-summary .tm-woocompare-button-single .text, .woocommerce.single-product .product .entry-summary .tm-woocompare-button-single .text {
      display: none; }
    .woocommerce.single .product .entry-summary .tm-woocompare-button-single:before, .woocommerce.single-product .product .entry-summary .tm-woocompare-button-single:before {
      -webkit-transition: all 320ms ease;
      -moz-transition: all 320ms ease;
      -ms-transition: all 320ms ease;
      -o-transition: all 320ms ease;
      transition: all 320ms ease;
      position: relative;
      border-radius: 0;
      content: "\f066"; }
    .woocommerce.single .product .entry-summary .tm-woocompare-button-single:hover:before, .woocommerce.single .product .entry-summary .tm-woocompare-button-single:focus:before, .woocommerce.single-product .product .entry-summary .tm-woocompare-button-single:hover:before, .woocommerce.single-product .product .entry-summary .tm-woocompare-button-single:focus:before {
      -webkit-transition: all 320ms ease;
      -moz-transition: all 320ms ease;
      -ms-transition: all 320ms ease;
      -o-transition: all 320ms ease;
      transition: all 320ms ease;
      background: #F3CE72; }
  .woocommerce.single .product .entry-summary .tm-woocompare-page-button, .woocommerce.single .product .entry-summary .tm-woowishlist-page-button, .woocommerce.single-product .product .entry-summary .tm-woocompare-page-button, .woocommerce.single-product .product .entry-summary .tm-woowishlist-page-button {
    background: none;
    color: #7AC77C;
    text-transform: uppercase;
    font-size: 12px;
    display: inline-block;
    margin-top: 10px;
    margin-bottom: 10px; }
    .woocommerce.single .product .entry-summary .tm-woocompare-page-button:hover, .woocommerce.single .product .entry-summary .tm-woocompare-page-button:focus, .woocommerce.single .product .entry-summary .tm-woowishlist-page-button:hover, .woocommerce.single .product .entry-summary .tm-woowishlist-page-button:focus, .woocommerce.single-product .product .entry-summary .tm-woocompare-page-button:hover, .woocommerce.single-product .product .entry-summary .tm-woocompare-page-button:focus, .woocommerce.single-product .product .entry-summary .tm-woowishlist-page-button:hover, .woocommerce.single-product .product .entry-summary .tm-woowishlist-page-button:focus {
      background: none;
      color: #7AC77C; }
  .woocommerce.single .product .entry-summary .product_meta, .woocommerce.single-product .product .entry-summary .product_meta {
    border-top: 2px solid #eeeeee;
    display: table;
    width: 100%;
    padding: 20px 0; }
    .woocommerce.single .product .entry-summary .product_meta .sku_wrapper, .woocommerce.single .product .entry-summary .product_meta .posted_in, .woocommerce.single .product .entry-summary .product_meta .tagged_as, .woocommerce.single-product .product .entry-summary .product_meta .sku_wrapper, .woocommerce.single-product .product .entry-summary .product_meta .posted_in, .woocommerce.single-product .product .entry-summary .product_meta .tagged_as {
      display: block;
      text-transform: uppercase;
      color: #999999;
      font-size: 12px;
      font-weight: 700;
      padding: 10px 0; }
      .woocommerce.single .product .entry-summary .product_meta .sku_wrapper a, .woocommerce.single .product .entry-summary .product_meta .sku_wrapper .sku, .woocommerce.single .product .entry-summary .product_meta .posted_in a, .woocommerce.single .product .entry-summary .product_meta .posted_in .sku, .woocommerce.single .product .entry-summary .product_meta .tagged_as a, .woocommerce.single .product .entry-summary .product_meta .tagged_as .sku, .woocommerce.single-product .product .entry-summary .product_meta .sku_wrapper a, .woocommerce.single-product .product .entry-summary .product_meta .sku_wrapper .sku, .woocommerce.single-product .product .entry-summary .product_meta .posted_in a, .woocommerce.single-product .product .entry-summary .product_meta .posted_in .sku, .woocommerce.single-product .product .entry-summary .product_meta .tagged_as a, .woocommerce.single-product .product .entry-summary .product_meta .tagged_as .sku {
        color: #1F1F1F; }
        .woocommerce.single .product .entry-summary .product_meta .sku_wrapper a:hover, .woocommerce.single .product .entry-summary .product_meta .sku_wrapper .sku:hover, .woocommerce.single .product .entry-summary .product_meta .posted_in a:hover, .woocommerce.single .product .entry-summary .product_meta .posted_in .sku:hover, .woocommerce.single .product .entry-summary .product_meta .tagged_as a:hover, .woocommerce.single .product .entry-summary .product_meta .tagged_as .sku:hover, .woocommerce.single-product .product .entry-summary .product_meta .sku_wrapper a:hover, .woocommerce.single-product .product .entry-summary .product_meta .sku_wrapper .sku:hover, .woocommerce.single-product .product .entry-summary .product_meta .posted_in a:hover, .woocommerce.single-product .product .entry-summary .product_meta .posted_in .sku:hover, .woocommerce.single-product .product .entry-summary .product_meta .tagged_as a:hover, .woocommerce.single-product .product .entry-summary .product_meta .tagged_as .sku:hover {
          color: #F3CE72; }
    .woocommerce.single .product .entry-summary .product_meta .sku_wrapper, .woocommerce.single-product .product .entry-summary .product_meta .sku_wrapper {
      margin-right: 10px; }
  .woocommerce.single .product .woocommerce_tabs_wrapper, .woocommerce.single-product .product .woocommerce_tabs_wrapper {
    background: #ffffff;
    display: table;
    width: 100%;
    padding-top: 20px;
    padding-bottom: 20px; }
    .woocommerce.single .product .woocommerce_tabs_wrapper .woocommerce-tabs .tabs, .woocommerce.single-product .product .woocommerce_tabs_wrapper .woocommerce-tabs .tabs {
      padding-left: 0;
      text-align: center; }
      .woocommerce.single .product .woocommerce_tabs_wrapper .woocommerce-tabs .tabs li, .woocommerce.single-product .product .woocommerce_tabs_wrapper .woocommerce-tabs .tabs li {
        width: auto;
        display: inline-block;
        font-size: 18px;
        font-weight: bold;
        margin-right: 30px;
        margin-left: 0;
        padding: 0;
        border: none;
        background: none; }
        .woocommerce.single .product .woocommerce_tabs_wrapper .woocommerce-tabs .tabs li:before, .woocommerce.single .product .woocommerce_tabs_wrapper .woocommerce-tabs .tabs li:after, .woocommerce.single-product .product .woocommerce_tabs_wrapper .woocommerce-tabs .tabs li:before, .woocommerce.single-product .product .woocommerce_tabs_wrapper .woocommerce-tabs .tabs li:after {
          display: none; }
        .woocommerce.single .product .woocommerce_tabs_wrapper .woocommerce-tabs .tabs li a, .woocommerce.single-product .product .woocommerce_tabs_wrapper .woocommerce-tabs .tabs li a {
          -webkit-transition: all 320ms ease;
          -moz-transition: all 320ms ease;
          -ms-transition: all 320ms ease;
          -o-transition: all 320ms ease;
          transition: all 320ms ease;
          border-bottom: 2px solid transparent;
          color: #555555;
          display: inline-block;
          padding: 5px 0; }
        .woocommerce.single .product .woocommerce_tabs_wrapper .woocommerce-tabs .tabs li.active a, .woocommerce.single-product .product .woocommerce_tabs_wrapper .woocommerce-tabs .tabs li.active a {
          border-bottom: 2px solid #7AC77C;
          color: #7AC77C; }
      .woocommerce.single .product .woocommerce_tabs_wrapper .woocommerce-tabs .tabs:before, .woocommerce.single .product .woocommerce_tabs_wrapper .woocommerce-tabs .tabs:after, .woocommerce.single-product .product .woocommerce_tabs_wrapper .woocommerce-tabs .tabs:before, .woocommerce.single-product .product .woocommerce_tabs_wrapper .woocommerce-tabs .tabs:after {
        border: none; }
    .woocommerce.single .product .woocommerce_tabs_wrapper .woocommerce-tabs .woocommerce-Tabs-panel, .woocommerce.single-product .product .woocommerce_tabs_wrapper .woocommerce-tabs .woocommerce-Tabs-panel {
      background: none;
      box-shadow: none; }
      .woocommerce.single .product .woocommerce_tabs_wrapper .woocommerce-tabs .woocommerce-Tabs-panel p, .woocommerce.single-product .product .woocommerce_tabs_wrapper .woocommerce-tabs .woocommerce-Tabs-panel p {
        margin: 10px 0;
        color: #555555;
        font-size: 15px;
        font-weight: 400;
        line-height: 1.8; }
      .woocommerce.single .product .woocommerce_tabs_wrapper .woocommerce-tabs .woocommerce-Tabs-panel #reviews #comments .woocommerce-Reviews-title, .woocommerce.single-product .product .woocommerce_tabs_wrapper .woocommerce-tabs .woocommerce-Tabs-panel #reviews #comments .woocommerce-Reviews-title {
        font-size: 24px;
        margin-bottom: 20px;
        margin-top: 0; }
      .woocommerce.single .product .woocommerce_tabs_wrapper .woocommerce-tabs .woocommerce-Tabs-panel #reviews #comments .commentlist, .woocommerce.single-product .product .woocommerce_tabs_wrapper .woocommerce-tabs .woocommerce-Tabs-panel #reviews #comments .commentlist {
        padding-left: 0px;
        margin-top: 20px;
        margin-bottom: 20px; }
        .woocommerce.single .product .woocommerce_tabs_wrapper .woocommerce-tabs .woocommerce-Tabs-panel #reviews #comments .commentlist .comment .comment_container .avatar, .woocommerce.single-product .product .woocommerce_tabs_wrapper .woocommerce-tabs .woocommerce-Tabs-panel #reviews #comments .commentlist .comment .comment_container .avatar {
          max-width: 100px;
          width: 100%;
          height: auto;
          border-radius: 50%; }
        .woocommerce.single .product .woocommerce_tabs_wrapper .woocommerce-tabs .woocommerce-Tabs-panel #reviews #comments .commentlist .comment .comment_container .comment-text, .woocommerce.single-product .product .woocommerce_tabs_wrapper .woocommerce-tabs .woocommerce-Tabs-panel #reviews #comments .commentlist .comment .comment_container .comment-text {
          margin: 0 0 0 110px; }
          .woocommerce.single .product .woocommerce_tabs_wrapper .woocommerce-tabs .woocommerce-Tabs-panel #reviews #comments .commentlist .comment .comment_container .comment-text .star-rating, .woocommerce.single-product .product .woocommerce_tabs_wrapper .woocommerce-tabs .woocommerce-Tabs-panel #reviews #comments .commentlist .comment .comment_container .comment-text .star-rating {
            color: #FFC737; }
          .woocommerce.single .product .woocommerce_tabs_wrapper .woocommerce-tabs .woocommerce-Tabs-panel #reviews #comments .commentlist .comment .comment_container .comment-text .meta .woocommerce-review__author, .woocommerce.single-product .product .woocommerce_tabs_wrapper .woocommerce-tabs .woocommerce-Tabs-panel #reviews #comments .commentlist .comment .comment_container .comment-text .meta .woocommerce-review__author {
            color: #333333;
            font-size: 16px; }
      .woocommerce.single .product .woocommerce_tabs_wrapper .woocommerce-tabs .woocommerce-Tabs-panel #reviews #respond .comment-form, .woocommerce.single-product .product .woocommerce_tabs_wrapper .woocommerce-tabs .woocommerce-Tabs-panel #reviews #respond .comment-form {
        display: flex;
        flex-flow: column; }
        .woocommerce.single .product .woocommerce_tabs_wrapper .woocommerce-tabs .woocommerce-Tabs-panel #reviews #respond .comment-form .comment-form-author, .woocommerce.single-product .product .woocommerce_tabs_wrapper .woocommerce-tabs .woocommerce-Tabs-panel #reviews #respond .comment-form .comment-form-author {
          order: 1; }
        .woocommerce.single .product .woocommerce_tabs_wrapper .woocommerce-tabs .woocommerce-Tabs-panel #reviews #respond .comment-form .comment-form-email, .woocommerce.single-product .product .woocommerce_tabs_wrapper .woocommerce-tabs .woocommerce-Tabs-panel #reviews #respond .comment-form .comment-form-email {
          order: 1; }
        .woocommerce.single .product .woocommerce_tabs_wrapper .woocommerce-tabs .woocommerce-Tabs-panel #reviews #respond .comment-form .comment-form-url, .woocommerce.single-product .product .woocommerce_tabs_wrapper .woocommerce-tabs .woocommerce-Tabs-panel #reviews #respond .comment-form .comment-form-url {
          order: 2; }
        .woocommerce.single .product .woocommerce_tabs_wrapper .woocommerce-tabs .woocommerce-Tabs-panel #reviews #respond .comment-form .comment-form-comment, .woocommerce.single-product .product .woocommerce_tabs_wrapper .woocommerce-tabs .woocommerce-Tabs-panel #reviews #respond .comment-form .comment-form-comment {
          order: 3; }
        .woocommerce.single .product .woocommerce_tabs_wrapper .woocommerce-tabs .woocommerce-Tabs-panel #reviews #respond .comment-form .form-submit, .woocommerce.single-product .product .woocommerce_tabs_wrapper .woocommerce-tabs .woocommerce-Tabs-panel #reviews #respond .comment-form .form-submit {
          order: 4; }
        .woocommerce.single .product .woocommerce_tabs_wrapper .woocommerce-tabs .woocommerce-Tabs-panel #reviews #respond .comment-form .comment-form-comment textarea, .woocommerce.single-product .product .woocommerce_tabs_wrapper .woocommerce-tabs .woocommerce-Tabs-panel #reviews #respond .comment-form .comment-form-comment textarea {
          height: 150px;
          border: 1px solid #eeeeee;
          padding: 15px;
          border-radius: 4px; }
        .woocommerce.single .product .woocommerce_tabs_wrapper .woocommerce-tabs .woocommerce-Tabs-panel #reviews #respond .comment-form label, .woocommerce.single-product .product .woocommerce_tabs_wrapper .woocommerce-tabs .woocommerce-Tabs-panel #reviews #respond .comment-form label {
          display: block; }
        .woocommerce.single .product .woocommerce_tabs_wrapper .woocommerce-tabs .woocommerce-Tabs-panel #reviews #respond .comment-form input[type='text'], .woocommerce.single .product .woocommerce_tabs_wrapper .woocommerce-tabs .woocommerce-Tabs-panel #reviews #respond .comment-form input[type='email'], .woocommerce.single-product .product .woocommerce_tabs_wrapper .woocommerce-tabs .woocommerce-Tabs-panel #reviews #respond .comment-form input[type='text'], .woocommerce.single-product .product .woocommerce_tabs_wrapper .woocommerce-tabs .woocommerce-Tabs-panel #reviews #respond .comment-form input[type='email'] {
          width: 100%;
          border: 1px solid #eeeeee;
          height: 48px;
          padding: 15px;
          border-radius: 4px; }
        .woocommerce.single .product .woocommerce_tabs_wrapper .woocommerce-tabs .woocommerce-Tabs-panel #reviews #respond .comment-form .form-submit input#submit, .woocommerce.single-product .product .woocommerce_tabs_wrapper .woocommerce-tabs .woocommerce-Tabs-panel #reviews #respond .comment-form .form-submit input#submit {
          background: #F3CE72;
          color: #ffffff;
          display: inline-block;
          font-size: 14px;
          margin: 10px 0;
          padding: 10px 20px;
          border-radius: 4px; }
          .woocommerce.single .product .woocommerce_tabs_wrapper .woocommerce-tabs .woocommerce-Tabs-panel #reviews #respond .comment-form .form-submit input#submit:hover, .woocommerce.single .product .woocommerce_tabs_wrapper .woocommerce-tabs .woocommerce-Tabs-panel #reviews #respond .comment-form .form-submit input#submit:focus, .woocommerce.single-product .product .woocommerce_tabs_wrapper .woocommerce-tabs .woocommerce-Tabs-panel #reviews #respond .comment-form .form-submit input#submit:hover, .woocommerce.single-product .product .woocommerce_tabs_wrapper .woocommerce-tabs .woocommerce-Tabs-panel #reviews #respond .comment-form .form-submit input#submit:focus {
            background: #7AC77C;
            color: #ffffff; }
  .woocommerce.single .product .upsells.products, .woocommerce.single .product .related.products, .woocommerce.single-product .product .upsells.products, .woocommerce.single-product .product .related.products {
    max-width: 1800px;
    margin: 0 auto;
    padding-top: 20px;
    padding-bottom: 20px; }
    .woocommerce.single .product .upsells.products h2, .woocommerce.single .product .related.products h2, .woocommerce.single-product .product .upsells.products h2, .woocommerce.single-product .product .related.products h2 {
      color: #333333;
      font-size: 20px;
      text-transform: uppercase;
      font-weight: bold;
      line-height: 1.2;
      margin: 0 0 40px; }
    .woocommerce.single .product .upsells.products ul.products, .woocommerce.single .product .related.products ul.products, .woocommerce.single-product .product .upsells.products ul.products, .woocommerce.single-product .product .related.products ul.products {
      padding-top: 20px; }
      .woocommerce.single .product .upsells.products ul.products li.product, .woocommerce.single .product .related.products ul.products li.product, .woocommerce.single-product .product .upsells.products ul.products li.product, .woocommerce.single-product .product .related.products ul.products li.product {
        padding: 0; }
        .woocommerce.single .product .upsells.products ul.products li.product .woocommerce-loop-product__title, .woocommerce.single .product .related.products ul.products li.product .woocommerce-loop-product__title, .woocommerce.single-product .product .upsells.products ul.products li.product .woocommerce-loop-product__title, .woocommerce.single-product .product .related.products ul.products li.product .woocommerce-loop-product__title {
          color: #555555;
          text-transform: none;
          font-weight: normal;
          font-size: 17px;
          margin: 10px 0 0; }
  .woocommerce.single .product .shop-image-summary-section, .woocommerce.single-product .product .shop-image-summary-section {
    max-width: 1800px;
    margin: 0 auto; }
    .woocommerce.single .product .shop-image-summary-section .onsale, .woocommerce.single-product .product .shop-image-summary-section .onsale {
      border-radius: 50%;
      height: 60px;
      line-height: 58px;
      min-height: auto;
      padding: 0;
      text-transform: uppercase;
      width: 60px;
      background: #F3CE72;
      color: #ffffff; }

/*--------------------------------------------------------------
# WOOCOMMERCE QUICKVIEW
--------------------------------------------------------------*/
.remodal-wrapper .wcqv_prev, .remodal-wrapper .wcqv_next {
  background: #7AC77C;
  color: #ffffff; }
  .remodal-wrapper .wcqv_prev .icon, .remodal-wrapper .wcqv_next .icon {
    color: #ffffff;
    background: none; }
    .remodal-wrapper .wcqv_prev .icon::before, .remodal-wrapper .wcqv_next .icon::before {
      font-family: 'Fontawesome';
      display: block;
      font-size: 20px;
      line-height: 3;
      text-align: center; }
  .remodal-wrapper .wcqv_prev:hover, .remodal-wrapper .wcqv_next:hover {
    background: #F3CE72; }
.remodal-wrapper .wcqv_prev .icon::before {
  content: "\f177"; }
.remodal-wrapper .wcqv_next .icon::before {
  content: "\f178"; }
.remodal-wrapper .remodal .remodal-close {
  background: #7AC77C;
  color: #ffffff; }
  .remodal-wrapper .remodal .remodal-close:hover {
    background: #F3CE72; }
.remodal-wrapper #wcqv_contend {
  max-height: 100%;
  overflow: auto; }
  .remodal-wrapper #wcqv_contend .entry-summary.scrollable {
    height: 100% !important; }
  .remodal-wrapper #wcqv_contend .product {
    padding: 0;
    display: block; }
    .remodal-wrapper #wcqv_contend .product .onsale {
      border-radius: 50%;
      height: 60px;
      line-height: 58px;
      min-height: auto;
      padding: 0;
      text-transform: uppercase;
      width: 60px;
      background: #F3CE72;
      color: #ffffff; }
    .remodal-wrapper #wcqv_contend .product .images {
      height: 100%;
      overflow: auto; }
      .remodal-wrapper #wcqv_contend .product .images .thumbnails {
        position: relative; }
        .remodal-wrapper #wcqv_contend .product .images .thumbnails .thumbnail {
          width: auto;
          display: inline-block;
          margin-right: 5px; }
          .remodal-wrapper #wcqv_contend .product .images .thumbnails .thumbnail.active, .remodal-wrapper #wcqv_contend .product .images .thumbnails .thumbnail:focus, .remodal-wrapper #wcqv_contend .product .images .thumbnails .thumbnail:hover {
            border-color: #F3CE72; }
          .remodal-wrapper #wcqv_contend .product .images .thumbnails .thumbnail img {
            max-width: 120px;
            height: auto;
            width: 100%; }
      .remodal-wrapper #wcqv_contend .product .images img {
        max-width: 100%;
        width: auto;
        height: auto;
        margin: 0 auto; }
    .remodal-wrapper #wcqv_contend .product .entry-summary .product_title {
      color: #1F1F1F;
      line-height: 1.2;
      font-size: 23px;
      font-weight: 700;
      text-align: left; }
    .remodal-wrapper #wcqv_contend .product .entry-summary .woocommerce-product-rating .star-rating {
      color: #FFC737;
      margin-right: 15px; }
    .remodal-wrapper #wcqv_contend .product .entry-summary .woocommerce-product-rating .woocommerce-review-link {
      color: #797979;
      font-size: 15px; }
    .remodal-wrapper #wcqv_contend .product .entry-summary .shop-price-container {
      display: block;
      position: relative;
      margin-top: 15px;
      margin-bottom: 15px; }
      .remodal-wrapper #wcqv_contend .product .entry-summary .shop-price-container .price {
        display: inline-block;
        font-size: 12px;
        font-weight: bold; }
        .remodal-wrapper #wcqv_contend .product .entry-summary .shop-price-container .price .woocommerce-Price-amount {
          color: #1F1F1F;
          font-size: 20px; }
        .remodal-wrapper #wcqv_contend .product .entry-summary .shop-price-container .price del, .remodal-wrapper #wcqv_contend .product .entry-summary .shop-price-container .price ins {
          display: inline-block;
          opacity: 1; }
        .remodal-wrapper #wcqv_contend .product .entry-summary .shop-price-container .price del {
          text-decoration: line-through;
          color: #999999;
          font-size: 18px;
          margin-right: 15px; }
          .remodal-wrapper #wcqv_contend .product .entry-summary .shop-price-container .price del .woocommerce-Price-amount {
            color: #999999;
            font-size: 14px; }
        .remodal-wrapper #wcqv_contend .product .entry-summary .shop-price-container .price ins {
          text-decoration: none;
          color: #1F1F1F;
          font-size: 20px; }
          .remodal-wrapper #wcqv_contend .product .entry-summary .shop-price-container .price ins .woocommerce-Price-amount {
            color: #1F1F1F;
            font-size: 20px; }
    .remodal-wrapper #wcqv_contend .product .entry-summary .woocommerce-product-details__short-description {
      color: #555555;
      font-size: 15px;
      font-weight: 400;
      line-height: 1.8;
      border-top: 1px solid #eeeeee;
      border-bottom: 1px solid #eeeeee;
      padding-top: 10px;
      padding-bottom: 10px;
      margin: 15px 0; }
      .remodal-wrapper #wcqv_contend .product .entry-summary .woocommerce-product-details__short-description p {
        margin: 10px 0; }
    .remodal-wrapper #wcqv_contend .product .entry-summary .stock {
      font-size: 16px;
      color: #7AC77C;
      font-weight: bold;
      margin: 10px 0; }
      .remodal-wrapper #wcqv_contend .product .entry-summary .stock.out-of-stock {
        color: #ff0000; }
    .remodal-wrapper #wcqv_contend .product .entry-summary .cart {
      margin-bottom: 30px;
      margin-top: 30px; }
      .remodal-wrapper #wcqv_contend .product .entry-summary .cart .variations .label {
        font-size: 12px;
        color: #1F1F1F;
        display: block;
        float: left;
        width: 100%;
        text-align: left;
        text-transform: uppercase; }
      .remodal-wrapper #wcqv_contend .product .entry-summary .cart .variations .value {
        display: block; }
        .remodal-wrapper #wcqv_contend .product .entry-summary .cart .variations .value select {
          font-size: 14px;
          height: 60px;
          background-position: 98% center;
          font-weight: bold;
          padding-left: 15px;
          padding-right: 15px;
          margin: 0 0 10px;
          -moz-appearance: none !important;
          background-color: rgba(0, 0, 0, 0.05);
          background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIgeD0iMTJweCIgeT0iMHB4IiB3aWR0aD0iMjRweCIgaGVpZ2h0PSIzcHgiIHZpZXdCb3g9IjAgMCA2IDMiIGVuYWJsZS1iYWNrZ3JvdW5kPSJuZXcgMCAwIDYgMyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+PHBvbHlnb24gcG9pbnRzPSI1Ljk5MiwwIDIuOTkyLDMgLTAuMDA4LDAgIi8+PC9zdmc+");
          background-position: 100% center;
          background-repeat: no-repeat;
          border-color: #cccccc;
          border-radius: 0;
          border-style: solid;
          border-width: 0;
          color: #1F1F1F;
          font-family: inherit;
          line-height: normal;
          width: 100%; }
          .remodal-wrapper #wcqv_contend .product .entry-summary .cart .variations .value select option {
            padding: 10px; }
        .remodal-wrapper #wcqv_contend .product .entry-summary .cart .variations .value .reset_variations {
          font-size: 13px;
          color: #7AC77C;
          font-weight: bold; }
      .remodal-wrapper #wcqv_contend .product .entry-summary .cart .single_variation_wrap .woocommerce-variation {
        padding-bottom: 20px; }
        .remodal-wrapper #wcqv_contend .product .entry-summary .cart .single_variation_wrap .woocommerce-variation .woocommerce-variation-description p {
          color: #999999;
          font-size: 16px;
          font-weight: 400;
          line-height: 2; }
        .remodal-wrapper #wcqv_contend .product .entry-summary .cart .single_variation_wrap .woocommerce-variation .woocommerce-variation-price {
          margin: 10px 0; }
          .remodal-wrapper #wcqv_contend .product .entry-summary .cart .single_variation_wrap .woocommerce-variation .woocommerce-variation-price .price {
            display: inline-block;
            font-size: 24px;
            font-weight: bold;
            margin: 0 0.27778rem;
            vertical-align: middle; }
            .remodal-wrapper #wcqv_contend .product .entry-summary .cart .single_variation_wrap .woocommerce-variation .woocommerce-variation-price .price del, .remodal-wrapper #wcqv_contend .product .entry-summary .cart .single_variation_wrap .woocommerce-variation .woocommerce-variation-price .price ins {
              display: inline-block;
              opacity: 1; }
            .remodal-wrapper #wcqv_contend .product .entry-summary .cart .single_variation_wrap .woocommerce-variation .woocommerce-variation-price .price .woocommerce-Price-amount {
              color: #1F1F1F; }
            .remodal-wrapper #wcqv_contend .product .entry-summary .cart .single_variation_wrap .woocommerce-variation .woocommerce-variation-price .price del {
              text-decoration: line-through;
              color: #999999; }
              .remodal-wrapper #wcqv_contend .product .entry-summary .cart .single_variation_wrap .woocommerce-variation .woocommerce-variation-price .price del .woocommerce-Price-amount, .remodal-wrapper #wcqv_contend .product .entry-summary .cart .single_variation_wrap .woocommerce-variation .woocommerce-variation-price .price del span {
                color: #999999; }
            .remodal-wrapper #wcqv_contend .product .entry-summary .cart .single_variation_wrap .woocommerce-variation .woocommerce-variation-price .price ins {
              text-decoration: none;
              color: #1F1F1F; }
              .remodal-wrapper #wcqv_contend .product .entry-summary .cart .single_variation_wrap .woocommerce-variation .woocommerce-variation-price .price ins span {
                color: #1F1F1F; }
        .remodal-wrapper #wcqv_contend .product .entry-summary .cart .single_variation_wrap .woocommerce-variation .woocommerce-variation-availability {
          margin: 10px 0; }
          .remodal-wrapper #wcqv_contend .product .entry-summary .cart .single_variation_wrap .woocommerce-variation .woocommerce-variation-availability .stock {
            font-size: 13px;
            color: #edb62c;
            font-weight: bold; }
      .remodal-wrapper #wcqv_contend .product .entry-summary .cart .group_table {
        display: table; }
        .remodal-wrapper #wcqv_contend .product .entry-summary .cart .group_table td, .remodal-wrapper #wcqv_contend .product .entry-summary .cart .group_table th {
          display: table-cell;
          vertical-align: middle;
          width: auto;
          padding-bottom: 20px; }
        .remodal-wrapper #wcqv_contend .product .entry-summary .cart .group_table .product {
          display: table-row;
          border-bottom: 1px solid #cccccc; }
          .remodal-wrapper #wcqv_contend .product .entry-summary .cart .group_table .product .quantity.buttons_added {
            padding-right: 0; }
            .remodal-wrapper #wcqv_contend .product .entry-summary .cart .group_table .product .quantity.buttons_added .qty {
              width: 50px;
              height: 30px;
              border: 1px solid #cccccc;
              margin: 15px 0;
              font-size: 16px;
              font-weight: 500;
              padding: 0; }
            .remodal-wrapper #wcqv_contend .product .entry-summary .cart .group_table .product .quantity.buttons_added .minus, .remodal-wrapper #wcqv_contend .product .entry-summary .cart .group_table .product .quantity.buttons_added .plus {
              position: relative;
              margin: 15px 10px;
              width: 30px;
              height: 30px;
              font-size: 20px;
              border: 1px solid #eeeeee; }
            .remodal-wrapper #wcqv_contend .product .entry-summary .cart .group_table .product .quantity.buttons_added .minus {
              float: left; }
            .remodal-wrapper #wcqv_contend .product .entry-summary .cart .group_table .product .quantity.buttons_added .plus {
              float: right; }
          .remodal-wrapper #wcqv_contend .product .entry-summary .cart .group_table .product .label {
            font-size: 16px;
            font-weight: 700;
            line-height: 1.2;
            margin: 0 0 1.66667rem;
            text-align: left;
            text-transform: none; }
            .remodal-wrapper #wcqv_contend .product .entry-summary .cart .group_table .product .label a {
              color: #333333; }
              .remodal-wrapper #wcqv_contend .product .entry-summary .cart .group_table .product .label a:hover {
                color: #7AC77C; }
          .remodal-wrapper #wcqv_contend .product .entry-summary .cart .group_table .product .price {
            font-size: 12px;
            font-weight: bold;
            padding: 0; }
            .remodal-wrapper #wcqv_contend .product .entry-summary .cart .group_table .product .price .woocommerce-Price-amount {
              color: #1F1F1F;
              font-size: 16px; }
            .remodal-wrapper #wcqv_contend .product .entry-summary .cart .group_table .product .price del, .remodal-wrapper #wcqv_contend .product .entry-summary .cart .group_table .product .price ins {
              display: inline-block;
              opacity: 1; }
            .remodal-wrapper #wcqv_contend .product .entry-summary .cart .group_table .product .price del {
              text-decoration: line-through;
              color: #999999;
              font-size: 14px; }
              .remodal-wrapper #wcqv_contend .product .entry-summary .cart .group_table .product .price del .woocommerce-Price-amount {
                color: #999999;
                font-size: 14px; }
            .remodal-wrapper #wcqv_contend .product .entry-summary .cart .group_table .product .price ins {
              text-decoration: none;
              color: #1F1F1F;
              font-size: 16px;
              float: left;
              margin-right: 15px; }
              .remodal-wrapper #wcqv_contend .product .entry-summary .cart .group_table .product .price ins .woocommerce-Price-amount {
                color: #1F1F1F;
                font-size: 16px; }
            .remodal-wrapper #wcqv_contend .product .entry-summary .cart .group_table .product .price .stock {
              font-size: 13px;
              color: #edb62c;
              font-weight: bold; }
      .remodal-wrapper #wcqv_contend .product .entry-summary .cart .quantity {
        display: table-cell;
        padding-right: 25px;
        margin-right: 10px; }
        .remodal-wrapper #wcqv_contend .product .entry-summary .cart .quantity .qty {
          -moz-border-bottom-colors: none;
          -moz-border-left-colors: none;
          -moz-border-right-colors: none;
          -moz-border-top-colors: none;
          background: transparent none repeat scroll 0 0;
          border-color: -moz-use-text-color -moz-use-text-color #cccccc;
          border-image: none;
          border-style: none none solid;
          border-width: 0 0 2px;
          color: #1F1F1F;
          font-size: 18px;
          font-weight: bold;
          height: 57px;
          width: 70px;
          padding: 0 0 0 15px;
          margin: 0;
          text-align: center; }
        .remodal-wrapper #wcqv_contend .product .entry-summary .cart .quantity.buttons_added {
          padding-right: 0; }
          .remodal-wrapper #wcqv_contend .product .entry-summary .cart .quantity.buttons_added .qty {
            width: 70px;
            height: 40px;
            border: 1px solid #cccccc;
            margin: 15px 0;
            font-size: 16px;
            font-weight: 500;
            padding: 0; }
          .remodal-wrapper #wcqv_contend .product .entry-summary .cart .quantity.buttons_added .minus, .remodal-wrapper #wcqv_contend .product .entry-summary .cart .quantity.buttons_added .plus {
            position: relative;
            margin: 15px 10px;
            width: 40px;
            height: 40px;
            font-size: 20px;
            border: 1px solid #eeeeee; }
          .remodal-wrapper #wcqv_contend .product .entry-summary .cart .quantity.buttons_added .minus {
            float: left; }
          .remodal-wrapper #wcqv_contend .product .entry-summary .cart .quantity.buttons_added .plus {
            float: right; }
      .remodal-wrapper #wcqv_contend .product .entry-summary .cart .single_add_to_cart_button {
        -webkit-transition: all 320ms ease;
        -moz-transition: all 320ms ease;
        -ms-transition: all 320ms ease;
        -o-transition: all 320ms ease;
        transition: all 320ms ease;
        -moz-appearance: none;
        background-color: #7AC77C;
        border-color: transparent;
        border-radius: 0;
        border-style: solid;
        border-width: 1px;
        color: #ffffff;
        cursor: pointer;
        display: inline-block;
        font-family: inherit;
        font-size: 13px;
        font-weight: 800;
        line-height: normal;
        margin: 10px;
        padding: 12px 30px;
        position: relative;
        text-align: center;
        text-decoration: none;
        text-transform: uppercase; }
        .remodal-wrapper #wcqv_contend .product .entry-summary .cart .single_add_to_cart_button:hover, .remodal-wrapper #wcqv_contend .product .entry-summary .cart .single_add_to_cart_button:focus {
          background: #F3CE72; }
    .remodal-wrapper #wcqv_contend .product .entry-summary .product_meta {
      border-top: 2px solid #eeeeee;
      display: table;
      width: 100%;
      padding: 20px 0; }
      .remodal-wrapper #wcqv_contend .product .entry-summary .product_meta .sku_wrapper, .remodal-wrapper #wcqv_contend .product .entry-summary .product_meta .posted_in, .remodal-wrapper #wcqv_contend .product .entry-summary .product_meta .tagged_as {
        display: block;
        text-transform: uppercase;
        color: #999999;
        font-size: 12px;
        font-weight: 700;
        padding: 10px 0; }
        .remodal-wrapper #wcqv_contend .product .entry-summary .product_meta .sku_wrapper a, .remodal-wrapper #wcqv_contend .product .entry-summary .product_meta .sku_wrapper .sku, .remodal-wrapper #wcqv_contend .product .entry-summary .product_meta .posted_in a, .remodal-wrapper #wcqv_contend .product .entry-summary .product_meta .posted_in .sku, .remodal-wrapper #wcqv_contend .product .entry-summary .product_meta .tagged_as a, .remodal-wrapper #wcqv_contend .product .entry-summary .product_meta .tagged_as .sku {
          color: #1F1F1F; }
          .remodal-wrapper #wcqv_contend .product .entry-summary .product_meta .sku_wrapper a:hover, .remodal-wrapper #wcqv_contend .product .entry-summary .product_meta .sku_wrapper .sku:hover, .remodal-wrapper #wcqv_contend .product .entry-summary .product_meta .posted_in a:hover, .remodal-wrapper #wcqv_contend .product .entry-summary .product_meta .posted_in .sku:hover, .remodal-wrapper #wcqv_contend .product .entry-summary .product_meta .tagged_as a:hover, .remodal-wrapper #wcqv_contend .product .entry-summary .product_meta .tagged_as .sku:hover {
            color: #F3CE72; }
      .remodal-wrapper #wcqv_contend .product .entry-summary .product_meta .sku_wrapper {
        margin-right: 10px; }

/*--------------------------------------------------------------
# WOOCOMMERCE PRODUCT CAROUSEL
--------------------------------------------------------------*/
@media (max-width: 991px) {
  .wcpscwc-product-slider-wrap .wcpscwc-product-slider .slick-slider .slick-list .slick-track li.product:hover .shop_product_buttons .button {
    display: block;
    margin: 0 auto; } }
.wcpscwc-product-slider-wrap .wcpscwc-product-slider .slick-slider .slick-list .slick-track li.product.slick-slide {
  height: auto; }
.wcpscwc-product-slider-wrap .wcpscwc-product-slider .slick-slider button.slick-arrow {
  -webkit-transition: all 320ms ease;
  -moz-transition: all 320ms ease;
  -ms-transition: all 320ms ease;
  -o-transition: all 320ms ease;
  transition: all 320ms ease;
  background-color: #7AC77C !important;
  background-size: 8px 12px !important;
  z-index: 7; }
  .wcpscwc-product-slider-wrap .wcpscwc-product-slider .slick-slider button.slick-arrow:hover, .wcpscwc-product-slider-wrap .wcpscwc-product-slider .slick-slider button.slick-arrow:focus {
    background-color: #F3CE72 !important;
    outline: none; }
  .wcpscwc-product-slider-wrap .wcpscwc-product-slider .slick-slider button.slick-arrow.slick-prev {
    left: -20px; }
  .wcpscwc-product-slider-wrap .wcpscwc-product-slider .slick-slider button.slick-arrow.slick-next {
    right: -20px; }
.wcpscwc-product-slider-wrap .wcpscwc-product-slider .slick-slider .slick-dots {
  position: relative;
  padding-top: 20px !important; }
  .wcpscwc-product-slider-wrap .wcpscwc-product-slider .slick-slider .slick-dots li button {
    background: #F3CE72 !important;
    border: medium none; }
  .wcpscwc-product-slider-wrap .wcpscwc-product-slider .slick-slider .slick-dots li.slick-active button {
    background: #7AC77C !important; }

/*--------------------------------------------------------------
# WOOCOMMERCE CART
--------------------------------------------------------------*/
.woocommerce-cart th {
  font-size: 20px; }
.woocommerce-cart .return-to-shop, .woocommerce-cart .cart-empty {
  margin: 20px 0; }
.woocommerce-cart .cart .cart_item .product-remove a.remove {
  color: #555555; }
  .woocommerce-cart .cart .cart_item .product-remove a.remove:hover {
    color: #333333; }
.woocommerce-cart .cart .cart_item .product-thumbnail img {
  width: auto;
  height: auto;
  max-width: 100%; }
.woocommerce-cart .cart .cart_item .product-name {
  font-weight: 500;
  font-size: 16px; }
  .woocommerce-cart .cart .cart_item .product-name a {
    color: #333333; }
.woocommerce-cart .cart .cart_item .product-price {
  font-weight: 600;
  font-size: 16px; }
.woocommerce-cart .cart .cart_item .product-quantity .quantity {
  border: 1px solid #cccccc; }
  .woocommerce-cart .cart .cart_item .product-quantity .quantity .qty {
    height: 42px; }
.woocommerce-cart .cart .cart_item .product-subtotal {
  font-weight: 600;
  font-size: 16px; }
.woocommerce-cart .cart .actions {
  padding: 20px 10px; }
  .woocommerce-cart .cart .actions .coupon .input-text {
    width: auto;
    max-width: 100%;
    height: 42px; }
.woocommerce-cart .cart .button {
  padding: 12px 20px;
  display: inline-block;
  line-height: 2 !important; }
  .woocommerce-cart .cart .button:disabled {
    padding: 12px 20px !important;
    background: #cccccc;
    color: #555555; }
.woocommerce-cart .tillage-woocommerce-cart-container h2 {
  color: #333333;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 40px;
  margin-top: 40px; }
.woocommerce-cart .tillage-woocommerce-cart-container table.shop_table {
  border: none; }
.woocommerce-cart .tillage-woocommerce-cart-container .cart-table-block table.cart th {
  font-size: 15px;
  color: #333333;
  font-weight: 600;
  text-transform: uppercase; }
.woocommerce-cart .tillage-woocommerce-cart-container .cart-table-block table.cart td {
  padding: 20px 10px; }
.woocommerce-cart .tillage-woocommerce-cart-container .coupon-table-block .coupon {
  background: #eeeeee;
  padding: 40px;
  text-align: center; }
  .woocommerce-cart .tillage-woocommerce-cart-container .coupon-table-block .coupon label {
    display: none; }
  .woocommerce-cart .tillage-woocommerce-cart-container .coupon-table-block .coupon .input-text {
    width: 100%;
    height: 52px;
    border: 1px solid #cccccc;
    border-radius: 0;
    text-indent: 10px;
    margin-bottom: 20px; }
  .woocommerce-cart .tillage-woocommerce-cart-container .coupon-table-block .coupon .button {
    display: block;
    width: 100%;
    padding: 12px 20px;
    background: #F3CE72;
    color: #ffffff;
    font-size: 14px; }
    .woocommerce-cart .tillage-woocommerce-cart-container .coupon-table-block .coupon .button:hover, .woocommerce-cart .tillage-woocommerce-cart-container .coupon-table-block .coupon .button:focus {
      background: #7AC77C;
      color: #ffffff; }
.woocommerce-cart .cart-collaterals .woocommerce-shipping-calculator {
  display: block; }
  .woocommerce-cart .cart-collaterals .woocommerce-shipping-calculator .shipping-calculator-button {
    font-size: 20px;
    font-weight: 500;
    margin-top: 10px;
    display: inline-block; }
  .woocommerce-cart .cart-collaterals .woocommerce-shipping-calculator .shipping-calculator-form select {
    font-size: 14px;
    height: 53px;
    background-position: 98% center;
    font-weight: bold;
    padding-left: 15px;
    padding-right: 15px;
    margin: 0 0 10px;
    -moz-appearance: none !important;
    background-color: #ffffff;
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIgeD0iMTJweCIgeT0iMHB4IiB3aWR0aD0iMjRweCIgaGVpZ2h0PSIzcHgiIHZpZXdCb3g9IjAgMCA2IDMiIGVuYWJsZS1iYWNrZ3JvdW5kPSJuZXcgMCAwIDYgMyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+PHBvbHlnb24gcG9pbnRzPSI1Ljk5MiwwIDIuOTkyLDMgLTAuMDA4LDAgIi8+PC9zdmc+");
    background-position: 100% center;
    background-repeat: no-repeat;
    border-color: #cccccc;
    border-radius: 0;
    border-style: solid;
    border-width: 1px;
    color: #333333;
    font-family: inherit;
    line-height: normal;
    width: 100%; }
    .woocommerce-cart .cart-collaterals .woocommerce-shipping-calculator .shipping-calculator-form select option {
      padding: 10px; }
  .woocommerce-cart .cart-collaterals .woocommerce-shipping-calculator .shipping-calculator-form input[type="text"] {
    width: 100%;
    height: 52px;
    border: 1px solid #cccccc;
    border-radius: 0;
    text-indent: 10px;
    margin: 0 0 10px; }
  .woocommerce-cart .cart-collaterals .woocommerce-shipping-calculator .shipping-calculator-form .button {
    display: inline-block;
    padding: 12px 20px;
    background: #F3CE72;
    color: #ffffff;
    font-size: 14px;
    margin: 0 0 10px; }
    .woocommerce-cart .cart-collaterals .woocommerce-shipping-calculator .shipping-calculator-form .button:hover, .woocommerce-cart .cart-collaterals .woocommerce-shipping-calculator .shipping-calculator-form .button:focus {
      background: #7AC77C;
      color: #ffffff; }
.woocommerce-cart .cart-collaterals .cart_totals {
  width: 100%; }
  .woocommerce-cart .cart-collaterals .cart_totals h2 {
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 40px;
    margin-bottom: 40px;
    color: #333333;
    display: inline-block; }
  .woocommerce-cart .cart-collaterals .cart_totals table.shop_table {
    background: #eeeeee;
    color: #555555;
    border-radius: 0;
    padding: 30px; }
    .woocommerce-cart .cart-collaterals .cart_totals table.shop_table td, .woocommerce-cart .cart-collaterals .cart_totals table.shop_table th {
      border-top: 1px dotted #555555;
      padding: 15px 10px;
      font-weight: 500;
      color: #333333; }
    .woocommerce-cart .cart-collaterals .cart_totals table.shop_table .order-total .amount {
      font-size: 18px; }
    .woocommerce-cart .cart-collaterals .cart_totals table.shop_table th {
      font-size: 14px;
      width: 20%; }
  .woocommerce-cart .cart-collaterals .cart_totals .wc-proceed-to-checkout .checkout-button {
    -webkit-transition: all 320ms ease;
    -moz-transition: all 320ms ease;
    -ms-transition: all 320ms ease;
    -o-transition: all 320ms ease;
    transition: all 320ms ease;
    background: #7AC77C;
    color: #ffffff;
    border-radius: 0;
    font-size: 14px;
    padding: 12px 20px;
    line-height: 2 !important;
    text-transform: uppercase; }
    .woocommerce-cart .cart-collaterals .cart_totals .wc-proceed-to-checkout .checkout-button:hover {
      background: #48ac4b;
      color: #ffffff; }
  @media (max-width: 991px) {
    .woocommerce-cart .cart-collaterals .cart_totals {
      width: 100%; } }
.woocommerce-cart .cross-sells h2 {
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 40px;
  margin-top: 40px;
  color: #333333;
  display: inline-block; }
@media screen and (min-width: 769px) and (max-width: 991px) {
  .woocommerce-cart .cross-sells ul.products li.product {
    width: 50%;
    margin-right: 0;
    min-height: 550px; } }

/*--------------------------------------------------------------
# WOOCOMMERCE CHECKOUT
--------------------------------------------------------------*/
@media (max-width: 992px) {
  .woocommerce-checkout form.login .form-row, .woocommerce-checkout form.checkout_coupon .form-row, .woocommerce-checkout form .form-row {
    float: none;
    width: 100%; } }
.woocommerce-checkout .woocommerce-checkout-info {
  margin-top: 40px; }
  .woocommerce-checkout .woocommerce-checkout-info .woocommerce-error, .woocommerce-checkout .woocommerce-checkout-info .woocommerce-info, .woocommerce-checkout .woocommerce-checkout-info .woocommerce-message {
    border-top-color: #ffffff;
    color: #797979; }
    .woocommerce-checkout .woocommerce-checkout-info .woocommerce-error a, .woocommerce-checkout .woocommerce-checkout-info .woocommerce-info a, .woocommerce-checkout .woocommerce-checkout-info .woocommerce-message a {
      color: #1F1F1F; }
      .woocommerce-checkout .woocommerce-checkout-info .woocommerce-error a:hover, .woocommerce-checkout .woocommerce-checkout-info .woocommerce-error a:focus, .woocommerce-checkout .woocommerce-checkout-info .woocommerce-info a:hover, .woocommerce-checkout .woocommerce-checkout-info .woocommerce-info a:focus, .woocommerce-checkout .woocommerce-checkout-info .woocommerce-message a:hover, .woocommerce-checkout .woocommerce-checkout-info .woocommerce-message a:focus {
        color: #7AC77C; }
    .woocommerce-checkout .woocommerce-checkout-info .woocommerce-error::before, .woocommerce-checkout .woocommerce-checkout-info .woocommerce-info::before, .woocommerce-checkout .woocommerce-checkout-info .woocommerce-message::before {
      display: inline-block;
      content: "\f0e5";
      font-family: "Fontawesome";
      color: #797979;
      left: 0.5em;
      position: absolute;
      top: 0.5em;
      font-size: 20px; }
  .woocommerce-checkout .woocommerce-checkout-info .login a, .woocommerce-checkout .woocommerce-checkout-info .checkout_coupon a {
    color: #1F1F1F; }
    .woocommerce-checkout .woocommerce-checkout-info .login a:hover, .woocommerce-checkout .woocommerce-checkout-info .login a:focus, .woocommerce-checkout .woocommerce-checkout-info .checkout_coupon a:hover, .woocommerce-checkout .woocommerce-checkout-info .checkout_coupon a:focus {
      color: #7AC77C; }
  .woocommerce-checkout .woocommerce-checkout-info .login p, .woocommerce-checkout .woocommerce-checkout-info .checkout_coupon p {
    margin: 10px 0; }
  .woocommerce-checkout .woocommerce-checkout-info .login label, .woocommerce-checkout .woocommerce-checkout-info .checkout_coupon label {
    color: #797979;
    font-size: 16px;
    font-weight: 400;
    text-transform: none;
    display: block; }
  .woocommerce-checkout .woocommerce-checkout-info .login .woocommerce-form__label-for-checkbox.inline, .woocommerce-checkout .woocommerce-checkout-info .checkout_coupon .woocommerce-form__label-for-checkbox.inline {
    display: block; }
  .woocommerce-checkout .woocommerce-checkout-info .login .input-text, .woocommerce-checkout .woocommerce-checkout-info .checkout_coupon .input-text {
    width: 100%;
    height: 52px;
    border: 1px solid #cccccc;
    border-radius: 0;
    text-indent: 10px;
    margin: 0; }
  .woocommerce-checkout .woocommerce-checkout-info .login input[type="checkbox"], .woocommerce-checkout .woocommerce-checkout-info .checkout_coupon input[type="checkbox"] {
    margin-right: 8px;
    position: relative;
    top: 2px; }
  .woocommerce-checkout .woocommerce-checkout-info .login .button, .woocommerce-checkout .woocommerce-checkout-info .checkout_coupon .button {
    display: inline-block;
    padding: 12px 20px;
    background: #F3CE72;
    color: #ffffff;
    font-size: 14px; }
    .woocommerce-checkout .woocommerce-checkout-info .login .button:hover, .woocommerce-checkout .woocommerce-checkout-info .login .button:focus, .woocommerce-checkout .woocommerce-checkout-info .checkout_coupon .button:hover, .woocommerce-checkout .woocommerce-checkout-info .checkout_coupon .button:focus {
      background: #7AC77C;
      color: #ffffff; }
  .woocommerce-checkout .woocommerce-checkout-info .login .button {
    margin-bottom: 20px; }
.woocommerce-checkout .checkout h3 {
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 40px;
  margin-top: 40px;
  color: #333333;
  display: inline-block; }
.woocommerce-checkout .checkout table.shop_table {
  border: none; }
.woocommerce-checkout .checkout .woocommerce-checkout-review-order {
  background: #F1F1F1;
  padding: 40px; }
  .woocommerce-checkout .checkout .woocommerce-checkout-review-order table.shop_table th {
    font-size: 16px;
    color: #797979;
    font-weight: 700;
    text-transform: uppercase; }
  .woocommerce-checkout .checkout .woocommerce-checkout-review-order table.shop_table td {
    padding: 20px 10px; }
.woocommerce-checkout .checkout .woocommerce-billing-fields label {
  color: #797979;
  font-size: 16px;
  font-weight: 400;
  text-transform: none; }
.woocommerce-checkout .checkout .woocommerce-billing-fields select {
  font-size: 14px;
  height: 53px;
  background-position: 98% center;
  font-weight: bold;
  padding-left: 15px;
  padding-right: 15px;
  margin: 0 0 10px;
  -moz-appearance: none !important;
  background-color: #ffffff;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIgeD0iMTJweCIgeT0iMHB4IiB3aWR0aD0iMjRweCIgaGVpZ2h0PSIzcHgiIHZpZXdCb3g9IjAgMCA2IDMiIGVuYWJsZS1iYWNrZ3JvdW5kPSJuZXcgMCAwIDYgMyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+PHBvbHlnb24gcG9pbnRzPSI1Ljk5MiwwIDIuOTkyLDMgLTAuMDA4LDAgIi8+PC9zdmc+");
  background-position: 100% center;
  background-repeat: no-repeat;
  border-color: #cccccc;
  border-radius: 0;
  border-style: solid;
  border-width: 1px;
  color: #333333;
  font-family: inherit;
  line-height: normal;
  width: 100%; }
  .woocommerce-checkout .checkout .woocommerce-billing-fields select option {
    padding: 10px; }
.woocommerce-checkout .checkout .woocommerce-billing-fields .select2 .selection .select2-selection {
  border-radius: 0;
  height: 53px; }
  .woocommerce-checkout .checkout .woocommerce-billing-fields .select2 .selection .select2-selection .select2-selection__rendered {
    line-height: 53px; }
  .woocommerce-checkout .checkout .woocommerce-billing-fields .select2 .selection .select2-selection .select2-selection__arrow {
    height: 53px; }
.woocommerce-checkout .checkout .woocommerce-billing-fields input[type="text"], .woocommerce-checkout .checkout .woocommerce-billing-fields .input-text {
  width: 100%;
  height: 52px;
  border: 1px solid #cccccc;
  border-radius: 0;
  text-indent: 10px;
  margin: 0 0 10px; }
.woocommerce-checkout .checkout .woocommerce-account-fields {
  display: block;
  clear: both; }
  .woocommerce-checkout .checkout .woocommerce-account-fields label {
    color: #797979;
    font-size: 16px;
    font-weight: 400;
    text-transform: none; }
  .woocommerce-checkout .checkout .woocommerce-account-fields .create-account label {
    display: block; }
    .woocommerce-checkout .checkout .woocommerce-account-fields .create-account label .input-checkbox {
      display: inline-block;
      position: relative; }
    .woocommerce-checkout .checkout .woocommerce-account-fields .create-account label span {
      display: inline-block; }
  .woocommerce-checkout .checkout .woocommerce-account-fields .input-text {
    width: 100%;
    height: 52px;
    border: 1px solid #cccccc;
    border-radius: 0;
    text-indent: 10px;
    margin: 0 0 10px; }
.woocommerce-checkout .checkout .woocommerce-shipping-fields label {
  color: #797979;
  font-size: 16px;
  font-weight: 400;
  text-transform: none; }
  .woocommerce-checkout .checkout .woocommerce-shipping-fields label span {
    padding-left: 30px; }
.woocommerce-checkout .checkout .woocommerce-shipping-fields .input-checkbox {
  display: inline-block;
  margin-left: 0;
  margin-top: 0; }
.woocommerce-checkout .checkout .woocommerce-shipping-fields .select2 .selection .select2-selection {
  border-radius: 0;
  height: 53px; }
  .woocommerce-checkout .checkout .woocommerce-shipping-fields .select2 .selection .select2-selection .select2-selection__rendered {
    line-height: 53px; }
  .woocommerce-checkout .checkout .woocommerce-shipping-fields .select2 .selection .select2-selection .select2-selection__arrow {
    height: 53px; }
.woocommerce-checkout .checkout .woocommerce-shipping-fields input[type="text"], .woocommerce-checkout .checkout .woocommerce-shipping-fields .input-text {
  width: 100%;
  height: 52px;
  border: 1px solid #cccccc;
  border-radius: 0;
  text-indent: 10px;
  margin: 0 0 10px; }
.woocommerce-checkout .checkout .woocommerce-additional-fields label {
  color: #797979;
  font-size: 16px;
  font-weight: 400;
  text-transform: none; }
.woocommerce-checkout .checkout .woocommerce-additional-fields textarea {
  text-indent: 10px; }
.woocommerce-checkout .checkout #payment {
  background: transparent; }
  .woocommerce-checkout .checkout #payment .wc_payment_methods .wc_payment_method {
    margin-bottom: 10px; }
    .woocommerce-checkout .checkout #payment .wc_payment_methods .wc_payment_method label {
      text-transform: uppercase;
      font-weight: 400; }
      .woocommerce-checkout .checkout #payment .wc_payment_methods .wc_payment_method label .about_paypal {
        display: block;
        width: 100%;
        color: #1F1F1F; }
        .woocommerce-checkout .checkout #payment .wc_payment_methods .wc_payment_method label .about_paypal:hover {
          color: #7AC77C; }
    .woocommerce-checkout .checkout #payment .wc_payment_methods .wc_payment_method .payment_box {
      background: transparent;
      padding: 0 12px 12px;
      margin: 0 0 15px 25px; }
      .woocommerce-checkout .checkout #payment .wc_payment_methods .wc_payment_method .payment_box p {
        color: #555555;
        font-size: 14px; }
      .woocommerce-checkout .checkout #payment .wc_payment_methods .wc_payment_method .payment_box::before {
        display: none; }
  .woocommerce-checkout .checkout #payment .place-order {
    margin-top: 20px; }
    .woocommerce-checkout .checkout #payment .place-order #place_order {
      display: block;
      width: 100%;
      font-size: 16px; }

/*--------------------------------------------------------------
# WOOCOMMERCE MYACCOUNT
--------------------------------------------------------------*/
.woocommerce-account .login a {
  font-weight: 500; }
.woocommerce-account .login label {
  color: #797979;
  font-size: 16px;
  font-weight: 400;
  text-transform: none; }
.woocommerce-account .login .input-text {
  width: 100%;
  height: 52px;
  border: 1px solid #cccccc;
  border-radius: 0;
  text-indent: 10px;
  margin: 0 0 10px; }
.woocommerce-account .login input[type="checkbox"] {
  margin-top: 5px; }
.woocommerce-account .login .button {
  font-size: 15px;
  margin-right: 20px; }
.woocommerce-account .woocommerce-ResetPassword label {
  color: #797979;
  font-size: 16px;
  font-weight: 400;
  text-transform: none; }
.woocommerce-account .woocommerce-ResetPassword .input-text {
  width: 100%;
  height: 52px;
  border: 1px solid #cccccc;
  border-radius: 0;
  text-indent: 10px;
  margin: 0 0 10px; }
.woocommerce-account .woocommerce-MyAccount-navigation ul {
  list-style: none;
  font-weight: 500; }
  .woocommerce-account .woocommerce-MyAccount-navigation ul li {
    padding: 10px; }
    .woocommerce-account .woocommerce-MyAccount-navigation ul li a {
      display: inline-block;
      font-size: 16px; }
      .woocommerce-account .woocommerce-MyAccount-navigation ul li a:hover {
        color: #F3CE72; }
    .woocommerce-account .woocommerce-MyAccount-navigation ul li.is-active {
      position: relative; }
      .woocommerce-account .woocommerce-MyAccount-navigation ul li.is-active a {
        color: #F3CE72; }
      .woocommerce-account .woocommerce-MyAccount-navigation ul li.is-active:after {
        content: '\f054';
        font-family: 'Fontawesome';
        position: absolute;
        margin-top: 2px;
        margin-left: 10px;
        color: #F3CE72;
        font-size: 16px; }
.woocommerce-account .woocommerce-MyAccount-content {
  line-height: 2; }
  .woocommerce-account .woocommerce-MyAccount-content a {
    font-weight: 500; }
  .woocommerce-account .woocommerce-MyAccount-content address {
    font-size: 16px; }
  .woocommerce-account .woocommerce-MyAccount-content legend {
    font-size: 20px;
    font-weight: 700; }
  .woocommerce-account .woocommerce-MyAccount-content table.my_account_orders {
    font-size: 14px; }
    .woocommerce-account .woocommerce-MyAccount-content table.my_account_orders .button {
      padding: 8px 20px; }
  .woocommerce-account .woocommerce-MyAccount-content label {
    color: #797979;
    font-size: 16px;
    font-weight: 400;
    text-transform: none; }
  .woocommerce-account .woocommerce-MyAccount-content .input-text {
    width: 100%;
    height: 52px;
    border: 1px solid #cccccc;
    border-radius: 0;
    text-indent: 10px;
    margin: 0 0 10px; }

/*--------------------------------------------------------------
# WOOCOMMERCE Wishlist
--------------------------------------------------------------*/
.tm-woowishlist {
  padding-top: 40px; }
  .tm-woowishlist .tm-woowishlist-wrapper .tm-woowishlist-item {
    border-bottom: 1px solid #cccccc; }
    .tm-woowishlist .tm-woowishlist-wrapper .tm-woowishlist-item .tm-woocomerce-list__product-title {
      font-weight: 500;
      font-size: 20px; }
      .tm-woowishlist .tm-woowishlist-wrapper .tm-woowishlist-item .tm-woocomerce-list__product-title a {
        color: #333333; }
    .tm-woowishlist .tm-woowishlist-wrapper .tm-woowishlist-item .shop-price-container {
      display: block;
      margin-bottom: 10px; }
      .tm-woowishlist .tm-woowishlist-wrapper .tm-woowishlist-item .shop-price-container .price {
        display: inline-block;
        font-size: 18px;
        font-weight: bold;
        margin: 0 0.27778rem;
        vertical-align: middle; }
        .tm-woowishlist .tm-woowishlist-wrapper .tm-woowishlist-item .shop-price-container .price del, .tm-woowishlist .tm-woowishlist-wrapper .tm-woowishlist-item .shop-price-container .price ins {
          display: inline-block;
          opacity: 1; }
        .tm-woowishlist .tm-woowishlist-wrapper .tm-woowishlist-item .shop-price-container .price .woocommerce-Price-amount {
          color: #1F1F1F; }
        .tm-woowishlist .tm-woowishlist-wrapper .tm-woowishlist-item .shop-price-container .price del {
          text-decoration: line-through;
          color: #999999; }
          .tm-woowishlist .tm-woowishlist-wrapper .tm-woowishlist-item .shop-price-container .price del .woocommerce-Price-amount, .tm-woowishlist .tm-woowishlist-wrapper .tm-woowishlist-item .shop-price-container .price del span {
            color: #999999; }
        .tm-woowishlist .tm-woowishlist-wrapper .tm-woowishlist-item .shop-price-container .price ins {
          text-decoration: none;
          color: #1F1F1F; }
          .tm-woowishlist .tm-woowishlist-wrapper .tm-woowishlist-item .shop-price-container .price ins span {
            color: #1F1F1F; }
    .tm-woowishlist .tm-woowishlist-wrapper .tm-woowishlist-item .stock {
      color: #edb62c;
      font-weight: 500; }

/*--------------------------------------------------------------
# WOOCOMMERCE Compare
--------------------------------------------------------------*/
.tm-woocompare-list .tm-woocompare-wrapper .tm-woocompare-table .tm-woocompare-row .tm-woocompare-cell {
  text-align: center; }
  .tm-woocompare-list .tm-woocompare-wrapper .tm-woocompare-table .tm-woocompare-row .tm-woocompare-cell p {
    font-weight: 400; }
.tm-woocompare-list .tm-woocompare-wrapper .tm-woocompare-table .tm-woocompare-row th {
  font-size: 20px; }
.tm-woocompare-list .tm-woocompare-wrapper .tm-woocompare-table .tm-woocompare-row .shop-price-container {
  display: block;
  margin-bottom: 10px; }
  .tm-woocompare-list .tm-woocompare-wrapper .tm-woocompare-table .tm-woocompare-row .shop-price-container .price {
    display: inline-block;
    font-size: 18px;
    font-weight: bold;
    margin: 0 0.27778rem;
    vertical-align: middle; }
    .tm-woocompare-list .tm-woocompare-wrapper .tm-woocompare-table .tm-woocompare-row .shop-price-container .price del, .tm-woocompare-list .tm-woocompare-wrapper .tm-woocompare-table .tm-woocompare-row .shop-price-container .price ins {
      display: inline-block;
      opacity: 1; }
    .tm-woocompare-list .tm-woocompare-wrapper .tm-woocompare-table .tm-woocompare-row .shop-price-container .price .woocommerce-Price-amount {
      color: #1F1F1F; }
    .tm-woocompare-list .tm-woocompare-wrapper .tm-woocompare-table .tm-woocompare-row .shop-price-container .price del {
      text-decoration: line-through;
      color: #999999; }
      .tm-woocompare-list .tm-woocompare-wrapper .tm-woocompare-table .tm-woocompare-row .shop-price-container .price del .woocommerce-Price-amount, .tm-woocompare-list .tm-woocompare-wrapper .tm-woocompare-table .tm-woocompare-row .shop-price-container .price del span {
        color: #999999; }
    .tm-woocompare-list .tm-woocompare-wrapper .tm-woocompare-table .tm-woocompare-row .shop-price-container .price ins {
      text-decoration: none;
      color: #1F1F1F; }
      .tm-woocompare-list .tm-woocompare-wrapper .tm-woocompare-table .tm-woocompare-row .shop-price-container .price ins span {
        color: #1F1F1F; }
.tm-woocompare-list .tm-woocompare-wrapper .tm-woocompare-table .tm-woocompare-row .stock {
  color: #edb62c;
  font-weight: 500; }

/*--------------------------------------------------------------
# SEARCH PAGE
--------------------------------------------------------------*/
.search-container {
  margin-top: 40px; }
  .search-container .search-content {
    color: #333333; }
    .search-container .search-content .text-primary {
      color: #7AC77C; }
    .search-container .search-content .searchform {
      display: block;
      margin-top: 20px;
      margin-bottom: 40px; }
      .search-container .search-content .searchform .input-group .form-control {
        height: 53px;
        background: transparent;
        border: 2px solid #eeeeee;
        border-radius: 0;
        color: #333333;
        border-right: none;
        font-weight: 500;
        font-size: 18px; }
      .search-container .search-content .searchform .btn.submit {
        -webkit-transition: all 320ms ease;
        -moz-transition: all 320ms ease;
        -ms-transition: all 320ms ease;
        -o-transition: all 320ms ease;
        transition: all 320ms ease;
        display: inline-block;
        border: none;
        border-radius: 0px;
        padding: 15px 26px;
        font-size: 16px;
        background: #7AC77C;
        box-shadow: none;
        text-shadow: none;
        color: #ffffff; }
        .search-container .search-content .searchform .btn.submit:hover, .search-container .search-content .searchform .btn.submit:focus {
          background: #F3CE72;
          color: #ffffff; }

.search-not-found {
  margin-bottom: 40px; }

/*--------------------------------------------------------------
# BREDCRUMBS
--------------------------------------------------------------*/
.tillage-breadcrumb {
  background: #f9e7b9;
  padding-top: 20px;
  padding-bottom: 20px; }
  .tillage-breadcrumb .page-header, .tillage-breadcrumb .archive-header {
    border-bottom: none;
    margin: 20px auto;
    padding-bottom: 0;
    display: block; }
@media (max-width: 767px) {
	.tillage-breadcrumb .page-header, .tillage-breadcrumb .archive-header {
		text-align: center;
	}
}
    .tillage-breadcrumb .page-header .page-title, .tillage-breadcrumb .archive-header .page-title {
      color: #333333;
      margin: 10px 0; }
    @media (max-width: 767px) {
      .tillage-breadcrumb .page-header .page-title, .tillage-breadcrumb .archive-header .page-title {
        font-size: 24px;
        margin: 0; } }
  .tillage-breadcrumb .page-title {
    color: #333333; }
  .tillage-breadcrumb .tillage-breadcrumb-banner {
    margin: 20px 0;
    display: block; }
    .tillage-breadcrumb .tillage-breadcrumb-banner #crumbs {
      color: #ffffff;
      font-size: 16px; }
      .tillage-breadcrumb .tillage-breadcrumb-banner #crumbs i, .tillage-breadcrumb .tillage-breadcrumb-banner #crumbs em {
        margin-right: 3px; }
      .tillage-breadcrumb .tillage-breadcrumb-banner #crumbs a {
        color: #ffffff; }
        .tillage-breadcrumb .tillage-breadcrumb-banner #crumbs a:hover, .tillage-breadcrumb .tillage-breadcrumb-banner #crumbs a:focus {
          color: #ffffff; }
      .tillage-breadcrumb .tillage-breadcrumb-banner #crumbs a, .tillage-breadcrumb .tillage-breadcrumb-banner #crumbs .current {
        -webkit-transition: all 320ms ease;
        -moz-transition: all 320ms ease;
        -ms-transition: all 320ms ease;
        -o-transition: all 320ms ease;
        transition: all 320ms ease;
        background: #7AC77C;
        color: #ffffff;
        display: block;
        float: left;
        font-size: 16px;
        height: 30px;
        line-height: 20px;
        margin: 10px 10px 10px 0;
        padding: 10px 20px 30px 30px;
        position: relative;
        text-align: center;
        text-decoration: none; }
        .tillage-breadcrumb .tillage-breadcrumb-banner #crumbs a:after, .tillage-breadcrumb .tillage-breadcrumb-banner #crumbs .current:after {
          -webkit-transition: all 320ms ease;
          -moz-transition: all 320ms ease;
          -ms-transition: all 320ms ease;
          -o-transition: all 320ms ease;
          transition: all 320ms ease;
          content: "";
          border-top: 20px solid transparent;
          border-bottom: 20px solid transparent;
          border-left: 20px solid #7AC77C;
          position: absolute;
          right: -20px;
          top: 0;
          z-index: 1; }
        .tillage-breadcrumb .tillage-breadcrumb-banner #crumbs a:before, .tillage-breadcrumb .tillage-breadcrumb-banner #crumbs .current:before {
          content: "";
          border-top: 20px solid transparent;
          border-bottom: 20px solid transparent;
          border-left: 20px solid #f9e7b9;
          position: absolute;
          left: 0;
          top: 0; }
        .tillage-breadcrumb .tillage-breadcrumb-banner #crumbs a:hover, .tillage-breadcrumb .tillage-breadcrumb-banner #crumbs .current:hover {
          background: #edb62c; }
          .tillage-breadcrumb .tillage-breadcrumb-banner #crumbs a:hover:after, .tillage-breadcrumb .tillage-breadcrumb-banner #crumbs .current:hover:after {
            border-left-color: #edb62c; }
      .tillage-breadcrumb .tillage-breadcrumb-banner #crumbs a:first-child {
        border-top-left-radius: 4px;
        border-bottom-left-radius: 4px;
        padding: 10px 20px 30px; }
      .tillage-breadcrumb .tillage-breadcrumb-banner #crumbs a:first-child:before {
        display: none; }
  @media (max-width: 767px) {
    .tillage-breadcrumb .tillage-breadcrumb-banner #crumbs a, .tillage-breadcrumb .tillage-breadcrumb-banner #crumbs .current {
      height: auto;
      padding: 10px; }
      .tillage-breadcrumb .tillage-breadcrumb-banner #crumbs a:before, .tillage-breadcrumb .tillage-breadcrumb-banner #crumbs a:after, .tillage-breadcrumb .tillage-breadcrumb-banner #crumbs .current:before, .tillage-breadcrumb .tillage-breadcrumb-banner #crumbs .current:after {
        display: none; }
    .tillage-breadcrumb .tillage-breadcrumb-banner #crumbs a:first-child {
      padding: 10px; } }

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.tlp-team .layout1 .single-team-area {
  -webkit-transition: all 320ms ease;
  -moz-transition: all 320ms ease;
  -ms-transition: all 320ms ease;
  -o-transition: all 320ms ease;
  transition: all 320ms ease;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 20px;
  box-shadow: 0 0 1px 1px #cccccc; }
  .tlp-team .layout1 .single-team-area .tlp-content {
    background: transparent !important;
    margin-top: 20px;
    border-top: 1px solid #cccccc; }
    .tlp-team .layout1 .single-team-area .tlp-content .name, .tlp-team .layout1 .single-team-area .tlp-content h3 {
      color: #1F1F1F;
      text-transform: capitalize;
      font-size: 20px;
      font-weight: 600 !important; }
      .tlp-team .layout1 .single-team-area .tlp-content .name a, .tlp-team .layout1 .single-team-area .tlp-content h3 a {
        color: #1F1F1F !important; }
    .tlp-team .layout1 .single-team-area .tlp-content .designation {
      color: #7AC77C;
      text-transform: capitalize;
      font-size: 16px; }
  .tlp-team .layout1 .single-team-area .short-bio p {
    padding: 0; }
  .tlp-team .layout1 .single-team-area .tpl-social {
    -webkit-transition: right 620ms ease;
    -moz-transition: right 620ms ease;
    -ms-transition: right 620ms ease;
    -o-transition: right 620ms ease;
    transition: right 620ms ease;
    position: absolute;
    right: -50px;
    top: 0; }
    .tlp-team .layout1 .single-team-area .tpl-social a {
      -webkit-transition: all 320ms ease;
      -moz-transition: all 320ms ease;
      -ms-transition: all 320ms ease;
      -o-transition: all 320ms ease;
      transition: all 320ms ease;
      background: #7AC77C;
      color: #ffffff;
      border-radius: 50%;
      display: block;
      font-size: 20px;
      height: 40px;
      line-height: 43px;
      margin: 5px;
      width: 40px; }
      .tlp-team .layout1 .single-team-area .tpl-social a .fa {
        -webkit-transition: all 320ms ease;
        -moz-transition: all 320ms ease;
        -ms-transition: all 320ms ease;
        -o-transition: all 320ms ease;
        transition: all 320ms ease;
        display: inline-block;
        background: transparent none repeat scroll 0 0;
        height: auto;
        width: auto;
        color: #ffffff; }
      .tlp-team .layout1 .single-team-area .tpl-social a:hover, .tlp-team .layout1 .single-team-area .tpl-social a:focus {
        background: #F3CE72;
        color: #000000; }
        .tlp-team .layout1 .single-team-area .tpl-social a:hover .fa, .tlp-team .layout1 .single-team-area .tpl-social a:focus .fa {
          color: #000000; }
  .tlp-team .layout1 .single-team-area:hover {
    box-shadow: 0 0 2px 2px #cccccc; }
    .tlp-team .layout1 .single-team-area:hover .tpl-social {
      -webkit-transition: right 620ms ease;
      -moz-transition: right 620ms ease;
      -ms-transition: right 620ms ease;
      -o-transition: right 620ms ease;
      transition: right 620ms ease;
      right: 10px; }
.tlp-team.tlp-team-detail .tlp-member-article {
  display: inline-block;
  margin-bottom: 0; }
  .tlp-team.tlp-team-detail .tlp-member-article .team-detail-desc .tlp-member-title {
    font-size: 25px;
    font-weight: 600;
    line-height: 1.4;
    text-transform: uppercase;
    color: #333333;
    margin-bottom: 5px;
    margin-top: 0; }
  .tlp-team.tlp-team-detail .tlp-member-article .team-detail-desc .tlp-position {
    margin-bottom: 10px;
    padding-bottom: 20px;
    text-transform: uppercase;
    color: #797979; }
    .tlp-team.tlp-team-detail .tlp-member-article .team-detail-desc .tlp-position:after {
      content: '';
      height: 2px;
      width: 50px;
      display: block;
      background: #7AC77C;
      position: relative;
      bottom: -10px; }
  .tlp-team.tlp-team-detail .tlp-member-article .team-detail-desc .tlp-member-detail {
    margin-bottom: 20px; }
    .tlp-team.tlp-team-detail .tlp-member-article .team-detail-desc .tlp-member-detail p {
      font-size: 16px;
      color: #797979;
      font-weight: normal;
      line-height: 2; }
  .tlp-team.tlp-team-detail .tlp-member-article .team-detail-desc .tlp-single-details .contact-info {
    margin-top: 20px;
    margin-bottom: 20px;
    list-style: none; }
    .tlp-team.tlp-team-detail .tlp-member-article .team-detail-desc .tlp-single-details .contact-info li {
      color: #333333;
      font-size: 14px;
      font-weight: 600;
      margin-top: 10px;
      margin-bottom: 10px; }
      .tlp-team.tlp-team-detail .tlp-member-article .team-detail-desc .tlp-single-details .contact-info li strong {
        color: #797979;
        text-transform: uppercase;
        margin-right: 10px;
        min-width: 100px;
        display: inline-block; }
  .tlp-team.tlp-team-detail .tlp-member-article .team-detail-desc .tpl-social {
    margin: 20px 0; }
    .tlp-team.tlp-team-detail .tlp-member-article .team-detail-desc .tpl-social a {
      -webkit-transition: all 320ms ease;
      -moz-transition: all 320ms ease;
      -ms-transition: all 320ms ease;
      -o-transition: all 320ms ease;
      transition: all 320ms ease;
      display: inline-block;
      height: 40px;
      line-height: 40px;
      border-radius: 50%;
      overflow: hidden;
      position: relative;
      text-align: center;
      width: 40px;
      margin: 8px 8px 8px 0;
      border: 1px solid #7AC77C;
      background: #7AC77C;
      color: #ffffff; }
      .tlp-team.tlp-team-detail .tlp-member-article .team-detail-desc .tpl-social a:hover {
        border: 1px solid #F3CE72;
        background: #F3CE72; }
        .tlp-team.tlp-team-detail .tlp-member-article .team-detail-desc .tpl-social a:hover .fa {
          background: transparent; }
      .tlp-team.tlp-team-detail .tlp-member-article .team-detail-desc .tpl-social a .fa {
        background: transparent;
        display: inline-block; }
  .tlp-team.tlp-team-detail .tlp-member-article .tlp-member-feature-img img {
    width: 100%;
    height: auto; }

.related-posts.tlp-team-related .tillage-widget {
  padding: 0; }
  .related-posts.tlp-team-related .tillage-widget .tillage-widget-title {
    padding-bottom: 20px;
    font-size: 26px; }
  .related-posts.tlp-team-related .tillage-widget .tlp-team {
    padding: 0; }
.related-posts.tlp-portfolio-related .tillage-widget {
  padding: 0; }
  .related-posts.tlp-portfolio-related .tillage-widget .tillage-widget-title {
    padding-bottom: 20px;
    font-size: 26px; }
  .related-posts.tlp-portfolio-related .tillage-widget .tlp-team {
    padding: 0; }

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.tlp-portfolio {
  margin-top: 40px;
  margin-bottom: 40px; }
  .tlp-portfolio .filter-button-group {
    padding: 15px;
    margin-bottom: 40px;
    text-align: right; }
    .tlp-portfolio .filter-button-group button {
      -webkit-transition: all 320ms ease;
      -moz-transition: all 320ms ease;
      -ms-transition: all 320ms ease;
      -o-transition: all 320ms ease;
      transition: all 320ms ease;
      background: #F3CE72;
      color: #ffffff;
      margin: 5px;
      font-weight: 600; }
      .tlp-portfolio .filter-button-group button:hover, .tlp-portfolio .filter-button-group button.selected {
        background: #7AC77C; }
  .tlp-portfolio .tlp-portfolio-isotope .tlp-item .tlp-portfolio-item {
    position: relative; }
    .tlp-portfolio .tlp-portfolio-isotope .tlp-item .tlp-portfolio-item .tlp-portfolio-thum {
      background: #F3CE72; }
      .tlp-portfolio .tlp-portfolio-isotope .tlp-item .tlp-portfolio-item .tlp-portfolio-thum img {
        width: 100%;
        height: auto; }
      .tlp-portfolio .tlp-portfolio-isotope .tlp-item .tlp-portfolio-item .tlp-portfolio-thum .tlp-overlay {
        background: #7a6739;
        background: rgba(0, 0, 0, 0.5); }
        .tlp-portfolio .tlp-portfolio-isotope .tlp-item .tlp-portfolio-item .tlp-portfolio-thum .tlp-overlay .link-icon a {
          -webkit-transition: all 320ms ease;
          -moz-transition: all 320ms ease;
          -ms-transition: all 320ms ease;
          -o-transition: all 320ms ease;
          transition: all 320ms ease;
          font-size: 18px;
          margin-right: 10px;
          width: 50px;
          height: 50px;
          line-height: 48px;
          padding: 0;
          text-align: center; }
          .tlp-portfolio .tlp-portfolio-isotope .tlp-item .tlp-portfolio-item .tlp-portfolio-thum .tlp-overlay .link-icon a:hover {
            background: #7AC77C;
            border-color: #7AC77C; }
    .tlp-portfolio .tlp-portfolio-isotope .tlp-item .tlp-portfolio-item .tlp-content {
      -webkit-transition: all 500ms ease;
      -moz-transition: all 500ms ease;
      -ms-transition: all 500ms ease;
      -o-transition: all 500ms ease;
      transition: all 500ms ease;
      background: transparent;
      color: #555555; }
      .tlp-portfolio .tlp-portfolio-isotope .tlp-item .tlp-portfolio-item .tlp-content .tlp-content-holder {
        padding: 20px 0; }
        .tlp-portfolio .tlp-portfolio-isotope .tlp-item .tlp-portfolio-item .tlp-content .tlp-content-holder h3 {
          color: #333333;
          font-size: 14px;
          font-weight: bold;
          letter-spacing: 0.05em;
          text-transform: uppercase; }
          .tlp-portfolio .tlp-portfolio-isotope .tlp-item .tlp-portfolio-item .tlp-content .tlp-content-holder h3 a {
            color: #333333; }
        .tlp-portfolio .tlp-portfolio-isotope .tlp-item .tlp-portfolio-item .tlp-content .tlp-content-holder p {
          color: #797979; }
    .tlp-portfolio .tlp-portfolio-isotope .tlp-item .tlp-portfolio-item:hover .tlp-portfolio-thum img {
      -webkit-transform: scale(1.1);
      -moz-transform: scale(1.1);
      -ms-transform: scale(1.1);
      -o-transform: scale(1.1);
      transform: scale(1.1); }
    .tlp-portfolio .tlp-portfolio-isotope .tlp-item .tlp-portfolio-item:hover .tlp-portfolio-thum .tlp-overlay {
      opacity: 1; }
      .tlp-portfolio .tlp-portfolio-isotope .tlp-item .tlp-portfolio-item:hover .tlp-portfolio-thum .tlp-overlay .link-icon {
        opacity: 1; }
    .tlp-portfolio .tlp-portfolio-isotope .tlp-item .tlp-portfolio-item:hover .tlp-content .tlp-content-holder h3 a {
      color: #7AC77C; }
  .tlp-portfolio.tlp-portfolio-detail .tlp-single-detail {
    display: inline-block; }
    .tlp-portfolio.tlp-portfolio-detail .tlp-single-detail .portfolio-detail-desc .portfolio-title {
      font-size: 25px;
      font-weight: 600;
      line-height: 1.4;
      text-transform: uppercase;
      color: #555555;
      margin-top: 0;
      margin-bottom: 30px;
      letter-spacing: 0.1em; }
    .tlp-portfolio.tlp-portfolio-detail .tlp-single-detail .portfolio-detail-desc .portfolio-details {
      margin-bottom: 20px; }
      .tlp-portfolio.tlp-portfolio-detail .tlp-single-detail .portfolio-detail-desc .portfolio-details p {
        font-size: 16px;
        color: #797979;
        font-weight: normal;
        line-height: 2; }
    .tlp-portfolio.tlp-portfolio-detail .tlp-single-detail .portfolio-detail-desc .others-info {
      margin-top: 20px;
      margin-bottom: 20px; }
      .tlp-portfolio.tlp-portfolio-detail .tlp-single-detail .portfolio-detail-desc .others-info .single-item-meta .categories, .tlp-portfolio.tlp-portfolio-detail .tlp-single-detail .portfolio-detail-desc .others-info .single-item-meta .tags {
        text-transform: uppercase;
        color: #333333;
        font-size: 12px;
        font-weight: 600;
        padding-bottom: 20px; }
    .tlp-portfolio.tlp-portfolio-detail .tlp-single-detail .portfolio-detail-desc .single-portfolio-share div {
      float: none; }
    .tlp-portfolio.tlp-portfolio-detail .tlp-single-detail .portfolio-detail-desc .single-portfolio-share .fb-share, .tlp-portfolio.tlp-portfolio-detail .tlp-single-detail .portfolio-detail-desc .single-portfolio-share .twitter-share, .tlp-portfolio.tlp-portfolio-detail .tlp-single-detail .portfolio-detail-desc .single-portfolio-share .linkedin-share, .tlp-portfolio.tlp-portfolio-detail .tlp-single-detail .portfolio-detail-desc .single-portfolio-share .googleplus-share {
      -webkit-transition: all 320ms ease;
      -moz-transition: all 320ms ease;
      -ms-transition: all 320ms ease;
      -o-transition: all 320ms ease;
      transition: all 320ms ease;
      display: inline-block;
      height: 50px;
      line-height: 50px;
      border-radius: 50%;
      overflow: hidden;
      position: relative;
      text-align: center;
      width: 50px;
      margin: 0 auto;
      border: 1px solid #7AC77C;
      background: #7AC77C;
      color: #ffffff;
      z-index: 2; }
      .tlp-portfolio.tlp-portfolio-detail .tlp-single-detail .portfolio-detail-desc .single-portfolio-share .fb-share:before, .tlp-portfolio.tlp-portfolio-detail .tlp-single-detail .portfolio-detail-desc .single-portfolio-share .twitter-share:before, .tlp-portfolio.tlp-portfolio-detail .tlp-single-detail .portfolio-detail-desc .single-portfolio-share .linkedin-share:before, .tlp-portfolio.tlp-portfolio-detail .tlp-single-detail .portfolio-detail-desc .single-portfolio-share .googleplus-share:before {
        position: absolute;
        left: 0;
        right: 0;
        font-family: "Fontawesome";
        font-size: 16px;
        color: #ffffff;
        z-index: -1; }
      .tlp-portfolio.tlp-portfolio-detail .tlp-single-detail .portfolio-detail-desc .single-portfolio-share .fb-share iframe, .tlp-portfolio.tlp-portfolio-detail .tlp-single-detail .portfolio-detail-desc .single-portfolio-share .fb-share span, .tlp-portfolio.tlp-portfolio-detail .tlp-single-detail .portfolio-detail-desc .single-portfolio-share .twitter-share iframe, .tlp-portfolio.tlp-portfolio-detail .tlp-single-detail .portfolio-detail-desc .single-portfolio-share .twitter-share span, .tlp-portfolio.tlp-portfolio-detail .tlp-single-detail .portfolio-detail-desc .single-portfolio-share .linkedin-share iframe, .tlp-portfolio.tlp-portfolio-detail .tlp-single-detail .portfolio-detail-desc .single-portfolio-share .linkedin-share span, .tlp-portfolio.tlp-portfolio-detail .tlp-single-detail .portfolio-detail-desc .single-portfolio-share .googleplus-share iframe, .tlp-portfolio.tlp-portfolio-detail .tlp-single-detail .portfolio-detail-desc .single-portfolio-share .googleplus-share span {
        opacity: 0;
        z-index: 2;
        vertical-align: middle !important; }
      .tlp-portfolio.tlp-portfolio-detail .tlp-single-detail .portfolio-detail-desc .single-portfolio-share .fb-share:hover, .tlp-portfolio.tlp-portfolio-detail .tlp-single-detail .portfolio-detail-desc .single-portfolio-share .twitter-share:hover, .tlp-portfolio.tlp-portfolio-detail .tlp-single-detail .portfolio-detail-desc .single-portfolio-share .linkedin-share:hover, .tlp-portfolio.tlp-portfolio-detail .tlp-single-detail .portfolio-detail-desc .single-portfolio-share .googleplus-share:hover {
        border: 1px solid #F3CE72;
        background: #F3CE72; }
        .tlp-portfolio.tlp-portfolio-detail .tlp-single-detail .portfolio-detail-desc .single-portfolio-share .fb-share:hover:before, .tlp-portfolio.tlp-portfolio-detail .tlp-single-detail .portfolio-detail-desc .single-portfolio-share .twitter-share:hover:before, .tlp-portfolio.tlp-portfolio-detail .tlp-single-detail .portfolio-detail-desc .single-portfolio-share .linkedin-share:hover:before, .tlp-portfolio.tlp-portfolio-detail .tlp-single-detail .portfolio-detail-desc .single-portfolio-share .googleplus-share:hover:before {
          color: #ffffff; }
    .tlp-portfolio.tlp-portfolio-detail .tlp-single-detail .portfolio-detail-desc .single-portfolio-share .fb-share .fb-share-button {
      display: block;
      float: none; }
    .tlp-portfolio.tlp-portfolio-detail .tlp-single-detail .portfolio-detail-desc .single-portfolio-share .fb-share:before {
      content: "\f09a"; }
    .tlp-portfolio.tlp-portfolio-detail .tlp-single-detail .portfolio-detail-desc .single-portfolio-share .twitter-share:before {
      content: "\f099"; }
    .tlp-portfolio.tlp-portfolio-detail .tlp-single-detail .portfolio-detail-desc .single-portfolio-share .linkedin-share:before {
      content: "\f0e1"; }
    .tlp-portfolio.tlp-portfolio-detail .tlp-single-detail .portfolio-detail-desc .single-portfolio-share .googleplus-share:before {
      content: "\f0d5"; }
    .tlp-portfolio.tlp-portfolio-detail .tlp-single-detail .portfolio-feature-img img {
      width: 100%;
      height: auto; }
  .tlp-portfolio .slider.owl-carousel .owl-wrapper-outer .owl-wrapper .owl-item {
    padding: 0; }
    .tlp-portfolio .slider.owl-carousel .owl-wrapper-outer .owl-wrapper .owl-item .tlp-portfolio-item {
      position: relative; }
      .tlp-portfolio .slider.owl-carousel .owl-wrapper-outer .owl-wrapper .owl-item .tlp-portfolio-item .tlp-portfolio-thum {
        background: #F3CE72; }
        .tlp-portfolio .slider.owl-carousel .owl-wrapper-outer .owl-wrapper .owl-item .tlp-portfolio-item .tlp-portfolio-thum img {
          width: 100%;
          height: auto; }
        .tlp-portfolio .slider.owl-carousel .owl-wrapper-outer .owl-wrapper .owl-item .tlp-portfolio-item .tlp-portfolio-thum .tlp-overlay {
          background: #7a6739;
          background: rgba(0, 0, 0, 0.5); }
          .tlp-portfolio .slider.owl-carousel .owl-wrapper-outer .owl-wrapper .owl-item .tlp-portfolio-item .tlp-portfolio-thum .tlp-overlay .link-icon a {
            -webkit-transition: all 320ms ease;
            -moz-transition: all 320ms ease;
            -ms-transition: all 320ms ease;
            -o-transition: all 320ms ease;
            transition: all 320ms ease;
            font-size: 18px;
            margin-right: 10px;
            width: 50px;
            height: 50px;
            line-height: 48px;
            padding: 0;
            text-align: center; }
            .tlp-portfolio .slider.owl-carousel .owl-wrapper-outer .owl-wrapper .owl-item .tlp-portfolio-item .tlp-portfolio-thum .tlp-overlay .link-icon a:hover {
              background: #7AC77C;
              border-color: #7AC77C; }
      .tlp-portfolio .slider.owl-carousel .owl-wrapper-outer .owl-wrapper .owl-item .tlp-portfolio-item .tlp-content {
        -webkit-transition: all 500ms ease;
        -moz-transition: all 500ms ease;
        -ms-transition: all 500ms ease;
        -o-transition: all 500ms ease;
        transition: all 500ms ease;
        background: transparent;
        color: #555555; }
        .tlp-portfolio .slider.owl-carousel .owl-wrapper-outer .owl-wrapper .owl-item .tlp-portfolio-item .tlp-content .tlp-content-holder {
          padding: 20px 0; }
          .tlp-portfolio .slider.owl-carousel .owl-wrapper-outer .owl-wrapper .owl-item .tlp-portfolio-item .tlp-content .tlp-content-holder h3 {
            color: #333333;
            font-size: 14px;
            font-weight: bold;
            letter-spacing: 0.05em;
            text-transform: uppercase; }
            .tlp-portfolio .slider.owl-carousel .owl-wrapper-outer .owl-wrapper .owl-item .tlp-portfolio-item .tlp-content .tlp-content-holder h3 a {
              color: #333333; }
          .tlp-portfolio .slider.owl-carousel .owl-wrapper-outer .owl-wrapper .owl-item .tlp-portfolio-item .tlp-content .tlp-content-holder p {
            color: #797979; }
      .tlp-portfolio .slider.owl-carousel .owl-wrapper-outer .owl-wrapper .owl-item .tlp-portfolio-item:hover .tlp-portfolio-thum img {
        -webkit-transform: scale(1.1);
        -moz-transform: scale(1.1);
        -ms-transform: scale(1.1);
        -o-transform: scale(1.1);
        transform: scale(1.1); }
      .tlp-portfolio .slider.owl-carousel .owl-wrapper-outer .owl-wrapper .owl-item .tlp-portfolio-item:hover .tlp-portfolio-thum .tlp-overlay {
        opacity: 1; }
        .tlp-portfolio .slider.owl-carousel .owl-wrapper-outer .owl-wrapper .owl-item .tlp-portfolio-item:hover .tlp-portfolio-thum .tlp-overlay .link-icon {
          opacity: 1; }
      .tlp-portfolio .slider.owl-carousel .owl-wrapper-outer .owl-wrapper .owl-item .tlp-portfolio-item:hover .tlp-content .tlp-content-holder h3 a {
        color: #7AC77C; }
  .tlp-portfolio .slider.owl-carousel .owl-controls .owl-buttons {
    top: -80px; }
    .tlp-portfolio .slider.owl-carousel .owl-controls .owl-buttons .owl-prev, .tlp-portfolio .slider.owl-carousel .owl-controls .owl-buttons .owl-next {
      background: #F3CE72;
      border-radius: 30px;
      color: #ffffff;
      display: inline-block;
      font-size: 12px;
      height: 30px;
      line-height: 30px;
      margin: 5px;
      opacity: 1;
      padding: 0;
      text-align: center;
      width: 30px; }
  .tlp-portfolio .slider.owl-carousel .owl-controls .owl-pagination .owl-page span {
    background: #7AC77C;
    margin: 5px; }
  .tlp-portfolio .slider.owl-carousel .owl-controls .owl-pagination .owl-page.active span {
    background: #F3CE72; }

.gallery-portfolio .tlp-portfolio-isotope .tlp-item {
  padding-left: 0 !important;
  padding-right: 0 !important;
  margin-bottom: 0 !important; }
  .gallery-portfolio .tlp-portfolio-isotope .tlp-item .tlp-portfolio-item {
    position: relative; }
    .gallery-portfolio .tlp-portfolio-isotope .tlp-item .tlp-portfolio-item .tlp-content {
      -webkit-transition: all 1000ms ease;
      -moz-transition: all 1000ms ease;
      -ms-transition: all 1000ms ease;
      -o-transition: all 1000ms ease;
      transition: all 1000ms ease;
      position: absolute;
      top: 55%;
      opacity: 0; }
      .gallery-portfolio .tlp-portfolio-isotope .tlp-item .tlp-portfolio-item .tlp-content .tlp-content-holder {
        text-align: center; }
        .gallery-portfolio .tlp-portfolio-isotope .tlp-item .tlp-portfolio-item .tlp-content .tlp-content-holder h3 {
          color: #ffffff; }
          .gallery-portfolio .tlp-portfolio-isotope .tlp-item .tlp-portfolio-item .tlp-content .tlp-content-holder h3 a {
            color: #ffffff; }
        .gallery-portfolio .tlp-portfolio-isotope .tlp-item .tlp-portfolio-item .tlp-content .tlp-content-holder p {
          display: none; }
    .gallery-portfolio .tlp-portfolio-isotope .tlp-item .tlp-portfolio-item:hover .tlp-content {
      opacity: 1; }
      .gallery-portfolio .tlp-portfolio-isotope .tlp-item .tlp-portfolio-item:hover .tlp-content .tlp-content-holder {
        text-align: center; }
        .gallery-portfolio .tlp-portfolio-isotope .tlp-item .tlp-portfolio-item:hover .tlp-content .tlp-content-holder h3 {
          color: #ffffff; }
          .gallery-portfolio .tlp-portfolio-isotope .tlp-item .tlp-portfolio-item:hover .tlp-content .tlp-content-holder h3 a {
            color: #ffffff !important; }

.masonry-portfolio .vc_grid-item-mini .vc_gitem-zone .vc_gitem-zone-mini .vc_gitem_row .vc_gitem-col .vc_gitem-post-data-source-post_date {
  display: none; }
.masonry-portfolio .vc_grid-item-mini .vc_gitem-zone .vc_gitem-zone-mini .vc_gitem_row .vc_gitem-col .vc_gitem-post-data-source-post_title, .masonry-portfolio .vc_grid-item-mini .vc_gitem-zone .vc_gitem-zone-mini .vc_gitem_row .vc_gitem-col h3 {
  color: #ffffff;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-family: "Raleway", "Helvetica Neue", "Helvetica", Arial, sans-serif !important; }
  .masonry-portfolio .vc_grid-item-mini .vc_gitem-zone .vc_gitem-zone-mini .vc_gitem_row .vc_gitem-col .vc_gitem-post-data-source-post_title div, .masonry-portfolio .vc_grid-item-mini .vc_gitem-zone .vc_gitem-zone-mini .vc_gitem_row .vc_gitem-col h3 div {
    color: #ffffff;
    font-size: 18px !important;
    font-weight: bold !important;
    letter-spacing: 0.05em;
    font-family: "Raleway", "Helvetica Neue", "Helvetica", Arial, sans-serif !important; }
.masonry-portfolio .vc_grid-item-mini .vc_gitem-zone .vc_gitem-zone-mini .vc_gitem_row .vc_gitem-col .vc_gitem-post-data-source-post_excerpt {
  color: #ffffff; }
  .masonry-portfolio .vc_grid-item-mini .vc_gitem-zone .vc_gitem-zone-mini .vc_gitem_row .vc_gitem-col .vc_gitem-post-data-source-post_excerpt div {
    font-family: "Raleway", "Helvetica Neue", "Helvetica", Arial, sans-serif !important; }
  .masonry-portfolio .vc_grid-item-mini .vc_gitem-zone .vc_gitem-zone-mini .vc_gitem_row .vc_gitem-col .vc_gitem-post-data-source-post_excerpt p {
    color: #ffffff; }
.masonry-portfolio .vc_grid-filter {
  padding: 15px;
  margin-bottom: 40px;
  text-align: right; }
  .masonry-portfolio .vc_grid-filter .vc_grid-filter-item {
    background: #F3CE72;
    color: #ffffff;
    padding: 10px !important;
    border-radius: 2px !important;
    font-size: 16px !important;
    text-transform: capitalize; }
    .masonry-portfolio .vc_grid-filter .vc_grid-filter-item:hover {
      background: #7AC77C !important;
      color: #ffffff !important; }
      .masonry-portfolio .vc_grid-filter .vc_grid-filter-item:hover span {
        color: #ffffff !important; }
    .masonry-portfolio .vc_grid-filter .vc_grid-filter-item.vc_active {
      background: #7AC77C !important;
      color: #ffffff !important; }
      .masonry-portfolio .vc_grid-filter .vc_grid-filter-item.vc_active span {
        color: #ffffff !important; }
.masonry-portfolio .vc_pageable-load-more-btn .vc_grid-btn-load_more .vc_general.vc_btn3 {
  background: #7AC77C;
  color: #ffffff;
  font-size: 14px;
  font-weight: bold;
  padding: 10px 20px;
  text-transform: capitalize; }
  .masonry-portfolio .vc_pageable-load-more-btn .vc_grid-btn-load_more .vc_general.vc_btn3:hover {
    background: #F3CE72; }

/*# sourceMappingURL=tillage.css.map */

.homepage_default .tillage-footer::before {
	display: none !important;
}

#menu-main-menu-1 {
    display: table;
    margin: 0 auto;
    text-align: center;
    float: none;
}

.tillage-footer {
    text-align: center;
}

.wp-image-10 {
    width: 190px;
}

.logo-img {
    width: 160px;
}

.homepage_default .tillage-footer {
	background-size: contain;
	background-repeat: repeat !important;
}

.homepage_default .tillage-footer .tillage-footer-copyright .site-info {
    text-align: center;
}
.homepage_default .tillage-footer .tillage-footer-copyright {
    background: transparent;
}
.tillage-widget.tillage-topbar-widget.widget_block {
    margin: 0;
    padding: 0;
}
.topbar-widgets a {
font-weight: 500;
font-size: 16px;
margin-right: 20px;
}
.navbar-tillage .navbar-nav li a {
    font-size: 14px !important;
    font-weight: 500;
    text-transform: capitalize;
    }
.navbar-tillage .navbar-nav li.active > a:hover::before, .navbar-tillage .navbar-nav li.active > a:focus::before, .navbar-tillage .navbar-nav li.current_page_item > a:hover::before, .navbar-tillage .navbar-nav li.current_page_item > a:focus::before, .navbar-tillage .navbar-nav li.current_page_parent > a:hover::before, .navbar-tillage .navbar-nav li.current_page_parent > a:focus::before, .navbar-tillage .navbar-nav li.current_page_ancestor > a:hover::before, .navbar-tillage .navbar-nav li.current_page_ancestor > a:focus::before {
    background: none !important;
    transform: translateX(8px);
}

.navbar-tillage .navbar-nav li.active > a::before, .navbar-tillage .navbar-nav li.current_page_item > a::before, .navbar-tillage .navbar-nav li.current_page_parent > a::before, .navbar-tillage .navbar-nav li.current_page_ancestor > a::before {
    background: none !important;
}

.navbar-tillage .navbar-nav li a::before {
	display: none !important;
}
.home-banner h1 {
    color: #fff;
    font-size: 60px;
    font-weight: 700;
}
.home-banner p {
    color: #fff;
    font-size: 24px; 
    }

.btn.btn-primary {
-webkit-box-shadow: rgba(0,0,0,0.25) 0px 3px 11px 0px;
-moz-box-shadow: rgba(0,0,0,0.25) 0px 3px 11px 0px;
box-shadow: rgba(0,0,0,0.25) 0px 3px 11px 0px;
border-radius: 0px;
-webkit-border-radius: 0px;
-moz-border-radius: 0px;
font-weight: 700;
padding: 10px 30px;
color: #fff !important;
}
.btn.btn-primary:hover {
    background-color: rgba(92, 160, 1, 1);
    background-image: none;
    border-color: rgba(0,0,0,0);
}

.bg-primary {
	color: #fff;
	background: #B94C3F;
}
.bg-primary h1 {
	color: #fff;align-content
}
.paoc-popup.popupaoc-button {
    background: #fff;
    border-radius: 0;
    padding: 10px 40px !important;
    color: #b94c3f;
    text-transform: uppercase;
    font-weight: 700;
	-webkit-box-shadow: rgba(0,0,0,0.25) 0px 3px 11px 0px;
-moz-box-shadow: rgba(0,0,0,0.25) 0px 3px 11px 0px;
box-shadow: rgba(0,0,0,0.25) 0px 3px 11px 0px;
	margin-top: 20px;
}
.paoc-popup.popupaoc-button:hover {
    background-color: transparent;
    background-image: none;
    border:1px solid #fff;
	color: #fff;
}
#block-31 {
    display: inline-block;
    width: 100%;
    margin-bottom: 30px;
}

#block-31 h1 {
	font-size: 36px;
}

.bg-secondary p input.wpcf7-form-control.wpcf7-submit{
text-transform: capitalize !important;
background: #fff !important;
	color: #B94C3F !important;
	float:right;
}
.btn.btn-white {
    font-weight: 700 !important;
    padding: 10px 40px !important;
    color: #B94C3F !important;
    font-size: 16px !important;
    -webkit-box-shadow: rgba(0,0,0,0.25) 0px 3px 11px 0px;
    -moz-box-shadow: rgba(0,0,0,0.25) 0px 3px 11px 0px;
    box-shadow: rgba(0,0,0,0.25) 0px 3px 11px 0px;
	border-radius: 0 !important;
	
}
.wpcf7-form-control.wpcf7-submit {
    font-weight: 700 !important;
    padding: 10px 40px !important;
    color: #fff !important;
    font-size: 16px !important;
    -webkit-box-shadow: rgba(0,0,0,0.25) 0px 3px 11px 0px;
    -moz-box-shadow: rgba(0,0,0,0.25) 0px 3px 11px 0px;
    box-shadow: rgba(0,0,0,0.25) 0px 3px 11px 0px;
	border-radius: 0 !important;
	
}
.btn.btn-white:hover {
    border: 1px solid #fff;
    background: transparent;
    color: #fff;
}
.text-white, .text-white p {
	color: #fff !important;
}
.border-white-bottom {
    display: table;
    margin: 0 auto;
        margin-bottom: 0px;
    padding: 15px 0;
    border-bottom: 2px solid;
    margin-bottom: 20px;
}
.navbar-tillage .navbar-nav li a:hover, .navbar-tillage .navbar-nav li a:focus {
    color: #B94C3F !important;
}

.navbar-tillage .navbar-nav li.active > a:hover, .navbar-tillage .navbar-nav li.active > a:focus, .navbar-tillage .navbar-nav li.current_page_item > a:hover, .navbar-tillage .navbar-nav li.current_page_item > a:focus, .navbar-tillage .navbar-nav li.current_page_parent > a:hover, .navbar-tillage .navbar-nav li.current_page_parent > a:focus, .navbar-tillage .navbar-nav li.current_page_ancestor > a:hover, .navbar-tillage .navbar-nav li.current_page_ancestor > a:focus {
    color: #B94C3F !important;
}

.navbar-tillage .navbar-nav li.active > a, .navbar-tillage .navbar-nav li.current_page_item > a, .navbar-tillage .navbar-nav li.current_page_parent > a, .navbar-tillage .navbar-nav li.current_page_ancestor > a {
    color: #B94C3F !important;
	font-weight: bold;
}

.bg-secondary, .bg-secondary.vc_col-sm-6 .vc_column-inner {
    background-size: cover !important;
    background-position: 50% 50% !important;
    color: #fff !important;
    position: relative !important;
    overflow: hidden;
    display: inline-block;
    float: none !important;
        padding-top: 50px;
    padding-bottom: 40px;
}

.bg-secondary h1 {
	color: #fff !important;
	font-size: 36px;
}
.bg-secondary p, .bg-secondary span{
	color: #fff !important;
}
.bg-secondary::before, .bg-secondary.vc_col-sm-6 .vc_column-inner::before {
	background: rgba(92,160,1,0.9);
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	bottom: 0;
	height: 100%;
}

.page-id-21 .bg-secondary::before, .page-id-21 .bg-secondary.vc_col-sm-6 .vc_column-inner::before {
	background: rgba(92,160,1,0.7) !important;
}
.vc_row.bg-gray, .bg-gray.vc_col-sm-6 .vc_column-inner {
    background-size: cover !important;
    background-position: 50% 50% !important;
    color: #fff !important;
    position: relative !important;
    overflow: hidden;
    display: inline-block !important;
    float: none !important;
    padding-top: 50px;
    padding-bottom: 40px;
}

.vc_row.bg-gray h1 {
	color: #fff !important;
	font-size: 36px;

}

.vc_row.bg-gray::before, .bg-gray.vc_col-sm-6 .vc_column-inner::before {
	background: rgba(0, 0, 0, 0.4);
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	bottom: 0;
	height: 100%;
}

.bg-secondary .wpcf7-form.init label, .bg-secondary .wpcf7-form.init input {
    color: #fff !important;
    z-index: 20 !important;
    position: relative;
}

.bg-white h1 {
	font-size: 48px;
}

.bg-white h4 {
	font-size: 22px;
	font-weight: 400;
	font-family: "Raleway", sans-serif;
}

#main_countedown_1 .time_left {
    border-radius: 0;
    background-color: #b94c3f !important;
    color: #fff !important;
}

.time_description {
    font-size: 16px !important;
    color: #000 !important;
    font-weight: normal !important;
}

.countdown {
    border-bottom: 2px solid rgb(92, 160, 1) !important;
    padding: 30px 0px;
}
.tillage-breadcrumb {
	position: relative;
}
.tillage-breadcrumb::before {
    content: "";
    background-color: rgba(0,0,0,0.5) !important;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    bottom: 0;
}

.page-title {
    color: #fff !important;
    font-size: 48px;
    z-index: 200 !important;
    position: relative;
}

.padding-high {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
}

.page-id-15 article {
	margin-bottom: 0;
}
.page-id-21 article {
	margin-bottom: 0;
	margin-top: 0;
}
.page-id-15 .tillage-footer-container, .page-id-21 .tillage-footer-container {
	padding-top: 0;
}

.padding-mid {
    border-bottom: 1px solid rgb(92, 160, 1) !important;
    padding: 10px 0;
}

.goat-block img {
width: 100% !important;
height: 393px !important;
object-fit: cover;
}

.goat-block p {
	line-height:normal;
}

.border-left {
    border-left: 1px solid rgba(92,160,1,0.8) !important;
}

.border-left input {
    border: 1px solid rgb(185, 76, 63) !important;
    border-radius: 0 !important;
    height: 38px !important;
}

.border-left textarea {
	border: 1px solid rgb(185, 76, 63) !important;
    border-radius: 0 !important;
    height: 78px !important;
}

h1 {
	font-weight: bold;
}

.bg-gray label {
	color: #fff !important;
}

.bg-primary-before::before {
    background-color: rgba(185,76,63,1) !important;
    opacity: 0.9 !important;
    content: "";
    position: absolute;
    height: 1000%;
    width: 100%;
	bottom: 0;
top: 0;
left: 0;
right: 0;
}
.bg-primary-before {
	overflow: hidden;
	position: relative;
}

.bg-primary-before .wpb_wrapper {
	z-index:2000;
	position: relative;
}

.bg-primary-before h1, .bg-primary-before h2, .bg-primary-before p, .bg-primary-before span {
	color: #fff !important;
}

.bg-white-box {
    background: #fff;
    margin: 0 auto;
    margin-bottom: 0px;
    display: table;
    padding: 20px !important;
}

.tyre-block {
	box-shadow: rgba(0,0,0,0.25) 0 3px 11px 0 !important;
-moz-box-shadow: rgba(0,0,0,0.25) 0 3px 11px 0 !important;
-webkit-box-shadow: rgba(0,0,0,0.25) 0 3px 11px 0 !important;
	padding:20px 0;
}

.second p {
    line-height: 1.4em;
    font-size: 14px;
    color: #222;
}

hr {
border-width: 2px;
border-top-style: solid;
border-color: rgb(185, 76, 63) !important;
	width:50%;
	margin-left: 0;
}

.vc_custom_heading.vc_gitem-post-data.vc_gitem-post-data-source-post_title .vc_gitem-link {
    color: rgb(185, 76, 63) !important;
    font-size: 18px;
    font-weight: 700;
}

.vc_general.vc_btn3.vc_btn3-size-md.vc_btn3-shape-rounded.vc_btn3-style-custom {
    color: rgba(92,160,1,1) !important;
    font-weight: bold !important;
    font-style: italic !important;
    background: transparent;
	text-transform: capitalize;
}

.navbar-tillage .navbar-nav li a {
    padding: 15px 25px !important;
    font-size: 16px !important;
}

 @media (min-width: 768px) {
.topbar-widgets {
    margin-top: 60px;
}
	 .tillage-topbar-widget {
		 margin-top: 51px !important;
	 }
	 .social-icons-lists .socicon {
    font-size: 18px !important;
}
}