﻿/***** BEGIN RESET *****/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	background: transparent;
	border: 0;
	margin: 0;
	padding: 0;	
}

ol, ul {
	list-style: none;
}

table{border-collapse:collapse; width:100%;}
td{vertical-align:top;}

/* Make HTML 5 elements display block-level for consistent styling */  
header, nav, article, footer, address {  
    display: block;  
} 

/*-------- COLORS --------

	COLOR:  #XXXXXX
*/

:root {
		
	--orange: #FE6B2B;
	--blue: #1A4589;
	
	--gray1: #EEE;
	--gray2: #666;
}

/***** END RESET *****/
::-moz-selection {
    background: #000; 
    color: #fff;
    text-shadow: none;
}
::selection {
    background: #000;
    color: #fff;
    text-shadow: none;
}


/* Clearfix */
.cf:before,
.cf:after {
    content: " ";
    display: table;
}
.cf:after {
    clear: both;
}
.cf {
    *zoom: 1;
}

/*-------- BODY STYLES --------*/

* {box-sizing: border-box;}

body {
}

.wid-90 {width: 90%; margin: 0 auto; max-width: 1800px;}

.padit {padding: 70px 0;}
.xtra-pad {padding: 35px 0;}
.header-pad {padding: 100px 0;}

.logo {max-width: 220px;}

.logo img {width: 100%; display: block; padding: 8px 0;}

.flex {display: flex;}

.flex-1 {
	width: 100%;
}

.flex-2 {
	width: 50%;
}

.flex-1 .wid-90, .flex-2 .wid-90 {
	width: 80%; max-width: 900px;
}

.mobile-only {display: none;}

.white-body {background-color: #fff;}
.gray-body {background-color: var(--gray1);}

.top-radius {
	border-radius: 70px 70px 0 0;
	margin-top: -70px;
	position: relative;
}

.bottom-radius {border-radius: 0 0 70px 70px;}

/*------------- TEXT STYLES AND BUTTONS -------------*/

.white{color: #fff;}
.blue {color: var(--blue);}

.upper {text-transform: uppercase;}

a:link, a:visited, a:active {text-decoration:none; font-family: "Roboto", sans-serif; }
a:hover {text-decoration:none;}

a.white:hover {
	color: var(--orange);
}

h1, h2, h3, h4, h5, h6 { font-family: "Epunda Slab", serif; }

p, li {
	font-family: "Roboto", sans-serif;
}

.body-text {
	line-height: 2;
}

ul.bullets {
	margin-left: 30px;
	line-height: 2;
}

ul.bullets li {
	list-style: disc;
}

ul.icon-bullets {
	margin-left: 20px;
}

ul.icon-bullets li {
	position: relative;
}

ul.icon-bullets li i {
	position: absolute;
	right: 100%;
	line-height: 2;
}

.sm-heading {
	font-family: "Roboto", sans-serif;
	font-size: 18px;
	font-weight: 800;
	letter-spacing: 1.25px;
	text-transform: uppercase;
}

.heading {
	font-size: 40px;
	font-weight: 800;
	line-height: 1;
	text-transform: uppercase;
}


/*  BUTTONS  */

.orange-btn {
	padding: 15px 50px;
	background: var(--orange);
	color: #000;
	font-family: "Epunda Slab", serif;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	border: 2px solid var(--orange);
	border-radius: 25px;
	-webkit-transition:.3s ease-in;  
	-moz-transition:.3s ease-in;  
	-o-transition:.3s ease-in;  
	transition:.3s ease-in;
	box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}

.orange-btn:hover  {
	background-color: #fff;
	color: var(--blue);
	border: 2px solid var(--blue);
}

/*--- HEADER STYLES ---------------------*/

header {
	position: relative;
	z-index: 5;
}

.main-header {
	background: #fff;
}

.main-header .flex {
	justify-content: space-between;
	align-items: center;
	gap: 5px;
}

.search-inv p.blue {
	font-family: "Epunda Slab", serif;
	font-weight: 800;
	padding-bottom: 5px;
}

.mobile .search-inv {
	width: 90%;
	margin: 0 auto;
	margin-top: 15px;
}

.search-bar.flex {
	border: 2px solid var(--orange);
	border-radius: 25px;
	max-width: 260px;
	gap: 0;
	align-items: stretch;
}

.search-bar.flex input {
	width: 100% !important;
	padding: 15px 25px !important;
	color: #000 !important;
	border: none !important;
	border-radius: 25px 0 0 25px !important;
	height: unset !important;
    line-height: normal !important;
	font-size: 14px !important;
}

.search-bar.flex input:focus {
	outline: none !important;
}

.search-bar.flex button {
	border: 0;
	border-radius: 0 25px 25px 0;
	background-color: var(--orange);
	width: 50px;
	cursor: pointer;
	transition: .3s ease all;
}

.search-bar.flex button:hover {
	background-color: var(--blue);
	color: #fff;
}


/*---BODY--------------------------------*/

.hero {
	background-color: var(--blue);
	background-image: linear-gradient(90deg, var(--blue), rgba(26, 69, 137, 0.00) 80%), url("../siteart/hero.jpg");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.hero-text {
	padding: 150px 0;
}

.hero-text .heading {
	max-width: 720px;
	font-size: 64px;
}

.hero-text p.body-text {
	padding: 20px 0;
}

.browse {background-color: #fff; position: relative;}

.browse .heading {text-align: center; padding-bottom: 30px;}

.inv-cats.flex {
	border: 1px solid var(--gray2);
	background-color: var(--gray2);
	gap: 1px;
	flex-wrap: wrap;
	max-width: 1150px;
	margin: 0 auto;
	border-radius: 70px;
	overflow: hidden;
	justify-content: center;
}

.inv-cats.flex .cat-card {
	width: calc(25% - 1px);
	display: block;
	background-color: var(--gray1);
	padding: 30px;
	text-align: center;
	transition: .3s ease all;
	color: #000;
}

.inv-cats.flex .cat-card:hover {
	background-color: #fff;
}

.cat-card img {
	display: block;
	width: 100%;
	transform: scale(1);
	transition: .3s ease all;
}

.inv-cats.flex .cat-card:hover img {
	transform: scale(1.2);
}

.cat-card hr {
	border: none;
	width: 75px;
	height: 5px;
	background-color: var(--orange);
	margin: 15px auto;
}

.img-divider {
	background-color: var(--blue);
	background-image: linear-gradient(rgba(26, 69, 137, 0.70) 40%, rgba(254, 107, 43, 0.70) 100%), url("../siteart/dozer-divider.jpg");
	background-size: cover;
	background-position: center;
	height: 490px;
	margin-top: -70px;
}

.about.flex {
	gap: 30px 5%;
}

.about.flex .flex-1 {
	border-radius: 70px;
}

.about.flex .flex-1.gray-body {
	padding: 50px;
	border: 1px solid var(--gray2);
}

.about.flex .heading span {
	color: #000;
	font-size: 32px;
}

.about.flex .flex-1.img-aside img {
	border-radius: 70px;
}

.flex-1.img-aside {
	position: relative;
	min-height: 300px;
}

.flex-1.img-aside img {
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.home-map.flex {
	gap: 30px;
}

.home-map.flex .map{
	position: relative;
	min-height: 300px;
}

.map iframe {
	display: block;
	position: absolute;
	width: 95%;
	height: 100%;
	border-radius: 0 70px 70px 0;
}
.home-map.flex .body-text a {color: #000; transition: .3s ease all;}

.home-map.flex .body-text a:hover {
	color: var(--blue);
}

.page-heading {
	background-color: var(--blue);
	background-image: linear-gradient(rgba(26, 69, 137, 0.70) 40%, rgba(254, 107, 43, 0.70) 100%), url("../siteart/dozer-divider.jpg");
	background-size: cover;
	background-position: center;
	text-align: center;
}

.page-heading h1 {
	font-size: 56px;
}

.page-heading .breadcrumbs {padding-top: 15px; font-size: 16px;}

.page-heading .breadcrumbs a {
	color: #fff;
	transition: .3s ease all;
}

.page-heading .breadcrumbs a:hover {
	font-weight: 600;
}

.heading-btn.flex {
	justify-content: space-between;
	gap: 20px;
	align-items: center;
	flex-wrap: wrap;
}

.map-wrap iframe {
	border-radius: 70px;
}

.about-intro {
	padding: 50px;
	max-width: 1200px;
	border-radius: 70px;
	text-align: center;
}

.services.flex {
	justify-content: space-between;
	gap: 30px 5%;
}

.equipment-aside {
	position: relative;
}

.equipment-aside img {
	display: block;
	width: 100%;
}

.equipment-aside .text-box {
	position: absolute;
	bottom: 0;
	background: #fff;
	border-radius: 30px;
	padding: 20px;
	border: 1px solid var(--gray2);
	box-shadow: 0 4px 4px rgba(0,0,0,0.25);
}

/*--------FORM STYLES--------------------*/

.contact-flex {
	display: flex;
	justify-content: space-around;
}

.form-container {
	margin: 0 auto;
	background-color: #fff;
	border: 1px solid var(--gray2);
	border-radius: 70px;
	max-width: 1000px;
	box-shadow: 0 7px 20px -5px rgba(0,0,0,0.6);
	padding: 50px;
}

.form-box {
	
	margin: 0 auto;
}

.form-box .heading {
	padding: 15px 0;
}

.form-flex {
	display: flex;
	justify-content: center;
	gap: 30px;
	margin: 10px 0;
}

.form-flex label, .form-flex legend {
	font-family: "Epunda Slab", serif;
	font-size: 15px;
	font-weight: 600;
	padding-bottom: 5px;
	display: inline-block;
}

.form-field, .form-flex input, .form-flex select, .form-flex textarea, .form-flex div {
	width: 100%;
}

.form-flex input[type="radio"], .form-flex input[type="checkbox"] {
	width: unset;
}

.form-flex input, .form-flex select, .form-flex textarea {
	background: var(--gray1);
	border: 2px solid var(--gray1);
	color: #2D2D2D;
	font-family: "Roboto", sans-serif;
	font-size: 15px;
	padding: 15px;
	border-radius: 0;
	
}

.form-flex input:focus-visible, .form-flex select:focus-visible, .form-flex textarea:focus-visible {
	outline: none;
	background: #fff;
	border: 2px solid var(--orange);
	border-radius: 25px;
}

textarea {
	height: 150px;
}

.CaptchaPanel {
	font-family: "Outfit", sans-serif;
}

.captcha-button {
	text-align:center;
}

#captcha {
	display: none;
}

/*-------- FOOTER STYLES ----------------*/
footer {
	padding-bottom: 50px;
	background: #0F274C;
}

footer .wid-90.flex {
	justify-content: space-between;
	gap: 40px 20px;
	flex-wrap: wrap;
}

footer h3.sm-heading {
	margin-bottom: 10px;
}

.footer-right ul {
	display: flex;
	gap: 0 35px;
	flex-wrap: wrap;
}

.footer-right ul li a {
	color: #fff;
	line-height: 2;
	-webkit-transition:.3s ease-in;  
	-moz-transition:.3s ease-in;  
	-o-transition:.3s ease-in;  
	transition:.3s ease-in;
}

.footer-right ul li a:hover {
	color: var(--orange);
}

/*----INVENTORY STYLES - KEEP AT BOTTOM OF CSS----*/





/*---------- RESPONSIVE STYLES ----------*/

@media only screen and (max-width: 1300px) {
	
}

@media only screen and (max-width: 1100px) {
	.main-header .search-inv {display: none;}
	
	.about.flex, .services.flex {flex-wrap: wrap;}
}

@media only screen and (max-width: 850px) {
	
	.form-flex {flex-wrap: wrap; gap: 20px; padding: 5px 0;}
	
	.hero-text .heading {font-size: 48px;}
	.heading {font-size: 32px;}
	
	.inv-cats.flex .cat-card {width: calc(50% - 1px);}
}


@media only screen and (max-width: 600px) {
	.top-radius {border-radius: 30px 30px 0 0 ; margin-top: -30px;}
	.bottom-radius {border-radius: 0 0 30px 30px;}
	.xtra-pad {padding: 15px 0;}
	
	.hero-text .heading {font-size: 48px;}
	
	.inv-cats.flex, .about.flex .flex-1, .about.flex .flex-1.img-aside img, .map-wrap iframe {border-radius: 30px;}
	
	.home-map.flex {flex-wrap: wrap;}
	.map iframe {border-radius: 0 30px 30px 0;}
	
	.equipment-aside .text-box {position: static;}
}

@media only screen and (max-width: 500px) {
	.heading, .about.flex .heading span {font-size: 24px;}
	
	.hero-text .heading {font-size: 32px;}
	.hero-text {padding: 70px 0;}
	.hero-text p.body-text  {padding: 10px 0;}
	
	.about.flex .flex-1.gray-body {padding: 30px;}
}

@media only screen and (max-width: 450px) {
/*	make buttons full width*/
	.orange-btn, a:has(.orange-btn) {width: 100%;}
	
	.logo {max-width: 160px;}
	
	.inv-cats.flex .cat-card {width: 100%;}
	.footer-right ul {display: block;}
}






