﻿/*===================== 
	Color information
	
	-
	-Orange #e45826
	Tan #e6d5b8
	Light Grey #f0f0f0
	-
	-
		 
=======================*/
/*===================== 
	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: "Open Sans", sans-serif;
	margin: 0;
	padding: 0;
}

svg:not(:root) {
	overflow: hidden;
	/*reset*/
}

.clear {
	clear: both;
}

img {
	border: 0;
}

/*===================== 
	typography 
=======================*/

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
	padding: 0;
}

h1 {
	font-size: 30px;
	font-weight: 700;
}

h2 {
	font-size: 28px;
	font-weight: 700;
}

h3 {
	font-size: 24px;
	font-weight: 700;
}

h4 {
	font-size: 20px;
	font-weight: 700;
}

h5 {
	font-size: 18px;
	font-weight: 700;
}

h6 {}

p {
	font-size: 18px;
	margin: 0;
}

.bold {
	font-weight: bold;
}

/*===================== 
	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;
}
.butn-orange {
	background:#e45826;
	color:#fff!important;
	display: inline-block;
	padding:20px;
	border-radius: 15px;
	font-size: 18px;
	font-weight: 400;
	text-align:center;
	margin:10px 0;
    transition: .2s ease-in;
	border:0px;
	outline: none;
	cursor: pointer;
}
.butn-orange:hover {
	color:#e45826!important;
	background:#000;
}
.butn-black {
	background:#000;
	color:#fff!important;
	display: inline-block;
	padding:20px;
	border-radius: 15px;
	font-size: 18px;
	font-weight: 400;
	text-align:center;
	margin:10px 0;
    transition: .2s ease-in;
	border:0px;
	outline: none;
	cursor: pointer;
}
.butn-black:hover {
	color:#000!important;
	background:#f0f0f0;
}
.text-link-orange {
	font-weight: 600;
	color:#cc4919!important;
	transition: .2s ease-in;
	background: none;
	border: 0;
	padding: 0;
	margin: 0;
	cursor: pointer;
	text-align: inherit;
	font-size:18px; 
}
.text-link-orange:hover {
	opacity: 0.7;
}
.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;
	font-size:18px; 
}
.text-link-orablacknge:hover {
	opacity: 0.7;
}
.btn-cont-1 {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	gap:10px 20px;
	justify-content: center;
}
.btn-cont-2 {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	gap:10px 20px;
}

/*===================== 
	header styles 
=======================*/

.top-head {
	width: 100%;
	background:#e45826;
}
.top-head .container-1 {
	display: flex;
	justify-content: flex-end;
	padding:5px 20px;
}
.top-head .container-1 ul {
	display: flex;
	gap:0 10px;
	padding:0;
	margin:0;
}
.top-head .container-1 ul li {
	padding:0;
	margin:0;
	list-style: none;
	color:#fff;
	font-size: 14px;
	font-weight: 500;
}
.top-head .container-1 ul li a {
	font-family: "Open Sans", sans-serif;
	font-size:16px;
	transition: .2s ease-in;
	color:#fff;
}
.top-head .container-1 ul li span {
	display: inline-block;
	padding:0 8px;
	border-left: 1px solid #fff;
	font-style: italic;
}
.top-head .container-1 ul li a:hover {
	opacity: 0.7;
}
.header-wrap {
	width: 100%;
	margin: 0;
	position: fixed;
	z-index: 100;
	top:70px;
	transition: .2s ease-in;
	padding:0 20px;
	box-sizing: border-box;
}
.header-wrap.stick {
	top:5px;
}
.header-wrap.stick header {
	top:10px;
	padding: 5px 40px 5px 0;
}
.header-wrap.stick .head-logo-1 {
	max-width: 70px;
}
header {
	margin: 0 auto;
	width: 100%;
	max-width: 1800px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding:20px 40px 20px 0;
	box-sizing: border-box;
	position: relative;
}
header:after {
	content: "";
	display: block;
	position: absolute;
	right:0;
	top:0;
	width: calc(100% - 20px);
	height: 100%;
	z-index: 1;
	border-radius: 100px;
	background:#fff;
	box-shadow: 0 0 8px 1px rgba(0,0,0,0.1);
}
.head-logo-1 {
	width: 100%;
	max-width: 175px;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: .2s ease-in;
}
.head-logo-1 img {
	width: 100%;
	height: auto;
	display: block;
	position: absolute;
	left:0;
	filter: drop-shadow(5px 6px 4px rgba(0,0,0,0.6));
	margin-bottom: 15%;
}
.head-left {
	display: flex;
	align-items: center;
	position: relative;
	z-index: 2;
	flex-grow: 1;
}
.head-right {
	display: flex;
	align-items: center;
	position: relative;
	z-index: 2;
	gap:40px;
}
.head-social {
	padding:5px 10px;
	background: #000;
	border-radius: 30px;
	display: flex;
	gap:5px;
	margin:0;
}
.head-social li {
	padding:0;
	margin:0;
	list-style: none;
}
.head-social li a {
	transition: .2s ease-in;
	font-size:16px;;
	color:#fff;
}
.head-social li a:hover {
	opacity: 0.7;
}
.head-search-cont {
	position: relative;
}
.search-btn {
	color:#e45826;
	cursor: pointer;
	transition: .2s ease-in;
	font-size:30px;
}
.search-btn:hover {
	color:#000;
}
.head-search {
	position: absolute;
	top:calc(100% + 10px);
	right:0;
	display: none;
	width:85vw;
	max-width: 500px;
}

.search-form-1 form {
	width: 100%;
	background:#fff;
	z-index: 1;
	border-radius: 100px;
	box-shadow: 0 0 8px 1px rgba(0,0,0,0.1);
	display: flex;
	padding:15px 20px;
	box-sizing: border-box;
}
.head-search.search-form-1 form {
	background:#000;
	box-shadow: 0 0 8px 1px rgba(0,0,0,0.0);
	border: 1px solid #fff;
}
.search-form-1 form input {
	font-family: "Open Sans", sans-serif;
	font-size:18px!important;
	box-sizing: border-box;
	flex-grow: 1;
	background:none!important;
	outline: none!important;
	border:0px!important;
	padding:0!important;
	line-height: normal!important;
	height: auto!important;
	border-radius: 0px!important;
}
.head-search.search-form-1 form input::placeholder {
	opacity: 1!important;
	color:#fff;
}
.head-search.search-form-1 form input {
	color:#fff;
}
.search-form-1 form button {
	font-size:30px;
	color:#e45826;
	background:none;
	outline: none;
	border:0px;
	cursor: pointer;
	padding:0;
}
.head-search .search-form-1 form button {
	font-size: 20px;
}

/*===================== 
	nav styles 
=======================*/

#menu-button {
	display: none;
}

nav.mobile {
	display: none;
}



nav.primary {
	padding:0 20px 0 60px;
	display: block;
	margin: 0;
	position: relative;
}

nav.primary ul {
	margin: 0 auto;
	padding: 0;
	display: flex;
}

nav.primary ul li {
	display: inline-block;
	margin: 0;
	gap:0 10px;
	list-style-type: none;
}

nav.primary ul li a {
	font-family: "Open Sans", 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: 700;
	cursor: pointer;
	white-space: nowrap;
	border-radius: 10px;
}

nav.primary ul li a:hover {
	background: #e6d5b8;
}
nav.primary ul li:hover a {
	background: #e6d5b8;
}

/* Appearance of the sub-level links */
nav.primary ul li li a {
	background: #e6d5b8;
	display: block;
	text-align: left;
	padding:15px 20px;
	border-radius: 0;
}
nav.primary ul li li:last-of-type a {
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
}

/* Appearance of the sub-level links on hover */
nav.primary ul li li a:hover {
	background:#e45826!important;
	color:#fff!important;
}
/* 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;
	float: none;
	width: auto;
	position: relative;
	margin: 0;
}

/*===================== 
	content styles 
=======================*/

.wrap-hero {
	width: 100%;
	position: relative;
	background:#000;
	overflow: hidden;
}
.wrap-hero img {
	width: 100%;
	height: 100%;
	position: absolute;
	display: block;
	z-index: 1;
	left:0;
	top:0;
	object-fit: cover;
	object-position: center;
	opacity: 0.75;
}
.wrap-hero video {
	position: absolute;
	z-index: 2;
	min-width: 100%;
	min-height: 100% !important;
	top: 50%;
	left: 50%;
	transform: translateX(-50%) translateY(-50%);
}
.wrap-hero .container-1 {
	height: 45vw;
	min-height: 400px;
	max-height: calc(100vh - 200px);
	position: relative;
	z-index: 3;
	display: flex;
	align-items: center;
	padding: 50px 20px;
}
.wrap-hero .container-1 h1 {
	font-size: clamp(28px, 5.7vw, 60px);
	font-weight:800;
	color:#fff;
	text-shadow: 0 0 14px rgba(0,0,0,0.9);
	text-transform: uppercase;
	line-height: 1.2;
}
.wrap-hero .container-1 h1 span {
	font-size: clamp(20px, 4vw, 45px);
	display: block;
}

.wrap-cta {
	width: 100%;
	background:#f0f0f0;
}
.wrap-cta .container-1 {
	position: relative;
	z-index: 2;
	top:-50px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap:15px 0;
}
.wrap-cta .container-1 a {
	width: 37%;
	padding:15px;
	border-radius: 40px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: #e6d5b8;
	transition: .2s ease-in;
	box-sizing: border-box;
}
.wrap-cta .container-1 a h2 {
	font-family: "Open Sans", sans-serif;
	font-size: clamp(22px, 2.0vw, 30px);
	font-weight:800;
	color:#000;
	line-height: 1.2;
	padding-left: 10px;
	transition: .2s ease-in;
}
.wrap-cta .container-1 a h2 span {
	font-family: "Lobster Two", sans-serif;
	font-size: clamp(18px, 1.8vw, 24px);
	font-weight:700;
	color:#d14b1a;
	display: block;
	transition: .2s ease-in;
}
.cta-ico {
	font-size: 30px;
	height: 100px;
	width: 100px;
	border-radius:31.5px;
	background: #fff;
	box-shadow: 0 0 5px 1px rgba(0,0,0,0.1);
	display: flex;
	justify-content: center;
	align-items: center;
	color:#e45826;
	transition: .2s ease-in;
}
.wrap-cta .container-1 a:last-of-type {
	width:23%;
	background: #e45826;
	padding:30px;
}
.wrap-cta .container-1 a:last-of-type h2 {
	padding-left: 0px;
	color:#fff;
}
.wrap-cta .container-1 a:last-of-type i {
	color:#fff;
	font-size: 30px;
}
.wrap-cta .container-1 a:hover {
	background:#000!important;
}
.wrap-cta .container-1 a:hover h2 {
	color:#e45826;
}
.wrap-cta .container-1 a:hover h2 span {
	color:#fff;
}
.wrap-cta .container-1 a:hover .cta-ico {
	background:#e45826;
	color:#fff;
}
.wrap-truck-cat {
	width: 100%;
	background:#f0f0f0;
	padding-bottom:100px;
}
.wrap-truck-cat .container-1 {
	gap:30px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
.cat-form {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	gap:20px 0;
	padding-bottom: 30px;
}
.cat-form h2 {
	font-family: "Open Sans", sans-serif;
	color:#e45826;
	font-size: clamp(24px, 2vw, 30px);
	text-align: center;
}
.cat-form form {
	width: calc(100% - 380px);
}
.wrap-truck-cat .container-1 a {
	width: calc(16.66% - 25px);
	background: #fff;
	padding: 20px;
	box-sizing: border-box;
	border-radius: 31px;
	box-shadow: 0 0 8px 2px rgba(0,0,0,0.1);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
	transition: .2s ease-in;
	border: 1px solid #fff;
}
.wrap-truck-cat .container-1 a img {
	width: 100%;
	max-width: 175px;
	height: auto;
	display: block;
	transition: .2s ease-in;
}
.wrap-truck-cat .container-1 a h3 {
	color:#000;
	font-size:18px;
	font-weight:500;
	text-align: center;
	transition: .2s ease-in;
}
.wrap-truck-cat .container-1 a:hover {
	box-shadow: 0 0 8px 2px rgba(0,0,0,0.0);
	border: 1px solid #e45826;
}
.wrap-truck-cat .container-1 a:hover img {
	filter: brightness(0) saturate(100%) invert(38%) sepia(87%) saturate(1000%) hue-rotate(344deg) brightness(93%) contrast(92%);
}
.wrap-truck-cat .container-1 a:hover h3 {
	color:#e45826;
}


.home-review-cont {
	width: 100%;
	background:#e6d5b8;
	padding: 60px 0;
}
.home-review-cont .container-1 {
	position: relative;
	z-index: 3;
}
.home-review-cont .slick-track {
	display: flex;
	align-items: stretch;
	gap:20px;
}
.review-slider-1 {
	padding:40px 0;
}
.review-slider-1 .slick-track:before, .review-slider-1 .slick-track:after {
	display: none;
}
.review-cont-1 {
	background:#fff;
	padding:10px;
	box-sizing: border-box;
	display: flex!important;
	flex-direction: column;
	gap:20px;
	justify-content: space-between;
	height: auto !important;
}
.review-cont-1 img {
	width: 100%;
	max-width: 20px;
	display: block;
}
.review-stars {
	display: flex;
	justify-content: center;
	gap:2px;
	font-size: 12px;
	color:#ff8000;
	padding-bottom:20px;
}
.review-cont-1 .lg-text {
	font-size: 14px;
	text-align: left;
}
.review-cont-1 .sml-text {
	font-size: 16px;
	font-weight: 600;
}
.home-review-cont .text-link-black {
	font-size: 20px;
}


.wrap-home-about {
	width: 100%;
	display: flex;
	align-items: flex-start;
	flex-wrap: wrap;
}
.home-about-img {
	width: 50%;
	position: relative;
	overflow: hidden;
	height: 60vw;
	margin-bottom: -250px;
	max-height: 1100px;
}
.home-about-img img {
	position: relative;
	width: 70vw;
	height: auto;
	right: 45%;
	display: block;
	border-radius: 100%;
	top: -10vw;
	max-width: 1200px;
}
.about-info {
	width: 50%;
	position: relative;
    z-index: 1;
}
.about-info-cont-1 {
	width: 100%;
	max-width: 900px;
	padding:40px 20px;
	box-sizing: border-box;
}
.about-info-cont-1 h2 {
	color:#e45826;
	font-family: "Lobster Two", sans-serif;
	text-align: center;
	font-size:50px;
	font-weight:600;
	line-height: 1.2;
}
.about-info-cont-1 h2 span {
	color:#000;
	font-family: "Open Sans", sans-serif;
	font-size:22px;
	font-weight:500;
	display: block;
}
.about-info-cont-1 p {
	padding:30px 0;
	line-height: 1.2;
}
.wrap-content {
	width: 100%;
	background: #f0f0f0;
	padding:200px 20px 100px 20px;
	box-sizing: border-box;
}
.wrap-content .container-1 {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	padding:60px 40px;
}
.wrap-content .container-1.full-bg-content:after {
	width: 100%;
	height: 100%;
}

.wrap-content .container-1:after {
	content: "";
	height:100%;
	width: 80%;
	border-radius: 31px;
	background:#fff;
	box-shadow: 0 0 8px 2px rgba(0,0,0,0.1);
	position: absolute;
	left:0;
	bottom:0;
	display: block;
}
.content-info-cont-1 h1, .content-contact-info-cont-1 h1 {
	color: #e45826;
	font-family: "Lobster Two", sans-serif;
	font-size: 35px;
	font-weight: 600;
	line-height: 1.2;
	padding-bottom: 20px;
	display: block;
}
.content-info-cont-1 {
	width: 55%;
	position: relative;
	z-index: 2;
}
.content-contact-info-cont-1 {
	width: 39%;
	position: relative;
  	z-index: 22;
}
.content-contact-info-cont-1 ul {
	padding:20px 0;
	margin:0;
}
.content-contact-info-cont-1 ul li {
	padding:2px 0;
	margin:0;
	font-size: 18px;
	list-style: none;
}
.content-contact-info-cont-1 ul li .c-info-head {
	font-size: 24px;
	color: #e45826;
	font-weight: 700;
}
.content-contact-info-cont-1 ul li a {
	font-weight: 600;
}
.content-map-cont-1 {
	width:59%;
	position: relative;
	z-index: 2;
}
.content-map-cont-1 iframe {
	width: 100%;
	height: 100%;
	min-height: 350px;
}
.content-img-cont-1 {
	width: 45%;
	position: relative;
	z-index: 2;
	display: flex;
	justify-content: center;
	align-items: center;
}
.content-img-cont-1 img {
	width: auto;
	max-width: 100%;
	height: auto;
	border-radius: 100%;
	overflow: hidden;
	display: block;
	position: absolute;
	right: -50px;
}
.content-img-cont-2 {
	width: 45%;
	position: relative;
	z-index: 2;
	display: flex;
	justify-content: center;
	align-items: center;
}
.content-img-cont-2 img {
	width: auto;
	max-width: 100%;
	height: auto;
	border-radius: 80px;
	overflow: hidden;
	display: block;
	position: absolute;
	right: -50px;
}



/*  SCROLLING INVENTORY
------------------------------------------------*/
.scrolling-wrap {
    width:100%;
    height:90px;
    overflow:hidden;
	padding:20px 0;
}
 
.scrolling{
    width:100%;
    height:92px;
}


.foot-img {
	width: 100%;
}
.foot-img img {
	width: 100%;
	height: auto;
	min-height: 250px;
	object-fit: cover;
	object-position: center;
	display: block;
}
.wrap-content-info {
	width: 100%;
	padding:80px 0;
}
.staff-wrap-1 {
	display: flex;
	flex-wrap: wrap;
	gap:30px;
}
.staff-wrap-1 h2 {
	text-align: center;
	padding-bottom: 30px;
	width: 100%;
}
.staff-cont-1 {
	width: calc(25% - 25px);
	background: #fff;
	padding: 20px;
	box-sizing: border-box;
	border-radius: 31px;
	box-shadow: 0 0 8px 2px rgba(0,0,0,0.1);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	gap: 10px;
}
.staff-cont-1 img {
	width:100%;
	max-width: 250px;
	margin:0 auto;
	display: block;
}
.staff-cont-1 h3 {
	font-size:20px;
}
.staff-cont-1 p {
	font-size:16px;
	color:#e45826;
}
.staff-cont-1 ul {
	padding:0;
	margin:0;
}
.staff-cont-1 ul li {
	padding:2px 0;
	margin:0;
	list-style: none;
}
.staff-cont-1 ul li a {
	font-size:16px;
	color:#000;
	font-weight: 600;
	transition: .2s ease-in;
}
.staff-cont-1 ul li a:hover {
	color:#e45826;
}


/*===================== 
	slideshow styles 
=======================*/



/*===================== 
	Form styles 
=======================*/

/* Containers */

.custom-form {
	padding:60px 40px;
	box-sizing: border-box;
	width: 100%;
	max-width:1100px;
	background:#e6d5b8;
	border-radius: 40px;
	margin:0 auto;
}
.form-info-cont {
	width: 100%;
	box-sizing: border-box;
}
.form-info-cont h2 {
	padding-bottom: 20px;
	text-transform: uppercase;
}
.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;
	background:#fff;
	border-radius:15px;
    color:#000; 
	box-shadow: 0 0 5px 1px rgba(0,0,0,0.1);
	font-family: "Open Sans", 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: 16px!important;
    font-weight: 400!important;
    padding:15px!important;
    box-sizing: border-box;
    color:#000; 
    position: relative;
    z-index: 2;
    cursor: pointer;
}
.select-cont i {
    position: absolute;
    z-index: 1;
    right:0px;
}

.form-info-checkbox input[type="checkbox"] {
	padding: 5px 0 5px 5px;
	margin:  0 0 15px 0;
	box-sizing: border-box;
}
.form-info-cont textarea {
	width: 100%;
	display: block;
	padding: 15px;
	font-size: 16px;
	min-height: 120px;
	box-sizing: border-box;
	margin:  0 0 15px 0;
    outline:none;
    border:0px;
	background:#fff;
	border-radius:15px;
    color:#000; 
	box-shadow: 0 0 5px 1px rgba(0,0,0,0.1);
	font-family: "Open Sans", sans-serif;
}
.form-info-cont button {
	display: block;
	margin:0 auto;
}

.CaptchaImage {
  max-width: 100%;
}
.CaptchaWhatsThisPanel input {
    margin:0 auto;
}

.CaptchaWhatsThisPanel a {color:#000;}
.CaptchaWhatsThisPanel a:hover {text-decoration:underline;} 


/*===================== 
	layout styles 
=======================*/

.wrap {
	width: 100%;
	margin: 0;
}


.container-1 {
	width: 100%;
	max-width: 1800px;
	margin: 0 auto;
	padding: 20px;
	box-sizing: border-box;
}

.container-inv {
	padding:160px 10px 40px 10px;
	box-sizing: border-box;
}

.flex-cont-1 {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}
.col-1 {
	width: 100%!important;
}
.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-2-3 {
	width: 65.66%;
	box-sizing: border-box;
}

.col-3-4 {
	width: 75%;
	box-sizing: border-box;
}

/*===================== 
	footer styles 
=======================*/

footer {
	margin: 0;
	width: 100%;
	background: #000;
	border-top:50px solid #e45826;
}
footer .container-1 {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}
.foot-nav {
	display: flex;
	gap:0 calc(20px + 5vw);
}
.foot-nav-col-1 p {
	color:#e45826;
	font-family: "Lobster Two", sans-serif;
	font-size:30px;
	font-weight:600;
	padding-bottom: 10px;
}
.foot-nav-col-1 ul {
	padding:0;
	margin:0;
}
.foot-nav-col-1 ul li {
	padding:2px 0;
	margin:0;
	list-style: none;
}
.foot-nav-col-1 ul li a {
	font-family: "Open Sans", sans-serif;
	color:#fff;
	font-weight:400;
	font-size:16px;
	transition: .2s ease-in;
}
.foot-nav-col-1 ul li a:hover {
	opacity: 0.7;
}
.foot-logo {
	width: 100%;
	max-width: 250px;
	padding:40px 0;
}
.foot-logo img {
	width: 100%;
	height: auto;
	display: block;
	margin-bottom: 30px;
}
.foot-logo ul {
	padding:0;
	margin:0;
	display: flex;
	justify-content: center;
	gap:10px;
	flex-wrap: wrap;
}
.foot-logo ul li {
	padding:0;
	margin:0;
	list-style: none;
}
.foot-logo ul li a {
	color:#e45826;
	font-size:16px;
	transition: .2s ease-in;
}
.foot-logo ul li a:hover {
	color:#fff;
}
.foot-bottom {
	border-top: 2px solid #393939;
	width:100%;	
}
.foot-bottom .container-1 {
	padding:30px 20px;
}
.foot-bottom .container-1 p {
	font-family: "Open Sans", sans-serif;
	color:#fff;
	font-size:14px;
	font-weight:400;
}
.foot-bottom .container-1 p a {
	color: #fff;
	transition: .2s ease-in;	
}

.foot-bottom .container-1 p a:hover {
	opacity: 0.7;	
}

/*========================== 
	  Responsive styles 
============================*/

@media screen and (max-width: 1340px) {
	
	.staff-cont-1 {
		width: calc(33.33% - 25px);
	}
}
@media screen and (max-width: 1200px) {
	nav.primary ul li a {
		font-size: 1.4vw;
	}
	.top-head .container-1 ul li a {
  		font-size: 14px;
	}
	.wrap-truck-cat .container-1 a {
  		width: calc(20% - 25px);
	}
}
@media screen and (max-width: 970px) {
	.wrap-cta .container-1 a {
		width: 100%!important;
		border-radius: 27px;
	}
	.cta-ico {
		font-size: 20px;
		height: 70px;
		width: 70px;
		border-radius: 20px;
	}
	.home-about-img {
		width: 100%;
		height: auto;
		margin-bottom:-100px;
	}
	.home-about-img img {
	  width: 80vw;
	  right: 13%;
	  top: -15vw;
	}
	.about-info {
		width: 100%;
	}
	.about-info-cont-1 {
		max-width: 100%;
	}
	.staff-cont-1 {
		width: calc(50% - 25px);
	}
	.wrap-content {
		padding: 100px 20px 100px 20px;
	}
	.wrap-content .container-1::after {
		width: 100%;
		height: 90%;
	}
	.content-info-cont-1 {
		width: 100%;
		order:2;
	}
	.content-img-cont-1 {
		width: 100%;
		order: 1;
		align-items: flex-end;
		height: 41vw;
		margin-bottom: -30px;
	}
	.content-img-cont-1 img {
		max-width: 60%;
		right: -20px;
	}
	.content-img-cont-2 {
		width: 100%;
		order: 1;
		align-items: flex-end;
		height: 41vw;
		margin-bottom: 20px;
    	overflow: hidden;
	}
	.content-img-cont-2 img {
		max-width: 100%;
		right: 0;
		height: 100%;
		width: 100%;
		border-radius: 20px;
		object-fit: cover;
    	object-position: center 75%;
	}
	
}
@media screen and (max-width: 900px) {
	
	header {
		padding: 10px 20px 10px 0;
	}
	.head-logo-1 {
		max-width: 125px;
	}
	.head-social {
		display: none;
	}
	.head-right {
		gap: 10px;
	}
	.search-btn {
		font-size: 25px;
	}

	.head-search {
		top: calc(100% + 20px);
		right: -59px;
	}
	
	/*==============================
		Mobile Nav Styles			
	================================*/


	nav.primary {
		display: none;
	}

	#menu-button {
		display: block;
	}

	#menu-button a {
		color: #000;
		font-size: 25px;
		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 SOCIAL MEDIA */
	nav.mobile .social-media {
		position: relative;
		text-decoration: none;
		display: inline-block;
		font-size: 16px;
		word-spacing: 13px;
		padding: 0 0 0 15px;
		color:#e45826 !important;
	}

	nav.mobile .social-media a:link,
	nav.mobile .social-media a:visited {
		color:#e45826;
		text-decoration: none;
	}

	nav.mobile .social-media a:hover,
	nav.mobile .social-media a:active {
		color: #fff;
		text-decoration: underline;
	}

	/* MENU HEADER STYLES */
	nav.mobile .mobile_top {
		position: relative;
		display: block;
		padding: 0;
		margin: 15px 0 10px 0;
		color: #999;
		font-size: 18px;
		font-weight: 400;
	}

	/* MENU CLOSE 'X' BUTTON */
	nav.mobile .menu-toggle {
		position: absolute;
		padding: 3px 8px 3px;
		font-family: Arial, sans-serif;
		font-size: 24px;
		font-weight: bold;
		line-height: 1;
		background: #222;
		color: #fff;
		text-decoration: none;
		top: -4px;
		right: 13px;
		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: "Open Sans", sans-serif;
		position: relative;
		font-size: 16px;
		padding: 10px;
		font-weight: 600;
		color: #fff;
		text-decoration: none;
		border-left: 4px #000 solid;
		cursor: pointer;
		display: flex;
		justify-content: space-between;
		text-transform: uppercase;
	}

	nav.mobile ul li a:hover {
		background: rgba(45, 45, 45, 0.5);
		color: #fff;
		border-left: 4px #e45826 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: #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 {
		color: #e45826;
		position: relative;
		text-align: center;
		font-size: 14px;
		padding: 15px 0;
	}
	.nav-footer a {
		text-align: center;
	}
	.wrap-truck-cat .container-1 a {
  		width: calc(25% - 25px);
	}
	.cat-form {
		justify-content:center;
	}
	.cat-form form {
		width: 100%;
	}
	footer .container-1 {
		justify-content: center;
	}
	.foot-nav {
		display: none;
	}
	.foot-logo {
		margin: 0 auto;
	}
	.container-inv {
		padding: 130px 10px 40px 10px;
	}
	.content-contact-info-cont-1, .content-map-cont-1 {
  		width: 100%;
	}
	.content-contact-info-cont-1 {
		padding-bottom: 20px;
	}
	.wrap-content .container-1 {
		padding:40px 10px;
		margin-top: 30px;
	}

}
@media screen and (max-width: 700px) {
	.wrap-hero video {
		display: none;
	}
	.top-head .container-1 ul {
		display: none;
	}
	.search-form-1 form input {
  		font-size: 14px!important;
	}
	.header-wrap {
		top: 50px;
	}
	.wrap-hero .container-1 {
		justify-content: center;
	}
	.wrap-hero .container-1 h1 {
		text-align: center;
	}
	.wrap-truck-cat .container-1 a {
  		width: calc(33.33% - 25px);
	}
	.staff-cont-1 h3 {
	  font-size:16px;
	}
	.staff-cont-1 p, .staff-cont-1 ul li a {
	  font-size: 14px;
	}
}
@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: 15px;
	}
	.content-info-cont-1 h1, .content-contact-info-cont-1 h1 {
		font-size: 30px;
	}
	.wrap-truck-cat .container-1 {
		gap: 15px;
	}
	.wrap-truck-cat .container-1 a {
  		width: calc(33.33% - 10px);
		gap:0;
	}
	.wrap-truck-cat .container-1 a h3 {
		font-size: 14px;
	}
	.wrap-cta .container-1 {
		padding:0 20px;	
	}
	.about-info-cont-1 h2 {
		font-size:30px;
	}
	.about-info-cont-1 h2 span {
		font-size:16px;
	}
	.text-link-orange {
		font-size: 16px;
	}
	.staff-cont-1 {
		width:100%;
	}
	.butn-orange, .butn-black {
		padding: 10px;
		border-radius: 10px;
		font-size: 16px;
	}
	.content-contact-info-cont-1 ul li .c-info-head {
		font-size: 20px;
	}
	.content-contact-info-cont-1 ul li {
  		font-size: 16px;
	}
	
	
}


