@charset "utf-8";
* {
	-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;color: unset;}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
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;
	cursor: pointer;
	background-color: unset;
	padding: 0;
	margin: 0;
}

/*=== END RESET ===*/
::-moz-selection {
    background: #000;
    color: #fff;
    text-shadow: none;
}
::selection {
    background: #000;
    color: #fff;
    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%;
	object-fit: cover;
    object-position: center;
	height: inherit;
}
body {
	font-family: roboto, sans-serif!important;
	font-weight: 400!important;
	font-style: normal!important;
	color: #5c5a5a;
	background-color: #f3f3f3;
	font-size: 16px;
	line-height: 28px;
}
h1 {
	font-family: "adelle", serif;
    font-size: 40px;
    font-weight: 700;
    font-style: normal;
    line-height: 48px;
}
h2, h3, h4, h5, h6 {
	font-style: normal;
    font-weight: 400;
    font-size: 26px;
    line-height: 36px;
}
hr {width: 100%;}
.button-group {gap: 30px;}
button.primary {
	background-color: #EA1A1E;
    color: #ffffff;
    border: 1px solid #EA1A1E;
    font-size: 18px;
    padding: 10px 50px;
    margin: 30px;
	font-weight: 600;
}
button.primary:hover {
	background-color: unset;
	color: #EA1A1E;
	border: 1px solid #EA1A1E;
}
button.secondary {
	background-color: #f3f3f3;
	padding: 10px 15px;
	font-size: 20px;
	width: 100%;
	text-align: left;
}
button.secondary .button-icon {
	width: 15px;
	height: 15px;
}
button.secondary:hover {}

/*=== GLOBAL ===*/
.flex-container {
	display: flex;
}
.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%;
}
.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;
}
.justify-evenly {
	justify-content: space-evenly;
}

.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;
}

.max-width {
	max-width: 1366px;
	width: 90%;
	margin: 0 auto;
}
.logo {
	max-width: 175px;
}
.clickable {
	cursor: pointer;
}

.icon {
	color: #ffffff;
    background-color: #423c3c;
	border: 1px solid #423c3c;
    width: 30px;
    height: 30px;
    text-align: center;
    font-size: 16px;
}
.icon:hover {
	color: #423c3c;
    background-color: #ffffff;
}
.left-background {
	background-color: #eb2125;
	width: 100%;
}
.right-background {
	background-color: #f3f3f3;
	width: 100%;
}
.content-container {
	position: relative;
}
.content-container .left-background, .content-container .right-background {
	position: absolute;
	height: 100%;
	z-index: 1;
}
.content-container .left-background {
	top: 0;
	left: 0;
	bottom: 0;
	width: 50%;
}
.content-container .right-background {
	top: 0;
	right: 0;
	bottom: 0;
	width: 50%;
}
.content-container .content {
	gap: 35px;
	z-index: 400;
	position: inherit;
    padding: 75px 0;
}
.content-container .content .grey-background {
	background-color: #423c3c;
	color: #ffffff;
	padding: 65px 35px;
	width: 66%;
}

/*=== HEADER ===*/
header.site-header {
	border-bottom: 4px solid #eb2125;
	position: relative;
	z-index: 999;
}
header.site-header .logo-container {
	position: relative;
	min-width: calc(250px + 7vw);
    background: #423c3c;
    padding-left: 5vw;
}
header.site-header .logo-container img {
	position: absolute;
    top: 25px;
}
header.site-header .top-nav {
	padding: 20px 5vw 20px 5%;
}
header.site-header .top-nav form {
	border: 1px solid #423c3c;
    padding: 0px 10px;
    font-size: 14px;
	background-color: #ffffff;
	width: 33%;
}
header.site-header .top-nav form input {
	width: 100%;
}
header.site-header .nav-group {
	background-color: #EA1A1E;
	color: #ffffff;
	padding: 10px 5vw 10px 5%;
}

/*=== PAGE STYLES ===*/
/*=== DEFAULT-PAGE ===*/
.default-page section.hero {
	background-image: url("/siteart/lift-on-jobsite.jpg");
	background-position: center;
	background-size: cover;
}
.default-page section .hero-container {
	padding: 25px 35px;
	margin: 75px auto;
	text-align: center;
	width: max-content;
	background-color: rgba(243, 243, 243, 0.65);
}
.default-page section .hero-container h2 {
	margin-top: 10px;
}
.default-page section .hero-container .fa-chevron-down {
	line-height: 10px;
    font-size: 26px;
}
.default-page section .hero-container .chevron-container {
	line-height: 1px;
}
/* .default-page section .hero-container .chevron-container .fa-chevron-down:last-child {
    opacity: 1;
    animation: fade infinite linear;
}
@keyframes fade {
  0%,100% { opacity: 0 }
  50% { opacity: 1 }
} */

/*=== CONTACT-US.HTM ===*/
.contact-us-page {
	margin: 75px auto 0;
}
.contact-us-page .top-section {
	padding-bottom: 70px;
}
.contact-us-page h2 {
	padding-bottom: 15px;
}
.contact-us-page h2.other-contact {
	padding: 65px 0 10px;
}
.contact-us-page .email {
	word-break: break-all;
}
.contact-us-page button.contact {
	background-color: #ffffff;
	color: #423c3c;
    font-size: 18px;
    padding: 10px 50px;
	font-weight: 600;
	width: max-content;
	align-self: center;
}
.contact-us-page .map {
	margin: 60px 0;
	border: 1px solid #423c3c;
}

/*=== FOOTER ===*/
footer.site-footer .top-nav {
	border-top: 4px solid #eb2125;
	padding: 20px 5vw;
	background-color: #423c3c;
	color: #ffffff;
}
footer.site-footer .left-background, footer.site-footer .right-background {
	padding: 20px 5%;
}

/*=== RESPONSIVE ===*/

@media only screen and (max-width: 830px) {
	.mobile-only {
		display: flex;
	}
	.desktop-only {
		display: none;
	}
	.flex-horizontal {
		flex-direction: column;
	}
	.button-group {
		gap: 15px;
	}
	.content-container .content .grey-background {
		width: 100%;
	}

	/*=== HEADER ===*/
	header.site-header .logo-container {
		text-align: center;
	}
	header.site-header .logo-container img {
		position: unset;
		top: unset;
		padding: 20px 0 10px;
	}
	header.site-header .top-nav form {
		width: calc(100% - 90px);
	}

	/*=== DEFAULT.HTM ===*/
	.default-page section .hero-container {
		margin: 5%;
		width: unset;
	}
	.default-page section.inventory-links {
		padding: 25px 0;
	}

	/*=== CONTACT-US.HTM ===*/
	.contact-us-page .map {
		margin: 60px 0 0 0;
		height: 350px;
		border: unset;
		border-top: 1px solid #423c3c;
	}

	/*=== FOOTER ===*/
	footer.site-footer .top-nav .logo {
		margin-bottom: 25px;
	}
	footer.site-footer .top-nav .text-right {
		text-align: center;
	}
}