* {
	-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;
}
html {
	scroll-behavior: smooth;
}
a {text-decoration:none;cursor: pointer;}
/* 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 {
	cursor: pointer;
	border: none;
	border-radius: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

/*=== END RESET ===*/
::-moz-selection {
    background: #370617;
    color: #fff;
    text-shadow: none;
}
::selection {
    background: #370617;
    color: #fff;
    text-shadow: none;
}

/*=== Clearfix ===*/
.clear {clear: both;}
.cf:before,
.cf:after {
    content: " ";
    display: table;
}
.cf:after {
    clear: both;
}
.cf {
    zoom: 1;
}

/*=== ELEMENTS ===*/
@font-face {
    font-family: 'pp_charlevoixbold';
    src: url('/fonts/ppcharlevoix-bold-webfont.woff2') format('woff2'),
         url('/fonts/ppcharlevoix-bold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'pp_charlevoixregular';
    src: url('/fonts/ppcharlevoix-regular-webfont.woff2') format('woff2'),
         url('/fonts/ppcharlevoix-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
img {max-width: 100%;}
body {
	font-family: 'pp_charlevoixregular', sans-serif;
}
strong {
	font-weight: 700;
}
h1, h2, h3, h4 {font-family: 'pp_charlevoixbold', sans-serif;}
h1 {font-size: 36px;line-height: 36px;}
h2 {font-size: 28px;line-height: 28px;}
h3 {font-size: 22px;line-height: 22px;}
h4 {font-size: 18px;line-height: 20px;}
h5 {font-size: 16px;line-height: 20px;}
b {
	font-family: 'pp_charlevoixbold', sans-serif;
}
.button-group {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 20px;
	padding-top: 25px;
}
button.primary-button {
    transition: all ease .3s;
    padding: 7px 17px;
    background-color: #000000;
    color: #ffffff;
    border: 1px solid #ffffff;
	font-size: 18px;
}
button.primary-button:hover {
	background-color: #370617;
}
button.secondary-button {
    transition: all ease .3s;
    padding: 7px 17px;
    background-color: #ffffff;
    color: #000000;
    border: 1px solid #000000;
	font-size: 18px;
}
button.secondary-button:hover {
	background-color: #370617;
	color: #ffffff;
	border-color: #370617;
}
button.accent-button {
	background-color: #ffb108;
	padding: 7px 10px;
	transition: .3s ease all;
}
button.accent-button:hover {
	background-color: #FFFFFF;
	padding: 7px 10px;
}

/*=== 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%;
}
.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;
}
.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;
}
.align-self-right {
	align-self: flex-end;
}

.text-left {
	text-align: left;
}
.text-center {
	text-align: center;
}
.text-right {
	text-align: right;
}

.left-icon {
	margin-right: 10px;
}
.right-icon {
	margin-left: 10px;
}
.clickable {
	cursor: pointer;
}

.mobile-only {
	display: none;
}

.max-width {
	max-width: 1920px;
	width: 90%;
	margin: 0 auto;
}
.hidden {
	display: none;
	transition: all ease .3s;
}
.success-message {
	color: #188d2b;
}
ul.breadcrumb {
	padding: 30px 0;
	list-style: none;
}
ul.breadcrumb li {
	display: inline;
	font-size: 14px;
	line-height: 18px;
}
ul.breadcrumb li+li:before {
	padding: 8px;
	color: #E3BD00;
	content: "/\00a0";
}
ul.breadcrumb li a {
	text-decoration: none;
}
ul.breadcrumb li a:hover {
	text-decoration: underline;
}
ul.list li {
	list-style-type: disc;
	list-style-position: inside;
}
.logo-container .logo {
	width: 100%;
	max-width: 250px;
	height: 100%;
    object-fit: contain;
    object-position: center;
}
.logo-container {
	line-height: 0;
	padding: 15px clamp(50px, 5vw, 100px);
}
.form-container {
	box-shadow: 0 0 18px 0 #dcdcdc;
	background-color: #ffffff;
    padding: 25px;
	margin: clamp(50px, 5vw, 100px) auto;
}
.form-container .input-group div {
	gap: 5px;
}

/*=== HEADER ===*/
header.site-header {
	overflow: hidden;
	border-bottom: 1px solid #e7e7e7;
	font-family: 'pp_charlevoixregular', sans-serif!important;
}
header.site-header .navigation-group {
	min-height: 100px;
}
header.site-header .top-search-bar {
	background-color: #000000;
    padding: 6px clamp(50px, 5vw, 100px) 6px 6px;
    transform: skewX(20deg);
	position: relative;
	right: -10px;
}
header.site-header .top-search-bar form {
	padding-top: 0;
}
header.site-header .top-search-bar a:hover {
	color: #ffb108;
}
header.site-header .custom-search-bar {
    position: relative;
}
header.site-header .custom-search-bar label {
    overflow: hidden;
	height: auto;
	background-color: #FFFFFF;
	display: flex;
    width: calc(100% - 10px);
    justify-content: center;
}
header.site-header .custom-search-bar input {
    padding: 3px 40px 3px 15px;
	transform: skewX(-20deg);
	transition: .3s ease all;
	border: none;
	font-size: 16px;
	width: 100%;font-family: 'pp_charlevoixregular', sans-serif;
}
header.site-header .custom-search-bar input:focus {
    outline: none;
	background-color: #e6e6e6;
}
header.site-header .custom-search-bar button {
    background-color: transparent;
	position: absolute;
	right: 15px;
	top: 0;
	bottom: 0;
	padding: 1px 6px;
}
header.site-header .custom-search-bar button * {
    transform: skewX(-20deg);
}
header.site-header .header-contact-group {
    transform: skewX(-20deg);
	color: #ffffff;
	gap: 25px;
}

/*=== FOOTER ===*/
footer.site-footer {
	background-color: #000000;
	font-family: 'pp_charlevoixregular', sans-serif!important;
}
footer.site-footer .top-footer {
	padding: 25px 0;
	color: #ffffff;
	font-size: 14px;
}
footer.site-footer .top-footer .logo-container {
	padding: 0 clamp(50px, 5vw, 100px) 0 0;
}
footer.site-footer .top-footer .footer-nav {
	gap: 15px;
}
footer.site-footer .bottom-footer{
	color: #000000;
	background-color: #ffffff;
	padding: 10px 0;
	font-size: 14px;
}

/*=== PAGE STYLES ===*/
/*=== PROMO BANNER ===*/
.promo-banner {
	background-color: #000000;
	color: #ffffff;
	padding: 30px 0;
}
.promo-banner h2 {
	font-size: 28px;
	font-family: 'pp_charlevoixregular', sans-serif;
}

/*=== SUB-PAGE ===*/
.sub-page:not(.inventory-page) {
	font-weight: 400;
	font-style: normal;
	font-size: 16px;
	line-height: 24px;
}
.sub-page .hero-container {
	min-height: 475px;
}
.sub-page .hero-text-container {
	background-color: #000000;
	color: #ffffff;
	padding: clamp(50px, 5vw, 100px);
	width: 40vw;
}
.sub-page .hero-text-container p {
	padding-top: 20px;
}
.sub-page .hero-text-container h1 {
	padding-bottom: 10px;
}
.sub-page .hero-text-container h2 {
	font-family: 'pp_charlevoixregular', sans-serif;
	font-size: 22px;
}
.sub-page .hero-container .hero-img-container {
	background-position: center;
	background-size: cover;
	width: 100%;
	min-height: 300px;
	height: auto;
}

/*=== BRANDS ===*/
.brand-container {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	padding-bottom: clamp(50px, 5vw, 100px);
	gap: 30px;
	align-items: center;
}
.brand-container .brand {
	max-height: 50px;
}

/*=== EMPLOYEES ===*/
.employees-container {
    padding: clamp(50px, 5vw, 100px) 0 0;
}
.employees-container .connect-text {
    padding-bottom: 25px;
}
.employees-grid {
	display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
	justify-items: center;
}
.employees-container .employee {
	box-shadow: 0 0 18px 0 #dcdcdc;
	transition: .3s ease all;
    padding: 30px 25px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
	align-items: center;
	color: #ffffff;
	max-width: 600px;
	width: 100%;
}
.employees-container .employee h5 {
	font-style: italic;
}
.employees-container .employee:nth-child(1) {
	background: linear-gradient(rgba(255, 177, 8, 0.65), rgba(255, 177, 8, 0.65)),
    url('/siteart/bucket-with-logs.jpg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}
.employees-container .employee:nth-child(2) {
	background: linear-gradient(rgba(222, 91, 4, 0.65), rgba(222, 91, 4, 0.65)),
    url('/siteart/bucket-dumping-dirt.jpg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}
.employees-container .employee:nth-child(3) {
	background: linear-gradient(rgba(198, 0, 0, 0.65), rgba(198, 0, 0, 0.65)),
    url('/siteart/wheel-loader.jpg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}
.employees-container .employee:nth-child(4) {
	background: linear-gradient(rgba(55, 6, 23, 0.65), rgba(55, 6, 23, 0.65)),
    url('/siteart/processor-bw.jpg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}
.employees-container .employee:hover {
	box-shadow: 0 0 20px -5px #000000;
}
.employees-container .employee .name-title {
    padding-bottom: 10px;
	text-align: center;
}
.employees-container .employee a :hover{
	text-decoration: underline;
}

/*=== DEFAULT-PAGE ===*/
.default-page {
	font-weight: 400;
	font-style: normal;
	font-size: 16px;
	line-height: 24px;
}
.default-page .hero-container {
	height: 475px;
}
.default-page .hero-text-container {
	background-color: #000000;
	color: #ffffff;
	padding: clamp(50px, 5vw, 100px) 5vw;
	width: 40vw;
}
.default-page .hero-text-container h2 {
	font-family: 'pp_charlevoixregular', sans-serif;
	font-size: 22px;
}
.default-page .hero-slider {
	overflow: hidden;
}
.default-page .hero-slider img {
	height: 475px;
	object-position: center;
	object-fit: cover;
}
.default-page .featured-banner {
	background-color: #ffba08;
	margin-top: clamp(50px, 5vw, 100px);
	padding: 25px 0;
	position: relative;
	width: calc(95% - 50px);
	margin-right: auto;
}
.default-page .featured-banner .primary-button {
	border: 1px solid #000000;
}
.default-page .featured-banner .featured-logo {
	max-width: 250px;
}
.default-page .featured-banner h3 {
	padding: 20px 0 25px;
	max-width: 500px;
}
.default-page .featured-banner .featured-image {
	position: absolute;
	right: -50px;
	top: -25px;
	bottom: -25px;
	height: calc(100% + 50px);
	filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, .25));
}
.default-page .category-section {
	padding: clamp(50px, 5vw, 100px) 0 clamp(-50px, -5vw, -100px) clamp(50px, 5vw, 100px);
	margin-bottom: clamp(50px, 5vw, 100px);
}
.default-page .category-section .category-slider {
	overflow: hidden;
}
.default-page .category-section .category-slider .category-container {
	color: #ffffff;
	padding: 25px;
	height: 325px;
	margin: 0 10px 0 0;
}
.default-page .category-section .category-slider .category-container .category-group {
	gap: 5px 10px;
}
.default-page .category-section .category-slider .category-container .category-group .flair-button {
	border: 1px solid #ffffff;
	border-radius: 10px;
	padding: 5px 10px;
	color: #ffffff;
	background-color: transparent;
	transition: .3s ease all;
	font-size: 16px;
}
.default-page .category-section .category-slider .category-container .category-group .flair-button:hover {
	background-color: rgba(0, 0, 0, 0.33);
}
.default-page .category-section .category-slider .category-container h3 {
	font-family: 'pp_charlevoixregular', sans-serif;
	line-height: 28px;
}
.default-page .category-section .category-slider .category-container.construction-category {
	background: linear-gradient(rgba(255, 177, 8, 0.65), rgba(255, 177, 8, 0.65)),
    url('/siteart/dozer-bw.jpg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}
.default-page .category-section .category-slider .category-container.lift-category {
	background: linear-gradient(rgba(55, 6, 23, 0.65), rgba(55, 6, 23, 0.65)),
    url('/siteart/lift-bw.jpg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}
.default-page .category-section  .category-slider .category-container.transportation-category {
	background: linear-gradient(rgba(222, 91, 4, 0.65), rgba(222, 91, 4, 0.65)),
    url('/siteart/log-hauling-bw.jpg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}
.default-page .category-section  .category-slider .category-container.agriculture-category {
	background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)),
    url('/siteart/tractor-bw.jpg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}
.default-page .category-section  .category-slider .category-container.forestry-category {
	background: linear-gradient(rgba(198, 0, 0, 0.65), rgba(198, 0, 0, 0.65)),
    url('/siteart/processor-bw.jpg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}
.default-page .category-section .button-group {
	gap: 5px;
}
.default-page .category-section .button-group button.primary-button {
	padding: 7px 11px;
}
.default-page .welcome {
	padding: clamp(50px, 5vw, 100px) 0;
}
.default-page .welcome .welcome-text {
	box-shadow: 0 0 18px 0 #dcdcdc;
	background-color: #ffffff;
	padding: 30px 25px;
	margin: 25px 0;
}
.default-page .welcome .welcome-image {
	background-image: url("/siteart/about.jpg");
	background-position: center;
	background-size: cover;
	box-shadow: 0 0 18px 0 #dcdcdc;
	width: 50%;
}
/*-------Partners--------*/
.partner{padding-bottom:20px;}
.partner h2{text-transform:uppercase; font-family:'pp_charlevoixbold', sans-serif; font-size:28px;}
.part-row{display:flex; flex-direction:row; justify-content: center;}
.part-row img{max-width:300px; margin:20px; width:100%;}



/*=== AUCTIONS-PAGE ===*/
.auctions-page .auctions-container {
	padding: clamp(50px, 5vw, 100px) 0;
}

/*=== BUYING-PAGE ===*/
.buying-page .hero-container .hero-img-container {
	background-image: url("/siteart/hauling-equipment.jpg");
}
.buying-page .employees-container {
	padding: 0 0 clamp(50px, 5vw, 100px);
}

/*=== FINANCING-PAGE ===*/
.financing-page .hero-container .hero-img-container {
	background-image: url("/siteart/financing.jpg");
}
.financing-page .employees-container {
	padding: clamp(50px, 5vw, 100px) 0;
}

/*=== ABOUT-PAGE ===*/
.about-page .hero-container .hero-img-container {
	background-image: url("/siteart/lifts.jpg");
}
.about-page .employees-container {
	padding: clamp(50px, 5vw, 100px) 0;
}
.about-page .brand-container {
	padding: clamp(50px, 5vw, 100px) 0 0;
}

/*=== CONTACT-PAGE ===*/
.contact-page .hero-container .hero-img-container {
	background-image: url("/siteart/harvesting.jpg");
}

/*=== THANK-YOU-PAGE ===*/
.thank-you-page .hero-container .hero-img-container {
	background-image: url("/siteart/hand-shake.jpg");
}
.thank-you-page .employees-grid {
	padding-bottom: clamp(50px, 5vw, 100px);
}

/*=== PRIVACY-POLICY-PAGE ===*/
.privacy-policy-page .hero-container .hero-img-container {
	background-image: url("/siteart/new-loader.jpg");
}
.privacy-policy-page .privacy-policy-section {
	padding: clamp(50px, 5vw, 100px) 0;
}
.privacy-policy-page .privacy-policy-section h3 {
	padding-top: 25px;
}
.privacy-policy-page .privacy-policy-section p {
	padding: 10px 0 5px;
}

@media screen and (max-width: 1150px) {
	header.site-header nav.primary ul * {
		font-size: 16px;
	}

	/*=== Default Page ===*/
	.default-page .featured-banner {
		width: 100%;
		margin-right: 0;
		text-align: center;
		padding: 25px 0 0;
		margin-bottom: 25px;
	}
	.default-page .featured-banner .flex-container {
		flex-direction: column;
	}
	.default-page .featured-banner .featured-image {
		position: relative;
        top: 50px;
        height: 175px;
        object-fit: contain;
        object-position: center;
        right: 0;
        left: 0;
	}
	.default-page .featured-banner h3 {
		max-width: 100%;
	}
}

@media screen and (max-width: 1085px) {
	header.site-header .header-contact-group .phone-number {
		display: none;
	}
}

@media screen and (max-width: 975px) {
	.promo-banner > div {
		flex-direction: column;
	}
	.promo-banner h2 {
		margin: auto;
		text-align: center;
	}
	.promo-banner button.primary-button {
		margin: 25px auto 0;
	}
}

@media screen and (max-width: 915px) {
	.flex-horizontal {
		flex-direction: column
	}
	.desktop-only {
		display: none;
	}
	.mobile-only {
		display: flex;
	}

	/*=== BRANDS ===*/
	.brand-container {
		grid-template-columns: repeat(2, 1fr);
	}

	/*=== EMPLOYEES ===*/
	.employees-grid {
		grid-template-columns: 1fr;
	}

	/*=== SUB-PAGE ===*/
	.sub-page .hero-container.flex-horizontal {
		flex-direction: column-reverse;
	}
	.sub-page .hero-text-container {
		width: 100%;
	}

	/*=== HEADER ===*/
	header.site-header .top-search-bar {
		padding: 6px clamp(50px, 5vw, 100px);
		left: -10px;
		width: calc(100% + 20px);
	}

	/*=== FOOTER ===*/
	footer.site-footer .top-footer {
		gap: 25px;
		align-items: center;
	}
	footer.site-footer .top-footer .footer-nav {
		justify-content: center;
	}
	footer.site-footer .top-footer .logo-container {
		padding: 0;
	}

	/*=== DEFAULT-PAGE ===*/
	.default-page .hero-container {
		height: 100%;
	}
	.default-page .hero-text-container {
		width: 100%;
	}
	.default-page .hero-slider img {
		max-height: 350px;
	}
	.default-page .welcome {
		position: relative;
		top: -115px;
		flex-direction: column-reverse;
	}
	.default-page .welcome .welcome-image {
		height: 325px;
		position: relative;
		top: 115px;
		margin: auto;
	}
	.default-page .welcome .welcome-text {
		margin: 0 25px;
		padding: 150px 25px 35px
	}
	.part-row{flex-direction:column;}
	.part-row img{margin:10px auto; }
	.partners{padding:0 10px; box-sizing:border-box;}
}

@media screen and (max-width: 600px) {
	/*=== HEADER ===*/
	header.site-header .top-search-bar form {
		flex-grow: 1;
		flex-shrink: 1;
		flex-basis: 100%;
		padding-right: 5vw;
	}
	header.site-header .top-search-bar .desktop-socials {
		display: none;
	}
}

@media screen and (max-width: 475px) {
	/*=== DEFAULT-PAGE ===*/
	.default-page .welcome .welcome-image {
		width: calc(100% - 50px);
	}
	.max-width{width:99%;}
}