﻿/*===================== 
	Color information
	
	dark green #234a41
	light green #6e9552
		 
=======================*/
/*===================== 
	CSS reset/normalize 
=======================*/

/**Correct `block` display not defined in IE 8/9.**/
article,aside,details,figcaption,figure,footer,header,hgroup,
main,nav,section,summary {display: block;}
pre {white-space: pre-wrap;}
small { font-size: 80%;}


/*===================== 
	@Font-Face 
=======================*/


/*===================== 
	base styles 
=======================*/

html {
    -ms-text-size-adjust: 100%; 
    -webkit-text-size-adjust: 100%; 
	}

body {
	font-family: Arial, sans-serif; 
    margin: 0;
	padding:0;
	}

svg:not(:root) {overflow: hidden;/*reset*/}
	
.clear { clear: both;}

img { border: 0;} 
	
/*===================== 
	typography 
=======================*/

h1, h2, h3, h4, h5, h6 {
	margin: 0;
	padding: 0;
	}
	h1 {
		font-size:30px;
		font-weight:900;
		font-family: 'Cinzel', serif;
	}
	h2 {
		font-size:24px;
		font-weight:600;
		font-family: 'Cinzel', serif;	
	}
	h3 {
		font-size:20px;
		font-weight:600;
		font-family: 'Montserrat', sans-serif;
	}
	h4 {}
	h5 {}
	h6 {}

	p {
		margin: 0;
		font-size:18px;
		font-family: 'Montserrat', sans-serif;
	}

.font-center {
	text-align: center;
}
.font-dk-green {
	color:#234a41;
}
.lt-green-bg {
	background:#6e9552;
}

.bold {
    font-weight: bold;
	}
.btn-1 {
	display: inline-block;
	font-family: 'Montserrat', sans-serif;
	font-size: 18px;
	color:#fff!important;
	padding:6px 5px;
	max-width: 225px;
	width:100%;
	margin:10px 0;
	background:#6e9552;
	-webkit-transition: .4s ease-in;
	-moz-transition: .2s ease-in;
	-o-transition: .2s ease-in;
	transition: .2s ease-in;
	text-align: center;
}
.btn-1:hover {
	background:#234a41;
}

.container-1 ul {
	padding:10px 0;
	margin:0;
}
.container-1 ul li {
	padding:10px 0;
	margin:0;
	list-style: none;
}

/*===================== 
	link styles 
=======================*/

a:focus {outline: thin dotted;/*reset*/}
	
a,
a:link, 
a:visited, 
a:active {
	outline: 0;/*reset*/
    text-decoration:none;
	}
	a:hover  {
		outline: 0;/*reset*/
		text-decoration: none;
		color: #ccc;
		}  

/*===================== 
	header styles 
=======================*/

.header-wrap {
	width: 100%;
	margin: 0;
	}

.top-head {
	background:#234a41;
}
.top-head ul {
	margin:0 auto;
	max-width: 1100px;
	padding:0 10px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	box-sizing: border-box;
}
.top-head ul li {
	padding:0px;
	margin:0;
	list-style: none;
}
.top-head ul li a {
	display: inline-block;
	font-family: 'Montserrat', sans-serif;
	color:#fff!important;
	padding:10px;
	font-size: 18px;
}
.top-head ul li a:hover {
	color:#6e9552!important;
}
header {
	margin: 0 auto;
	max-width: 1100px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding:10px 0;
	}
.head-logo-1 {
	padding:10px;
}
.head-logo-1 img {
	max-width: 260px;
	width:100%;
	height: auto;
	display: block;
}

/*===================== 
	nav styles 
=======================*/

#menu-button{display: none;}
nav.mobile { display:none;}

nav.primary {
	padding:0 10px;
	display:block;
	margin:0;
	position:relative;
	}
	nav.primary ul {
		margin:0 auto; 
		padding:0;
		display: flex;
		justify-content: space-between;
		}
		nav.primary ul li {
			margin:0;
			padding:0;
			list-style-type:none; 
			}
			nav.primary ul li a {
				font-family: 'Montserrat', sans-serif;
				color: #000;
				font-size: 18px;
				text-decoration: none;
				padding: 10px;
				display: block;
				margin: 0;
				text-align: center;
				text-transform: uppercase;
				-webkit-transition: .4s ease-in;
				-moz-transition: .2s ease-in;
				-o-transition: .2s ease-in;
				transition: .2s ease-in;
				}	
			nav.primary ul li:hover {
				background: #6e9552;
				color:#fff;
				}
			nav.primary ul li:hover a {
				color:#fff;
				}
			/* Appearance of the sub-level links */
			nav.primary ul li li a { 
				font-size:16px;
				line-height:16px;
				padding:10px 0;
				color:#fff;
				background: #6e9552;
				display: block;
			}
			/* Appearance of the sub-level links on hover */
			nav.primary ul li li a:hover { 
				background: #234a41;
				
			}
/* This controls the Primary nav dropdowns for sublinks. Should not have to edit this too muuch */
nav.primary ul ul {
    display: none;
    position: absolute; 
}
nav.primary ul ul ul {
    position: absolute; 
    left: 100%;
    top:0; 
}
nav.primary ul li:hover > ul {  
    display: block;
    line-height:18px; 
    z-index: 200;
}
nav.primary ul ul li {
	display: block;
    float: none; 
	width: 230px;
    position: relative;
    margin:0;
}

/*===================== 
	content styles 
=======================*/

.hero-wrap {
	width:100%;
	margin:0;
}
.hero-wrap img {
	width:100%;
	height: auto;
	display: block;
}

.sub-cat-wrap {
	width:100%;
	position: relative;
	padding:20px 0;
}
.sub-cat-wrap:after {
	content: "";
	position: absolute;
	width:100%;
	height: 70px;
	top:calc(50% - 35px);
	background:#234a41;
	z-index: -1;
}
.btn-wrap {
	width:30%;
}
.sub-cat-btn {
	display: block;
	position: relative;
	-webkit-transition: .4s ease-in;
	-moz-transition: .2s ease-in;
	-o-transition: .2s ease-in;
	transition: .2s ease-in;
	box-shadow: 0 0 5px 1px rgba(0,0,0,0.1);
	cursor: pointer;
	background:#6e9552;
}
.sub-cat-btn img {
	width:100%;
	display: block;
}
.sub-cat-btn h2 {
	display: block;
	position: absolute;
	z-index: 200;
	top:30%;
	text-align: center;
	width:100%;
	color:#fff;
	font-weight: 700;
}
.sub-cat-btn p {
	display: block;
	width:100%;
	border-top:2px solid #fff;
	padding:10px 0;
	text-align: center;
	color:#fff;
}
.sub-cat-btn:hover p {
	background:#234a41;
}
.sub-cat-btn:hover img {
	opacity: 0.8;
}
.brand-line-1 {
	width:100%;
	position: relative;
	padding:30px 0;
	box-sizing: border-box;
}
.brand-line-1:after {
	content: "";
	position: absolute;
	width:100%;
	height: 50px;
	top:calc(50% - 25px);
	background:#234a41;
	z-index: -1;
}
.brand-line-1 h3 {
	color:#fff;
	display: block;
	background:#6e9552;
	box-shadow: 0 0 5px 1px rgba(0,0,0,0.1);
	max-width: 300px;
	padding:30px 0;
	margin:0 auto;
	box-sizing: border-box;
	text-align: center;
}
.brnad-cont-1 a {
	display: block;
	max-width: 330px;
	margin:0px auto 20px auto;
}
.brnad-cont-1 img {
	max-width: 100%;
	height: auto;
	display: block;
	margin:0 auto;
}
.brnad-cont-1 .flex-cont-2 img {
	max-width: 70%;
	height: auto;
	display: block;
	margin:20px auto;
}
.map-cont-1 {
	width:100%;
	height: 400px;
}
.fb-section {
	padding: 20px 0 0 0;
	margin: 0 auto;
	max-width: 360px;
	width:100%;
	overflow-x: scroll;
}

/*===================== 
	slideshow styles 
=======================*/
.slide-wrap-1 {
	width:100%;
	margin:0;
	position: relative;
}
.cycle-slideshow {
	width: 100%;
	height: auto;
}

.slide-cont-1 {
	position: relative;
	width:100%;
}
.slide-cont-1 img {
	width:100%;
	height: auto;
	display: block;
}
.slide-overlay-1 {
	position: absolute;
	top:0;
	left:0;
	right:0;
	margin:0 auto;
	max-width: 1100px;
	padding:10px;
	box-sizing: border-box;
	height: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.slide-logo-overlay {
    width: 50%;
    box-sizing: border-box;
	display: flex;
    align-items: center;
	padding: 30px 20px;
	box-sizing: border-box;
	background: rgba(255,255,255,0.7);
	box-shadow: 0 0 10px 5px rgba(0,0,0,0.1);
	border-radius: 5px;
}
.slide-logo-overlay img {
	max-width: 200px;
	width:100%;
	height: auto;
	display: block;
	padding:10px;
	box-sizing: border-box;
}
.slide-overlay-1 .sml-txt {
	font-size:35px;
}
.slide-overlay-1 h1 {
	font-size:43px; 
	color:#fff;
	text-shadow: 0 0 10px #000, 0 0 10px #000;
}
.slide-overlay-1 h2 {
	font-size: 25px;
	color:#fff;
	text-shadow: 0 0 10px #000, 0 0 10px #000;
}
.slide-pager {
	margin:0 auto;
	text-align: center;
	display: none;
}
.slide-pager span {
	font-size: 45px;
	color:#234a41;
	cursor: pointer;
	line-height: .8;
	margin:0 2px;
}
.slide-pager .cycle-pager-active {
	color:#6e9552;
}
#prev {
	position: absolute;
	top:calc(50% - 40px);
	color:rgba(255,255,255,0.6);
	font-size: 20px;
	left:10px;
	padding:10px;
	-webkit-transition: .4s ease-in;
	-moz-transition: .2s ease-in;
	-o-transition: .2s ease-in;
	transition: .2s ease-in;
	z-index: 200;
	cursor: pointer;
}
#next {
	position: absolute;
	top:calc(50% - 40px);
	color:rgba(255,255,255,0.6);
	font-size: 20px;
	right:10px;	
	padding:10px;
	-webkit-transition: .4s ease-in;
	-moz-transition: .2s ease-in;
	-o-transition: .2s ease-in;
	transition: .2s ease-in;
	z-index: 200;
	cursor: pointer;
}
#prev:hover, #next:hover {
	color:rgba(255,255,255,0.9);
}

/*===================== 
	Form styles 
=======================*/

/* Containers */



.form-info-cont {
	width: 100%;
	box-sizing: border-box;
}
.form-flex {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}
.form-inline-1 {
	display: flex;
	flex-wrap: wrap;
}
.thankyou-container {
	width:100%;
	box-sizing: border-box;
	padding:30px 10% 10% 10%;
	margin-top:0;
}

/* Inputs */

.radio-pad {
	padding: 0 0 0 10px;
}

.form-info-cont input, .form-info-cont date, .form-info-cont select {
	width: 100%;
	display: block;
	padding: 5px 0 5px 5px;
	font-size: 17px;
	margin:  0 0 15px 0;
	box-sizing: border-box;
}
.form-info-checkbox input[type="checkbox"] {
	padding: 5px 0 5px 5px;
	margin:  0 0 15px 0;
	box-sizing: border-box;
}
.form-info-cont textarea {
	width: 100%;
	display: block;
	padding: 5px;
	font-size: 17px;
	min-height: 120px;
	box-sizing: border-box;
	margin:  0 0 15px 0;
	font-family: 'Roboto', sans-serif;
}

select {
	margin:0;
	padding:0;
}
.form-inline .btn-1 {
	margin:0 auto;
	border: none;
	-webkit-appearance: none;
	display: block;
}

.CaptchaWhatsThisPanel a {color:#000;}
.CaptchaWhatsThisPanel a:hover {text-decoration:underline;} 


/*===================== 
	layout styles 
=======================*/

.wrap {
	width: 100%;
	margin: 0;
	}
	

.container-1 {
	max-width: 80%;
	margin: 0 auto;
	padding:30px 10px;
	box-sizing: border-box;
	}
.flex-cont-1 {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}
.flex-cont-2 {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	align-items: center;
}
.flex-cont-3 {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
}
	
.col-1-6 { width: 16%; box-sizing:border-box;}
.col-1-5 { width: 20%; box-sizing:border-box;}
.col-1-4 { width: 24%; box-sizing:border-box;}
.col-1-3 { width: 33%; box-sizing:border-box;}
.col-1-2 { width: 49%; box-sizing:border-box;}
.col-2-3 { width: 65%; box-sizing:border-box;}
.col-3-4 { width: 75%; box-sizing:border-box;}

/*===================== 
	footer styles 
=======================*/

footer {
	margin: 0;
	width: 100%;
	background:#234a41;
	}
.foot-icon ul {
	padding:0;
	margin:0;
}
.foot-icon ul li {
	padding:0 20px 0 0;
	margin:0;
	display: inline-block;
}
.foot-icon ul li a {
	color:#fff;
	font-size:24px; 
}
.foot-icon ul li a:hover {
	color:#6e9552; 
}
.foot-host {
	font-family: 'Montserrat', sans-serif;
	font-size: 12px;
	color:#fff;
}
.foot-host a {
	color:#fff;
}
.foot-host a:hover {
	color:#6e9552;
}

a.footerlink:link,
a.footerlink:visited, 
a.footerlink:active {
	text-decoration: none; 
	font-size:13px;
	color: #222;
	}
	a.footerlink:hover {
		text-decoration:none; 
		font-size:13px;
		color: #fff;
		}

.footertext {
	font-size:13px; 
	color:#666;
	}

.smallfootertext {
	font-size:10px; 
	color:#666;
	}

.divfooter {
	max-width:490px; 
	text-align:center; 
	margin:0 auto;
	}

/*========================== 
	  Responsive styles 
============================*/
@media screen and (max-width: 1160px)  {
	.slide-overlay-1 {
		padding:10px 40px;
	}
}
@media screen and (max-width: 970px)  {
	.head-logo-1 img {
		max-width: 180px;
	}
	nav.primary ul li a {
		font-size: 16px;
		padding:7px;
	}
	.sub-cat-btn h2 {
		top:3vw;
	}
	.slide-logo-overlay {
		width:40%;
	}
}

@media screen and (max-width: 825px)  {

	.top-head ul {
		justify-content: center;
	}
	.head-logo-1 img {
		max-width: 300px;
		width: 100%;
		height: auto;
		display: block;
	}
	
	/*==============================
		Mobile Nav Styles			
	================================*/	
	nav.primary{display:none;}
	#menu-button{ 
		display: block;
		font-size: 35px;
		position: relative;
		z-index: 400; /* needs to be lower than nav.mobile, adjust as needed */
		}
		#menu-button a{
			 color:#234a41;
			 text-decoration: none;
			 padding:10px; 
			 font-weight:normal;
		  }
	nav.mobile {
		display:block;
		position: fixed;
		top: 0;
		left: -250px;
		width: 250px;
		height: 100%;
		background: #333;
		z-index: 500; /* needs to be higher than #menu-button, adjust as needed */
		overflow:auto;
	}
	/* MENU HEADER SOCIAL MEDIA */
		nav.mobile .social-media {
			position: relative;
			text-decoration: none;
			display: inline-block;
			font-size:16px;
			word-spacing:13px;
			padding:0 0 0 15px;
			color: #ccc !important;
		}

		nav.mobile .social-media a:link, nav.mobile .social-media a:visited {color:#ccc; text-decoration:none;}
		nav.mobile .social-media a:hover, nav.mobile .social-media a:active {color:#fff; text-decoration:underline;}

	/* MENU HEADER STYLES */
	nav.mobile .mobile_top {
		position: relative;
		display:block;
		padding: 0;
		margin:15px 0 10px 0;
		color: #999;
		font-size: 18px;
		font-weight: 400;
	}

	/* MENU CLOSE 'X' BUTTON */
	nav.mobile .menu-toggle {
		position: absolute;
		padding: 3px 8px 3px;
		font-family: Arial, sans-serif;
		font-size:24px;
		font-weight: bold;
		line-height: 1;
		background: #222;
		color: #999;
		text-decoration: none;
		top:-4px;
		right:13px;
	}
	nav.mobile .menu-toggle:hover { /* Menu close button on hoveer */
		color: #fff;
	}

	/* MENU LIST STYLE */
	nav.mobile ul {
		list-style: none;
		font-weight: 300;
		margin:0;
		padding:0;
	}
	nav.mobile ul li {
		border-top: 1px solid #234a41;
		border-bottom: 1px solid #234a41;
		position:relative;
	}

	/* FIRST LEVEL */
	nav.mobile ul li a {
		position: relative;
		display: block;
		font-size:15px;
		padding: 10px;
		color: #999;
		text-decoration: none;
		border-left:4px #333 solid;
		text-shadow: 1px 1px 1px rgba(0,0,0,0.3);
	}
	nav.mobile ul li a:hover {
		background:rgba(45,45,45,0.5); 
		color: #fff; 
		border-left:4px #6e9552 solid; /* border highlight - Change to fit match site colors */
	}

	/* SECOND LEVEL */
	nav.mobile ul li li:last-child {border:none;}
	nav.mobile ul li li a {
		background: #444;
		position: relative;
		display: block;
		padding: 10px 10px 10px 15px;
		border-left:4px #444 solid;
		color: #ccc;
		text-decoration: none;
	}
	nav.mobile ul li li a:hover {background:rgba(65,65,65,0.5);}

	/* THIRD LEVEL */
	nav.mobile ul li li li:last-child {border:none;}
	nav.mobile ul li li li a {
		background: #555;
		position: relative;
		display: block;
		padding: 10px 10px 10px 25px;
		color: #ccc;
		text-decoration: none;
		border-left:4px #555 solid;
	}
	nav.mobile ul li li li a:hover {background:rgba(85,85,85,0.5);}

	nav.mobile ul li .click{/* dropdown menu idicator arrow be sure to include this image with your image files */ 
		position:absolute;
		display:block;
		cursor:pointer;
		z-index: 12399994;
		top:0;
		right:0;
		width:auto;
		height:auto;
		padding: 17px 20px;
		color:#fff;

	}
	.nav-footer {color:#6e9552; position:relative; text-align:center; font-size:14px; line-height:16px; padding:15px 0;}

	/* FONT AWESOME ICONS */
	nav.mobile ul li a i{
		width:25px;
		padding:8px 3px;
		margin:0 6px 0 0;
		text-align:center;
		background:#292929;
		-webkit-border-radius: 30px;
		-moz-border-radius: 30px;
		border-radius: 30px;
		text-shadow: 1px 1px 1px rgba(0,0,0,0.3);
	}


	nav.mobile ul li .fa-chevron-down {color:#999;}
    
    .grid figure{width: 49%;}
	

}
@media screen and (max-width: 775px)  {
	#prev, #next {
		display: none;
	}
	.mobile-hide {
		display: none;
	}
	.slide-pager {
		display: block;
	}
	.slide-overlay-1 {
		background:#234a41;
		position: static;
		padding: 15px 10px;
		text-align: center;
		justify-content: center;
	}
	.slide-overlay-1 h1 {
		font-size: 6vw;
	}
	.slide-overlay-1 h2 {
		font-size: 4vw;
	}
	.slide-overlay-1 .btn-1 {
		margin:15px auto;
		padding:10px 0px;
	}
	.slide-overlay-1 .btn-1:hover {
		text-shadow: 0 0 10px #000, 0 0 10px #000;
	}
	.slide-logo-overlay {
		position: absolute;
		top: 0px;
		height: 26vw;
		width: 100%;
		justify-content: center;
		align-items: center;
		border-radius: 0px;
	}
	.slide-overlay-1 .sml-txt {
		font-size: 4.2vw;
	}
	.sub-cat-wrap::after {
		display: none;
	}
	.sub-cat-wrap .flex-cont-1 {
		flex-direction: column;
	}
	.sub-cat-wrap .container-1 {
		padding:10px 0;
	}
	.sub-cat-btn {
		max-width: 333px;
		width:100%;
		margin:20px auto;
	}
	.btn-wrap {
		width:100%;
		position: relative;
	}
	.btn-wrap:after {
		content: "";
		position: absolute;
		width:100%;
		height: 70px;
		top:calc(50% - 35px);
		background:#234a41;
		z-index: -1;
	}
	.sub-cat-btn h2 {
		top: 30%;
	}
}
@media screen and (max-width: 400px)  {
	.sub-cat-btn {
		width: 95%;
	}
	.sub-cat-btn h2 {
		font-size: 8vw;
		top:8vw;
	}
	
}
	
