/**
 * CONTENTS
 *
 * BASE
 * Box-sizing............Better default `box-sizing`.
 * Media.................WP specific img aligns and iframe styling.
 * Typography............@fontfaces, base text and vertical rhythm setup.
 *
 * COMPONENTS
 * Wrappers..............Wrapping and constraining elements.
 * Grid System...........Bootstrap based grid.
 * Clearfix..............Properly clear floats.
 * Flex..................Flex item classes.
 *
 * Objects
 * Icons.................Icon Elements.
 * Background Color......Background Color.
 * Buttons...............Button elements.
 * Titles................Titles.
 * Tables................Table Styles.
 * Forms.................Form Elements.
 * Breadcrumbs...........Breadcrumbs.
 * Pagination............Pagination.
 * Sliders/Carousels.....Sliders/Carousels.
 * Posts.................Post content for loop on blog homepage, search page, archives, etc.
 * Tabs..................Tabbed content.
 * Social Share..........Social share buttons
 *
 * UI
 * Page head.............The main page header.
 * Navigation............Navigation elements + Ubermenu.
 * Masthead..............Page title/image/slideshow header block.
 * Sidebar...............Sidebar elements.
 * Page footer...........The main page footer.
 *
 * Slick Slider - Preloading
 *
 * TRUMPS
 * Images................Round, Circle, Square Images.
 * Visibility.............Make items visible.
 * Hiding................Make items invisible/hidden.
 * Screen Readers........Display for screen readers.
 * Print.................Display for printing.
 * Clears................Clearing floats.
 * Text alignment........Align text.
 * Font weights..........Adjust font weights.
 * Borders...............Add borders.
 * Add/remove margins....Remove margins.
 * Add/remove paddings...Remove padding.
 * Positioning...........float, center, and stick items.
 */

/*------------------------------------*\
    BASE
\*------------------------------------*/

/**
 * Box-sizing
 */

* {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

/**
 * Media
 *
 * These selectors are hard cast because they are only used
 * by wordpress wyswyg when adding images to content
 */

img {
	height: auto;
}

.wp-caption.alignright,
.wp-caption.alignleft,
.wp-caption.alignnone,
.wp-caption.aligncenter {
	margin: 0;
	width: auto !important; /* to overwrite inline widths */
}

img.alignright,
.wp-caption.alignright img,
img.alignleft,
.wp-caption.alignleft img {
	height: auto;
	max-width: 50%;
}

img.alignnone,
.wp-caption.alignnone img,
img.aligncenter,
.wp-caption.aligncenter img {
	height: auto;
	max-width: 100%;
}

img.alignnone,
.wp-caption.alignnone,
img.aligncenter,
.wp-caption.aligncenter {
	margin: 0 0 22px 0;
}

img.alignright,
.wp-caption.alignright {
	float: right;
	margin: 0 0 22px 30px;
}

img.alignleft,
.wp-caption.alignleft {
	float: left;
	margin: 0 30px 22px 0;
}

img.aligncenter,
.wp-caption.aligncenter img {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

iframe {
	max-width: 100%;
}

/* Fade-in for lazyloaded images */
.will-lazyload {
	opacity: 0;
	transition: opacity 0.25 linear;
}

.will-lazyload.lazyloaded {
	opacity: 1;
}

/**
 * Typography
 */

/*
  - Please set up line-heights in ems
  - Set up typography styling based on styles found in .xd file under Assets > Character Styles
  */

html {
	scroll-behavior: smooth;
}

body {
	min-height: 100vh;
	overflow-anchor: none;
	scroll-behavior: smooth;
	font-family: "Montserrat";
	font-size: 14px;
	line-height: 24px;
	font-weight: 500;
	padding-bottom: 50px;
	color: #555a5c;
	word-break: break-word;
}

h1,
.h1,
h2,
.h2 {
	color: #001d0e;
	font-size: 18px;
	line-height: 24px;
	font-weight: 700;
	margin-top: 0;
	text-transform: uppercase;
}

h3,
.h3 {
	color: #00843d;
	font-size: 15px;
	line-height: 20px;
	font-weight: 500;
	margin-top: 0;
	text-transform: capitalize;
}

h4,
.h4 {
	color: #001d0e;
	font-size: 14px;
	line-height: 24px;
	font-weight: 700;
	margin-top: 0;
	text-transform: uppercase;
}

h5,
.h5 {
	color: #001d0e;
	font-size: 13px;
	line-height: 18px;
	font-weight: 700;
	margin-top: 0;
	text-transform: uppercase;
}

h6,
.h6 {
	color: #001d0e;
	font-size: 14px;
	line-height: 26px;
	font-weight: 600;
	margin-top: 0;
	text-transform: capitalize;
}

p,
ul,
ol {
	margin-top: 0;
	margin-bottom: 20px;
}

p strong {
	color: #00843d;
	font-weight: 700;
}

p a {
	color: #00843d;
	font-weight: 700;
	transition: background 0.35s, color 0.35s;
}

p a:not(.btn):hover {
	background: #000;
	color: #fff;
}

.page-content section,
.services,
.content-icons,
.project-portfolio,
.find-location,
.featured-posts {
	text-align: center;
}

.page-content section ul,
.service-content-wrapper,
.content-icons ul {
	text-align: left; /* To avoid weird lists on mobile. */
}

.page-content ul,
.page-content ol {
	/* fix for bulleted lists not wrapping around images correctly in Wordpress */
	width: auto;
	overflow: hidden;
}

.page-content ul li {
	/* set up bullets as a :before or icon element, not as a background image */
	margin-bottom: 10px;
	padding-left: 35px;
	position: relative;
}

.page-content ul li::before {
	content: "";
	background-image: url("../img/watermark-leaf-green.svg");
	background-repeat: no-repeat;
	background-size: contain;
	height: 17px;
	width: 22px;
	position: absolute;
	left: 0;
	top: 3px;
}

.page-content ul li ul.children {
	margin-bottom: 0;
	margin-top: 15px;
}

ul {
	list-style: none;
	padding-left: 15px;
}

ul li {
	/* set up bullets as a :before or icon element, not as a background image */
}

ol {
	counter-reset: my-list-counter;
	list-style: none;
	padding-left: 40px;
}

ol li {
	counter-increment: my-list-counter;
	position: relative;
}

ol li::before {
	content: counter(my-list-counter) ". ";
	color: #001d0e;
	font-size: 18px;
	font-weight: 700;
	position: absolute;
	left: calc(-1 * 22px - 10px);
	line-height: 22px;
	width: 22px;
	height: 22px;
	top: 0;
	text-align: center;
}

a {
	word-break: break-word; /* force link text to overflow when too long for container */
	text-decoration: none;
	transition: all 0.3s;
}

blockquote {
	background-color: #fff;
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
	font-size: 14px;
	font-weight: 500;
	line-height: 26px;
	margin: 0 0 25px 0;
	padding: 50px 20px 20px 20px;
	position: relative;
}

blockquote::before {
	content: "";
	background: rgb(0, 132, 61);
	background: linear-gradient(
		180deg,
		rgba(0, 132, 61, 1) 0%,
		rgba(55, 78, 66, 1) 50%,
		rgba(0, 66, 31, 1) 100%
	);
	width: 85%;
	height: 6px;
	position: absolute;
	left: 0;
	top: 30px;
	right: 0;
	margin: 0 auto;
}

@media (min-width: 768px) {
	body {
		font-size: 14px;
		line-height: 22px;
		padding-bottom: 0;
	}

	h1,
	.h1 {
		font-size: 35px;
		line-height: 41px;
	}

	h2,
	.h2 {
		font-size: 24px;
		line-height: 30px;
	}

	h3,
	.h3 {
		font-size: 16px;
		line-height: 22px;
	}

	h4,
	.h4 {
		font-size: 18px;
		line-height: 30px;
	}

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

	h6,
	.h6 {
		font-size: 14px;
		line-height: 26px;
	}

	.page-content section,
	.services,
	.content-icons,
	.project-portfolio,
	.find-location,
	.featured-posts {
		text-align: unset;
	}

	blockquote {
		background: transparent;
		box-shadow: none;
		margin-left: 15px;
		padding-left: 15px;
		padding-bottom: 0;
		padding-top: 0;
	}

	blockquote::before {
		width: 5px;
		height: 100%;
		left: 0;
		top: 0;
		right: initial;
		margin: initial;
	}
}

@media (min-width: 1025px) {
	body {
		font-size: 16px;
		line-height: 24px;
	}

	h1,
	.h1 {
		font-size: 54px;
		line-height: 60px;
	}

	h2,
	.h2 {
		font-size: 38px;
		line-height: 44px;
	}

	h3,
	.h3 {
		font-size: 24px;
		line-height: 32px;
	}

	h4,
	.h4 {
		font-size: 28px;
		line-height: 34px;
	}

	h5,
	.h5 {
		font-size: 20px;
		line-height: 28px;
	}

	h6,
	.h6 {
		font-size: 18px;
		line-height: 22px;
	}

	blockquote {
		font-size: 18px;
		margin-left: 40px;
		padding-left: 35px;
	}
}

/*------------------------------------*\
    COMPONENTS
\*------------------------------------*/

/**
 * Wrappers
 */

.container,
.container-fluid,
.header-container {
	margin-right: auto;
	margin-left: auto;
	padding-left: 22px; /* TODO: Default grid. Update if different in prototypes. */
	padding-right: 22px;
}

.container {
	max-width: 1366px;
}

.header-container {
	max-width: 1500px;
}

/**
 * Grid System
 *
 * Bootstrap v3.3.1 (http://getbootstrap.com)
 * Copyright 2011-2014 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 * --------------------------------------------------------------------------
 * Base setup 20px gutters
 *
 * Phones         - xxs - <  600px    ** Default **
 * Small Tablets  - xs - >=  600px
 * Tablets        - sm - >= 768px
 * Desktop        - md - >= 1025px
 * Large Desktop  - lg - >= 1200px
 * --------------------------------------------------------------------------
 * Learn more here: http://getbootstrap.com/css/#grid
 * -------------------------------------------------------------------------- */

.row {
	margin-left: -11px; /* TODO: Default grid. Update if different in prototypes. */
	margin-right: -11px;
}

[class*="col-"] {
	position: relative;
	min-height: 1px;
	padding-left: 11px; /* TODO: Default grid. Update if different in prototypes. */
	padding-right: 11px;
}

.row-flex {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-right: -11px;
	margin-left: -11px;
}

.row-flex [class*="col-"] {
	flex-grow: 0;
	flex-shrink: 0;
}

/* Extra Extra small devices (devices, less than 600px) */
[class*="col-xxs-"] {
	float: left;
}

.col-xxs-12 {
	width: 100%;
}
.col-xxs-11 {
	width: 91.66666667%;
}
.col-xxs-10 {
	width: 83.33333333%;
}
.col-xxs-9 {
	width: 75%;
}
.col-xxs-8 {
	width: 66.66666667%;
}
.col-xxs-7 {
	width: 58.33333333%;
}
.col-xxs-6 {
	width: 50%;
}
.col-xxs-5 {
	width: 41.66666667%;
}
.col-xxs-4 {
	width: 33.33333333%;
}
.col-xxs-3 {
	width: 25%;
}
.col-xxs-2 {
	width: 16.66666667%;
}
.col-xxs-1 {
	width: 8.33333333%;
}

.col-xxs-pull-12 {
	right: 100%;
}
.col-xxs-pull-11 {
	right: 91.66666667%;
}
.col-xxs-pull-10 {
	right: 83.33333333%;
}
.col-xxs-pull-9 {
	right: 75%;
}
.col-xxs-pull-8 {
	right: 66.66666667%;
}
.col-xxs-pull-7 {
	right: 58.33333333%;
}
.col-xxs-pull-6 {
	right: 50%;
}
.col-xxs-pull-5 {
	right: 41.66666667%;
}
.col-xxs-pull-4 {
	right: 33.33333333%;
}
.col-xxs-pull-3 {
	right: 25%;
}
.col-xxs-pull-2 {
	right: 16.66666667%;
}
.col-xxs-pull-1 {
	right: 8.33333333%;
}
.col-xxs-pull-0 {
	right: auto;
}

.col-xxs-push-12 {
	left: 100%;
}
.col-xxs-push-11 {
	left: 91.66666667%;
}
.col-xxs-push-10 {
	left: 83.33333333%;
}
.col-xxs-push-9 {
	left: 75%;
}
.col-xxs-push-8 {
	left: 66.66666667%;
}
.col-xxs-push-7 {
	left: 58.33333333%;
}
.col-xxs-push-6 {
	left: 50%;
}
.col-xxs-push-5 {
	left: 41.66666667%;
}
.col-xxs-push-4 {
	left: 33.33333333%;
}
.col-xxs-push-3 {
	left: 25%;
}
.col-xxs-push-2 {
	left: 16.66666667%;
}
.col-xxs-push-1 {
	left: 8.33333333%;
}
.col-xxs-push-0 {
	left: auto;
}

.col-xxs-offset-12 {
	margin-left: 100%;
}
.col-xxs-offset-11 {
	margin-left: 91.66666667%;
}
.col-xxs-offset-10 {
	margin-left: 83.33333333%;
}
.col-xxs-offset-9 {
	margin-left: 75%;
}
.col-xxs-offset-8 {
	margin-left: 66.66666667%;
}
.col-xxs-offset-7 {
	margin-left: 58.33333333%;
}
.col-xxs-offset-6 {
	margin-left: 50%;
}
.col-xxs-offset-5 {
	margin-left: 41.66666667%;
}
.col-xxs-offset-4 {
	margin-left: 33.33333333%;
}
.col-xxs-offset-3 {
	margin-left: 25%;
}
.col-xxs-offset-2 {
	margin-left: 16.66666667%;
}
.col-xxs-offset-1 {
	margin-left: 8.33333333%;
}
.col-xxs-offset-0 {
	margin-left: 0;
}

/* Extra small devices (phones, 600px and up) */
@media (min-width: 600px) {
	[class*="col-xs-"] {
		float: left;
	}

	.col-xs-12 {
		width: 100%;
	}
	.col-xs-11 {
		width: 91.66666667%;
	}
	.col-xs-10 {
		width: 83.33333333%;
	}
	.col-xs-9 {
		width: 75%;
	}
	.col-xs-8 {
		width: 66.66666667%;
	}
	.col-xs-7 {
		width: 58.33333333%;
	}
	.col-xs-6 {
		width: 50%;
	}
	.col-xs-5 {
		width: 41.66666667%;
	}
	.col-xs-4 {
		width: 33.33333333%;
	}
	.col-xs-3 {
		width: 25%;
	}
	.col-xs-2 {
		width: 16.66666667%;
	}
	.col-xs-1 {
		width: 8.33333333%;
	}

	.col-xs-pull-12 {
		right: 100%;
	}
	.col-xs-pull-11 {
		right: 91.66666667%;
	}
	.col-xs-pull-10 {
		right: 83.33333333%;
	}
	.col-xs-pull-9 {
		right: 75%;
	}
	.col-xs-pull-8 {
		right: 66.66666667%;
	}
	.col-xs-pull-7 {
		right: 58.33333333%;
	}
	.col-xs-pull-6 {
		right: 50%;
	}
	.col-xs-pull-5 {
		right: 41.66666667%;
	}
	.col-xs-pull-4 {
		right: 33.33333333%;
	}
	.col-xs-pull-3 {
		right: 25%;
	}
	.col-xs-pull-2 {
		right: 16.66666667%;
	}
	.col-xs-pull-1 {
		right: 8.33333333%;
	}
	.col-xs-pull-0 {
		right: auto;
	}

	.col-xs-push-12 {
		left: 100%;
	}
	.col-xs-push-11 {
		left: 91.66666667%;
	}
	.col-xs-push-10 {
		left: 83.33333333%;
	}
	.col-xs-push-9 {
		left: 75%;
	}
	.col-xs-push-8 {
		left: 66.66666667%;
	}
	.col-xs-push-7 {
		left: 58.33333333%;
	}
	.col-xs-push-6 {
		left: 50%;
	}
	.col-xs-push-5 {
		left: 41.66666667%;
	}
	.col-xs-push-4 {
		left: 33.33333333%;
	}
	.col-xs-push-3 {
		left: 25%;
	}
	.col-xs-push-2 {
		left: 16.66666667%;
	}
	.col-xs-push-1 {
		left: 8.33333333%;
	}
	.col-xs-push-0 {
		left: auto;
	}

	.col-xs-offset-12 {
		margin-left: 100%;
	}
	.col-xs-offset-11 {
		margin-left: 91.66666667%;
	}
	.col-xs-offset-10 {
		margin-left: 83.33333333%;
	}
	.col-xs-offset-9 {
		margin-left: 75%;
	}
	.col-xs-offset-8 {
		margin-left: 66.66666667%;
	}
	.col-xs-offset-7 {
		margin-left: 58.33333333%;
	}
	.col-xs-offset-6 {
		margin-left: 50%;
	}
	.col-xs-offset-5 {
		margin-left: 41.66666667%;
	}
	.col-xs-offset-4 {
		margin-left: 33.33333333%;
	}
	.col-xs-offset-3 {
		margin-left: 25%;
	}
	.col-xs-offset-2 {
		margin-left: 16.66666667%;
	}
	.col-xs-offset-1 {
		margin-left: 8.33333333%;
	}
	.col-xs-offset-0 {
		margin-left: 0;
	}
}

/* Small devices (tablets, 768px and up) */
@media (min-width: 768px) {
	.row-sm-flex {
		display: -ms-flexbox;
		display: flex;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		margin-right: -11px;
		margin-left: -11px;
	}

	[class*="col-sm-"] {
		float: left;
	}

	.col-sm-12 {
		width: 100%;
	}
	.col-sm-11 {
		width: 91.66666667%;
	}
	.col-sm-10 {
		width: 83.33333333%;
	}
	.col-sm-9 {
		width: 75%;
	}
	.col-sm-8 {
		width: 66.66666667%;
	}
	.col-sm-7 {
		width: 58.33333333%;
	}
	.col-sm-6 {
		width: 50%;
	}
	.col-sm-5 {
		width: 41.66666667%;
	}
	.col-sm-4 {
		width: 33.33333333%;
	}
	.col-sm-3 {
		width: 25%;
	}
	.col-sm-2 {
		width: 16.66666667%;
	}
	.col-sm-1 {
		width: 8.33333333%;
	}

	.col-sm-pull-12 {
		right: 100%;
	}
	.col-sm-pull-11 {
		right: 91.66666667%;
	}
	.col-sm-pull-10 {
		right: 83.33333333%;
	}
	.col-sm-pull-9 {
		right: 75%;
	}
	.col-sm-pull-8 {
		right: 66.66666667%;
	}
	.col-sm-pull-7 {
		right: 58.33333333%;
	}
	.col-sm-pull-6 {
		right: 50%;
	}
	.col-sm-pull-5 {
		right: 41.66666667%;
	}
	.col-sm-pull-4 {
		right: 33.33333333%;
	}
	.col-sm-pull-3 {
		right: 25%;
	}
	.col-sm-pull-2 {
		right: 16.66666667%;
	}
	.col-sm-pull-1 {
		right: 8.33333333%;
	}
	.col-sm-pull-0 {
		right: auto;
	}

	.col-sm-push-12 {
		left: 100%;
	}
	.col-sm-push-11 {
		left: 91.66666667%;
	}
	.col-sm-push-10 {
		left: 83.33333333%;
	}
	.col-sm-push-9 {
		left: 75%;
	}
	.col-sm-push-8 {
		left: 66.66666667%;
	}
	.col-sm-push-7 {
		left: 58.33333333%;
	}
	.col-sm-push-6 {
		left: 50%;
	}
	.col-sm-push-5 {
		left: 41.66666667%;
	}
	.col-sm-push-4 {
		left: 33.33333333%;
	}
	.col-sm-push-3 {
		left: 25%;
	}
	.col-sm-push-2 {
		left: 16.66666667%;
	}
	.col-sm-push-1 {
		left: 8.33333333%;
	}
	.col-sm-push-0 {
		left: auto;
	}

	.col-sm-offset-12 {
		margin-left: 100%;
	}
	.col-sm-offset-11 {
		margin-left: 91.66666667%;
	}
	.col-sm-offset-10 {
		margin-left: 83.33333333%;
	}
	.col-sm-offset-9 {
		margin-left: 75%;
	}
	.col-sm-offset-8 {
		margin-left: 66.66666667%;
	}
	.col-sm-offset-7 {
		margin-left: 58.33333333%;
	}
	.col-sm-offset-6 {
		margin-left: 50%;
	}
	.col-sm-offset-5 {
		margin-left: 41.66666667%;
	}
	.col-sm-offset-4 {
		margin-left: 33.33333333%;
	}
	.col-sm-offset-3 {
		margin-left: 25%;
	}
	.col-sm-offset-2 {
		margin-left: 16.66666667%;
	}
	.col-sm-offset-1 {
		margin-left: 8.33333333%;
	}
	.col-sm-offset-0 {
		margin-left: 0;
	}
}

/* Medium devices (desktops, 1025px and up) */
@media (min-width: 1025px) {
	[class*="col-md-"] {
		float: left;
	}

	.row-md-flex {
		display: -ms-flexbox;
		display: flex;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		margin-right: -11px;
		margin-left: -11px;
	}

	.col-md-12 {
		width: 100%;
	}
	.col-md-11 {
		width: 91.66666667%;
	}
	.col-md-10 {
		width: 83.33333333%;
	}
	.col-md-9 {
		width: 75%;
	}
	.col-md-8 {
		width: 66.66666667%;
	}
	.col-md-7 {
		width: 58.33333333%;
	}
	.col-md-6 {
		width: 50%;
	}
	.col-md-5 {
		width: 41.66666667%;
	}
	.col-md-4 {
		width: 33.33333333%;
	}
	.col-md-3 {
		width: 25%;
	}
	.col-md-2 {
		width: 16.66666667%;
	}
	.col-md-1 {
		width: 8.33333333%;
	}

	.col-md-pull-12 {
		right: 100%;
	}
	.col-md-pull-11 {
		right: 91.66666667%;
	}
	.col-md-pull-10 {
		right: 83.33333333%;
	}
	.col-md-pull-9 {
		right: 75%;
	}
	.col-md-pull-8 {
		right: 66.66666667%;
	}
	.col-md-pull-7 {
		right: 58.33333333%;
	}
	.col-md-pull-6 {
		right: 50%;
	}
	.col-md-pull-5 {
		right: 41.66666667%;
	}
	.col-md-pull-4 {
		right: 33.33333333%;
	}
	.col-md-pull-3 {
		right: 25%;
	}
	.col-md-pull-2 {
		right: 16.66666667%;
	}
	.col-md-pull-1 {
		right: 8.33333333%;
	}
	.col-md-pull-0 {
		right: auto;
	}

	.col-md-push-12 {
		left: 100%;
	}
	.col-md-push-11 {
		left: 91.66666667%;
	}
	.col-md-push-10 {
		left: 83.33333333%;
	}
	.col-md-push-9 {
		left: 75%;
	}
	.col-md-push-8 {
		left: 66.66666667%;
	}
	.col-md-push-7 {
		left: 58.33333333%;
	}
	.col-md-push-6 {
		left: 50%;
	}
	.col-md-push-5 {
		left: 41.66666667%;
	}
	.col-md-push-4 {
		left: 33.33333333%;
	}
	.col-md-push-3 {
		left: 25%;
	}
	.col-md-push-2 {
		left: 16.66666667%;
	}
	.col-md-push-1 {
		left: 8.33333333%;
	}
	.col-md-push-0 {
		left: auto;
	}

	.col-md-offset-12 {
		margin-left: 100%;
	}
	.col-md-offset-11 {
		margin-left: 91.66666667%;
	}
	.col-md-offset-10 {
		margin-left: 83.33333333%;
	}
	.col-md-offset-9 {
		margin-left: 75%;
	}
	.col-md-offset-8 {
		margin-left: 66.66666667%;
	}
	.col-md-offset-7 {
		margin-left: 58.33333333%;
	}
	.col-md-offset-6 {
		margin-left: 50%;
	}
	.col-md-offset-5 {
		margin-left: 41.66666667%;
	}
	.col-md-offset-4 {
		margin-left: 33.33333333%;
	}
	.col-md-offset-3 {
		margin-left: 25%;
	}
	.col-md-offset-2 {
		margin-left: 16.66666667%;
	}
	.col-md-offset-1 {
		margin-left: 8.33333333%;
	}
	.col-md-offset-0 {
		margin-left: 0;
	}
}

/* Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
	[class*="col-lg-"] {
		float: left;
	}

	.row-lg-flex {
		display: -ms-flexbox;
		display: flex;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		margin-right: -11px;
		margin-left: -11px;
	}

	.col-lg-12 {
		width: 100%;
	}
	.col-lg-11 {
		width: 91.66666667%;
	}
	.col-lg-10 {
		width: 83.33333333%;
	}
	.col-lg-9 {
		width: 75%;
	}
	.col-lg-8 {
		width: 66.66666667%;
	}
	.col-lg-7 {
		width: 58.33333333%;
	}
	.col-lg-6 {
		width: 50%;
	}
	.col-lg-5 {
		width: 41.66666667%;
	}
	.col-lg-4 {
		width: 33.33333333%;
	}
	.col-lg-3 {
		width: 25%;
	}
	.col-lg-2 {
		width: 16.66666667%;
	}
	.col-lg-1 {
		width: 8.33333333%;
	}

	.col-lg-pull-12 {
		right: 100%;
	}
	.col-lg-pull-11 {
		right: 91.66666667%;
	}
	.col-lg-pull-10 {
		right: 83.33333333%;
	}
	.col-lg-pull-9 {
		right: 75%;
	}
	.col-lg-pull-8 {
		right: 66.66666667%;
	}
	.col-lg-pull-7 {
		right: 58.33333333%;
	}
	.col-lg-pull-6 {
		right: 50%;
	}
	.col-lg-pull-5 {
		right: 41.66666667%;
	}
	.col-lg-pull-4 {
		right: 33.33333333%;
	}
	.col-lg-pull-3 {
		right: 25%;
	}
	.col-lg-pull-2 {
		right: 16.66666667%;
	}
	.col-lg-pull-1 {
		right: 8.33333333%;
	}
	.col-lg-pull-0 {
		right: auto;
	}

	.col-lg-push-12 {
		left: 100%;
	}
	.col-lg-push-11 {
		left: 91.66666667%;
	}
	.col-lg-push-10 {
		left: 83.33333333%;
	}
	.col-lg-push-9 {
		left: 75%;
	}
	.col-lg-push-8 {
		left: 66.66666667%;
	}
	.col-lg-push-7 {
		left: 58.33333333%;
	}
	.col-lg-push-6 {
		left: 50%;
	}
	.col-lg-push-5 {
		left: 41.66666667%;
	}
	.col-lg-push-4 {
		left: 33.33333333%;
	}
	.col-lg-push-3 {
		left: 25%;
	}
	.col-lg-push-2 {
		left: 16.66666667%;
	}
	.col-lg-push-1 {
		left: 8.33333333%;
	}
	.col-lg-push-0 {
		left: auto;
	}

	.col-lg-offset-12 {
		margin-left: 100%;
	}
	.col-lg-offset-11 {
		margin-left: 91.66666667%;
	}
	.col-lg-offset-10 {
		margin-left: 83.33333333%;
	}
	.col-lg-offset-9 {
		margin-left: 75%;
	}
	.col-lg-offset-8 {
		margin-left: 66.66666667%;
	}
	.col-lg-offset-7 {
		margin-left: 58.33333333%;
	}
	.col-lg-offset-6 {
		margin-left: 50%;
	}
	.col-lg-offset-5 {
		margin-left: 41.66666667%;
	}
	.col-lg-offset-4 {
		margin-left: 33.33333333%;
	}
	.col-lg-offset-3 {
		margin-left: 25%;
	}
	.col-lg-offset-2 {
		margin-left: 16.66666667%;
	}
	.col-lg-offset-1 {
		margin-left: 8.33333333%;
	}
	.col-lg-offset-0 {
		margin-left: 0;
	}
}

/**
 * Clearfix
 * Apply clearing without adding additional markup
 */

.clearfix:before,
.clearfix:after,
.container:before,
.container:after,
.container-fluid:before,
.container-fluid:after,
.row:before,
.row:after {
	content: " ";
	display: table;
}

.clearfix:after,
.container:after,
.container-fluid:after,
.row:after {
	clear: both;
}

/**
 * Flex item ready classes
 */

.flex-row-reverse {
	flex-direction: row-reverse;
}

.flex-column-reverse {
	flex-direction: column-reverse;
}

.align-items-center {
	align-items: center;
}

.justify-content-center {
	justify-content: center;
}

.justify-content-end {
	justify-content: flex-end;
}

@media (min-width: 768px) {
	.flex-sm-column-reverse {
		flex-direction: column-reverse;
	}

	.flex-sm-row-reverse {
		flex-direction: row-reverse;
	}
}

@media (min-width: 1025px) {
	.d-lg-flex {
		display: flex;
	}

	.flex-lg-row {
		flex-direction: row;
	}
}

/*--------------------------------------------------------------*\
    OBJECTS
    Objects are independent generic stylibf classes or UI peices.
    All styles for objects should be self contained.

    e.g. an object shouldn't rely on trump helpers to apply padding etc.
\*--------------------------------------------------------------*/

/**
 * Buttons
 */

.btn {
	font-size: 14px;
	line-height: 22px;
	display: inline-block;
	padding: 12px 28px 13px;
	color: #fff;
	background: transparent
		linear-gradient(92deg, #00843d 0%, #004621 68%, #00421f 100%) 0% 0%
		no-repeat padding-box;
	font-weight: 700;
	text-transform: uppercase;
	text-align: center;
	position: relative;
	z-index: 3;
}

.btn::before {
	content: "";
	background: #f7fffb;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	height: 100%;
	width: 100%;
	z-index: -1;
	transition: opacity 0.35s;
}

.btn:hover {
	color: #00843d;
	box-shadow: 0px 3px 12px #00843d57;
}

.btn:hover::before {
	opacity: 1;
}

.btn-secondary {
	font-size: 14px;
	line-height: 22px;
	display: inline-block;
	padding: 9px 25px 10px;
	color: #00843d;
	background: #fff;
	font-weight: 700;
	border: 3px solid #00843d;
	text-transform: uppercase;
	text-align: center;
	position: relative;
	z-index: 2;
	transition: 0.35s all;
}

.btn-secondary.btn-white {
	color: #00843d;
	border-color: #ebebeb;
	background-color: #fff;
}

.btn-secondary:hover {
	border-color: #00843d;
	color: #00843d;
}

.btn-white:hover {
	background: #f7fffb;
	color: #00843d;
	border-color: #00843d;
	box-shadow: 0px 3px 12px #00843d57;
}

.btn-block {
	display: block;
	width: 100%;
}

.btn + .btn {
	margin-top: 5px; /* Add margin-top when 2 buttons are next to each other */
}

@media (min-width: 600px) {
	.btn + .btn {
		margin-top: 0;
		margin-left: 5px;
	}
}

@media (min-width: 1025px) {
	.btn {
		font-size: 18px;
		line-height: 22px;
		padding: 19px;
		min-width: 300px;
	}

	.btn-secondary {
		font-size: 18px;
		line-height: 22px;
		padding: 16px;
		min-width: 300px;
	}
}

/**
 * Titles
 */

.section-subheading {
	margin-bottom: 4px;
}

/**
 * Icons
 */

/* add icon code here */

@font-face {
	font-family: "icomoon";
	src: url("../fonts/icons/fonts/Greenscape.eot?r0gjqh");
	src: url("../fonts/icons/fonts/Greenscape.eot?r0gjqh#iefix")
			format("embedded-opentype"),
		url("../fonts/icons/fonts/Greenscape.ttf?r0gjqh") format("truetype"),
		url("../fonts/icons/fonts/Greenscape.woff?r0gjqh") format("woff"),
		url("../fonts/icons/fonts/Greenscape.svg?r0gjqh#icomoon") format("svg");
	font-weight: normal;
	font-style: normal;
	font-display: block;
}

[class^="icon-"],
[class*=" icon-"] {
	/* use !important to prevent issues with browser extensions that change fonts */
	font-family: "icomoon" !important;
	speak: never;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;

	/* Better Font Rendering =========== */
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.icon-caret-down:before {
	content: "\e900";
}

.icon-caret-up:before {
	content: "\e901";
}

.icon-drop-down:before {
	content: "\e902";
}

.icon-error:before {
	content: "\e903";
}

.icon-facebook:before {
	content: "\e904";
}

.icon-instagram:before {
	content: "\e905";
}

.icon-left-arrow:before {
	content: "\e906";
}

.icon-less:before {
	content: "\e907";
}

.icon-linkedin:before {
	content: "\e908";
}

.icon-location-arrow:before {
	content: "\e909";
}

.icon-more:before {
	content: "\e90a";
}

.icon-phone:before {
	content: "\e90b";
}

.icon-right-arrow:before {
	content: "\e90c";
}

.icon-search:before {
	content: "\e90d";
}

.icon-twitter:before {
	content: "\e90e";
}

.icon-close:before {
	content: "\e910";
}

.icon-menu:before {
	content: "\e911";
}

/**
 * Background Color
 */

.bg-gray {
	background-color: #eff1f0;
}

.bg-white {
	background-color: #fff;
}

/**
 * Tables
 */

@media only screen and (max-width: 768px) {
	.responsive-table {
		/* overflow: hidden;
        overflow-x: scroll;*/
		display: block;
	}

	.responsive-table tbody {
		display: block;
	}

	.responsive-table tbody tr {
		display: flex;
	}

	.responsive-table tbody tr td img {
		max-width: 100%;
	}
}

/* Ninja Tables (responsive tables)
    - Add custom table styling at the bottom */

a.nt_edit_link {
	display: none !important;
}

.foo-table {
	font-size: 16px !important;
	border: 1px solid #c2c2c2 !important;
	border-radius: 0 !important;
	margin: 0px !important;
}

.semantic_ui .ui.celled.table tr td:first-child,
.semantic_ui .ui.celled.table tr th:first-child {
	border-left: none !important;
}

.foo-table thead tr:first-child > th:first-child,
.foo-table thead tr:first-child > th:last-child {
	border-radius: 0 !important;
}

.foo-table tbody tr td {
	border-left: 1px solid #c2c2c2 !important;
}

.semantic_ui .ui.table tr td {
	border-top: 1px solid #c2c2c2 !important;
}

.semantic_ui .ui.striped.table > tr:nth-child(2n),
.semantic_ui .ui.striped.table tbody tr:nth-child(2n) {
	background-color: #fff !important;
}

.foo-table thead tr hr {
	border-left: 0 !important;
}

.semantic_ui .ui.table td {
	padding: 12px 26px !important;
}

.foo-table.footable.table > thead > tr > th {
	padding: 14px 26px !important;
}

.foo-table thead th {
	background: #e8e8e8 !important;
	color: #3c3c3c !important;
	font-size: 20px;
	border-color: #c2c2c2 !important;
	border-bottom: none !important;
	padding: 24px 26px !important;
}

/* Start adding custom Scroll */
.footable_parent:root {
	scrollbar-face-color: #767676; /* Firefox 63 compatibility */
	scrollbar-track-color: #c9c9c9; /* Firefox 63 compatibility */
	scrollbar-color: #767676 #c9c9c9;
	scrollbar-width: thin;
}

.footable_parent::-webkit-scrollbar {
	width: 10px;
}

.footable_parent::-webkit-scrollbar-track {
	background: #c9c9c9;
	border-radius: 10px;
}

.footable_parent::-webkit-scrollbar-thumb {
	background: #767676;
	border-radius: 10px;
}

.footable_parent {
	margin: 30px 0px;
}
/* End adding custom Scroll */

/* Custom CSS */

/**
 * Forms
 */

/* Removes default webkit form styling */
input:not([type="radio"]):not([type="checkbox"]),
button,
textarea {
	-webkit-appearance: none;
}

input:focus,
textarea:focus,
select:focus {
	outline: none; /* Removes blue border on focus */
	border: 1px solid #ccc; /* TODO: Please add a branded border for focus */
}

/* default text input style */
input::-webkit-input-placeholder {
	color: #555a5c;
	opacity: 1;
}

input::-moz-placeholder {
	color: #555a5c;
	opacity: 1;
}

input:-ms-input-placeholder {
	color: #555a5c;
	opacity: 1;
}

input:-moz-placeholder {
	color: #555a5c;
	opacity: 1;
}

[type="text"],
[type="date"],
[type="datetime"],
[type="datetime-local"],
[type="email"],
[type="month"],
[type="number"],
[type="password"],
[type="search"],
[type="tel"],
[type="url"],
[type="week"],
[type="date"] {
	box-shadow: 0px 8px 12px #001d0e29;
	border: 1px solid #c1c7c9;
	color: #555a5c;
	font-size: 18px;
	line-height: 22px;
	padding-left: 20px;
	padding-right: 20px;
	width: 100%;
	font-weight: 700;
	height: 60px;
}

[type="text"]:focus,
[type="date"]:focus,
[type="datetime"]:focus,
[type="datetime-local"]:focus,
[type="email"]:focus,
[type="month"]:focus,
[type="number"]:focus,
[type="password"]:focus,
[type="search"]:focus,
[type="tel"]:focus,
[type="url"]:focus,
[type="week"]:focus,
[type="date"]:focus {
	box-shadow: 0px 8px 12px #001d0e29;
	border: 4px solid #00843d;
	color: #00843d;
	padding-left: 17px;
	padding-right: 17px;
}

textarea {
	height: 171px;
	box-shadow: 0px 8px 12px #001d0e29;
	border: 1px solid #c1c7c9;
	color: #555a5c;
	font-size: 18px;
	line-height: 22px;
	padding-bottom: 20px;
	padding-top: 20px;
	padding-left: 20px;
	padding-right: 20px;
	width: 100%;
	font-weight: 700;
}

textarea:focus {
	box-shadow: 0px 8px 12px #001d0e29;
	border: 4px solid #00843d;
	color: #00843d;
	padding-bottom: 17px;
	padding-top: 17px;
	padding-left: 17px;
	padding-right: 17px;
}

/* Removes inconsistent padding from Firefox buttons */
button::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
	border: none;
	padding: 0;
}

/* Hide reCaptcha badge */
.grecaptcha-badge {
	visibility: hidden;
}

/* Default Radio/Checkbox Style (if using CF7) */
.wpcf7-radio .wpcf7-list-item,
.wpcf7-checkbox .wpcf7-list-item {
	display: inline-block;
	margin-right: 15px;
	margin-bottom: 10px; /* incase items go to 2 lines */
}

.wpcf7-radio .wpcf7-list-item-label,
.wpcf7-checkbox .wpcf7-list-item-label {
	margin-left: 5px;
}

span.wpcf7-form-control-wrap.resume {
	position: relative;
	width: 100%;
	display: block;
	height: 100%;
	height: 60px;
}

span.wpcf7-form-control-wrap.resume input[type="file"] {
	opacity: 0;
	height: 100%;
	width: 100%;
	cursor: pointer;
	pointer-events: none;
}

.wpcf7 .selectric {
	background: #fff;
	box-shadow: 0px 8px 12px #001d0e29;
	border: 1px solid #c1c7c9;
}

.wpcf7 .selectric:focus {
	border: 4px solid #00843d;
}

.wpcf7 .selectric-open .selectric {
	background: #fff;
	box-shadow: 0px 8px 12px #001d0e29;
	border: 1px solid #c1c7c9;
}

.wpcf7 .selectric-push-bottom {
	margin-bottom: 20px;
}

.wpcf7 .selectric .button::after {
	border-top-color: #007c39;
}

.wpcf7-submit {
	border: 0;
	transition: 0.35s all;
}

.wpcf7-submit:hover {
	background: transparent
		linear-gradient(270deg, #00843d 0%, #004621 68%, #00421f 100%) 0% 0%
		no-repeat padding-box;
	color: #fff;
}

/* CSS trick to style file upload button  */
.uploadfilewrap {
	display: flex;
	position: relative;
	box-shadow: 0px 8px 12px #001d0e29;
}

.uploadfilewrap .resumetextfield {
	position: absolute;
	height: 100%;
	width: calc(100% - 66px);
	box-shadow: none;
	pointer-events: none;
}

.uploadfilewrap .resumetextfield::before {
	content: "Upload file";
	position: absolute;
	left: 0;
	cursor: pointer;
	height: 100%;
	color: #555a5c;
	font-size: 18px;
	line-height: 58px;
	padding-left: 20px;
	font-weight: 700;
}

.uploadfilewrap .resumetextfield.is-clicked::before {
	content: "";
}
/*
.uploadfilewrap #fileuploadfield {
    display:none;
}*/

.uploadfilewrap #uploadtextfield {
	height: 60px;
	height: 100%;
	box-shadow: none;
	pointer-events: none;
}

.uploadfilewrap #uploadbrowsebutton {
	background: #fff;
	border: 1px solid #c1c7c9;
	color: #00843d;
	position: relative;
	transition: box-shadow 0.2s;
}

.uploadfilewrap #uploadbrowsebutton:hover {
	/*border: 4px solid #00843D;*/
	box-shadow: inset 0px 0px 1px 4px #00843d;
}

/* Choices - Select field styling */

.choices {
	position: relative;
	overflow: hidden;
	margin-bottom: 24px;
	font-size: 16px;
}

.choices:focus {
	outline: none;
}

.choices:last-child {
	margin-bottom: 0;
}

.choices.is-open {
	overflow: initial;
}

.choices.is-disabled .choices__inner,
.choices.is-disabled .choices__input {
	background-color: #eaeaea;
	cursor: not-allowed;
	-webkit-user-select: none;
	-ms-user-select: none;
	-moz-user-select: none;
	user-select: none;
}

.choices.is-disabled .choices__item {
	cursor: not-allowed;
}

.choices [hidden] {
	display: none !important;
}

.choices[data-type*="select-one"] {
	cursor: pointer;
}

.choices[data-type*="select-one"] .choices__inner {
	padding-bottom: 7.5px;
}

.choices[data-type*="select-one"] .choices__input {
	display: block;
	width: 100%;
	padding: 10px;
	border-bottom: 1px solid #dddddd;
	background-color: #ffffff;
	margin: 0;
}

.choices[data-type*="select-one"] .choices__button {
	background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjEiIGhlaWdodD0iMjEiIHZpZXdCb3g9IjAgMCAyMSAyMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxwYXRoIGQ9Ik0yLjU5Mi4wNDRsMTguMzY0IDE4LjM2NC0yLjU0OCAyLjU0OEwuMDQ0IDIuNTkyeiIvPjxwYXRoIGQ9Ik0wIDE4LjM2NEwxOC4zNjQgMGwyLjU0OCAyLjU0OEwyLjU0OCAyMC45MTJ6Ii8+PC9nPjwvc3ZnPg==);
	padding: 0;
	background-size: 8px;
	position: absolute;
	top: 50%;
	right: 0;
	margin-top: -10px;
	margin-right: 25px;
	height: 20px;
	width: 20px;
	border-radius: 10em;
	opacity: 0.25;
}

.choices[data-type*="select-one"] .choices__button:hover,
.choices[data-type*="select-one"] .choices__button:focus {
	opacity: 1;
}

.choices[data-type*="select-one"] .choices__button:focus {
	-webkit-box-shadow: 0px 0px 0px 2px #00bcd4;
	box-shadow: 0px 0px 0px 2px #00bcd4;
}

.choices[data-type*="select-one"]
	.choices__item[data-value=""]
	.choices__button {
	display: none;
}

.choices[data-type*="select-one"]:after {
	content: "";
	height: 0;
	width: 0;
	border-style: solid;
	border-color: #333333 transparent transparent transparent;
	border-width: 5px;
	position: absolute;
	right: 11.5px;
	top: 50%;
	margin-top: -2.5px;
	pointer-events: none;
}

.choices[data-type*="select-one"].is-open:after {
	border-color: transparent transparent #333333 transparent;
	margin-top: -7.5px;
}

.choices[data-type*="select-one"][dir="rtl"]:after {
	left: 11.5px;
	right: auto;
}

.choices[data-type*="select-one"][dir="rtl"] .choices__button {
	right: auto;
	left: 0;
	margin-left: 25px;
	margin-right: 0;
}

.choices[data-type*="select-multiple"] .choices__inner,
.choices[data-type*="text"] .choices__inner {
	cursor: text;
}

.choices[data-type*="select-multiple"] .choices__button,
.choices[data-type*="text"] .choices__button {
	position: relative;
	display: inline-block;
	margin-top: 0;
	margin-right: -4px;
	margin-bottom: 0;
	margin-left: 8px;
	padding-left: 16px;
	border-left: 1px solid #008fa1;
	background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjEiIGhlaWdodD0iMjEiIHZpZXdCb3g9IjAgMCAyMSAyMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSIjRkZGIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxwYXRoIGQ9Ik0yLjU5Mi4wNDRsMTguMzY0IDE4LjM2NC0yLjU0OCAyLjU0OEwuMDQ0IDIuNTkyeiIvPjxwYXRoIGQ9Ik0wIDE4LjM2NEwxOC4zNjQgMGwyLjU0OCAyLjU0OEwyLjU0OCAyMC45MTJ6Ii8+PC9nPjwvc3ZnPg==);
	background-size: 8px;
	width: 8px;
	line-height: 1;
	opacity: 0.75;
	border-radius: 0;
}

.choices[data-type*="select-multiple"] .choices__button:hover,
.choices[data-type*="select-multiple"] .choices__button:focus,
.choices[data-type*="text"] .choices__button:hover,
.choices[data-type*="text"] .choices__button:focus {
	opacity: 1;
}

.choices__inner {
	display: inline-block;
	vertical-align: top;
	width: 100%;
	background-color: #f9f9f9;
	padding: 7.5px 7.5px 3.75px;
	border: 1px solid #dddddd;
	border-radius: 2.5px;
	font-size: 14px;
	min-height: 44px;
	overflow: hidden;
}

.is-focused .choices__inner,
.is-open .choices__inner {
	border-color: #b7b7b7;
}

.is-open .choices__inner {
	border-radius: 2.5px 2.5px 0 0;
}

.is-flipped.is-open .choices__inner {
	border-radius: 0 0 2.5px 2.5px;
}

.choices__list {
	margin: 0;
	padding-left: 0;
	list-style: none;
}

.choices__list--single {
	display: inline-block;
	padding: 4px 16px 4px 4px;
	width: 100%;
}

[dir="rtl"] .choices__list--single {
	padding-right: 4px;
	padding-left: 16px;
}

.choices__list--single .choices__item {
	width: 100%;
}

.choices__list--multiple {
	display: inline;
}

.choices__list--multiple .choices__item {
	display: inline-block;
	vertical-align: middle;
	border-radius: 20px;
	padding: 4px 10px;
	font-size: 12px;
	font-weight: 500;
	margin-right: 3.75px;
	margin-bottom: 3.75px;
	background-color: #00bcd4;
	border: 1px solid #00a5bb;
	color: #ffffff;
	word-break: break-all;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.choices__list--multiple .choices__item[data-deletable] {
	padding-right: 5px;
}

[dir="rtl"] .choices__list--multiple .choices__item {
	margin-right: 0;
	margin-left: 3.75px;
}

.choices__list--multiple .choices__item.is-highlighted {
	background-color: #00a5bb;
	border: 1px solid #008fa1;
}

.is-disabled .choices__list--multiple .choices__item {
	background-color: #aaaaaa;
	border: 1px solid #919191;
}

.choices__list--dropdown {
	visibility: hidden;
	z-index: 1;
	position: absolute;
	width: 100%;
	background-color: #ffffff;
	border: 1px solid #dddddd;
	top: 100%;
	margin-top: -1px;
	border-bottom-left-radius: 2.5px;
	border-bottom-right-radius: 2.5px;
	overflow: hidden;
	word-break: break-all;
	will-change: visibility;
}

.choices__list--dropdown.is-active {
	visibility: visible;
}

.is-open .choices__list--dropdown {
	border-color: #b7b7b7;
}

.is-flipped .choices__list--dropdown {
	top: auto;
	bottom: 100%;
	margin-top: 0;
	margin-bottom: -1px;
	border-radius: 0.25rem 0.25rem 0 0;
}

.choices__list--dropdown .choices__list {
	position: relative;
	max-height: 300px;
	overflow: auto;
	-webkit-overflow-scrolling: touch;
	will-change: scroll-position;
}

.choices__list--dropdown .choices__item {
	position: relative;
	padding: 10px;
	font-size: 14px;
}

[dir="rtl"] .choices__list--dropdown .choices__item {
	text-align: right;
}

.choices__list--dropdown .choices__item--selectable.is-highlighted {
	background-color: #f2f2f2;
}

.choices__list--dropdown .choices__item--selectable.is-highlighted:after {
	opacity: 0.5;
}

.choices__item {
	cursor: default;
}

.choices__item--selectable {
	cursor: pointer;
}

.choices__item--disabled {
	cursor: not-allowed;
	-webkit-user-select: none;
	-ms-user-select: none;
	-moz-user-select: none;
	user-select: none;
	opacity: 0.5;
}

.choices__heading {
	font-weight: 600;
	font-size: 12px;
	padding: 10px;
	border-bottom: 1px solid #f7f7f7;
	color: gray;
}

.choices__button {
	text-indent: -9999px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border: 0;
	background-color: transparent;
	background-repeat: no-repeat;
	background-position: center;
	cursor: pointer;
}

.choices__button:focus {
	outline: none;
}

.choices__input {
	display: inline-block;
	vertical-align: baseline;
	background-color: #f9f9f9;
	font-size: 14px;
	margin-bottom: 5px;
	border: 0;
	border-radius: 0;
	max-width: 100%;
	padding: 4px 0 4px 2px;
}

.choices__input:focus {
	outline: 0;
}

[dir="rtl"] .choices__input {
	padding-right: 2px;
	padding-left: 0;
}

.choices__placeholder {
	opacity: 0.5;
}

@media (min-width: 600px) {
	.choices__list--dropdown .choices__item--selectable {
		padding-right: 100px;
	}
	.choices__list--dropdown .choices__item--selectable:after {
		content: attr(data-select-text);
		font-size: 12px;
		opacity: 0;
		position: absolute;
		right: 10px;
		top: 50%;
		-webkit-transform: translateY(-50%);
		-ms-transform: translateY(-50%);
		transform: translateY(-50%);
	}
	[dir="rtl"] .choices__list--dropdown .choices__item--selectable {
		text-align: right;
		padding-left: 100px;
		padding-right: 10px;
	}
	[dir="rtl"] .choices__list--dropdown .choices__item--selectable:after {
		right: auto;
		left: 10px;
	}
}

body.blog .choices__inner,
body.archive .choices__inner {
	background: transparent
		linear-gradient(92deg, #00843d 0%, #004621 68%, #00421f 100%) 0% 0%
		no-repeat padding-box;
	font-size: 18px;
	line-height: 2;
	text-transform: uppercase;
	color: #fff;
	height: 60px;
}

body.blog .choices__placeholder,
body.archive .choices__placeholder {
	opacity: 1;
}

body.blog .choices[data-type*="select-one"]:after,
body.archive .choices[data-type*="select-one"]:after {
	content: " ";
	border-width: 8px;
	border-top-color: #fff;
	border-bottom: none;
}

body.blog .choices[data-type*="select-one"].is-open:after,
body.archive .choices[data-type*="select-one"].is-open:after {
	margin-top: -2px;
}

/* CF7 Validation (Replace if not using CF7) */

/* Individual field error messages */
.wpcf7-not-valid-tip {
	font-size: 13px;
	font-weight: 500;
	color: #a70303;
	line-height: 1em;
	padding: 0 0;
	display: inline-block;
	border: none;
	border-radius: 4px;
	background: transparent;
	position: relative;
	bottom: 10px;
	right: 0;
	float: right;
	margin-right: 0;
	text-transform: uppercase;
}

.wpcf7-not-valid-tip:after {
	display: inline-block;
	content: "";
	width: 30px;
	height: 30px;
	background: url(../img/icon-error.svg) 0 center no-repeat;
	position: absolute;
	top: -55px;
	right: 10px;
	background-size: 100%;
	background-repeat: no-repeat;
	background-position: center center;
}

/* Entire form error message */
.wpcf7-response-output {
	display: none;
	align-items: center;
	margin: 12px 0;
	padding-right: 15px;
	background: #c1c7c9;
	font-weight: 700;
	box-shadow: 0px 8px 12px #001d0e29;
}

.wpcf7-form.invalid .wpcf7-response-output,
.wpcf7-form.sent .wpcf7-response-output {
	display: flex;
	position: relative;
}

.wpcf7-response-output::before {
	display: inline-block;
	margin-right: 15px;
	background: #eff1f0;
	content: "";
	height: 65px;
	max-width: 80px;
	width: 100%;
}

.wpcf7-form.sent .wpcf7-response-output::before {
	/*content: url(../img/success.png);*/
	background: #eff1f0 url(../img/icon-checked.svg);
	background-size: 40%;
	background-repeat: no-repeat;
	background-position: center center;
}

.wpcf7-form.invalid .wpcf7-response-output::before {
	background: #eff1f0 url(../img/icon-error.svg);
	background-size: 40%;
	background-repeat: no-repeat;
	background-position: center center;
}

.wpcf7-response-output span {
	margin-right: 5px;
	color: #a70303;
}

/* Styling for fields that have errors */
select.wpcf7-not-valid,
textarea.wpcf7-not-valid,
input.wpcf7-not-valid,
.wpcf7-not-valid .choices {
}

/**
 * Breadcrumbs
 */

.breadcrumbs {
}

.breadcrumbs ul li {
	display: inline-block;
}

.breadcrumbs ul li + li {
	padding-left: 0.3rem;
}

.breadcrumbs ul li a {
	color: #fff;
	font-weight: 500;
}

.breadcrumbs .breadcrumb_last {
	font-weight: 700;
}

/**
 * Pagination
 */

.wp-pagenavi {
	margin-top: 50px;
}

.wp-pagenavi .pages {
	border: 0;
	margin-left: 0;
	padding-left: 0;
}

.wp-pagenavi span.current,
.wp-pagenavi .page,
.wp-pagenavi .nextpostslink,
.wp-pagenavi .previouspostslink {
	border: 1px solid #ddd;
	color: #001d0e;
	display: inline-block;
	padding: 6px 11px;
}

.wp-pagenavi span.current:hover,
.wp-pagenavi .page:hover,
.wp-pagenavi .nextpostslink:hover,
.wp-pagenavi .previouspostslink:hover {
	background-color: #00843d;
	border-color: #00843d;
	color: #fff;
}

.wp-pagenavi span.current {
	background-color: #00843d;
	border-color: #00843d;
	color: #fff;
}

@media (min-width: 1025px) {
	.wp-pagenavi {
		margin-top: 70px;
	}
}

/**
 * Sliders/Carousels
 * Slick Slider - http://kenwheeler.github.io/slick/
 */

/* General styling */

.slick-slider {
	position: relative;
	display: block;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-touch-callout: none;
	-khtml-user-select: none;
	-ms-touch-action: pan-y;
	touch-action: pan-y;
	-webkit-tap-highlight-color: transparent;
}

.slick-list {
	position: relative;
	display: block;
	overflow: hidden;
	margin: 0;
	padding: 0;
}

.slick-list:focus {
	outline: none;
}

.slick-list.dragging {
	cursor: pointer;
	cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
	-webkit-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}

.slick-track {
	position: relative;
	top: 0;
	left: 0;
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.slick-track:before,
.slick-track:after {
	display: table;
	content: "";
}

.slick-track:after {
	clear: both;
}

.slick-loading .slick-track {
	visibility: hidden;
}

.slick-slide {
	display: none;
	float: left;
	min-height: 1px;
}

[dir="rtl"] .slick-slide {
	float: right;
}

.slick-slide img {
	display: block;
}

.slick-slide.slick-loading img {
	display: none;
}

.slick-slide.dragging img {
	pointer-events: none;
}

.slick-initialized .slick-slide {
	display: block;
}

.slick-loading .slick-slide {
	visibility: hidden;
}

.slick-vertical .slick-slide {
	display: block;
	height: auto;
	border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
	display: none;
}

.slick-slide,
.slick-arrow,
.slick-dots button,
.slick-slide:focus * {
	outline: none !important;
}

/*.slick-initialized .slick-slide {
    float: none;
    display: inline-block;
    vertical-align: middle;
}
*/
/* Preload affect */

.slick-slider .slide {
	display: none;
}

.slick-slider .slide:first-child {
	display: block;
}

.slick-slider.slick-initialized .slide {
	display: block;
}

.js-slider-has-preloader {
	/* Add this class to your slider */
	min-height: 50px;
	position: relative;
}

.js-slider-has-preloader:before {
	content: url("../img/loading.gif"); /* Create and upload a loading gif to your image directory */
	position: absolute;
	top: 50%;
	left: 50%;
	width: 50px; /* Update width based on gif size */
	height: 50px; /* Update height based on gif size */
	-webkit-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	z-index: 2;
}

.js-slider-has-preloader-init:before {
	-webkit-transform: scale(0);
	-ms-transform: scale(0);
	transform: scale(0);
}

/* Slick Dots */

.slick-dots {
	padding: 0;
	margin: 0;
	list-style: none;
}

.slick-dots li {
	display: inline-block;
	cursor: pointer;
}

.slick-dots li:only-child {
	display: none;
}

.slick-dots li button {
	display: block;
	cursor: pointer;
	outline: none;
}

/* Slider Arrows */
.slick-arrow {
	width: 45px;
	height: 45px;
	border: none;
	border-radius: 50%;
	background: #fff;
	display: block !important;
	transform: none;
	padding: 0;
	text-align: center;
}

.slick-arrow i {
	color: #00843d;
	font-size: 16px;
	display: inline-block;
}

/* Custom styling per slider/carousel */

/**
 * Posts
 * Used on blog, category, archive and search results pages
 */

.post-item {
	border-top: 1px solid #ddd;
	padding-top: 30px;
	margin-top: 30px;
}

.post-item:first-of-type {
	border-top: 0;
	padding-top: 0;
	margin-top: 0;
}

.post-item__heading a {
	color: #001d0e;
	text-decoration: none;
}

.post-item .btn,
.post-item .btn-primary {
	margin-top: 30px;
}

.post-item__meta {
	font-size: 0.8em;
}

.post-item__meta .cat-links {
	border-left: 1px solid #c1c7c9;
	display: inline-block;
	padding-left: 0.2rem;
}

.post-item__meta .cat-links a {
	color: #00843d;
	transition: color 0.35s, background 0.35s;
}

.post-item__meta .cat-links a:hover {
	background: #001d0e;
	color: #fff;
}

@media (min-width: 1025px) {
	.post-item {
		padding-top: 50px;
		margin-top: 50px;
	}
}

/**
 * Tabs
 * In use on search.php template by default.
 * Use as base for any other tabs on the site.
 */

.tab {
	list-style-type: none !important;
	margin: 0;
	padding: 0;
	display: block;
	color: #00843d;
	font-weight: 500;
	text-transform: none;
}

.tab > a {
	display: block;
	padding: 10px 35px;
	text-decoration: none;
	background: #f8f8f8;
	border: 1px solid #ddd;
	border-bottom: none;
	border-radius: 1px 1px 0 0;
	color: inherit;
	font-weight: bold;
}

.tab-active > a {
	border-bottom: 1px solid #fff;
}

.tab-active > a,
.tab:hover > a,
.tab:focus > a {
	color: inherit;
	background: #fff;
	text-decoration: none;
}

.tab-content {
	padding: 20px;
	border: 0;
	display: none;
}

.tab-content::before {
	content: "";
	border: 1px solid #ddd;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: -1;
}

.accordion-tabs {
	position: relative;
}

.tab-active {
	display: block;
}

.tab.show {
	display: block !important;
}

@media (min-width: 1025px) {
	.tab-content {
		position: absolute;
		top: 53px;
		left: 0;
		width: 100%;
	}
	.tab {
		display: inline-block;
		font-size: 24px;
		line-height: 32px;
	}

	.tab.show {
		display: inline-block !important;
	}
}

/**
 * Social Share
 * Used in single.php by default
 * Make any additional customizations here https://sharingbuttons.io/
 */

.social-share-row {
	margin: 0;
	margin-bottom: 1rem;
	padding: 0 !important; /* get rid of default <ul> padding */
	list-style: none !important; /* get rid of list bullets */
}

.page-content .social-share-row li {
	padding-left: 0;
}

.social-share-row li::before {
	display: none;
}

.social-share-row__item {
	display: inline-block;
}

.resp-sharing-button__link,
.resp-sharing-button__icon {
	display: inline-block;
}

.resp-sharing-button__link {
	text-decoration: none;
	color: #fff;
	margin: 0.5em;
}

.social-share-row__item:first-child .resp-sharing-button__link {
	margin-left: 0;
}

.resp-sharing-button {
	border-radius: 5px;
	-webkit-transition: 25ms ease-out;
	-o-transition: 25ms ease-out;
	transition: 25ms ease-out;
	padding: 0.5em 0.75em;
	font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
}

.resp-sharing-button__icon svg {
	width: 1em;
	height: 1em;
	margin-right: 0.4em;
	vertical-align: top;
}

.resp-sharing-button--small svg {
	margin: 0;
	vertical-align: middle;
}

/* Non solid icons get a stroke */
.resp-sharing-button__icon {
	stroke: #fff;
	fill: none;
}

/* Solid icons get a fill */
.resp-sharing-button__icon--solid,
.resp-sharing-button__icon--solidcircle {
	fill: #fff;
	stroke: none;
}

.resp-sharing-button--linkedin {
	background-color: #0077b5;
	border-color: #0077b5;
}

.resp-sharing-button--linkedin:hover,
.resp-sharing-button--linkedin:active {
	background-color: #046293;
	border-color: #046293;
}

.resp-sharing-button--facebook {
	background-color: #3b5998;
	border-color: #3b5998;
}

.resp-sharing-button--facebook:hover,
.resp-sharing-button--facebook:active {
	background-color: #2d4373;
	border-color: #2d4373;
}

.resp-sharing-button--twitter {
	background-color: #55acee;
	border-color: #55acee;
}

.resp-sharing-button--twitter:hover,
.resp-sharing-button--twitter:active {
	background-color: #2795e9;
	border-color: #2795e9;
}

.resp-sharing-button--email {
	background-color: #777;
	border-color: #777;
}

.resp-sharing-button--email:hover,
.resp-sharing-button--email:active {
	background-color: #5e5e5e;
	border-color: #5e5e5e;
}

/* --------------------------------------------------*\
    UI
    UI peices are site specific non generic styles.
    eg: header, footer, sidebar, page specific styles
\* -----------------------------------------------------*/

/**
 * Page-head
 */

.page-header {
	position: relative;
	background-color: #001d0e;
	transition: all 0.35s;
}

.middle-header {
	background-color: #001d0e;
	position: relative;
	z-index: 999;
}

.right-header {
	display: none;
	position: fixed;
	bottom: 50px;
	left: 0;
	width: 100%;
	max-height: calc(100% - 50px);
	overflow: auto;
	scroll-behavior: smooth;
	z-index: 1000;
}

.right-header .nav + .nav {
	margin-top: -1px;
}

.logo {
	float: left;
}

.logo img {
	width: 125px;
}

.logo a {
	display: block;
}

.search-open {
	float: right;
	width: 50px;
	height: 53px;
	background-color: #62746b;
}

.search-open i {
	display: block;
	width: 100%;
	height: 100%;
	color: #fff;
	text-align: center;
	line-height: 53px;
	font-size: 19px;
}

.search-open.search-close i:before {
	content: "X";
	font-family: "Montserrat";
}

.search-div {
	background-color: #62746b;
	padding-top: 10px;
	padding-bottom: 10px;
	display: none;
	position: absolute;
	width: 100%;
	z-index: 998;
}

.header-search {
	display: inline-flex;
	width: 100%;
}

.header-search input,
.header-search button {
	height: 26px;
	border: none;
	vertical-align: top;
	background: #fff;
}

.header-search button {
	margin-right: -5px;
}

.header-search button i {
	color: #000;
	font-size: 16px;
	vertical-align: middle;
}

.header-search input {
	font-size: 14px;
	color: #555a5c;
	padding-left: 10px;
	flex: 1 1 auto;
	border: none;
}

.header-search input:focus {
	border: none;
	padding-left: 10px;
}

.header-search ::placeholder {
	/* Chrome, Firefox, Opera, Safari 10.1+ */
	color: #555a5c;
	opacity: 1; /* Firefox */
}

.header-search :focus::placeholder {
	/* Chrome, Firefox, Opera, Safari 10.1+ */
	opacity: 0.3;
}

.fix-mobile {
	position: fixed;
	width: 100%;
	bottom: 0;
	height: 50px;
	background-color: #001d0e;
	z-index: 999;
}

.toggle-menu {
	float: right;
	height: 50px;
	color: #fff;
	font-size: 13px;
	font-weight: 700;
	width: 50px;
	text-align: center;
	margin-right: 16px;
	padding-top: 7px;
	text-transform: uppercase;
}

.toggle-menu-icon {
	position: relative;
}

.toggle-menu-icon::after {
	content: "\e911";
	color: #fff;
	font-family: "icomoon";
	font-size: 1.8rem;
	display: block;
	transition: font-size 0.35s;
}

.js-toggled .toggle-menu-icon::after {
	content: "\e910";
	font-size: 1.4rem;
}

@media (min-width: 768px) {
	.page-header {
		z-index: 2000;
		position: relative;
		display: block;
	}

	.right-header {
		bottom: auto;
		top: 53px;
		max-height: calc(100% - 53px);
	}
}

@media (min-width: 1200px) {
	.page-header--sticky {
		position: -webkit-sticky;
		position: sticky;
		top: 0;
	}

	.page-header {
		position: absolute;
		height: 110px;
		top: 0;
		z-index: 999;
		width: 100%;
	}

	.page-header.js-scrolled {
		position: fixed;
		-webkit-transition: 0.6s all ease;
		transition: 0.6s all ease;
		top: 0;
		z-index: 4;
		width: 100%;
	}

	.hideheader {
		top: -156px;
	}

	.page-header:before,
	.page-header:after {
		content: " ";
		position: absolute;
		width: 50%;
		height: 100%;
		top: 0;
	}

	.page-header:before {
		left: 0;
		background-color: #001d0e;
	}

	.page-header:after {
		right: 0;
		background-color: #00421f;
	}

	.middle-header {
		min-height: 110px;
	}

	.logo {
		padding-top: 10px;
	}

	.logo img {
		width: 190px;
	}

	.right-header {
		float: right;
		padding-right: 0;
		padding-top: 40px;
		display: block;
		position: absolute;
		top: auto;
		width: auto;
		left: calc(37% - 250px);
		background-color: transparent;
		max-height: none;
		overflow: initial;
	}
}

@media (min-width: 1340px) {
	.right-header {
		float: right;
		padding-right: 20px;
		padding-top: 20px;
		display: block;
		position: relative;
		top: auto;
		width: auto;
		background-color: transparent;
		max-height: none;
		overflow: initial;
		left: unset;
	}
}
/* Fix sticky header position for when admin bar visible
   TODO: Uncomment if design has sticky header */

.admin-bar .page-header {
	top: 32px;
}

.admin-bar .page-header,
.admin-bar .page-header.js-scrolled {
	top: 32px;
}

.admin-bar .page-header.hideheader {
	top: -150px;
}

@media screen and (max-width: 782px) {
	.admin-bar .page-header {
		top: 46px;
	}
	.admin-bar .page-header,
	.admin-bar .page-header.js-scrolled {
		top: 0;
	}
}

@media (-webkit-min-device-pixel-ratio: 2) and (-webkit-min-device-pixel-ratio: 2) and (max-width: 1024px),
	(-webkit-min-device-pixel-ratio: 2) and (-o-min-device-pixel-ratio: 2/1) and (max-width: 1024px),
	(-webkit-min-device-pixel-ratio: 2) and (min-resolution: 192dpi) and (max-width: 1024px) {
	/* TODO: Add Retina-specific logo here - see instructions https://webpagefx.mangoapps.com/mlink/wiki/NjA3Nzg */
	/* .logo img { display: none; } */

	.logo .site-logo {
		background: url("https://greenscapeus.webpagefxstage.com/wp-content/uploads/2021/08/Greenscape_Logo-highres.png");
		background-size: 150px 65px;
		background-repeat: no-repeat;
		height: 63px;
		width: 215px;
	}
}

@media (min-width: 1025px) {
	.admin-bar .page-header.hideheader.js-scrolled {
		top: 32px;
	}

	.sticky-sidebar {
		position: -webkit-sticky;
		position: sticky;
		top: 125px; /* TODO: update to match how far down page when sidebar should stick */
	}

	main.page-body {
		padding-top: 110px;
	}
}

/**
 * Navigation
 * - Includes starter Ubermenu mega menu styling
 */

/* General Styling */
.nav {
	background-color: #62746b;
}

.nav ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.nav li {
	cursor: pointer;
	position: relative;
	padding-left: 22px;
	padding-right: 22px;
	padding-top: 10px;
	padding-bottom: 10px;
	display: block;
}

.nav li:before,
.nav li:after {
	display: none; /* hide any custom bullet styling */
}

.nav a {
	display: block;
	text-decoration: none;
	color: #fff;
	font-size: 16px;
	text-transform: uppercase;
	font-weight: 600;
}

/* 1st Level */

/* Sub Menus */

.nav .sub-menu {
	display: none;
}

.nav .sub-menu li {
	padding: 0;
}

.nav .sub-menu li.current-menu-item a {
	background: #fff;
	color: #00843d;
	font-weight: 600;
}

.nav .sub-menu li:last-child {
	padding-bottom: 0;
}

.nav .sub-menu li a {
	font-size: 16px;
	font-weight: normal;
	padding: 10px 22px;
	position: relative;
	text-transform: none;
}

.nav .sub-menu li a::after {
	content: "\e90c";
	color: #00843d;
	font-family: "icomoon";
	position: absolute;
	top: 50%;
	right: 10px;
	transform: translateY(-50%);
	opacity: 0;
	transition: opacity 0.35s;
}

/* 3rd Level Sub Menus */

.nav .sub-menu .sub-menu {
	top: 0;
	left: 100%;
}

.sticky-bar {
	position: fixed;
	bottom: 0;
	left: 0;
	background: #fff;
	width: 100%;
	z-index: 9;
	border-top: 1px solid #ccc;
}

.sub-menu-toggle {
	position: absolute;
	width: 44px;
	height: 44px;
	right: 0;
	top: 0;
	color: #fff;
	font-size: 16px;
	line-height: 44px;
	text-align: center;
}

.sub-menu-toggle:before {
	font-family: "icomoon" !important;
	speak: never;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	content: "\e90a";
}

.sub-menu-toggle.js-toggled:before {
	content: "\e907";
}

@media only screen and (min-width: 1200px) {
	.sticky-bar {
		display: none;
	}

	.middle-header .toggle-menu {
		margin-right: 0;
		margin-left: 20px;
		height: 53px;
		text-transform: uppercase;
	}

	.middle-header .toggle-menu .toggle-menu-icon {
		height: 22px;
	}
}

@media only screen and (min-width: 1200px) {
	.nav {
		background: none;
	}

	.nav ul {
		text-align: right;
	}

	.nav li {
		display: inline-block;
	}

	.nav-primary li {
		padding-left: 15px;
		padding-right: 15px;
		padding-bottom: 24px;
		padding-top: 0;
	}

	.nav-primary li:first-child {
		padding-left: 0;
	}

	.nav-primary li:last-child {
		padding-right: 0;
	}

	.nav-primary a {
		font-weight: 700;
		text-transform: uppercase;
	}

	.nav-secondary {
		padding-bottom: 16px;
		text-align: right;
	}

	.nav-secondary ul {
		display: inline-block;
		padding-right: 40px;
		vertical-align: top;
	}

	.nav-secondary li {
		padding-left: 14px;
		padding-right: 14px;
		padding-top: 0;
		padding-bottom: 0;
	}

	.nav-primary a {
		font-size: 14px;
	}

	.nav-secondary ul {
		padding-right: 5px;
	}

	.nav-secondary form {
		max-width: 200px;
		vertical-align: top;
	}

	.phone-button {
		min-width: 140px;
	}
	
	.nav-secondary li:first-child {
		padding-left: 0;
	}

	.nav-secondary li:last-child {
		padding-right: 0;
	}

	.nav-secondary a {
		font-size: 16px;
		font-weight: 500;
		text-transform: none;
	}

	/* Submenu */
	.nav .sub-menu {
		display: none;
		position: absolute;
		top: 100%;
		left: 50%;
		min-width: 280px; /* adjust to match width of submenu prototype */
		background: #fff;
		border-top: 5px solid #00843d;
		box-shadow: 0px 4px 12px #001d0eb4;
		padding-top: 39px;
		padding-bottom: 34px;
		text-align: left;
		transform: translateX(-50%);
	}

	.nav li:hover > .sub-menu {
		display: block;
	}

	.nav li.menu-item-has-children:after {
		content: "";
		background: #00843d 0% 0% no-repeat padding-box;
		position: absolute;
		top: calc(100% + 5px);
		left: 0;
		right: 0;
		display: none;
		width: 2px;
		margin-left: auto;
		margin-right: auto;
		border-top: 10px solid #00843d;
		border-right: 11px solid #eff1f0;
		border-left: 11px solid #eff1f0;
	}

	.nav li.menu-item-has-children:hover:after {
		display: block;
	}

	.nav .sub-menu li {
		display: block;
		font-size: 16px;
		line-height: 24px;
		padding-top: 6px;
		padding-bottom: 6px;
	}

	.nav .sub-menu li a {
		color: #555a5c;
		padding: 4px 25px;
		text-transform: none;
	}

	.nav .sub-menu li a:hover {
		box-shadow: 0px 4px 12px rgba(0, 29, 14, 0.16);
	}

	.nav .sub-menu li.current-menu-item a {
		background: transparent;
	}

	.nav .sub-menu li a:hover::after {
		opacity: 1;
	}
}

@media only screen and (min-width: 1350px) {
	.nav-primary li {
		padding-left: 8px;
		padding-right: 8px;
	}

	.logo {
		padding-top: 0;
	}

	.logo img {
		width: 230px;
	}
}

@media only screen and (min-width: 1440px) {
	.nav-primary li {
		padding-left: 15px;
		padding-right: 15px;
	}

	.logo {
		padding-top: 10px;
	}

	.right-header {
		padding-right: 25px;
	}

	.nav-primary a {
		font-size: 16px;
	}

	.nav-secondary form {
		max-width: 268px;
	}

	.nav-secondary ul {
		padding-right: 40px;
	}

	.phone-button {
		min-width: 210px;
	}

	.phone-button a {
		font-size: 16px;
	}
}

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

	.logo img {
		width: 235px;
	}
}

/* controls sticky bar menu icon and overlay on mobile */
.sticky-bar .menu-is-active .fa-bars:before {
	content: "X"; /* TODO: change this to be an icon from the icon font on the site */
}

body:after {
	content: "";
	position: fixed;
	top: 0;
	left: 0;
	display: none;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.25);
	z-index: -1000;
}

body.menu-is-active:after {
	z-index: 1000;
	display: block;
}

.is-lock {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

@media (max-width: 1024px) {
	.sticky-bar {
		z-index: 2000 !important;
	}
}

/* Miscellanous element in the header */
.phone-button {
	float: right;
	height: 40px;
	padding-left: 20px;
	display: flex;
	align-items: center;
	min-width: none;
	position: relative;
	background: transparent
		linear-gradient(90deg, #00843d 0%, #004621 71%, #00421f 100%) 0% 0%
		no-repeat padding-box;
	margin-right: 25px;
	margin-top: 7px;
}

.phone-button a {
	color: #fff;
	font-weight: 700;
	font-size: 15px;
	text-transform: uppercase;
}

.phone-button a i {
	font-size: 14px;
	vertical-align: middle;
	margin-right: 5px;
}

.contact-button {
    background: #00843d !important;
    border-right: 1px solid rgba(255,255,255,0.3);
    padding: 0 15px;
    float: right;
    height: 110px;
    background: none;
    margin-right: 0;
    margin-top: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.contact-button a {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
}

.contact-button i {
    margin-left: 5px;
}

.fix-mobile .phone-button {
	height: 50px;
	min-width: 160px;
	float: left;
	margin: 0;
}

.fix-mobile .phone-button:before {
	display: none;
}

.fix-mobile .phone-button a {
	font-size: 14px;
}

.fix-mobile .phone-button a i {
	font-size: 13px;
	margin-right: 5px;
}

@media (max-width: 1199px) {
	.phone-button {
		padding-right: 15px;
		min-width: auto;
	}
}

@media (min-width: 1200px) {
	.phone-button {
		height: 110px;
		background: none;
		margin-right: 0;
		margin-top: 0;
	}

	.phone-button:before {
		content: "";
		position: absolute;
		height: 100%;
		top: 0;
		left: 0;
		background: transparent
			linear-gradient(92deg, #00843d 0%, #004621 95%, #00421f 100%) 0% 0%
			no-repeat padding-box;
		z-index: -1;
		width: calc(100% + 22px);
	}

	.phone-button a {
		font-size: 14px;
	}

	.phone-button a i {
		font-size: 16px;
	}
}

@media (min-width: 1440px) {
	.phone-button:before {
		width: calc((100vw - 1346px) / 2 + 210px);
	}
	
	.contact-button a,
	.phone-button a  {
		font-size: 16px;
	}
}

/**
 * Masthead
 */

.masthead {
	color: #fff;
	padding-bottom: 10px;
	padding-top: 70px;
	position: relative;
	text-align: center; /* Masthead text centered to align with mobile text centering. This shouldn't affect desktop view. */
}

.masthead::before {
	content: "";
	background: #001a0d;
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: 1;
	opacity: 0.5;
}

.masthead .container {
	position: relative;
	z-index: 2;
}

.masthead h1,
.masthead .h1 {
	color: #fff;
	margin-bottom: 5px;
}

.masthead-image {
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	object-fit: cover;
}

@media (min-width: 768px) {
	.masthead::before {
		background: linear-gradient(
			90deg,
			#001d0e 0%,
			rgba(2, 31, 16, 0.98) 49.26%,
			rgba(55, 78, 66, 0.35) 79.92%,
			rgba(84, 104, 94, 0) 100%
		);
	}
}

@media (min-width: 1025px) {
	.masthead {
		padding-bottom: 60px;
		padding-top: 140px;
		text-align: unset;
	}
}

/**
 * Sidebar
 */

.widget + .widget {
	margin-top: 1.5rem;
}

aside button[type="submit"] {
	border: 0;
	background: transparent
		linear-gradient(92deg, #00843d 0%, #004621 68%, #00421f 100%) 0% 0%
		no-repeat padding-box;
	color: #fff;
	font-weight: 700;
	padding: 15px 40px;
	position: relative;
	transition: background 0.35s;
}

aside button[type="submit"]:hover {
	color: #00843d;
	box-shadow: 0px 3px 12px #00843d57;
	background: #f7fffb;
}

aside li::before {
	display: none;
}

.widget .selectric {
	background: #001d0e;
	background: transparent
		linear-gradient(92deg, #00843d 0%, #004621 68%, #00421f 100%) 0% 0%
		no-repeat padding-box;
}

.widget .selectric-open .selectric {
	background: #001d0e;
	background: transparent
		linear-gradient(92deg, #00843d 0%, #004621 68%, #00421f 100%) 0% 0%
		no-repeat padding-box;
}

.widget .selectric .label {
	color: #fff;
}

.widget .selectric-hover .selectric .button:after {
	border-top-color: #fff;
}

.widget-popular-posts ul li a {
	color: #001d0e;
}

.widget-popular-posts ul li a:hover {
	color: #00843d;
}

/* Blog Sidebar */

.blog .page-sidebar .widget {
	margin-bottom: 50px;
}

.blog .page-sidebar .widget > ul li,
.blog-single .page-sidebar .widget > ul li {
	/* set up bullets as a :before or icon element, not as a background image */
	margin-bottom: 10px;
	padding-left: 35px;
	position: relative;
}

.blog .page-sidebar .widget > ul li::before,
.blog-single .page-sidebar .widget > ul li::before {
	content: "";
	background-image: url("../img/watermark-leaf-green.svg");
	background-repeat: no-repeat;
	background-size: contain;
	height: 17px;
	width: 22px;
	position: absolute;
	left: 0;
	top: 3px;
	display: block;
}

/**
 * Page-footer
 */

.page-footer {
	background-color: #eaebeb;
	padding-top: 30px;
	padding-bottom: 32px;
}

.footer-column {
	padding-bottom: 30px;
	text-align: center;
}

.footer-top-content .footer-column:last-child {
	padding-bottom: 0;
}

.footer-column h5 {
	text-align: center;
	margin-top: 0;
	margin-bottom: 20px;
}

.footer-logo {
	text-align: center;
	margin-bottom: 15px;
}

.footer-logo a {
	display: block;
	max-width: 163px;
	width: 100%;
}

.footer-logo img {
	height: auto;
}

.footer-contact {
	margin-bottom: 30px;
}

.footer-contact a {
	color: #128d4d;
	font-weight: 700;
	font-size: 14px;
	line-height: 26px;
	display: inline-block;
	transition: color 0.35s;
}

.footer-contact a:hover {
	color: #00843d;
}

.footer-contact a i {
	font-size: 15px;
	vertical-align: middle;
	margin-right: 10px;
}

.footer-column ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-column ul li {
	line-height: 26px;
	margin-bottom: 12px;
	padding-left: 0;
}

.footer-column ul li:before {
	display: none;
}

.footer-column ul li a {
	font-weight: 600;
	font-size: 14px;
	color: #555a5c;
}

.footer-column ul li a {
	transition: color 0.35s;
}

.footer-column ul li a:hover {
	color: #00843d;
}

.social-media ul {
	overflow: initial;
}

.social-media ul li {
	display: inline-block;
	margin-bottom: 0;
	vertical-align: middle;
	padding-left: 10px;
	padding-right: 10px;
}

.social-media ul li a {
	color: #00843d;
	display: block;
	font-size: 23px;
	font-weight: 500;
	transition: transform 0.35s;
	transform: translateY(0px);
}

.social-media ul li a:hover {
	transform: translateY(-5px);
}

.back-to-top {
	display: block;
	font-size: 13px;
	font-weight: 700;
	color: #00843d;
}

.back-to-top span {
	display: block;
}

.back-to-top:before {
	content: " ";
	display: inline-block;
	border-bottom: 10px solid #00843d;
	border-right: 10px solid transparent;
	border-left: 10px solid transparent;
	transition: transform 0.35s;
	transform: translateY(0px);
}

.back-to-top:hover::before {
	transform: translateY(-10px);
}

.footer-bottom {
	background: #fff;
	padding-top: 17px;
	padding-bottom: 17px;
	font-size: 12px;
	line-height: 1;
	color: #555a5c;
}

.footer-bottom ul {
	list-style: none;
	padding: 0;
	margin: 0;
	text-align: center;
}

.footer-bottom ul li {
	display: inline-block;
	margin-bottom: 0;
	padding-left: 8px;
	padding-right: 8px;
	border-right: 1px solid #555a5c;
	line-height: 1;
}

.footer-bottom ul li:before {
	display: none;
}

.footer-bottom ul li:first-child {
	padding-left: 0;
}

.footer-bottom ul li:last-child {
	padding-right: 0;
	border-right: none;
}

.footer-bottom ul li a {
	line-height: 1;
	color: #555a5c;
	display: inline-block;
	transition: 0.35s all;
}

.footer-bottom ul li a:hover {
	color: #00843d;
	text-shadow: 0px 1px #00843d;
}

.footer-secondary-menu {
	margin-bottom: 10px;
}

.footer-bottom .copyright {
	text-align: center;
}

@media (min-width: 768px) {
	.page-footer {
		background-color: #e6e8e7;
		padding-top: 45px;
	}

	.footer-top-content {
		display: flex;
	}

	.footer-column {
		text-align: left;
		padding-bottom: 0;
		flex: 1 1 auto;
	}

	.footer-column h5 {
		text-align: left;
		margin-bottom: 15px;
	}

	.footer-column ul li {
		font-size: 14px;
	}

	.footer-contact {
		margin-bottom: 0;
	}

	.footer-contact a {
		font-weight: 800;
		color: #555a5c;
	}

	.footer-logo {
		text-align: left;
	}

	.social-media ul li {
		padding-left: 6px;
		padding-right: 6px;
	}

	.social-media ul li:first-child {
		padding-left: 0;
	}

	.social-media ul li:last-child {
		padding-right: 0;
	}

	.footer-bottom {
		padding-top: 9px;
		padding-bottom: 9px;
	}

	.footer-secondary-menu {
		margin-bottom: 0;
	}

	.back-top {
		padding-top: 35px;
		text-align: center;
	}

	.back-to-top {
		font-size: 16px;
		font-weight: 700;
		text-transform: uppercase;
	}

	.back-to-top:before {
		margin-bottom: 10px;
	}
}

@media (min-width: 1025px) {
	.page-footer {
		padding-top: 116px;
		padding-bottom: 88px;
	}

	.footer-logo {
		text-align: left;
	}

	.footer-logo img {
		max-width: 307px;
	}

	.footer-contact a {
		font-size: 20px;
	}

	.footer-contact a i {
		font-size: 24px;
	}

	.footer-column-wrapper {
		width: 257px;
		margin-left: auto;
		margin-right: auto;
	}

	.footer-quick-link .footer-column-wrapper {
		width: 215px;
	}

	.footer-column ul li {
		margin-bottom: 15px;
	}

	.footer-column ul li a {
		font-size: 18px;
	}

	.social-media ul li {
		padding-left: 7px;
		padding-right: 7px;
	}

	.social-media ul li a {
		font-size: 36px;
		line-height: 36px;
	}

	.back-top {
		padding-top: 30px;
	}

	.back-to-top {
		font-size: 18px;
	}

	.back-to-top:before {
		border-bottom-width: 16px;
		border-right-width: 16px;
		border-left-width: 16px;
		margin-bottom: 14px;
	}

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

/* Modern IPhone Fixes */
@media screen and (width: 375px) and (height: 813px) {
	.fixed-footer {
		/* ^ TODO: change classname to match mobile fixed footer class */

		/* prevents 'home indicator' overlap */
		padding-bottom: 34px;

		/* prevents content from being cut off in screen rounded corners */
		margin-left: 16px;
		margin-right: 16px;
	}
}

/**
 * Print CSS
 */

@media print {
	/* Reset*/
	*,
	*:before,
	*:after {
		background: transparent !important;
		color: #000 !important;
		-webkit-box-shadow: none !important;
		box-shadow: none !important;
		filter: none !important;
		-webkit-filter: none !important;
		text-shadow: none !important;
	}

	h2,
	h3 {
		/* Avoid a paragraph being detached from the heading immediately preceding it */
		page-break-after: avoid;
	}

	figure,
	table {
		/* Avoid breaking figure or table into 2 pages */
		-webkit-column-break-inside: avoid;
		-moz-column-break-inside: avoid;
		break-inside: avoid;
		page-break-inside: avoid;
	}

	p {
		/* Prevent single line at the end of a page and a single line at the top the next page */
		orphans: 2;
		widows: 2;
	}

	/* Grid Styling */

	.container {
		width: auto;
	}

	.col-sm-1,
	.col-sm-2,
	.col-sm-3,
	.col-sm-4,
	.col-sm-5,
	.col-sm-6,
	.col-sm-7,
	.col-sm-8,
	.col-sm-9,
	.col-sm-10,
	.col-sm-11,
	.col-sm-12 {
		float: left;
	}

	.col-sm-12 {
		width: 100%;
	}
	.col-sm-11 {
		width: 91.66666666666666%;
	}
	.col-sm-10 {
		width: 83.33333333333334%;
	}
	.col-sm-9 {
		width: 75%;
	}
	.col-sm-8 {
		width: 66.66666666666666%;
	}
	.col-sm-7 {
		width: 58.333333333333336%;
	}
	.col-sm-6 {
		width: 50%;
	}
	.col-sm-5 {
		width: 41.66666666666667%;
	}
	.col-sm-4 {
		width: 33.33333333333333%;
	}
	.col-sm-3 {
		width: 25%;
	}
	.col-sm-2 {
		width: 16.666666666666664%;
	}
	.col-sm-1 {
		width: 8.333333333333332%;
	}

	/* Slick Slider - remove if not using slick slider */

	.slick-slider .slick-arrow,
	.slick-slider .slick-dots {
		display: none !important; /* we usually don't need to show slider navigation for print */
	}

	/* For sliders you want to display full width for print.
	   Update ".slick-slider" with your specific slider names. */
	.slick-slider,
	.slick-sliderg .slick-list,
	.slick-slider .slick-track,
	.slick-slider .slick-slide {
		width: 100% !important;
		height: auto !important;
	}

	/* For sliders where you only want to show the 1st image of that slider.
	   Update ".slick-slider" with your specific slider names. */
	.slick-slider .slick-slide {
		display: none !important;
	}
	.slick-slider .slick-slide.slick-active {
		display: block !important;
	}

	/* Show Only Active Thumbnails */
	.slick-slider .slick-cloned {
		display: none;
	}

	/* Reset adaptiveHeight */
	.slick-list {
		height: auto !important;
	}

	/* Remove Scrollbars */
	.slick-track {
		width: auto !important;
		height: auto !important;
		-webkit-transform: none !important;
		-ms-transform: none !important;
		transform: none !important;
	}

	.slick-track.slick-slide {
		width: auto !important;
	}
}

@media (min-width: 480px) {
	.promotions-bar__text {
		font-size: 14px;
	}
}

@media (min-width: 768px) {
	.promotions-bar {
		padding: 5px 25px;
	}

	.promotions-bar__text {
		padding: 7px 20px;
		font-size: 16px;
	}

	.promotions-bar__text {
		width: 100%;
	}
}

/*------------------------------------*\
    Front Page Elements
\*------------------------------------*/
/* Slider */
#homepage-slider {
	position: relative;
}

.leaves-slider {
	position: absolute;
	right: 0;
	bottom: 120px;
	z-index: 500;
}

.homepage-slider {
	position: relative;
	display: flex;
	justify-content: center;
}

.homepage-slider .slider-image {
	position: relative;
	height: 0;
	padding-bottom: 55%;
}

.homepage-slider .slider-image img {
	position: absolute;
	height: 100%;
	width: 100%;
	object-fit: cover;
	top: 0;
	left: 0;
	z-index: 1;
}

.homepage-slider .slider-image:after {
	content: "";
	height: 60px;
	width: 100%;
	bottom: 0;
	position: absolute;
	z-index: 2;
	background: transparent linear-gradient(0deg, #001d0e 0%, #54685e00 100%) 0%
		0% no-repeat padding-box;
}

.homepage-slider .slider-image .slider-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 3;
	background: url(../img/slider-image-overlay.svg) no-repeat;
	background-position: top left;
	background-size: 100% auto;
}

.homepage-slider .slider-content {
	background: transparent
		linear-gradient(180deg, #00843d 0%, #004621 88%, #00421f 100%) 0% 0%
		no-repeat padding-box;
	color: #fff;
	padding-top: 30px;
	padding-bottom: 30px;
	padding-left: 22px;
	padding-right: 22px;
}

.homepage-slider .slider-content h3 {
	color: #fff;
	margin-top: 0;
	margin-bottom: 10px;
	font-size: 15px;
	line-height: 20px;
	text-align: center;
	font-weight: 500;
}

.homepage-slider .slider-content h2 {
	color: #fff;
	font-size: 18px;
	line-height: 24px;
	text-align: center;
	font-weight: 700;
	margin-top: 0;
	margin-bottom: 20px;
}

.homepage-slider .slider-content [class*="btn"] {
	width: 100%;
}

.homepage-slider .slick-arrow {
	z-index: 1;
}

.homepage-slider .slider-content .btn-secondary {
	background: transparent;
	display: block;
	color: #fff;
}

.homepage-slider .slider-content .btn-secondary:hover {
	background: #fff;
	color: #00843d;
}

.homepage-slider--mobile .slider-content .btn-secondary {
	background: transparent;
	display: block;
	color: #fff;
}

.homepage-slider--mobile .slider-content .btn-secondary:hover {
	background: #fff;
	color: #00843d;
}

.homepage-slider--mobile .slider-item {
	position: relative;
}

.homepage-slider--mobile .slider-image::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 3;
	background: url(../img/slider-image-overlay.svg) no-repeat;
	background-position: top left;
	background-size: 100% auto;
}

.homepage-slider--mobile .slider-image {
	position: relative;
	height: 0;
	padding-bottom: 55%;
}

.homepage-slider--mobile .slider-image h2 {
	color: #fff;
	font-size: 18px;
	line-height: 24px;
	text-align: center;
	font-weight: 700;
	margin: 0;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 4;
}

.homepage-slider--mobile .slider-image img {
	position: absolute;
	height: 100%;
	width: 100%;
	object-fit: cover;
	top: 0;
	left: 0;
	z-index: 1;
}

.homepage-slider--mobile .slider-content {
	background: transparent
		linear-gradient(180deg, #00843d 0%, #004621 88%, #00421f 100%) 0% 0%
		no-repeat padding-box;
	color: #fff;
	padding-top: 30px;
	padding-bottom: 30px;
	padding-left: 22px;
	padding-right: 22px;
}

@media (min-width: 768px) {
	.homepage-slider .slider-item {
		position: relative;
	}

	.homepage-slider .slider-image {
		padding-bottom: 66%;
	}

	.homepage-slider .slider-image:before {
	}

	.homepage-slider .slider-image:after {
		height: 144px;
	}

	.homepage-slider .slider-content {
		background: none;
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		z-index: 5;
		padding-right: 100px;
		padding-left: 100px;
		padding-top: 110px;
	}

	.homepage-slider .slider-content [class*="btn"] {
		width: 280px;
		position: absolute;
		bottom: 30px;
		left: 50%;
		margin-left: -140px;
	}

	.homepage-slider .slider-content h3 {
		font-size: 18px;
		line-height: 22px;
	}

	.homepage-slider .slider-content h2 {
		font-size: 35px;
		line-height: 41px;
	}
}

@media (min-width: 1024px) {
	.homepage-slider .slider-content {
		padding-right: 50px;
		padding-left: 50px;
		display: none;
	}

	.homepage-slider .slick-active .slider-content {
		display: block;
	}

	.homepage-slider .slider-content [class*="btn"] {
		width: 420px;
		bottom: 48px;
		left: 50%;
		margin-left: -210px;
	}

	.homepage-slider .slider-image:after {
		height: 247px;
	}

	.homepage-slider .slider-content h3 {
		font-size: 28px;
		line-height: 34px;
		margin-bottom: 0;
	}

	.homepage-slider .slider-content h2 {
		font-size: 54px;
		line-height: 60px;
	}

	.homepage-slider .slider-content .btn-secondary {
		background: #fff;
		color: #00843d;
	}

	.homepage-slider .slider-content .btn-secondary:hover {
		border-color: #555a5c;
		border-color: #00843d;
		box-shadow: 0px 3px 12px #00843d57;
	}

	.homepage-slider .slick-arrow {
		position: absolute;
		border: none;
		width: 63px;
		height: 63px;
		border-radius: 50%;
		background: rgba(255, 255, 255, 0.82);
		color: #00843d;
		line-height: 63px;
		text-align: center;
		top: 50%;
		margin-top: -31px;
		font-size: 23px;
	}

	.homepage-slider .slick-arrow i {
		line-height: 61px;
		font-size: 23px;
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
	}

	.homepage-slider .slick-prev {
		left: 20px;
	}

	.homepage-slider .slick-next {
		right: 20px;
	}
}

@media (min-width: 1366px) {
	.homepage-slider .slider-item {
	}

	.homepage-slider .slider-image {
		height: 756px;
		padding-bottom: 0;
	}

	.homepage-slider .slider-image img {
		height: 756px;
		width: 1324px;
		position: relative;
	}

	.homepage-slider .slick-prev {
		left: calc((100vw - 1300px) / 2);
	}

	.homepage-slider .slick-next {
		right: calc((100vw - 1300px) / 2);
	}
}

/* Services */
.services {
	padding-top: 35px;
	padding-bottom: 40px;
}

.service-content ul li {
	/* set up bullets as a :before or icon element, not as a background image */
	margin-bottom: 10px;
	padding-left: 35px;
	position: relative;
}

.service-content ul li::before {
	content: "";
	background-image: url("../img/watermark-leaf-green.svg");
	background-repeat: no-repeat;
	background-size: contain;
	height: 17px;
	width: 22px;
	position: absolute;
	left: 0;
	top: 3px;
}

.service-content h3 {
	color: #00843d;
	margin-bottom: 7px;
}

.service-content h2 {
	color: #001d0e;
	margin-bottom: 20px;
}

.service-items {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-right: -10px;
	margin-left: -10px;
}

.service-item {
	-ms-flex: 0 0 50%;
	flex: 0 0 50%;
	max-width: 50%;
	padding-right: 10px;
	padding-left: 10px;
	padding-bottom: 10px;
}

.service-item-wrapper {
	box-shadow: 0px 3px 6px #001d0e66;
	height: 100%;
	position: relative;
}

.service-item img {
	object-fit: cover;
	width: 100%;
	height: 100%;
	max-width: 100%;
	display: block;
}

.service-desc {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 29, 14, 0.35);
	padding: 7px;
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	line-height: 18px;
	text-align: center;
	display: flex;
	align-items: center;
	flex-direction: column;
	justify-content: center;
}

.service-desc .more {
	display: none;
}

.service-btn {
	margin-top: 23px;
	width: 100%;
}

@media (min-width: 768px) {
	.services {
		padding-top: 45px;
		padding-bottom: 45px;
	}

	.service-items {
		margin-right: -11px;
		margin-left: -11px;
	}

	.service-item {
		-ms-flex: 0 0 25%;
		flex: 0 0 25%;
		max-width: 25%;
		padding-right: 11px;
		padding-left: 11px;
		padding-bottom: 0px;
	}

	.service-desc {
		font-size: 15px;
		line-height: 20px;
	}

	.service-items--vertical {
		display: block;
		margin: 0;
	}

	.service-items--vertical .service-item {
		flex: none;
		padding: 0;
		margin-bottom: 15px;
		max-width: 100%;
	}

	.service-items--vertical .service-item img {
		object-fit: cover;
	}

	.services-wrapper .row {
		display: -ms-flexbox;
		display: flex;
		align-items: flex-end;
	}

	.service-content {
		display: flex;
		height: 100%;
		justify-content: center;
		flex-flow: column;
	}

	.service-content-wrapper p:last-child {
		margin-bottom: 0;
	}

	.service-content .btn {
		max-width: 280px;
		margin-top: 25px;
	}
}

@media (min-width: 1025px) {
	.services {
		padding-top: 110px;
		padding-bottom: 130px;
	}

	.service-item {
		-ms-flex: 0 0 20%;
		flex: 0 0 20%;
		max-width: 20%;
	}

	.service-item img {
		width: 100%;
	}

	.service-items--vertical .service-item {
		margin-bottom: 20px;
	}

	.services-wrapper .row {
		align-items: normal;
	}

	.services-wrapper .col-sm-3 {
		display: flex;
		width: 20%;
	}

	.service-desc {
		font-size: 18px;
		line-height: 22px;
		text-align: center;
		padding-left: 20px;
		padding-right: 20px;
		overflow: hidden;
	}

	.service-desc .more {
		position: absolute;
		width: 160px;
		height: 80px;
		bottom: -80px;
		left: 50%;
		margin-left: -80px;
		border-top-left-radius: 80px;
		border-top-right-radius: 80px;
		background-color: #fff;
		color: #00843d;
		font-size: 16px;
		line-height: 22px;
		padding-top: 48px;
		font-weight: 700;
		transition: transform 0.3s;
		display: block;
	}

	.service-desc:hover .more {
		transform: translateY(-80px);
	}

	.service-content .btn {
		max-width: 420px;
		margin-top: 45px;
	}

	.service-content h2 {
		margin-bottom: 30px;
	}
}

@media (min-width: 1200px) {
	.services-wrapper .col-sm-3 {
		align-items: flex-end;
	}

	.service-content {
		padding-left: 75px;
	}
}

/* Content Icons */
.content-icons {
	padding-top: 47px;
	padding-bottom: 46px;
	position: relative;
	color: #fff;
	overflow: hidden;
}

.content-icons ul,
.content-icons ol {
	color: #fff;
}

.content-icons ul li {
	/* set up bullets as a :before or icon element, not as a background image */
	margin-bottom: 10px;
	padding-left: 35px;
	position: relative;
}

.content-icons ul li::before {
	content: "";
	background-image: url("../img/watermark-leaf-green.svg");
	background-repeat: no-repeat;
	background-size: contain;
	height: 17px;
	width: 22px;
	position: absolute;
	left: 0;
	top: 3px;
}

.content-icons > img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 1;
}

.content-icons:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
	background: rgba(0, 29, 14, 0.58);
}

.content-icons .container {
	z-index: 3;
	position: relative;
}

.content-icons-desc h3 {
	color: #fff;
	margin-bottom: 0px;
}

.content-icons-desc h2 {
	color: #fff;
	margin-bottom: 20px;
}

.icons-wrapper .icon {
	color: #fff;
	display: block;
	text-align: center;
}

.icon-image {
	width: 82px;
	height: 82px;
	border-radius: 50%;
	background-color: #fff;
	display: inline-block;
	padding: 15px;
	position: relative;
	transition: background 0.35s;
}

.icon-image img {
	display: block;
	max-width: 100%;
	padding: 18px;
	position: absolute;
	top: 50%;
	left: 50%;
	transition: opacity 0.3s;
	transform: translate(-50%, -50%);
	opacity: 1;
	height: 100%;
	width: 100%;
	object-fit: contain;
}

.icon-image .icon-default {
	z-index: 1;
}

.icon-image .icon-active {
	opacity: 0;
	z-index: 2;
}

.icon:hover .icon-image {
	cursor: pointer;
	background-color: rgba(255, 255, 255, 0.4);
}

.icon:hover .icon-image .icon-default {
	opacity: 0;
}

.icon:hover .icon-image .icon-active {
	opacity: 1;
}

.icon-name {
	font-family: "Montserrat", sans-serif !important;
	font-weight: 700;
	font-size: 13px;
	line-height: 18px;
	text-transform: uppercase;
}

.icons-slider {
	padding-right: 44px;
}

.icons-slider .slick-prev {
	display: none !important;
}

.icons-slider .slick-next {
	width: 82px;
	height: 82px;
	border-radius: 50%;
	background-color: rgba(255, 255, 255, 0.4);
	border: none;
	position: absolute;
	right: 0px;
	top: 0;
	transform: translateX(44px);
	text-align: left;
	padding-left: 25px;
	padding-top: 5px;
}

.icons-slider .slick-next i {
	display: none;
}

.icons-slider .slick-arrow i {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.icons-slider .icon-image:hover {
	background-color: #fff;
}

.icons-slider .icon-image:hover .icon-default {
	opacity: 1;
}

.icons-slider .icon-image:hover .icon-active {
	opacity: 0;
}

.icons-slider .slick-slide {
	vertical-align: top;
}

.icons-wrapper {
	margin-bottom: 20px;
}

@media (min-width: 768px) {
	.content-icons-desc {
		text-align: center;
	}

	.icons-slider {
		padding-left: 85px;
		padding-right: 85px;
	}

	.icons-slider .slick-arrow {
		width: 45px;
		height: 45px;
		border: none;
		border-radius: 50%;
		background: #fff;
		display: block !important;
		transform: none;
		padding: 0;
		text-align: center;
		position: absolute;
		top: 25px;
	}

	.icons-slider .slick-arrow img {
		display: none;
	}

	.icons-slider .slick-arrow i {
		color: #00843d;
		font-size: 16px;
		display: inline-block;
	}

	.icons-slider .slick-prev {
		left: 0;
	}

	.icons-slider .slick-next {
		right: 0;
	}

	.icons-wrapper {
		margin-bottom: 15px;
	}
}

@media (min-width: 1025px) {
	.content-icons {
		padding-top: 100px;
		padding-bottom: 95px;
	}

	.content-icons-desc {
		text-align: initial;
		padding-left: 60px;
	}

	.content-icons-desc h2 {
		margin-bottom: 33px;
	}

	.icon-image {
		width: 150px;
		height: 150px;
		margin-bottom: 15px;
	}

	.icon-image img {
		padding: 0;
		height: auto;
		width: auto;
		object-fit: none;
	}

	.icons-wrapper .icon {
		margin-bottom: 25px;
	}

	.icon-name {
		font-size: 16px;
		line-height: 22px;
	}
}

/*
Copy Intro
-- section where heading, subheading and intro copy is located
*/

.copy-intro {
	margin-bottom: 30px;
}

.section-intro h3:first-of-type {
	margin-bottom: 4px;
}

/* Project Portfolio */
.project-portfolio {
	padding-top: 40px;
	padding-bottom: 45px;
}

.project-portfolio h3 {
	margin-bottom: 4px;
	color: #00843d;
}

.project-portfolio h2 {
	margin-bottom: 22px;
	color: #001d0e;
}

.portfolio-lists {
	margin-bottom: 25px;
}

.portfolio-item {
	display: block;
	position: relative;
	overflow: hidden;
}

.portfolio-item .portfolio-image {
	height: 426px;
	position: relative;
}

.portfolio-item .portfolio-image img {
	object-fit: cover;
	height: 100%;
	width: 100%;
	position: absolute;
}

.portfolio-item .watermark {
	position: absolute;
	bottom: 0;
	left: 0;
	opacity: 0;
	transition: opacity 0.4s;
	z-index: 1;
}

.portfolio-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 100%;
	width: 100%;
}

.portfolio-overlay__body {
	opacity: 1;
	height: 100%;
	width: 100%;
	transform: scale(1);
	transition: opacity 0.4s, transform 0.4s;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.portfolio-overlay__body span {
	border-bottom: 1px solid #fff;
	color: #fff;
	display: inline-block;
	font-size: 18px;
	font-weight: 700;
	line-height: 24px;
	max-width: 258px;
	padding: 10px;
	width: 100%;
	transition: color 0.4s, background 0.4s;
	text-shadow: 1px 1px rgb(0, 0, 0, 0.65);
}

.portfolio-overlay__body span.hidden-md-up {
	border: 0;
}

.portfolio-overlay__body .desc {
	color: #fff;
	font-size: 16px;
	line-height: 24px;
	max-width: 258px;
	width: 100%;
	display: none;
}

.portfolio-overlay::before {
	background-color: rgba(0, 29, 14, 0.63);
	content: "";
	position: absolute;
	top: 30px;
	left: 30px;
	right: 30px;
	bottom: 30px;
	opacity: 1;
	transform: scale(1);
	transition: opacity 0.4s, transform 0.4s;
}

.portfolio-item:hover .watermark {
	opacity: 0.58;
}

.portfolio-item:hover .portfolio-overlay::before {
	opacity: 1;
	transform: scale(1);
}

.portfolio-item:hover .portfolio-overlay__body {
	opacity: 1;
	transform: scale(1);
}

.project-portfolio .portfolio-content {
	text-align: unset; /* Set to "unset" at request; used to be set to "left." Feel free to revert this change if necessary. */
}

.portfolio-overlay__body a:hover {
	background: #fff;
	color: #00843d;
}

.project-portfolio .buttons {
	text-align: center;
}

.project-portfolio .buttons h5 {
	margin-bottom: 10px;
}

.project-portfolio [class*="btn"] {
	width: 100%;
	margin-bottom: 20px;
}

.project-portfolio .last [class*="btn"] {
	margin-bottom: 0 !important;
}

@media (min-width: 768px) {
	.project-portfolio {
		padding-top: 60px;
		padding-bottom: 65px;
	}

	.project-portfolio h2 {
		margin-bottom: 12px;
	}

	.portfolio-content,
	.portfolio-lists,
	.project-portfolio .buttons {
		padding-left: 55px;
		padding-right: 55px;
	}
}

@media (min-width: 600px) {
	.project-portfolio .buttons .row {
		display: flex;
	}

	.project-portfolio .buttons__item {
		max-width: 533px;
		width: 100%;
	}

	.project-portfolio .buttons [class*="col"] + [class*="col"] {
		margin-top: 0;
	}

	.project-portfolio .buttons [class*="col"]:first-child .buttons__item {
		margin-left: auto;
	}

	.project-portfolio .buttons [class*="col"]:last-child .buttons__item {
		margin-right: auto;
	}
}

@media (min-width: 1025px) {
	.project-portfolio {
		padding-top: 100px;
		padding-bottom: 110px;
	}

	.project-portfolio .portfolio-content {
		padding: 0;
		text-align: center;
	}

	.portfolio-lists,
	.project-portfolio .buttons {
		padding-left: 0;
		padding-right: 0;
	}

	.project-portfolio .buttons {
		padding-top: 25px;
	}

	.project-portfolio [class*="btn"] {
		margin-bottom: 0;
	}

	.project-portfolio h2 {
		margin-bottom: 25px;
	}

	.portfolio-overlay::before {
		opacity: 0;
		transform: scale(1.4);
	}

	.portfolio-overlay__body {
		opacity: 0;
		transform: scale(1.5);
	}

	.portfolio-overlay__body span {
		text-shadow: none;
	}

	.portfolio-overlay__body .desc {
		display: inline-block;
	}
}

@media (min-width: 1200px) {
	.project-portfolio .portfolio-content {
		max-width: 1080px;
		margin: 0 auto;
	}
}

/* Project Gallery Page  */

/*.project-item--post + .project-item--post {
    margin-top: 1rem;
}*/

.project-item--post {
	float: left;
	height: 300px;
	padding: 0 15px;
	margin-bottom: 1.5rem;
}

.project-item--post a {
	display: flex;
	height: 100%;
	position: relative;
	overflow: hidden;
}

.project-item--post img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.project-item--post .watermark {
	position: absolute;
	bottom: 0;
	left: 0;
	opacity: 0;
	transition: opacity 0.4s;
	width: 20%;
	z-index: 1;
}

.project-item__overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 100%;
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
}

.project-item__overlay::before {
	background-color: rgba(0, 29, 14, 0.63);
	content: "";
	position: absolute;
	top: 30px;
	left: 30px;
	right: 30px;
	bottom: 30px;
	opacity: 0;
	transform: scale(1.4);
	transition: opacity 0.4s, transform 0.4s;
}

.project-item__overlay-body {
	background-color: rgba(0, 29, 14, 0.63);
	padding: 1rem;
	position: relative;
	text-align: center;
}

.project-item__overlay-body .inner {
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.2;
	margin: auto;
	margin-right: auto;
	max-width: 410px;
	text-transform: uppercase;
	width: 100%;
	transition: all 0.4s;
	position: relative;
}

.project-item__overlay-body .inner::after {
	background: #fff;
	content: "";
	position: absolute;
	height: 1px;
	width: 35%;
	margin-left: auto;
	margin-right: auto;
	bottom: -10px;
	left: 0;
	right: 0;
	opacity: 0;
}

.project-item__overlay-body .inner span {
	display: none;
	text-transform: none;
}

@media (min-width: 768px) {
	.project-item--post + .project-item--post {
		margin-top: 0;
	}
}

@media (min-width: 1025px) {
	.project-item--post a:hover .project-item__overlay::before {
		opacity: 1;
		transform: scale(1);
	}

	.project-item--post a:hover .watermark {
		opacity: 0.58;
	}

	.project-item--post a:hover .project-item__overlay {
		justify-content: center;
	}

	.project-item--post a:hover .project-item__overlay-body {
		background: transparent;
	}

	.project-item--post a:hover .project-item__overlay-body .inner::after {
		opacity: 1;
	}

	.project-item--post a:hover .project-item__overlay-body .inner span {
		display: block;
	}
}

@media (min-width: 1200px) {
	.project-item__overlay-body {
		padding: 2rem;
	}

	.project-item__overlay-body .inner {
		font-size: 18px;
		line-height: 24px;
		padding-left: 0.3rem;
		padding-right: 0.3rem;
	}
}

/*.project__row .row + .row {
    margin-top: 2rem;
}

.project__row .row .project-item--post + .project-item--post {
    margin-bottom: 1rem;
}
*/

.project__row .row:nth-child(odd) .project-item--post:first-child {
	width: 66.66666667%;
}

.project__row .row:nth-child(odd) .project-item--post:not(first-child) {
	width: 33.33333%;
}

.project__row .row:nth-child(even) .project-item--post {
	width: 33.33333%;
}

.project__row .project-item--post {
	width: 100%;
}

.project__row .grid-sizer {
	width: 100%;
}

.project__filters label {
	display: block;
	font-weight: normal;
	margin-bottom: 5px;
}

.project__filters .button-reset {
	background: transparent;
	border: 3.5px solid #00843d;
	color: #00843d;
	font-weight: 600;
	transition: all 0.35s;
}

.project__filters .button-reset:hover {
	border-color: #00843d;
	box-shadow: 0px 3px 12px #00843d57;
}

.project__filters .select-wrapper {
	background: #001d0e;
	border: 3.5px solid #00843d;
	color: #fff;
	height: 61px;
	display: inline-block;
	width: 100%;
	position: relative;
}

.project__filters select {
	background: transparent;
	font-weight: 700;
	border: 0;
	color: #fff;
	height: 100%;
	padding: 15px;
	text-transform: none;
	-webkit-appearance: none;
	width: 100%;
}

.project__filters select option {
	text-transform: none;
	background: #001d0e;
}

.project__filters .select-wrapper::after {
	content: "";
	right: 15px;
	width: 2px;
	height: 2px;
	border: 8px solid transparent;
	border-top-color: #fff;
	border-bottom: none;
	top: 50%;
	transform: translateY(-50%);
	position: absolute;
}

@media (min-width: 768px) {
	.project__row .project-item--post {
		width: 50%;
	}

	.project__row .grid-sizer {
		width: 50%;
	}

	.project__filters .select-wrapper {
		max-width: 340px;
	}
}

@media (min-width: 1025px) {
	.project__row .project-item--post {
		width: 33.33333%;
	}

	.project__row .grid-sizer {
		width: 33.33333%;
	}

	.project__row .row div:nth-child(2) {
		width: 66.66666667%;
	}

	.project__row .project-item--post:nth-child(4n-3) {
		width: 66.66666667%;
	}

	.project__row .project-item--post:nth-child(4n-3) {
		height: 622px;
	}

	.project__list.has-filter
		.project__row
		.project-item--post:nth-child(4n-3) {
		width: 33.33333%;
		height: 300px;
	}
}

/* Project Detail Page  */

.gallery.has-tree-bg::after {
	background-size: 100%;
}

.gallery__content {
	margin-left: auto;
	margin-right: auto;
	max-width: 870px;
	width: 100%;
}

.gallery__section .row {
	display: flex;
	flex-wrap: wrap;
}

.gallery__image-item {
	height: 350px;
	padding: 0 10px;
	margin-bottom: 2rem;
	width: 100%;
}

.gallery__section .gallery__image-item a {
	display: block;
	height: 100%;
	position: relative;
}

.gallery__image-item img {
	height: 100%;
	width: 100%;
	object-fit: cover;
	object-position: center center;
	position: absolute;
}

@media (min-width: 1025px) {
	.gallery__section .row .gallery__image-item:nth-child(n + 1) {
		flex: 0 0 50%;
		max-width: 50%;
	}

	.gallery__section .row .gallery__image-item:nth-child(n + 3) {
		flex: 0 0 33.33333%;
		max-width: 33.33333%;
	}

	.gallery__section .row .gallery__image-item:nth-child(6) {
		flex: 0 0 100%;
		max-width: 100%;
	}

	.gallery__section .row .gallery__image-item:nth-child(n + 7) {
		display: none;
	}

	.gallery__section.is-count-3 .row .gallery__image-item:last-child {
		flex: 0 0 100%;
		max-width: 100%;
	}

	.gallery__section.is-count-4 .row .gallery__image-item:nth-child(n + 3) {
		flex: 0 0 50%;
		max-width: 50%;
	}
}

/* Job Listings Page  */

.job-openings h2 {
	text-transform: none;
}

.job_filters .job_types {
	display: none;
}

.job_filters input[type="submit"] {
	background: transparent
		linear-gradient(92deg, #00843d 0%, #004621 68%, #00421f 100%) 0% 0%
		no-repeat padding-box;
	border: 0;
	color: #fff;
	font-size: 18px;
	font-weight: 600;
	padding: 20px 40px;
	transition: background 0.35s, color 0.35s;
}

.job_filters input[type="submit"]:hover {
	background: #f7fffb;
	color: #00843d;
	box-shadow: 0px 3px 12px #00843d57;
}

.job_listings ul li {
	display: flex;
	align-items: flex-start;
	flex-direction: column;
	justify-content: space-between;
	transition: background 0.35s;
}

.job_listings ul li:hover,
.job_listings ul li:focus {
	background: #eff1f0;
}

.job_listings ul li::before {
	display: none;
}

.job_listings ul li .image,
.job_listings ul li .position,
.job_listings ul li .location,
.job_listings ul li .meta {
	margin-bottom: 0.5rem;
}

.job_listings ul li .image {
	text-align: center;
}

.job_listings ul li .image img {
	max-width: 65px;
	height: auto;
}

.job_listings ul li .position .tagline {
	display: block;
}

.job_listings ul li .position h3 {
	color: #00843d;
	font-size: 16px;
	font-weight: 700;
	margin-bottom: 0;
}

.job_listings ul li .position h3 a {
	color: #00843d;
	padding: 0;
	position: static;
}

.job_listings ul li .position h3 a::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 2;
	pointer-events: auto;
}

.job_listings ul li .position h3 a:hover {
	background: transparent;
}

.job_listings ul li .position h3 a:visited,
.job_listings ul li .position h3 a:active,
.job_listings ul li .position h3 a:focus {
	color: #00843d;
}

.job_listings ul li ul.meta {
	margin: 0;
	margin-bottom: 0.5rem;
	padding: 0;
}

.job_listings ul li ul.meta li {
	padding: 0;
	margin-bottom: 0;
}

.job_listings ul li ul.meta li.date {
	font-weight: 600;
}

.job_listings ul li ul.meta li.job-type {
	color: #00843d;
	font-size: 16px;
	font-weight: 700;
}

.job_listings ul li .link a {
	font-size: 14px;
	line-height: 18px;
	display: block;
	margin-left: auto;
	min-width: auto;
	max-width: 170px;
	width: 100%;
	padding: 10px;
	color: #00843d;
	background: #fff;
	font-weight: 700;
	border: 3px solid #00843d;
	text-transform: uppercase;
	text-align: center;
}

.job_listings ul li .link a:hover {
	color: #00843d;
	border-color: #00843d;
}

@media (min-width: 768px) {
	.job_listings ul li {
		display: flex;
		align-items: center;
		flex-direction: row;
	}

	.job_listings li > * {
		flex: 1 1 auto;
	}

	.job_listings ul li .image {
		max-width: 65px;
		width: 100%;
		margin-right: 1rem;
	}

	.job_listings ul li .position {
		margin-right: 1rem;
		max-width: 170px;
		width: 100%;
	}

	.job_listings ul li .location {
		margin-right: 0.5rem;
		max-width: 130px;
		width: 100%;
	}

	.job_listings ul li ul.meta {
		margin-bottom: 0;
		padding-right: 1rem;
	}
}

@media (min-width: 1025px) {
	.job_listings ul li .image {
		max-width: 130px;
	}

	.job_listings ul li .position {
		margin-right: 2rem;
		max-width: 250px;
	}

	.job_listings ul li .position h3 {
		font-size: 22px;
	}

	.job_listings ul li .location {
		margin-right: 2rem;
	}

	.job_listings ul li ul.meta li.job-type {
		font-size: 18px;
	}

	.job_listings ul li .link a {
		font-size: 18px;
		line-height: 22px;
		padding: 16px 10px;
	}
}

@media (min-width: 1440px) {
	.job_listings ul li .position {
		max-width: 500px;
	}
}

/*  override css from WP Job Manager plugin */

.rp4wp-related-job_listing > ul li.job_listing,
.rp4wp-related-job_listing > ul li.no_job_listings_found,
ul.job_listings li.job_listing,
ul.job_listings li.no_job_listings_found {
	padding: 1.5rem;
}

/* Job Single Post */

.is-job-post .social-share-row {
	display: none;
}

.is-job-post .job_application.application {
	overflow: visible;
}

.is-job-post .application_button {
	background: transparent
		linear-gradient(92deg, #00843d 0%, #004621 68%, #00421f 100%) 0% 0%
		no-repeat padding-box;
	border: 0;
	color: #fff;
	padding: 15px 40px;
	transition: background 0.35s, color 0.35s;
}

.is-job-post .application_button:hover {
	background: #f7fffb;
	color: #00843d;
	box-shadow: 0px 3px 12px #00843d57;
}

.single_job_listing .meta {
	display: flex;
	flex-direction: row;
}

.single_job_listing .meta li {
	color: #001d0e;
	font-weight: 600;
	float: none;
	padding-left: 25px;
}

.single_job_listing .meta li a {
	color: #001d0e;
	font-weight: 600;
}

.single_job_listing .meta li.job-type {
	background: transparent;
	color: #001d0e;
}

.single_job_listing .meta li.company-name::before {
	background-image: url("../img/user-circle.svg");
	background-repeat: no-repeat;
	color: #001d0e;
}

.single_job_listing .meta li::before {
	color: #000;
	background-image: none;
	top: 7px;
}

@media (min-width: 992px) {
	.single_job_listing {
		padding: 4rem 0 3rem;
	}
}

/* Find Location */
.find-location {
	padding-top: 42px;
	padding-bottom: 44px;
	position: relative;
}

.find-location img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.location-form {
	color: #fff;
	padding-top: 24px;
	padding-bottom: 29px;
	padding-left: 10px;
	padding-right: 10px;
	position: relative;
	background: #001d0e;
}

.location-form h3 {
	color: #fff;
	margin: 0;
}

.location-form h2 {
	color: #fff;
	margin-bottom: 12px;
}

.location-form input {
	height: 30px;
	font-size: 16px;
	padding-left: 20px;
	padding-right: 20px;
	margin-bottom: 10px;
	border: none;
}

.location-form input:focus {
	border: none;
}

.location-form button {
	border: none;
	width: 100%;
	padding-top: 4px;
	padding-bottom: 4px;
}

.location-form input::-webkit-input-placeholder {
	color: rgba(0, 29, 14, 0.5);
}

.location-form input::-moz-placeholder {
	color: rgba(0, 29, 14, 0.5);
}

.location-form input:-ms-input-placeholder {
	color: rgba(0, 29, 14, 0.5);
}

.location-form input:-moz-placeholder {
	color: rgba(0, 29, 14, 0.5);
}

@media (min-width: 768px) {
	.find-location {
		padding-top: 60px;
		padding-bottom: 50px;
	}

	.location-form-container {
		padding-right: 55px;
		padding-left: 55px;
	}

	.location-form {
		padding-top: 27px;
		padding-bottom: 30px;
	}

	.location-form h3 {
		text-align: left;
	}
}

@media (min-width: 1025px) {
	.find-location {
		padding-top: 100px;
		padding-bottom: 143px;
	}

	.location-form-container {
		padding-right: 0;
		padding-left: 0;
	}

	.location-form {
		padding: 60px;
	}

	.location-form h2 {
		margin-bottom: 30px;
	}

	.location-form input {
		height: 53px;
		font-size: 18px;
		margin-bottom: 18px;
	}

	.location-form button {
		padding-top: 15px;
		padding-bottom: 15px;
	}
}

@media (min-width: 1200px) {
	.location-form {
		padding: 60px 100px;
	}
}

/* Blog Items */
.featured-posts {
	padding-top: 28px;
	padding-bottom: 26px;
	position: relative;
}

.featured-posts > img {
	display: none;
}

.featured-posts-desc h3 {
	color: #00843d;
	margin-bottom: 4px;
}

.featured-posts-desc h2 {
	color: #001d0e;
	margin-bottom: 8px;
}

.featured-post-item {
	position: relative;
	box-shadow: 0px 3px 6px #001d0e62;
	margin-bottom: 22px;
	overflow: hidden;
}

.featured-post-item a {
	display: block;
	overflow: hidden;
	min-height: 275px;
}

.featured-post-item img {
	position: relative;
	max-width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	object-position: center;
	position: absolute;
	transition: transform 0.35s;
}

.post-date a {
	display: block;
}

.post-date {
	width: 64px;
	height: 23px;
	line-height: 23px;
	color: #fff;
	font-size: 13px;
	text-align: center;
	text-transform: uppercase;
	position: absolute;
	top: 10px;
	left: 0px;
	z-index: 2;
	font-weight: 700;
}

.post-date:before {
	content: "";
	z-index: -1;
	width: 64px;
	height: 23px;
	background: transparent
		linear-gradient(90deg, #00843d 0%, #004621 68%, #00421f 100%) 0% 0%
		no-repeat padding-box;
	opacity: 0.85;
	position: absolute;
	top: 0;
	left: 0;
}

.post-title {
	font-size: 13px;
	font-weight: 700;
	line-height: 22px;
	padding-right: 40px;
	padding-left: 22px;
	/*padding-top: 12px;
    padding-bottom: 17px;*/
	background: rgba(0, 29, 14, 0.58);
	color: #fff;
	width: 100%;
	position: absolute;
	bottom: 0;
	left: 0;
	text-transform: uppercase;
	height: 46px;
	display: flex;
	align-items: center;
}

.post-title i {
	position: absolute;
	width: 20px;
	height: 20px;
	font-size: 10px;
	text-align: center;
	line-height: 20px;
	right: 14px;
	bottom: 12px;
	color: #00843d;
	background: #fff;
	border-radius: 50%;
}

.featured-post-list .btn {
	display: block;
	margin-left: auto;
	margin-right: auto;
	max-width: 290px;
	width: 100%;
}

@media (min-width: 768px) {
	.featured-posts {
		padding-top: 73px;
		padding-bottom: 46px;
	}

	.featured-posts > img {
		display: block;
		width: 100%;
		height: auto;
		position: absolute;
		bottom: 0;
		left: 0;
		z-index: -1;
		object-position: bottom center;
		object-fit: cover;
	}

	.featured-posts-desc,
	.featured-post-list {
		padding-left: 55px;
		padding-right: 55px;
	}

	.featured-posts-desc h2 {
		color: #001d0e;
		margin-bottom: 13px;
	}

	.featured-post-item {
		margin-bottom: 40px;
	}

	.featured-post-item a {
		min-height: 350px;
	}

	.featured-post-item img {
		width: 100%;
	}

	.post-date {
		width: 140px;
		height: 50px;
		line-height: 50px;
		font-size: 18px;
		top: 20px;
	}

	.post-date:before {
		width: 140px;
		height: 50px;
	}

	.post-title {
		height: 100px;
		font-size: 24px;
		padding-left: 40px;
		padding-right: 100px;
	}

	.post-title i {
		width: 37px;
		height: 37px;
		line-height: 37px;
		font-size: 17px;
		bottom: 27px;
		right: 36px;
	}

	.post-list .btn {
		width: 280px;
		display: block;
		margin-left: auto;
		margin-right: auto;
	}
}

@media (min-width: 1025px) {
	.featured-posts {
		padding-top: 94px;
		padding-bottom: 104px;
	}

	.featured-posts > img {
		height: 100%;
	}

	.featured-posts-desc,
	.featured-post-list {
		padding-left: 0px;
		padding-right: 0px;
	}

	.featured-posts-desc {
		padding-right: 60px;
	}

	.featured-posts-desc .btn {
		width: 100%;
	}

	.featured-posts-desc h2 {
		margin-bottom: 30px;
	}

	.featured-post-item {
		margin-bottom: 30px;
	}

	.featured-post-item a:hover img {
		transform: scale(1.1);
	}

	.post-date {
		width: 150px;
		height: 55px;
		line-height: 55px;
		font-size: 18px;
		top: 23px;
	}

	.post-date:before {
		width: 150px;
		height: 55px;
	}

	.post-title {
		height: 108px;
		font-size: 24px;
		line-height: 28px;
		padding-left: 50px;
		padding-right: 100px;
	}

	.post-title i {
		width: 48px;
		height: 48px;
		line-height: 48px;
		font-size: 22px;
		bottom: 29px;
		right: 34px;
	}
}

/* Logo Slider */
.logo-slider-wrapper {
	padding-top: 40px;
	padding-bottom: 30px;
	background-color: #001d0e;
	color: #fff;
	position: relative;
	text-align: center;
}

.logo-slider-wrapper .container {
	z-index: 3;
	position: relative;
}

.logo-slider-wrapper.front .logo-slider-wrapper .watermark {
	display: none;
}

.logo-slider-wrapper.front .logo-slider-wrapper {
	padding-top: 0;
	padding-bottom: 0;
}

.logo-slider-wrapper.is-custom-template .watermark,
.logo-slider-wrapper.is-contact-page .watermark {
	display: none;
}

.logo-slider-wrapper.is-custom-template .watermark.is-left,
.logo-slider-wrapper.is-contact-page .watermark.is-left {
	top: 0;
	transform: rotate(23deg);
}

.logo-slider-wrapper.is-custom-template .watermark.is-right,
.logo-slider-wrapper.is-contact-page .watermark.is-right {
	bottom: -50px;
	transform: rotate(-150deg);
}

.logo-slider-wrapper h3 {
	color: #fff;
	margin-bottom: 6px;
}

.logo-slider-wrapper h2 {
	color: #fff;
	margin-bottom: 15px;
}

.logo-slider-wrapper .btn-secondary {
	background: transparent;
	color: #fff;
	width: 100%;
}

.logo-slider-wrapper .btn-secondary:hover {
	background: #fff;
	color: #00843d;
}

.logo-slider {
	margin-bottom: 23px;
	pointer-events: none;
}

.logo-slider-content ul,
.logo-slider-content ol {
	text-align: left;
}

.logo-slider-content ul li {
	/* set up bullets as a :before or icon element, not as a background image */
	margin-bottom: 10px;
	padding-left: 35px;
	position: relative;
}

.logo-slider-content ul li::before {
	content: "";
	background-image: url("../img/watermark-leaf-green.svg");
	background-repeat: no-repeat;
	background-size: contain;
	height: 17px;
	width: 22px;
	position: absolute;
	left: 0;
	top: 3px;
}

.logo-slider .slick-arrow i {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.logo-item {
	width: 100%;
	padding-left: 13px;
	padding-right: 13px;
	text-align: center;
}

.logo-item img {
	max-width: 100%;
	display: inline-block;
}

.logo-slider-wrapper .watermark {
	opacity: 0.03;
	object-fit: cover;
	width: 180px;
}

.logo-slider-wrapper .watermark.is-left {
	position: absolute;
	top: 30px;
	left: -15px;
	object-position: top left;
}

.logo-slider-wrapper .watermark.is-right {
	position: absolute;
	bottom: 100px;
	right: -60px;
	transform: rotate(-115deg);
	object-position: bottom right;
	display: none;
}

.leaves-mobile {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
}

.leaves-mobile-alt {
	top: auto;
	bottom: 265px;
	left: auto;
	right: 0;
}

.leaves-tablet {
	position: absolute;
	top: 30px;
	left: 0px;
	z-index: 2;
}

@media (min-width: 768px) {
	.logo-slider-wrapper {
		/*padding-top: 68px;
        padding-bottom: 46px;*/
		padding-left: 40px;
		padding-right: 40px;
	}

	.logo-slider-wrapper h3 {
		margin-bottom: 6px;
	}

	.logo-slider-wrapper h2 {
		margin-bottom: 25px;
	}

	.logo-slider {
		padding-top: 15px;
		pointer-events: auto;
	}

	.logo-slider .slick-arrow {
		top: 50%;
		margin: 0;
		transform: translateY(-50%);
		position: absolute;
	}

	.logo-slider .slick-prev {
		left: 25px;
	}

	.logo-slider .slick-next {
		right: 25px;
	}

	.logo-slider-wrapper .watermark {
		width: 230px;
	}
}

@media (min-width: 1025px) {
	.logo-slider-wrapper {
		padding-top: 120px;
		padding-bottom: 100px;
		padding-left: 0px;
		padding-right: 0px;
	}

	.logo-slider-wrapper .watermark {
		opacity: 0.03;
	}

	.logo-slider-wrapper.is-custom-template .watermark,
	.logo-slider-wrapper.is-contact-page .watermark {
		display: block;
	}

	.logo-slider-wrapper.is-custom-template,
	.logo-slider-wrapper.is-contact-page,
	.logo-slider-wrapper.is-default-template {
		padding-bottom: 60px;
		padding-top: 60px;
	}

	.logo-slider-wrapper.is-custom-template .watermark {
		width: 250px;
	}

	.logo-slider-wrapper h3 {
		margin-bottom: 0px;
	}

	.logo-slider-wrapper h2 {
		margin-bottom: 30px;
	}

	.logo-slider-wrapper h3,
	.logo-slider-wrapper h2,
	.logo-slider-wrapper p {
		padding-left: 110px;
		padding-right: 110px;
	}

	.logo-slider-wrapper .btn-secondary {
		border-color: #555a5c;
		box-shadow: 0px 3px 12px #00843d57;
	}

	.logo-slider {
		padding-top: 30px;
		padding-left: 120px;
		padding-right: 120px;
	}

	.logo-slider .slick-arrow {
		width: 63px;
		height: 63px;
	}

	.logo-slider .slick-arrow i {
		font-size: 23px;
	}

	.logo-slider .slick-prev {
		left: 20px;
	}

	.logo-slider .slick-next {
		right: 20px;
	}

	.logo-slider-wrapper .watermark {
		width: 370px;
	}
}

@media (min-width: 1200px) {
	.logo-slider-wrapper .watermark.is-right {
		display: block;
	}

	.logo-slider-wrapper.is-custom-template .watermark {
		width: 390px;
	}
}

/*------------------------------------*\
    Style Guide Elements
\*------------------------------------*/

/*  Image Content */
.image__content-img {
	padding: 40px;
	position: relative;
}

.image__content-img img {
	display: block;
	margin: 0 auto;
}

.image__content-img > .watermark {
	position: absolute;
	bottom: -35px;
	left: -25px;
	display: none;
}

.image__content-img .watermark img {
	width: 260px;
}

.image__content-body {
	padding-bottom: 0;
	padding-top: 40px;
	padding-left: 40px;
	padding-right: 40px;
	position: relative;
	text-align: center;
}

.image__content-body.has-watermark {
	position: relative;
	overflow: hidden;
}

.image__content-body .watermark img {
	width: 260px;
}

.image__content-body > .watermark {
	position: absolute;
	bottom: 0px;
	right: -25px;
	display: none;
	transform: rotate(-115deg);
}

.image__content-body-inner {
	position: relative;
}

.image__content-body-inner h3:first-of-type {
	margin-bottom: 4px;
}

@media (min-width: 768px) {
	.image__content-body {
		padding-top: 0;
		padding-bottom: 40px;
	}
}

@media (min-width: 1025px) {
	.image__content-img {
		height: 100%;
		padding: 0;
	}

	.image__content-img img {
		width: 100%;
		height: 100%;
		object-fit: cover;
		position: absolute;
	}

	.image__content-img.has-watermark .watermark {
		opacity: 0.48;
		display: block;
	}

	.image__content-body.has-watermark .watermark {
		opacity: 0.48;
		display: block;
	}

	.image__content-body {
		padding: 60px;
		position: relative;
		text-align: left;
	}

	.image__content-body-heading h2 {
		margin-bottom: 30px;
	}

	.image__content-body .watermark img {
		width: 370px;
	}

	.image__content-body-inner {
		max-width: 750px;
		width: 100%;
	}
}

@media (min-width: 1200px) {
	.image__content-body-inner {
		padding-left: 60px;
	}
}

/*  Image Card */

.image__button {
	padding: 30px 0;
}

.image__button .section-intro {
	padding: 0 15px;
}

.image__button-item + .image__button-item {
	margin-top: 32px;
}

.image__button-body {
	box-shadow: 0 3px 6px rgba(0, 29, 14, 0.6);
	display: block;
	margin-left: auto;
	margin-right: auto;
	width: 100%;
	overflow: hidden;
	position: relative;
}

.image__button-img {
	height: 60px;
	position: relative;
}

.image__button-img::before {
	content: "";
	background: rgba(0, 29, 14, 0.6);
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	opacity: 0.35;
	transition: opacity 0.35s, transform 0.35s;
	z-index: 1;
}

.image__button-img img {
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	object-fit: cover;
}

.image__button-overlay {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 2;
}

.image__button-overlay::before {
	content: "";
	background: rgb(0, 132, 61);
	background: linear-gradient(
		180deg,
		rgba(0, 132, 61, 1) 0%,
		rgba(55, 78, 66, 1) 50%,
		rgba(0, 66, 31, 1) 100%
	);
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	opacity: 0;
	transition: opacity 0.35s, transform 0.35s;
	transform: scale(0);
}

.image__button-overlay::after {
	content: "";
	border: 4px solid #fff;
	position: absolute;
	top: 15px;
	left: 15px;
	right: 15px;
	bottom: 15px;
	opacity: 0;
}

.image__button-title {
	color: #fff;
	font-size: 15px;
	font-weight: 700;
	line-height: 22px;
	margin-bottom: 0;
	text-shadow: 0 3px 6px rgba(0, 29, 14, 0.6);
	position: relative;
	text-transform: uppercase;
	text-align: center;
	width: 100%;
}

.image__button-body:hover .image__button-img::before {
	opacity: 0;
}

.image__button-body:hover .image__button-overlay::before {
	opacity: 0.95;
	transform: scale(1);
}

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

	.image__button-item + .image__button-item {
		margin-top: 0;
	}

	.image__button-item:nth-child(n + 5) {
		margin-top: 32px;
	}

	.image__button-img {
		height: 176px;
	}

	.image__button-body {
		max-width: 278px;
	}

	.image__button-overlay::after {
		opacity: 1;
	}

	.image__button-title {
		max-width: 170px;
	}
}

@media (min-width: 1025px) {
	.image__button {
		padding: 80px 0;
	}

	.image__button-img {
		height: 255px;
	}

	.image__button-title {
		font-size: 18px;
	}
}

@media (min-width: 1200px) {
	.image__button {
		padding: 100px 0;
	}

	.image__button-img {
		height: 325px;
	}
}

/*  Half and Half layout */

.half-and-half-row {
	position: relative;
}

.half-image {
	height: 450px;
	position: relative;
}

.half-image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.half-image > .watermark {
	position: absolute;
	bottom: -35px;
	left: -25px;
	opacity: 0;
}

.half-image.has-watermark .watermark img {
	width: 260px;
}

.half-text.has-watermark,
.half-image.has-watermark {
	position: relative;
	overflow: hidden;
}

.half-text .watermark img {
	width: 260px;
}

.half-text > .watermark {
	position: absolute;
	bottom: 60px;
	right: -70px;
	opacity: 0;
	transform: rotate(-125deg);
}

.half-image.has-watermark .watermark,
.half-text.has-watermark .watermark {
	opacity: 0.58;
}

.half-image,
.half-text {
	flex-basis: 0;
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
	max-width: 100%;
}

.half-text h3:first-of-type {
	margin-bottom: 4px;
}

.half-text.half-text--bg-dark {
	background: #001d0e;
	color: #fff;
}

.half-text--bg-dark * {
	color: #fff;
}

.half-text--bg-dark p a:not(.btn):hover {
	background-color: #00843d;
}

.half-text--bg-dark a.btn {
	background: #fff;
	color: #00843d;
	border: 3px solid #00843d;
}

.half-text--bg-dark a.btn::before {
	background: #fff;
}

.half-text p:last-child {
	margin-bottom: 0;
}

.half-text ul li {
	/* set up bullets as a :before or icon element, not as a background image */
	margin-bottom: 10px;
	padding-left: 35px;
	position: relative;
}

.half-text ul li::before {
	content: "";
	background-image: url("../img/watermark-leaf-green.svg");
	background-repeat: no-repeat;
	background-size: contain;
	height: 17px;
	width: 22px;
	position: absolute;
	left: 0;
	top: 3px;
}

.half-text__body {
	position: relative;
}

@media (min-width: 1025px) {
	.half-and-half + .half-and-half {
		margin-top: -60px;
	}

	.half-and-half-row {
		display: flex;
		flex-wrap: wrap;
	}

	.half-image,
	.half-text {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 50%;
		flex: 0 0 50%;
		max-width: 50%;
	}

	.half-image {
		height: auto;
	}

	.half-image img {
		position: absolute;
	}

	.half-image .watermark img {
		width: 370px;
	}

	.half-and-half-row.large-text-section .half-text {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 58.333333%;
		flex: 0 0 58.333333%;
		max-width: 58.333333%;
	}

	.half-and-half-row.large-text-section .half-image {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 41.666667%;
		flex: 0 0 41.666667%;
		max-width: 41.666667%;
	}

	.half-text__body-inner {
		max-width: 530px;
		width: 100%;
	}

	.half-and-half-row.large-text-section .half-text__body-inner {
		max-width: 750px;
		padding-left: 60px;
	}

	.half-text-left .half-text__body-inner {
		margin-left: auto;
	}

	.half-text .watermark img {
		width: 370px;
	}
}

@media (min-width: 1200px) {
	.half-text .watermark img {
		width: 530px;
	}
}

@media (min-width: 1366px) {
	.half-text-right .half-text__body {
		padding-left: 50px;
	}

	.half-text-left .half-text__body {
		padding-right: 50px;
	}
}

/* Team  */

.team-item {
	display: flex;
	flex-direction: column;
}

.team-item__member {
	display: flex;
	flex-direction: column;
	flex: 1 1 auto;
	margin: 0 auto;
	max-width: 400px;
	width: 100%;
	padding: 20px;
	transition: background 0.35s, box-shadow 0.35s;
	position: relative;
}

.team-item__member .watermark {
	position: absolute;
	bottom: 0;
	left: 0;
	opacity: 0;
	max-width: 160px;
	transition: opacity 0.35s;
}

.team-item__member figcaption a {
	display: block;
}

.team-item__member figcaption a:hover,
.team-item__member figcaption a:focus,
.team-item__member figcaption a:active {
	background: transparent;
	outline: none;
	box-shadow: none;
	border-color: transparent;
}

.team-item__member figcaption h4 {
	margin-bottom: 4px;
	text-transform: none;
}

.team-item__member figcaption h5 {
	color: #555a5c;
	font-size: 14px;
	margin-bottom: 0;
	text-transform: uppercase;
}

.team-item__member a::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 2;
	pointer-events: auto;
}

.team-item__member-image {
	border: 1px solid transparent;
	border-radius: 100%;
	display: flex;
	flex-direction: column;
	height: 150px;
	max-width: 150px;
	margin-left: auto;
	margin-right: auto;
	width: 100%;
	position: relative;
	overflow: hidden;
	transition: border 0.35s;
}

.team-item__member-image::before {
	content: "";
	background: rgba(0, 29, 14, 0.55);
	/*background: rgb(0,132,61);*/
	/*background: linear-gradient(180deg, rgba(0,132,61,1) 0%, rgba(0,70,33,1) 73%, rgba(0,66,31,1) 100%);*/
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: 1;
	opacity: 0;
	transition: opacity 0.35s;
}

.team-item__member-image img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
}

.team-item__member-image span {
	color: #fff;
	display: inline-block;
	font-size: 18px;
	font-weight: 700;
	margin-top: auto;
	margin-bottom: auto;
	padding: 2px 2px 5px;
	position: relative;
	z-index: 2;
	opacity: 0;
	transition: opacity 0.35s;
}

.team-item__member-image span::before {
	background-color: #fff;
	content: "";
	height: 1px;
	width: 55%;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	margin-left: auto;
	margin-right: auto;
}

@media (min-width: 768px) {
	.team-item:nth-child(n + 3) {
		margin-top: 2rem;
	}
}

@media (min-width: 1025px) {
	.team-item__member-image {
		height: 232px;
		max-width: 232px;
	}

	.team-item__member:hover {
		background: #fff;
		box-shadow: 0 6px 12px rgba(0, 29, 14, 0.45);
		outline: none;
		cursor: pointer;
	}

	.team-item__member:hover a:focus,
	.team-item__member:hover a:active {
		background: #fff;
		outline: 0;
		box-shadow: none;
	}

	.team-item__member:hover .team-item__member-image span {
		opacity: 1;
	}

	.team-item__member:hover .team-item__member-image::before {
		opacity: 0.73;
	}

	.team-item__member:hover .watermark {
		opacity: 1;
	}

	.team-item__member figcaption h5 {
		font-size: 18px;
	}
}

@media (min-width: 1200px) {
	.team-item:nth-child(n + 3) {
		margin-top: 0;
	}

	.team-item:nth-child(n + 4) {
		margin-top: 2.5rem;
	}
}

/* Modal Popup  */

.modal-open .modal,
.btn:focus {
	outline: none !important;
}

.fade {
	transition: opacity 0.15s linear;
}

.fade:not(.show) {
	opacity: 0;
}

.modal {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1050;
	display: none;
	width: 100%;
	height: 100%;
	overflow: hidden;
	outline: 0;
}

.modal-open .modal {
	overflow-x: hidden;
	overflow-y: auto;
	background: rgba(193, 199, 201, 0.62);
}

.show {
	display: block !important;
}

.modal.show .modal-dialog {
	-webkit-transform: none;
	transform: none;
}

.modal-dialog {
	margin: 1.75rem auto;
	max-width: 1080px;
	position: relative;
	width: 95%;
	pointer-events: none;
}

.modal-content {
	position: relative;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-direction: column;
	flex-direction: column;
	width: 100%;
	pointer-events: auto;
	background-color: #fff;
	background-clip: padding-box;
	border-radius: 0;
	outline: 0;
}

.modal-header {
	background: transparent
		linear-gradient(270deg, #00843d 0%, #004621 68%, #00421f 100%) 0% 0%
		no-repeat padding-box;
	padding: 25px;
}

.modal-title {
	color: #fff;
	margin-bottom: 0;
	line-height: 1.5;
	text-transform: none;
}

.modal-subtitle {
	color: #fff;
	margin-bottom: 0;
	font-weight: 500;
}

.modal-header .close {
	padding: 1rem 1rem;
	margin: -1rem -1rem -1rem auto;
}

.modal-dialog button.close {
	position: absolute;
	background: #fff;
	border-radius: 100%;
	z-index: 9;
	opacity: 1;
	width: 45px;
	height: 45px;
	font-size: 24px;
	padding-top: 14px;
	padding-left: 15px;
	top: 40px;
	right: 30px;
}

button.close {
	padding: 0;
	background-color: transparent;
	border: 0;
}

.close {
	float: right;
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 1;
	color: #000;
	text-shadow: 0 1px 0 #fff;
	opacity: 0.5;
}

.modal-body {
	position: relative;
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
	padding: 1rem 2rem 2rem;
}

.modal-image {
	border-radius: 100%;
	height: 176px;
	margin-left: auto;
	margin-right: auto;
	max-width: 176px;
	width: 100%;
	overflow: hidden;
	position: relative;
}

.modal-image img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
}

.modal-dialog-centered {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	min-height: calc(100% - (0.5rem * 2));
}

.modal-dialog-centered {
	min-height: calc(100% - (1.75rem * 2));
}

.modal-dialog button.close span {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 20px;
	color: #00843d;
}

@media (min-width: 320px) and (max-width: 767px) {
	.modal-header {
		padding-left: 15px;
		padding-left: 15px;
		text-align: center;
	}

	.modal-body:before {
		opacity: 0.1;
	}
}

@media (min-width: 768px) {
	.modal-dialog button.close {
		width: 63px;
		height: 63px;
		padding: 15px;
		top: 40px;
		right: 42px;
	}
}

@media (min-width: 1025px) {
	.modal-image {
		transform: translateY(-150px);
	}

	.modal-body {
		padding: 4rem 2rem;
	}
}

/* CTA - Call to Action */

.cta {
	padding-bottom: 60px;
	padding-top: 60px;
	position: relative;
}

.cta::before {
	content: "";
	background: rgb(0, 132, 61);
	background: linear-gradient(
		#b7d6c5 0%,
		#eff1f0 49.26%,
		rgba(255, 255, 255, 0.82) 100%
	);
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: 1;
	opacity: 0.85;
}

.cta .btn-secondary {
	border: 3.5px solid #ebebeb;
}

.cta .btn-secondary:hover {
	border-color: #00843d;
	color: #00843d;
}

.cta__image {
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	object-fit: cover;
}

.cta .container {
	position: relative;
	z-index: 2;
}

.cta__inner {
	margin-left: auto;
	margin-right: auto;
	max-width: 480px;
	text-align: center;
	width: 100%;
}

.cta .section-heading {
	padding-bottom: 15px;
	position: relative;
}

.cta .section-heading::after {
	content: "";
	background-color: #001d0e;
	height: 4px;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	width: 35%;
	margin-left: auto;
	margin-right: auto;
}

.cta--join::before {
	display: none;
}

.cta--join .cta__inner {
	background: rgb(0, 132, 61);
	background: linear-gradient(
		270deg,
		rgba(0, 132, 61, 1) 0%,
		rgba(0, 70, 33, 1) 73%,
		rgba(0, 66, 31, 1) 100%
	);
	padding: 35px;
	max-width: none;
}

.cta--join .section-heading {
	color: #fff;
	margin-right: 0;
	margin-bottom: 0;
	padding-bottom: 0;
}

.cta--join .section-heading::after {
	display: none;
}

/*.cta--join .btn-secondary:hover {
    border-color: #001D0E;
}*/

@media (min-width: 768px) {
	.cta::before {
		background: rgb(183, 214, 197);
		background: linear-gradient(
			90deg,
			#b7d6c5 0%,
			#eff1f0 49.26%,
			rgba(55, 78, 66, 0.35) 79.92%,
			rgba(84, 104, 94, 0) 100%
		);
	}

	.cta__inner {
		margin-left: initial;
	}

	.cta--join::before {
		display: none;
	}

	.cta--join .cta__inner {
		display: flex;
		align-items: center;
		justify-content: flex-end;
	}

	.cta--join .section-heading {
		margin-right: 1rem;
	}
}

@media (min-width: 1025px) {
	.cta {
		padding-bottom: 100px;
		padding-top: 100px;
	}

	.cta__inner {
		max-width: 800px;
	}

	.cta--join .cta__inner {
		border-top-right-radius: 29px;
		border-bottom-right-radius: 29px;
		padding: 35px 45px 35px 20px;
	}

	.cta--join .section-heading {
		margin-right: 3rem;
	}
}

/* Contact page  */

.page-template-contact-page .has-tree-bg::after {
	z-index: 2;
}

.page-template-contact-page .container {
	position: relative;
	z-index: 3;
}

.contact-wrapper {
	padding-top: 40px;
	padding-bottom: 40px;
	position: relative;
	overflow: hidden;
}

.contact-wrapper > img {
	display: none;
}

.contact-wrapper .contact-form-col {
	padding-bottom: 30px;
}

.form-input {
	position: relative;
}

.form-input input,
.form-input textarea {
	color: #00843d;
}

.form-input input:focus {
	padding-top: 15px;
}

.form-input textarea:focus {
	padding-top: 20px;
}

.form-input-label {
	position: absolute;
	pointer-events: none;
	left: 20px;
	top: 18px;
	transition: 0.2s ease all;
	opacity: 0;
	font-weight: 700;
}

.form-input.active .form-input-label,
.form-input.active .form-input-label {
	top: 7px;
	bottom: 10px;
	left: 20px;
	font-size: 11px;
	opacity: 1;
}

.form-input.active ::-webkit-input-placeholder {
	color: transparent;
}

.form-input.active :-moz-placeholder {
	/* Firefox 18- */
	color: transparent;
}

.form-input.active ::-moz-placeholder {
	/* Firefox 19+ */
	color: transparent;
}

.form-input.active :-ms-input-placeholder {
	color: transparent;
}

/*  Locations page */
.locations-wrapper {
	position: relative;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	flex-direction: column-reverse;
	margin-bottom: 40px;
}

.locations-wrapper #locations_map {
	height: 762px;
}

.locations__left,
.locations__right {
	width: 100%;
}

.locations__left h4 {
	text-transform: none;
}

.locations-map img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.locations__left .accordion {
	width: 100%;
	margin: 30px 0 0;
	background: #b7d6c5;
}

.locations__left .accordion h3 {
	position: relative;
	background: #007c39;
	padding: 35px 60px 35px 38px;
	margin-top: 0;
	margin-bottom: 0;
	border-top: solid 1px #d6e3dc;
	border-bottom: none;
	cursor: pointer;
	font-size: 18px;
	font-weight: 700;
	color: #eff1f0;
	position: relative;
	text-transform: uppercase;
	line-height: 1.4;
}

.locations__left .accordion h3:before {
	position: absolute;
	content: "";
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: #007c39;
	border-bottom: solid 1px #d6e3dc;
}

.locations__left .accordion h3:after {
	position: absolute;
	right: 33px;
	top: 50%;
	transform: translateY(-50%);
	content: "\e90a";
	font-family: "icomoon";
	font-size: 15px;
	color: #eff1f0;
}

.locations__left .accordion h3:hover {
	background-color: rgba(0, 124, 57, 0.9);
}

.locations__left .accordion h3:hover:before {
	background-color: rgba(0, 124, 57, 0.9);
}

.js-fixed,
.selectric-open {
	z-index: 9999;
}

.selectric-disabled,
.selectric-items .disabled {
	-webkit-user-select: none;
	-ms-user-select: none;
}

.hidden,
.invisible,
.selectric-temp-show {
	visibility: hidden !important;
}

.location-filter .wpcm-zip__zipcode {
	margin-bottom: 16px;
}

.location-filter .selectric {
	background: #001d0e;
}

.location-filter .selectric-open .selectric {
	background: #001d0e;
}

.location-filter .selectric .label {
	color: #fff;
}

.location-filter .selectric-wrapper:first-of-type {
	margin-bottom: 10px;
}

.locations__left .accordion-content {
	display: none;
	padding: 15px 30px 30px;
	color: #001d0e;
	background: #b7d6c5;
	border-bottom: solid 1px #d6e3dc;
}

.location-details__single {
	padding: 0 11px;
}

.location-details__single h6 {
	margin-bottom: 12px;
	text-transform: none;
}

@media (min-width: 768px) {
	.contact-wrapper > img {
		display: block;
		width: 100%;
		height: auto;
		position: absolute;
		bottom: 0;
		left: 0;
		object-position: bottom center;
		object-fit: cover;
	}

	.location-filter .wpcm-zip__zipcode,
	.location-filter .selectric-wrapper {
		width: 300px;
	}

	.location-filter .selectric-wrapper:first-of-type {
		margin-right: 4%;
	}
}

@media (min-width: 992px) {
	.location-margin--left {
		margin-right: 0;
		margin-left: calc(45vw - 435px);
	}
}

@media (min-width: 1025px) {
	.locations-wrapper {
		flex-direction: row;
	}

	.locations__left {
		width: 37%;
	}

	.locations__right {
		width: 63%;
	}

	.locations__left {
		height: 762px;
		overflow-y: auto;
	}

	.locations__left .accordion h3:after {
		right: 18px;
	}

	.locations__left .accordion h3 {
		padding-left: 15px;
	}
}

@media (min-width: 1200px) {
	.location-margin--left {
		margin-left: calc(45vw - 535px);
	}
}

@media (min-width: 1366px) {
	.location-margin--left {
		margin-left: calc(45vw - 585px);
	}
}

.selectric-wrapper {
	position: relative;
	cursor: pointer;
	width: 100%;
}

.selectric-first {
	margin-right: 10px;
}

.selectric-responsive {
	width: 100%;
}

.selectric {
	border: 0 solid #e6e6e6;
	background: #e6e6e6;
	position: relative;
	border-radius: 0;
}

.selectric .label {
	display: block;
	white-space: nowrap;
	overflow: hidden;
	-o-text-overflow: ellipsis;
	text-overflow: ellipsis;
	margin: 0 42px 0 16px;
	font-size: 18px;
	line-height: 60px;
	text-transform: uppercase;
	color: #333;
	height: 60px;
}

.selectric .button,
.selectric .button:after {
	position: absolute;
	bottom: 0;
	margin: auto;
	top: 0;
}

.selectric .button {
	border-radius: 0;
	display: block;
	right: 2px;
	width: 38px;
	height: 38px;
	color: #a9a9a9;
	text-align: center;
	font: 0/0 a;
}

.page-template-page-applyindeed .form-mobile .landing-masthead__form,
.page-template-page-applyindeed .landing-masthead,
.page-template-page-career-landing .form-mobile .landing-masthead__form,
.page-template-page-career-landing .landing-masthead,
.post-4115 {
	-webkit-font-smoothing: antialiased;
}

.selectric .button:after {
	content: " ";
	right: 0;
	left: 0;
	width: 0;
	height: 0;
	border: 8px solid transparent;
	border-top-color: #fff;
	border-bottom: none;
}

.selectric-focus .selectric {
	border-color: #aaa;
}

.selectric-hover .selectric {
	border-color: #0c0c0c;
}

.selectric-hover .selectric .button {
	color: #edcf2f;
}

.selectric-hover .selectric .button:after {
	border-top-color: #007c39;
}

.selectric-open .selectric {
	border-color: #999;
	background: #999;
}

.selectric-open .selectric-items {
	display: block;
}

.selectric-disabled {
	opacity: 0.5;
	cursor: default;
	-moz-user-select: none;
	-webkit-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.selectric-hide-select {
	position: relative;
	overflow: hidden;
	width: 0;
	height: 0;
}

.selectric-hide-select select {
	position: absolute;
	left: -100%;
}

.selectric-hide-select.selectric-is-native {
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: 10;
}

.selectric-hide-select.selectric-is-native select {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 100%;
	width: 100%;
	border: none;
	z-index: 1;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	opacity: 0;
}

.selectric-input {
	position: absolute !important;
	top: 0 !important;
	left: 0 !important;
	overflow: hidden !important;
	clip: rect(0, 0, 0, 0) !important;
	margin: 0 !important;
	padding: 0 !important;
	width: 1px !important;
	height: 1px !important;
	outline: 0 !important;
	border: none !important;
	background: 0 0 !important;
}

.selectric-temp-show {
	position: absolute !important;
	display: block !important;
}

.selectric-items {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	background: #fff;
	border: 1px solid #c4c4c4;
	z-index: -1;
	-webkit-box-shadow: 0 0 10px -6px;
	box-shadow: 0 0 10px -6px;
}

.selectric-items .selectric-scroll {
	height: 100%;
	overflow: auto;
}

.selectric-above .selectric-items {
	top: auto;
	bottom: 100%;
}

.selectric-items li,
.selectric-items ul {
	list-style: none;
	margin: 0;
	font-size: 18px;
	line-height: 20px;
	min-height: 20px;
	border-top: 1px solid #efefef;
}

.selectric-items ul {
	padding: 0;
}

.selectric-items li {
	padding: 15px;
}

.selectric-items li:before {
	display: none;
}

/*  WATERMARK BACKGROUND */

.has-tree-bg,
.has-tree-watermark,
.has-leaf-green-watermark,
.has-grass-watermark,
.has-leaves-watermark {
	overflow: hidden;
	position: relative;
}

.has-tree-bg::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background-repeat: no-repeat;
	background-size: contain;
	background-position: bottom center;
	z-index: -1;
}

.has-tree-bg::after {
	background-image: url("../img/tree-bg.svg");
}

.has-tree-watermark .watermark {
	position: absolute;
	bottom: 0;
	right: -270px;
	height: auto;
	z-index: -1;
	object-position: bottom right;
	object-fit: cover;
}

.has-leaf-green-watermark > .watermark {
	position: absolute;
	height: auto;
	width: 60%;
	opacity: 0.04;
	z-index: -1;
	object-fit: cover;
}

.has-leaf-green-watermark > .watermark.is-left {
	bottom: -10px;
	left: -230px;
	object-position: bottom left;
}

.has-leaf-green-watermark > .watermark.is-right {
	top: 80px;
	right: -230px;
	transform: rotate(270deg);
	object-position: top right;
}

/*------------------------------------*\
    404
\*------------------------------------*/

/* 404 page */

.error404 .service-item {
	height: 100px;
	flex: 0 0 100%;
	max-width: 100%;
	margin-bottom: 35px;
	padding: 0;
}

.error404 h2,
.error404 h4 {
	text-transform: inherit;
}

.error404 h4 {
	font-size: 18px;
	margin-bottom: 10px;
}

.error-page-search-form p {
	margin-bottom: 0;
	margin-top: 0;
	position: relative;
}

.error-page-search-form label {
	display: none;
}

.error-page-search-form input {
	outline: none;
	border-radius: 0 5px 5px 0;
}

.error-page-search-form p:last-child {
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	height: 100%;
}

.error-page-search-form button {
	background: transparent
		linear-gradient(92deg, #00843d 0%, #004621 68%, #00421f 100%) 0% 0%
		no-repeat padding-box;
	color: #fff;
	font-weight: 700;
	padding: 15px 40px;
	border: 0;
	border-radius: 0 5px 5px 0;
	height: 100%;
	transition: 0.35s all;
}

.error-page-search-form button:hover {
	background: transparent
		linear-gradient(270deg, #00843d 0%, #004621 68%, #00421f 100%) 0% 0%
		no-repeat padding-box;
	box-shadow: 0px 3px 12px #00843d57;
}

.error404 .error-search {
	margin-bottom: 50px;
}

.error404 .error-search form {
	position: relative;
}

.error-contact {
	text-align: center;
}

.error-contact a {
	width: 100%;
}

@media (min-width: 600px) {
	.error404 .imgbtn-cont {
		margin-bottom: 40px;
	}
	.imgbtn-hovcont {
		margin-bottom: 40px;
	}
	.error-contact a {
		width: initial;
	}

	.error404 .service-item {
		height: 250px;
	}
}

@media (min-width: 1025px) {
	.error404 .error-search {
		margin-bottom: 0;
	}
}

@media (min-width: 1200px) {
	.error404 h4 {
		font-size: 28px;
	}
}

/*------------------------------------*\
    Slider Styling - Preloading
\*------------------------------------*/

.fx-slider .fx-slide {
	display: none;
}

.fx-slider .fx-slide:first-child {
	display: block;
}

.fx-slider.slick-initialized .fx-slide {
	display: block;
}

/*------------------------------------*\
    Helper Classes
\*------------------------------------*/

.list-style-none {
	margin: 0;
	list-style: none;
	padding: 0;
}

.list-style-none li {
	padding-left: 0;
}

.list-style-none li::before {
	display: none;
}

/*------------------------------------*\
    Trumps
\*------------------------------------*/

@-ms-viewport {
	width: device-width;
}

/**
 * Images
 */

.img-responsive {
	display: block;
	max-width: 100%;
	height: auto;
}

/**
 * Visiblity
 */

.show {
	display: block !important;
}

.visible-xxs,
.visible-xs,
.visible-sm,
.visible-md,
.visible-lg {
	display: none !important;
}

.visible-xxs-block,
.visible-xxs-inline,
.visible-xxs-inline-block,
.visible-xs-block,
.visible-xs-inline,
.visible-xs-inline-block,
.visible-sm-block,
.visible-sm-inline,
.visible-sm-inline-block,
.visible-md-block,
.visible-md-inline,
.visible-md-inline-block,
.visible-lg-block,
.visible-lg-inline,
.visible-lg-inline-block {
	display: none !important;
}

@media (max-width: 599px) {
	.visible-xxs {
		display: block !important;
	}
	table.visible-xxs {
		display: table;
	}
	tr.visible-xxs {
		display: table-row !important;
	}
	th.visible-xxs,
	td.visible-xxs {
		display: table-cell !important;
	}

	.visible-xxs-block {
		display: block !important;
	}
	.visible-xxs-inline {
		display: inline !important;
	}
	.visible-xxs-inline-block {
		display: inline-block !important;
	}
}

@media (min-width: 600px) and (max-width: 767px) {
	.visible-xs {
		display: block !important;
	}
	table.visible-xs {
		display: table;
	}
	tr.visible-xs {
		display: table-row !important;
	}
	th.visible-xs,
	td.visible-xs {
		display: table-cell !important;
	}

	.visible-xs-block {
		display: block !important;
	}
	.visible-xs-inline {
		display: inline !important;
	}
	.visible-xs-inline-block {
		display: inline-block !important;
	}
}

@media (min-width: 768px) and (max-width: 1024px) {
	.visible-sm {
		display: block !important;
	}
	table.visible-sm {
		display: table;
	}
	tr.visible-sm {
		display: table-row !important;
	}
	th.visible-sm,
	td.visible-sm {
		display: table-cell !important;
	}

	.visible-sm-block {
		display: block !important;
	}
	.visible-sm-inline {
		display: inline !important;
	}
	.visible-sm-inline-block {
		display: inline-block !important;
	}
}

@media (min-width: 1025px) and (max-width: 1199px) {
	.visible-md {
		display: block !important;
	}
	table.visible-md {
		display: table;
	}
	tr.visible-md {
		display: table-row !important;
	}
	th.visible-md,
	td.visible-md {
		display: table-cell !important;
	}

	.visible-md-block {
		display: block !important;
	}
	.visible-md-inline {
		display: inline !important;
	}
	.visible-md-inline-block {
		display: inline-block !important;
	}
}

@media (min-width: 1200px) {
	.visible-lg {
		display: block !important;
	}
	table.visible-lg {
		display: table;
	}
	tr.visible-lg {
		display: table-row !important;
	}
	th.visible-lg,
	td.visible-lg {
		display: table-cell !important;
	}

	.visible-lg-block {
		display: block !important;
	}
	.visible-lg-inline {
		display: inline !important;
	}
	.visible-lg-inline-block {
		display: inline-block !important;
	}
}

/**
 * Hiding
 */

.hide,
.hidden-xxs-up {
	display: none !important;
}
.hidden {
	display: none !important;
	visibility: hidden !important;
}
.invisible {
	visibility: hidden !important;
}
.text-hide {
	font: 0/0 a;
	color: transparent;
	text-shadow: none;
	background-color: transparent;
	border: 0;
}

@media (max-width: 599px) {
	.hidden-xxs {
		display: none !important;
	}
}

@media (min-width: 600px) {
	.hidden-xs-up {
		display: none !important;
	}
}

@media (min-width: 600px) and (max-width: 767px) {
	.hidden-xs {
		display: none !important;
	}
}

@media (max-width: 767px) {
	.hidden-xs-down {
		display: none !important;
	}
}

@media (min-width: 768px) {
	.hidden-sm-up {
		display: none !important;
	}
}

@media (min-width: 768px) and (max-width: 1024px) {
	.hidden-sm {
		display: none !important;
	}
}

@media (max-width: 1024px) {
	.hidden-sm-down {
		display: none !important;
	}
}

@media (min-width: 1025px) {
	.hidden-md-up {
		display: none !important;
	}
}

@media (min-width: 1025px) and (max-width: 1199px) {
	.hidden-md {
		display: none !important;
	}
}

@media (max-width: 1199px) {
	.hidden-md-down {
		display: none !important;
	}
}

@media (min-width: 1200px) {
	.hidden-lg {
		display: none !important;
	}
}

/**
 * Screen Readers
 */

.sr-only,
.screen-reader-text,
.wpcf7 .screen-reader-response {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	border: 0;
}
.sr-only-focusable:active,
.sr-only-focusable:focus {
	position: static;
	width: auto;
	height: auto;
	margin: 0;
	overflow: visible;
	clip: auto;
}

/**
 * Print
 */

.visible-print,
.visible-print-block,
.visible-print-inline,
.visible-print-inline-block {
	display: none !important;
}

@media print {
	.visible-print {
		display: block !important;
	}
	table.visible-print {
		display: table;
	}
	tr.visible-print {
		display: table-row !important;
	}
	th.visible-print,
	td.visible-print {
		display: table-cell !important;
	}

	.visible-print-block {
		display: block !important;
	}
	.visible-print-inline {
		display: inline !important;
	}
	.visible-print-inline-block {
		display: inline-block !important;
	}

	.hidden-print {
		display: none !important;
	}
}

/**
 * Text alignment
 */

.text-left {
	text-align: left !important;
}
.text-center {
	text-align: center !important;
}
.text-right {
	text-align: right !important;
}

/**
 * Positioning
 */

.affix-top {
	position: fixed !important;
	top: 0 !important;
}
.affix-bottom {
	position: fixed !important;
	bottom: 0 !important;
}
.affix-left {
	position: fixed !important;
	left: 0 !important;
}
.affix-right {
	position: fixed !important;
	right: 0 !important;
}

.pull-right {
	float: right !important;
}
.pull-left {
	float: left !important;
}

.center-block {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

/**
 * Add/remove margins
 */

.push {
	margin: 20px !important;
}
.push-top {
	margin-top: 20px !important;
}
.push-right {
	margin-right: 20px !important;
}
.push-bottom {
	margin-bottom: 20px !important;
}
.push-left {
	margin-left: 20px !important;
}
.push-ends {
	margin-top: 20px !important;
	margin-bottom: 20px !important;
}
.push-sides {
	margin-right: 20px !important;
	margin-left: 20px !important;
}

.push-half {
	margin: 10px !important;
}
.push-half-top {
	margin-top: 10px !important;
}
.push-half-right {
	margin-right: 10px !important;
}
.push-half-bottom {
	margin-bottom: 10px !important;
}
.push-half-left {
	margin-left: 10px !important;
}
.push-half-ends {
	margin-top: 10px !important;
	margin-bottom: 10px !important;
}
.push-half-sides {
	margin-right: 10px !important;
	margin-left: 10px !important;
}

.flush {
	margin: 0 !important;
}
.flush-top {
	margin-top: 0 !important;
}
.flush-right {
	margin-right: 0 !important;
}
.flush-bottom {
	margin-bottom: 0 !important;
}
.flush-left {
	margin-left: 0 !important;
}
.flush-ends {
	margin-top: 0 !important;
	margin-bottom: 0 !important;
}
.flush-sides {
	margin-right: 0 !important;
	margin-left: 0 !important;
}

/**
 * Add/remove paddings
 */
.soft {
	padding: 20px !important;
}
.soft-top {
	padding-top: 20px !important;
}
.soft-right {
	padding-right: 20px !important;
}
.soft-bottom {
	padding-bottom: 20px !important;
}
.soft-left {
	padding-left: 20px !important;
}
.soft-ends {
	padding-top: 20px !important;
	padding-bottom: 20px !important;
}
.soft-sides {
	padding-right: 20px !important;
	padding-left: 20px !important;
}

.soft-half {
	padding: 10px !important;
}
.soft-half-top {
	padding-top: 10px !important;
}
.soft-half-right {
	padding-right: 10px !important;
}
.soft-half-bottom {
	padding-bottom: 10px !important;
}
.soft-half-left {
	padding-left: 10px !important;
}
.soft-half-ends {
	padding-top: 10px !important;
	padding-bottom: 10px !important;
}
.soft-half-sides {
	padding-right: 10px !important;
	padding-left: 10px !important;
}

.hard {
	padding: 0 !important;
}
.hard-top {
	padding-top: 0 !important;
}
.hard-right {
	padding-right: 0 !important;
}
.hard-bottom {
	padding-bottom: 0 !important;
}
.hard-left {
	padding-left: 0 !important;
}
.hard-ends {
	padding-top: 0 !important;
	padding-bottom: 0 !important;
}
.hard-sides {
	padding-right: 0 !important;
	padding-left: 0 !important;
}

@media (min-width: 600px) {
	.flush-xs {
		margin: 0 !important;
	}
	.flush-xs-top {
		margin-top: 0 !important;
	}
	.flush-xs-right {
		margin-right: 0 !important;
	}
	.flush-xs-bottom {
		margin-bottom: 0 !important;
	}
	.flush-xs-left {
		margin-left: 0 !important;
	}
	.flush-xs-ends {
		margin-top: 0 !important;
		margin-bottom: 0 !important;
	}
	.flush-xs-sides {
		margin-right: 0 !important;
		margin-left: 0 !important;
	}

	.push-xs {
		margin: 20px !important;
	}
	.push-xs-top {
		margin-top: 20px !important;
	}
	.push-xs-right {
		margin-right: 20px !important;
	}
	.push-xs-bottom {
		margin-bottom: 20px !important;
	}
	.push-xs-left {
		margin-left: 20px !important;
	}
	.push-xs-ends {
		margin-top: 20px !important;
		margin-bottom: 20px !important;
	}
	.push-xs-sides {
		margin-right: 20px !important;
		margin-left: 20px !important;
	}

	.push-half-xs {
		margin: 10px !important;
	}
	.push-half-xs-top {
		margin-top: 10px !important;
	}
	.push-half-xs-right {
		margin-right: 10px !important;
	}
	.push-half-xs-bottom {
		margin-bottom: 10px !important;
	}
	.push-half-xs-left {
		margin-left: 10px !important;
	}
	.push-half-xs-ends {
		margin-top: 10px !important;
		margin-bottom: 10px !important;
	}
	.push-half-xs-sides {
		margin-right: 10px !important;
		margin-left: 10px !important;
	}

	.push-double-xs {
		margin: 40px !important;
	}
	.push-double-xs-top {
		margin-top: 40px !important;
	}
	.push-double-xs-right {
		margin-right: 40px !important;
	}
	.push-double-xs-bottom {
		margin-bottom: 40px !important;
	}
	.push-double-xs-left {
		margin-left: 40px !important;
	}
	.push-double-xs-ends {
		margin-top: 40px !important;
		margin-bottom: 40px !important;
	}
	.push-double-xs-sides {
		margin-right: 40px !important;
		margin-left: 40px !important;
	}

	.push-triple-xs {
		margin: 60px !important;
	}
	.push-triple-xs-top {
		margin-top: 60px !important;
	}
	.push-triple-xs-right {
		margin-right: 60px !important;
	}
	.push-triple-xs-bottom {
		margin-bottom: 60px !important;
	}
	.push-triple-xs-left {
		margin-left: 60px !important;
	}
	.push-triple-xs-ends {
		margin-top: 60px !important;
		margin-bottom: 60px !important;
	}
	.push-triple-xs-sides {
		margin-right: 60px !important;
		margin-left: 60px !important;
	}

	.soft-xs {
		padding: 20px !important;
	}
	.soft-xs-top {
		padding-top: 20px !important;
	}
	.soft-xs-right {
		padding-right: 20px !important;
	}
	.soft-xs-bottom {
		padding-bottom: 20px !important;
	}
	.soft-xs-left {
		padding-left: 20px !important;
	}
	.soft-xs-ends {
		padding-top: 20px !important;
		padding-bottom: 20px !important;
	}
	.soft-xs-sides {
		padding-right: 20px !important;
		padding-left: 20px !important;
	}

	.soft-half-xs {
		padding: 10px !important;
	}
	.soft-half-xs-top {
		padding-top: 10px !important;
	}
	.soft-half-xs-right {
		padding-right: 10px !important;
	}
	.soft-half-xs-bottom {
		padding-bottom: 10px !important;
	}
	.soft-half-xs-left {
		padding-left: 10px !important;
	}
	.soft-half-xs-ends {
		padding-top: 10px !important;
		padding-bottom: 10px !important;
	}
	.soft-half-xs-sides {
		padding-right: 10px !important;
		padding-left: 10px !important;
	}

	.soft-double-xs {
		padding: 40px !important;
	}
	.soft-double-xs-top {
		padding-top: 40px !important;
	}
	.soft-double-xs-right {
		padding-right: 40px !important;
	}
	.soft-double-xs-bottom {
		padding-bottom: 40px !important;
	}
	.soft-double-xs-left {
		padding-left: 40px !important;
	}
	.soft-double-xs-ends {
		padding-top: 40px !important;
		padding-bottom: 40px !important;
	}
	.soft-double-xs-sides {
		padding-right: 40px !important;
		padding-left: 40px !important;
	}

	.soft-triple-xs {
		padding: 60px !important;
	}
	.soft-triple-xs-top {
		padding-top: 60px !important;
	}
	.soft-triple-xs-right {
		padding-right: 60px !important;
	}
	.soft-triple-xs-bottom {
		padding-bottom: 60px !important;
	}
	.soft-triple-xs-left {
		padding-left: 60px !important;
	}
	.soft-triple-xs-ends {
		padding-top: 60px !important;
		padding-bottom: 60px !important;
	}
	.soft-triple-xs-sides {
		padding-right: 60px !important;
		padding-left: 60px !important;
	}

	.hard-xs {
		padding: 0 !important;
	}
	.hard-xs-top {
		padding-top: 0 !important;
	}
	.hard-xs-right {
		padding-right: 0 !important;
	}
	.hard-xs-bottom {
		padding-bottom: 0 !important;
	}
	.hard-xs-left {
		padding-left: 0 !important;
	}
	.hard-xs-ends {
		padding-top: 0 !important;
		padding-bottom: 0 !important;
	}
	.hard-xs-sides {
		padding-right: 0 !important;
		padding-left: 0 !important;
	}
}

@media (min-width: 768px) {
	.flush-sm {
		margin: 0 !important;
	}
	.flush-sm-top {
		margin-top: 0 !important;
	}
	.flush-sm-right {
		margin-right: 0 !important;
	}
	.flush-sm-bottom {
		margin-bottom: 0 !important;
	}
	.flush-sm-left {
		margin-left: 0 !important;
	}
	.flush-sm-ends {
		margin-top: 0 !important;
		margin-bottom: 0 !important;
	}
	.flush-sm-sides {
		margin-right: 0 !important;
		margin-left: 0 !important;
	}

	.push-sm {
		margin: 20px !important;
	}
	.push-sm-top {
		margin-top: 20px !important;
	}
	.push-sm-right {
		margin-right: 20px !important;
	}
	.push-sm-bottom {
		margin-bottom: 20px !important;
	}
	.push-sm-left {
		margin-left: 20px !important;
	}
	.push-sm-ends {
		margin-top: 20px !important;
		margin-bottom: 20px !important;
	}
	.push-sm-sides {
		margin-right: 20px !important;
		margin-left: 20px !important;
	}

	.push-half-sm {
		margin: 10px !important;
	}
	.push-half-sm-top {
		margin-top: 10px !important;
	}
	.push-half-sm-right {
		margin-right: 10px !important;
	}
	.push-half-sm-bottom {
		margin-bottom: 10px !important;
	}
	.push-half-sm-left {
		margin-left: 10px !important;
	}
	.push-half-sm-ends {
		margin-top: 10px !important;
		margin-bottom: 10px !important;
	}
	.push-half-sm-sides {
		margin-right: 10px !important;
		margin-left: 10px !important;
	}

	.push-double-sm {
		margin: 40px !important;
	}
	.push-double-sm-top {
		margin-top: 40px !important;
	}
	.push-double-sm-right {
		margin-right: 40px !important;
	}
	.push-double-sm-bottom {
		margin-bottom: 40px !important;
	}
	.push-double-sm-left {
		margin-left: 40px !important;
	}
	.push-double-sm-ends {
		margin-top: 40px !important;
		margin-bottom: 40px !important;
	}
	.push-double-sm-sides {
		margin-right: 40px !important;
		margin-left: 40px !important;
	}

	.push-triple-sm {
		margin: 60px !important;
	}
	.push-triple-sm-top {
		margin-top: 60px !important;
	}
	.push-triple-sm-right {
		margin-right: 60px !important;
	}
	.push-triple-sm-bottom {
		margin-bottom: 60px !important;
	}
	.push-triple-sm-left {
		margin-left: 60px !important;
	}
	.push-triple-sm-ends {
		margin-top: 60px !important;
		margin-bottom: 60px !important;
	}
	.push-triple-sm-sides {
		margin-right: 60px !important;
		margin-left: 60px !important;
	}

	.soft-sm {
		padding: 20px !important;
	}
	.soft-sm-top {
		padding-top: 20px !important;
	}
	.soft-sm-right {
		padding-right: 20px !important;
	}
	.soft-sm-bottom {
		padding-bottom: 20px !important;
	}
	.soft-sm-left {
		padding-left: 20px !important;
	}
	.soft-sm-ends {
		padding-top: 20px !important;
		padding-bottom: 20px !important;
	}
	.soft-sm-sides {
		padding-right: 20px !important;
		padding-left: 20px !important;
	}

	.soft-half-sm {
		padding: 10px !important;
	}
	.soft-half-sm-top {
		padding-top: 10px !important;
	}
	.soft-half-sm-right {
		padding-right: 10px !important;
	}
	.soft-half-sm-bottom {
		padding-bottom: 10px !important;
	}
	.soft-half-sm-left {
		padding-left: 10px !important;
	}
	.soft-half-sm-ends {
		padding-top: 10px !important;
		padding-bottom: 10px !important;
	}
	.soft-half-sm-sides {
		padding-right: 10px !important;
		padding-left: 10px !important;
	}

	.soft-double-sm {
		padding: 40px !important;
	}
	.soft-double-sm-top {
		padding-top: 40px !important;
	}
	.soft-double-sm-right {
		padding-right: 40px !important;
	}
	.soft-double-sm-bottom {
		padding-bottom: 40px !important;
	}
	.soft-double-sm-left {
		padding-left: 40px !important;
	}
	.soft-double-sm-ends {
		padding-top: 40px !important;
		padding-bottom: 40px !important;
	}
	.soft-double-sm-sides {
		padding-right: 40px !important;
		padding-left: 40px !important;
	}

	.soft-triple-sm {
		padding: 60px !important;
	}
	.soft-triple-sm-top {
		padding-top: 60px !important;
	}
	.soft-triple-sm-right {
		padding-right: 60px !important;
	}
	.soft-triple-sm-bottom {
		padding-bottom: 60px !important;
	}
	.soft-triple-sm-left {
		padding-left: 60px !important;
	}
	.soft-triple-sm-ends {
		padding-top: 60px !important;
		padding-bottom: 60px !important;
	}
	.soft-triple-sm-sides {
		padding-right: 60px !important;
		padding-left: 60px !important;
	}

	.hard-sm {
		padding: 0 !important;
	}
	.hard-sm-top {
		padding-top: 0 !important;
	}
	.hard-sm-right {
		padding-right: 0 !important;
	}
	.hard-sm-bottom {
		padding-bottom: 0 !important;
	}
	.hard-sm-left {
		padding-left: 0 !important;
	}
	.hard-sm-ends {
		padding-top: 0 !important;
		padding-bottom: 0 !important;
	}
	.hard-sm-sides {
		padding-right: 0 !important;
		padding-left: 0 !important;
	}
}

@media (min-width: 1025px) {
	.flush-md {
		margin: 0 !important;
	}
	.flush-md-top {
		margin-top: 0 !important;
	}
	.flush-md-right {
		margin-right: 0 !important;
	}
	.flush-md-bottom {
		margin-bottom: 0 !important;
	}
	.flush-md-left {
		margin-left: 0 !important;
	}
	.flush-md-ends {
		margin-top: 0 !important;
		margin-bottom: 0 !important;
	}
	.flush-md-sides {
		margin-right: 0 !important;
		margin-left: 0 !important;
	}

	.push-md {
		margin: 20px !important;
	}
	.push-md-top {
		margin-top: 20px !important;
	}
	.push-md-right {
		margin-right: 20px !important;
	}
	.push-md-bottom {
		margin-bottom: 20px !important;
	}
	.push-md-left {
		margin-left: 20px !important;
	}
	.push-md-ends {
		margin-top: 20px !important;
		margin-bottom: 20px !important;
	}
	.push-md-sides {
		margin-right: 20px !important;
		margin-left: 20px !important;
	}

	.push-half-md {
		margin: 10px !important;
	}
	.push-half-md-top {
		margin-top: 10px !important;
	}
	.push-half-md-right {
		margin-right: 10px !important;
	}
	.push-half-md-bottom {
		margin-bottom: 10px !important;
	}
	.push-half-md-left {
		margin-left: 10px !important;
	}
	.push-half-md-ends {
		margin-top: 10px !important;
		margin-bottom: 10px !important;
	}
	.push-half-md-sides {
		margin-right: 10px !important;
		margin-left: 10px !important;
	}

	.push-double-md {
		margin: 40px !important;
	}
	.push-double-md-top {
		margin-top: 40px !important;
	}
	.push-double-md-right {
		margin-right: 40px !important;
	}
	.push-double-md-bottom {
		margin-bottom: 40px !important;
	}
	.push-double-md-left {
		margin-left: 40px !important;
	}
	.push-double-md-ends {
		margin-top: 40px !important;
		margin-bottom: 40px !important;
	}
	.push-double-md-sides {
		margin-right: 40px !important;
		margin-left: 40px !important;
	}

	.push-triple-md {
		margin: 60px !important;
	}
	.push-triple-md-top {
		margin-top: 60px !important;
	}
	.push-triple-md-right {
		margin-right: 60px !important;
	}
	.push-triple-md-bottom {
		margin-bottom: 60px !important;
	}
	.push-triple-md-left {
		margin-left: 60px !important;
	}
	.push-triple-md-ends {
		margin-top: 60px !important;
		margin-bottom: 60px !important;
	}
	.push-triple-md-sides {
		margin-right: 60px !important;
		margin-left: 60px !important;
	}

	.soft-md {
		padding: 20px !important;
	}
	.soft-md-top {
		padding-top: 20px !important;
	}
	.soft-md-right {
		padding-right: 20px !important;
	}
	.soft-md-bottom {
		padding-bottom: 20px !important;
	}
	.soft-md-left {
		padding-left: 20px !important;
	}
	.soft-md-ends {
		padding-top: 20px !important;
		padding-bottom: 20px !important;
	}
	.soft-md-sides {
		padding-right: 20px !important;
		padding-left: 20px !important;
	}

	.soft-half-md {
		padding: 10px !important;
	}
	.soft-half-md-top {
		padding-top: 10px !important;
	}
	.soft-half-md-right {
		padding-right: 10px !important;
	}
	.soft-half-md-bottom {
		padding-bottom: 10px !important;
	}
	.soft-half-md-left {
		padding-left: 10px !important;
	}
	.soft-half-md-ends {
		padding-top: 10px !important;
		padding-bottom: 10px !important;
	}
	.soft-half-md-sides {
		padding-right: 10px !important;
		padding-left: 10px !important;
	}

	.soft-double-md {
		padding: 40px !important;
	}
	.soft-double-md-top {
		padding-top: 40px !important;
	}
	.soft-double-md-right {
		padding-right: 40px !important;
	}
	.soft-double-md-bottom {
		padding-bottom: 40px !important;
	}
	.soft-double-md-left {
		padding-left: 40px !important;
	}
	.soft-double-md-ends {
		padding-top: 40px !important;
		padding-bottom: 40px !important;
	}
	.soft-double-md-sides {
		padding-right: 40px !important;
		padding-left: 40px !important;
	}

	.soft-triple-md {
		padding: 60px !important;
	}
	.soft-triple-md-top {
		padding-top: 60px !important;
	}
	.soft-triple-md-right {
		padding-right: 60px !important;
	}
	.soft-triple-md-bottom {
		padding-bottom: 60px !important;
	}
	.soft-triple-md-left {
		padding-left: 60px !important;
	}
	.soft-triple-md-ends {
		padding-top: 60px !important;
		padding-bottom: 60px !important;
	}
	.soft-triple-md-sides {
		padding-right: 60px !important;
		padding-left: 60px !important;
	}

	.hard-md {
		padding: 0 !important;
	}
	.hard-md-top {
		padding-top: 0 !important;
	}
	.hard-md-right {
		padding-right: 0 !important;
	}
	.hard-md-bottom {
		padding-bottom: 0 !important;
	}
	.hard-md-left {
		padding-left: 0 !important;
	}
	.hard-md-ends {
		padding-top: 0 !important;
		padding-bottom: 0 !important;
	}
	.hard-md-sides {
		padding-right: 0 !important;
		padding-left: 0 !important;
	}
}

@media (min-width: 1200px) {
	.flush-lg {
		margin: 0 !important;
	}
	.flush-lg-top {
		margin-top: 0 !important;
	}
	.flush-lg-right {
		margin-right: 0 !important;
	}
	.flush-lg-bottom {
		margin-bottom: 0 !important;
	}
	.flush-lg-left {
		margin-left: 0 !important;
	}
	.flush-lg-ends {
		margin-top: 0 !important;
		margin-bottom: 0 !important;
	}
	.flush-lg-sides {
		margin-right: 0 !important;
		margin-left: 0 !important;
	}

	.push-lg {
		margin: 20px !important;
	}
	.push-lg-top {
		margin-top: 20px !important;
	}
	.push-lg-right {
		margin-right: 20px !important;
	}
	.push-lg-bottom {
		margin-bottom: 20px !important;
	}
	.push-lg-left {
		margin-left: 20px !important;
	}
	.push-lg-ends {
		margin-top: 20px !important;
		margin-bottom: 20px !important;
	}
	.push-lg-sides {
		margin-right: 20px !important;
		margin-left: 20px !important;
	}

	.push-half-lg {
		margin: 10px !important;
	}
	.push-half-lg-top {
		margin-top: 10px !important;
	}
	.push-half-lg-right {
		margin-right: 10px !important;
	}
	.push-half-lg-bottom {
		margin-bottom: 10px !important;
	}
	.push-half-lg-left {
		margin-left: 10px !important;
	}
	.push-half-lg-ends {
		margin-top: 10px !important;
		margin-bottom: 10px !important;
	}
	.push-half-lg-sides {
		margin-right: 10px !important;
		margin-left: 10px !important;
	}

	.push-double-lg {
		margin: 40px !important;
	}
	.push-double-lg-top {
		margin-top: 40px !important;
	}
	.push-double-lg-right {
		margin-right: 40px !important;
	}
	.push-double-lg-bottom {
		margin-bottom: 40px !important;
	}
	.push-double-lg-left {
		margin-left: 40px !important;
	}
	.push-double-lg-ends {
		margin-top: 40px !important;
		margin-bottom: 40px !important;
	}
	.push-double-lg-sides {
		margin-right: 40px !important;
		margin-left: 40px !important;
	}

	.push-triple-lg {
		margin: 60px !important;
	}
	.push-triple-lg-top {
		margin-top: 60px !important;
	}
	.push-triple-lg-right {
		margin-right: 60px !important;
	}
	.push-triple-lg-bottom {
		margin-bottom: 60px !important;
	}
	.push-triple-lg-left {
		margin-left: 60px !important;
	}
	.push-triple-lg-ends {
		margin-top: 60px !important;
		margin-bottom: 60px !important;
	}
	.push-triple-lg-sides {
		margin-right: 60px !important;
		margin-left: 60px !important;
	}

	.soft-lg {
		padding: 20px !important;
	}
	.soft-lg-top {
		padding-top: 20px !important;
	}
	.soft-lg-right {
		padding-right: 20px !important;
	}
	.soft-lg-bottom {
		padding-bottom: 20px !important;
	}
	.soft-lg-left {
		padding-left: 20px !important;
	}
	.soft-lg-ends {
		padding-top: 20px !important;
		padding-bottom: 20px !important;
	}
	.soft-lg-sides {
		padding-right: 20px !important;
		padding-left: 20px !important;
	}

	.soft-half-lg {
		padding: 10px !important;
	}
	.soft-half-lg-top {
		padding-top: 10px !important;
	}
	.soft-half-lg-right {
		padding-right: 10px !important;
	}
	.soft-half-lg-bottom {
		padding-bottom: 10px !important;
	}
	.soft-half-lg-left {
		padding-left: 10px !important;
	}
	.soft-half-lg-ends {
		padding-top: 10px !important;
		padding-bottom: 10px !important;
	}
	.soft-half-lg-sides {
		padding-right: 10px !important;
		padding-left: 10px !important;
	}

	.soft-double-lg {
		padding: 40px !important;
	}
	.soft-double-lg-top {
		padding-top: 40px !important;
	}
	.soft-double-lg-right {
		padding-right: 40px !important;
	}
	.soft-double-lg-bottom {
		padding-bottom: 40px !important;
	}
	.soft-double-lg-left {
		padding-left: 40px !important;
	}
	.soft-double-lg-ends {
		padding-top: 40px !important;
		padding-bottom: 40px !important;
	}
	.soft-double-lg-sides {
		padding-right: 40px !important;
		padding-left: 40px !important;
	}

	.soft-triple-lg {
		padding: 60px !important;
	}
	.soft-triple-lg-top {
		padding-top: 60px !important;
	}
	.soft-triple-lg-right {
		padding-right: 60px !important;
	}
	.soft-triple-lg-bottom {
		padding-bottom: 60px !important;
	}
	.soft-triple-lg-left {
		padding-left: 60px !important;
	}
	.soft-triple-lg-ends {
		padding-top: 60px !important;
		padding-bottom: 60px !important;
	}
	.soft-triple-lg-sides {
		padding-right: 60px !important;
		padding-left: 60px !important;
	}

	.hard-lg {
		padding: 0 !important;
	}
	.hard-lg-top {
		padding-top: 0 !important;
	}
	.hard-lg-right {
		padding-right: 0 !important;
	}
	.hard-lg-bottom {
		padding-bottom: 0 !important;
	}
	.hard-lg-left {
		padding-left: 0 !important;
	}
	.hard-lg-ends {
		padding-top: 0 !important;
		padding-bottom: 0 !important;
	}
	.hard-lg-sides {
		padding-right: 0 !important;
		padding-left: 0 !important;
	}
}

/*******************************
 * No CSS Should be added below the above TRUMPS section.
 *
 *
 * Please add all additional CSS above the TRUMPS section above.
 */
