﻿/*===================== 
	Color information
	
	-
	orange #f16b25
	grey #f1f1f1
	-
		 
=======================*/
/*===================== 
	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: "Gabarito", sans-serif;
	margin: 0;
	padding: 0;
}

svg:not(:root) {
	overflow: hidden;
	/*reset*/
}

.clear {
	clear: both;
}

img {
	border: 0;
}
.center-img {
	width:auto;
	max-width:100%;
	height:auto;
	margin:0 auto;
	display: block
}

/*===================== 
	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-1 {
	font-family: "Gabarito", sans-serif;
	display: block;
	padding:10px;
	color: #fff!important;
	background:#f16b25;
	box-sizing: border-box;
	text-align: center;
	border:1px solid #f16b25;
	font-size:18px;
	transition: .2s ease-in;
	cursor: pointer;
	outline: none;
	text-shadow: 0 0 2px rgba(0,0,0,0.6);
}
.orange-btn-1:hover {
	color: #f16b25!important;
	background:#fff;
	text-shadow: 0 0 5px rgba(0,0,0,0.0);
	
}
.white-btn-1 {
	font-family: "Gabarito", sans-serif;
	display: block;
	padding:10px;
	color: #bb5a25!important;
	background:#fff;
	box-sizing: border-box;
	text-align: center;
	border:1px solid #fff;
	font-size:18px;
	transition: .2s ease-in;
	cursor: pointer;
	outline: none;
	text-shadow: 0 0 5px rgba(0,0,0,0.0);
}
.white-btn-1:hover {
	color: #fff!important;
	background:#f16b25;
	text-shadow: 0 0 5px rgba(0,0,0,0.5);
}
.black-btn-1 {
	font-family: "Gabarito", sans-serif;
	display: block;
	padding:10px;
	color: #fff!important;
	background:#000;
	box-sizing: border-box;
	text-align: center;
	border:1px solid #000;
	font-size:18px;
	transition: .2s ease-in;
	cursor: pointer;
	outline: none;
	text-shadow: 0 0 5px rgba(0,0,0,0.0);
}
.black-btn-1:hover {
	color: #000!important;
	background:#fff;
	text-shadow: 0 0 5px rgba(0,0,0,0.0);
}
.text-link-orange {
	color:#bb5a25!important;
	font-weight: 500;
	transition: .2s ease-in;
}
.text-link-orange:hover {
	color:#000!important;
}
.text-link-white {
	color:#fff!important;
	font-weight: 500;
	transition: .2s ease-in;
}
.text-link-white:hover {
	color:#f2f2f2!important;
}
.btn-cont {
	display: flex;
	flex-wrap: wrap;
	gap:20px;
}

/*===================== 
	header styles 
=======================*/

.header-wrap {
	width: 100%;
	margin: 0;
	border-bottom:2px solid #000;
	background: #fff;
}

header {
	margin: 0 auto;
	width:100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.head-logo-1 {
	width:16%;
	max-width: 300px;
}

.head-logo-1 img {
	width:100%;
	height: auto;
	display: block;
}

.head-ico {
	width:16%;
	max-width: 300px;
}
.head-ico ul {
	width:100%;
	max-width: 200px;
	display: flex;
	justify-content: center;
	padding:10px;
	box-sizing: border-box;
	gap:10px;
	margin:0;
	background:#f16b25;
}
.head-ico ul li {
	padding:0;
	margin:0;
	list-style: none;
}
.head-ico ul li a {
	font-size:18px;
	color:#fff;
	transition: .2s ease-in;
}
.head-ico ul li a:hover {
	color:#000;
}

/*===================== 
	nav styles 
=======================*/

#menu-button {
	display: none;
}

nav.mobile {
	display: none;
}



nav.primary {
	padding: 0;
	display: block;
	margin: 0;
	position: relative;
	width:67%;
}

nav.primary ul {
	margin: 0 auto;
	padding: 0;
	display: flex;
}
nav.primary > ul {
	justify-content: space-around;
}

nav.primary ul li {
	display: inline-block;
	margin: 0;
	list-style-type: none;
}

nav.primary ul li a {
	font-family: "Gabarito", sans-serif;
	color: #000;
	font-size: 16px;
	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;
	font-weight: 400;
	cursor: pointer;
}

nav.primary ul li a:hover {
	background: #f16b25;
	color: #fff;
}
nav.primary ul li:hover a {
	background: #f16b25;
	color: #fff;
}

/* Appearance of the sub-level links */
nav.primary ul li li a {
	color: #fff;
	background: #f16b25;
	display: block;
	text-align: left;
}

/* Appearance of the sub-level links on hover */
nav.primary ul li li a:hover {
	background: #000;
}

/* 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: auto;
	min-width: 200px;
	position: relative;
	margin: 0;
}

/*===================== 
	content styles 
=======================*/

.wrap-hero {
	width:100%;
	height: 40vw;
	max-height: calc(100vh - 150px);
	min-height: 500px;
	background-image: url("../siteart/hero-bg-1.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	padding:20px;
	box-sizing: border-box;
	display: flex;
	justify-content: center;
	align-items: center;
}
.wrap-hero .container-2 {
	position: relative;
	width:100%;
	border:2px solid #000;
	padding:20px;
	box-sizing: border-box;
}
.hero-cont-1 {
	width:100%;
	background: rgba(0,0,0,0.6);
	padding:50px 10px;
	box-sizing: border-box;
}
.hero-col-1 {
	width:100%;
	max-width:600px;
	margin:0 auto;
	box-sizing: border-box;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap:30px 0;
}
.hero-col-1 h1 {
	color:#fff;
	text-shadow: 0 0 10px rgba(0,0,0,1);
	font-size:50px;
	font-weight:800;
	text-align: center;
}
.hero-col-1 h1 span {
	font-size:30px;
	font-weight:500;
	display: block;
}
.hero-col-1 a {
	width:49%;
	padding:20px 10px;
	text-transform: uppercase;
}
.jump-link-black {
	width:100%;
	background:#000;
	padding:30px 20px 50px 20px;
	box-sizing: border-box;
	display: flex;
	justify-content: center;
	align-items: center;
	clip-path: polygon(0% 0%,100% 0%,100% calc(100% - 30px),50% 100%,0% calc(100% - 30px));
}
.jump-link-black a {
	display: block;
	padding:10px;
	color:#fff;
	font-size: 18px;
	text-align: center;
	text-transform: uppercase;
}
.jump-link-black a i {
	font-size: 30px;
}
.jump-link-orange {
	width:100%;
	background:#f16b25;
	padding:30px 20px 50px 20px;
	box-sizing: border-box;
	display: flex;
	justify-content: center;
	align-items: center;
	clip-path: polygon(0% 0%,100% 0%,100% calc(100% - 30px),50% 100%,0% calc(100% - 30px));
}
.jump-link-orange a {
	display: block;
	padding:10px;
	color:#fff;
	font-size: 18px;
	text-align: center;
	text-transform: uppercase;
	text-shadow: 0 0 2px rgba(0,0,0,0.6);
}
.jump-link-orange a i {
	font-size: 30px;
}
.wrap-cat-1 {
	padding:100px 0 60px 0;
	width:100%;
}
.wrap-cat-1 .container-1 {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap:30px 0;
}
.cat-cont-1 {
	width:32%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	border:2px solid #000;
	padding:20px;
	box-sizing: border-box;
}
.cat-cont-top-1 {
	display: flex;
	position: relative;
	padding-bottom: 20px;
	overflow: hidden;
	height: 100%;
}
.cat-cont-top-1 span {
	display: block;
	position: absolute;
	z-index: 1;
	top:0;
	right:0;
	width:45%;
	height: 95%;
	background:#f1f1f1;
	clip-path: polygon(0% 0%,80% 0%,100% 50%,80% 100%,0% 100%);
}
.cat-cont-top-1 h2 {
	position: relative;
	z-index: 2;
	font-size:30px;
	font-weight:600;
	color:#000;
	writing-mode: vertical-rl;
	text-orientation: mixed;
	text-transform: uppercase;
	transform: rotate(180deg);
  	text-align: right;
}
.cat-cont-top-1 img {
	position: relative;
	z-index: 2;
	width: 100%;
	height: auto;
	max-width: 418px;
	object-fit: contain;
	object-position: center;
	margin:0 auto;
}
.wrap-brand-cont {
	width:100%;
	display: flex;
	flex-wrap: wrap;
	gap:30px 0;
	padding-bottom: 40px;
}
.brand-col-1 {
	width:50%;
	position: relative;
}
.home-brand-bg-imt {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	position: absolute;
	z-index: 1;
}
.home-brand-overlay {
	position: relative;
	z-index: 2;
	width: 100%;
	height: 450px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	padding: 80px 20px 40px 20px;
	box-sizing: border-box;
	align-items: center;
	background: rgba(0,0,0,0.5);
}
.home-brand-overlay img {
	display: block;
	margin: 0 auto;
	width: 100%;
	max-width: 250px;
	height: auto;
	max-height: 130px;
	object-fit: contain;
	object-position: center;
	align-self: center;
	filter: brightness(0) invert(1);
}
.home-brand-overlay a {
	align-self: flex-end;
	width: 100%;
}

/*===================== 
	slideshow styles 
=======================*/

.wrap-featured-eq {
	width:100%;
	background:#f1f1f1;
	padding:80px 20px;
	box-sizing: border-box;
}
.wrap-featured-eq .container-2 h2 {
	font-size:30px;
	font-weight:600;
	color:#000;
	text-align: center;
	padding-bottom: 30px;
}
.featured-slider {
	
}
.feat-eq-cont-1 {
	width:100%;
	display: flex;
	flex-wrap: wrap;
	position: relative;
	justify-content: space-between;
	align-items: center;
} 
.feat-eq-cont-1:after {
	display: block;
	content:"";
	width:calc(100% - 30px);
	position: absolute;
	z-index:1;
	background:#fff;
	border:2px solid #000;
	top:0;
	right:0;
	height: 100%;
	box-sizing: border-box;
}
.feat-eq-info-1 {
	position: relative;
	z-index: 2;
	width: 45%;
	padding:20px 50px 20px 40px;
	clip-path: polygon(0% 0%,calc(100% - 40px) 0%,100% 50%,calc(100% - 40px) 100%,0% 100%);
	background:#000;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap:20px 0;
	box-sizing: border-box;
	align-items: flex-start;
}
.feat-eq-info-1 h3 {
	color:#fff;
	font-size:24px;
	font-weight:600;
}
.feat-eq-info-1 p {
	color:#fff;
	font-size:18px;
	font-weight:400;
}
.feat-eq-price {
	color:#f16b25;
	font-size:24px;
	font-weight:600;
}
.feat-eq-img-1 {
	width: 55%;
	height: auto;
	padding: 20px;
	position: relative;
	z-index: 2;
	box-sizing: border-box;
}
.wrap-featured-eq .slick-dots {
	display: flex;
	justify-content: center;
	gap:3px;
	padding:20px 0;
	margin:0 auto;
}
.wrap-featured-eq .slick-dots li {
	width:20px;
	height: 20px;
	padding:0;
	margin:0;
	background:#000;
	list-style: none;
	display: block;
	cursor: pointer;
}

.wrap-featured-eq .slick-dots li button {
	display: none;
}
.wrap-featured-eq .slick-dots li.slick-active {
	width:40px;
	background:#f16b25;
}
.wrap-home-about {
	width:100%;
	padding:200px 0 200px 5px;
	background-image: -webkit-linear-gradient(270deg,rgba(0,0,0,0.40) 0%,rgba(0,0,0,0.40) 100%), url(../siteart/home-about-bg-1.jpg);
	background-image: -moz-linear-gradient(270deg,rgba(0,0,0,0.40) 0%,rgba(0,0,0,0.40) 100%), url(../siteart/home-about-bg-1.jpg);
	background-image: -o-linear-gradient(270deg,rgba(0,0,0,0.40) 0%,rgba(0,0,0,0.40) 100%), url(../siteart/home-about-bg-1.jpg);
	background-image: linear-gradient(180deg,rgba(0,0,0,0.40) 0%,rgba(0,0,0,0.40) 100%), url(../siteart/home-about-bg-1.jpg);
	background-position: center;
	background-size: cover;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	overflow: hidden;
	box-sizing: border-box;
}
.about-col-1 {
	position: relative;
	padding:0;
	width:100%;
	max-width: 800px;
	box-sizing: border-box;
}
.about-col-1:after {
	position: absolute;
	border: 2px solid #fff;
	content: "";
	width: calc(100% - 60px);
	height: calc(100% + 60px);
	display: block;
	z-index: 1;
	top: -30px;
	right: 0;
	padding: 20px 0;
	box-sizing: border-box;
}
.about-col-1:before {
	position: absolute;
	content:"";
	background:#fff;
	width:100%;
	height: 100%;
	display: block;
	z-index: 1;
	clip-path: polygon(30px 0%,100% 0%,100% 100%,30px 100%,0% 50%);
	top:0;
	left:0;
}
.about-info-cont-1 {
	position: relative;
	z-index: 3;
	padding: 40px 60px 40px 80px;
	width: 100%;
	box-sizing: border-box;
}
.about-info-cont-1 h2 {
	font-size:35px;
	font-weight:700;
	color:#000;
}
.about-info-cont-1 h2 span {
	font-size:18px;
	font-weight:400;
	color:#f16b25;
	display: block;
}
.about-info-cont-1 p {
	line-height: 1.2;
	padding-top:20px;
}
.wrap-home-loc {
	padding:80px 0;
}
.wrap-home-loc .container-1 {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	padding:0;
	overflow: hidden;
}
.home-loc-info {
	width: 50%;
	padding: 60px 0 60px 60px;
	box-sizing: border-box;
	position: relative;
	margin: 60px auto;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.home-loc-info:after {
	width:calc(100% + 80px);
	background:#000;
	clip-path: polygon(0% 0%,calc(100% - 40px) 0%,100% 50%,calc(100% - 40px) 100%,0% 100%);
	content:"";
	height: 100%;
	top:0;
	left:0;
	position: absolute;
	z-index: 1;
}
.home-loc-info h2 {
	color:#fff;
	font-size:40px;
	font-weight:700;
	position: relative;
	z-index: 2;
}
.home-loc-info p {
	color:#fff;
	font-size:25px;
	font-weight:500;
	position: relative;
	z-index: 2;
}
.home-loc-link-cont-1 {
	width:100%;
	padding:40px 0 0 0;
	display: flex;
	flex-wrap: wrap;
	gap:15px 0;
	justify-content: space-between;
	position: relative;
	z-index: 2;
}
.home-loc-link-cont-1 a {
	background: #fff;
	display: flex;
	align-items: center;
	width:49%;
	min-height: 80px;
	transition: .2s ease-in;
}
.home-loc-link-cont-1 a i {
	color:#fff;
	height: 100%;
	width:45px;
	background:#f16b25;
	clip-path: polygon(0% 0%,90% 0%,100% 50%,90% 100%,0% 100%);
	display: flex;
	justify-content: center;
	align-items: center;
}
.home-loc-link-cont-1 a span {
	padding:15px 2px;
	box-sizing: border-box;
	text-align: center;
	font-size:16px;
	font-weight:600;
	color:#000;
	margin:0 auto;
	transition: .2s ease-in;
}
.home-loc-link-cont-1 a:hover {
	background: #f16b25;
}
.home-loc-link-cont-1 a:hover span {
	color:#fff;
}
.home-log-img {
	width:50%;
}
.home-log-img img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	object-position: center;	
}


/*===================== 
	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 {
	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: "Gabarito", sans-serif;
}
.form-info-cont p {
	font-size: 22px;
	font-weight: 600;
	margin-bottom: 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;
	font-family: "Gabarito", sans-serif;
    outline:none;
    border:0px;
	border:1px solid #000;
}
.form-btn-cont {
	width: 100%;
	display: flex;
	justify-content: center;
}
.form-btn-cont button {
	width:100%;
	max-width: 250px;
}
	

.CaptchaImage {
  max-width: 100%;
}
.CaptchaWhatsThisPanel input {
    margin:0 auto;
}

.CaptchaWhatsThisPanel a {color:#000;}
.CaptchaWhatsThisPanel a:hover {text-decoration:underline;} 

/*===================== 
	animation styles 
=======================*/

.animate-cont {
    overflow: hidden;
}

.fade-in-bottom, .fade-in-top, .slide-left, .slide-right {
  opacity: 0;
  transition: opacity 500ms;
}
.js-scroll.scrolled {
  opacity: 1;
}

.scrolled.fade-in {
  animation: fade-in 1s ease-in-out both;
}

.scrolled.fade-in-bottom, .scrolled > .fade-in-bottom {
  animation: fade-in-bottom 1s ease-in-out both;
}
.scrolled.fade-in-top, .scrolled > .fade-in-top {
  animation: fade-in-top 1s ease-in-out both;
}

.scrolled.slide-left, .scrolled > .slide-left {
  animation: slide-in-left 1s ease-in-out both;
}

.scrolled.slide-right, .scrolled > .slide-right {
  animation: slide-in-right 1s ease-in-out both;
}

.load-right {
    animation: slide-in-right 1s ease-in-out both;
}
.load-left {
    animation: slide-in-left 1s ease-in-out both;
}
.load-bottom {
    animation: fade-in-bottom 1s ease-in-out both;
}
.load-top {
    animation: fade-in-top 1s ease-in-out both;
}



/* ----------------------------------------------
 * Generated by Animista on 2021-2-11 23:32:31
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

@keyframes slide-in-left {
  0% {
    -webkit-transform: translateX(-100px);
    transform: translateX(-100px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slide-in-right {
  0% {
    -webkit-transform: translateX(100px);
    transform: translateX(100px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes fade-in-bottom {
  0% {
    -webkit-transform: translateY(100px);
    transform: translateY(100px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fade-in-top {
  0% {
    -webkit-transform: translateY(-100px);
    transform: translateY(-100px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}


/*===================== 
	layout styles 
=======================*/

.wrap {
	width: 100%;
	margin: 0;
}


.container-1 {
	width: 100%;
	max-width: 1600px;
	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 {
	padding:40px 0;
}
.flex-cont-1 {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}

.content-wrap-1 {
	width:100%;
	padding:40px 0;
}
.content-wrap-1 .container-1 {
	display: flex;
	justify-content: space-between;
	gap:40px 0;
	flex-wrap: wrap;
}
.content-left-1 {
	display: flex;
	gap:10px;
}
.content-head-1 {
	font-family: "Gabarito", sans-serif;
	position: relative;
	z-index: 2;
	font-size: 40px;
	font-weight: 600;
	color: #000;
	writing-mode: vertical-rl;
	text-orientation: mixed;
	text-transform: uppercase;
	transform: rotate(180deg);
	text-align: right;
	align-self: baseline;
}
.content-col-1 ul {
	padding:0;
	margin:0;
}
.content-col-1 ul li {
	padding:10px 0;
	margin:0;
	list-style: none;
	font-size:20px;
}
.content-col-1 ul li a {
	color:#fff;
	transition: .2s ease-in;
}
.content-col-1 ul li a:hover {
	opacity: 0.7;
}

.content-col-1 {
	width: 100%;
	padding: 50px 80px 50px 50px;
	clip-path: polygon(0% 0%,calc(100% - 40px) 0%,100% 50%,calc(100% - 40px) 100%,0% 100%);
	background: #f16b25;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 20px 0;
	box-sizing: border-box;
	align-items: flex-start;
	color:#fff;
	text-shadow: 0 0 2px rgba(0,0,0,0.6);
}
.content-right-1 img {
	width:100%;
	max-width: 100%;
	height: 100%;
	min-height: 300px;
	display: block;
	object-fit: cover;
	object-position: center;
}

.content-col-2 {
	width:50%;
}
.map-cont iframe {
	width:100%;
	height: 100%;
	min-height: 400px;
}
.content-warp-2 {
	width:100%;
	padding:160px 20px;
	box-sizing: border-box;
	background: #000;
	position: relative;
}
.content-warp-2:after {
	content: "";
	width: 100%;
	height: 40%;
	background: rgba(255,255,255,0.2);
	position: absolute;
	left: 0;
	bottom: 0;
	clip-path: polygon(50% 0%,100% 60px,100% 100%,0% 100%,0% 60px);
	z-index: 1;
	right: 0;
	margin: 0 auto;
}
.content-warp-2 .container-2 {
	border:2px solid #fff;
	padding:20px;
	position: relative;
	z-index: 2;
}
.content-col-box {
	background:#fff;
	padding:20px;
	box-sizing: border-box;
}
.show-mob {
	display: none;
}

.col-1 {
	width: 100%;
	box-sizing: border-box;
}
.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%;
	border-top:8px solid #f16b25;
	background:#f1f1f1;
	padding:20px 0;
}
footer .container-1 {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	gap:20px;
}
.foot-logo-1 img {
	width:100%;
	max-width:300px;
	height: auto;
	display: block;
}
.foot-ico-1 {
	padding:0;
	margin:0;
	display: flex;
	gap:10px;
}
.foot-ico-1 li {
	padding: 0;
	margin:0;
	list-style: none;
}
.foot-ico-1 li a {
	font-size:20px;
	color:#000;
	transition: .2s ease-in;
}
.foot-ico-1 li a:hover {
	color:#f16b25;
}


/*========================== 
	  Responsive styles 
============================*/

@media screen and (max-width: 1200px) {
	nav.primary ul li a {
		font-size: 14px;
	}
	.home-loc-info {
		width: 50%;
		padding: 40px 0 40px 20px;
	}
}


@media screen and (max-width: 970px) {

	.show-mob {
		display: block;
	}
	
	.head-logo-1 {
	  width: 100%;
	  max-width: 180px;
	}
	.head-ico {
		width: auto;
		max-width: 100%;
		display: flex;
		gap:10px;
		padding-right:20px;
	}
	.head-ico ul {
		background:#000;	
	}
	
	/*==============================
		Mobile Nav Styles			
	================================*/


	nav.primary {
		display: none;
	}

	#menu-button {
		display: block;
	}

	#menu-button a {
		color: #fff;
		text-decoration: none;
		font-weight: normal;
		padding:10px;
		box-sizing: border-box;
		background:#f16b25;
		font-size: 18px;
		display: block;
		cursor: pointer;
	}

	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;
		flex-wrap: wrap;
		font-size: 18px;
		font-weight: 400;
		padding:10px;
		box-sizing: border-box;
		width:100%;
	}
	.mob-contact {
		display: none;
		gap:10px;
		padding:10px;
		border-top:1px solid #fff;
		margin:0;
		flex-direction: column;
	}
	.mob-contact a {
		color:#fff;
		font-size: 16px;
		font-family: "Gabarito", sans-serif;
	}
	.mob-contact a i {
		color:#f16b25;
	}
	/* 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 {
		position: relative;
	}

	/* FIRST LEVEL */
	nav.mobile ul li a {
		font-family: "Gabarito", sans-serif;
		position: relative;
		display: flex;
		justify-content: space-between;
		align-items: center;
		font-size: 15px;
		padding: 15px;
		color: #fff;
		text-decoration: none;
		border-left: 4px #333 solid;
		cursor: pointer;
	}

	nav.mobile ul li a:hover {
		background: rgba(45, 45, 45, 0.5);
		color: #fff;
		border-left: 4px #f16b25 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-footer {
		color: #fff;
		position: relative;
		text-align: center;
		font-size: 14px;
		line-height: 16px;
		padding: 15px 0;
	}
	.cat-cont-1 {
		width: 100%;
	}
	.brand-col-1 {
		width:100%;
	}
	.home-brand-overlay {
		height: auto;
		padding: 80px 20px 40px 20px;
		gap:60px;
	}
	.feat-eq-cont-1:after {
		width:100%;
		height: calc(100% - 30px);
	}
	.feat-eq-info-1 {
		order:2;
		align-items: center;
		width: 90%;
		margin:0 auto;
		padding:50px 20px;
		clip-path: polygon(0% 15%,50% 0%,100% 15%,100% 100%,0% 100%);
	}
	.feat-eq-img-1 {
		width: 100%;
		order:1;
	}
	.col-1-2, .col-1-3 {
		width:100%;
	}
}
@media screen and (max-width: 770px) {
	.wrap-hero {
		height: auto;
		max-height: 100%;
		min-height: 500px;
		padding: 50px 20px;
	}
	.hero-col-1 h1 {
		font-size: 6vw;
	}
	.hero-col-1 h1 span {
		font-size: 4vw;
	}
	.hero-col-1 {
  		gap: 20px 0;
	}
	.hero-col-1 a {
		width:100%;
	}
	.jump-link-black {
		padding: 20px;
	}
	.jump-link-black a {
		font-size: 16px;
	}
	.home-log-img {
		width:100%;
		order:1;
	}
	.home-loc-info {
		width:calc(100% - 40px);
		order:2;
		margin: 0 auto;
		padding: 40px 20px;
	}
	.home-loc-info::after {
		width:100%;
		clip-path: polygon(0% 40px,50% 0%,100% 40px,100% 100%,0% 100%);
		height:  calc(100% + 80px);
		top:auto;
		bottom:0;
	}
	.home-loc-info h2 {
		font-size:25px;
	}
	.home-loc-info p {
		font-size:18px;
	}
	.home-loc-link-cont-1 a {
		width:100%;
	}
	.about-info-cont-1 {
	  padding: 40px 20px 40px 40px;
	}
	.jump-link-black, .jump-link-orange {
		clip-path: polygon(0% 0%,100% 0%,100% calc(100% - 15px),50% 100%,0% calc(100% - 15px));
	}
}

@media screen and (max-width: 600px) {
	.head-ico ul {
		display: none;
	}
	.mob-contact {
		display: flex;
	}
	.orange-btn-1, .white-btn-1, .black-btn-1 {
		font-size: 16px;
	}
	.cat-cont-top-1 h2 {
		font-size: 22px;
	}
	.feat-eq-info-1 h3 {
		font-size:20px;
	}
	.feat-eq-info-1 p, p {
		font-size:16px;
	}
	.feat-eq-price {
		font-size:20px;
	}
	.wrap-featured-eq .container-2 h2  {
	  font-size: 22px;
	  padding-bottom: 20px;
	}
	.about-info-cont-1 h2 {
		font-size:25px;
	}
	.about-info-cont-1 h2 span {
		font-size:16px;
	}
	footer .container-1 {
		flex-direction: column;
		justify-content: center;
	}
	.content-head-1 {
		font-size: 30px;
	}
	.content-col-1 {
		clip-path: polygon(0% 0%, 100% 0%, 100% calc(100% - 30px), 50% 100%, 0% calc(100% - 30px));
		padding: 40px 20px 50px 20px;
	}
	.content-warp-2 {
	  padding: 60px 20px;
	}
	h2 {
		font-size: 24px;
	}
	h2 {
		font-size: 22px;
	}
	h3 {
		font-size: 20px;
	}
	h4 {
		font-size: 18px;
	}
	p {
		font-size: 16px;
	}
	.btn-cont a {
		max-width: 100%;
		width: 100%;
	}
}

