﻿/***** BEGIN RESET *****/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	background: transparent;
	border: 0;
	margin: 0;
	padding: 0;	
}

ol, ul {
	list-style: none;
}

table{border-collapse:collapse; width:100%;}
td{vertical-align:top;}

/* Make HTML 5 elements display block-level for consistent styling */  
header, nav, article, footer, address {  
    display: block;  
} 

/*-------- COLORS --------

*/

/***** END RESET *****/
::-moz-selection {
    background: #000; 
    color: #fff;
    text-shadow: none;
}
::selection {
    background: #000;
    color: #fff;
    text-shadow: none;
}


/* Clearfix */
.cf:before,
.cf:after {
    content: " ";
    display: table;
}
.cf:after {
    clear: both;
}
.cf {
    *zoom: 1;
}

/*-------- BODY STYLES --------*/

body {

}

a:link, a:visited, a:active {text-decoration:none;}
a:hover {text-decoration:none;}


hr{border:#000 1px solid;}


/*---AESTHETIC--------------------------------*/

.white{
	color: #fff;
}
.green{
	color: #93d500;
}
.dark-green{
	color: #528e78;
}
.rounded{
	border-radius: 10px;
	overflow: hidden;
}
.bg-black{
	background: #000;
	color: #fff;
}
.bg-img{
	background-size: cover;
	background-position: center center;
}
.bg-tl{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	pointer-events: none;
	background-size: auto auto;
	background-position: top left;
	background-repeat: no-repeat;
}
.bg-tr{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	pointer-events: none;
	background-size: auto auto;
	background-position: top right;
	background-repeat: no-repeat;
}
.bg-bl{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	pointer-events: none;
	background-size: auto auto;
	background-position: bottom left;
	background-repeat: no-repeat;
}
.bg-br{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	pointer-events: none;
	background-size: auto auto;
	background-position: bottom right;
	background-repeat: no-repeat;
}

.bg-green{
	background-color: #93d500;
}

.hero.bg-overlay{
	position: relative;
}
.hero.bg-overlay:before{
	position: absolute;
	pointer-events: none;
	content: '';
	left: 0;
	right: 50%;
	top: 0;
	bottom: 0;
	opacity: 0.8;
	background: linear-gradient(to right, #031224, transparent);
}

/*---STRUCTURE--------------------------------*/

.relative{
	position: relative;
}
.pad-top{
	padding-top: min(100px, 10vw);
}
.pad-bottom{
	padding-bottom: min(100px, 10vw);
}

.pad-top-half{
	padding-top: max(50px, 5vw);
}
.pad-bottom-half{
	padding-bottom: max(50px, 5vw);
}
.cs-wrap{
	padding-left:7.7vw;
	padding-right:7.7vw;
}
/*---TEXT--------------------------------*/

.heading-xl, .heading-lg, .heading-md, .heading-sm, .heading-xs{
	font-family:  pragmatica-extended, sans-serif;
	display: block;
}
.heading-flourish{
	position: relative;
}
.heading-flourish:before{
	content: '';
	position: absolute;
	left: -7.7vw;
	top: 0;
	width: 5.3vw;
	height: 60px;
	border-bottom-right-radius: 10px;
	background: #93d500;
	
}
.heading-xl{
	font-weight: 800;
	text-transform: uppercase;
	font-size: min(44px, 7vw);
	line-height: 1.1;
	letter-spacing: 0.025em;;
}
.heading-lg{
	font-weight: 800;
	text-transform: uppercase;
	font-size: min(36px, 5vw);
	line-height: 1;
	letter-spacing: normal;
}
.notransform{
	text-transform: unset !important;
}
.heading-md{
	font-weight: 800;
	text-transform: uppercase;
	font-size: min(26px, 5vw);
	line-height: 1.1;
	letter-spacing: normal;
}
.heading-sm{
	font-weight: 500;
	font-size: min(26px, 5vw);
	line-height: 1.1;
	letter-spacing: normal;
}
.heading-xs{
	font-weight: 800;
	font-size: 18px;
	line-height: 1.3;
	letter-spacing: normal;
}
.paragraph{	
	font-family:  pragmatica-extended, sans-serif;
	font-weight: 300;
	font-size: 18px;
	line-height: 1.3;
	letter-spacing: normal;
}

.paragraph-sm{	
	font-family:  pragmatica-extended, sans-serif;
	font-weight: 300;
	font-size: 13px;
	line-height: 1.3;
	letter-spacing: normal;
}


/*---BUTTONS--------------------------------*/

.cta{
	display: inline-block;
	padding: 0 48px 0 0;
	line-height: 48px;
	width: 240px;
	max-width: 100%;
	position: relative;
	font-family:  pragmatica-extended, sans-serif;
	
	font-weight: 700;
	font-size: 14px;
	color: #fff;
	background-color: #007565;
	text-align: center;
	border-radius: 10px;
    box-sizing: border-box;
}
.cta:after{
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	content: '';
    content: "\f105";    
	font-family: 'Font Awesome 6 Free';
	font-weight: 900;
	width: 48px;
	text-align: center;
	border-left: solid 1px #44968a;
}
.cta-black{
	background: #000;
	color: #fff;
}
.cta-black:after{
	border-color: #444;
}

.cta-white{
	background: #fff;
	color: #000;
}
.cta-white:after{
	border-color: #ccc;
}


/*--------FORM STYLES--------------------*/

.custom-form input{
	padding: 10px;
	font-weight: 300;
	font-size: 14px;
	color: #535b65;
	line-height: 24px;
	resize: none;
	outline: none;
	border: none;
	background: #f5f5f5;
	box-sizing: border-box;
	width: 100%;
	border-radius: 10px;
	margin-bottom: 10px;    
	font-family:  pragmatica-extended, sans-serif !important;
}
.custom-form input[type="radio"], .custom-form input[type="checkbox"]{
	width: 24px;
}
button.cta{
	border: unset !important;
	cursor: pointer;
}
.custom-form .flex{
	gap: 10px;
	display: flex;
}
.custom-form textarea{
	width: 100%;
	box-sizing: border-box;
	padding: 10px;
	font-weight: 300;
	font-size: 14px;
	color: #535b65;
	line-height: 24px;
	resize: none;
	margin-bottom: 10px;
	border-radius: 10px;
	outline: none;
	border: none;
	background: #f5f5f5;
	font-family:  pragmatica-extended, sans-serif !important;
}

.CaptchaPanel{
	text-align: left !important;
	font-family:  pragmatica-extended, sans-serif !important;
}
.CaptchaPanel img{
	border: unset !important;
	border-radius: 10px;
}
.CaptchaPanel, .CaptchaAnswerPanel, .CaptchaImagePanel, .CaptchaMessagePanel{
	padding-left: 0 !important;
	padding-right: 0 !important;
}
.CaptchaWhatsThisPanel a{
	color: #535b65 !important;
}


/* CUSTOM */

.cs-pad{
	padding: min(40px, 6vw) 3.8vw;
}
.mv-search{
	position: relative;   width: 100%;
    border-radius: 3px;
    background: #cdeb87;
}
.mv-search form{
	margin: 0 !important;
	width: 100%;
	display: flex;
}
.mv-search input{
	-webkit-transition: background-color .25s ease-in-out;
    -o-transition: background-color .25s ease-in-out;
    transition: background-color .25s ease-in-out;

    height: 48px !important;
	font-family: pragmatica-extended, sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 48px !important;
    color: #000;
	background: transparent;
    text-transform: none;
    letter-spacing: 0em;
    padding-right: 20px;
    border: none;
    padding-left: 20px;
	display: flex;
	flex-grow: 1;
}
.mv-search button{
	font-family: pragmatica-extended, sans-serif;
    position: absolute;
    width: 48px !important;
    height: 48px !important;
    text-align: center;
    border: none;
    padding: 0;
    font-size: 14px;
	appearance: none;
	outline: none;
	right: 0;
	top: 0;
	background: unset;
	cursor: pointer;
}



/* CUSTOM ACCORDIONS FOR BLOGS */


.cs-accordion-toggle {
	font-family: pragmatica-extended, sans-serif;
    font-size: 18px !important;
    padding: 20px 30px;
	background: #93d500;
	color: #000;
    border-radius: 5px;
    position: relative;
	margin-bottom: 10px;
	cursor: pointer;text-transform: uppercase;
}
.cs-accordion-toggle.open {
	background: #cdeb87;
}
.cs-accordion-toggle:after {
    content: "\f067";
	float: right;
	color: #000;
	font-size: 18px;
    font-family: "Font Awesome 5 Free";
	font-weight: 400;
	
}
.cs-accordion-toggle.open:after {
    content: "\f068";
	font-weight: 900;
}
.cs-accordion-list {
	font-family: pragmatica-extended, sans-serif;
	padding: 10px 20px 20px;
}
	


/*-------- FOOTER STYLES ----------------*/


.cs-footer ul li a{	
	font-family:  pragmatica-extended, sans-serif;
	font-weight: 700;
	font-size: 14px;
	line-height: 2;
	letter-spacing: normal;
	color: #fff;
}

/*---------- RESPONSIVE STYLES ----------*/

@media only screen and (min-width: 1440px) {

	.hero{
		 min-height: 86vh;
	}
}
@media only screen and (max-width: 1439px) {

	.hero{
		 min-height: 100vh;
	}
	.cs-accordion-toggle {
		font-size: 14px !important;
	}
	
}
@media only screen and (min-width: 768px) {
	.hero{
		background-image:url('/siteart/hero.jpg'); 
		background-position: 70% center;
	}
}
@media only screen and (max-width: 767px) {
	.hero{
		background-image:url('/siteart/hero-sm.jpg'); 
		background-position: 70% center;
		min-height: unset;
		height: 100vh;
		max-height: 750px;
	}

	.custom-form .flex{flex-wrap: wrap; gap: 0px;}
	

	.cs-accordion-toggle {
		font-size: 14px !important;
	}

}






