/*
* @include triangle within a pseudo element and add positioning properties (ie. top, left)
* $direction: up, down, left, right
*/


/*@mixin triangle ($width:10px, $height:10px, $color:#000000, $direction: down) {
    content: "";
    display: inline-block;
    width: 0px;
    height: 0px;

    @if $direction == up {
        border-top: 0;
        border-left: $width solid transparent;
        border-right: $width solid transparent;
        border-bottom: $height solid $color;
    } @else if $direction == right {
        border-right: 0;
        border-top: $width solid transparent;
        border-bottom: $width solid transparent;
        border-left: $height solid $color;
    } @else if $direction == down {
        border-bottom: 0;
        border-left: $width solid transparent;
        border-right: $width solid transparent;
        border-top: $height solid $color;
    } @else {
        border-left: 0;
        border-top: $width solid transparent;
        border-bottom: $width solid transparent;
        border-right: $height solid $color;
    }
}
*/

@font-face {
	font-family: 'montserratbold';
	src: url("../fonts/montserrat-bold-webfont.woff2") format("woff2"), url("../fonts/montserrat-bold-webfont.woff") format("woff");
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'montserratmedium';
	src: url("../fonts/montserrat-medium-webfont.woff2") format("woff2"), url("../fonts/montserrat-medium-webfont.woff") format("woff");
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'montserratlight';
	src: url("../fonts/montserrat-light-webfont.woff2") format("woff2"), url("../fonts/montserrat-light-webfont.woff") format("woff");
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'montserratregular';
	src: url("../fonts/montserrat-regular-webfont.woff2") format("woff2"), url("../fonts/montserrat-regular-webfont.woff") format("woff");
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'futura_condensedmedium';
	src: url("../fonts/futura_condensed_medium-webfont.woff2") format("woff2"), url("../fonts/futura_condensed_medium-webfont.woff") format("woff");
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'futuracondensed_bold';
	src: url("../fonts/futura_condensed_bold-webfont.woff2") format("woff2"), url("../fonts/futura_condensed_bold-webfont.woff") format("woff");
	font-weight: normal;
	font-style: normal;
}


/*! normalize.css v7.0.0 | MIT License | github.com/necolas/normalize.css */


/* Document
   ========================================================================== */


/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in
 *    IE on Windows Phone and in iOS.
 */

html {
	line-height: 1.15;
	/* 1 */
	-ms-text-size-adjust: 100%;
	/* 2 */
	-webkit-text-size-adjust: 100%;
	/* 2 */
}


/* Sections
   ========================================================================== */


/**
 * Remove the margin in all browsers (opinionated).
 */

body {
	margin: 0;
}


/**
 * Add the correct display in IE 9-.
 */

article,
aside,
footer,
header,
nav,
section {
	display: block;
}


/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */

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


/* Grouping content
   ========================================================================== */


/**
 * Add the correct display in IE 9-.
 * 1. Add the correct display in IE.
 */

figcaption,
figure,
main {
	/* 1 */
	display: block;
}


/**
 * Add the correct margin in IE 8.
 */

figure {
	margin: 1em 40px;
}


/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */

hr {
	box-sizing: content-box;
	/* 1 */
	height: 0;
	/* 1 */
	overflow: visible;
	/* 2 */
}


/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

pre {
	font-family: monospace, monospace;
	/* 1 */
	font-size: 1em;
	/* 2 */
}


/* Text-level semantics
   ========================================================================== */


/**
 * 1. Remove the gray background on active links in IE 10.
 * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
 */

a {
	background-color: transparent;
	/* 1 */
	-webkit-text-decoration-skip: objects;
	/* 2 */
}


/**
 * 1. Remove the bottom border in Chrome 57- and Firefox 39-.
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */

abbr[title] {
	border-bottom: none;
	/* 1 */
	text-decoration: underline;
	/* 2 */
	text-decoration: underline dotted;
	/* 2 */
}


/**
 * Prevent the duplicate application of `bolder` by the next rule in Safari 6.
 */

b,
strong {
	font-weight: inherit;
}


/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

b,
strong {
	font-weight: bolder;
}


/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

code,
kbd,
samp {
	font-family: monospace, monospace;
	/* 1 */
	font-size: 1em;
	/* 2 */
}


/**
 * Add the correct font style in Android 4.3-.
 */

dfn {
	font-style: italic;
}


/**
 * Add the correct background and color in IE 9-.
 */

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


/**
 * Add the correct font size in all browsers.
 */

small {
	font-size: 80%;
}


/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */

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

sub {
	bottom: -0.25em;
}

sup {
	top: -0.5em;
}


/* Embedded content
   ========================================================================== */


/**
 * Add the correct display in IE 9-.
 */

audio,
video {
	display: inline-block;
}


/**
 * Add the correct display in iOS 4-7.
 */

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


/**
 * Remove the border on images inside links in IE 10-.
 */

img {
	border-style: none;
}


/**
 * Hide the overflow in IE.
 */

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


/* Forms
   ========================================================================== */


/**
 * 1. Change the font styles in all browsers (opinionated).
 * 2. Remove the margin in Firefox and Safari.
 */

button,
input,
optgroup,
select,
textarea {
	font-family: sans-serif;
	/* 1 */
	font-size: 100%;
	/* 1 */
	line-height: 1.15;
	/* 1 */
	margin: 0;
	/* 2 */
}


/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */

button,
input {
	/* 1 */
	overflow: visible;
}


/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */

button,
select {
	/* 1 */
	text-transform: none;
}


/**
 * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
 *    controls in Android 4.
 * 2. Correct the inability to style clickable types in iOS and Safari.
 */

button,
html [type="button"],
[type="reset"],
[type="submit"] {
	-webkit-appearance: button;
	/* 2 */
}


/**
 * Remove the inner border and padding in Firefox.
 */

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
	border-style: none;
	padding: 0;
}


/**
 * Restore the focus styles unset by the previous rule.
 */

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
	outline: 1px dotted ButtonText;
}


/**
 * Correct the padding in Firefox.
 */

fieldset {
	padding: 0.35em 0.75em 0.625em;
}


/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */

legend {
	box-sizing: border-box;
	/* 1 */
	color: inherit;
	/* 2 */
	display: table;
	/* 1 */
	max-width: 100%;
	/* 1 */
	padding: 0;
	/* 3 */
	white-space: normal;
	/* 1 */
}


/**
 * 1. Add the correct display in IE 9-.
 * 2. Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */

progress {
	display: inline-block;
	/* 1 */
	vertical-align: baseline;
	/* 2 */
}


/**
 * Remove the default vertical scrollbar in IE.
 */

textarea {
	overflow: auto;
}


/**
 * 1. Add the correct box sizing in IE 10-.
 * 2. Remove the padding in IE 10-.
 */

[type="checkbox"],
[type="radio"] {
	box-sizing: border-box;
	/* 1 */
	padding: 0;
	/* 2 */
}


/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */

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


/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */

[type="search"] {
	-webkit-appearance: textfield;
	/* 1 */
	outline-offset: -2px;
	/* 2 */
}


/**
 * Remove the inner padding and cancel buttons in Chrome and Safari on macOS.
 */

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


/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */

::-webkit-file-upload-button {
	-webkit-appearance: button;
	/* 1 */
	font: inherit;
	/* 2 */
}


/* Interactive
   ========================================================================== */


/*
 * Add the correct display in IE 9-.
 * 1. Add the correct display in Edge, IE, and Firefox.
 */

details,
menu {
	display: block;
}


/*
 * Add the correct display in all browsers.
 */

summary {
	display: list-item;
}


/* Scripting
   ========================================================================== */


/**
 * Add the correct display in IE 9-.
 */

canvas {
	display: inline-block;
}


/**
 * Add the correct display in IE.
 */

template {
	display: none;
}


/* Hidden
   ========================================================================== */


/**
 * Add the correct display in IE 10-.
 */

[hidden] {
	display: none;
}

*,
*:before,
*:after {
	box-sizing: border-box;
}

html {
	*zoom: 1;
	font-size: 1rem;
	height: 100%;
	line-height: 1;
	width: 100%;
}

html:before,
html:after {
	content: " ";
	display: table;
}

html:after {
	clear: both;
}

body {
	font-size: 1em;
	background: white;
	color: black;
	font-family: sans-serif;
	font-weight: 400;
	line-height: 1.5;
	height: 100%;
	height: 100vh;
	overflow: auto;
	-moz-osx-font-smoothing: grayscale;
	-webkit-backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	-webkit-overflow-scrolling: touch;
	-webkit-tap-highlight-color: transparent;
	width: 100%;
}

::-moz-selection {
	background: #b3d4fc;
	text-shadow: none;
}

::selection {
	background: #b3d4fc;
	text-shadow: none;
}

hr {
	border: 0;
	border-top: 1px solid #ccc;
	display: block;
	height: 1px;
	margin: 1em 0;
	padding: 0;
}

audio,
canvas,
iframe,
img,
svg,
video {
	vertical-align: middle;
}

fieldset {
	border: 0;
	margin: 0;
	padding: 0;
}

textarea {
	resize: vertical;
}

.hidden {
	display: none !important;
	visibility: hidden;
}

.visually-hidden {
	border: 0;
	clip: rect(0 0 0 0);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
}

.visually-hidden.focusable:active,
.visually-hidden.focusable:focus {
	clip: auto;
	height: auto;
	margin: 0;
	overflow: visible;
	position: static;
	width: auto;
}

.invisible {
	visibility: hidden;
}

.clearfix:before,
.clearfix:after {
	content: " ";
	/* 1 */
	display: table;
	/* 2 */
}

.clearfix:after {
	clear: both;
}

.alignleft,
img.alignleft {
	display: block;
}

@media (min-width: 768px) {
	.alignleft,
	img.alignleft {
		display: inline;
		float: left;
		margin-right: 1.5em;
	}
}

.alignright,
img.alignright {
	display: block;
}

@media (min-width: 768px) {
	.alignright,
	img.alignright {
		display: inline;
		float: right;
		margin-left: 1.5em;
	}
}

.aligncenter,
img.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
}

a,
a:visited {
	color: #67ca33;
	text-decoration: none;
	-webkit-tap-highlight-color: transparent;
}

a:hover,
a:focus,
a:visited:hover,
a:visited:focus {
	color: #67ca33;
}

a:active,
a:visited:active {
	color: #67ca33;
}

a:link,
a:visited:link {
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0.3);
}

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

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6,
p,
.p,
li {
	color: inherit;
	display: block;
	font-family: inherit;
	font-weight: 400;
	font-kerning: normal;
	margin: 0;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
}

h1 a,
.h1 a,
h2 a,
.h2 a,
h3 a,
.h3 a,
h4 a,
.h4 a,
h5 a,
.h5 a,
h6 a,
.h6 a,
p a,
.p a,
li a {
	color: inherit;
	text-decoration: none;
}

h1 a:hover,
.h1 a:hover,
h2 a:hover,
.h2 a:hover,
h3 a:hover,
.h3 a:hover,
h4 a:hover,
.h4 a:hover,
h5 a:hover,
.h5 a:hover,
h6 a:hover,
.h6 a:hover,
p a:hover,
.p a:hover,
li a:hover {
	color: inherit;
}

p,
.p,
li {
	margin: 0 0 20px;
}

@media print {
	*,
	*:before,
	*:after {
		background: transparent !important;
		color: #000 !important;
		/* Black prints faster: http://www.sanbeiji.com/archives/953 */
		box-shadow: none !important;
		text-shadow: none !important;
	}
	a,
	a:visited {
		text-decoration: underline;
	}
	a[href]:after {
		content: " (" attr(href) ")";
	}
	abbr[title]:after {
		content: " (" attr(title) ")";
	}
	/*
   * Don't show links that are fragment identifiers,
   * or use the `javascript:` pseudo protocol
   */
	a[href^="#"]:after,
	a[href^="javascript:"]:after {
		content: "";
	}
	pre,
	blockquote {
		border: 1px solid #999;
		page-break-inside: avoid;
	}
	/*
   * Printing Tables:
   * http://css-discuss.incutio.com/wiki/Printing_Tables
   */
	thead {
		display: table-header-group;
	}
	tr,
	img {
		page-break-inside: avoid;
	}
	img {
		max-width: 100% !important;
	}
	p,
	h2,
	h3 {
		orphans: 3;
		widows: 3;
	}
	h2,
	h3 {
		page-break-after: avoid;
	}
}

.container {
	max-width: 1440px;
	margin-left: auto;
	margin-right: auto;
}

.container:after {
	content: " ";
	display: block;
	clear: both;
}

.row {
	*zoom: 1;
	padding-right: 11px;
	padding-left: 11px;
}

.row:before,
.row:after {
	content: " ";
	display: table;
}

.row:after {
	clear: both;
}

@media (min-width: 1440px) {
	.row {
		padding-right: 0;
		padding-left: 0;
	}
}


/*************
 * Structure *
 *************/

.content-area {
	max-width: 1440px;
	margin-left: auto;
	margin-right: auto;
}

.content-area:after {
	content: " ";
	display: block;
	clear: both;
}

.post-single {
	*zoom: 1;
	max-width: 1440px;
	margin-left: auto;
	margin-right: auto;
}

.post-single:before,
.post-single:after {
	content: " ";
	display: table;
}

.post-single:after {
	clear: both;
}

.post-single:after {
	content: " ";
	display: block;
	clear: both;
}

.post-single header {
	width: 100%;
	float: left;
	margin-left: 0;
	margin-right: 0;
}

@media (min-width: 1000px) {
	.post-single header {
		width: 66.15811%;
		float: left;
		margin-right: 1.52566%;
		margin-left: 16.92094%;
	}
}

.post-single section {
	*zoom: 1;
	width: 100%;
	float: left;
	margin-left: 0;
	margin-right: 0;
}

.post-single section:before,
.post-single section:after {
	content: " ";
	display: table;
}

.post-single section:after {
	clear: both;
}

@media (min-width: 1000px) {
	.post-single section {
		width: 66.15811%;
		float: left;
		margin-right: 1.52566%;
		margin-left: 16.92094%;
	}
}

.page-template-default .page {
	*zoom: 1;
	max-width: 1440px;
	margin-left: auto;
	margin-right: auto;
}

.page-template-default .page:before,
.page-template-default .page:after {
	content: " ";
	display: table;
}

.page-template-default .page:after {
	clear: both;
}

.page-template-default .page:after {
	content: " ";
	display: block;
	clear: both;
}

.page-template-default .page .entry-header {
	width: 100%;
	float: left;
	margin-left: 0;
	margin-right: 0;
}

@media (min-width: 1000px) {
	.page-template-default .page .entry-header {
		width: 83.07906%;
		float: left;
		margin-right: 1.52566%;
		margin-left: 8.46047%;
	}
}

.page-template-default .page .entry-content {
	*zoom: 1;
	width: 100%;
	float: left;
	margin-left: 0;
	margin-right: 0;
}

.page-template-default .page .entry-content:before,
.page-template-default .page .entry-content:after {
	content: " ";
	display: table;
}

.page-template-default .page .entry-content:after {
	clear: both;
}

@media (min-width: 1000px) {
	.page-template-default .page .entry-content {
		width: 83.07906%;
		float: left;
		margin-right: 1.52566%;
		margin-left: 8.46047%;
	}
}

.page-template-default .page .entry-footer {
	*zoom: 1;
	width: 100%;
	float: left;
	margin-left: 0;
	margin-right: 0;
}

.page-template-default .page .entry-footer:before,
.page-template-default .page .entry-footer:after {
	content: " ";
	display: table;
}

.page-template-default .page .entry-footer:after {
	clear: both;
}

@media (min-width: 1000px) {
	.page-template-default .page .entry-footer {
		width: 83.07906%;
		float: left;
		margin-right: 1.52566%;
		margin-left: 8.46047%;
	}
}

.navigation {
	*zoom: 1;
	max-width: 1440px;
	margin-left: auto;
	margin-right: auto;
}

.navigation:before,
.navigation:after {
	content: " ";
	display: table;
}

.navigation:after {
	clear: both;
}

.navigation:after {
	content: " ";
	display: block;
	clear: both;
}

.navigation .nav-links {
	width: 100%;
	float: left;
	margin-left: 0;
	margin-right: 0;
}

@media (min-width: 1000px) {
	.navigation .nav-links {
		width: 66.15811%;
		float: left;
		margin-right: 1.52566%;
		margin-left: 16.92094%;
	}
}

.navigation .nav-links .nav-previous {
	width: 100%;
	float: left;
	margin-left: 0;
	margin-right: 0;
}

@media (min-width: 768px) {
	.navigation .nav-links .nav-previous {
		width: 49.23717%;
		float: left;
		margin-right: 1.52566%;
	}
}

.navigation .nav-links .nav-next {
	width: 100%;
	float: left;
	margin-left: 0;
	margin-right: 0;
}

@media (min-width: 768px) {
	.navigation .nav-links .nav-next {
		width: 49.23717%;
		float: right;
		margin-right: 0;
	}
}

.category .twelvecol {
	max-width: 1440px;
	margin-left: auto;
	margin-right: auto;
}

.category .twelvecol:after {
	content: " ";
	display: block;
	clear: both;
}

.category .page-header {
	width: 100%;
	float: left;
	margin-left: 0;
	margin-right: 0;
}

@media (min-width: 768px) {
	.category .page-header {
		width: 66.15811%;
		float: left;
		margin-right: 1.52566%;
		margin-left: 16.92094%;
	}
}


/*************
 * Layouting *
 *************/

.post-single header {
	margin-top: 65px;
	margin-top: 20px;
}

.post-single header h1 {
	margin-bottom: 20px;
	margin-top: 20px;
	text-align: center;
}

.post-single header img {
	max-height: 400px;
	min-height: 400px;
	object-fit: cover;
}

.post-single section {
	padding-top: 20px;
	padding-left: 20px;
	padding-right: 20px;
}

.page-template-default .page {
	margin-top: 65px;
	margin-bottom: 65px;
}

.page-template-default .page .entry-header {
	margin-bottom: 20px;
}

.navigation .nav-links {
	margin-top: 65px;
	margin-bottom: 65px;
}

.navigation .nav-links .nav-previous {
	padding-left: 20px;
}

.navigation .nav-links .nav-previous .meta-nav {
	padding: 4px;
	width: 26px;
	height: 26px;
	line-height: 1.2;
	margin-right: 10px;
	display: inline-block;
}

.navigation .nav-links .nav-next {
	padding-right: 20px;
}

.navigation .nav-links .nav-next .meta-nav {
	padding: 4px;
	width: 26px;
	height: 26px;
	line-height: 1.2;
	margin-left: 10px;
	display: inline-block;
}

.navigation .screen-reader-text {
	display: none;
}

.category .twelvecol {
	/*padding: $row-spacing-xmedium $row-spacing-tiny $row-spacing-tiny;
  color: get-color('primary','gray');
  @include respond-to('tablet') {
  	padding: $row-spacing-medium 0 $row-spacing-medium;
  }*/
}

.category .page-header {
	text-align: center;
	margin-bottom: 65px;
}


/*************
 * Formatting *
 *************/

.content-area {
	background-color: white;
}

.post-single header h1 {
	color: #114b32;
	font-family: 'futuracondensed_bold', sans-serif;
	line-height: 1.25;
}

.post-single header h1 a,
.post-single header h1 a:visited {
	color: #114b32;
}

.post-single header .post-single__meta {
	color: black;
	text-align: center;
}

.post-single section {
	text-align: left;
}

.post-single section a {
	color: #0069c6;
}

.post-single section h2,
.post-single section h3,
.post-single section h4,
.post-single section h5 {
	font-family: 'montserratbold', sans-serif;
	color: black;
}

.post-single section p {
	font-family: 'montserratlight', sans-serif;
	color: black;
}

.page-template-default .page .entry-header {
	color: #114b32;
	font-family: 'futura_condensedmedium', sans-serif;
	line-height: 1.25;
	text-transform: uppercase;
}

.page-template-default .page .entry-content h2,
.page-template-default .page .entry-content h3,
.page-template-default .page .entry-content h4,
.page-template-default .page .entry-content h5 {
	font-family: 'montserratbold', sans-serif;
	color: black;
}

.page-template-default .page .entry-content p,
.page-template-default .page .entry-content ul {
	font-family: 'montserratlight', sans-serif;
	color: black;
}

.navigation .nav-links .nav-previous {
	text-align: left;
	font-family: 'montserratregular', sans-serif;
}

.navigation .nav-links .nav-previous .meta-nav {
	background: #67ca33;
	color: #e7e7e7;
	text-align: center;
	border-radius: 50%;
}

@media (min-width: 768px) {
	.navigation .nav-links .nav-previous {
		text-align: center;
	}
}

.navigation .nav-links .nav-next {
	text-align: right;
	font-family: 'montserratregular', sans-serif;
}

.navigation .nav-links .nav-next .meta-nav {
	background: #67ca33;
	color: #e7e7e7;
	text-align: center;
	border-radius: 50%;
}

@media (min-width: 768px) {
	.navigation .nav-links .nav-next {
		width: 49.23717%;
		float: right;
		margin-right: 0;
		text-align: center;
	}
}


/*************
 * Animation *
 *************/


/*************
 * Other	 *
 *************/

.gform_wrapper.gf_browser_chrome .gfield_checkbox li input,
.gform_wrapper.gf_browser_chrome .gfield_checkbox li input[type=checkbox],
.gform_wrapper.gf_browser_chrome .gfield_radio li input[type=radio] {
	margin-top: 0 !important;
}

.page-template-frontpage-php .gform_wrapper .gform_footer input[type=image] {
	margin-left: 0;
}

@media (min-width: 768px) {
	.page-template-frontpage-php .gform_wrapper .gform_footer input[type=image] {
		margin-left: 29% !important;
	}
}

.single-products #TB_window img#TB_Image {
	padding: 15px !important;
	margin: 0;
}

.single-products #TB_window #TB_closeWindowButton {
	top: 0;
}

.single-products #TB_window #TB_closeWindow {
	position: relative;
}

.search-results .twelvecol {
	padding-top: 40px;
	padding-bottom: 40px;
	width: 100%;
	float: left;
	margin-left: 0;
	margin-right: 0;
	margin-left: 0px;
}

@media (min-width: 768px) {
	.search-results .twelvecol {
		padding-top: 80px;
		padding-bottom: 80px;
		width: 83.07906%;
		float: left;
		margin-right: 1.52566%;
		margin-left: 8.46047%;
	}
}

.search-results .twelvecol .entry-thumbnail {
	text-align: center;
	width: 15.39528%;
	float: left;
	margin-right: 1.52566%;
	display: none;
}

@media (min-width: 768px) {
	.search-results .twelvecol .entry-thumbnail {
		display: block;
	}
}

.search-results .twelvecol .entry-content {
	width: 100%;
	float: left;
	margin-left: 0;
	margin-right: 0;
}

@media (min-width: 768px) {
	.search-results .twelvecol .entry-content {
		width: 83.07906%;
		float: right;
		margin-right: 0;
	}
}

.search-results .twelvecol h1.page-title {
	color: #114b32;
	font-family: 'futuracondensed_bold', sans-serif;
	line-height: 1.25;
}

.search-results .twelvecol h1.page-title span {
	font-family: 'montserratlight', sans-serif;
	color: black;
}

.search-results .twelvecol h1.entry-title {
	color: #114b32;
	font-family: 'futuracondensed_bold', sans-serif;
	line-height: 1.25;
}

.search-results .twelvecol h1.entry-title a,
.search-results .twelvecol h1.entry-title a:visited {
	color: #114b32;
}

.search-results .twelvecol .entry-summary p {
	font-family: 'montserratlight', sans-serif;
	color: black;
}

.search-results .twelvecol .entry-summary p a,
.search-results .twelvecol .entry-summary p a:visited {
	color: #67ca33;
}

.search-results .twelvecol article {
	padding-top: 10px;
	padding-bottom: 20px;
}

@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
	/* IE10+ CSS styles go here */
}

@media all and (-ms-high-contrast: none) and (min-width: 960px),
(-ms-high-contrast: active) and (min-width: 960px) {
	.header__nav.horizontal ul>li {
		position: static !important;
	}
}

@supports (-ms-accelerator: true) {
	/* IE Edge 12+ CSS styles go here */
	@media (min-width: 960px) {
		.header__nav.horizontal ul > li {
			position: static !important;
		}
	}
}


/*************
 * Structure *
 *************/


/*************
 * Layouting *
 *************/

.header__mobile-logo {
	text-align: center;
	margin: 35px 0 10px;
	display: block;
}

.header__mobile-logo img {
	width: auto;
}

@media (min-width: 1240px) {
	.header__mobile-logo {
		display: none;
	}
}

.header__mobile-menu {
	margin: 10px 0;
	padding: 10px 0;
	cursor: pointer;
	border-top: solid 1px rgba(255, 255, 255, 0.4);
	border-bottom: solid 1px rgba(255, 255, 255, 0.4);
	display: block;
}

@media (min-width: 960px) {
	.header__mobile-menu {
		display: none;
	}
}

.header__nav.horizontal {
	position: relative;
	padding-top: 0px;
}

@media (min-width: 1240px) {
	.header__nav.horizontal {
		padding-top: 15px;
	}
}

.header__nav.horizontal ul {
	padding-left: 0px;
	margin: 0;
	position: relative;
	text-align: left;
}

.header__nav.horizontal>ul {
	max-height: 0;
	display: none;
	transition: max-height 1s ease-in;
	text-align: left;
}

@media (min-width: 960px) {
	.header__nav.horizontal>ul {
		max-height: 1000px;
		display: block;
	}
}

@media (min-width: 960px) {
	.header__nav.horizontal>ul {
		text-align: center;
	}
}

.header__nav.horizontal>ul.mobile-open {
	display: block;
	max-height: 1000px;
	transition: max-height 1s ease-in;
}

@media (min-width: 1240px) {
	.header__nav.horizontal ul.header-large-menu>li:first-child {
		padding-left: 0;
	}
	.header__nav.horizontal ul.header-large-menu>li:last-child {
		padding-right: 0;
	}
}

.header__nav.horizontal ul>li {
	display: block;
	position: relative;
	padding: 10px 30px;
}

@media (min-width: 960px) {
	.header__nav.horizontal ul>li {
		display: inline-block;
		margin-bottom: 0px;
		padding: 10px 22px;
		position: unset;
	}
}

@media (min-width: 1240px) {
	.header__nav.horizontal ul>li {
		padding: 10px 12px;
	}
}

@media (min-width: 1440px) {
	.header__nav.horizontal ul>li {
		padding: 10px 28px;
	}
}

.header__nav.horizontal ul>li .parent-menu-item {
	cursor: pointer;
}

.header__nav.horizontal ul>li a,
.header__nav.horizontal ul>li a:visited,
.header__nav.horizontal ul>li a:active {
	color: white;
}

.header__nav.horizontal ul>li.home-logo {
	display: none;
	padding-top: 40px;
	padding-right: 0;
	padding-left: 0;
}

@media (min-width: 1240px) {
	.header__nav.horizontal ul>li.home-logo {
		display: inline-block;
	}
}

.header__nav.horizontal ul>li.home-logo img {
	margin-top: -30px;
}

.header__nav.horizontal ul>li>ul.sub-menu {
	display: none;
	margin-top: 20px;
	top: auto;
	opacity: 0;
	-webkit-transition-property: margin-top, opacity, visibility;
	-ms-transition-property: margin-top, opacity, visibility;
	transition-property: margin-top, opacity, visibility;
	-webkit-transition-duration: .3s;
	-ms-transition-duration: .3s;
	transition-duration: .3s;
	-webkit-transition-timing-function: ease-in;
	-ms-transition-timing-function: ease-in;
	transition-timing-function: ease-in;
}

.header__nav.horizontal ul>li>ul.sub-menu {
	color: #58595b;
}

.header__nav.horizontal ul>li>ul.sub-menu>li>ul.sub-menu {
	display: none;
}

.header__nav.horizontal ul>li>ul.sub-menu>li>ul.sub-menu>li {
	display: inline-block;
	padding: 35px;
	padding-bottom: 0;
	width: 100%;
	float: left;
	margin-left: 0;
	margin-right: 0;
}

@media (min-width: 768px) {
	.header__nav.horizontal ul>li>ul.sub-menu>li>ul.sub-menu>li {
		width: 32.31623%;
		float: left;
		margin-right: 1.52566%;
	}
	.header__nav.horizontal ul>li>ul.sub-menu>li>ul.sub-menu>li:nth-child(3n) {
		width: 32.31623%;
		float: right;
		margin-right: 0;
	}
}

@media (min-width: 960px) {
	.header__nav.horizontal ul>li>ul.sub-menu>li>ul.sub-menu>li {
		padding: 35px 20px;
		padding-bottom: 0;
		width: 23.85576%;
		float: left;
		margin-right: 1.52566%;
	}
	.header__nav.horizontal ul>li>ul.sub-menu>li>ul.sub-menu>li:nth-child(3n) {
		width: 23.85576%;
		float: left;
		margin-right: 1.52566%;
	}
	.header__nav.horizontal ul>li>ul.sub-menu>li>ul.sub-menu>li:nth-child(4n) {
		width: 23.85576%;
		float: right;
		margin-right: 0;
	}
}

@media (min-width: 1440px) {
	.header__nav.horizontal ul>li>ul.sub-menu>li>ul.sub-menu>li {
		padding: 35px;
		padding-bottom: 0;
		width: 23.85576%;
		float: left;
		margin-right: 1.52566%;
	}
	.header__nav.horizontal ul>li>ul.sub-menu>li>ul.sub-menu>li:nth-child(3n) {
		width: 23.85576%;
		float: left;
		margin-right: 1.52566%;
	}
	.header__nav.horizontal ul>li>ul.sub-menu>li>ul.sub-menu>li:nth-child(4n) {
		width: 23.85576%;
		float: right;
		margin-right: 0;
	}
}

.header__nav.horizontal ul>li>ul.sub-menu>li.show>ul.sub-menu {
	display: block;
	position: relative;
	left: 5%;
	width: 95%;
	top: 0;
	background-color: white;
	z-index: 200;
	height: 100%;
	overflow-y: auto;
	*zoom: 1;
	opacity: 1;
	margin-top: 0;
	border-left: 1px solid #e7e7e7;
}

.header__nav.horizontal ul>li>ul.sub-menu>li.show>ul.sub-menu:before,
.header__nav.horizontal ul>li>ul.sub-menu>li.show>ul.sub-menu:after {
	content: " ";
	display: table;
}

.header__nav.horizontal ul>li>ul.sub-menu>li.show>ul.sub-menu:after {
	clear: both;
}

@media (min-width: 960px) {
	.header__nav.horizontal ul>li>ul.sub-menu>li.show>ul.sub-menu {
		position: absolute;
		left: 25%;
		width: 75%;
	}
}

.header__nav.horizontal ul>li>ul.sub-menu>li.show>ul.sub-menu h3 {
	font-family: 'futura_condensedmedium', sans-serif;
	font-size: 16px;
	color: #114b32;
	text-align: center;
	text-transform: uppercase;
	white-space: nowrap;
	overflow-x: hidden;
}

.header__nav.horizontal ul>li>ul.sub-menu>li {
	margin-right: 0;
	width: 100%;
}

@media (min-width: 960px) {
	.header__nav.horizontal ul>li>ul.sub-menu>li {
		margin-right: 75%;
		width: 25%;
	}
}

.header__nav.horizontal ul>li>ul.sub-menu>li a,
.header__nav.horizontal ul>li>ul.sub-menu>li .children-menu-item {
	font-family: 'futura_condensedmedium', sans-serif;
	font-size: 18px;
	color: #114b32;
	text-transform: uppercase;
	cursor: pointer;
}

.header__nav.horizontal ul>li.open>ul.sub-menu {
	display: block;
	position: absolute;
	width: 100%;
	background-color: white;
	left: 0;
	top: 100%;
	z-index: 100;
	height: 600px;
	overflow-y: auto;
	border: 1px solid #e7e7e7;
	margin-top: 0px;
	opacity: 1;
}

@media (min-width: 960px) {
	.header__nav.horizontal ul>li.open>ul.sub-menu {
		overflow-y: hidden;
	}
}

.header__nav.horizontal ul>li.open.services {
	position: relative;
}

.header__nav.horizontal ul>li.open.services>ul.sub-menu {
	height: auto;
	width: 100%;
	right: 0;
	left: auto;
	top: 100%;
}

@media (min-width: 960px) {
	.header__nav.horizontal ul>li.open.services>ul.sub-menu {
		top: 65px;
		width: auto;
	}
}

.header__nav.horizontal ul>li.open.services>ul.sub-menu li {
	width: 100%;
	margin-right: 0;
}

.header__nav.horizontal ul>li.open>ul.sub-menu>li:hover {
	background-color: none;
}

@media (min-width: 960px) {
	.header__nav.horizontal ul>li.open>ul.sub-menu>li:hover {
		background-color: #e7e7e7;
	}
}

.header__nav.horizontal ul>li.open>ul.sub-menu>li:hover .children-menu-item,
.header__nav.horizontal ul>li.open>ul.sub-menu>li:hover a {
	color: #67ca33;
}


/*************
 * Formatting *
 *************/

.header {
	background-color: black;
	color: white;
}

.header ul>li {
	font-family: 'montserratbold';
	font-size: 1.125em;
	text-transform: uppercase;
}

.header ul>li.current-menu-item a {
	color: white;
}

.header__mobile-menu {
	text-align: center;
	font-family: 'montserratbold';
	font-size: 1.125em;
	text-transform: uppercase;
}

.product__image {
	position: relative;
	display: block;
}

.product__image img {
	height: auto;
	width: 100%;
	object-fit: cover;
}

@media (min-width: 768px) {
	.product__image img {
		height: 120px;
	}
}

@media (min-width: 840px) {
	.product__image img {
		height: 140px;
	}
}

@media (min-width: 960px) {
	.product__image img {
		height: 115px;
	}
}

@media (min-width: 1240px) {
	.product__image img {
		height: 125px;
	}
}

@media (min-width: 1440px) {
	.product__image img {
		height: 140px;
	}
}

.product__image:hover .product__image__overlay {
	z-index: 3;
	opacity: 1;
}

.product__image__overlay:before {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 18px;
	content: "Check This Out!";
	-webkit-transition: all .4s;
	-moz-transition: all .4s;
	transition: all .4s;
	color: #67ca33;
	text-align: center;
	font-family: 'futuracondensed_bold', sans-serif;
}

.product__image__overlay {
	display: block;
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	width: 100%;
	height: 100%;
	border: 1px solid #e5e5e5;
	opacity: 0;
	background: rgba(255, 255, 255, 0.9);
	-webkit-transition: all .3s;
	-moz-transition: all .3s;
	transition: all .3s;
	-webkit-transform: translate3d(0, 0, 0);
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	backface-visibility: hidden;
	-o-backface-visibility: hidden;
}


/*************
 * Animation *
 *************/


/*************
 * Other	 *
 *************/

.search__form {
	position: absolute;
	margin: auto;
	top: -190px;
	right: 0;
	width: 300px;
	height: 70px;
	box-sizing: border-box;
	z-index: 1000;
}

@media (min-width: 1000px) {
	.search__form {
		top: -140px;
	}
}

@media (min-width: 1240px) {
	.search__form {
		top: 0;
	}
}

.search__form .search__icon {
	position: absolute;
	margin: auto;
	top: 0;
	right: -3px;
	bottom: 0;
	width: 50px;
	height: 50px;
	background: #67ca33;
	border-radius: 50%;
	transition: all 1s;
	z-index: 6;
	box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.4);
}

.search__form .search__icon:hover {
	cursor: pointer;
}

.search__form .search__icon::before {
	content: "";
	position: absolute;
	margin: auto;
	top: 18px;
	right: 0;
	bottom: 0;
	left: 18px;
	width: 8px;
	height: 2px;
	background: white;
	transform: rotate(45deg);
	transition: all .5s;
}

.search__form .search__icon::after {
	content: "";
	position: absolute;
	margin: auto;
	top: -3px;
	right: 0;
	bottom: 0;
	left: -3px;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	border: 2px solid white;
	transition: all .5s;
}

.search__form input {
	font-family: 'Inconsolata', monospace;
	position: absolute;
	margin: auto;
	top: 10px;
	right: 0;
	bottom: 0;
	width: 30px;
	height: 30px;
	outline: none;
	border: none;
	background: #67ca33;
	color: white;
	text-shadow: 0 0 10px #67ca33;
	padding: 0 80px 0 20px;
	border-radius: 30px;
	box-shadow: 0 0 25px 0 #67ca33, 0 20px 25px 0 rgba(0, 0, 0, 0.2);
	transition: all 1s;
	opacity: 0;
	z-index: 5;
	font-weight: bolder;
	letter-spacing: 0.1em;
}

.search__form input:hover {
	cursor: pointer;
}

.search__form input.focus {
	width: 200px;
	opacity: 1;
	cursor: text;
}

@media (min-width: 375px) {
	.search__form input.focus {
		width: 225px;
	}
}

@media (min-width: 768px) {
	.search__form input.focus {
		width: 300px;
	}
}

.search__form input.focus~.search__icon {
	right: -3px;
	background: #151515;
	z-index: 6;
}

.search__form input.focus~.search__icon::before {
	top: 0;
	left: 0;
	width: 25px;
}

.search__form input.focus~.search__icon::after {
	top: 0;
	left: 0;
	width: 25px;
	height: 2px;
	border: none;
	background: white;
	border-radius: 0%;
	transform: rotate(-45deg);
}

.search__form input::placeholder {
	color: white;
	opacity: 0.5;
	font-weight: bolder;
}

.search-submit {
	display: none;
}

.hero {
	*zoom: 1;
	margin: 0;
	height: 60%;
}

.hero:before,
.hero:after {
	content: " ";
	display: table;
}

.hero:after {
	clear: both;
}

@media (min-width: 768px) {
	.hero {
		margin: 0;
	}
}

.hero .hero__wrapper {
	max-width: 1440px;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
	padding: 80px 10px;
	color: white;
	/*	& h1{
    		display:none;
    	}*/
}

.hero .hero__wrapper:after {
	content: " ";
	display: block;
	clear: both;
}

@media (min-width: 768px) {
	.hero .hero__wrapper {
		padding: 80px 0 105px;
	}
}

@media (min-width: 1440px) {
	.hero .hero__wrapper {
		padding: 105px 0 105px;
	}
}

.hero .hero__wrapper img {
	width: 370px;
	height: auto;
	margin-bottom: 65px;
}

@media (min-width: 768px) {
	.hero .hero__wrapper div.hero__caption--middle {
		display: block;
		text-align: left;
	}
	.hero .hero__wrapper div.hero__caption--middle svg {
		width: 350px;
		margin-bottom: 55px;
	}
}

.hero .hero__wrapper div.hero__caption--middle h1 {
	font-size: 1.875em;
	font-family: "playfair_displaybold";
	text-align: center;
	padding: 1.25rem 2.5rem;
}

@media screen and (min-width: 768px) {
	.hero .hero__wrapper div.hero__caption--middle h1 {
		font-size: 2.1875em;
	}
}

@media screen and (min-width: 1000px) {
	.hero .hero__wrapper div.hero__caption--middle h1 {
		font-size: 2.5em;
		line-height: 1.34;
	}
}

@media (min-width: 414px) {
	.hero .hero__wrapper div.hero__caption--middle h1 {
		padding: 1.875rem 3.4375rem;
	}
}

@media (min-width: 768px) {
	.hero .hero__wrapper div.hero__caption--middle h1 {
		padding: 3.125rem 5rem;
	}
}

@media (min-width: 960px) {
	.hero .hero__wrapper div.hero__caption--middle h1 {
		padding: 3.125rem 5.625rem;
	}
}

@media (min-width: 1000px) {
	.hero .hero__wrapper div.hero__caption--middle h1 {
		padding: 3.75rem 6.875rem;
	}
}

@media (min-width: 1240px) {
	.hero .hero__wrapper div.hero__caption--middle h1 {
		padding: 5.625rem 10rem;
	}
}

@media (min-width: 1240px) {
	.hero .hero__wrapper div.hero__caption--middle h1 {
		padding: 5.625rem 5rem;
	}
}

@media (min-width: 1600px) {
	.hero .hero__wrapper div.hero__caption--middle h1 {
		padding: 5.625rem 7.5rem;
	}
}

.hero .hero__wrapper .action-forms h3,
.hero .hero__wrapper .action-forms .questions li>span label,
.hero .hero__wrapper .action-forms .simform .number {
	text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.6);
}

.hero {
	position: relative;
}

.hero .triple-hr {
	position: absolute;
	bottom: 0;
	width: 100%;
}


/*************
 * Structure *
 *************/

.cards-links .cards-links__item {
	width: 100%;
	float: left;
	margin-left: 0;
	margin-right: 0;
}

@media (min-width: 768px) {
	.cards-links .cards-links__item {
		width: 49.23717%;
		float: left;
		margin-right: 1.52566%;
	}
	.cards-links .cards-links__item:last-child {
		width: 49.23717%;
		float: right;
		margin-right: 0;
	}
}


/*************
 * Layouting *
 *************/

.cards-links {
	padding-top: 55px;
	padding-bottom: 55px;
}

@media (min-width: 768px) {
	.cards-links {
		padding-top: 105px;
		padding-bottom: 105px;
	}
}

.cards-links .cards-links__item:nth-child(odd) {
	padding-right: 0;
	margin-bottom: 4.72103%;
}

@media (min-width: 768px) {
	.cards-links .cards-links__item:nth-child(odd) {
		padding-right: 1.52566%;
		margin-bottom: 0;
	}
}

.cards-links .cards-links__item:nth-child(even) {
	padding-left: 0;
}

@media (min-width: 768px) {
	.cards-links .cards-links__item:nth-child(even) {
		padding-left: 1.52566%;
	}
}

.cards-links .row+.row {
	margin-top: 4.72103%;
}


/*************
 * Formatting *
 *************/


/*************
 * Animation *
 *************/


/*************
 * Other	 *
 *************/

.cards-links .cards-links__item img {
	box-shadow: 5px 5px 20px 0px #58595b;
}


/*************
 * Structure *
 *************/

.latest-news__items {
	width: 100%;
	float: left;
	margin-left: 0;
	margin-right: 0;
}

@media (min-width: 768px) {
	.latest-news__items {
		width: 32.31623%;
		float: left;
		margin-right: 1.52566%;
		margin-left: 0;
	}
	.latest-news__items:last-child {
		width: 32.31623%;
		float: right;
		margin-right: 0;
		margin-left: 0;
	}
}

@media (min-width: 1240px) {
	.latest-news__items {
		width: 23.85576%;
		float: left;
		margin-right: 1.52566%;
		margin-left: 0;
	}
	.latest-news__items:first-child {
		width: 23.85576%;
		float: left;
		margin-right: 1.52566%;
		margin-left: 12.69071%;
	}
	.latest-news__items:last-child {
		width: 23.85576%;
		float: left;
		margin-right: 1.52566%;
		margin-left: 0;
	}
}


/*************
 * Layouting *
 *************/

.latest-news {
	padding: 10px 10px 55px;
}

@media (min-width: 768px) {
	.latest-news {
		padding: 10px 0 130px;
	}
}

.latest-news h2 {
	margin-bottom: 65px;
}

.latest-news__items {
	margin-bottom: 35px;
}

.latest-news__items img {
	margin-bottom: 20px;
	min-height: 250px;
	max-height: 250px;
	object-fit: cover;
}

.latest-news__items h3,
.latest-news__items p,
.latest-news__items p+a {
	padding: 0 20px;
}

@media (min-width: 768px) {
	.latest-news__items h3,
	.latest-news__items p,
	.latest-news__items p+a {
		padding: 0 20px;
	}
}

.latest-news__items h3 {
	margin-bottom: 20px;
}

.latest-news__items p+a {
	margin-bottom: 20px;
}

.latest-news__items a {
	display: block;
}

.latest-news+.feature-list {
	padding-top: 0;
}


/*************
 * Formatting *
 *************/

.latest-news h2 {
	color: #114b32;
	text-align: center;
	font-size: 1.875em;
	font-family: 'montserratmedium';
}

@media screen and (min-width: 768px) {
	.latest-news h2 {
		font-size: 2.1875em;
	}
}

.latest-news__items {
	box-shadow: 1px 1px 20px 0px #58595b;
}

.latest-news__items h3 {
	color: #114b32;
	font-size: 1.125em;
	font-family: 'montserratbold';
	height: 45px;
	overflow-y: hidden;
}

@media screen and (min-width: 768px) {
	.latest-news__items h3 {
		font-size: 1.3125em;
	}
}

.latest-news__items h3 a {
	color: #114b32;
}

@media (min-width: 768px) {
	.latest-news__items h3 {
		height: 80px;
	}
}

.latest-news__items p {
	font-size: 0.75em;
	font-family: 'montserratlight';
	height: 80px;
	overflow-y: hidden;
}

@media screen and (min-width: 768px) {
	.latest-news__items p {
		font-size: 0.9375em;
	}
}

@media (min-width: 768px) {
	.latest-news__items p {
		height: 110px;
	}
}

.latest-news__items a {
	font-size: 0.75em;
	color: #114b32;
	text-transform: uppercase;
	font-family: 'montserratbold';
}

@media screen and (min-width: 768px) {
	.latest-news__items a {
		font-size: 0.9375em;
	}
}


/*************
 * Animation *
 *************/


/*************
 * Other	 *
 *************/

.triple-hr hr {
	margin: 0;
	border: none;
	/* Set the hr color */
	color: #67ca33;
	/* old IE */
	background-color: #67ca33;
	/* Modern Browsers */
}

.triple-hr hr:first-child {
	height: 3px;
	margin-bottom: 2px;
}

.triple-hr hr:nth-child(2) {
	height: 5px;
	margin-bottom: 3px;
}

.triple-hr hr:nth-child(3) {
	height: 10px;
}


/*************
 * Structure *
 *************/

.contact-us {
	*zoom: 1;
}

.contact-us:before,
.contact-us:after {
	content: " ";
	display: table;
}

.contact-us:after {
	clear: both;
}

.contact-us .contact-us__item:first-child {
	width: 100%;
	float: left;
	margin-left: 0;
	margin-right: 0;
	/*	@include respond-to('laptop-s') {
    			@include span(4 of 12 );
    			margin-left: span(1 of 12) + gutters(12);
    
    		}*/
}

@media (min-width: 768px) {
	.contact-us .contact-us__item:first-child {
		width: 49.23717%;
		float: left;
		margin-right: 1.52566%;
		margin-left: 8.46047%;
	}
}

.contact-us .contact-us__item:last-child {
	width: 100%;
	float: left;
	margin-left: 0;
	margin-right: 0;
	/*	@include respond-to('laptop-s') {
    		@include span(5 of 12 last);
    		margin-right: span(1 of 12) + gutters(12);
    	}*/
}

@media (min-width: 768px) {
	.contact-us .contact-us__item:last-child {
		width: 32.31623%;
		float: left;
		margin-right: 1.52566%;
	}
}

.page-template-page-contact .contact-us {
	*zoom: 1;
}

.page-template-page-contact .contact-us:before,
.page-template-page-contact .contact-us:after {
	content: " ";
	display: table;
}

.page-template-page-contact .contact-us:after {
	clear: both;
}

.page-template-page-contact .contact-us .contact-us__item:first-child {
	width: 100%;
	float: left;
	margin-left: 0;
	margin-right: 0;
	/*	@include respond-to('laptop-s') {
    			@include span(4 of 12 );
    			margin-left: span(1 of 12) + gutters(12);
    
    		}*/
}

.page-template-page-contact .contact-us .contact-us__item:last-child {
	width: 100%;
	float: left;
	margin-left: 0;
	margin-right: 0;
	/*	@include respond-to('laptop-s') {
    		@include span(5 of 12 last);
    		margin-right: span(1 of 12) + gutters(12);
    	}*/
}


/*************
 * Layouting *
 *************/

.contact-us {
	padding-top: 65px;
	padding-bottom: 80px;
	padding-left: 10px;
	padding-right: 10px;
}

.contact-us h2 {
	padding-bottom: 10px;
}

.page-template-page-contact .contact-us {
	padding-top: 65px;
	padding-bottom: 80px;
	padding-left: 10px;
	padding-right: 10px;
}

.page-template-page-contact .contact-us h2 {
	padding-bottom: 10px;
}

.page-template-page-contact .contact-form {
	padding-top: 80px;
}

.store_locations-template-default .banner-inner+.contact-us {
	padding-top: 80px;
	/* for if no about the botique */
}


/*************
 * Formatting *
 *************/

.contact-us {
	background-color: #67ca33;
}

.contact-us h2 {
	text-align: center;
	color: white;
	font-size: 1.875em;
	font-family: 'montserratbold';
}

@media screen and (min-width: 768px) {
	.contact-us h2 {
		font-size: 2.1875em;
	}
}

.page-template-page-contact .contact-us {
	background-color: white;
}

.page-template-page-contact .contact-us h2 {
	text-align: center;
	color: #114b32;
	font-size: 1.875em;
	font-family: 'futura_condensedmedium';
	text-transform: uppercase;
}

@media (min-width: 768px) {
	.page-template-page-contact .contact-us h2 {
		text-align: left;
	}
}

@media screen and (min-width: 768px) {
	.page-template-page-contact .contact-us h2 {
		font-size: 2.1875em;
	}
}

.page-template-page-contact .contact-form h3 {
	text-align: center;
	color: #114b32;
	font-size: 1.875em;
	font-family: 'futura_condensedmedium';
	text-transform: uppercase;
}

@media screen and (min-width: 768px) {
	.page-template-page-contact .contact-form h3 {
		font-size: 2.1875em;
	}
}


/*************
 * Animation *
 *************/


/*************
 * Other	 *
 *************/


/*************
 * Structure *
 *************/


/*************
 * Layouting *
 *************/

.contact-form #gform_wrapper_1 li label {
	margin-right: 20px;
  margin-top: 5px;
	flex-basis: 30%;
}

.contact-form #gform_wrapper_1 li#field_1_4 label {
	vertical-align: top;
	margin-top: 5px;
}

.contact-form #gform_wrapper_1 li>div {
	display: block;
}

@media (min-width: 768px) {
	.contact-form #gform_wrapper_1 li>div {
    flex-basis: 70%;
    margin-top: 0;
	}
}

.contact-form #gform_wrapper_1 li>div input,
.contact-form #gform_wrapper_1 li>div textarea {
	width: 100%;
}

/* @media (min-width: 768px) {
	.contact-form #gform_wrapper_1 li>div input,
	.contact-form #gform_wrapper_1 li>div textarea {
		width: 70%;
	}
} */

.contact-form .gform_wrapper ul li.field_description_below div.ginput_container_radio {
	float: right;
	margin-top: 0px;
	width: 100%;
}

@media (min-width: 768px) {
	.contact-form .gform_wrapper ul li.field_description_below div.ginput_container_radio {
		width: 70%;
	}
}

.contact-form .gform_wrapper ul li.field_description_below div.ginput_container_radio ul {
	margin-top: 0;
}

.contact-form .gform_wrapper ul li.field_description_below div.ginput_container_radio ul li {
	display: inline-block;
  margin: 0;
}

.contact-form .gform_wrapper ul li.field_description_below div.ginput_container_radio ul li label {
	margin-top: 0px;
	display: inline;
}

@media (min-width: 768px) {
	.contact-form .gform_wrapper ul li.field_description_below div.ginput_container_radio ul li label {
		display: inline-block;
	}
}

.contact-form .gform_wrapper ul li.field_description_below div.ginput_container_radio ul li input {
	margin-top: 0px;
	width: initial !important;
}

.contact-form .gform_wrapper ul li.field_description_below div.ginput_recaptcha {
	margin-left: 0;
}

@media (min-width: 768px) {
	.contact-form .gform_wrapper ul li.field_description_below div.ginput_recaptcha {
		margin-left: 29.5% !important;
		display: block !important;
	}
}

.contact-form .gform_footer.top_label {
	padding: 0;
}

.contact-form .gform_footer.top_label input.gform_button {
	margin-left: 0;
	padding: 15px 30px;
}

@media (min-width: 768px) {
	.contact-form .gform_footer.top_label input.gform_button {
		margin-left: 29%;
	}
}

.page-template-page-contact .contact-form #gform_wrapper_1 li label {
	margin-right: 20px;
}

.page-template-page-contact .contact-form #gform_wrapper_1 li#field_1_4 label {
	vertical-align: top;
	margin-top: 5px;
}

.page-template-page-contact .contact-form #gform_wrapper_1 li>div input,
.page-template-page-contact .contact-form #gform_wrapper_1 li>div textarea {
	width: 100%;
}

.page-template-page-contact .contact-form .gform_wrapper ul li.field_description_below div.ginput_container_radio {
	float: right;
	margin-top: 0px;
	width: 100%;
}

.page-template-page-contact .contact-form .gform_wrapper ul li.field_description_below div.ginput_container_radio ul {
	margin-top: 0;
}

.page-template-page-contact .contact-form #gform_wrapper_1 li.field_description_below div.ginput_container_radio ul li {
	display: inline-block;
}

.page-template-page-contact .contact-form .gform_wrapper ul li.field_description_below div.ginput_container_radio ul li label {
	margin-top: 0px;
}

.page-template-page-contact .contact-form .gform_wrapper ul li.field_description_below div.ginput_container_radio ul li input {
	margin-top: 0px;
}

.page-template-page-contact .contact-form .gform_footer.top_label {
	padding: 0;
}

.page-template-page-contact .contact-form .gform_footer.top_label input.gform_button {
	float: right;
	padding: 15px 30px;
}


/*************
 * Formatting *
 *************/

.contact-form {
	color: white;
}

.contact-form #gform_wrapper_1 li {
	text-align: left;
}

@media (min-width: 768px) {
	.contact-form #gform_wrapper_1 li.gfield {
		text-align: right;
    display: flex;
	}
}

.contact-form #gform_wrapper_1 li label {
	font-family: 'montserratmedium', sans-serif;
}

.contact-form #gform_wrapper_1 li#field_1_4 label {
	font-family: 'montserratmedium', sans-serif;
}

.contact-form .gform_wrapper ul li.field_description_below div.ginput_container_radio ul {
	text-align: left;
}

.contact-form .gform_wrapper ul li.field_description_below div.ginput_container_radio ul li label {
	font-family: 'montserratmedium', sans-serif;
}

.contact-form .gform_footer.top_label input.gform_button {
	background-color: #114b32;
	border: none;
	color: white;
	font-family: 'montserratbold', sans-serif;
}

.page-template-page-contact .contact-form {
	color: #58595b;
}

.page-template-page-contact .contact-form #gform_wrapper_1 li {
	text-align: left;
  display: block;
}

.page-template-page-contact .contact-form #gform_wrapper_1 li label {
	font-family: 'montserratmedium', sans-serif;
}

.page-template-page-contact .contact-form #gform_wrapper_1 li#field_1_4 label {
	font-family: 'montserratmedium', sans-serif;
}

.page-template-page-contact .contact-form #gform_wrapper_1 li.field_description_below div.ginput_recaptcha {
    margin: 0 !important;
}

.page-template-page-contact .contact-form .gform_wrapper ul li.field_description_below div.ginput_container_radio ul {
	text-align: left;
}

.page-template-page-contact .contact-form .gform_wrapper ul li.field_description_below div.ginput_container_radio ul li label {
	font-family: 'montserratmedium', sans-serif;
}

.page-template-page-contact .contact-form .gform_footer.top_label input.gform_button {
	background-color: #114b32;
	border: none;
	color: white;
	font-family: 'montserratbold', sans-serif;
}


/*************
 * Animation *
 *************/


/*************
 * Other	 *
 *************/


/*************
 * Structure *
 *************/

.footer__logo {
	width: 100%;
	float: left;
	margin-left: 0;
	margin-right: 0;
}

@media (min-width: 768px) {
	.footer__logo {
		width: 32.31623%;
		float: left;
		margin-right: 1.52566%;
	}
}

.footer__widget__item:first-child,
.footer__widget__item:nth-child(2) {
	width: 100%;
	float: left;
	margin-left: 0;
	margin-right: 0;
}

@media (min-width: 840px) {
	.footer__widget__item:first-child,
	.footer__widget__item:nth-child(2) {
		width: 28.08599%;
		float: left;
		margin-right: 1.52566%;
	}
}

@media (min-width: 1000px) {
	.footer__widget__item:first-child,
	.footer__widget__item:nth-child(2) {
		width: 23.85576%;
		float: left;
		margin-right: 1.52566%;
	}
}

.footer__widget__item:nth-child(3) {
	width: 100%;
	float: left;
	margin-left: 0;
	margin-right: 0;
}

@media (min-width: 840px) {
	.footer__widget__item:nth-child(3) {
		width: -1.52566%;
		float: left;
		margin-right: 1.52566%;
	}
}

@media (min-width: 1000px) {
	.footer__widget__item:nth-child(3) {
		width: 15.39528%;
		float: left;
		margin-right: 1.52566%;
	}
}

.footer__widget__item:nth-child(4) {
	width: 100%;
	float: left;
	margin-left: 0;
	margin-right: 0;
}

@media (min-width: 840px) {
	.footer__widget__item:nth-child(4) {
		width: 19.62552%;
		float: left;
		margin-right: 1.52566%;
	}
}

@media (min-width: 1000px) {
	.footer__widget__item:nth-child(4) {
		width: 15.39528%;
		float: left;
		margin-right: 1.52566%;
	}
}

.footer__widget__item:nth-child(5) {
	width: 100%;
	float: left;
	margin-left: 0;
	margin-right: 0;
}

@media (min-width: 840px) {
	.footer__widget__item:nth-child(5) {
		width: 19.62552%;
		float: right;
		margin-right: 0;
	}
}

@media (min-width: 1000px) {
	.footer__widget__item:nth-child(5) {
		width: 15.39528%;
		float: right;
		margin-right: 0;
	}
}

.footer__copyrights {
	width: 100%;
	float: left;
	margin-left: 0;
	margin-right: 0;
}

@media (min-width: 768px) {
	.footer__copyrights {
		width: 49.23717%;
		float: left;
		margin-right: 1.52566%;
	}
}

.footer__social-icons {
	width: 100%;
	float: left;
	margin-left: 0;
	margin-right: 0;
}

@media (min-width: 768px) {
	.footer__social-icons {
		width: 49.23717%;
		float: right;
		margin-right: 0;
	}
}


/*************
 * Layouting *
 *************/

.footer {
	padding-top: 30px;
	padding-bottom: 35px;
}

.footer__logo {
	margin-bottom: 35px;
}

.footer .row:nth-child(3) {
	padding-top: 20px;
}

.footer__copyrights {
	margin-bottom: 20px;
}

@media (min-width: 768px) {
	.footer__copyrights {
		margin-bottom: 0;
	}
}

.footer__widget__item p {
	margin-bottom: 10px;
}

.footer__widget__item h2 {
	margin-left: 25px;
	margin-bottom: 10px;
}

.footer__widget__item i {
	margin-right: 5px;
}


/*************
 * Formatting *
 *************/

.footer {
	background-color: black;
	color: white;
}

.footer__logo img {
	width: 90%;
}

.footer__social-icons {
	text-align: center;
}

@media (min-width: 768px) {
	.footer__social-icons {
		text-align: right;
	}
}

.footer__copyrights {
	font-family: 'montserratlight', sans-serif;
	font-size: 0.9375em;
	text-align: center;
}

@media (min-width: 768px) {
	.footer__copyrights {
		text-align: left;
	}
}

.footer__widget__item p {
	font-size: 0.9375em;
	font-family: 'montserratlight', sans-serif;
}

.footer__widget__item h2 {
	font-size: 1em;
	font-family: 'montserratbold', sans-serif;
}

.footer__widget__item i {
	margin-right: 5px;
}


/*************
 * Animation *
 *************/


/*************
 * Other	 *
 *************/

.social-icons a {
	display: inline-block;
	margin-right: 0.625rem;
}

.social-icons a:last-child {
	margin-right: 0;
}

.social-icons img {
	width: 26px;
}


/*************
 * Structure *
 *************/

.multiple-location {
	width: 100%;
	float: left;
	margin-left: 0;
	margin-right: 0;
}

@media (min-width: 768px) {
	.multiple-location {
		width: 49.23717%;
		float: left;
		margin-right: 1.52566%;
		padding-right: 15px;
		padding-left: 0px;
	}
	.multiple-location:last-child {
		width: 49.23717%;
		float: right;
		margin-right: 0;
		padding-left: 15px;
		padding-right: 0px;
	}
}

.multiple-location__wrapper {
	/*	@include respond-to('tablet') {
    		background-color: rgb(244,244,244);
    	} 
    	
    	@include respond-to('laptop-m') {
    //		@include span(10 of 12);
    //		@include push(1);	
    		background-color: rgb(244,244,244);
    	} */
}

.multiple-location__image img {
	margin-bottom: 30px;
}


/*************
 * Layouting *
 *************/

.multiple-location__details {
	padding: 20px 0;
}

@media (min-width: 768px) {
	.multiple-location__details {
		padding: 0;
	}
}

.multiple-location h1 {
	padding: 5px 0 5px 20px;
	margin-bottom: 15px;
}

.multiple-location__image img {
	width: 100%;
	height: 320px;
}

.multiple-location__coverage {
	padding: 20px;
}

@media (min-width: 768px) {
	.multiple-location__coverage {
		padding: 0;
	}
}

.multiple-location__coverage ul {
	padding-left: 0;
	height: 615px;
	overflow-y: auto;
}


/*************
 * Formatting *
 *************/

.multiple-location {
	color: black;
}

.multiple-location h1 {
	color: white;
	text-align: left;
	background-color: #67ca33;
	font-family: 'futuracondensed_bold';
	text-transform: uppercase;
}

.multiple-location__details h3 {
	color: black;
	font-size: 1.5625em;
	font-family: 'montserratbold';
	display: inline-block;
}

.multiple-location__details h3+p {
	display: block;
	margin-left: 0;
	font-family: 'montserratlight';
	font-size: 1.125em;
}

@media screen and (min-width: 768px) {
	.multiple-location__details h3+p {
		font-size: 1.5625em;
	}
}

@media (min-width: 768px) {
	.multiple-location__details h3+p {
		display: inline-block;
		margin-left: 10px;
	}
}

.multiple-location__details span {
	display: block;
}

.multiple-location__details span[itemprop="addressLocality"],
.multiple-location__details span[itemprop="addressRegion"],
.multiple-location__details span[itemprop="postalCode"] {
	display: inline-block;
	font-size: 1.125em;
	font-family: 'montserratlight';
}

@media screen and (min-width: 768px) {
	.multiple-location__details span[itemprop="addressLocality"],
	.multiple-location__details span[itemprop="addressRegion"],
	.multiple-location__details span[itemprop="postalCode"] {
		font-size: 1.5625em;
	}
}

.multiple-location__details span[itemprop="streetAddress"],
.multiple-location__details span[itemprop="postalCode"],
.multiple-location__details span.add_info {
	font-size: 1.125em;
	font-family: 'montserratlight';
}

@media screen and (min-width: 768px) {
	.multiple-location__details span[itemprop="streetAddress"],
	.multiple-location__details span[itemprop="postalCode"],
	.multiple-location__details span.add_info {
		font-size: 1.5625em;
	}
}

.multiple-location__details meta {
	font-size: 1.125em;
	display: block;
	font-family: 'montserratlight';
}

@media screen and (min-width: 768px) {
	.multiple-location__details meta {
		font-size: 1.5625em;
	}
}

.multiple-location__details:last-child {
	font-size: 1.5625em;
	font-family: 'montserratlight';
}

.multiple-location__details:last-child h3 {
	font-size: inherit;
}

.multiple-location__coverage h2 {
	color: black;
	font-size: 1.5625em;
}

.multiple-location__coverage p {
	text-align: center;
}

.multiple-location__coverage ul li {
	display: inline-block;
	text-align: left;
	font-size: 12px;
	line-height: 1.5;
	min-width: 150px;
}


/*************
 * Animation *
 *************/


/*************
 * Other	 *
 *************/


/*************
 * Structure *
 *************/


/*************
 * Layouting *
 *************/

.main-banner {
	margin-bottom: 10px;
}

.main-banner__wrapper {
	position: relative;
}

.main-banner__wrapper img {
	max-height: 700px;
	object-fit: contain;
}

.main-banner__wrapper h1 {
	position: absolute;
	bottom: 0;
	left: 0;
	padding: 10px 20px;
	width: 100%;
}


/*************
 * Formatting *
 *************/

.main-banner__wrapper h1 {
	font-family: 'futuracondensed_bold', sans-serif;
	background-color: #67ca33;
	color: white;
	font-size: 1.875em;
}

@media screen and (min-width: 768px) {
	.main-banner__wrapper h1 {
		font-size: 2.1875em;
	}
}


/*************
 * Animation *
 *************/


/*************
 * Other	 *
 *************/


/* Style the tab */

.tab {
	overflow: hidden;
	border: 1px solid #ccc;
	background-color: #f1f1f1;
}


/* Style the buttons that are used to open the tab content */

.tab button {
	background-color: inherit;
	float: left;
	border: none;
	outline: none;
	cursor: pointer;
	padding: 14px 16px;
	transition: 0.3s;
	font-family: 'futuracondensed_bold', sans-serif;
	font-size: 1em;
	text-transform: uppercase;
	color: #58595b;
}

@media screen and (min-width: 768px) {
	.tab button {
		font-size: 1.3125em;
	}
}


/* Change background color of buttons on hover */

.tab button:hover {
	background-color: #ddd;
	color: black;
}


/* Create an active/current tablink class */

.tab button.active {
	background-color: #ccc;
	color: black;
}


/* Style the tab content */

.tabcontent {
	display: none;
	padding: 12px;
	border: 1px solid #ccc;
	border-top: none;
	margin-bottom: 55px;
}

.tabcontent {
	animation: fadeEffect 1s;
	/* Fading effect takes 1 second */
}


/* Go from zero to full opacity */

@keyframes fadeEffect {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}


/*************
 * Structure *
 *************/

.main-features {
	*zoom: 1;
}

.main-features:before,
.main-features:after {
	content: " ";
	display: table;
}

.main-features:after {
	clear: both;
}

.main-features__image {
	width: 100%;
	float: left;
	margin-left: 0;
	margin-right: 0;
}

@media (min-width: 768px) {
	.main-features__image {
		width: 40.7767%;
		float: left;
		margin-right: 1.52566%;
		margin-left: 8.46047%;
	}
}

.main-features__information {
	width: 100%;
	float: left;
	margin-left: 0;
	margin-right: 0;
}

@media (min-width: 768px) {
	.main-features__information {
		width: 40.7767%;
		float: left;
		margin-right: 1.52566%;
	}
}

.the-content h1,
.the-content h2,
.the-content h3 {
	margin-top: 20px;
	margin-bottom: 10px;
}

.the-content img {
	margin-top: 20px;
}


/*************
 * Layouting *
 *************/

.main-features {
	margin-bottom: 20px;
}


/*************
 * Formatting *
 *************/

.main-features__information h3 {
	font-family: 'futura_condensedmedium', sans-serif;
	font-size: 1.875em;
	line-height: 1.2;
	color: #58595b;
	text-transform: uppercase;
}

@media screen and (min-width: 768px) {
	.main-features__information h3 {
		font-size: 2.1875em;
		line-height: 1.2;
	}
}

.main-features__information p {
	font-family: 'montserratlight', sans-serif;
	color: black;
	font-size: 1em;
	line-height: 1.3;
}

@media screen and (min-width: 768px) {
	.main-features__information p {
		font-size: 1.125em;
		line-height: 1.5;
	}
}

#Features {
	font-size: 16px;
}

.the-content {
	font-family: 'montserratlight', sans-serif;
	color: black;
	font-size: 1em;
	line-height: 1.3;
}

@media screen and (min-width: 768px) {
	.the-content {
		font-size: 1.125em;
		line-height: 1.5;
	}
}

.the-content>div h1,
.the-content>div h2,
.the-content>div h3 {
	font-family: 'futura_condensedmedium', sans-serif;
	font-size: 1.875em;
	line-height: 1.2;
	color: #58595b;
	text-transform: uppercase;
}

@media screen and (min-width: 768px) {
	.the-content>div h1,
	.the-content>div h2,
	.the-content>div h3 {
		font-size: 2.1875em;
		line-height: 1.2;
	}
}

.the-content img {
	width: 100%;
}

@media (min-width: 768px) {
	.the-content img {
		width: auto;
	}
}


/*************
 * Animation *
 *************/


/*************
 * Other	 *
 *************/


/*************
 * Structure *
 *************/

.key-features {
	*zoom: 1;
}

.key-features:before,
.key-features:after {
	content: " ";
	display: table;
}

.key-features:after {
	clear: both;
}

.key-features__image {
	width: 100%;
	float: left;
	margin-left: 0;
	margin-right: 0;
}

@media (min-width: 768px) {
	.key-features__image {
		width: 40.7767%;
		float: right;
		margin-right: 0;
		margin-right: 8.46047%;
	}
}

.key-features__information {
	width: 100%;
	float: left;
	margin-left: 0;
	margin-right: 0;
}

@media (min-width: 768px) {
	.key-features__information {
		width: 40.7767%;
		float: left;
		margin-right: 1.52566%;
		margin-left: 8.46047%;
	}
}


/*************
 * Layouting *
 *************/

.key-features {
	margin-bottom: 20px;
}


/*************
 * Formatting *
 *************/

.key-features__information h3 {
	font-family: 'futura_condensedmedium', sans-serif;
	font-size: 1.875em;
	line-height: 1.2;
	color: #58595b;
	text-transform: uppercase;
}

@media screen and (min-width: 768px) {
	.key-features__information h3 {
		font-size: 2.1875em;
		line-height: 1.2;
	}
}

.key-features__information p,
.key-features__information ul li {
	font-family: 'montserratlight', sans-serif;
	color: black;
	font-size: 1em;
	line-height: 1.3;
}

@media screen and (min-width: 768px) {
	.key-features__information p,
	.key-features__information ul li {
		font-size: 1.125em;
		line-height: 1.5;
	}
}


/*************
 * Animation *
 *************/


/*************
 * Other	 *
 *************/


/*************
 * Structure *
 *************/

.additional-features .row {
	padding-left: 0;
	padding-right: 0;
}

.additional-features__item {
	width: 100%;
	float: left;
	margin-left: 0;
	margin-right: 0;
}

@media (min-width: 768px) {
	.additional-features__item {
		width: 49.23717%;
		float: left;
		margin-right: 1.52566%;
	}
	.additional-features__item:nth-child(2n) {
		width: 49.23717%;
		float: right;
		margin-right: 0;
	}
}

@media (min-width: 960px) {
	.additional-features__item {
		width: 23.85576%;
		float: left;
		margin-right: 1.52566%;
	}
	.additional-features__item:nth-child(2) {
		width: 23.85576%;
		float: left;
		margin-right: 1.52566%;
	}
	.additional-features__item:last-child {
		width: 23.85576%;
		float: right;
		margin-right: 0;
	}
	.additional-features__item:last-child:not(:nth-child(4)) {
		width: 23.85576%;
		float: left;
		margin-right: 1.52566%;
	}
}


/*************
 * Layouting *
 *************/

.additional-features__item {
	margin-bottom: 20px;
}


/*************
 * Formatting *
 *************/

.additional-features__item h3 {
	font-family: 'futura_condensedmedium', sans-serif;
	font-size: 1.875em;
	line-height: 1.2;
	color: #58595b;
	text-transform: uppercase;
}

@media screen and (min-width: 768px) {
	.additional-features__item h3 {
		font-size: 2.1875em;
		line-height: 1.2;
	}
}

.additional-features__item p {
	font-family: 'montserratlight', sans-serif;
	color: black;
	font-size: 1em;
	line-height: 1.3;
}

@media screen and (min-width: 768px) {
	.additional-features__item p {
		font-size: 1.125em;
		line-height: 1.5;
	}
}

.additional-features__item img {
	height: 250px;
	max-width: 100%;
	width: 100%;
	object-fit: cover;
}

@media (min-width: 414px) {
	.additional-features__item img {
		height: 350px;
	}
}

@media (min-width: 960px) {
	.additional-features__item img {
		height: 250px;
	}
}


/*************
 * Animation *
 *************/


/*************
 * Other	 *
 *************/

.product-gallery div {
	*zoom: 1;
}

.product-gallery div:before,
.product-gallery div:after {
	content: " ";
	display: table;
}

.product-gallery div:after {
	clear: both;
}

.product-gallery div a img {
	width: 100%;
	float: left;
	margin-left: 0;
	margin-right: 0;
}

@media (min-width: 768px) {
	.product-gallery div a img {
		width: 23.85576%;
		float: left;
		margin-right: 1.52566%;
	}
}

.product-gallery div a:nth-child(4n) img {
	width: 100%;
	float: left;
	margin-left: 0;
	margin-right: 0;
}

@media (min-width: 768px) {
	.product-gallery div a:nth-child(4n) img {
		width: 23.85576%;
		float: right;
		margin-right: 0;
	}
}

.product-gallery div img {
	height: 250px;
	object-fit: cover;
	margin-bottom: 1.52566%;
}

.video-gallery iframe {
	min-height: 200px;
}

@media (min-width: 768px) {
	.video-gallery iframe {
		min-height: 650px;
	}
}

.specifications table {
	width: 100%;
	border-collapse: collapse;
}

.specifications thead {
	font-family: 'futura_condensedmedium', sans-serif;
	font-size: 1.875em;
	line-height: 1.2;
	color: #67ca33;
	text-transform: uppercase;
}

@media screen and (min-width: 768px) {
	.specifications thead {
		font-size: 2.1875em;
		line-height: 1.2;
	}
}

.specifications thead th {
	text-align: left;
}

.specifications tbody tr:nth-child(odd) {
	background-color: #eee;
}

.specifications tbody tr {
	border-bottom: 1px solid #e7e7e7;
}

.specifications tbody td:first-child {
	font-family: 'montserratmedium', sans-serif;
	color: black;
	font-size: 1em;
	line-height: 1.3;
	vertical-align: top;
	width: 40%;
}

@media screen and (min-width: 768px) {
	.specifications tbody td:first-child {
		font-size: 1.125em;
		line-height: 1.5;
	}
}

@media (min-width: 768px) {
	.specifications tbody td:first-child {
		width: 30%;
	}
}

.specifications tbody td:last-child {
	font-family: 'montserratlight', sans-serif;
	color: black;
	font-size: 1em;
	line-height: 1.3;
	vertical-align: top;
}

@media screen and (min-width: 768px) {
	.specifications tbody td:last-child {
		font-size: 1.125em;
		line-height: 1.5;
	}
}


/*
 & h3 {
			 font-family: 'futura_condensedmedium', sans-serif;
			 @include font-size($fs-feature-h3);
			 color: get-color('primary','gray');
			 text-transform: uppercase;
		 }
		 
		 & p , & ul li {
			 font-family: 'montserratlight',sans-serif;
			 color: get-color('primary','black');
			 @include font-size($fs-feature-p);
		 }
*/

.promotions {
	padding: 65px 20px 20px;
	color: #58595b;
}

@media (min-width: 768px) {
	.promotions {
		padding: 65px 0 65px;
	}
}

.promotions__wrapper {
	*zoom: 1;
	max-width: 1440px;
	margin-left: auto;
	margin-right: auto;
}

.promotions__wrapper:before,
.promotions__wrapper:after {
	content: " ";
	display: table;
}

.promotions__wrapper:after {
	clear: both;
}

.promotions__wrapper:after {
	content: " ";
	display: block;
	clear: both;
}

.promotions ul {
	padding-left: 0;
}

.promotions h1 {
	text-align: center;
	color: #114b32;
	font-size: 1.5625em;
	line-height: 1.25;
	font-family: 'futuracondensed_bold', sans-serif;
	margin-bottom: 65px;
	margin-top: 20px;
}

@media screen and (min-width: 768px) {
	.promotions h1 {
		font-size: 2.5em;
		line-height: 1.25;
	}
}

.promotions h1 a {
	color: #114b32;
}

.promotions__items {
	width: 100%;
	float: left;
	margin-left: 0;
	margin-right: 0;
	text-align: center;
	margin-bottom: 65px;
}

@media (min-width: 768px) {
	.promotions__items {
		width: 66.15811%;
		float: left;
		margin-right: 1.52566%;
		margin-left: 16.92094%;
	}
}

.promotions__items h2 {
	color: #114b32;
	font-size: 1.5625em;
	line-height: 1.25;
	font-family: 'futuracondensed_bold', sans-serif;
	margin-bottom: 10px;
	margin-top: 10px;
}

@media screen and (min-width: 768px) {
	.promotions__items h2 {
		font-size: 2.5em;
		line-height: 1.25;
	}
}

.promotions__items h2 a {
	color: #114b32;
}

.promotions__items p {
	text-align: left;
	margin-top: 10px;
	font-size: 1em;
	font-family: 'montserratlight', sans-serif;
}

.promotions__items p a {
	color: #0069c6;
}

.promotions__items img {
	min-height: 400px;
	max-height: 400px;
	object-fit: cover;
}

.promotions__pagination {
	*zoom: 1;
	max-width: 1440px;
	margin-left: auto;
	margin-right: auto;
	display: block;
	text-align: center;
}

.promotions__pagination:before,
.promotions__pagination:after {
	content: " ";
	display: table;
}

.promotions__pagination:after {
	clear: both;
}

.promotions__pagination:after {
	content: " ";
	display: block;
	clear: both;
}

.promotions__pagination-previous {
	width: 15.39528%;
	float: left;
	margin-right: 1.52566%;
}

.promotions__pagination-previous a {
	border: 2px solid #58595b;
	padding: 1px 9px;
	border-radius: 50%;
	height: 28px;
	width: 28px;
	display: block;
}

.promotions__pagination-middle {
	width: 32.31623%;
	float: left;
	margin-right: 1.52566%;
}

.promotions__pagination-next {
	width: 15.39528%;
	float: left;
	margin-right: 1.52566%;
}

.promotions__pagination-next a {
	border: 2px solid #58595b;
	padding: 1px 8px;
	border-radius: 50%;
	height: 28px;
	width: 28px;
	display: block;
}

.promotions__pagination .push_2 {
	margin-left: 16.92094%;
}

.promotions__pagination .push_4 {
	margin-left: 33.84189%;
}

.post-type-archive-promotions {
	background-color: #f1f1f1;
}

.promotion-container h1 {
	text-align: center;
	color: #114b32;
	font-size: 1.5625em;
	line-height: 1.25;
	font-family: 'futuracondensed_bold', sans-serif;
	margin-bottom: 65px;
	margin-top: 20px;
	text-transform: uppercase;
}

@media screen and (min-width: 768px) {
	.promotion-container h1 {
		font-size: 2.5em;
		line-height: 1.25;
	}
}

.promotion-container h1 a {
	color: #114b32;
}

.promo-wrapper {
	margin-bottom: 60px;
}

@media (min-width: 768px) {
	.promo-wrapper {
		display: flex;
		flex-wrap: wrap;
	}
}

.promo-wrapper .post-promo {
	display: block;
	width: 100%;
	flex: 1;
	flex-direction: column;
	box-sizing: border-box;
	margin-bottom: 30px;
	overflow: hidden;
	border-radius: 3px;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.085), 0 1px 8px rgba(0, 0, 0, 0.1);
	will-change: box-shadow;
	transition: box-shadow 0.2s;
	background: #fff;
}

@media (min-width: 768px) {
	.promo-wrapper .post-promo {
		flex-basis: calc(50% - 40px);
		align-items: center;
		margin: 20px;
	}
}

@media (min-width: 1240px) {
	.promo-wrapper .post-promo {
		flex-basis: calc(32.5% - 40px);
		align-items: center;
		margin: 20px;
	}
}

.promo-wrapper .post-promo:hover {
	box-shadow: 0 1px 8px rgba(0, 0, 0, 0.1), 0 8px 16px rgba(0, 0, 0, 0.15);
}

.promo-wrapper .post-promo .promo-image {
	display: block;
	width: 100%;
	height: auto;
	min-height: 250px;
	background-size: cover;
	background-position: 50% 50%;
	position: relative;
}

.promo-wrapper .post-promo header {
	position: relative;
}

.promo-wrapper .post-promo header .exp-banner {
	position: absolute;
	z-index: 10;
	top: 5px;
	right: 5px;
	color: #fff;
	padding: 5px;
	font-family: 'montserratbold';
	background-color: #67ca33;
}

.promo-wrapper .post-promo header h3 {
	display: block;
	padding: 40px 30px 20px;
	color: #114b32;
	font-size: 1.125em;
	font-family: 'montserratbold';
	text-transform: uppercase;
}

@media screen and (min-width: 768px) {
	.promo-wrapper .post-promo header h3 {
		font-size: 1.3125em;
	}
}

.promo-wrapper .post-promo header h3 a {
	color: #114b32;
	transition: all 0.3s ease-in-out;
}

.promo-wrapper .post-promo header h3 a:hover {
	color: #67ca33;
}

.promo-wrapper .post-promo section {
	padding: 0 30px 30px;
}

.promo-wrapper .post-promo section p {
	font-size: 0.75em;
	font-family: 'montserratlight';
	overflow-y: hidden;
}

@media screen and (min-width: 768px) {
	.promo-wrapper .post-promo section p {
		font-size: 0.9375em;
	}
}

.promo-wrapper .post-promo section a {
	font-size: 0.75em;
	color: #114b32;
	text-transform: uppercase;
	font-family: 'montserratbold';
	transition: all 0.3s ease-in-out;
}

@media screen and (min-width: 768px) {
	.promo-wrapper .post-promo section a {
		font-size: 0.9375em;
	}
}

.promo-wrapper .post-promo section a:hover {
	color: #67ca33;
}

.blog-layout {
	padding: 65px 20px 20px;
	color: #58595b;
}

@media (min-width: 768px) {
	.blog-layout {
		padding: 65px 0 65px;
	}
}

.blog-layout__wrapper {
	*zoom: 1;
	max-width: 1440px;
	margin-left: auto;
	margin-right: auto;
}

.blog-layout__wrapper:before,
.blog-layout__wrapper:after {
	content: " ";
	display: table;
}

.blog-layout__wrapper:after {
	clear: both;
}

.blog-layout__wrapper:after {
	content: " ";
	display: block;
	clear: both;
}

.blog-layout__items {
	width: 100%;
	float: left;
	margin-left: 0;
	margin-right: 0;
	text-align: center;
	margin-bottom: 65px;
}

@media (min-width: 768px) {
	.blog-layout__items {
		width: 66.15811%;
		float: left;
		margin-right: 1.52566%;
		margin-left: 16.92094%;
	}
}

.blog-layout__items h1 {
	color: #114b32;
	font-size: 1.5625em;
	line-height: 1.25;
	font-family: 'futuracondensed_bold', sans-serif;
	margin-bottom: 10px;
	margin-top: 10px;
}

@media screen and (min-width: 768px) {
	.blog-layout__items h1 {
		font-size: 2.5em;
		line-height: 1.25;
	}
}

.blog-layout__items h1 a {
	color: #114b32;
}

.blog-layout__items h2 {
	color: #114b32;
	font-size: 0.9375em;
	font-family: 'montserratregular', sans-serif;
}

.blog-layout__items p {
	text-align: left;
	margin-top: 10px;
	font-size: 1em;
	font-family: 'montserratlight', sans-serif;
}

.blog-layout__items p a {
	color: #0069c6;
}

.blog-layout__items img {
	min-height: 400px;
	max-height: 400px;
	object-fit: cover;
}

.blog-layout__pagination {
	*zoom: 1;
	max-width: 1440px;
	margin-left: auto;
	margin-right: auto;
	display: block;
	text-align: center;
}

.blog-layout__pagination:before,
.blog-layout__pagination:after {
	content: " ";
	display: table;
}

.blog-layout__pagination:after {
	clear: both;
}

.blog-layout__pagination:after {
	content: " ";
	display: block;
	clear: both;
}

.blog-layout__pagination-previous {
	width: 15.39528%;
	float: left;
	margin-right: 1.52566%;
}

.blog-layout__pagination-previous a {
	border: 2px solid #58595b;
	padding: 1px 9px;
	border-radius: 50%;
	height: 28px;
	width: 28px;
	display: block;
}

.blog-layout__pagination-middle {
	width: 32.31623%;
	float: left;
	margin-right: 1.52566%;
}

.blog-layout__pagination-next {
	width: 15.39528%;
	float: left;
	margin-right: 1.52566%;
}

.blog-layout__pagination-next a {
	border: 2px solid #58595b;
	padding: 1px 8px;
	border-radius: 50%;
	height: 28px;
	width: 28px;
	display: block;
}

.blog-layout__pagination .push_2 {
	margin-left: 16.92094%;
}

.blog-layout__pagination .push_4 {
	margin-left: 33.84189%;
}


/*************************************************
	Shop Page
**************************************************/


/*************
 * Structure *
 *************/

.woocommerce.post-type-archive-product .content-area,
.woocommerce.tax-product_cat .content-area {
	width: 100%;
	float: left;
	margin-left: 0;
	margin-right: 0;
}

@media (min-width: 840px) {
	.woocommerce.post-type-archive-product .content-area,
	.woocommerce.tax-product_cat .content-area {
		width: 74.61859%;
		float: right;
		margin-right: 0;
	}
}

.woocommerce.post-type-archive-product .widget-wrapper__inner-wrap,
.woocommerce.tax-product_cat .widget-wrapper__inner-wrap {
	width: 100%;
	float: left;
	margin-left: 0;
	margin-right: 0;
}

@media (min-width: 840px) {
	.woocommerce.post-type-archive-product .widget-wrapper__inner-wrap,
	.woocommerce.tax-product_cat .widget-wrapper__inner-wrap {
		width: 23.85576%;
		float: left;
		margin-right: 1.52566%;
	}
}


/*************
 * Layouting *
 *************/

.woocommerce .woocommerce__wrapper {
	*zoom: 1;
	padding: 35px 0;
}

.woocommerce .woocommerce__wrapper:before,
.woocommerce .woocommerce__wrapper:after {
	content: " ";
	display: table;
}

.woocommerce .woocommerce__wrapper:after {
	clear: both;
}

@media (min-width: 768px) {
	.woocommerce .woocommerce__wrapper {
		padding: 55px 0;
	}
}

.woocommerce.post-type-archive-product .woocommerce__wrapper,
.woocommerce.tax-product_cat .woocommerce__wrapper {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-orient: vertical;
	-moz-box-orient: vertical;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	/* optional */
	-webkit-box-align: start;
	-moz-box-align: start;
	-ms-flex-align: start;
	-webkit-align-items: flex-start;
	align-items: flex-start;
}

@media (min-width: 840px) {
	.woocommerce.post-type-archive-product .woocommerce__wrapper,
	.woocommerce.tax-product_cat .woocommerce__wrapper {
		display: block;
	}
}

.woocommerce.post-type-archive-product .woocommerce__wrapper .content-area,
.woocommerce.tax-product_cat .woocommerce__wrapper .content-area {
	-webkit-box-ordinal-group: 2;
	-moz-box-ordinal-group: 2;
	-ms-flex-order: 2;
	-webkit-order: 2;
	order: 2;
	padding-right: 0px;
}

@media (min-width: 840px) {
	.woocommerce.post-type-archive-product .woocommerce__wrapper .content-area,
	.woocommerce.tax-product_cat .woocommerce__wrapper .content-area {
		padding-right: 20px;
	}
}

.woocommerce.post-type-archive-product .woocommerce__wrapper .widget-wrapper__inner-wrap,
.woocommerce.tax-product_cat .woocommerce__wrapper .widget-wrapper__inner-wrap {
	-webkit-box-ordinal-group: 1;
	-moz-box-ordinal-group: 1;
	-ms-flex-order: 1;
	-webkit-order: 1;
	order: 1;
	margin-bottom: 35px;
}

@media (min-width: 840px) {
	.woocommerce.post-type-archive-product .woocommerce__wrapper .widget-wrapper__inner-wrap,
	.woocommerce.tax-product_cat .woocommerce__wrapper .widget-wrapper__inner-wrap {
		margin-bottom: 0;
	}
}

.woocommerce ul.products li.product .woocommerce-loop-product__link {
	position: relative;
	display: block;
	border: solid 1px #67ca33;
}

.woocommerce ul.products li.product a img {
	margin: 0;
	padding: 10px;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
	position: absolute;
	bottom: 0;
	width: 100%;
	display: block;
	background-color: rgba(255, 255, 255, 0.8);
	padding: 10px;
	height: 62px;
	overflow-y: hidden;
}

@media (min-width: 768px) {
	.woocommerce ul.products li.product .woocommerce-loop-product__title {
		height: 75px;
	}
}

.woocommerce ul.products li.product .price {
	padding: 5px 10px;
	margin: 0;
	position: absolute;
	top: 0;
	right: 0;
	border-radius: 5px;
	background-color: #67ca33;
	color: white;
	transform: translate(10%, -15%);
}

@media (min-width: 840px) {
	.woocommerce ul.products li.product .price {
		transform: translate(25%, -50%);
	}
}


/*************
 * Formatting *
 *************/

.woocommerce-breadcrumb {
	font-family: 'montserratregular', sans-serif !important;
	word-break: break-word;
}

.woocommerce .woocommerce-products-header {
	font-family: 'futura_condensedmedium', sans-serif !important;
	color: #114b32 !important;
	font-size: 30px !important;
}

.woocommerce .woocommerce-products-header h1 {
	font-family: 'futura_condensedmedium', sans-serif !important;
	color: #114b32 !important;
	font-size: 30px !important;
}

.woocommerce .products .woocommerce-loop-product__title {
	font-family: 'futura_condensedmedium', sans-serif !important;
	color: #114b32 !important;
	font-size: 16px !important;
}

@media (min-width: 768px) {
	.woocommerce .products .woocommerce-loop-product__title {
		font-size: 20px !important;
	}
}

.woocommerce ul.products li.product .price {
	text-align: right;
	font-size: 16px !important;
	font-weight: 700;
}

@media (min-width: 768px) {
	.woocommerce ul.products li.product .price {
		font-size: 18px !important;
		font-weight: 700;
	}
}

.woocommerce-pagination {
	font-family: 'montserratregular', sans-serif;
}


/*************
 * Animation *
 *************/


/*************
 * Other	 *
 *************/


/** product category menu **/

#woocommerce_product_categories-2,
#woocommerce_product_categories-2 ul,
#woocommerce_product_categories-2 ul li,
#woocommerce_product_categories-2 ul li a {
	margin: 0;
	padding: 0;
	border: 0;
	list-style: none;
	line-height: 1;
	display: block;
	position: relative;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

#woocommerce_product_categories-2 {
	width: 100%;
	font-family: Helvetica, Arial, sans-serif;
	color: #ffffff;
}

@media (min-width: 768px) {
	#woocommerce_product_categories-2 {
		width: 96%;
	}
}

#woocommerce_product_categories-2 h4 {
	font-family: 'futura_condensedmedium';
	font-size: 30px;
	color: #114b32;
	margin-bottom: 10px;
	text-transform: uppercase;
}

#woocommerce_product_categories-2 ul ul {
	display: none;
}

.align-right {
	float: right;
}

#woocommerce_product_categories-2>ul>li>a {
	padding: 15px 20px;
	border-left: 1px solid #67ca33;
	border-right: 1px solid #67ca33;
	border-top: 1px solid #67ca33;
	cursor: pointer;
	z-index: 2;
	font-size: 20px;
	font-family: 'futura_condensedmedium', sans-serif;
	font-weight: bold;
	text-decoration: none;
	text-transform: uppercase;
	color: #ffffff;
	text-shadow: 0 1px 1px rgba(0, 0, 0, 0.35);
	background: #67ca33;
	/* background: -webkit-linear-gradient(#36aae7, #1fa0e4);
   background: -moz-linear-gradient(#36aae7, #1fa0e4);
   background: -o-linear-gradient(#36aae7, #1fa0e4);
   background: -ms-linear-gradient(#36aae7, #1fa0e4);
   background: linear-gradient(#36aae7, #1fa0e4);*/
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

#woocommerce_product_categories-2>ul>li>a:hover,
#woocommerce_product_categories-2>ul>li.active>a,
#woocommerce_product_categories-2>ul>li.open>a {
	color: white;
	background: #67ca33;
	/* background: -webkit-linear-gradient(#1fa0e4, #1992d1);
   background: -moz-linear-gradient(#1fa0e4, #1992d1);
   background: -o-linear-gradient(#1fa0e4, #1992d1);
   background: -ms-linear-gradient(#1fa0e4, #1992d1);
   background: linear-gradient(#1fa0e4, #1992d1);*/
}

#woocommerce_product_categories-2>ul>li.open>a {
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.15);
	border-bottom: 1px solid #1682ba;
}

#woocommerce_product_categories-2>ul>li:last-child>a,
#woocommerce_product_categories-2>ul>li.last>a {
	border-bottom: 1px solid #1682ba;
}

.holder {
	width: 0;
	height: 0;
	position: absolute;
	top: 0;
	right: 0;
}

.holder::after,
.holder::before {
	display: block;
	position: absolute;
	content: "";
	width: 6px;
	height: 6px;
	right: 20px;
	z-index: 10;
	-webkit-transform: rotate(-135deg);
	-moz-transform: rotate(-135deg);
	-ms-transform: rotate(-135deg);
	-o-transform: rotate(-135deg);
	transform: rotate(-135deg);
}

.holder::after {
	top: 17px;
	border-top: 2px solid #ffffff;
	border-left: 2px solid #ffffff;
}

#woocommerce_product_categories-2>ul>li>a:hover>span::after,
#woocommerce_product_categories-2>ul>li.active>a>span::after,
#woocommerce_product_categories-2>ul>li.open>a>span::after {
	border-color: #eeeeee;
}

.holder::before {
	top: 18px;
	border-top: 2px solid;
	border-left: 2px solid;
	border-top-color: inherit;
	border-left-color: inherit;
}

#woocommerce_product_categories-2 ul ul li a {
	cursor: pointer;
	border-bottom: 1px solid #32373e;
	border-left: 1px solid #32373e;
	border-right: 1px solid #32373e;
	padding: 10px 20px;
	z-index: 1;
	text-decoration: none;
	font-size: 15px;
	font-family: 'montserratregular', sans-serif;
	color: #ffffff;
	background: #58595b;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

#woocommerce_product_categories-2 ul ul li:hover>a,
#woocommerce_product_categories-2 ul ul li.open>a,
#woocommerce_product_categories-2 ul ul li.active>a {
	background: #424852;
	color: #ffffff;
}

#woocommerce_product_categories-2 ul ul li:first-child>a {
	box-shadow: none;
}

#woocommerce_product_categories-2 ul ul ul li:first-child>a {
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

#woocommerce_product_categories-2 ul ul ul li a {
	padding-left: 30px;
}

#woocommerce_product_categories-2>ul>li>ul>li:last-child>a,
#woocommerce_product_categories-2>ul>li>ul>li.last>a {
	border-bottom: 0;
}

#woocommerce_product_categories-2>ul>li>ul>li.open:last-child>a,
#woocommerce_product_categories-2>ul>li>ul>li.last.open>a {
	border-bottom: 1px solid #67ca33;
}

#woocommerce_product_categories-2>ul>li>ul>li.open:last-child>ul>li:last-child>a {
	border-bottom: 0;
}

#woocommerce_product_categories-2 ul ul li.cat-parent>a::after {
	display: block;
	position: absolute;
	content: "";
	width: 5px;
	height: 5px;
	right: 20px;
	z-index: 10;
	top: 11.5px;
	border-top: 2px solid #eeeeee;
	border-left: 2px solid #eeeeee;
	-webkit-transform: rotate(-135deg);
	-moz-transform: rotate(-135deg);
	-ms-transform: rotate(-135deg);
	-o-transform: rotate(-135deg);
	transform: rotate(-135deg);
}

#woocommerce_product_categories-2 ul ul li.active>a::after,
#woocommerce_product_categories-2 ul ul li.open>a::after,
#woocommerce_product_categories-2 ul ul li>a:hover::after {
	border-color: #ffffff;
}


/*************************************************
	CART & Checkout
**************************************************/

.woocommerce-page article {
	padding: 35px 0;
}

@media (min-width: 768px) {
	.woocommerce-page article {
		padding: 55px 0;
	}
}

.woocommerce-page .entry-title {
	font-family: 'futura_condensedmedium', sans-serif;
	color: #114b32;
	font-size: 40px;
	text-transform: uppercase;
}

.woocommerce-page .entry-content {
	font-family: 'montserratregular', sans-serif;
	font-size: 16px;
}

.woocommerce-info {
	border-top-color: #67ca33;
	font-family: 'montserratregular', sans-serif;
}

.button {
	font-family: 'montserratregular', sans-serif;
	font-size: 16px;
}

.tabs {
	font-family: 'futura_condensedmedium', sans-serif;
	color: #114b32;
	text-transform: uppercase;
}

.related.products h2 {
	font-family: 'futura_condensedmedium', sans-serif;
	color: #114b32;
	text-transform: uppercase;
}

.woocommerce-checkout.woocommerce-page .payment_method_paypal img {
	width: auto;
}

.woocommerce-checkout.woocommerce-page #customer_details {
	margin-top: 55px;
	margin-bottom: 55px;
}

.woocommerce-checkout.woocommerce-page .woocommerce-checkout-payment {
	margin-top: 55px;
	margin-bottom: 55px;
}

.woocommerce .woocommerce-products-header {
	position: relative;
	margin-bottom: 20px;
}

.woocommerce .cart-icon {
	position: absolute;
	bottom: 12px;
	right: 0;
}

.woocommerce .cart-icon img {
	width: 50px;
}

.woocommerce .cart-icon a label {
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background-color: #67ca33;
	display: block;
	position: absolute;
	top: -10px;
	padding: 1px 5px;
	left: 20px;
	transform: translateX(-50%);
	font-size: 20px;
	text-align: center;
	color: #114b32;
}

.woocommerce.single-product .cart-icon__wrapper {
	position: relative;
}

.woocommerce.single-product .woocommerce-breadcrumb {
	width: 85%;
}

@media (min-width: 768px) {
	.woocommerce.single-product .woocommerce-breadcrumb {
		width: 90%;
	}
}

@media (min-width: 1000px) {
	.woocommerce.single-product .woocommerce-breadcrumb {
		width: 95%;
	}
}

.woocommerce form .form-row.woocommerce-validated input.input-text {
	border-color: none;
}

.woocommerce form label {
	font-family: 'montserratregular', sans-serif;
}

.woocommerce form input,
.woocommerce form textarea {
	font-family: 'montserratregular', sans-serif;
}