﻿/***** 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 {
		
	--blue: #0A1499; 
	--light-blue: #7FB1FF; 
	
	--gray: #eee;
}

/***** 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: 1700px;}

.padit {padding: 80px 0;}
.header-pad {padding: 60px 0;}

.logo {max-width: 250px;}

.logo img {width: 100%; display: block; padding: 10px 0;}

.flex {display: flex;}

.flex-1 {
	width: 100%;
}

.flex-2 {
	width: 50%;
}

.flex-1 .wid-90, .flex-2 .wid-90 {
	width: 80%; max-width: 850px;
}

.mobile-only {display: none;}

.gray-body {background-color: #eee;}

/*------------- 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: "Geologica", sans-serif; }
a:hover {text-decoration:none;}

h1, h2, h3, h4, h5, h6 { font-family: "Geologica", sans-serif; }

p, li {
	font-family: "Geologica", sans-serif;
}

p.body-text {
	line-height: 2;
}

ul.bullets {
	margin-left: 30px;
	line-height: 2;
}

ul.bullets li {
	list-style: disc;
}

.sm-heading {
	font-size: 24px;
	font-weight: 700;
}

.heading {
	font-size: 32px;
	font-weight: 700;
	line-height: 1;
}

.sub-heading {
	font-weight: 400;
	font-style: italic;
	font-size: 20px;
}

/*  BUTTONS  */

.gray-btn {
	padding: 15px 45px;
	background: var(--gray);
	color: var(--blue);
	font-family: "Geologica", sans-serif;
	font-size: 16px;
	font-weight: 700;
	cursor: pointer;
	border: none;
	border-radius: 10px;
	-webkit-transition:.3s ease-in;  
	-moz-transition:.3s ease-in;  
	-o-transition:.3s ease-in;  
	transition:.3s ease-in;
	position: relative;
	overflow: hidden;
}

.gray-btn::before {
	content: "";
	position: absolute;
	width: 60px;
	height: 100%;
	top: 0;
	left: 0;
	background: rgba(10, 20, 153, 0.10);
	clip-path: polygon(0% 0%, calc(100% - 16px) 0%, 100% 50%, calc(100% - 16px) 100%, 0% 100%);
	transition: .3s ease all;
}

.gray-btn:hover {
	color: #000;
}

.gray-btn:hover::before {
	width: calc(100% - 20px);
}

.blue-btn {
	padding: 15px 45px;
	background: var(--blue);
	color: #fff;
	font-family: "Geologica", sans-serif;
	font-size: 16px;
	font-weight: 700;
	cursor: pointer;
	border: 2px solid #fff;
	border-radius: 10px;
	-webkit-transition:.3s ease-in;  
	-moz-transition:.3s ease-in;  
	-o-transition:.3s ease-in;  
	transition:.3s ease-in;
	position: relative;
	overflow: hidden;
}

.blue-btn:hover {
	background-color: #fff;
	color: var(--blue);
}

.btn-row.flex {
	gap: 20px 50px;
	flex-wrap: wrap;
}

/*--- HEADER STYLES ---------------------*/

header {
	position: relative;
	z-index: 5;
}

.main-header .flex {
	justify-content: space-between;
}

.main-header .logo-container {
	padding: 0 5%;
	width: 100%;
	max-width: 450px;
}

.main-header .blue-side {
	background-color: var(--blue);
	width: calc(100% - 70px);
	padding-right: 5%;
	position: relative;
}

.main-header .blue-side::before {
	content: "";
	position: absolute;
	background-color: var(--blue);
	width: calc(100% + 70px);
    right: 0;
    clip-path: polygon(0 0, 100% 0%, 100% 100%, 70px 100%);
    height: 100%;
}

.top-header.flex {
	justify-content: flex-end;
	align-items: center;
	gap: 40px;
	padding-bottom: 30px;
	position: relative;
}

.top-header.flex a, .mobile-contact a {
	color: #fff;
	font-weight: 700;
}

.top-header.flex a:hover, .mobile-contact a:hover {
	color: var(--gray);
}

.top-header.flex a.call {
	background-color: #fff;
	padding: 15px 40px;
	color: #000;
	border-radius: 0 0 10px 10px;
}

.top-header.flex a.call:hover {
	color: var(--blue);
	background-color: var(--gray);
}

.mobile-contact {padding: 30px;line-height: 2;}

/*---BODY--------------------------------*/

.hero {
	padding: 130px 0;
	background-color: #000;
	background-image: linear-gradient(rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.45) 100%), url("../siteart/hero.jpg");
	background-size: cover;
	background-position: center;
}

.hero-title {
	position: relative;
	padding: 30px 0 30px 30px;
	max-width: 760px;
}

.hero-title::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(10, 20, 153, 0.80);
	clip-path: polygon(calc(100% - 45px) 0%, 100% 50%, calc(100% - 45px) 100%, 0% 100%, 45px 50%, 0% 0%);
}

.hero h1.heading {
	font-size: 56px;
	font-weight: 900;
	line-height: 1.2;
	position: relative;
}

.hero .sub-heading {
	padding: 30px 0;
}

.inv-about .heading {
	padding-bottom: 30px;
}

.about .body-text {
	padding: 20px 0;
}

.inv-categories a {
	display: block;
	width: fit-content;
}

.inv-cat {
	max-width: 580px;
	position: relative;
}

a:has(.inv-cat.all) {
	width: 100%;
	max-width: 580px;
}

.inv-cat.all {
	background-color: var(--blue);
	padding: 30px 20px;
	width: 100%;
	text-align: center;
	border-radius: 20px;
	border-bottom-left-radius: 0;
	transition: .3s ease all;
}

.inv-cat.all:hover {
	background-color: #000;
}

.inv-cat.all h3 {
	position: relative;
	font-size: 24px;
}

.inv-cat img {
	display: block;
	width: 100%;
	border-radius: 20px;
}

.inv-cat::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image: linear-gradient(90deg, rgba(10, 20, 153, 0.80), rgba(10, 20, 153, 0.00) 50%);
	border-radius: 20px;
	border-bottom-left-radius: 0;
}

.cat-title {
	position: absolute;
	left: 0;
	bottom: 0;
	background-color: var(--blue);
	padding: 15px 60px 15px 30px;
	clip-path: polygon(0 0, calc(100% - 30px) 0%, 100% 100%, 0% 100%);
	transition: .3s ease all;
	font-size: 24px;
}

.cat-title h3 {
	font-size: 24px;
}

.inv-cat:hover .cat-title {
	background: #000;
}

.blue-contact {
	background-color: var(--blue);
	position: relative;
}

.blue-contact::before {
	content: "";
	position: absolute;
	width: 90%;
	top: 0;
	bottom: 0;
	left: 0;
	background: rgba(255,255,255,0.1);
	clip-path: polygon(0% 0%, calc(100% - 45px) 0%, 100% 50%, calc(100% - 45px) 100%, 0% 100%);
}

.blue-contact .wid-90.flex {
	position: relative;
	justify-content: space-between;
	align-items: center;
	gap: 30px 5%;
	flex-wrap: wrap;
}

.page-heading {
	background-color: #000;
	background-image: linear-gradient(rgba(0,0,0,0.3) 50%, rgba(0,0,0,1)), url("../siteart/boom-lift.jpg");
	background-size: cover;
	background-position: center;
	padding: 150px 0;
	text-align: center;
}

.page-heading .heading {
	font-size: 48px;
	font-weight: 900;
}

.form-map.flex {
	justify-content: space-between;
	gap: 50px 5%;
}

.form-map .map.flex {
	flex-direction: column;
	justify-content: space-between;
	gap: 50px;
	width: 100%;
}

.map.flex iframe {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 300px;
}

.contact-items.flex {
	justify-content: space-around;
	gap: 20px;
	flex-wrap: wrap;
}

.contact-item {
	background-color: var(--blue);
	padding: 20px 45px;
	border-radius: 15px;
	color: #fff;
	font-size: 20px;
	font-weight: 700;
	text-align: center;
	transition: .3s ease all;
}

.contact-item:hover {
	background-color: #000;
}

/*--------FORM STYLES--------------------*/
.form-container {
	background-color: var(--gray);
	width: 80%;
	max-width: 900px;
	padding: 30px 40px;
}

.form-container .heading {
	padding: 15px 0;
}

.form-flex {
	display: flex;
	justify-content: center;
	gap: 30px;
	margin: 10px 0;
}

.form-flex label, .form-flex legend {
	font-family: "Geologica", sans-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: #fff;
	border: none;
	color: #2D2D2D;
	font-family: "Geologica", 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: #D2DAF2;
}

textarea {
	height: 150px;
}

.CaptchaPanel {
	font-family: "Geologica", sans-serif;
}

.captcha-button {
	text-align:center;
}

#captcha {
	display: none;
}

/*-------- FOOTER STYLES ----------------*/
footer.flex {
	background: #000;
	justify-content: space-between;
	flex-wrap: wrap;
}

.main-footer {
	padding: 0 5%;
}

.main-footer h2.heading {
	font-size: 36px;
	font-weight: 900;
}

footer h3.sub-heading {
	margin-bottom: 10px;
}

.footer-contact {
	padding: 10px 0;
	line-height: 2;
}

.footer-contact a {
	color: #fff;
	font-weight: 700;
}

.footer-contact a:hover {
	color: var(--light-blue);
}

.footer-nav {
	background: rgba(255, 255, 255, 0.10);
	padding: 0 5%;
	width: 100%;
	max-width: 400px;
	display: flex;
	justify-content: center;
}

.footer-nav .flex {
	gap: 0 40px;
	flex-wrap: wrap;
}

.footer-nav 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-nav ul li a:hover {
	color: var(--light-blue);
}

/*----INVENTORY STYLES - KEEP AT BOTTOM OF CSS----*/





/*---------- RESPONSIVE STYLES ----------*/

@media only screen and (max-width: 1300px) {
	
}

@media only screen and (max-width: 1000px) {
	.top-header.flex {display: none;}
	.main-header .blue-side {display: flex;justify-content: center;align-items: center; width: unset;}
	.main-header .logo-container{padding: 0 10% 0 5%;}
	
	.page-heading {padding: 120px 0;}
	
	.hero h1.heading {font-size: 48px;}
	.hero-title {max-width: 670px;}
	
	.form-map.flex {flex-wrap: wrap;}
	.form-container {width: 100%;}
	
	.inv-about.flex {flex-wrap: wrap;}
	
	.footer-nav {max-width: unset;}
}

@media only screen and (max-width: 850px) {
	.hero h1.heading {font-size: 36px;}
	.hero-title {max-width: 500px;}
	.main-footer h2.heading {font-size: 32px;}
	
	.cat-title {font-size: 20px;}
	
	.form-flex {flex-wrap: wrap; gap: 20px; padding: 5px 0;}
}


@media only screen and (max-width: 600px) {
	.hero {padding: 70px 0;}
	.hero h1.heading {font-size: 28px;}
	.hero-title {max-width: 400px;}
	
	.page-heading {padding: 80px 0;}
	.page-heading .heading {font-size: 36px;}
	
	.cat-title h3, .inv-cat.all h3 {font-size: 18px;}
}

@media only screen and (max-width: 500px) {
	.main-footer h2.heading {font-size: 28px;}
}

@media only screen and (max-width: 450px) {
/*	make buttons full width*/
	.gray-btn, .blue-btn, a:has(.blue-btn) {width: 100%;}
	
	.main-header .logo {max-width: 180px;}
	.cat-title {font-size: 17px;}
}






