﻿/***** 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 {
		
	--red: #960909; 
	
	--charcoal: #2b2b2b;
	--light-gray: #DFDFDF;
}

/***** 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: 1600px;}

.padit {padding: 60px 0;}
.header-pad {padding: 60px 0;}

.logo {max-width: 300px;}

.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: 800px;
}

.dark-body {background-color: var(--charcoal);}
.red-body {background-color: var(--red);}

.mobile-only {display: none;}

/*------------- TEXT STYLES AND BUTTONS -------------*/

.white{color: #fff;}

.red {color: var(--red);}

.upper {text-transform: uppercase;}

a:link, a:visited, a:active {text-decoration:none; font-family: "Inter", sans-serif; }
a:hover {text-decoration:none;}

h1, h2, h3, h4, h5, h6 { font-family: "Oswald", sans-serif; }

.heading a:link {font-family: "Oswald", sans-serif;}

.heading a.white:hover {color: var(--light-gray);}

p, li {
	font-family: "Inter", sans-serif;
}

p.body-text {
	line-height: 2;
}

ul.bullets {
	margin-left: 30px;
	line-height: 2;
}

ul.bullets li {
	list-style: disc;
}

hr {
	border: 1px solid var(--light-gray);
	margin: 50px 0;
}

.sm-heading {
	font-size: 24px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1.2px;
}

.heading {
	font-size: 36px;
	font-weight: 700;
	line-height: 1;
	text-transform: uppercase;
	letter-spacing: 1.8px;
}

/*  BUTTONS  */

.btn-row.flex {
	gap: 30px;
	flex-wrap: wrap;
}

.white-btn {
	display: flex;
	line-height: 1;
	justify-content: space-between;
	align-items: center;
	padding: 0;
	font-family: Oswald, sans-serif;
	text-transform: uppercase;
	font-size: 16px;
	width: 200px;
	font-weight: 400;
	background-color: #E6E6E6;
	color: #000;
	border: none;
	letter-spacing: 0.8px;
	cursor: pointer;
	transition: .5s ease-in;
	-webkit-transition:.4s ease-in;  
	-moz-transition:.2s ease-in;  
	-o-transition:.2s ease-in; 
	transform: perspective(1px) translateZ(0);
  	position: relative;
	border-radius: 5px;
	overflow: hidden;
}

.white-btn:before {
  content: " ";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  background: #fff;
  transform: scaleX(1);
  transform-origin: 0 50%;
  transition: transform 0.3s ease-out;
}

.white-btn:hover:before {
  transform: scaleX(0);
}

.white-btn span.btn-icon {
	padding: 12px 10px;
	background-color: #E6E6E6;
}

.white-btn span {
	padding: 0 15px;
}

/*--- HEADER STYLES ---------------------*/

header {
	position: relative;
	z-index: 5;
}

.header-container {
	position: relative;
}

.main-header {
	background: #fff;
}

.main-header .flex {
	justify-content: center;
}

.logos-container {
	padding: 20px 5%;
	width: 100%;
	max-width: 700px;
}

.logos-container .logo {
	padding: 0 30px;
}

.logos-container .logo a, .logos-container .logo {
	align-items: center; 
	display: flex; 
	background-color: #fff;
}

.logos-container .flex {
	width: fit-content;
	background-color: #000;
	gap: 2px;
	justify-content: center;
	margin: 0 auto;
}

.nav-container {
	display: flex;
	align-items: center;
	background-color: var(--red);
	width: 100%;
	padding: 0 5%;
}

.logo.coats {
	max-width: 230px;
}

.mobile-contact {
	margin-top: 20px; text-align: center;
}

.mobile-contact .call-btn {
	background: #fff;
	padding: 3px 15px;
	color: #000;
	font-family: "Oswald", sans-serif;
	font-weight: 700;
	letter-spacing: 1px;
	border-radius: 3px;
	-webkit-transition:.4s ease-in;  
	-moz-transition:.2s ease-in;  
	-o-transition:.2s ease-in;  
	transition:.2s ease-in;
}

.mobile-contact .call-btn:hover {
	background-color: var(--light-gray);
}

/*---BODY--------------------------------*/

.hero {position: relative;}

.hero img {
	display: block;
	width: 100%;
}

.hero-slider {
	position: relative;
}

/*
.hero-slider::before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	width: 100%;
	background: linear-gradient(0deg, rgba(0,0,0,1), rgba(0,0,0,0.2) 50%);;
	z-index: 1;
}
*/

.hero-text {
	background-color: var(--red);
	width: 100%;
	padding: 40px 5%;
/*	position: absolute;*/
	bottom: 0;
/*	max-width: 900px;*/
	z-index: 2;
}

.hero-text h1.heading {
	font-size: 48px;
	letter-spacing: 2.4px;
	line-height: normal;
}

.hero-text p {text-transform: uppercase; letter-spacing: 0.8px;}

.btn-search.flex {
	padding-top: 25px;
	gap: 20px 50px;
}

.btn-search form, .search-bar.flex {
	width: 100%;
	max-width: 325px;
}

.search-bar.flex input {
	width: 100%;
	border: none;
	padding: 8px 20px;
	color: #666;
	font-family: "Oswald", sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: normal;
	letter-spacing: 0.8px;
	text-transform: uppercase;
	border-bottom-left-radius: 3px;
	border-top-left-radius: 3px;
}

.search-bar.flex input:focus-visible {
	outline: none;
}

.search-bar.flex button {
	border: none;
	background-color: var(--light-gray);
	color: var(--red);
	width: 41px;
	flex-shrink: 0;
	border-bottom-right-radius: 3px;
	border-top-right-radius: 3px;
	cursor: pointer;
	-webkit-transition:.2s ease-in;  
	-moz-transition:.2s ease-in;  
	-o-transition:.2s ease-in;  
	transition:.2s ease-in;
}

.search-bar.flex button:hover {
	background-color: #ccc;
}

.welcome.flex {
	gap: 50px 5%;
}

.btn-row.flex .socials.flex {
	gap: 20px;
	align-items: center;
}

.socials.flex .sm-heading {
	text-transform: none;
}

.socials.flex a {
	color: #fff;
	font-size: 24px;
}

.flex-1.img-aside img {
	display: block;
	width: 100%;
}

.specialties.flex {
	padding: 30px;
	margin-bottom: -50px;
	position: relative;
}

.padit.ammco {
	background-color: var(--gray);
	background-image: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url("/siteart/used-forklifts.jpg");
	background-size: cover;
	background-position: center;
}

.padit.ammco .flex {
	gap: 50px 5%;
}

.padit.ammco .text-aside {
	max-width: 600px;
}

.padit.ammco .service p {
	font-family: Oswald;
	font-size: 24px;
	font-weight: 700;
	padding-bottom: 15px;
	text-align: center;
}

.padit.ammco .service img {
	display: block;
	width: 100%;
	border: 10px solid var(--red);
}

.header-btn.flex {
	justify-content: space-between;
	gap: 30px;
	flex-wrap: wrap;
}

.quick-info.flex {
	justify-content: space-between;
	gap: 30px;
	padding-top: 30px;
	flex-wrap: wrap;
}

.quick-info.flex .flex {
	gap: 15px 30px;
	flex-wrap: wrap;
}

.page-heading {
	background-color: #000;
	background-image: linear-gradient(90deg, rgba(0,0,0,1), rgba(0,0,0,0)), url("/siteart/header-forklift.jpg");
	background-position: right;
	background-size: 30%;
	background-repeat: no-repeat;
}
.page-heading h1.heading {
	padding: 30px 30px 30px 5%;
	background-color: var(--red);
	width: fit-content;
	margin-right: 5%;
}

.contact-bar {
	padding: 30px;
}

.service-list {
	column-count: 3;
	column-gap: 30px;
}

.service-img.flex {
	justify-content: center;
	gap: 30px;
	flex-wrap: wrap;
	padding: 30px 0;
}

.service-img img {
	display: block;
	max-width: 100%;
}

.wheels.flex {
	justify-content: space-around;
	gap: 30px 5%;
	margin-top: 30px;
	flex-wrap: wrap;
}

.wheels.flex .text {
	width: 50%;
}

.inv-header {
	background-color: #000;
	text-align: center;
}

.flex.history {
	gap: 30px 5%;
}

.flex.history img {
	display: block;
	width: 100%;
	max-width: 680px;
	margin: 0 auto;
}

/*--------FORM STYLES--------------------*/

.contact-flex {
	display: flex;
	justify-content: space-between;
	gap: 30px 5%;
}

.contact-flex .text-aside {
	width: 50%;
	border-left: 1px solid var(--light-gray);
	padding: 30px;
}

.form-container {
	width: 100%;
	max-width: 900px;
}

.form-flex {
	display: flex;
	justify-content: center;
	gap: 20px 10px;
	margin: 10px 0;
}

.form-flex label, .form-flex legend {
	font-family: "Inter", 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;
}

fieldset .selection {
	display: flex;
	gap: 10px 15px;
	flex-wrap: wrap;
}

fieldset .selection div {
	width: fit-content;
}

.form-flex input, .form-flex select, .form-flex textarea {
	background: #fff;
	border: none;
	color: #2D2D2D;
	font-family: "Inter", sans-serif;
	font-size: 15px;
	padding: 15px;
	border-radius: 3px;
	
}

.form-flex input:focus-visible, .form-flex select:focus-visible, .form-flex textarea:focus-visible {
	outline: none;
	background: var(--light-gray);
}

.form-flex textarea {
	height: 150px;
}

.CaptchaPanel, .CaptchaWhatsThisPanel a {
	font-family: "Outfit", sans-serif;
	text-align: left !important;
	color: #fff;
}

.captcha-button {
/*	text-align:center;*/
}

#captcha {
	display: none;
}

.submit-btn {
	font-family: Oswald, sans-serif;
	text-transform: uppercase;
	font-size: 16px;
	font-weight: 400;
	background-color: #fff;
	color: #000;
	border: none;
	letter-spacing: 0.8px;
	cursor: pointer;
  	position: relative;
	border-radius: 5px;
	padding: 10px 30px;
	transition: 0.3s ease all;
}

.submit-btn:hover {
	color: var(--red);
}

/*-------- FOOTER STYLES ----------------*/
footer {
	padding-bottom: 50px;
	background: #000;
}

footer .wid-90.flex {
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	gap: 30px 0;
}

footer .logo {
	padding-right: 40px;
}

.footer-contact {
	padding: 20px 40px;
	border-left: 1px solid #fff;
	width: 100%;
	max-width: 325px;
}

.footer-contact a {
	color: #fff;
}

/*----INVENTORY STYLES - KEEP AT BOTTOM OF CSS----*/





/*---------- RESPONSIVE STYLES ----------*/

@media only screen and (max-width: 1400px) {
	.main-header .outer.flex {flex-wrap: wrap;}
	.logos-container .logo:first-child {padding-left: 0;}
	.logos-container .logo.coats {padding-right: 0;}
}

@media only screen and (max-width: 1300px) {
	.hero-text {position: static; max-width: unset;}
	
	.flex.history {flex-wrap: wrap;}
}

@media only screen and (max-width: 1200px) {
	
	
	.welcome.flex {flex-wrap: wrap;}
	
	.page-heading {background-size: 50%;}
}

@media only screen and (max-width: 850px) {
	.hero-text h1.heading {font-size: 36px;}
	
	.specialties.flex, .padit.ammco .flex {flex-wrap: wrap;}
	
	.padit.ammco .service p {font-size: 20px;}
	
	.form-flex {flex-wrap: wrap; padding: 5px 0;}
	
	.page-heading {background-size: 80%;}
	
	.contact-flex {flex-wrap: wrap;}
	.contact-flex .text-aside {width: 100%;}
	
	.wheels.flex .text {width: 100%;}
}


@media only screen and (max-width: 600px) {
	.hero-text h1.heading {font-size: 24px;}
	.btn-search.flex {flex-wrap: wrap;}
	.btn-search form, .search-bar.flex {max-width: unset;}
	
	.service-list {column-count: 2;}
	
	.heading {font-size: 28px;}
	.sm-heading {font-size: 20px;}
}

@media only screen and (max-width: 500px) {
	.logos-container .logo {padding: 0 20px;}
	
	.footer-contact {padding: 20px;}
	footer .logo {padding-right: 0;}
}

@media only screen and (max-width: 450px) {
/*	make buttons full width*/
	.white-btn, a:has(.white-btn) {width: 100%;}
	
	.page-heading{background-size: cover;}
	
	.service-list {column-count: 1;}
}






