﻿/*===================== 
	Color information
	
	-Orange #f5814b
	-Dark Orange #c06338
	
		 
=======================*/
/*===================== 
	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: "Jost", 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: 700;
}
	h2 {
        font-size: 28px;
        font-weight: 700;
}
	h3 {
        font-size: 24px;
        font-weight: 700;
}
	h4 {
        font-size: 20px;
        font-weight: 700;
}
	h5 {
        font-size: 18px;
        font-weight: 700;
}
	h6 {}

p {
    font-size: 18px;
	margin: 0;
	}

.bold {
    font-weight: bold;
	}

/*===================== 
	link styles 
=======================*/

a:focus {outline: thin dotted;/*reset*/}
	
a,
a:link, 
a:visited, 
a:active {
	outline: 0;/*reset*/
    color: #000; 
    text-decoration:none;
	}
	a:hover  {
		outline: 0;/*reset*/
		text-decoration: none;
		color: #ccc;
		}  
.orange-btn {
	background:#f5814b;
	color:#000!important;
	font-size: 24px;
	font-weight: 500;
	transition: .2s ease-in;
	padding:15px 40px;
	text-align: center;
	box-sizing: border-box;
	cursor: pointer;
	font-family: "Jost", sans-serif;
	outline:none;
	border:0px;
}
.orange-btn:hover {
	background:#c06338;
}
.text-btn {
	color:#000!important;
	font-size:20px;
	font-weight:600;
	transition: .2s ease-in;
	font-family: "Jost", sans-serif;
}
.text-btn:hover {
	color:#c06338!important;
}


/*===================== 
	header styles 
=======================*/

.header-wrap {
	width: 100%;
	margin: 0;
	position: absolute;
	top:0;
	z-index: 2;
	padding-top:50px;
	}

header {
	margin: 0 auto;
	width:100%;
	display: flex;
	justify-content: space-between;
	background:#000;
	align-items: center;
}
.head-logo-1 {
	width:15%;
	max-width: 250px;
	display: flex;
	justify-content: flex-end;
	padding-left:20px;
	box-sizing: border-box;
	position: relative;
	margin: -50px 0;
}
.head-logo-1 img {
	width:100%;
	max-width: 180px;
	height: auto;
	display: block;
}
.header-info {
	width: 15%;
    max-width: 220px;
    background: #f5814b;
    padding: 25px 20px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: -12px 0;
}
.header-info li {
	padding:0;
	margin:0;
	list-style: none;
	display: block;
}
.header-info li a {
	font-size:20px;
	color:#fff;
	transition: .2s ease-in;
}
.header-info li a:hover {
	opacity: 0.7;
}


/*===================== 
	nav styles 
=======================*/

#menu-button{display: none;}
nav.mobile { display:none;}



nav.primary {
	padding:0;
	display:block;
	margin:0;
	position:relative;
	flex-grow: 1;
	}
	nav.primary ul {
		margin:0 auto; 
		padding:0;
        display: flex;
		justify-content: center;
		}
		nav.primary ul li {
			display:inline-block;
			margin:0;
			list-style-type:none; 
			transition: .2s ease-in;
			}
			nav.primary ul li a {
				font-family: "Jost", sans-serif;
				color: #fff;
				font-size: 18px;
				text-decoration: none;
				padding:15px 20px;
				display: block;
				margin: 0;
				text-align: center;
				-webkit-transition: .4s ease-in;
				-moz-transition: .2s ease-in;
				-o-transition: .2s ease-in;
				transition: .2s ease-in;
				font-weight: 500;
				}	
			nav.primary ul li a:hover {
				color:#000;
				background: #f5814b;
				}
			nav.primary ul li:hover a {
					color:#000;
					background: #f5814b;
				}
			/* Appearance of the sub-level links */
			nav.primary ul li li a { 
				font-size:16px;
				color:#000;
				background: #c06338;
				text-align:left;
			}
			/* Appearance of the sub-level links on hover */
			nav.primary ul li li a:hover { 
			}
/* 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: 100;
}
nav.primary ul ul li {
	display: block;
    float: none; 
	width: 230px;
    position: relative;
    margin:0;
}

/*===================== 
	content styles 
=======================*/

.wrap-hero {
	width:100%;
	position: relative;
	top:0;
	z-index: 1;
	background-image: url("../siteart/hero-bg-1.jpg");
	background-color: #000;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	padding:140px 20px 120px 20px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	height: 43vw;
    min-height: 600px;
    box-sizing: border-box;
    max-height: 70vh;
}
.wrap-hero h1 {
	color:#fff;
	text-shadow: 0 0 10px rgba(0,0,0,0.8);
	text-align: center;
	font-size:50px;
	font-weight: 900;
	
}
.wrap-hero h1 span {
	font-size:24px;
	font-weight: 600;
}
.wrap-hero-cat {
	width:100%;
	background:#000;
}
.wrap-hero-cat .container-1 {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	margin-top:-200px;
	position: relative;
	z-index: 3;
	gap:30px 0;
}
.wrap-hero-cat .container-1 img {
	width:45%;
	height: auto;
	object-fit: contain;
	object-position: center;
	display: block;
	padding-right: 40px;
}
.wrap-hero-cat .container-1 a {
	width: 22%;
	padding:60px 20px;
}
.wrap-eq-cat {
	width:100%;
	background:#000;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.wrap-eq-cat h2 {
	display: block;
	width:100%;
	color:#f5814b;
	font-size:35px;
	font-weight:600;
	text-align: center;
	padding:40px 20px;
	box-sizing: border-box;	
}
.wrap-eq-cat a {
	width:33.33%;
	position: relative;
}
.wrap-eq-cat a img {
	width:100%;
	height: 340px;
	object-fit: cover;
	object-position: center;
	display: block;
}
.wrap-eq-cat a h3 {
	position: absolute;
	z-index: 1;
	width:100%;
	height: 100%;
	top:0;
	left:0;
	background:rgba(0,0,0,0.5);
	padding:20px;
	box-sizing: border-box;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size:24px;
	font-weight:600;
	color:#fff;
	text-shadow: 0 0 5px rgba(0,0,0,0.5);
	transition: .2s ease-in;
}
.wrap-eq-cat a:hover h3 {
	background:rgba(0,0,0,0.8);
	text-shadow: 0 0 8px rgba(0,0,0,0.9);
}
.wrap-home-about {
	width:100%;
	background:#fff;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	border-bottom:75px solid #f5814b;
}
.home-about-cont {
	width:50%;
	display: flex;
	justify-content: flex-end;
}
.home-about-col {
	width:100%;
	max-width: 750px;
	padding:80px 20px;
	box-sizing: border-box;
}
.home-about-col h2 {
	font-size:35px;
	font-weight:700;
	color:#000;
}
.home-about-col h2 span {
	font-size:30px;
	font-weight:500;
	color:#c06338;
}
.home-about-col p {
	font-size:20px;
	font-weight:500;
	line-height: 1.2;
	color:#000;	
	padding:15px 0;
}
.home-about-bg {
	width: 50%;
    height: auto;
    display: block;
    object-fit: cover;
    object-position: center left;
}
.wrap-home-banner {
	width:100%;
	box-sizing: border-box;
	background-image: url("../siteart/home-foot-bg-1.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	padding:150px 0 250px 20px;
}
.home-banner-cont-1 {
	padding: 60px 40px;
	box-sizing: border-box;
	background:rgba(255,255,255,0.8);
	text-align: center;
	border-top-left-radius: 20px;
	border-bottom-left-radius: 20px;
}
.home-banner-cont-1 h2 {
	font-size:50px;
	font-weight:700;
	color:#000;
}
.home-banner-cont-1 p {
	font-size:20px;
	font-weight:500;
	color:#000;
	padding:20px 0;
}
.home-banner-cont-1 a {
	display: inline-block;
}
.about-wrap {
	width: 100%;
    background: #fff;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    border-top: 25px solid #f5814b;
}
.about-pg-cont-1 {
	width: 50%;
    display: flex;
    justify-content: flex-end;
	align-items: center;
} 
.about-pg-col-1 {
	width: 100%;
    max-width: 750px;
    padding: 80px 40px;
    box-sizing: border-box;
}
.about-pg-col-1 p {
	font-size: 20px;
}
.about-pg-col-img {
    width: 50%;
    height: auto;
    display: block;
    object-fit: cover;
    object-position: center left;
}
.wrap-content {
	width:100%;
	background:#101010;
	box-sizing: border-box;
	padding:0px 20px 180px 20px;
}
.content-head-cont-1 {
	padding:180px 20px;
	box-sizing: border-box;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}
.content-head-cont-1 h1 {
	color: #fff;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
    text-align: center;
    font-size: 50px;
    font-weight: 900;
}
.wrap-content .container-1 {
	top:-80px;
	position: relative;
	z-index: 1;
	background: #fff;
	border:2px solid #f5814b;
}

/*===================== 
	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 p {
	font-size: 20px;
	padding:10px 0 5px 0;
	font-weight: 600;
	display: block;
}
.form-info-cont input, .form-info-cont date {
	width: 100%;
	display: block;
	padding: 15px;
	font-size: 17px;
	margin:  0 0 15px 0;
	box-sizing: border-box;
    outline:none;
    border:1px solid #000;
    color:#000; 
	font-family: "Jost", sans-serif;
	border-radius: 10px;
}

.select-cont {
    display: flex;
    justify-content: space-between;
    align-items: center;
	padding:0px!important;
    border-radius: 0px!important;
    width:100%;
    background:#fff;
    box-sizing: border-box;
    position: relative;
}
.select-cont  select {
    -webkit-appearance: initial;
    -moz-appearance: initial;
    appearance: initial;
    width:100%;
    background-color:transparent;
    border:0px!important;
    outline:none!important;
    font-size: 17px!important;
    font-weight: 400!important;
    padding:15px!important;
    box-sizing: border-box;
    color:#000; 
    position: relative;
    z-index: 2;
    cursor: pointer;
	
}
.select-cont i {
    position: absolute;
    z-index: 1;
    right:0px;
}

.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: 15px;
	font-size: 17px;
	min-height: 120px;
	box-sizing: border-box;
	margin:  0 0 15px 0;
	border:1px solid #000;
    color:#000; 
	font-family: "Jost", sans-serif;
    outline:none;
	border-radius: 10px;
}


.CaptchaImage {
  max-width: 100%;
}
.CaptchaWhatsThisPanel input {
    margin:0 auto;
}

.CaptchaWhatsThisPanel a {color:#000;}
.CaptchaWhatsThisPanel a:hover {text-decoration:underline;} 


/*===================== 
	layout styles 
=======================*/

.wrap {
	width: 100%;
	margin: 0;
	}
	

.container-1 {
	max-width: 1600px;
	margin: 0 auto;
	padding:20px;
	box-sizing: border-box;
	}
.container-inv {
	margin: 0 auto;
	padding:180px 10px;
	box-sizing: border-box;
	}
.flex-cont-1 {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}
	
.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:#000;
	position: relative
}
.foot-logo-1 {
	position: absolute;
	width:450px;
	z-index: 1;
	left:0;
	bottom:0;
}
.foot-logo-1 img {
	width:105%;
	position: absolute;
	left:-10%;
	bottom:20px;
	height: auto;
	display: block;
}
footer .container-1 {
	padding:60px 20px;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap:5px;
	position: relative;
	z-index: 2;
}
footer .container-1 p {
	font-size:14px;
	font-weight:500;
	color:#ea6e0d;
	padding-right:10px;
	margin-right:5px;
	border-right: 2px solid #ea6e0d;
	display: block;
}
footer .container-1 p a {
	border-left: 2px solid #ea6e0d;
	margin-left:5px;
	padding-left:10px;
	font-size:14px;
	display: inline-block;
}
footer .container-1 a {
	font-size:16px;
	font-weight:500;
	color:#ea6e0d;
	padding-right:10px;
	border-radius: 1px solid #ea6e0d;
}



/*========================== 
	  Responsive styles 
============================*/

@media screen and (max-width: 1380px)  {

	.wrap-hero-cat .container-1 img {
		padding-right: 0px;
	}
	.wrap-hero-cat .container-1 a {
		width: 26%;
		font-size: 20px;
	}
}

@media screen and (max-width: 1000px)  {
	nav.primary ul li a {
		font-size: 16px;
		padding:15px;
	}
	.header-info li a {
		font-size: 16px;
	}
	.wrap-hero-cat .container-1 img {
		width:100%;
		max-width: 550px;
		margin:0 auto;
	}
	.wrap-hero-cat .container-1 a {
		width: 49%;
		padding:60px 20px;
	}
	.wrap-hero h1 {
		font-size: 5vw;
	}
	.wrap-hero h1 span {
		font-size: 2.5vw;
	}
	.wrap-eq-cat h2 {
		font-size: 22px;
	}
	.wrap-eq-cat a {
		width:100%;
		height: 200px;
	}
	.wrap-eq-cat a img {
		height: auto;
		max-height: 200px;
	}
	.home-about-cont {
		width:100%;
	}
	.home-about-col {
		max-width: 100%;
		padding:60px 20px 20px 20px;
	}
	.home-about-bg {
		width:100%;
	}
	.wrap-home-banner {
		padding:150px 0 250px 0;
	}
	.home-banner-cont-1 {
		width:100%;
		border-top-left-radius: 0px;
		border-bottom-left-radius: 0px;
	}
	.home-banner-cont-1 h2 {
		font-size:30px;
	}
	.home-banner-cont-1 p {
		font-size:18px;
		padding:20px 0;
	}
	.foot-logo-1 {
		width:calc(100% - 440px);
	}
	.wrap-content {
		padding: 0px 20px 80px 20px;
	}
	.content-head-cont-1 {
		padding:140px 20px;
	}
	.about-pg-cont-1 {
		width: 100%;
		order:1;
	}
	.about-pg-col-1 {
		max-width: 100%;
		padding: 60px 20px;
	}
	.about-pg-col-img {
		width: 100%;
		order:2;
		height: 400px;
	}
	
}
@media screen and (max-width: 920px)  {

.foot-logo-1 {
		width:50%;
		bottom:80px;
	}
	footer .container-1 {
		padding:80px 20px 40px 20px;
		justify-content: center;
		flex-wrap: wrap;
	}
}
@media screen and (max-width: 760px)  {
	
	.col-1-2 {
		width:100%;
	}

	.header-info {
		display: none;
	}
	.head-logo-1 {
		width: 100%;
		max-width: 150px;
	}
	
	/*==============================
		Mobile Nav Styles			
	================================*/	
    
    
	nav.primary{display:none;}
	#menu-button{ 
		display: block;
		padding-right:20px;
	}
	#menu-button a{
		 color:#f5814b;
		 font-size:30px;
		cursor: pointer;
	  }
	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 {
		display:block;
		padding: 10px;
		color: #999;
		box-sizing: border-box;
		font-size: 18px;
		font-weight: 400;
		text-align: right
	}

	/* MENU CLOSE 'X' BUTTON */
	nav.mobile .menu-toggle {
		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;
		cursor: pointer;
	}
	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 #454545;
		border-bottom: 1px solid #151515;
		position:relative;
	}

	/* FIRST LEVEL */
	nav.mobile ul li a {
		position: relative;
		display: block;
		font-size:15px;
		padding: 10px;
		color: #fff;
		text-decoration: none;
		border-left:4px #333 solid;
		text-shadow: 1px 1px 1px rgba(0,0,0,0.3);
	}
	.mob-phone a {
		background:#f5814b!important;
		color:#000!important;
	}
	nav.mobile ul li a:hover {
		background:rgba(45,45,45,0.5); 
		color: #fff; 
		border-left:4px #f5814b 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:#f5814b; position:relative; text-align:center; font-size:14px; line-height:16px; padding:15px 0;}

		.wrap-hero h1 {
        font-size: 8vw;
    }
	.wrap-hero h1 span {
        font-size: 3vw;
    }
	.wrap-hero {
		height: auto;
		min-height: 100%;
		box-sizing: border-box;
		max-height: 100%;
		padding: 140px 20px 180px 20px;
	}
	.wrap-hero-cat .container-1 a {
        width: 100%;
        padding: 40px 20px;
    }
	.home-about-col h2 {
		font-size:22px;
	}
	.home-about-col h2 span {
		font-size:18px;
	}
	.home-about-col p {
		font-size:16px;
		padding:10px 0;
	}
    .wrap-home-banner {
		padding:100px 0 200px 0;
	}
	.home-banner-cont-1 h2 {
		font-size:22px;
	}
	.home-banner-cont-1 p {
		font-size:16px;
	}
	
	.orange-btn {
		font-size: 20px;
	}
	.container-inv {
		margin: 0 auto;
		padding: 150px 0 180px 0;
		box-sizing: border-box;
	}
	.content-head-cont-1 h1 {
		font-size: 30px;
	}
		h1 {
			font-size: 24px;
	}
		h2 {
			font-size: 22px;
	}
		h3 {
			font-size: 20px;
	}
		h4 {
			font-size: 18px;
	}
		h5 {
			font-size: 16px;
	}

	p {
		font-size: 16px;
		}
}
@media screen and (max-width: 450px)  {
	footer .container-1 p, footer .container-1 p a {
		font-size: 16px;
	}
	footer .container-1 p {
		border-right: 0px;
		text-align: center;
	}
	.foot-logo-1 img {
		bottom: 40px;
	}
	
}
	
