﻿/*===================== 
	Color information
	
	-
	-
	-
	-
		 
=======================*/
/*===================== 
	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: "Nunito Sans", 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;
}

.text-center {
	text-align: center;
}

/*===================== 
	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;
}
.white-btn {
	display: inline-block;
	padding:10px;
	box-sizing: border-box;
	font-size:16px;
	background:#fff;
	color:#000!important;
	text-align: center;
	font-family: "Nunito Sans", sans-serif;
	transition: .2s ease-in;
	line-height: 1;
	border:1px solid #fff;
	outline:none;
	cursor: pointer;
}
.white-btn i {
	color:#ee8144;
	transition: .2s ease-in;
}
.white-btn:hover {
	background:#ee8144;
}
.white-btn:hover i {
	color:#000;
}
.black-btn {
	display: inline-block;
	padding:10px;
	box-sizing: border-box;
	font-size:16px;
	background:#000;
	color:#fff!important;
	text-align: center;
	font-family: "Nunito Sans", sans-serif;
	transition: .2s ease-in;
	line-height: 1;
	outline:none;
	cursor: pointer;
	border:1px solid #000;
}
.black-btn i {
	color:#ee8144;
	transition: .2s ease-in;
}
.black-btn:hover {
	background:#ee8144;
	color:#000!important;
}
.black-btn:hover i {
	color:#000;
}
.text-link-1 {
	font-weight: 700;
	color:#000!important;
	transition: .2s ease-in;
	display: inline-block;
}
.text-link-1 i {
	color:#ee8144;
}
.text-link-1:hover {
	color:#ee8144!important;
}
.btn-cont-1 {
	display: flex;
	flex-wrap: wrap;
	gap:5px 15px;
}
.click-to-show {
	display: none;
}
.click-to-show.clicked {
	display: block;
}
.click-show.clicked {
	display: none;
}

/*===================== 
	header styles 
=======================*/

.home-pg .header-wrap {
	position: absolute;
	top:0;
	z-index: 10;
}

.header-wrap {
	width: 100%;
	margin: 0;
	position: relative;
}

header {
	margin: 0 auto;
	width:100%;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}
.head-logo-1 {
	width:100%;
	max-width:250px;
}
.head-logo-1 img {
	width:100%;
	max-width: 100%;
	height: auto;
	display: block;
}
.home-pg .head-left {
	background: rgba(255,255,255,0.8);
}
.head-left {
	width: 25vw;
	display: flex;
	justify-content: flex-end;
	padding: 20px 100px 50px 20px;
	box-sizing: border-box;
	clip-path: polygon(0% 0%,100% 0%,calc(100% - 125px) 100%,0% 100%);
	background:#ebebeb;
	height: 200px;
}
.head-right {
	width:75vw;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	gap:20px;
	padding-top:20px;
}
.head-info {
	padding:0 5vw 0 0;
	margin:0;
	display: flex;
	justify-content: flex-end;
	gap:20px;
}
.head-info li {
	padding:0;
	margin:0;
	list-style: none;
}
.head-info li a {
	color:#000;
	transition: .2s ease-in;
	font-size: 16px;
}
.home-pg .head-info li a {
	color:#fff;
	text-shadow: 0 0 5px rgba(0,0,0,1);
}
.head-info li a i {
	color:#ee8144;
}
.head-info li a:hover {
	opacity: 0.7;
}


/*===================== 
	nav styles 
=======================*/

#menu-button {
	display: none;
}

nav.mobile {
	display: none;
}



nav.primary {
	padding: 0 5vw 0 0;
	display: flex;
	margin: 0;
	position: relative;
	background: #000;
	height: 50px;
	justify-content: flex-end;
	align-items: center;	
}
nav.primary:after {
	position: absolute;
	content: "";
	clip-path: polygon(46% 0%,100% 0%,100% 100%,0% 100%);
	background: #000;
	height: 100%;
	width: 68px;
	display: block;
	top: 0;
	right: 100%;
}
nav.primary ul {
	margin: 0;
	padding: 0;
	display: flex;
	justify-content: flex-end;
	align-items: center;
}

nav.primary ul li {
	display: inline-block;
	margin: 0;
	list-style-type: none;
}

nav.primary ul li a {
	font-family: "Nunito Sans", sans-serif;
	color: #fff;
	font-size: 16px;
	text-decoration: none;
	padding:10px 15px;
	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 {
	background: #848484;
	color: #fff;
}

/* Appearance of the sub-level links */
nav.primary ul li li a {
	padding: 10px 0;
	color: #fff;
	background: #181818;
	display: block;
	text-align: center;
	border-right: none;
	border-left: none;
}

/* 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%;
	height: auto;
	position: relative;
	z-index: 1;
}
.hero-bg-img-1 {
	position: absolute;
	z-index: 1;
	top:0;
	left:0;
	width:100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
}
.hero-overlay {
	width:100%;
	height: 40vw;
	min-height: 400px;
	max-height: calc(100% - 400px);
	background:rgba(0,0,0,0.6);
	position: relative;
	z-index: 2;
	display: flex;
	justify-content: center;
	align-items: center;
	clip-path: polygon(100% 0%,100% 52%,87vw 100%,0% 100%,25vw 0%);
}
.hero-overlay-cont-1 {
	width:65%;
	max-width: 1100px;
	margin:0 auto;
	padding-top: 80px;
}
.hero-overlay-cont-1 h1 {
	font-family: "Nunito Sans", sans-serif;
	font-size:45px;
	font-weight:800;
	color:#fff;
	text-shadow: 0 0 10px rgba(0,0,0,0.6);
	line-height: 1;
}
.hero-overlay-cont-1 h1 span {
	font-weight:500;
}
.hero-btn-cont-1 {
	padding-top:30px;
	display: flex;
	position: relative;
	gap:10px;
}
.hero-btn-cont-1:before {
	content:"";
	display: block;
	background:#ee8144;
	clip-path: polygon(0% 0%,100% 0%,100% 100%,13% 100%);
	width:90px;
}
.hero-btn-col-1 {
	display: flex;
	gap: 10px;
	width: 100%;
	max-width: 400px;
}
.hero-btn-col-1 a {
	width:100%;
	display: block;
}
.wrap-home-cat {
	position: relative;
	width: 100%;
	background:#ee8144;
	padding-top:20px;
}
.wrap-home-cat:after {
	content:"";
	display: block;
	bottom:100%;
	right:0;
	position: absolute;
	z-index: 1;
	background:#fff;
	width: 9vw;
  	height: 13vw;
	clip-path: polygon(100% 0%,0% 100%,100% 100%);
}
.wrap-home-cat:before {
	content:"";
	display: block;
	bottom:100%;
	right:0;
	position: absolute;
	z-index: 2;
	background:#ee8144;
	width: 7.5vw;
  	height: 11vw;
	clip-path: polygon(100% 0%,0% 100%,100% 100%);
}
.wrap-home-cat .container-2 {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-top:-80px;
	position: relative;
	z-index: 4;
}
.wrap-home-cat .container-2 a {
	width:30%;
	background:#000;
}
.wrap-home-cat .container-2 a img {
	width:100%;
	height: auto;
	display: block;
	transition: .2s ease-in;
}
.wrap-home-cat .container-2 a h2 {
	width:100%;
	display: block;
	padding:10px;
	box-sizing: border-box;
	background:#ee8144;
	text-align: center;
	text-transform: uppercase;
	color:#000;
	font-size:20px;
	font-family: "Nunito Sans", sans-serif;
	font-weight: 500;
	transition: .2s ease-in;
}
.wrap-home-cat .container-2 a:hover img {
	opacity: 0.5;
}
.wrap-home-cat .container-2 a:hover h2 {
	background:#000;
	color:#fff;
}
.wrap-home-about {
	width:100%;
	position: relative;
}
.wrap-home-about:after {
	content: "";
	width: 50%;
	height: 100%;
	display: block;
	right: 0;
	top: 0;
	position: absolute;
	background: #333333;
	clip-path: polygon(51% 0%,100% 0%,100% 100%,0% 100%);
}
.about-info-1 {
	width:55%;
	padding:150px 0;
}
.about-info-1 h2 {
	color:#000;
	font-size:30px;
	font-weight: 500;
	padding-bottom: 20px;
	line-height: 1;
}
.about-info-1 h2 span {
	font-weight: 800;
	text-transform: uppercase;
}
.about-info-1 p {
	line-height: 1.4;
	font-size: 16px;
}
.wrap-home-location {
	width: 100%;
	padding:10px;
	box-sizing: border-box;
}
.wrap-home-location .container-1 {
	background: #ee8144;
	padding: 40px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	margin-top: -50px;
	position: relative;
	z-index: 1;
	gap:30px 0;
}
.home-loc-info {
	width:45%;
}
.home-loc-info h2 {
	font-size:26px;
	font-weight:800;
	text-transform: uppercase;
}
.home-loc-info p {
	font-size:20px;
	font-weight:600;
	padding:20px 0;
}
.home-loc-links {
	width: 100%;
	box-sizing: border-box;
	position: relative;
	background:rgba(0,0,0,0.2);
	clip-path: polygon(0% 0%,100% 0%,83% 100%,0% 100%);
	padding:50px 50px 50px 20px;
	display: flex;
	flex-direction: column;
	gap:15px;
	align-items: flex-start;
}
.home-loc-links:after {
	content: "";
	width: 100%;
	display: block;
	background: rgba(0,0,0,0.2);
	clip-path: polygon(calc(100% - 20px) 0%,100% 0%,83% 100%,calc(83% - 20px) 100%);
	position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
	height: 100%;
}
.home-loc-links a {
	position: relative;
	z-index: 2;
	display: flex;
	gap: 5px;
	color: #fff;
	font-size: 20px;
}
.home-loc-links a:hover {
	color: #000!important;
}
.home-loc-map {
	width:47%;
}
.home-loc-map iframe {
	width:100%;
	height: 100%;
	min-height: 350px;
}
.wrap-content {
	width:100%;
	position: relative;
	display: flex;
	flex-direction: column;
}
.wrap-content .container-1, .wrap-content .container-2 {
	position: relative;
	z-index: 2;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
}
.bg-corner-1 {
	width: 100%;
	position: relative;
	padding: 0 10px 80px 10px;
	box-sizing: border-box;
}
.bg-corner-1:after {
	content: "";
	width: 50%;
	height: 80%;
	display: block;
	left: 0;
	bottom: 0;
	position: absolute;
	background: #ebebeb;
	clip-path: polygon(0% 0%,44% 0%,100% 100%,0% 100%);
	z-index: 1;
	opacity: 0.7;
}
.content-2-col {
	position: relative;
	z-index: 2;
	display: flex;
	flex-wrap:wrap;
	justify-content: space-between;
	align-items: center;
}
.page-header-text {
	color:#000;
	font-size:30px;
	font-weight: 500;
	padding-bottom: 20px;
	line-height: 1;
}
.page-header-text span {
	font-weight: 800;
	text-transform: uppercase;
}
.orange-cont {
	background:#ee8144;
	margin-top: -20px!important;
}
.content-info-1 {
	width: 49%;
	padding: 120px 0;
	box-sizing: border-box;
}
.content-img-1 {
	position: absolute;
	right: 0;
	top: 0;
	width: calc(50% + 100px);
	clip-path: polygon(0% 0%,100% 0%,100% 100%,300px 100%);
	height: 100%;
	min-height: 300px;
	display: block;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

.contact-list {
	padding:10px 0;
	margin:0;
}
.contact-list li {
	padding:3px 0;
	margin:0;
	font-size: 20px;
	list-style: none;
}
.contact-list li a {
	color:#000;
	font-weight: 600;
	transition: .2s ease-in;
}
.contact-list li a:hover {
	opacity: 0.7;
}
.contact-map {
	width:45%;
}
.contact-map iframe {
	width:100%;
	height: 100%;
	min-height: 450px;
}
.about-cat-1 {
	justify-content: space-between;
	gap:20px 0;
}
.about-cat-1 a {
	width:30%;
	background:#000;
}
.about-cat-1 a img {
	width:100%;
	height: auto;
	display: block;
	transition: .2s ease-in;
}
.about-cat-1 a h2 {
	width:100%;
	display: block;
	padding:10px;
	box-sizing: border-box;
	background:#ee8144;
	text-align: center;
	text-transform: uppercase;
	color:#000;
	font-size:20px;
	font-family: "Nunito Sans", sans-serif;
	font-weight: 500;
	transition: .2s ease-in;
}
.about-cat-1 a:hover img {
	opacity: 0.5;
}
.about-cat-1 a:hover h2 {
	background:#000;
	color:#fff;
}

/*===================== 
	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;
	margin:10px 0 10px 0;
	font-size: 600;
	
}
.form-info-cont input, .form-info-cont date {
	width: 100%;
	display: block;
	padding: 15px;
	font-size: 16px;
	margin:  0 0 15px 0;
	box-sizing: border-box;
    outline:none;
    color:#000; 
	font-family: "Nunito Sans", sans-serif;
	border:0px;
}

.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: 16px;
	min-height: 120px;
	box-sizing: border-box;
	margin:  0 0 15px 0;
    outline:none;
    border:0px;
    color:#000; 
	font-family: "Nunito Sans", sans-serif;
}
.form-info-cont button {
	display: block;
	margin:0 auto;
	width:100%;
	max-width: 200px;
}

.CaptchaImage {
  max-width: 100%;
}
.CaptchaWhatsThisPanel input {
    margin:0 auto;
}

.CaptchaWhatsThisPanel a {color:#000;}
.CaptchaWhatsThisPanel a:hover {text-decoration:underline;} 



/*===================== 
	banner styles 
=======================*/


/*===================== 
	layout styles 
=======================*/

.wrap {
	width: 100%;
	margin: 0;
}


.container-1 {
	width:100%;
	max-width: 1500px;
	margin: 0 auto;
	padding: 20px;
	box-sizing: border-box;
}
.container-2 {
	width:100%;
	max-width: 1100px;
	margin: 0 auto;
	padding: 20px;
	box-sizing: border-box;
}

.container-inv {
	max-width: 1100px;
	margin: 0 auto;
	padding: 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 {
	width: 100%;
	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 
=======================*/

.foot-img-1 {
	width:100%;
	margin-top: -50px;
}
.foot-img-1 img {
	width: 100%;
	height: auto;
	display: block;
	object-fit: cover;
	object-position: right bottom;
	min-height: 400px;
	max-height: 800px;
}
footer {
	margin: 0;
	width: 100%;
	background:#333333;
}
.foot-top {
	width:100%;
	display: flex;
	justify-content: space-between;
	position: relative;
	padding:0 0 60px 0;
	box-sizing: border-box;
}
.foot-nav {
	width: 60%;
	max-width: 1100px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 20px 0;
	padding: 60px 0 60px 5vw;
	box-sizing: border-box;
}
.foot-nav-col {
	display: flex;
	flex-wrap: wrap;
	gap:20px 0;
	justify-content: space-between;
	width: 49%;
}
.foot-nav-col p {
	font-size:24px;
	font-weight:800;
	color:#ee8144;
	display: block;
	width:100%;
}
.foot-nav-col ul {
	padding:0;
	margin:0;
}
.foot-nav-col ul li {
	padding:0;
	margin:0;
	list-style: none;
	font-size:18px;
	line-height:2;
	color:#fff;
	font-family: "Nunito Sans", sans-serif;
}
.foot-nav-col ul li a {
	color:#fff;
	transition: .2s ease-in;
}
.foot-nav-col ul li a:hover {
	color:#ee8144;
}
.foot-logo {
	width: 39%;
	background: rgba(255,255,255,0.9);
	display: flex;
	justify-content: flex-end;
	align-items: center;
	position: relative;
	padding: 20px 5vw 20px 100px;
	box-sizing: border-box;
	clip-path: polygon(0% 0%,100% 0%,100.00% 100.00%,40% 100%);
	max-width: 650px;
}
.foot-logo:after {
	content: "";
	width:100%;
	height: 100%;
	display: block;
	position: absolute;
	z-index: 1;
	right:0;
	top:0;
	background:#ee8144;
	clip-path: polygon(0% 0%,20px 0%,calc(40% + 20px) 100.00%,26% 100%);
}
.foot-logo a {
	width:100%;
	max-width: 225px;
	position: relative;
	z-index: 2;
}
.foot-logo a img {
	width:100%;
	height: auto;
	display: block;
}
.foot-bottom {
	width:100%;
	padding:20px;
	box-sizing: border-box;
	background:#000;
}
.foot-bottom p {
	font-size:16px;
	font-weight:500;
	font-family: "Nunito Sans", sans-serif;
	text-align: center;
	color:#ee8144;
}


/*========================== 
	  Responsive styles 
============================*/

@media screen and (max-width: 1300px) {
	.head-info {
	  padding: 0 20px 0 0;
	}
	nav.primary {
	  padding: 0 20px 0 0;
	}
	.foot-nav {
		padding: 60px 0 60px 20px;
	}
	.foot-logo {
		padding: 20px 20px 20px 100px;
	}
}

@media screen and (max-width: 1200px) {
	nav.primary ul li a {
		font-size: 1.3vw;
		padding: 15px 1vw;
	}
	.hero-overlay-cont-1 h1 {
		font-size: 3vw;
	}
}

@media screen and (max-width: 1000px) {
	.head-info li a {
	  font-size: 13px;
	}
	.head-left {
		clip-path: polygon(0% 0%,100% 0%,calc(100% - 84px) 100%,0% 100%);
		height: 150px;
		width: 100%;
		max-width: 200px;
		padding: 20px 55px 20px 10px;
	}
	.head-right {
  		width: 100%;
	}

	/*==============================
		Mobile Nav Styles			
	================================*/


	nav.primary {
		display: none;
	}

	#menu-button {
		width: 100%;
		display: flex;
		justify-content: flex-end;
		background: #000;
		position: relative;
		padding: 5px 20px;
		box-sizing: border-box;
	}
	
		#menu-button::after {
		  position: absolute;
		content: "";
		clip-path: polygon(42% 0%,100% 0%,100% 100%,0% 100%);
		background: #000;
		height: 100%;
		width: 56px;
		display: block;
		top: 0;
		right: 100%;
		}

	#menu-button a {
		color: #fff;
		cursor: pointer;
		font-size: 24px;
		
	}

	nav.mobile {
		display: block;
		position: fixed;
		top: 0;
		left: -250px;
		width: 250px;
		height: 100%;
		background: #000;
		z-index: 500;
		/* needs to be higher than #menu-button, adjust as needed */
		overflow: auto;
	}


	/* MENU HEADER STYLES */
	nav.mobile .mobile_top {
		display: flex;
		justify-content: flex-end;
		padding: 5px;
		box-sizing: border-box;
		border-bottom: 1px solid #ee8144;
	}

	/* MENU CLOSE 'X' BUTTON */
	nav.mobile .menu-toggle {
		padding: 3px 8px 3px;
		font-family: Arial, sans-serif;
		font-size: 24px;
		font-weight: bold;
		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 {
		position: relative;
	}

	/* FIRST LEVEL */
	nav.mobile ul li a {
		position: relative;
		display: block;
		font-size: 15px;
		padding: 10px;
		color: #fff;
		text-decoration: none;
		cursor: pointer;
	}

	nav.mobile ul li a:hover {
		background: rgba(45, 45, 45, 0.5);
		color: #fff;
		border-left: 4px #ee8144 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);
	}



	.nav-footer {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-around;
		gap:10px;
		padding:10px;
		box-sizing: border-box;
	}
	.nav-footer a {
		font-size: 14px;
		color:#fff;
	}
	.nav-footer a i { 
		color:#ee8144;
	}
	.hero-overlay {
		width: 100%;
		height: 425px;
		min-height: 100%;
		max-height: 100%;
		background: rgba(0,0,0,0.6);
		position: relative;
		z-index: 2;
		display: flex;
		justify-content: center;
		align-items: center;
		clip-path: polygon(100% 0%,100% 42%,calc(100% - 130px) 100%,0% 100%,0% 85%,200px 0);
	}
	.wrap-home-cat:after {
		height: 185px;
    	width: 100px;
	}
	.wrap-home-cat:before {
		height: 165px;
		width: 90px;
	}
	.wrap-home-cat .container-2 a, .about-cat-1 a {
	  width: 32%;
	}
	.wrap-home-cat .container-2 a h2, .about-cat-1 a h2 {
		font-size:16px;
	}
	.foot-nav-col {
	  width: 100%;
	}
	.col-1-2, .col-1-3 {
		width: 100%;
	}
	.content-info-1 {
		width: 100%;
		padding:10px 0 0 0;
	}
	.contact-map {
		width:100%;
		padding:10px 0 40px 0;
	}
	.content-img-1 {
		position: static;
		width: 100%;
	}

}
@media screen and (max-width: 700px) {
	.head-info {
	  display: none;
	}
	.head-left {
		clip-path: polygon(0% 0%,100% 0%,calc(100% - 70px) 100%,0% 100%);
		height: 80px;
		width: 100%;
		max-width: 170px;
		display: flex;
		align-items: center;
		padding: 0 55px 0 10px;
		box-sizing: border-box;
	}
	.head-right {
		padding-top:0;
	}
	#menu-button::after {
		clip-path: polygon(100% 0%,100% 0%,100% 100%,0% 100%);
		width: 39px;
	}
	.hero-btn-col-1 {
		flex-wrap: wrap;
	}
	.hero-overlay-cont-1 {
	  padding-top:0px;
	}
	.hero-overlay {
		clip-path: polygon(100% 0%,100% 65%,calc(100% - 120px) 100%,0% 100%,0% 45%,170px 0);
	}
	.wrap-home-cat::before {
		height: 99px;
		width: 82px;
	  }
	.wrap-home-cat::after {
		height: 112px;
		width: 90px;
	}
	.wrap-home-cat {
		padding:20px 0;
	}
	.wrap-home-cat .container-2 {
		margin-top: 0;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		gap:20px;
	}
	.wrap-home-cat .container-2 a, .about-cat-1 a {
		width: 100%;
		max-width: 325px;
		position: relative;
		margin:0 auto;
	}
	.wrap-home-cat .container-2 a h2, .about-cat-1 a h2 {
		position: absolute;
		top:0;
		left:0;
		z-index: 1;
		height: 100%;
		background:rgba(0,0,0,0.7);
		display: flex;
		justify-content: center;
		align-items: center;
		color:#fff;
	}
	.about-info-1 {
	  width: 100%;
	  padding: 50px 0 150px 0;
	}
	.wrap-home-about::after {
	  width: 45%;
	  height: 30%;
	  right: 0;
	  top: auto;
	  clip-path: polygon(100% 0%,100% 0%,100% 100%,0% 100%);
	  bottom: 0;
	}
	.home-loc-info, .home-loc-map {
		width:100%;
	}
	.home-loc-info p {
	  padding: 20px 0 10px 0;
	}
	.foot-img-1 img {
		object-position: 70% bottom;
	}
	.wrap-home-location .container-1 {
		padding: 40px 10px;
	}
	.foot-nav {
		display: none;
	}
	.foot-logo {
		width: 95%;
		padding: 20px 20px 20px 160px;
	}
	.foot-top {
		justify-content: flex-end;
		padding: 0 0 20px 0;
	}
}
@media screen and (max-width: 520px) {
	.hero-overlay-cont-1 h1 {
		font-size: 22px;
	}
	.white-btn {
		font-size: 14px;
	}
	.about-info-1 h2 {
	  font-size: 22px;
	}
	.about-info-1 h2 span {
	  display: block;
	}
	.home-loc-info h2 {
	  font-size: 22px;
	}
	.home-loc-info p, p {
	  font-size: 16px;
	}
	.home-loc-links a {
	  font-size:18px;
	}
	.foot-bottom p {
		font-size:14px;
	}
	.page-header-text {
		font-size: 22px;
	}
	.form-info-cont p {
	  font-size: 18px;
	}
	h1 {
		font-size:24px;
	}
	h2 {
		font-size:22px;
	}
	h3 {
		font-size:20px;
	}
	h4 {
		font-size:18px;
	}
	h5 {
		font-size:16px;
	}
	.content-img-1 {
	  clip-path: polygon(0% 0%,100% 0%,100% 100%,30% 100%);
	}
	.bg-corner-1::after {
		width: 100%;
		height: 50%;
		clip-path: polygon(0% 0%,0% 0%,100% 100%,0% 100%);
	}
	
}
@media screen and (max-width: 400px) {
	.hero-overlay-cont-1 {
		width: 80%;
		padding:40px 0;
	}
	 #menu-button::after {
		width: 46px;
	  }
	.head-left {
		height: 65px;
		max-width: 140px;
		padding: 0 50px 0 5px;
	}
	.hero-overlay {
		clip-path: polygon(100% 0%,100% 75%,calc(100% - 120px) 100%,0% 100%,0% 31%,140px 0);
	  }
		.wrap-home-cat::before {
		height: 73px;
		width: 82px;
	  }
	.wrap-home-cat::after {
		height: 82px;
		width: 90px;
	}
}