﻿/*===================== 
	Color information
	
	-yellow #fbcc0a
	-grey #ececec
	-
		 
=======================*/
/*===================== 
	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: "Outfit", 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-family: "Barlow Condensed", sans-serif;
	font-size: 30px;
	font-weight: 700;
}

h2 {
	font-family: "Barlow Condensed", sans-serif;
	font-size: 28px;
	font-weight: 700;
}

h3 {
	font-family: "Barlow Condensed", sans-serif;
	font-size: 24px;
	font-weight: 700;
}

h4 {
	font-family: "Barlow Condensed", sans-serif;
	font-size: 20px;
	font-weight: 700;
}

h5 {
	font-family: "Barlow Condensed", sans-serif;
	font-size: 18px;
	font-weight: 700;
}

h6 {}

p {
	font-family: "Outfit", sans-serif;
	font-size: 18px;
	margin: 0;
}

.bold {
	font-weight: bold;
}

.content-header {
	text-transform: uppercase;
	font-size: 60px;
	font-weight: 700;
	padding-bottom: 20px;
}

/*===================== 
	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;
}
.btn-black {
	outline:0;
	border:1px solid #000;
	display: block;
	padding:15px;
	box-sizing: border-box;
	color:#fff!important;
	font-size:18px;
	font-weight:600;
	text-align: center;
	background:#000;
	transition: .2s ease-in;
	cursor: pointer;
	font-family: "Outfit", sans-serif;
}
.btn-black:hover {
	color:#000!important;
	background:#fff;
}
.btn-yellow {
	outline:0;
	border:1px solid #fbcc0a;
	display: block;
	padding:15px;
	box-sizing: border-box;
	color:#000!important;
	font-size:18px;
	font-weight:600;
	text-align: center;
	background:#fbcc0a;
	transition: .2s ease-in;
	cursor: pointer;
	font-family: "Outfit", sans-serif;
}
.btn-yellow:hover {
	background:#fff;
}


.yellow-text {
	color:#fbcc0a;	
}

/*===================== 
	header styles 
=======================*/


.sticky-header .header-wrap {
	position: absolute;
	z-index: 2;
	top:0;
}

.header-wrap {
	width: 100%;
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap:20px 0;
}

header {
	width:100%;
	background:#000;
	display: flex;
	justify-content: space-between;
	position: relative;
  	z-index: 3;
}
.head-logo-cont-1 {
	width:25%;
	max-width: 380px;
	position: relative;
	filter: drop-shadow(0 0 6px rgba(0,0,0,0.3));
	z-index: 1;
}
.head-logo-1 {
	position: absolute;
	left:0;
	top:0;
	background:#fff;
	clip-path: polygon(0% 0%,100% 0%,75% 100%,0% 100%);
	padding:30px 80px 30px 20px;
	box-sizing: border-box;
	width:100%;
	
}
.head-logo-1 img {
	width: 100%;
	height: auto;
	display: block;
}
.head-info {
	padding:10px 5vw 10px 20px;
	display: flex;
	gap:0 40px;
	align-items: center;
}
.head-info ul {
	display: flex;
	padding:0;
	margin:0;
	gap:0 30px;
}
.head-info ul li {
	padding:0;
	margin:0;
	list-style: none;
	position: relative;
	display: flex;
	gap:5px;
}
.head-info ul li a {
	font-size:16px;
	color:#fff;
	font-family: "Outfit", sans-serif;
	white-space: nowrap;
	display: block;
	cursor: pointer;
	transition: .2s ease-in;
}
.head-info ul li a:hover {
	color:#fbcc0a;
}
.head-info ul ul {
	display: none;
	position: absolute;
	background:#000;
	right:0;
	top:100%;
	z-index: 1;
}
.head-info ul ul li {
	width: 100%;
}
.head-info ul ul li a {
	color:#fbcc0a;
	padding:10px;
	display: block;
	transition: .2s ease-in;
	width: 100%;
	box-sizing: border-box;
}
.head-info ul ul li a:hover {
	color:#000;
	background:#fbcc0a;
}



/*===================== 
	nav styles 
=======================*/

#menu-button {
	display: none;
}

nav.mobile {
	display: none;
}



nav.primary {
	padding:0 5vw 0 40px;
	display: block;
	margin: 0;
	position: relative;
	z-index: 2;
}
nav.primary:after {
	position: absolute;
	content:"";
	width:100%;
	height: 100%;
	background: #fbcc0a;
	clip-path: polygon(32px 0%,100% 0%,100% 100%,0% 100%);
	z-index: 1;
	display: block;
	top:0;
	left:0;
}
nav.primary > ul {
	position: relative;
	z-index: 2;
}

nav.primary ul {
	margin: 0 auto;
	padding: 0;
	display: flex;
}

nav.primary ul li {
	display: inline-block;
	margin: 0;
	list-style-type: none;
}

nav.primary ul li a {
	font-family: "Outfit", 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;
	white-space: nowrap;
	cursor: pointer;
}

nav.primary ul li a:hover {
	background: #000;
	color: #fbcc0a;
}
nav.primary ul li:hover a {
	background: #000;
	color: #fbcc0a;
}

/* Appearance of the sub-level links */
nav.primary ul li li a {
	color: #fff;
	background: #000;
	display: block;
	text-align:left;
}

/* Appearance of the sub-level links on hover */
nav.primary ul li li a:hover {
	background: #fbcc0a;
	color: #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;
	z-index: 100;
}

nav.primary ul ul li {
	display: block;
	min-width: 200px;
	float: none;
	position: relative;
	margin: 0;
}

/*===================== 
	content styles 
=======================*/

.wrap-hero {
	width:100%;
	background-image:url("../siteart/hero-bg-img-1.jpg");
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}
.hero-overlay {
	width:100%;
	height: 60vw;
	min-height: 450px;
	max-height: calc(100vh - 420px);
	background-color:rgba(0,0,0,0.3);
	display: flex;
	justify-content: center;
	align-items: center;		
}
.hero-overlay h1 {
	font-family: "Barlow Condensed", sans-serif;
	color:#fff;
	text-shadow: 0 0 15px rgba(0,0,0,0.7);
	font-weight:700;
	font-size:58px;
	text-align: center;
	text-transform: uppercase;
}
.hero-overlay h1 span {
	font-weight:400;
	font-size:40px;
}
.wrap-cta {
	width:100%;
	display: flex;
	flex-wrap: wrap;
	position: relative;
	z-index: 2;
}
.cta-info {
	width:25%;
	background: #000;
	padding:50px 20px;
	box-sizing: border-box;
	display: flex;
	justify-content: center;
	align-items: center;
}
.cta-info-cont {
	width:100%;
	max-width: 320px;
	display: flex;
	flex-wrap: wrap;
	gap:30px;
}
.cta-info-cont h2 {
	color:#fff;
	font-size:35px;
	font-weight:700;
}
.cta-info-cont p {
	color:#fff;
	font-size:18px;
	font-weight:400;
}
.cta-cont-1 {
	width:75%;
	padding:20px 5vw 0 40px;
	box-sizing: border-box;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap:30px 0;
}
.cta-cont-1 a {
	width: 32%;
	position: relative;
	padding: 20px 0 0 0;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
}
.cta-cont-1 a:after {
	content:"";
	width:100%;
	height: 100%;
	background:#fbcc0a;
	position: absolute;
	display: block;
	z-index: 1;
	top:0;
	left:0;
	clip-path: polygon(50% 0%,100% 0%,100% 100%,0% 100%,0% 50%);
	transition: .2s ease-in;
}
.cta-cont-1 img {
	width: auto;
	max-width: 100%;
	padding:0 10px;
	box-sizing: border-box;
	height: auto;
	filter: drop-shadow(0 0 6px rgba(0,0,0,0.3));
	display: block;
	position: relative;
	z-index: 2;
	object-fit: contain;
	object-position: center;
	transition: .2s ease-in;
}
.cta-cont-1 h3 {
	position: absolute;
	top:20px;
	right:20px;
	z-index: 3;
	color:#000!important;
	transition: .2s ease-in;
	font-size: 26px;
}

.cta-link {
	width:100%;
	display: block;
	background:#000;
	text-align: center;
	color:#fff;
	font-size:18px;
	font-weight: 500;
	padding:10px 20px;
	box-sizing: border-box;
	font-family: "Outfit", sans-serif;
	position: relative;
	z-index: 3;
	transition: .2s ease-in;
}
.cta-cont-1 a:hover:after {
	background:#000;
	clip-path: polygon(30% 0%,100% 0%,100% 100%,0% 100%,0% 30%);
}
.cta-cont-1 a:hover h3 {
	color:#fbcc0a!important;
}
.cta-cont-1 a:hover .cta-link {
	background:#fbcc0a;
	color:#000;
}
.wrap-cta-2 {
	width:100%;
	background:#ececec;
	padding:200px 0 150px 0;
	margin-top:-100px;
}
.wrap-cta-2 .container-1 {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 50px 0;
}
.wrap-cta-2 .container-1 a {
	width: 49%;
	position: relative;
	z-index: 1;
	background:#000;
}
.wrap-cta-2 .container-1 a img {
	width:100%;
	height: 380px;
	display: block;
	object-fit: cover;
	object-position: center;
	transition: .2s ease-in;
}
.wrap-cta-2 .container-1 a h3 {
	position: absolute;
	z-index: 3;
	bottom:-25px;
	background:#000;
	color:#fff;
	font-size:28px;
	font-weight:700;
	width:90%;
	max-width: 400px;
	transition: .2s ease-in;
	text-transform: uppercase;
	box-sizing: border-box;
}
.wrap-cta-2 .container-1 a:first-of-type h3 {
	padding:35px 10px 35px 35px;
	clip-path: polygon(0% 0%,80% 0%,100% 100%,0% 100%);
	left:0;
}
.wrap-cta-2 .container-1 a:last-of-type h3 {
	right:0;
	padding:35px 35px 35px 10px;
	text-align: right;
	clip-path: polygon(25% 0%,100% 0%,100% 100%,0% 100%);
}
.wrap-cta-2 .container-1 a:hover img {
	opacity: 0.5;
}
.wrap-cta-2 .container-1 a:hover h3 {
	color:#000;
	background:#fbcc0a;
}
.wrap-home-about {
	width:100%;
	padding:200px 10px;
	box-sizing: border-box;
	background-image: url("../siteart/home-about-bg-img.jpg");
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	background-attachment: fixed;
}
.home-about-info-cont {
	background:rgba(255,255,255,0.9);
	width:100%;
	margin:0 auto;
	max-width: 850px;
	padding:140px;
	box-sizing: border-box;
	clip-path: polygon(25% 0%,100% 0%,100% 80%,75% 100%,0% 100%,0% 20%);
}
.home-about-info-cont h2 {
	text-align: center;
	text-transform: uppercase;
	font-size:60px;
	font-weight:700;
}
.home-about-info-cont h2 .sml-text {
	font-size:40px;
	font-weight:400;
	padding-bottom: 30px;
}
.home-about-info-cont p {
	line-height: 1.4;
}
.btn-cont-1 {
	width: 100%;
	padding-top: 30px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap:20px 0;
}
.btn-cont-1 a {
	width:49%;
}
.info-callout-cont-1 {
	width:100%;
	padding:40px 20px;
	box-sizing: border-box;
	background:#fbcc0a;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	gap:40px 20px;
	clip-path: polygon(60px 0%, 100% 0%, 100% 100%, 0% 100%, 0% 60px);
	align-items: flex-start;
}
.info-callout-cont-2 {
	width:100%;
	padding:40px 20px;
	box-sizing: border-box;
	background:#fbcc0a;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	gap:40px 20px;
	clip-path: polygon(0% 0%,100% 0%,100% calc(100% - 60px),calc(100% - 60px) 100%,0% 100%);
	margin:40px auto;
}
.info-callout-cont-1 ul {
	padding:0;
	margin:0;
}
.info-callout-cont-1 ul li {
	padding:4px 0;
	margin:0;
	list-style: none;
	font-size: 20px;
}
.info-callout-cont-1 ul li h2 {
	font-size: 25px;
	padding-bottom: 2px;
}
.info-callout-cont-1 ul li a {
	padding:5px 0;
	margin:0;
	list-style: none;
	font-size: 18px;
	color:#000;
	transition: .2s ease-in;
}
.info-callout-cont-1 ul li a:hover {
	opacity: 0.7;
}
.content-info-col-1 {
	width: 59%;
}
.content-img {
	width: 39%;
}
.content-img img {
	width:100%;
	height: 100%;
	display: block;
	clip-path: polygon(0% 0%,100% 0%,100% calc(100% - 60px),calc(100% - 60px) 100%,0% 100%);
	margin:0 auto;
	object-fit: cover;
}
.content-img-1 {
	width: 39%;
}
.content-img-1 img {
	width:auto;
	max-width:100%;
	height: auto;
	max-height: 400px;
	display: block;
	margin:0 auto;
	object-fit: contain;
}
.resource-link-cont h2 {
	width: 100%;
	display: block;
	padding-bottom:10px;
}
.resource-link-cont a {
	padding:20px;
	background:#fff;
	border:1px solid #fff;
	color:#000;
	transition: .2s ease-in;
}
.resource-link-cont a:hover {
	background:#fbcc0a;
}
.resource-vid-cont {
	display: flex;
	flex-wrap: wrap;
	padding:40px 0 20px 0;
	justify-content: space-between;
	gap:40px 0;
	
}
.resource-vid-cont h2 {
	width: 100%;
	display: block;
	padding-bottom:10px;
}
.resource-vid-cont iframe {
	aspect-ratio: 16 / 9;
    width: 49% !important;
	height: auto;
}
.spec-link-1 {
	display: none;
}
.kit-info-wrap {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: stretch;
	padding:40px 0;
}

.compact-kit-info {
	padding:0;
	width:100%;
}
.compact-kit-info-cont-1 {
	gap:20px 0;
	width:100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	padding:20px;
	box-sizing: border-box;
}
.kit-header {
	width:100%;
	text-align: center;
	background:#000;
	padding:20px 50px;
	box-sizing: border-box;
	color:#fff;
}
.kit-info-img {
	width: 50%;
	position: relative;
	z-index: 2;
	align-self: center;
}
.kit-info-img img {
	width:100%;
	height: auto;
	display: block;
	padding:10px;
	box-sizing: border-box;
}
.kit-info-left {
	width:25%;
	display: flex;
	flex-direction: column;
	justify-content: space-around;
	gap:20px 0;
}

.kit-info-left .kit-info-cont-1 {
	position: relative;
	display: block;
	padding: 20px 40px 20px 20px;
	box-sizing: border-box;
	cursor: default;
}	
.kit-info-left .kit-info-cont-1 p {
	position: relative;
	z-index: 2;
	left: 22px;
	top:6px;
}
.kit-info-left .kit-info-cont-1.info-top:before {
	clip-path: polygon(0% 0%,100% 0%,calc(100% - 20px) 100%,0% 100%);
	background:#fff;
	position: absolute;
	content:" ";
	left:20px;
	top:7px;
	display: block;
	width:100%;
	height: 100%;
	transition: .2s ease-in;
	z-index: 1;
}
.kit-info-left .kit-info-cont-1.info-top:after {
	content:"";
	position: absolute;
	display: block;
	border-bottom: 0px!important;
	border-left: 0px!important;
	height: 100%;
	width: 180%;
  	left: 0;
	top: 50%;
	transition: .2s ease-in;
}
.kit-info-left .kit-info-cont-1.info-top.short-line:after {
	width: 134%;
}


.kit-info-left .kit-info-cont-1.info-bottom:before {
	clip-path: polygon(0% 0%,calc(100% - 20px) 0%,100% 100%,0% 100%);
	background:#fff;
	position: absolute;
	content:" ";
	left:18px;
	top:8px;
	display: block;
	width:100%;
	height: 100%;
	transition: .2s ease-in;
	z-index: 1;
}
.kit-info-left .kit-info-cont-1.info-bottom:after {
	content:"";
	position: absolute;
	display: block;
	border-top: 0px!important;
	border-left: 0px!important;
	height: 100%;
	width: 180%;
  	left: 0;
	bottom: 50%;
	transition: .2s ease-in;
}

.kit-info-left .kit-info-cont-1.info-mid:before {
	background:#fff;
	position: absolute;
	content:" ";
	left:0;
	top:0;
	display: block;
	width:calc(100% - 20px);
	height: 100%;
	transition: .2s ease-in;
	z-index: 1;
}
.kit-info-left .kit-info-cont-1.info-mid:after {
	content:"";
	position: absolute;
	display: block;
	border-top: 0px!important;
	border-right: 0px!important;
	border-left: 0px!important;
	height: 100%;
	width: 180%;
  	left: 0;
	bottom: 50%;
	transition: .2s ease-in;
}


.kit-info-right {
	width:25%;
	display: flex;
	flex-direction: column;
	justify-content: space-around;
	gap:20px 0;
}

.kit-info-right .kit-info-cont-1 {
	position: relative;
	display: block;
	padding:20px;
	box-sizing: border-box;
	cursor: default;
}	
.kit-info-right .kit-info-cont-1 p {
	position: relative;
	z-index: 2;
	text-align: right;
	right:26px;
}
.kit-info-right .kit-info-cont-1.info-top:before {
	clip-path: polygon(0% 0%,100% 0%,100% 100%,20px 100%);
	background:#fff;
	position: absolute;
	content:" ";
	left:-20px;
	top:-1px;
	display: block;
	width:100%;
	height: 100%;
	transition: .2s ease-in;
	z-index: 1;
}
.kit-info-right .kit-info-cont-1.info-top:after {
	content:"";
	position: absolute;
	display: block;
	border-bottom: 0px!important;
	border-right: 0px!important;
	height: 100%;
	width: 180%;
	right: 0;
	top: 50%;
	transition: .2s ease-in;
}


.kit-info-right .kit-info-cont-1.info-bottom:before {
	clip-path: polygon(20px 0%,100% 0%,100% 100%,0% 100%);
	background:#fff;
	position: absolute;
	content:" ";
	right:20px;
	top:0;
	display: block;
	width:100%;
	height: 100%;
	transition: .2s ease-in;
	z-index: 1;
}
.kit-info-right .kit-info-cont-1.info-bottom:after {
	content:"";
	position: absolute;
	display: block;
	border-top: 0px!important;
	border-right: 0px!important;
	height: 100%;
	width: 180%;
	right: 0;
	bottom: 50%;
	transition: .2s ease-in;
}
.kit-info-right .kit-info-cont-1.info-mid:before {
	background:#fff;
	position: absolute;
	content:" ";
	left:0;
	top:0;
	display: block;
	width:calc(100% - 20px);
	height: 100%;
	transition: .2s ease-in;
	z-index: 1;
}
.kit-info-right .kit-info-cont-1.info-mid:after {
	content:"";
	position: absolute;
	display: block;
	border-top: 0px!important;
	border-right: 0px!important;
	border-left: 0px!important;
	height: 100%;
	width: 180%;
  	right: 0;
	bottom: 50%;
	transition: .2s ease-in;
}
.col-2-kit-info {
	width:38%;
}

.kit-spec-cont-1 {
	width:100%;
	background: #ececec;
	clip-path: polygon(0% 0%,100% 0%,100% calc(100% - 60px),calc(100% - 60px) 100%,0% 100%);
	padding: 40px 20px 60px 20px;
	box-sizing: border-box;
}
.kit-spec-cont-1 table {
	width:100%;
}
.kit-spec-cont-1 tr {
	display: flex;
	border:0px;
	border-top:1px solid #000;
}
.kit-spec-cont-1 tr:last-of-type {
	border-bottom:1px solid #000;
}
.kit-spec-cont-1 th {
	padding:10px;
	text-align: left;
	box-sizing: border-box;
	font-size: 18px;
	
}
.kit-spec-cont-1 th:first-of-type {
	width:40%;
	border-right:1px solid #000;
}
.kit-spec-cont-1 th:last-of-type {
	width:60%;
}
.kit-spec-cont-1 td {
	padding:10px;
	text-align: left;
	box-sizing: border-box;
	font-size: 18px;
}
.kit-spec-cont-1 td:first-of-type {
	width:40%;
	border-right:1px solid #000;
}
.kit-spec-cont-1 td:last-of-type {
	width:60%;
}
.kit-spec-cont-1 td ul {
	padding: 0 0 0 15px;
	margin:0;
}
.kit-spec-cont-1 td ul li {
	padding:0;
}


/*===================== 
	Form styles 
=======================*/

/* Containers */

.form-container {
	width:100%;
	background:#ececec;
	clip-path: polygon(0% 0%,100% 0%,100% calc(100% - 60px),calc(100% - 60px) 100%,0% 100%);
	padding: 40px 20px;
	box-sizing: border-box;
}

.form-info-cont {
	width: 100%;
	box-sizing: border-box;
}
.form-info-cont .btn-black {
	margin:0 auto;
}
.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: 16px;
	margin:  0 0 15px 0;
	box-sizing: border-box;
    outline:none;
    border:0px solid #000;
    color:#000; 
	font-family: "Outfit", sans-serif;
}

.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;
	font-family: "Outfit", sans-serif;
    outline:none;
    border:0px;
}


.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;
}
.wrap-content {
	padding: 80px 0 40px 0;
}
.wrap-content p a {
	font-weight: bold;
	transition: .2s ease-in;
}
.wrap-content p a:hover {
	opacity: 0.7;
}

.container-1 {
	width: 90%;
	margin: 0 auto;
	box-sizing: border-box;
}
.container-2 {
	width: 100%;
	max-width: 1100px;
	margin: 0 auto;
	padding: 10px 20px;
	box-sizing: border-box;
}
.container-inv {
	margin: 0 auto;
	padding:40px 20px;
	box-sizing: border-box;
}

.flex-cont-1 {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap:40px 0;
}
.flex-cont-2 {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	gap:40px 0;
}

.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;
}
.col-1 {
	width: 100%;
	box-sizing: border-box;
}

/*===================== 
	footer styles 
=======================*/

footer {
	margin: 0;
	width: 100%;
	display: flex;
}
.foot-left {
	width:100%;
	max-width: 400px;
	background:#000;
	clip-path: polygon(0% 0%,100% 0%,100% 50%,50% 100%,0% 100%);
	padding:100px 20px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	box-sizing: border-box;
}
.foot-logo {
	width:100%;
	max-width: 275px;
}
.foot-logo img {
	width:100%;
	height: auto;
	display: block;
}
.foot-logo ul {
	padding:20px 0 0 0;
	margin:0;
	display: flex;
	flex-wrap: wrap;
	gap:5px;
}
.foot-logo ul li {
	padding:0;
	margin:0;
	list-style: none;
}
.foot-logo ul li a {
	color:#fff;
	font-size:20px;
	transition: .2s ease-in;
}
.foot-logo ul li a:hover {
	color:#fbcc0a;
}
.foot-right {
	width:calc(100% - 400px);
	border-top:20px  solid #fbcc0a;
	padding:80px 5vw 100px 20px;
	box-sizing: border-box;
	display: flex;
	justify-content: flex-end;
}
.foot-nav {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap:30px;
}
.foot-nav-col p {
	font-family: "Outfit", sans-serif;
	font-size:24px;
	font-weight:600;
	color:#000;
	padding-bottom: 10px;
	white-space: nowrap;
}
.foot-nav-col ul {
	padding:0;
	margin: 0;
}
.foot-nav-col ul li {
	padding:5px 0;
	margin: 0;
	list-style: none;
	position: relative;
	white-space: nowrap;
}
.foot-nav-col ul li a {
	font-family: "Outfit", sans-serif;
	font-size:18px;
	font-weight:400;
	color:#000;
	transition: .2s ease-in;
	cursor: pointer;
}
.foot-nav-col ul li a:hover {
	opacity: 0.7;
}
.foot-nav-col ul ul {
	display: none;
	background:#ececec;
}
.foot-nav-col ul ul li {
	padding: 5px 5px 5px 7px;
}

.media-img {display:none!important;}


/*========================== 
	  Responsive styles 
============================*/

@media screen and (max-width: 1400px) {
	.head-info {
	  padding: 10px 20px;
	}
	nav.primary {
		padding: 0 0 0 40px;
	}
	nav.primary ul li a {
		font-size: 1.1vw;
		padding:10px .5vw;
	}
	.container-1 {
		width: 100%;
		padding:0 20px;
	}
	.cta-cont-1 {
		width: 75%;
		padding: 20px 20px 0 20px;
	}
	
}
@media screen and (max-width: 1360px) {
	.compact-kit-info, .kit-spec-cont-1 {
	  width: 100%;
	}
	.spec-link-1 {
		display: block;
	}
}
	
	
@media screen and (max-width: 1250px) {
	.cta-cont-1 h3 {
		right:10px;
		font-size: 20px;
	}
	.content-info-col-1, .content-img, .content-img-1 {
		width: 49%;
	}
}


@media screen and (max-width: 1150px) {
	.hero-overlay h1 {
		font-size: 4.5vw;
	}
	.hero-overlay h1 span {
		font-size: 3.5vw;
		font-weight: 500;
	}
}

@media screen and (max-width: 1000px) {
	
	.head-logo-cont-1 {
		width: 100%;
		max-width: 300px;
	}
	.head-logo-1 {
		padding:20px 70px 20px 10px;
	}
	

	/*==============================
		Mobile Nav Styles			
	================================*/


	nav.primary {
		display: none;
	}

	#menu-button {
		display: block;
		font-size:30px;
		color:#fff;
		cursor: pointer;
	}

	nav.mobile {
		display: block;
		position: fixed;
		top: 0;
		left: -250px;
		width: 250px;
		height: 100%;
		background:#fbcc0a;
		z-index: 500;
		overflow: auto;
		clip-path: polygon(0% 0%,100% 0%,100% calc(100% - 60px),calc(100% - 60px) 100%,0% 100%);
	}

	/* MENU HEADER SOCIAL MEDIA */
	nav.mobile .social-media {
		position: relative;
		text-decoration: none;
		display: inline-block;
		font-size: 16px;
		color: #000 !important;
	}

	nav.mobile .social-media a:link,
	nav.mobile .social-media a:visited {
		color: #000;
		text-decoration: none;
	}

	nav.mobile .social-media a:hover,
	nav.mobile .social-media a:active {
		opacity: 0.7;
	}

	/* MENU HEADER STYLES */
	nav.mobile .mobile_top {
		position: relative;
		display: flex;
		gap:0 5px;
		justify-content: space-between;
		align-items: center;
		font-size: 18px;
		font-weight: 400;
		padding:10px;
		box-sizing: border-box;
		width:100%;
		border-bottom: 1px solid #000;
	}

	/* 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:#ECECEC;
		text-decoration: none;
	}

	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: #000;
		text-decoration: none;
		cursor: pointer;
		text-transform: uppercase;
	}

	nav.mobile ul li a:hover {
		background: rgba(45, 45, 45, 0.5);
		color: #fff;
		/* 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: #ececec;
		position: relative;
		display: block;
		padding: 10px 10px 10px 15px;
		color: #000;
		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: #ececec;
		position: relative;
		display: block;
		padding: 10px 10px 10px 25px;
		color: #000;
		text-decoration: none;
	}

	nav.mobile ul li li li a:hover {
		background: rgba(85, 85, 85, 0.5);
	}
	.nav-footer {
		border-top:1px solid #000;
		display: flex;
		flex-direction: column;
		gap:10px;
		padding:20px 10px;
		box-sizing: border-box;
	}
	.nav-footer a {
		font-size: 16px;
		color:#000;
	}
	.nav-footer a:hover {
		opacity: 0.7;
	}
	.cta-info {
		width: 100%;
		padding: 20px;
	}
	.cta-cont-1 {
		width:100%;
	}
	
	.wrap-cta-2 .container-1 a img {
		width:100%;
		height: auto;
		min-height: 100%;
		max-height: 100%;
		object-fit: contain;
	}
	.wrap-cta-2 .container-1 a h3 {
		bottom:-15px;
		font-size:20px;
		max-width: 300px;
	}
	.wrap-cta-2 .container-1 a:first-of-type h3, .wrap-cta-2 .container-1 a:last-of-type h3 {
		padding: 20px 10px 20px 20px;
		clip-path: polygon(0% 0%,80% 0%,100% 100%,0% 100%);
		left: 0;
		right:auto;
		text-align: left;
	}
	.home-about-info-cont {
		padding: 100px 40px;
		box-sizing: border-box;
		clip-path: polygon(10% 0%,100% 0%,100% 90%,90% 100%,0% 100%,0% 10%);
	}
	.foot-nav {
		justify-content: flex-start;
	}
	.content-info-col-1, .content-img, .content-img-1 {
		width: 100%;
	}
	.col-1-2 {
		width:100%;
	}	
}
@media screen and (max-width: 850px) {
	.media-img {display:block!important;}
	.desktop-img {display:none!important;}
	
	.rockkit .compact-kit-info-cont-1 {gap: 2px 0;}
	.smoothkit .compact-kit-info-cont-1 {gap: 2px 0;}
	
	.standardripper .kit-info-right .kit-info-cont-1.info-top::before {width: 100%;}
	.standardripper .kit-info-right .kit-info-cont-1.info-bottom:before {width:105%;}
	.standardripper .compact-kit-info-cont-1 {gap: 2px 0;}
	
	.heavyduty .kit-info-left .kit-info-cont-1.info-bottom {width:78%;left:60px;}
	.heavyduty .kit-info-left .kit-info-cont-1.info-mid:before  {width:97%;}
	.heavyduty .kit-info-left .kit-info-cont-1 p  {left:55px;}
	.heavyduty .kit-info-left .kit-info-cont-1.info-top:before {left:58px;}
	.heavyduty .compact-kit-info-cont-1 {gap: 2px 0;}
	
	.graderripper .compact-kit-info-cont-1 {gap: 2px 0;}
	.graderripper .kit-info-left .kit-info-cont-1.info-bottom::before {width:100%;}
	.graderripper .kit-info-left .kit-info-cont-1.info-top:before {width:105%;}
	
	.padshell .compact-kit-info-cont-1 {gap: 2px 0;}
	.padshell .kit-info-right .kit-info-cont-1.info-bottom:before {width: 107%;}
	.padshell .kit-info-right .kit-info-cont-1.info-top::before {width:98%; }
	.padshell .kit-info-left .kit-info-cont-1.info-bottom::before {width:95%;}
	.padshell .kit-info-left .kit-info-cont-1.info-top:before {width:106%;}
	

	.kit-info-left, .kit-info-right, .col-2-kit-info {
		width:100%;
	}
	.kit-info-right {
		align-items: flex-end;
	}
	.kit-info-left .kit-info-cont-1.info-bottom::before, .kit-info-left .kit-info-cont-1.info-mid::before {
		clip-path: polygon(0% 0%,100% 0%,calc(100% - 20px) 100%,0% 100%);
		width:100%;
	}
	.kit-info-img {
		width:100%;
	}
	.kit-info-left .kit-info-cont-1, .kit-info-right .kit-info-cont-1 {
	  width: 90%;
	}
	.kit-info-right .kit-info-cont-1.info-top::before {
		clip-path: polygon(20px 0%,100% 0%,100% 100%,0% 100%);
		width:100%;
	}
	.kit-info-left .kit-info-cont-1.info-top::after, .kit-info-left .kit-info-cont-1.info-top.short-line:after {
		height:65vw;
  		width: 50%;
		left: 60%;
		
	}
	.kit-info-left .kit-info-cont-1.info-mid::after {
		height:60vw;
  		width: 50%;
		left: 57.5%;
	}
	.kit-info-left .kit-info-cont-1.info-bottom::after {
		height: calc(60vw - 20px);
  		width: 50%;
		left: 55%;
		bottom:auto;
		top:50%;
	}
	.kit-info-right .kit-info-cont-1.info-top::after {
		height: calc(45vw - 20px);
  		width: 50%;
		right: 55%;
		top:auto;
		bottom:50%;
	}
	.kit-info-right .kit-info-cont-1.info-bottom::after {
		height: 50vw;
  		width: 50%;
		right: 60%;
		top:auto;
		bottom:50%;
	}
	.resource-vid-cont iframe {
		width: 100% !important;
	}

}

@media screen and (max-width: 750px) {
	.hero-overlay {
	  height: auto;
	  min-height: 100%;
	  max-height: 100%;
	  padding: 100px 0 80px 0;
	}
	.head-info ul {
		display: none;
	}
	.hero-overlay h1 {
		font-size: 30px;
	}
	.hero-overlay h1 span {
		font-size: 20px;
	}
	.cta-cont-1 a {
		width:100%;	
	}
	.foot-right {
		display: none;
	}
	.foot-left {
  		max-width: 100%;
		clip-path: polygon(0% 0%,100% 0%,100% 70%,70% 100%,0% 100%);
  		padding: 100px 20px;
	}
	footer {
		padding-bottom:20px;
	}
	.home-about-info-cont {
		padding: 40px 15px;
		box-sizing: border-box;
		clip-path: polygon(30px 0%,100% 0%,100% calc(100% - 30px),calc(100% - 30px) 100%,0% 100%,0% 30px);
	}
	.info-callout-cont-1 {
		clip-path: polygon(30px 0%, 100% 0%, 100% 100%, 0% 100%, 0% 30px);
	}
	.info-callout-cont-2 {
	  clip-path: polygon(0% 0%,100% 0%,100% calc(100% - 30px),calc(100% - 30px) 100%,0% 100%);
	}
	.form-container {
		width: 100%;
		clip-path: polygon(0% 0%,100% 0%,100% calc(100% - 30px),calc(100% - 30px) 100%,0% 100%);
	}
	.wrap-cta-2 .container-1 a {
		width: 100%;
	}
	
	
}

 	
@media screen and (max-width: 634px) {
	.heavyduty .kit-info-left .kit-info-cont-1.info-bottom:before	{width:80%;}

	.heavyduty .kit-info-left .kit-info-cont-1.info-top:before{
		left: 20px;
	}

	.heavyduty .kit-info-left .kit-info-cont-1.info-top:before{
		left: 20px;
	}

	.heavyduty .info-mid{
		width: 330px;
		padding-right: 80px;
		left: 25px;
	}
	.heavyduty .info-bottom{
		width: 330px;
		padding-right: 80px;
		left: 25px;
	}
	.heavyduty .info-bottom p {left:22px!important;}
}

@media screen and (max-width: 616px) {

	/*
	.heavyduty .kit-info-left .kit-info-cont-1.info-bottom	{width:100%; padding-left: 0px;}
	.heavyduty .kit-info-left .kit-info-cont-1.info-mid {width:425px;; left:57px; padding-left: 0px;}
	.heavyduty .kit-info-left .kit-info-cont-1 .info-mid p {left:0px!important; }
	
	*/
}

@media screen and (max-width: 550px) {
	.kit-info-img {
		width: 100%;
	}
	.kit-info-left .kit-info-cont-1.info-top::after {
		height: 71vw;
	}
	.kit-info-right .kit-info-cont-1.info-bottom::after {
    	height: 59vw;
	}
	
	
}
@media screen and (max-width: 500px) {
	.home-about-info-cont h2, .content-header {
		font-size:30px;
	}
	.home-about-info-cont h2 .sml-text {
		font-size:20px;
		padding-bottom: 20px;
	}
	
	p {
		font-size: 14px;
	}
	.btn-cont-1 a {
	  width: 100%;
	}
	.btn-black, .btn-yellow {
		padding:10px;
		font-size:16px;
	}
	.wrap-cta-2 .container-1 a h3 {
		font-size:18px;
	}
	.wrap-content {
		padding: 60px 0 40px 0;
	}
	
	h1 {
		font-size: 24px;
	}

	h2 {
		font-size: 22px;
	}

	h3 {
		font-size: 20px;
	}

	h4 {
		font-size: 18px;
	}

	h5 {
		font-size: 16px;
	}

	p {
		font-size: 16px;
	}
	.kit-spec-cont-1 th, .kit-spec-cont-1 td {
		font-size: 14px;
	}
	.kit-info-left .kit-info-cont-1 {
	  padding: 10px;
	}
	 
}

@media screen and (max-width: 500px) {
	.padshell .kit-info-left .kit-info-cont-1.info-bottom::before {width:100%;}
	
	.heavyduty .info-mid{
		width: 250px;
		padding-right: 80px;
		left: 25px;
	}
	.heavyduty .info-bottom{
		width: 330px;
		padding-right: 80px;
		left: 25px;
	}
	
	
}
