* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box; 
}
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, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video, input, select {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
	color: unset;
}
a {text-decoration:none;}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
button {
	border: none;
	border-radius: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

/*=== END RESET ===*/
::-moz-selection {
    background: #0110A0;
    color: #ffffff;
    text-shadow: none;
}
::selection {
    background: #0110A0;
    color: #ffffff;
    text-shadow: none;
}

/*=== Clearfix ===*/
.clear {clear: both;}
.cf:before,
.cf:after {
    content: " ";
    display: table;
}
.cf:after {
    clear: both;
}
.cf {
    zoom: 1;
}

/*=== ELEMENTS ===*/
img {max-width: 100%;}
body {
	font-family: apotek, sans-serif!important;
	font-weight: 300;
	font-style: normal;
	font-size: 18px!important;
	line-height: 28px!important;
	color: #000000;
}
h1, h2, h3, h4, h5, h6 {
	font-family: apotek, sans-serif!important;
	font-weight: 700;
	font-style: normal;
}
h1 {
	line-height: 48px;
    font-size: 48px;
	color: #ffffff;
}
h2 {
	line-height: 48px;
    font-size: 48px;
	color: #ffffff;
}
h3 {
	font-size: 32px;
}
h4 {
	font-size: 21px;
}
hr{border:#000 1px solid;}
.button-container {
	gap: 10px;
}
button {
	cursor: pointer;
	text-decoration: none;
	font-size: inherit;
	border: 0;
	line-height: 1;
	background: none;
	padding: .75em 1.5em;
}
button.primary {
	width: 100%;
	color: #ffffff;
	outline: 1px solid #ffffff;
	border: 1px solid #ffffff;
	outline-offset: -1px;
	transition: outline-offset 200ms ease;
}
button.primary:hover, button.primary:focus {
	outline: 1px solid #ffffff;
	outline-offset: -8px;
}
button.secondary {
	background-color: #0110A0;
	color: #ffffff;
	outline: 1px solid #0110A0;
	border: 1px solid #0110A0;
	outline-offset: -1px;
	transition: outline-offset 200ms ease;
	min-width: max-content;
    width: 300px;
}
button.secondary:hover, button.secondary:focus {
	outline: 1px solid #ffffff;
	outline-offset: -8px;
}

/*=== GLOBAL ===*/
.flex-container {
	display: flex;
	height: auto;
}
.flex-vertical {
	flex-direction: column;
}
.flex-horizontal {
	flex-direction: row
}
.flex-width {
	flex-grow: 1;
	flex-shrink: 1;
	flex-basis: 100%;
}
.flex-height {
	height: 100%;
}
.flex-wrap {
	flex-wrap: wrap;
}
.set-width {
	flex-grow: 0;
	flex-shrink: 0;
	flex-basis: auto;
}

.justify-center {
	justify-content: center;
}
.justify-right {
	justify-content: flex-end
}
.justify-left {
	justify-content: flex-start
}
.justify-between {
	justify-content: space-between;
}
.justify-around {
	justify-content: space-around;
}

.align-center {
	align-items: center;
}
.align-top {
	align-items: flex-start;
}
.align-bottom {
	align-items: flex-end;
}
.align-all-center {
	align-items: center;
	justify-content: center;
}

.align-self-center {
	align-self: center;
}

.text-left {
	text-align: left;
}
.text-center {
	text-align: center;
}
.text-right {
	text-align: right;
}

.left-icon {
	margin-right: 15px;
}
.right-icon {
	margin-left: 15px;
}

.mobile-only {
	display: none;
}
.clickable {
	cursor: pointer;
}
.hidden {
	display: none;
}

.max-width {
	max-width: 1366px;
	width: 90%;
	margin: 0 auto;
}
.successful {
	color: #01a009;
}
.logo-container {
	background-color: #2D2D2D;
}
.logo {
	background-color: #2D2D2D;
	padding: 20px;
	width: 100%;
	max-width: 400px;
}
.gap {
	gap: 25px;
}
.secondary-hero-container {
	background-color: #2D2D2D;
	padding: 15px 25px;
	align-items: baseline;
}
.secondary-hero-container h1 {
	font-size: 36px;
	line-height: 36px;
}
.secondary-hero-container p {
	color: #ffffff;
}

/*=== HEADER ===*/
header.site-header {
	border-bottom: 1px solid #ffffff;
}
header.site-header .nav-group {
	height: 100%;
}
header.site-header .top-nav > * {
	padding: 10px 1px;
}
header.site-header .top-nav .lang {
	background-color: #CBCBCB;
}

/*=== FOOTER ===*/
footer.site-footer {
	background-color: #2D2D2D;
	color: #ffffff;
}
footer.site-footer .scrolling {
	height: 90px;
}
footer.site-footer .logo {
	margin-top: 35px;
}
footer.site-footer .footer-menu > p {
	padding: 0 10px;
	font-size: 21px;
}
footer.site-footer .copyright {
	padding: 35px 0 5px;
	font-size: 14px;
}

/*=== PAGE STYLES ===*/
/*=== DEFAULT-PAGE ===*/
.default-page .hero-container {
	background-image: url("/siteart/yellow-skidsteer-hero.jpg");
	background-position: center;
	background-size: cover;
}
.default-page .hero-container .cta {
	margin: 150px 0;
	width: max-content;
	background-color: #2D2D2D;
}
.default-page .hero-container .cta h1 {	
	border-top: 1px solid #ffffff;
	border-left: 1px solid #ffffff;
	border-right: 1px solid #ffffff;
	padding: 15px 25px;
}
.default-page .hero-container .es-cta h1 {	
	font-size: 60px;
}
.default-page .hero-container .cta h1 .bigger-line {
	font-size: 58px;
}.default-page .hero-container .es-cta h1 .bigger-line {
	font-size: 43px;
}
.default-page .inventory-section {
	position: relative;
	background-color: #2D2D2D;
}
.default-page .inventory-search {
	position: relative;
	z-index: 999;
	top: -45px;
	left: 0;
	right: 0;
	padding: 25px;	
	background-color: #CBCBCB;
}
.default-page .inventory-search h3 {
	padding-bottom: 15px;
}
.default-page .inventory-search form .form-container {
	gap: 20px;
}
.default-page .inventory-search form .form-container input, .default-page .inventory-search form .form-container select {
	color: #858585;
	border: 1px solid #ffffff;
	width: 100%;
	padding: 5px 10px;
	font-size: 16px;
	background-color: #ffffff;
	border-radius: 0;
}
.default-page .inventory-search form .form-container select option:hover {
	background-color: #0110A0;
	color: #ffffff;
}
.default-page .inventory-section .all-inventory {
	grid-area: allInventory;
	background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url("/siteart/moffett-forklift.jpg");
}
.default-page .inventory-section .all-inventory:hover {
	background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)), url("/siteart/moffett-forklift.jpg");
}
.default-page .inventory-section .trailers {
	grid-area: trailers;
	background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url("/siteart/semi-trailer.jpg");
}
.default-page .inventory-section .trailers:hover {
	background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)), url("/siteart/semi-trailer.jpg");
}
.default-page .inventory-section .skidsteers {
	grid-area: skidsteers;
	background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url("/siteart/kubota-skidsteer.jpg");
}
.default-page .inventory-section .skidsteers:hover {
	background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)), url("/siteart/kubota-skidsteer.jpg");
}
.default-page .inventory-section .forklifts {
	grid-area: forklifts;
	background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url("/siteart/princeton-forklift.jpg");
}
.default-page .inventory-section .forklifts:hover {
	grid-area: forklifts;
	background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)), url("/siteart/princeton-forklift.jpg");
}
.default-page .inventory-section .masonry-container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-template-rows: auto;
	gap: 10px;
	grid-template-areas:
		"allInventory allInventory"
		"skidsteers forklifts"
		"trailers trailers";
	text-align: center;
	padding: 20px 0 65px;
}
.default-page .inventory-section .masonry-container > * {
	outline: 1px solid #2D2D2D;
	outline-offset: -1px;
	transition: outline-offset 200ms ease;
	color: #ffffff;
}
.default-page .inventory-section .masonry-container > *:hover {
	outline: 2px solid #fff;
	outline-offset: -8px;
}
.default-page .inventory-section .masonry-container > *, .default-page .inventory-section .masonry-container > *:hover {
	background-size: cover;
	background-position: center;
	padding: 90px 0;
}
.default-page .about-us {
	padding: 55px 0;
}
.default-page .about-us.max-width {
	width: 45%;
}
.default-page .reviews {
	color: #ffffff;
	background-color: #2D2D2D;
	padding: 55px 0;
}
.default-page .reviews .review-card {
	color: #000000;
	background-color: #ffffff;
	margin: 10px;
    padding: 15px;
}
.default-page .reviews h4 {
	padding-bottom: 5px;
}
.default-page .reviews .review-card .fa-star {
	color: #FF9203;
	font-size: 21px;
	padding-bottom: 5px;
}

/*** INVENTORY-PAGE ***/
.inventory-page .container.cf {
	padding: 50px 0!important;
}

/*** CONTACT-US-PAGE, THANK-YOU-PAGE ***/
h2 {
	color: #000000;
	font-size: 32px;
}
.contact-container {
	padding: 50px 0 65px;
	gap: 50px;
}
.map {
	line-height: 0;

}
.map iframe {
	min-height: 100%;
	height: 300px;
	max-height: 375px;
}

@media screen and (max-width: 1150px)  {
	/*** CONTACT-US-PAGE ***/
	.contact-us-page .contact-methord-group {
		flex-direction: column;
	}
}

@media screen and (max-width: 1000px)  {
	/*** HEADER ***/	
	header.site-header .top-nav > * {
		font-size: 16px;
	}

	/*** DEFAULT.HTM ***/
	.default-page .inventory-section .masonry-container {
		grid-template-columns: 1fr;
		grid-template-areas:         
			"allInventory"
			"skidsteers"
			"forklifts"
			"trailers";
	}
}

@media only screen and (max-width: 768px) {
	.mobile-only {
		display: flex;
	}
	.desktop-only {
		display: none;
	}
	.flex-horizontal {
		flex-direction: column;
	}

	.left-column {
		width: 100%;
	}
	button.secondary {
		width: 100%;
	}
	.gap {
		gap: 15px;
	}

	/*** DEFAULT-PAGE ***/
	.default-page .about-us.max-width {
		width: 80%;
	}

	/*** CONTACT-US-PAGE ***/
	.contact-us-page .contact-container.flex-horizontal {
		flex-direction: column-reverse;
	}
}

@media only screen and (max-width: 475px) {
	/*** DEFAULT-PAGE ***/
	.default-page .hero-container .cta h1 {
		font-size: 26px;
	}
	.default-page .hero-container .cta h1 .bigger-line {
		font-size: 31px;
	}

	/*** HEADER ***/
	header.site-header .top-nav > * {
		font-size: 13px;
	}
	/*** FOOTER ***/
	footer.site-footer .footer-menu {
		flex-flow: wrap;
	}
}
