/*
	CARVE NOTES (Delete when done reading):
	- When targeting the editor instance use cke_editable instead of ww_editor_body to prevent issues with the sanitizer

	- Fonts must have the font-display property set. Use "block" when no fallback font exists (e.g., font awesome)
	  and "swap" when a fallback font is set (e.g., font-family: "Lato", sans-serif;)

	- Don't forget to change body and input fonts to match the default font used in the "p" tag

	- Avoid leaving old, commented-out code when it is no longer needed

	- Styles should be added following their parent elements. (e.g., body > header > .top-row a).
	  This improves readability when tracking down where an element exists on the DOM.
	  It also prevents conflicting definitions.
*/

/*************************************************
 /$$$$$$$$  /$$$$$$  /$$   /$$ /$$$$$$$$  /$$$$$$
| $$_____/ /$$__  $$| $$$ | $$|__  $$__/ /$$__  $$
| $$      | $$  \ $$| $$$$| $$   | $$   | $$  \__/
| $$$$$   | $$  | $$| $$ $$ $$   | $$   |  $$$$$$
| $$__/   | $$  | $$| $$  $$$$   | $$    \____  $$
| $$      | $$  | $$| $$\  $$$   | $$    /$$  \ $$
| $$      |  $$$$$$/| $$ \  $$   | $$   |  $$$$$$/
|__/       \______/ |__/  \__/   |__/    \______/
**************************************************/
@font-face
{
	font-family: 'font_awesome';
	font-style: normal;
	font-weight: 900;
	src: url('/fonts/fa-solid-900.woff2') format('woff2');
	font-display: block;
}

@font-face
{
	font-family: 'questrial';
	font-style: normal;
	font-weight: normal;
	src: url('/fonts/Questrial-Regular.woff2') format('woff2');
	font-display: swap;
}

@font-face
{
	font-family: 'barlow';
	font-style: normal;
	font-weight: normal;
	src: url('/fonts/Barlow-Regular.woff2') format('woff2');
	font-display: swap;
}

@font-face
{
	font-family: 'barlow';
	font-style: italic;
	font-weight: normal;
	src: url('/fonts/Barlow-Italic.woff2') format('woff2');
	font-display: swap;
}

@font-face
{
	font-family: 'barlow';
	font-style: italic;
	font-weight: bold;
	src: url('/fonts/Barlow-BoldItalic.woff2') format('woff2');
	font-display: swap;
}

@font-face
{
	font-family: 'barlow';
	font-style: normal;
	font-weight: bold;
	src: url('/fonts/Barlow-Bold.woff2') format('woff2');
	font-display: swap;
}

@font-face
{
	font-family: 'barlow_semibold';
	font-style: normal;
	font-weight: normal;
	src: url('/fonts/Barlow-SemiBold.woff2') format('woff2');
	font-display: swap;
}

@font-face
{
	font-family: 'barlow_semibold';
	font-style: italic;
	font-weight: normal;
	src: url('/fonts/Barlow-SemiBoldItalic.woff2') format('woff2');
	font-display: swap;
}

@font-face
{
	font-family: 'barlow_medium';
	font-style: normal;
	font-weight: normal;
	src: url('/fonts/Barlow-Medium.woff2') format('woff2');
	font-display: swap;
}

@font-face
{
	font-family: 'barlow_medium';
	font-style: italic;
	font-weight: normal;
	src: url('/fonts/Barlow-MediumItalic.woff2') format('woff2');
	font-display: swap;
}

@font-face
{
	font-family: 'montserrat_medium';
	font-style: normal;
	font-weight: normal;
	src: url('/fonts/Montserrat-Medium.woff2') format('woff2');
	font-display: swap;
}

@font-face
{
	font-family: 'montserrat_medium';
	font-style: italic;
	font-weight: normal;
	src: url('/fonts/Montserrat-MediumItalic.woff2') format('woff2');
	font-display: swap;
}



/******************************************************************************************************************************
  /$$$$$$  /$$        /$$$$$$  /$$$$$$$   /$$$$$$  /$$              /$$$$$$  /$$$$$$$$ /$$     /$$ /$$       /$$$$$$$$  /$$$$$$
 /$$__  $$| $$       /$$__  $$| $$__  $$ /$$__  $$| $$             /$$__  $$|__  $$__/|  $$   /$$/| $$      | $$_____/ /$$__  $$
| $$  \__/| $$      | $$  \ $$| $$  \ $$| $$  \ $$| $$            | $$  \__/   | $$    \  $$ /$$/ | $$      | $$      | $$  \__/
| $$ /$$$$| $$      | $$  | $$| $$$$$$$ | $$$$$$$$| $$            |  $$$$$$    | $$     \  $$$$/  | $$      | $$$$$   |  $$$$$$
| $$|_  $$| $$      | $$  | $$| $$__  $$| $$__  $$| $$             \____  $$   | $$      \  $$/   | $$      | $$__/    \____  $$
| $$  \ $$| $$      | $$  | $$| $$  \ $$| $$  | $$| $$             /$$  \ $$   | $$       | $$    | $$      | $$       /$$  \ $$
|  $$$$$$/| $$$$$$$$|  $$$$$$/| $$$$$$$/| $$  | $$| $$$$$$$$      |  $$$$$$/   | $$       | $$    | $$$$$$$$| $$$$$$$$|  $$$$$$/
 \______/ |________/ \______/ |_______/ |__/  |__/|________/       \______/    |__/       |__/    |________/|________/ \______/
*******************************************************************************************************************************/
html
{
	margin: 0;
	padding: 0;
	width: 100%;
}

body
{
	margin: 0;
	padding: 0 !important;
	width: 100%;
	font-family: barlow, sans-serif;
	font-size: 16px;
	background-color: transparent !important;
}

.container img:not(.img-non-responsive),
.container-fluid img:not(.img-non-responsive)
{
	display: inline-block;
	max-width: 100%;
	height: auto !important;
	border: none;
}

a:link,
a:visited,
a:active
{
	color: #237B2B;
}

a:hover
{
	color: #237B2B;
}

a:focus
{
	outline-offset: 2px;
}

input:focus,
textarea:focus,
select:focus
{
	outline: 1px solid #237B2B;
}

input[type="submit"]
{
	display: inline-flex;
	flex-flow: row wrap;
	justify-content: center;
	align-items: center;
	font-family: barlow_semibold, sans-serif;
	font-size: 16px;
	font-weight: normal;
	font-style: normal !important;
	color: #ffffff !important;
	text-decoration: none !important;
	background-color: #237B2B;
	padding: 15px 18px;
	border-radius: 10px 10px 10px 10px;	
	cursor: pointer;
	text-align: center;
	transition: all 0.2s;
	-webkit-tap-highlight-color: transparent;

	/*iPad Overrides*/
	border: none;
	-webkit-appearance: none;
}

input[type="submit"]:hover
{
	background-color: #195a1f;
}

input[type="submit"]:active
{
	transform: 	translate(0,2px)
 				scale(0.99, 0.99);
    box-shadow: inset 0 0 5px rgba(0,0,0,0.5);
}

input[type="text"],
input[type="password"],
select,
option,
textarea
{
	font-family: arial;
	font-size: 16px;
}

hr
{
	height: 1px;
	background-color: #d7d7d7;
	border: 0;
}

.button-small,
.button-small:link,
.button-small:active,
.button-small:visited,
.button-small:hover
{
	font-size: 14px !important;
	padding: 3px 8px !important;
}

div.container-max-width
{
	max-width: 1200px;
}

.embeddedContent[data-resizetype="responsive"],
.rem-responsive-16x9-video
{
	position: relative;
	padding-bottom: 56.25%;
	padding-top: 30px;
	height: 0;
	overflow: hidden;
}

.embeddedContent [data-resizetype="responsive"] iframe,
.rem-responsive-16x9-video iframe,
.rem-responsive-16x9-video object,
.rem-responsive-16x9-video embed
{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/* Uncomment for custom bullets */
/*
.container ul
{
	padding-left: 20px;
}

.container ul li
{
	position: relative;
	list-style: none;
}

.container ul li::before
{
	content: '\2022';
	position: absolute;
    display: block;
    left: -20px;
    color: #477782;
    font-size: 14pt;
    top: 0;
} */

.vertical-padding-large
{
	padding-top: 80px;
	padding-bottom: 80px;
}

.vertical-padding-medium
{
	padding-top: 60px;
	padding-bottom: 60px;
}

.vertical-padding-medium-top
{
	padding-top: 60px;
}

.vertical-padding-medium-bottom
{
	padding-bottom: 60px;
}

.vertical-padding-small
{
	padding-top: 30px;
	padding-bottom: 30px;
}

@media screen and (max-width:992px)
{
	.vertical-padding-large
	{
		padding-top: 40px;
		padding-bottom: 40px;
	}

	.vertical-padding-medium
	{
		padding-top: 30px;
		padding-bottom: 30px;
	}
}

/* col-lg and below */
@media screen and (max-width:1200px)
{
	.mobile-left
	{
		float: none !important;
		clear: both !important;
		display: block !important;
		margin: 0 auto 0 0 !important;
		text-align: center!important;
	}

	.mobile-centered
	{
		float: none !important;
		clear: both !important;
		display: block !important;
		margin-left: auto !important;
		margin-right: auto !important;
		text-align: center !important;
	}

	.mobile-right
	{
		float: none !important;
		clear: both !important;
		display: block !important;
		margin: 0 0 0 auto !important;
		text-align: center !important;
	}

	.mobile-left-flex
	{
		float: none !important;
		clear: both !important;
		display: flex !important;
		margin: 0 auto 0 0 !important;
		text-align: center !important;
	}

	.mobile-centered-flex
	{
		float: none !important;
		clear: both;
		display: flex !important;
		margin: 0 auto;
		text-align: center;
	}

	.mobile-right-flex
	{
		float: none !important;
		clear: both;
		display: flex !important;
		margin: 0 0 0 auto;
		text-align: center;
	}
}

@media screen and (min-width: 1201px)
{
	.hide-on-desktop
	{
		display: none !important;
	}

	#header-mobile-only
	{
		display: none;
	}

    #desktop_search_button
	{
		font-family: font_awesome !important;
		text-decoration: none;
		font-size: 20pt;
		color: #9E9E9E;
	}

	#desktop_search_button:link,
	#desktop_search_button:visited
	{
		transition: all 200ms;
	}

	#desktop_search_button:active
	{
		transform: 	scale(0.85);
	}

	#desktop_search_button:hover
	{
		color: #000000 !important
	}

	#search_form
	{
		position: absolute;
		right: 40px;
		top: 0;
	    z-index: 9999;
	}

	#search_form #search_field
	{
		width: 0;
		height: 100%;
		opacity: 0;
		padding: 8px 0;
		border: 0 solid #cccccc;
		border-radius: 3px;
		outline: none;
		background-color: #ffffff;
        border-radius: 3px;
		font-family: arial;
        font-size: 12pt;
        color: #5a5a5a;
		box-shadow: 0 0 5px rgba(0,0,0,0.5);
        transition: all 200ms;
	}

	#search_form #search_field.open
	{
		width: 300px;
		opacity: 1;
		padding: 8px 15px;
		border: 1px solid #cccccc;
	}

	#search_form #search_field.closed
	{
		width: 0;
		opacity: 0;
		padding: 8px 0;
		border: 0 solid #cccccc;
	}

	#search_form #search_field:focus
	{
		background-color: #ffffff;
	}

    #search_form #search_field:hover
    {
        background-color: #f4f4f4;
    }
}

@media screen and (max-width: 1200px)
{
	.hide-on-mobile
	{
		display: none !important;
	}

	#block_output_container
	{
		margin-top: 60px;
	}

	div#header-mobile-only #mobile-header-logo
	{
		display: inline-block;
		margin-left: 15px;
		margin-top: 7px;
	}

	div#header-mobile-only
	{
		display: flex;
        position: fixed;
        top: 0;
        height: 60px;
        width: 100%;
        background-color: rgba(0, 0, 0, 0.8);
        -webkit-backdrop-filter: blur(10px);
        backdrop-filter: blur(10px);
        box-shadow: 0 -2px 15px #000000;
        z-index: 10000;
	}

	div#header-mobile-only::after
	{
	    clear: both;
	    content: "\00a0";
	    display: block;
	    height: 0;
	    font: 0px/0 serif;
	    overflow: hidden;
	}

   	#mobile_search_button:link,
	#mobile_search_button:active,
	#mobile_search_button:visited,
	#mobile_search_button:hover
	{
		position: absolute;
		top: 18px;
		right: 65px;
		font-family: font_awesome;
		font-size: 24px;
		text-decoration: none;
	}

    #search_form
    {
        position: fixed;
        top: 65px;
        left: 15px;
		height: 0;
        z-index: 999;
    }

    #search_form #search_field
    {
       	position: relative;
       	top: -65px;
       	height: 0;
		width: calc(100vw - 30px);
		opacity: 0;
		padding: 0 15px;
		border: 0 solid #cccccc;
		border-radius: 3px;
		outline: none;
		background-color: #ffffff;
		font-family: arial;
		font-size: 12pt;
		box-shadow: 0 0 5px rgba(0,0,0,0.5);
		transition: all 200ms;
    }

    #search_form #search_field.open
	{
		transform: translateY(65px);
		height: 40px;
		opacity: 1;
		padding: 3px 15px;
		border: 1px solid #cccccc;
	}

	#search_form #search_field.closed
	{
		width: calc(100vw - 30px);
		opacity: 0;
		padding: 0 15px;
		border: 0 solid #cccccc;
	}

    #search_form #search_field:focus
    {
        background-color: #ffffff;
    }
}

/* Lightbox Styles */
.sl-overlay
{
	background: #000000 !important;
	opacity: 0.8 !important;
}

.sl-wrapper .sl-close
{
	font-size: 28pt !important;
	color: #ffffff !important;
}

.sl-wrapper .sl-counter
{
	font-size: 16pt !important;
	color: #ffffff !important;
}

.sl-wrapper .sl-navigation button.sl-prev,
.sl-wrapper .sl-navigation button.sl-next
{
	font-size: 30pt !important;
	color: #ffffff !important;
}

.sl-wrapper .sl-image .sl-caption
{
	font-size: 16pt !important;
}

.sl-wrapper .sl-image .description
{
	font-size: 12pt !important;
}

.sl-wrapper .sl-image .lightbox-link
{
	margin-top: 10px !important;
}

.sl-wrapper .sl-image a:link,
.sl-wrapper .sl-image a:active,
.sl-wrapper .sl-image a:visited
{
	font-size: 12pt !important;
}

@media screen and (max-width:1200px)
{
	.sl-wrapper .sl-close
	{
		right: 20px !important;
    	top: 80px !important;
	}
}

.background-image-wrapper
{
	width: 100%;
	max-width: 2000px;
	margin: 0 auto;
	background-size: cover;
}

/**********************************************************
 /$$   /$$ /$$$$$$$$  /$$$$$$  /$$$$$$$  /$$$$$$$$ /$$$$$$$
| $$  | $$| $$_____/ /$$__  $$| $$__  $$| $$_____/| $$__  $$
| $$  | $$| $$      | $$  \ $$| $$  \ $$| $$      | $$  \ $$
| $$$$$$$$| $$$$$   | $$$$$$$$| $$  | $$| $$$$$   | $$$$$$$/
| $$__  $$| $$__/   | $$__  $$| $$  | $$| $$__/   | $$__  $$
| $$  | $$| $$      | $$  | $$| $$  | $$| $$      | $$  \ $$
| $$  | $$| $$$$$$$$| $$  | $$| $$$$$$$/| $$$$$$$$| $$  | $$
|__/  |__/|________/|__/  |__/|_______/ |________/|__/  |__/
***********************************************************/
@media screen and (max-width: 1200px)
{
	#header-desktop #menu-builder-header-nav
	{
		position: fixed;
		top: 60px;
		z-index: 1500;
		left: 0;
		width: 100%;
		max-height: calc(100% - 60px);
		box-shadow: -1px -2px 20px 0px rgba(0,0,0,0.5);
		overflow-y: auto;
		background-color: rgba(255,255,255,0.9);
		-webkit-backdrop-filter: blur(10px);
		backdrop-filter: blur(10px);
	}

	#header-mobile-only .header-right-container
	{
		display: flex;
		justify-content: flex-end;
		align-items: center;
		width: 100%;
	}

	#header-mobile-only .header-right-container .header-phone-container
	{
		position: relative;
		font-family: barlow, sans-serif;
		font-size: 16px;
		color: #ffffff;
		margin-right: 15px;
	}

	#header-mobile-only .header-right-container .header-phone-container::before
	{
		content: '\f095';
		position: relative;
		font-family: font_awesome;
		font-size: 16px;
		color: #36BD44;
	}

	#header-mobile-only .header-right-container .header-phone-container a
	{
		position: relative;
		font-family: barlow_semibold, sans-serif;
		font-size: 16px;
		color: #ffffff;
		text-decoration: none;
	}
}

@media screen and (min-width: 1201px)
{
	#header-desktop
	{
		position: relative;
		z-index: 1000;
		width: 100%;
		max-width: 2000px;
		margin: 0 auto;
		background-image: url('/images/top-banner-shadow.png');
		background-size: 100% 100%;
		background-repeat: no-repeat;
		padding-top: 20px;
		padding-bottom: 20px;
	}

	#header-desktop > div:first-of-type
	{
		display: flex;
		justify-content: space-between;
		align-items: center;
		width: 100%;
		max-width: 1200px;
		margin: 0 auto;
	}

	.header-right-container
	{
		display: flex;
		justify-content: flex-end;
		align-items: center;
	}

	.header-right-container .header-phone-container
	{
		position: relative;
		font-family: barlow, sans-serif;
		font-size: 16px;
		color: #ffffff;
		margin-right: 15px;
	}

	.header-right-container .header-phone-container::before
	{
		content: '\f095';
		position: relative;
		font-family: font_awesome;
		font-size: 16px;
		color: #36BD44;
	}

	.header-right-container .header-phone-container a
	{
		position: relative;
		font-family: barlow_semibold, sans-serif;
		font-size: 16px;
		color: #ffffff;
		text-decoration: none;
	}
}


/**********************************************************
 /$$$$$$$$ /$$$$$$   /$$$$$$  /$$$$$$$$ /$$$$$$$$ /$$$$$$$
| $$_____//$$__  $$ /$$__  $$|__  $$__/| $$_____/| $$__  $$
| $$     | $$  \ $$| $$  \ $$   | $$   | $$      | $$  \ $$
| $$$$$  | $$  | $$| $$  | $$   | $$   | $$$$$   | $$$$$$$/
| $$__/  | $$  | $$| $$  | $$   | $$   | $$__/   | $$__  $$
| $$     | $$  | $$| $$  | $$   | $$   | $$      | $$  \ $$
| $$     |  $$$$$$/|  $$$$$$/   | $$   | $$$$$$$$| $$  | $$
|__/      \______/  \______/    |__/   |________/|__/  |__/
**********************************************************/
body > footer
{
	padding-top: 60px;
	padding-bottom: 60px;	
}

body > footer .copyright-container,
body > footer .copyright-container a:link,
body > footer .copyright-container a:active,
body > footer .copyright-container a:visited
{
	font-family: montserrat_medium, sans-serif;
	font-size: 13px;
	font-weight: normal;
	font-style: normal;
	color: #000000;
	text-decoration: none;
	transition: color 150ms;
	text-align: center;
}

body > footer .copyright-container a:hover
{
	color: #237B2B;
}

/*********************************************************************************************
 /$$      /$$ /$$      /$$        /$$$$$$  /$$$$$$$$ /$$     /$$ /$$       /$$$$$$$$  /$$$$$$
| $$  /$ | $$| $$  /$ | $$       /$$__  $$|__  $$__/|  $$   /$$/| $$      | $$_____/ /$$__  $$
| $$ /$$$| $$| $$ /$$$| $$      | $$  \__/   | $$    \  $$ /$$/ | $$      | $$      | $$  \__/
| $$/$$ $$ $$| $$/$$ $$ $$      |  $$$$$$    | $$     \  $$$$/  | $$      | $$$$$   |  $$$$$$
| $$$$_  $$$$| $$$$_  $$$$       \____  $$   | $$      \  $$/   | $$      | $$__/    \____  $$
| $$$/ \  $$$| $$$/ \  $$$       /$$  \ $$   | $$       | $$    | $$      | $$       /$$  \ $$
| $$/   \  $$| $$/   \  $$      |  $$$$$$/   | $$       | $$    | $$$$$$$$| $$$$$$$$|  $$$$$$/
|__/     \__/|__/     \__/       \______/    |__/       |__/    |________/|________/ \______/
*********************************************************************************************/
p,
.ww_p
{
	font-family: barlow, sans-serif;
	font-size: 19px;
	font-weight: normal;
	color: #000000;
	margin: 0;
	padding: 0;
}

.ww_p_double_space
{
   	font-family: barlow, sans-serif;
	font-size: 19px;
	font-weight: normal;
	color: #000000;
	line-height: 2;
	margin: 0;
	padding: 0;
}

.ww_p_alternate
{
	font-family: barlow, sans-serif;
	font-size: 20px;
	font-weight: normal;
	color: #000000;
	margin: 0;
	padding: 0;
}

.ww_p_call_out
{
	font-family: barlow_semibold, sans-serif;
	font-size: 23px;
	font-weight: normal;
	color: #000000;
	margin: 0;
	padding: 0;
}

h1,
h1.ww_h1
{
	font-family: questrial, sans-serif;
	font-size: 56px;
	font-weight: normal;
	line-height: 1.2;
	color: #ffffff;
	margin: 0 0 5px 0 !important;
	padding: 0;
}

h2,
h2.ww_h2
{
	font-family: questrial, sans-serif;
	font-size: 45px;
	font-weight: normal;
	color: #000000;
	line-height: 1.4;
	margin: 0;
	padding: 0;
}

h2 strong,
h2.ww_h2 strong
{
	color: #237B2B;
}

h3,
h3.ww_h3
{
	font-family: questrial, sans-serif;
	font-size: 37px;
	font-weight: normal;
	color: #000000;
	margin: 0;
	padding: 0;
}

h4,
h4.ww_h4
{
	font-family: questrial, sans-serif;
	font-size: 30px;
	font-weight: normal;
	color: #000000;
	margin: 0;
	padding: 0;
}

h5,
h5.ww_h5
{
	font-family: questrial, sans-serif;
	font-size: 26px;
	font-weight: normal;
	color: #000000;
	margin: 0;
	padding: 0;
}

h6,
h6.ww_h6
{
	font-family: questrial, sans-serif;
	font-size: 24px;
	font-weight: normal;
	color: #000000;
	margin: 0;
	padding: 0;
}

.ww_emphasis
{
	font-weight: bold;
	font-style: normal;
}

.ww_strong_emphasis
{
	font-weight: bold;
	font-style: italic;
}

.ww_action_button1
{
	display: inline-flex;
	flex-flow: row wrap;
	justify-content: center;
	align-items: center;
	font-family: barlow_semibold, sans-serif;
	font-size: 16px;
	font-weight: normal;
	font-style: normal !important;
	color: #ffffff !important;
	text-decoration: none !important;
	background-color: #237B2B;
	padding: 15px 18px;
	border-radius: 10px 10px 10px 10px;	
	cursor: pointer;
	text-align: center;
	transition: all 0.2s;
	-webkit-tap-highlight-color: transparent;
}

a .ww_action_button1,
a .ww_action_button1:link,
a .ww_action_button1:visited,
.ww_action_button1 a:link,
.ww_action_button1 a:visited
{
	color: #ffffff;
	text-decoration: none !important;
}

.ww_action_button1:hover
{
	background-color: #195a1f;
}

.ww_action_button1:active
{
	transform: 	translate(0,2px)
 				scale(0.99, 0.99);
    box-shadow: inset 0 0 5px rgba(0,0,0,0.5);
}

.ww_action_button2
{
	display: inline-flex;
	flex-flow: row wrap;
	justify-content: center;
	align-items: center;
	font-family: barlow_semibold, sans-serif;
	font-size: 16px;
	font-weight: normal;
	font-style: normal !important;
	color: #000000 !important;
	text-decoration: none !important;
	background-color: #ffffff;
	padding: 15px 18px;
	border-radius: 10px 10px 10px 10px;	
	cursor: pointer;
	text-align: center;
	transition: all 0.2s;
	-webkit-tap-highlight-color: transparent;
}

a .ww_action_button2,
a .ww_action_button2:link,
a .ww_action_button2:visited,
.ww_action_button2 a:link,
.ww_action_button2 a:visited
{
	color: #000000;
	text-decoration: none !important;
}

.ww_action_button2:hover
{
	background-color: #237B2B;
}

a .ww_action_button2:hover,
.ww_action_button2:hover a
{
	color: #ffffff;
}

.ww_action_button2:active
{
	transform: 	translate(0,2px)
 				scale(0.99, 0.99);
    box-shadow: inset 0 0 5px rgba(0,0,0,0.5);
}

.ww_action_button3
{
	display: inline-flex;
	flex-flow: row wrap;
	justify-content: center;
	align-items: center;
	font-family: arial;
	font-size: 16px;
	font-weight: normal;
	font-style: normal !important;
	color: #ffffff !important;
	text-decoration: none !important;
	background-color: #808184;
	padding: 8px 15px;
	border: none;
	cursor: pointer;
	text-align: center;
	transition: all 0.2s;
	-webkit-tap-highlight-color: transparent;
}

a .ww_action_button3,
a .ww_action_button3:link,
a .ww_action_button3:visited,
.ww_action_button3 a:link,
.ww_action_button3 a:visited
{
	color: #ffffff;
	text-decoration: none !important;
}

.ww_action_button3:hover
{
	background-color: #959597;
}

.ww_action_button3:active
{
	transform: 	translate(0,2px)
 				scale(0.99, 0.99);
    box-shadow: inset 0 0 5px rgba(0,0,0,0.5);
}

.ww_editor_body
{
	background-color: #FFFFFF;
}


/*********************************************************************
  /$$$$$$   /$$$$$$  /$$   /$$ /$$$$$$$$ /$$$$$$$$ /$$   /$$ /$$$$$$$$
 /$$__  $$ /$$__  $$| $$$ | $$|__  $$__/| $$_____/| $$$ | $$|__  $$__/
| $$  \__/| $$  \ $$| $$$$| $$   | $$   | $$      | $$$$| $$   | $$
| $$      | $$  | $$| $$ $$ $$   | $$   | $$$$$   | $$ $$ $$   | $$
| $$      | $$  | $$| $$  $$$$   | $$   | $$__/   | $$  $$$$   | $$
| $$    $$| $$  | $$| $$\  $$$   | $$   | $$      | $$\  $$$   | $$
|  $$$$$$/|  $$$$$$/| $$ \  $$   | $$   | $$$$$$$$| $$ \  $$   | $$
 \______/  \______/ |__/  \__/   |__/   |________/|__/  \__/   |__/
*********************************************************************/
.forced-white *,
.forced-white h2
{
	color: #ffffff;
}

.cke_editable .forced-white *,
.cke_editable .forced-white h2
{
	color: #000000;
}

.overflow-wrapper
{
	max-width: 2000px;
	width: 100%;
	overflow: hidden;
}

.content_form_wrapper
{
	margin-top: -100px;
	margin-bottom: -140px;
	padding-top: 160px;
}

@media screen and (max-width: 1100px)
{
	.content_form_wrapper
	{
		margin-top: -120px;
		margin-bottom: 0;		
	}	
}

@media screen and (max-width: 991px)
{
	.content_form_wrapper
	{
		margin-top: -100px;
		margin-bottom: 0;		
	}	
}

@media screen and (max-width: 991px)
{
	.product-container
	{
		margin: 30px auto;
	}
}


.product-container .product-title
{
	position: relative;	
	font-family: questrial, sans-serif;
	font-size: 22px;
	color: #ffffff;
	border-bottom: 2px solid #898F7B;
	padding-bottom: 10px;
}

.cke_editable .product-container .product-title
{
	color: #000000;
}

.product-container .product-title::before
{
	content: url('/images/check-mark.png');
	position: relative;	
	width: 100%;
	margin-right: 15px;			
}

.product-container .product-description
{
	font-family: barlow, sans-serif;
	font-size: 19px;
	color: #ffffff;
}

.cke_editable .product-container .product-description
{
	color: #000000;
}

.left-container
{
	height: 626px;
    box-sizing: content-box;
    padding: 35px 0 103px 0;
}

@media screen and (max-width: 991px)
{
	.left-container
	{
		height: auto;
		padding: 15px 0 15px 0;
		text-align: center;
	}

}

.left-overflow-container
{
	position: relative;
}

.left-overflow-container img
{
	position: absolute;
	top: 0;
    right: 355px;
}

@media screen and (max-width: 991px)
{
	.left-overflow-container img
	{
		position: relative;
		right: 0;
		left: 0;
		display: inline-block;
		max-width: 100%;
		height: auto !important;
		border: none;
	}	
}

.left-content-container
{
	background-color: rgba(35,123,43,0.8);
	padding: 40px;
	font-family: barlow, sans-serif;
	font-size: 24px;
	color: #ffffff;
}

.left-container-text
{
	position: absolute;
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
    background: white;
    padding: 30px 25px;
    width: 470px;
    position: relative;
    right: 20px;
    top: 35px;
}

@media screen and (max-width: 991px)
{
	.left-container-text
	{
		position: relative;
		right: 0;
		left: 0;
		top: -40px;
		width: calc(100% - 30px);
		margin: 0 auto;
	}
}

.left-container-text .top-container
{
	font-family: barlow, sans-serif;
	font-size: 21px;
	padding-bottom: 30px;
	border-bottom: 2px solid #237B2B
}

.left-container-text .bottom-container
{
	font-family: questrial, sans-serif;
	font-size: 19px;
	color: #737373;
	padding-top: 30px;
	line-height: 1.4;
}

.right-text-container
{
	padding-top: 35px;
}

@media screen and (max-width: 991px)
{
	.right-text-container
	{
		padding-top: 0;
	}
}

/* jquery accordion styles */
.accordion 
{	
	margin: 40px auto;
}

@media screen and (max-width: 991px)
{
	.accordion 
	{	
		width: 80%;
	}	
}

.ui-accordion .ui-accordion-header,
.accordion span.title
{	
	font-family: questrail, sans-serif;
    font-size: 21px;
    font-weight: normal;
    color: #737373;
    margin: 0;    	
	/* padding: 20px 80px 20px 40px; */
	transition: background-color 200ms;
}

@media screen and (max-width:480px)
{
	.ui-accordion .ui-accordion-header,
	.accordion span
	{
		font-size: 16pt;
	}
}

.ui-accordion .ui-accordion-header .ui-accordion-header-icon
{
	position: absolute;
	right: 40px;
	/* top: 50%; */
	display: flex;
	justify-content: center;
	align-items: center;
	width: 35px;
	height: 35px;
	transform: translateY(-50%);
	margin: 20px auto 0 auto;
	border-radius: 50%;
	border: 1px solid #000000;
	background: none;
}

.ui-accordion .ui-accordion-header .ui-accordion-header-icon::before
{
	content: "";
	width: 50%;
	height: 5px;
	display: block;
	background-color: #237B2B;
}

.ui-accordion .ui-accordion-header .ui-accordion-header-icon::after
{
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateY(-50%) translateX(-50%) rotate(90deg);

	/* transform: translateY(-50%) translateX(-50%); */
	width: 50%;
	height: 5px;
	display: block;
	background-color: #237B2B;
	transition: all 200ms;
	transform-origin: center;
}

.ui-accordion .ui-accordion-header.ui-state-active .ui-accordion-header-icon::after
{
	/* transform: translateY(-50%) translateX(-50%) rotate(90deg); */
	transform: translateY(-50%) translateX(-50%);
}

.ui-accordion .ui-accordion-content
{
	border: none;
	padding: 15px;
}

@media screen and (max-width:1200px)
{
	.ui-accordion .ui-accordion-content
	{
		padding: 5px;
	}

}

.internal-banner
{
	margin-top: -100px;	
	padding-top: 160px;
}

/* Changing hover container */
.intro-container
{
	margin-top: 60px;
	margin-bottom: 80px;
}

@media screen and (max-width:576px)
{
	.intro-container
	{
		margin-bottom: 0;
	}

}

.intro-container .container-overlap
{
	box-shadow: 0 0 5px rgba(0,0,0,0.5);
	background: white;
    padding: 30px;
	width: 470px;
	position: relative;
    right: 20px;
    top: 35px;
}

@media screen and (max-width:1200px)
{
	.intro-container .container-overlap
	{
		left: 400px;
	}
}

@media screen and (max-width:991px)
{
	.intro-container .container-overlap
	{
		margin: 0 auto;
		left: 0;
		top: 30px;
		max-width: calc(100% - 10px);
		width: auto;
	}
}

@media screen and (max-width:576px)
{
	.intro-container .container-overlap
	{
		padding: 10px 10px;
	}
}

.intro-container .container-overlap p
{
	font-family: barlow, sans-serif;
	font-size: 20px;
	color: #000000;
	font-weight: normal;
}

@media screen and (max-width:576px)
{
	.intro-container .container-overlap p
	{
		font-size: 13pt;
	}
}

.container-overlap .main-paragraph
{
	padding-bottom: 50px;
	margin-top: 35px;
	margin-bottom: 50px;
	border-bottom: 2px solid #237B2B;
}


@media screen and (max-width:576px)
{
	.intro-container .container-overlap
	{
		padding-bottom: 30px;
		margin-bottom: 30px;
	}
}
.intro-container .img-non-responsive
{
	right: 150px;
    position: relative;
}

@media screen and (max-width:991px)
{
	.intro-container .img-non-responsive
	{
		right: 0;
		margin: 0 auto;
		display: flex;
		height: auto !important;
		max-width: 100%;
	}
}

.intro-container .wrapper-img
{
	position: relative;
}

.intro-container .wrapper-img::before
{
	content: "";
    position: absolute;
    bottom: -30px;
    right: -105px;
    width: 420px;
    height: 420px;
    background-color: #8BD965;
    opacity: 1;
    z-index: -1;
	box-shadow: 0 0 40px rgba(0,0,0,0.5);
	border-radius: 20px;
}

@media screen and (max-width:1200px)
{
	.intro-container .wrapper-img::before
	{
		right: -170px;
	}
}

@media screen and (max-width:991px)
{
	.intro-container .wrapper-img::before
	{
		display: none;
	}
}

.content-hover .heading-wrapper
{
	display: flex;
	align-items: center;
	margin-bottom: 30px;
}


.content-hover 
{
	position: relative;
    right: -50px;
}

@media screen and (max-width:1200px)
{
	.content-hover 
	{
		right: -25px;
	}
}

@media screen and (max-width:991px)
{
	.content-hover 
	{
		right: 0;
	}
}

.content-hover .heading
{
	position: relative;    
	display: flex;
	flex-direction: column;
}

.content-hover .heading .subheading
{
	font-family: lexend, sans-serif;
	font-size: 20pt;
	color: #022F30;
	font-weight: normal;
}

.benefits-container p
{
	margin-top: 30px;
	padding-bottom: 35px;
	line-height: 1.2;
}

.benefits-container .benefit-single
{
	font-family: questrail, sans-serif;
	font-size: 21px;
	color: #737373;
	font-weight: normal;
	text-decoration: none;
}

.benefits-container .benefit-single::after
{
	content: '';
	position: relative;
	display: flex;
	width: 35px;
	height: 2px;
	background-color: #737373;
	transition: all 1s;
	top: 30px;
}
	
.benefits-container a:hover.benefit-single::after
{
	width: 100%;
	background-color: #000000;
}
	
.benefits-container a:hover
{
	color: #000000;
	text-decoration: none;
}

.benefits-container .benefit-single::before
{
	content: url('/images/green-arrow.png');
	position: absolute;
	left: -40px;
	transition: all 2s;
	display: none;
}
	
.benefits-container a:hover.benefit-single::before
{
	display: block;
	transition: all 2s;
}

body:not(.ww_editor_body) #product_range_selector_image_container
{
	height: 626px;
	box-sizing: content-box;
	/* padding: 95px 0 103px 0; */
}

@media screen and (max-width:1200px)
{
	body:not(.ww_editor_body) #product_range_selector_image_container
	{
		/* padding: 0 0 30px 0; */
		/* height: 0; */
		display: block;
		width: 100%;
		max-width: 740px;
		/* padding-bottom: 650px; */
		margin: 0 auto;
	}
}

@media screen and (max-width:991px)
{
	body:not(.ww_editor_body) #product_range_selector_image_container
	{
		position: relative;
		padding-bottom: 300px;
	}
}

/* @media screen and (max-width:766px)
{
	body:not(.ww_editor_body) #product_range_selector_image_container
	{
		padding-bottom: 86vw;
	}
} */

#product_range_selector_image_container > div
{
	position: relative;
	opacity: 0;
	transition: opacity 400ms;
}

@media screen and (max-width:1200px)
{
	#product_range_selector_image_container > div
	{
		position: absolute;
	}
}

/* @media screen and (max-width:991px)
{
	#product_range_selector_image_container > div
	{
		position: relative;
	}
} */

#product_range_selector_image_container > div.active
{
	opacity: 1;
}

#product_range_selector_image_container > div.inactive
{
	opacity: 0;
}

.ww_editor_body #product_range_selector_image_container > div
{
	opacity: 1;
}

@media screen and (min-width:1200px)
{
	body:not(.ww_editor_body) #product_range_selector_image_container > div > div.overlay-text
	{
		position: absolute;
		z-index: 3;
		/* bottom: -405px;
	    left: -80px;
		font-family: playfair_display;
		font-size: 35pt;
		font-weight: normal;
		color: #ffffff; */
	}

	body:not(.ww_editor_body) #product_range_selector_image_container > div > div.overlay-text::before
	{
		content: '';
		position: absolute;
		left: 0;
		right: 0;
		top: -220px;
		margin: 0 auto;
		display: block;
		width: 1px;
		height: 200px;
		background-color: #ffffff;
	}
}

@media screen and (max-width:1200px)
{
	body:not(.ww_editor_body) #product_range_selector_image_container > div > div.overlay-text
	{
		display: block;
		z-index: 3;
	}
}

#product_range_selector_image_container > div > img
{
	position: absolute;
}

.ww_editor_body #product_range_selector_image_container > div > img
{
	position: relative;
	display: block;
}

body:not(.ww_editor_body) #product_range_selector_image_container > div > img.background
{
	top: 177px;
    left:-46px;
}

@media screen and (max-width:1200px)
{
	body:not(.ww_editor_body) #product_range_selector_image_container > div > img.background
	{
		display: none;
	}
}

body:not(.ww_editor_body) #product_range_selector_image_container > div > img.foreground
{
	top: 0;
	right: 345px;
	/* border-bottom-right-radius: 15px;
    border-top-right-radius: 15px; */
}

@media screen and (max-width:1200px)
{
	body:not(.ww_editor_body) #product_range_selector_image_container > div > img.foreground
	{
		right: 0;
	}
}

@media screen and (max-width:991px)
{
	body:not(.ww_editor_body) #product_range_selector_image_container > div > img.foreground
	{
		/* top: -455px; */
		padding-top: 420px;
		left: 0;
		margin: 0 auto;
	}
}

/* @media screen and (max-width:576px)
{
	body:not(.ww_editor_body) #product_range_selector_image_container > div > img.foreground
	{
		margin-top: 155px;
	}
} */
