﻿/*===================== 
	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%;
	scroll-behavior: smooth;
}

body {
	font-family: "bebas-neue-pro-semiexpanded", 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;
}
.sub-header {
	font-size:clamp(20px, 4vw, 35px);
}
.text-white {
	color:#fff;
}

.jump-link {
	position: relative;
	top: -150px;
	z-index: -1;
}

/*===================== 
	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-white {
	font-family: "bebas-neue-pro-semiexpanded", sans-serif;
	background:#fff;
	color:#3d3d3d;
	display:flex;
	justify-content: space-between;
	align-content: center;
	padding:15px 20px;
	font-size: 18px;
	font-weight: 400;
	text-align:center;
    transition: .2s ease-in;
	outline: none;
	cursor: pointer;
	border-radius: 0px!important;
	border:1px solid #fff;
	white-space: nowrap;
	gap:4px;
}
.btn-white i {
	color:#75e972;
	transition: .2s ease-in;
	margin-right: 1%;
}
.btn-white:hover {
	color:#000;
	background:#eaeaea;
}
.btn-white:hover i {
	margin-right:0;
	color:#000;
}
.btn-black {
	font-family: "bebas-neue-pro-semiexpanded", sans-serif;
	background:#000;
	color:#fff!important;
	display:flex;
	justify-content: space-between;
	align-content: center;
	padding:15px 20px;
	font-size: 18px;
	font-weight: 400;
	text-align:center;
    transition: .2s ease-in;
	outline: none;
	cursor: pointer;
	border-radius: 0px!important;
	border:1px solid #000;
	white-space: nowrap;
	gap:4px;
}
.btn-black i {
	color:#2eda2a!important;
	transition: .2s ease-in;
	margin-right: 1%;
}
.btn-black:hover {
	color:#fff!important;
	background:#2eda2a;
}
.btn-black:hover i {
	margin-right:0;
	color:#fff!important;
}
.text-link-black {
	font-weight: 600;
	color:#000!important;
	transition: .2s ease-in;
	background: none;
	border: 0;
	padding: 0;
	margin: 0;
	cursor: pointer;
	text-align: inherit;
	white-space: nowrap;
}
.text-link-black i {
	color:#2eda2a!important;
	transition: .2s ease-in;
}
.text-link-black:hover {
	opacity: 0.7;
}
.text-link-black:hover i {
	color:#000!important;
}
.btn-cont-1 {
	display: flex;
	flex-wrap: wrap;
	gap:10px 15px;
}

/*===================== 
	header styles 
=======================*/



.header-wrap {
	width: 100vw;
	margin: 0;
	background:rgba(255,255,255,0.9);
	position: fixed;
	top:0;
	left:0;
	z-index:100;
	box-shadow: 0 0 10px 2px rgba(0,0,0,0.2);
}
.header-wrap.stick .top-head {
	display: none;
}
.header-wrap.stick header {
	padding:5px 20px;
}
.header-wrap.stick .head-logo-1 {
	width: 100%;
	max-width:200px;
}
.top-head {
	background:#000;
	width: 100%;
	transition: .2s ease-in;
}
.top-head .container-lg {
	padding:10px 20px;
}
.top-head ul {
	width: 100%;
	padding:0;
	margin:0;
	display: flex;
	gap:20px;
	justify-content: flex-end;
}
.top-head ul li {
	padding:0;
	margin:0;
	list-style: none;
}
.top-head ul li a {
	font-size:16px;
	font-weight:400;
	color:#fff;
	transition: .2s ease-in;
	font-family: "bebas-neue-pro-semiexpanded", sans-serif;
}
.top-head ul li a i {
	color:#75e972;
}
.top-head ul li a:hover {
	color:#75e972;
}
header {
	width: 100%;
	margin: 0 auto;
	max-width: 1600px;
	padding:20px;
	transition: .2s ease-in;
	box-sizing: border-box;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap:30px;
}
.head-logo-1 {
	width: 100%;
	max-width:375px;
	transition: .2s ease-in;
}
.head-logo-1 img {
	width: auto;
	max-width: 100%;
	height: auto;
	display: block;
}
.head-desktop-search {
	position: relative;
}
.head-s-open {
	color:#75e972;
	background:#3d3d3d;
	font-size: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
	width:40px;
	height:41px;
	cursor: pointer;
}
.head-s-open:before {
	width: 20px;
	height:41px;
	background: #000;
	clip-path: polygon(100% 0%,1% 50%,100% 100%);
	content: "";
	display: block;
	position: absolute;
	right: 100%;
	top:0;
}
.head-s-close {
	color:#fff;
	background:#3d3d3d;
	font-size: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
	width:40px;
	height:41px;
	cursor: pointer;
}
.head-search-bar {
	position: absolute;
	top:0;
	right:0;
	display: flex;
	max-width: 600px;
	width: 0;
	overflow: hidden;
	transition: .2s ease-in;
}
.head-search-bar.open {
	width: 90vw;
}

/*===================== 
	nav styles 
=======================*/

#menu-button {
	display: none;
}

nav.mobile, .mobile-nav-cont-1 { display:none;}



nav.primary {
	padding: 0;
	display: flex;
	margin: 0;
	position: relative;
	gap:20px;
}

nav.primary ul {
	margin: 0 auto;
	padding: 0;
	display: flex;
}

nav.primary ul li {
	display: inline-block;
	margin: 0;
	list-style-type: none;
	transition: .2s ease-in;
}

nav.primary ul li a {
	font-family: "bebas-neue-pro-semiexpanded", sans-serif;
	color: #000;
	font-size: clamp(14px, 1.5vw, 20px);
	text-decoration: none;
	padding: 10px clamp(5px, .7vw, 20px);
	display: block;
	margin: 0;
	text-align: center;
	text-transform: uppercase;
	transition: .2s ease-in;
	font-weight: 400;
	cursor: pointer;
	white-space: nowrap;
}


nav.primary ul li a:hover {
	background: #75e972;
}
nav.primary ul li:hover a {
	background: #75e972;
}

/* Appearance of the sub-level links */
nav.primary ul li li a {
	padding:10px;
	color: #000;
	background: #75e972;
	text-align: left;
}

/* Appearance of the sub-level links on hover */
nav.primary ul li li a:hover {
	color: #fff;
	background:#2eda2a;
}

/* 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;
	min-width:200px;
	position: relative;
	margin: 0;
}

/*===================== 
	content styles 
=======================*/

.wrap-hero {
	width: 100%;
	position: relative;
	background: #000;
}
.hero-overlay {
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: 1;
	background: rgba(0,0,0,0.3);
	padding:20px 20px 70px 20px;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-end;
	top:0;
	left:0;
}
.hero-overlay h1 {
	font-size:clamp(22px, 3vw, 40px);
	font-weight:700;
	color:#fff;
	text-shadow: 0 0 15px rgba(0,0,0,0.8);
	text-transform: uppercase;
	text-align: center;
}
.hero-slider {
	width: 100%;
	height: 42vw;
	min-height: 200px;
	max-height: calc(100vh - 250px);
	overflow: hidden;
}
.hero-slider img {
	width: 100%;
	height: 42vw;
	min-height: 200px;
	max-height: calc(100vh - 250px);
	object-fit: cover;
	object-position: center;
}

.wrap-cta {
	width: 100%;
	padding:80px 0;
	background:#eaeaea;
	position: relative;
	z-index: 1;
}
.wrap-cta .container-sml {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: stretch;
	position: relative;
  	top: -130px;
	gap:20px 0;
}
.cta-big-btn {
	display: flex;
	justify-content: center;
	align-items: center;
	background: #75e972;
	transition: .2s ease-in;
	width: 20%;
	position: relative;
	z-index: 1;
	flex-direction: column;
	gap: 5px;
	box-shadow: 0 0 10px 2px rgba(0,0,0,0.2);
}
.cta-big-btn:after {
	content:"";
	position: absolute;
	top:0;
	left:100%;
	height: 100%;
	width:40%;
	background:#2eda2a;
	clip-path: polygon(0% 0%,0% 100%,100% 50%);
}
.cta-big-btn i {
	font-size:70px;
	color:#2eda2a;
	transition: .2s ease-in;
}
.cta-big-btn span {
	font-size:24px;
	text-align: center;
	color:#000;
	transition: .2s ease-in;
	font-weight: 600;
}
.cta-big-btn:hover {
	width: 21%;
	background:#2eda2a;
}
.cta-big-btn:hover i {
	color:#000;
}
.cta-right {
	width: 75%;
	position:relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	gap:20px 0;
}
.cta-btn-cont {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: stretch;
	background:#fff;
	box-shadow: 0 0 10px 2px rgba(0,0,0,0.2);
	padding:10px;
	box-sizing: border-box;
	width: 100%;
	gap:5px 0;
}
.cta-btn-cont h2 {
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	font-size:24px;
	font-weight: 600;
	color:#000;
	border-right: 4px solid #2eda2a;
	box-sizing: border-box;
	width: 35%;
}
.cta-btn-cont a {
	width: 15%;
	display: block;
	box-sizing: border-box;
	padding:15px 10px;
	transition: .2s ease-in;
}
.cta-btn-cont a img {
	width: auto;
	max-width: 100%;
	height: auto;
	display: block;
	margin:0 auto 10px auto;
	transition: .2s ease-in;
}
.cta-btn-cont a h3 {
	color:#000;
	font-size:16px;
	font-weight: 400;
	text-align: center;
	transition: .2s ease-in;
}
.cta-btn-cont a:hover img {
	filter: brightness(0) saturate(100%) invert(67%) sepia(21%) saturate(2284%) hue-rotate(69deg) brightness(100%) contrast(90%);
}
.cta-btn-cont a:hover h3 {
	color:#2eda2a;
}
.wrap-cta .search-bar form {
	padding:15px;
}
.cta-search-mob {
	display: none;
}
.search-bar form {
    display: flex;
    background:#3d3d3d;
    padding:10px;
    box-sizing: border-box;
    width: 100%;
}
.search-bar form input {
    background: #3d3d3d;
    background-color: #3d3d3d!important;
    font-size: 16px!important;
	font-weight:300;
    flex-grow: 1;
    width:100%;
    border:0px!important;
    outline: none!important;
    font-family: "bebas-neue-pro-semiexpanded", sans-serif;
    height: auto!important;
    padding:10!important;
    line-height: normal!important;
    border-radius: 0px!important;
	color:#fff!important;
}
.search-bar form input::placeholder {
	color:#fff!important;
	opacity:0.9;
}
.search-bar form input:focus::placeholder {
	color:#D0D0D0!important;
}
.search-bar form button {
    background: #3d3d3d;
    background-color: #3d3d3d;
    color:#75e972;
    font-size: 16px;
    border:0px;
    outline: none;
    transition: .2s ease-in;
	cursor: pointer;
}
.search-bar form:hover button {
    color:#fff;
}
.bottom-bg-img {
	width: 100%;
}
.bottom-bg-img img {
	width: 100%;
	height: auto;
	display: block;
	object-fit: cover;
	min-height: 200px;
	object-position: center right;
}
.wrap-promo-slider {
	width: 100%;
	position: relative;
	margin-bottom: -60px;
}
.wrap-promo-slider .container-sml {
	position: relative;
	z-index: 1;
	top:-130px;
}
.wrap-promo-slider .container-sml .sub-header {
	text-align: center;
	padding-bottom:20px;
}

.promo-slider {
	position: relative;
	display: flex!important;
	flex-wrap: wrap;
	align-items: center;
	gap:0 10px;
}
.promo-slider .slick-list {
	box-shadow: 0 0 10px 2px rgba(0,0,0,0.2);	
}
.promo-slider .slick-track {
	display: flex!important;
}
.promo-slider .slick-slide {
	display: flex!important;
	flex-wrap: wrap;
	justify-content: space-between;
	height: auto;
	max-height: 400px;
}
.promo-slide-info {
	width: 33.33%;
	display: flex;
	flex-direction: column;
	justify-content:center;
	gap:20px;
	padding:25px;
	box-sizing: border-box;
}
.promo-slide-info img {
	width:auto;
	max-width: 100%;
	margin:0 auto;
	display: block;
}
.promo-slide-info h2 {
	text-align: center;
	font-size:26px;
	font-weight:600;
}
.promo-slide-info h2 span {
	display: block;
	font-size:20px;
	font-weight:400;
}
.promo-slide-info p {
	text-align: center;
	font-size:16px;
	font-weight:300;
}
.promo-slide-image {
	width: 66.66%;
}
.promo-slide-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.promo-slider .slick-arrow {
	background: #75e972;
	display: none!important;
	padding: 40px 0;
	font-size: 11px;
	color: #000;
	transition: .2s ease-in;
	cursor: pointer;
}
.promo-slider .slick-prev {
	right:calc(100% + 3px)
}
.promo-slider .slick-next {
	left:calc(100% + 3px)
}
.promo-slider .slick-dots {
	padding:20px 0 4px 0;
	margin:0;
	width: calc(100% - 190px);
	display:flex!important;
	gap:0 10px;
	position: relative;
	z-index: 2;
}
.promo-slider .slick-arrow:hover {
	background:#2eda2a;
}
.promo-slider .slick-dots li {
	height: 35px;
	width: 35px;
	background:#3d3d3d;
	list-style: none;
	display: block;
	transition: .2s ease-in;
	cursor: pointer;
}
.promo-slider .slick-dots li.slick-active {
	flex-grow: 1;
}
.promo-slider .slick-dots li button {
	display: none;
}
.promo-slider .slick-dots li:hover {
	opacity: 0.8;
}
.btn-green-slider {
	display: flex;
	position: absolute;
	z-index: 1;
	right: 20px;
	bottom: 11px;
	background: #75e972;
	color: #000!important;
	height: 40px;
	justify-content: center;
	align-items: center;
	width: 177px;
	transition: .2s ease-in;
}
.btn-green-slider i {
	color:#2eda2a;
	margin-right: 2px;
}
.btn-green-slider:before {
	width: 20px;
	height: 100%;
	background:#2eda2a;
	clip-path: polygon(100% 0%,1% 50%,100% 100%);
	content: "";
	display: block;
	position: absolute;
	right: 100%;
	top: 0;
}
.btn-green-slider:hover {
	width: 182px;
	background:#2eda2a;
}
.btn-green-slider:hover i {
	color:#000;
}
.wrap-home-brands {
	width: 100%;
	padding:80px 0;
	background:#eaeaea;
}
.wrap-home-brands .container-lg {
	display: flex;
	flex-wrap: wrap;
	gap:20px;
}
.wrap-home-brands .container-lg a {
	background:#fff;
	box-shadow: 0 0 10px 2px rgba(0,0,0,0.2);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap:5px 0;
	padding:10px;
	box-sizing: border-box;
	width: calc(16.66% - 17px);
	height: 150px;
	position: relative;
	transition: .2s ease-in;
}
.wrap-home-brands .container-lg a img {
	width: 100%;
	max-width: 190px;
	height: auto;
	max-height: 100px;
	object-fit: contain;
	object-position: center;
	transition: .2s ease-in;
}
.wrap-home-brands .container-lg a p {
	color:#000;
	font-size:24px;
	font-weight: 600;
}
.wrap-home-brands .container-lg a i {
	color:#2eda2a;
	font-size:70px;
	transition: .2s ease-in;
}
.wrap-home-brands .container-lg a:first-of-type {
	background:#75e972;
	width: calc(15.66% - 17px);
	margin-right: 1%;
}
.wrap-home-brands .container-lg a:first-of-type:after {
	content: "";
	position: absolute;
	top: 0;
	left: 100%;
	height: 100%;
	width: 30%;
	background: #2eda2a;
	clip-path: polygon(0% 0%,0% 100%,100% 50%);
}
.wrap-home-brands .container-lg a:hover {
	background:#eaeaea;
}
.wrap-home-brands .container-lg a:hover img {
	filter:grayscale(1);
	opacity: 0.7;
}
.wrap-home-brands .container-lg a:first-of-type:hover {
	background:#2eda2a;
	width: calc(16.66% - 17px);
	margin-right: 0%;
}
.wrap-home-brands .container-lg a:first-of-type:hover i {
	color:#000;
}
.wrap-home-about {
	width: 100%;
	padding:120px 0 0 0;
}
.about-cont {
	width: calc(100% - 20px);
	max-width:650px;
	padding:0 20px;
	box-sizing: border-box;
	border-left: 4px solid #2eda2a;
	margin:0 auto;
}
.about-cont h2 {
	font-size:30px;
	font-weight:700;
	display: block;
}
.about-cont h2 span {
	display: block;
	font-size:24px;
	font-weight:400;
}
.about-cont p {
	line-height: 1.4;
	padding:20px 0;
}
.wrap-contact-bar {
	width: 100%;
	background:#000;
}
.wrap-contact-bar .container-sml {
	padding:40px 20px;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap:20px;
}
.contact-bar-info {
	display: flex;
}
.info-bar-ioc {
	display: flex;
	justify-content: center;
	align-items: center;
	
}
.info-bar-ioc i {
	font-size:30px;
	padding:10px;
	color:#2eda2a;
	border-right:2px solid #2eda2a;
}
.info-bar-ioc i.outline {
	color: #000;
	text-shadow:-2px -2px 0 #2eda2a, 2px -2px 0 #2eda2a, -2px 2px 0 #2eda2a, 2px 2px 0 #2eda2a;
}
.info-bar-text {
	color:#fff;
	font-size:18px;
	font-weight:400;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding-left: 10px;
	transition: .2s ease-in;
}
.info-bar-text span {
	font-weight:700;
}
a.contact-bar-info:hover .info-bar-text {
	color:#2eda2a;
}

.content-info {
	padding: 20px;
	box-sizing: border-box;
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	gap:20px;
	justify-content: center;
}
.content-white-bg {
	background: #fff;
	box-shadow: 0 0 10px 2px rgba(0,0,0,0.2);
}
.content-box-links {
	width: 47%;
	display: flex;
	flex-wrap: wrap;
	gap:20px;
	position: relative;
	padding:20px;
	box-sizing: border-box;
	background: #75e972;
	margin: 20px 0;
}
.content-box-links:after {
	content: "";
	position: absolute;
	background: #2eda2a;
	top: 0;
    right: 100%;
    height:100%;
    width:30%;
    clip-path: polygon(100% 0%,1% 50%,100% 100%);
}
.box-link-cont {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap:5px 0;
	box-sizing: border-box;
	width: calc(25% - 15px);
	padding:20px; 
	position: relative;
	transition: .2s ease-in;
	background:#3d3d3d;
}
.box-link-cont img {
	width: 100%;
	max-width: 100px;
	height: auto;
	display: block;
	margin:0 auto 5px auto;
	filter: brightness(0) invert(1);
	opacity: 0.3;
}
.box-link-cont h2 {
	color:#000;
	font-size:26px;
	font-weight: 600;
	text-align: center;
}
.box-link-cont h3 {
	color:#fff;
	font-size:18px;
	font-weight: 600;
	text-align: center;
}
.box-link-cont i {
	color:#2eda2a;
	font-size:70px;
	transition: .2s ease-in;
}
.box-link-cont:first-of-type {
	background:none;
	width: 100%;
	text-transform: uppercase;
}
.contant-box-img {
	padding:20px;
}
.contant-box-img img {
	width: 100%;
	height: auto;
	display: block;
}
.wrap-brand-promotions .container-sml {
	position: relative;
	top:-70px;
}
.accordian-cont {
	display: flex;
	flex-direction: column;
	gap:20px;
}
.wrap-brand-promotions ul {
	padding:0;
	margin:0;
}
.wrap-brand-promotions ul li {
	width: 100%;
	list-style: none;
	padding:0;
	margin:0;
	background: #fff;
	box-shadow: 0 0 10px 2px rgba(0,0,0,0.2);
}
.wrap-brand-promotions ul li a {
	cursor: pointer;
	display: flex;
	justify-content:space-between;
	align-items: center;
	padding: 10px;
	box-sizing: border-box;
	width: 100%;
}
.wrap-brand-promotions ul li .click img {
	width: 100%;
	max-width: 150px;
	height: 90px;
	object-fit: contain;
	object-position: center;
}
.wrap-brand-promotions ul li h2 {
	font-size:20px;
	font-weight: 600;
}
.wrap-brand-promotions ul ul {
	display: none;
	background:#fff;
	gap:5px;
	padding:10px;
	box-sizing: border-box;
}
.wrap-brand-promotions ul li li {
	padding: 20px;
	margin: 20px 0;
	box-sizing: border-box;
	display: flex;
	gap: 20px 0;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	background:#eaeaea;
	box-shadow: 0 0 0px 0px rgba(0,0,0,0.0);
}
.wrap-brand-promotions ul li li img {
	width: 49%;
	height: auto;
	display: block;
}
.promo-details {
	width: 49%;
	display: flex;
	flex-direction: column;
	gap:20px;
}
.wrap-brand-list h2  {
	width:100%;
	text-align: center;
}
.wrap-brand-list .container-lg {
	display: flex;
	flex-wrap: wrap;
	gap:20px;
	position: relative;
	top:-120px;
}
.brand-cont-1 {
	background: #fff;
	box-shadow: 0 0 10px 2px rgba(0,0,0,0.2);
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 20px 0;
	padding: 10px;
	box-sizing: border-box;
	width: calc(33.33% - 14px);
	position: relative;
	flex-wrap: wrap;
}
.brand-cont-1 img {
	width: auto;
	max-width: 100%;
	height: auto;
}
.brand-cont-1 img.brand-list-logo {
	width: 100%;
	max-width: 190px;
	height: auto;
	max-height: 100px;
	object-fit: contain;
	object-position: center;
	transition: .2s ease-in;
}
.brand-btn-cont {
	width: 100%;
	display: flex;
	gap: 10px 2%;
	align-self: flex-end;
}
.brand-btn-cont a {
	width: 49%;
	flex-grow: 1;
	justify-content: center;
}
a.brand-cont-1 {
	display: flex;
	flex-direction: column;
	gap:10px;
}
a.brand-cont-1 p {
	text-align: center;
	font-size: 18px;
	coloe:#000;
}
a.brand-cont-1:hover img {
	filter: grayscale(1);
	opacity: 0.7;	
}

/*===================== 
	animation styles 
=======================*/

.animate-cont {
    overflow: hidden;
}

.js-scroll {
  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 {
  animation: fade-in-bottom 1s ease-in-out both;
}
.scrolled.fade-in-top {
  animation: fade-in-top 1s ease-in-out both;
}

.scrolled.slide-left {
  animation: slide-in-left 1s ease-in-out both;
}

.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;
  }
}


/*===================== 
	Form styles 
=======================*/

/* Containers */

.wrap-form {
	width: 100%;
	position: relative;
}
.wrap-form .container-sml {
	background: #fff;
	padding:40px 20px;
	box-sizing: border-box;
	box-shadow: 0 0 10px 2px rgba(0,0,0,0.2);
	position: relative;
	top:-60px;
}
.wrap-form h2 {
	padding-bottom: 20px;
}
.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;
}
.form-info-cont p {
	font-size: 18px;
	padding: 20px 0 10px 0;
	display: block;
	font-weight: 600;
}
/* Inputs */

.radio-pad {
	padding: 0 0 0 10px;
}

.form-info-cont input, .form-info-cont date {
	width: 100%;
	font-family: "bebas-neue-pro-semiexpanded", sans-serif;
	display: block;
	padding: 15px;
	font-size: 16px;
	margin:  0 0 15px 0;
	box-sizing: border-box;
    outline:none;
    border:1px solid #000;
    color:#000; 
}

.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%;
	font-family: "bebas-neue-pro-semiexpanded", sans-serif;
	display: block;
	padding: 15px;
	font-size: 16px;
	min-height: 120px;
	box-sizing: border-box;
	margin:  0 0 15px 0;
    outline:none;
    border:1px solid #000;
}
.form-info-cont button {
	margin:0 auto;
	width: 100%;
	max-width: 300px;
}

#CaptchaImage {
  max-width: 100%;
}
.CaptchaWhatsThisPanel input {
    margin:0 auto;
}
.CaptchaAnswer {
	border:1px solid #000;
}
.CaptchaWhatsThisPanel a {color:#000;}
.CaptchaWhatsThisPanel a:hover {text-decoration:underline;} 


/*===================== 
	layout styles 
=======================*/

.wrap {
	width: 100%;
	margin: 0;
}
.bg-lt-grey {
	background:#eaeaea;
}

.container-sml {
	width: 100%;
	max-width: 1100px;
	margin: 0 auto;
	padding: 10px 20px;
	box-sizing: border-box;
}
.container-lg {
	width: 100%;
	max-width: 1600px;
	margin: 0 auto;
	padding: 10px 20px;
	box-sizing: border-box;
}

.container-inv {
	margin: 0 auto;
	padding:150px 0 40px 0;
	box-sizing: border-box;
}

.flex-cont-1 {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap:20px 0;
}
.flex-cont-2 {
	display: flex;
	flex-wrap: wrap;
	gap:20px;
}

.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: 32.33%;
	box-sizing: border-box;
}

.col-1-2 {
	width: 49%;
	box-sizing: border-box;
}
.col-1 {
	width:100%;
	box-sizing: border-box;
}
.col-2-3 {
	width: 65.66%;
	box-sizing: border-box;
}

.col-3-4 {
	width: 75%;
	box-sizing: border-box;
}
.wrap-content {
	width: 100%;
	position: relative;
}
.no-header-cont {
	padding-top: clamp(40px, 23vw, 300px);
}
.wrap-content .container-lg, .wrap-content .container-sml {
	position: relative;
	top:-40px;
	z-index: 3;
	padding-bottom: 120px;
	gap: 20px 0;
}
.wrap-content iframe {
	width: 100%;
	height: 100%;
	min-height: 300px;
	padding:20px;
	box-sizing: border-box;
}
.content-list {
	padding: 10px 20px;
	margin:0;
}
.content-list li {
	font-size: 18px;
	padding:0 0 4px 2px;
}
.hero-bg {
	width: 100%;
	position: relative;
}
.hero-bg img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	object-position: center;
	position: absolute;
	z-index: 1;
	top: 0;
	right: 0;
}
.bero-bg-overlay {
	width: 100%;
	padding: clamp(40px, 23vw, 300px) 20px clamp(40px, 23vw, 200px) 20px;
	background: rgba(0,0,0,0.4);
	display: flex;
	justify-content: center;
	align-items: center;
	box-sizing: border-box;
	position: relative;
	z-index: 2;
}
.bero-bg-overlay h1 {
	font-size:clamp(28px, 4vw, 60px);
	color:#fff;
	text-shadow: 0 0 10px rgba(0,0,0,0.5);
	text-align: center;
}
.brand-header {
	width: 100%;
	position: relative;
	background: #fff;
}
.brand-header-overlay {
	width: 100%;
	padding: clamp(20px, 16vw, 300px) 20px clamp(40px, 16vw, 200px) 20px;
	background:rgba(255,255,255,0.85);
	display: flex;
	justify-content: center;
	align-items: center;
	box-sizing: border-box;
	position: relative;
	z-index: 2;
	gap:20px;
}
.brand-header-overlay img {
	width: 100%;
	max-width: 200px;
	height: auto;
	display: block;
	max-height: 140px;
	object-fit: contain;
}
.brand-header-overlay h1 {
	font-size:clamp(32px, 4vw, 60px);
	text-align: left;
	text-transform: uppercase;
	line-height: 1.2;
	border-left: 2px solid #000;
	padding-left: 30px;
}
.brand-header-overlay h1 span {
	font-weight: 400;
	font-size: clamp(22px, 2.7vw, 40px);
	display: block;
}
.brand-header-bg-1 {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	object-position: center;
	position: absolute;
	z-index: 1;
	top: 0;
	right: 0;
	filter: grayscale(1);
}

/*===================== 
	footer styles 
=======================*/

footer {
	margin: 0;
	width: 100%;
	background:#3d3d3d;
	border-bottom: 20px  solid #75e972;
}
footer .container-lg {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding:60px 20px;
}
.foot-logo {
	display: flex;
	flex-direction: column;
	gap:20px;
}
.foot-logo img {
	width: 100%;
	max-width:380px;
	display: block;
	margin: 0 auto;
}
.foot-logo ul {
	display: flex;
	gap:10px;
	justify-content: center;
	padding:0;
	margin:0;
}
.foot-logo ul li {
	list-style: none;
	padding:0;
	margin:0;
}
.foot-logo ul li a {
	font-size:20px;
	color:#75e972;
	transition: .2s ease-in;
}
.foot-logo ul li a:hover {
	color:#fff;
}
.foot-nav {
	display: flex;
	gap:0 calc(5vw + 20px); 
}
.foot-nav-col-1 p {
	font-family: "bebas-neue-pro-semiexpanded", sans-serif;
	font-size:18px;
	font-weight: 700;
	color:#75e972;
	padding-bottom: 10px;
}
.foot-nav-col-1 ul {
	padding:0;
	margin:0;
}
.foot-nav-col-1 ul li {
	padding:5px;
	margin:0;
	list-style: none;
}
.foot-nav-col-1 ul li a {
	font-family: "bebas-neue-pro-semiexpanded", sans-serif;
	transition: .2s ease-in;
	font-size:16px;
	font-weight:500;
	color:#fff;
}
.foot-nav-col-1 ul li a:hover {
	color:#75e972;
}

/*========================== 
	  Responsive styles 
============================*/

@media screen and (max-width:1250px) {
	.brand-cont-1 {
		width: calc(50% - 10px);
	}
}

@media screen and (max-width:1000px) {

	.wrap-home-brands .container-lg a {
		width: calc(25% - 15px);
	}
	.wrap-home-brands .container-lg a:first-of-type {
		width: calc(24% - 15px);
		margin-right: 1%;
	}
	.wrap-home-brands .container-lg a:first-of-type:hover {
		width: calc(25% - 15px);
		margin-right: 0%;
	}
}
@media screen and (max-width: 900px) {

	.header-wrap {
		position: static;
		background: #fff;
	}
	.top-head {
		display: none;
	}
	header {
		padding:10px 20px;
		justify-content:center;
	}
	
	/*==============================
		Mobile Nav Styles			
	================================*/	
	nav.primary{display:none;}
    .mobile-nav-cont-1 { display:block;} /* New class to help control screen width visability */
    
	#menu-button{ 
		width: 100%;
		display: flex;
		border-top: 2px solid #75e972;
		justify-content: center;
		padding:10px 20px;
		box-sizing: border-box;
	}
	
    .menu-toggle {
        display: flex;
        gap:13px;
        align-items: center;
		cursor: pointer;
    }
     .menu-hamburger {
        display: flex;
        flex-wrap: wrap;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        width:35px;
        height: 27px;
        position: relative;
    }
    .menu-hamburger-bar-1 {
       display: block;
       background:#000;
        height: 5px;
        width:100%;
        transition: .2s ease-in;
    }
    .menu-hamburger-bar-2 {
       display: block;
       background:#000;
        height: 5px;
        width:100%;
        transition: .2s ease-in;
    }
    .menu-hamburger-bar-3 {
       display: block;
       background:#000;
        height: 5px;
        width:100%;
        transition: .2s ease-in;
    }

    .clickopen .menu-hamburger-bar-2 {
        display: none;
    }
    .clickopen .menu-hamburger-bar-1 {
        position: absolute;
        top:10px;
        transform: rotate(45deg);
        width:25px;
    }
    .clickopen .menu-hamburger-bar-3 {
        position: absolute;
        top:10px;
        transform: rotate(-45deg);
        width:25px;
    }
    
	nav.mobile {
		display:none;
		position: absolute;
		left: 0px;
		width: 100%;
		height: auto;
		background:#eaeaea;
		z-index: 500; 
		overflow:auto;
		max-height: 75vh;
		box-shadow: 0 0 5px 1px rgba(0,0,0,0.2);
	}
	
	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;
	}
    nav.mobile ul li:first-child {
		border-top: 1px solid #000;
	}

	/* FIRST LEVEL */
	nav.mobile ul li a {
		font-family: "bebas-neue-pro-semiexpanded", sans-serif;
		position: relative;
		display: flex;
		justify-content: space-between;
		align-items: center;
		font-size:18px;
		padding: 10px;
		color: #000;
		text-decoration: none;
		text-transform: uppercase;
		cursor: pointer;
	}
	nav.mobile ul li a:hover {
		background:rgba(45,45,45,0.5); 
		color: #fff; 
	}

	/* 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;
		color: #fff;
		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: #fff;
		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 {
		border-top: 1px solid #3d3d3d;
		display: flex;
		gap:20px;
		justify-content: center;
		align-items: center;
		padding: 10px;
		box-sizing: border-box;
	}
	.nav-footer a {
		font-size: 22px;
		padding:5px;
		color:#2eda2a;
	}
	.cta-btn-cont h2 {
		font-size: clamp(16px, 4vw, 24px);
		border-bottom: 4px solid #2eda2a;
		width: 100%;
		border-right: 0px;
		padding-bottom: 10px;
	}
	.cta-btn-cont a {
  		width: 25%;
	}
	.promo-slide-info {
		width: 100%;
		order:2;
	}
	.promo-slide-image {
		width: 100%;
		order:1;
	}
	.container-inv {
		padding:20px;
	}
	.col-1-2 {
		width: 100%;
	}
	.content-box-links {
	  width:100%;
	}
	.content-box-links::after {
		background: #2eda2a;
		top: auto;
		bottom:100%;
		right:0;
		height: 30%;
		width:100%;
		clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
	}
	.brand-btn-cont {
		flex-wrap: wrap;
	}

}
@media screen and (max-width: 700px) {
	.wrap-cta {
		padding:20px 0 160px 0;
	}
	.wrap-cta .container-sml {
		top:0;
	}
	.cta-btn-cont a {
  		width: 50%;
	}
	.cta-search-desktop {
		display: none;
	}
	.cta-search-mob {
		display: block;
		width: 100%;
	}
	.cta-big-btn {
	  width: 30%;
	}
	.cta-big-btn:hover {
	  width:29.5%;
	}
	.cta-big-btn i {
	  font-size: clamp(30px, 12vw, 70px);
	}
	.cta-big-btn span {
	  font-size:clamp(16px, 3vw, 22px);
	}
	.cta-right {
		width: 64%;
	}
	.promo-slider .slick-dots {
		display: none!important;
	}
	.promo-slider {
		flex-wrap: nowrap;
		z-index: 2;
	}
	.promo-slider .slick-arrow {
		display: block!important;
	}
	.btn-black-slider {
		position: relative;
		height:auto;
		padding:20px;
		box-sizing: border-box;
		width:100%;
		bottom: 0;
    	left: 0;
		margin-top: 30px;
	}
	.btn-black-slider:before {
		width:100%;
		height:40px;
		background:#2eda2a;
		clip-path: polygon(50% 0%,0% 100%,100% 100%);
		right: 0;
		top: auto;
		bottom:100%;
	}
	.btn-black-slider:hover {
		width: 100%;
		padding:25px 20px;
	}
	.wrap-home-brands .container-lg a {
		width: calc(33.33% - 14px);
	}
	.wrap-home-brands .container-lg a:first-of-type {
		width: calc(32.33% - 14px);
		margin-right: 1%;
	}
	.wrap-home-brands .container-lg a:first-of-type:hover {
		width: calc(33.33% - 14px);
		margin-right: 0%;
	}
	.wrap-home-about {
	  padding:60px 0 0 0;
	}
	.foot-logo {
		margin:0 auto;
	}
	.foot-nav {
		display: none;
	}
	.promo-details {
		width: 100%;
	}
	.wrap-brand-promotions ul li li img {
		width:100%;
	}
	.brand-header-overlay {
		flex-direction: column;
	}
	.brand-header-overlay h1 {
		text-align: center;
		border-left: 0px;
		padding-left:0;
		border-top: 2px solid #000;
		padding-top: 10px;
	}
	
}
@media screen and (max-width: 540px) {
	h1 {
		font-size: 26px;
	}

	h2 {
		font-size: 24px;
	}

	h3 {
		font-size: 22px;
	}

	h4 {
		font-size: 18px;
	}

	h5 {
		font-size: 16px;
	}
	p {
		font-size: 16px;
	}
	.wrap-home-brands .container-lg a {
		width:calc(50% - 10px);
		height: 125px;
	}
	.wrap-home-brands .container-lg a:first-of-type {
		width: 100%;
		margin-right: 0;
		margin-bottom: 5px;
	}
	.wrap-home-brands .container-lg a:first-of-type::after {
		top:100%;
		left:0;
		height:30%;
		width:100%;
		clip-path: polygon(0% 0%,50% 99%,100% 0%);
	}
	.wrap-home-brands .container-lg a:first-of-type:hover {
		width: 100%;
		margin-right: 0%;
		height: 130px;
		box-sizing: border-box;
	}
	.contact-bar-info {
		width: 100%;
	}
	.box-link-cont {
  		width: calc(50% - 10px);
	}
	.brand-cont-1 {
		width:100%;
	}
	.btn-white, .btn-black {
		padding:10px;
		font-size: 16px;
	}
	
}


