* {
	-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;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: #534842;
    color: #fff;
    text-shadow: none;
}
::selection {
    background: #534842;
    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%;}
body {
	font-family: "Barlow", sans-serif;
	height: 100vh;
}
strong {
	font-weight: 700;
}
h1, h2, h3, h4, h5, h6 {
	font-family: "Barlow", sans-serif;
	font-weight: 700;
	font-style: normal;
}
.cursive-text {
	font-family: "Permanent Marker", cursive;
	font-weight: normal;
	font-style: normal;
}
@font-face {
	font-family: 'portago_itc_stdregular';
	src: url('/fonts/portago-itc-std-regular-webfont.woff2') format('woff2'),
			url('/fonts/portago-itc-std-regular-webfont.woff') format('woff');
	font-weight: normal;
	font-style: normal;
}
.logo-font {
	font-family: "portago_itc_stdregular", sans-serif!important;
	font-weight: 400;
	font-style: normal;
}
.large-sub-heading-text {
	font-size: 62px;
    line-height: 52px;
	transition: .3s ease all;
}
.small-sub-heading-text {
	font-size: 26px;
    line-height: 34px;
}
h1 {font-size: 48px;line-height: 50px;}
h2 {font-size: 26px;line-height: 34px;}
h3 {font-size: 35px;line-height: 37px;}
h4 {font-size: 26px;line-height: 34px;}
.button-group {
	display: flex;
	gap: 20px;
	padding-top: 25px;
}
button.primary-button {
	font-size: 18px;
	font-weight: bold;
    border-radius: 10px 0 10px 0;
    transition: all ease .3s;
    padding: 7px 17px;
    background-color: #534842;
    color: #ffffff;
    border: 1px solid #534842;
}
button.primary-button:hover {
	background-color: #ffffff;
	color: #534842;
    border-radius: 0;
}
button.secondary-button {
	font-size: 18px;
	font-weight: bold;
    border-radius: 10px 0 10px 0;
    transition: all ease .3s;
    padding: 7px 17px;
    background-color: #ffffff;
    color: #000000;
    border: 1px solid #ffffff;
}
button.secondary-button:hover {
	background-color: #534842;
	color: #ffffff;
    border-radius: 0;
}

/*=== 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 {
	list-style: none;
    color: #ffffff;
    background-color: rgba(0, 0, 0, .5);
    padding: 5px 20px 8px;
    width: max-content;
}
ul.breadcrumb li {
	display: inline;
	font-size: 16px;
	line-height: 16px;
}
ul.breadcrumb li+li:before {
	padding: 8px;
	content: "/\00a0";
}
ul.breadcrumb li a {
	text-decoration: none;
}
ul.breadcrumb li a:hover {
	text-decoration: underline;
}
.logo-container .logo {
	width: 100%;
	max-width: 275px;
	height: 100%;
    object-fit: contain;
    object-position: center;
}
.logo-container {
	position: absolute;
	top: -20px;
    left: 0;
    z-index: 50;
}
a.logo-container {
	line-height: 0;
}
.title-block {
	padding-left: 20px;
    border-left: 8px solid #bda78f;
	margin-bottom: 25px;
}
.highlight-color {
	color: #8D7053;
}
p.paragraph {
	margin-top: 10px;
}
.sub-page-hero {
	background: linear-gradient(to bottom, rgb(83, 72, 66), rgba(255, 255, 255, 0)), url("/siteart/jd-tractor.jpg");
	min-height: 175px;
	padding: 175px 0 25px;
	background-position: center;
	background-size: cover;
}
.half-container {
	padding: 5vw;
	height: 100%;
}
.ghost-logo-container {
	background-image: url(/siteart/big-tractor-logo-silhouette.png);
    background-position: calc(100% + 30px) calc(100% + 65px);
    background-repeat: no-repeat;
    background-size: auto 450px;
    padding: 5vw 0;
}
.left-border-container {
	margin: 5vw 0 5vw 5vw;
	padding-left: 20px;
	border-left: 8px solid #bda78f;
}
.top-row {
	padding: 25px;
	gap: 25px;
	box-shadow: 0 20px 20px -20px #c3c3c3;
}
.top-row .large-sub-heading-text {
	font-size: 100px;
	line-height: 86px;
}
.map {
	min-height: 300px;
}
.about-image {
    background-image: url("/siteart/old-case-tractor.jpg");
    background-position: center;
    background-size: cover;
	min-height: 300px;
}

/*=== HEADER ===*/
header.site-header {
	background-color: #534842;
}
header.site-header .nav-group {
	padding: 20px 0 10px;
	position: relative;
}

/*=== FOOTER ===*/
.brand-container {
	background-color: #f0f0f0;
	padding: 25px 0;
	overflow: hidden;
}
.brand-container .large-sub-heading-text {
	font-size: 40px;
	line-height: 40px;
}
.brand-container .small-sub-heading-text {
	font-size: 20px;
	line-height: 20px;
}
.brand-container .slick-track {
	padding: 0!important;
}
.brand-container .slick-list {
	width: 100%!important;
	max-width: unset!important;
}
.brand-container .slick-slider {
	padding: unset!important;
	width: 100%!important;
	margin-bottom: unset!important;
}
.brand-container .brand {
	text-align: center;
	background-color: #534842;
	margin: 10px;
	padding: 20px 10px;
	color: #fff;
}
.brand-container .brand img {
	height: 100%;
	max-height: 75px;
	margin: auto;
}
footer.site-footer .top-footer {
	background-color: #534842;
	color: #ffffff;
}
footer.site-footer .top-footer .logo {
	width: 150px;
}
footer.site-footer .footer-links{
	gap: 10px 40px;
}
footer.site-footer .bottom-footer{
	padding: 10px 0;
}
footer.site-footer .copyright-container {
	font-size: 14px;
}

/*=== PAGE STYLES ===*/
.sub-page:not(.inventory-page) {
	font-weight: 400;
	font-style: normal;
	font-size: 18px;
	line-height: 24px;
}

/*=== DEFAULT-PAGE ===*/
.default-page {
	font-weight: 400;
	font-style: normal;
	font-size: 18px;
	line-height: 24px;
}
.default-page .hero-container {
	background-image: linear-gradient(to bottom, rgb(83, 72, 66), rgba(255, 255, 255, 0)), url("/siteart/tractor-feeder.jpg");
    background-position: center;
    background-size: cover;
    padding: 0 0 75px;
    min-height: 375px;
    max-height: 400px;
    transition: .3s ease all;
	color: #ffffff;
}
.default-page .hero-container .hero-text {
	font-size: 100px;
	line-height: 86px;
}
.default-page .equipment-tile {
	background-image: linear-gradient(to right, rgb(0, 0, 0), rgba(255, 255, 255, 0)), url("/siteart/tractor-on-trailer.jpg");
    background-position: center;
    background-size: cover;
    padding: 5vw 20px;
	color: #ffffff;
	margin: 5vw auto;
}
.default-page .equipment-tile .equipment-text {
	writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: scale(-1, -1);
	align-self: center;
	padding-left: 50px;
	padding-right: 30px;
}
.default-page .equipment-tile .equipment-info {
	width: 50%;
}

/*=== ABOUT ===*/
.about-page .about-container {
	gap: 5vw;
	padding: 5vw 0;
}
.about-page .about-image {
	background-image: url("/siteart/luce-family.jpg");
    background-position: center;
    background-size: cover;
	background-repeat: no-repeat;
	min-height: 300px;
}
.about-page .services-container {
	padding: 5vw 0;
}

/*=== INVENTORY ===*/
.inventory-page {
	font-family: "Barlow", sans-serif!important;
}
.inventory-page .services-container {
	padding: 5vw 0;
}

/*=== SERVICES ===*/
.service-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 25px;
}
.service-grid article {
	box-shadow: 0 0 20px 0px #c3c3c3;
	padding: 20px 30px;
	background-color: #ffffff;
}
.service-grid article.find {
	background-image: url("/siteart/icon/search-icon.png");
	background-repeat: no-repeat;
	background-size: auto 66%;
	background-position: calc(100% - 30px) calc(100% - 20px);
}
.service-grid article.service {
	background-image: url("/siteart/icon/repair-icon.png");
	background-repeat: no-repeat;
	background-size: auto 66%;
	background-position: calc(100% - 30px) calc(100% - 20px);
}
.service-grid article.trades {
	background-image: url("/siteart/icon/parts-icon.png");
	background-repeat: no-repeat;
	background-size: auto 66%;
	background-position: calc(100% - 30px) calc(100% - 20px);
}

/*=== TRADE-IN ===*/
.trade-in-page .loader-tractor {
    background-image: url("/siteart/jd-loader-tractor.jpg");
    background-position: center;
    background-size: cover;
	min-height: 300px;
}

/*=== EQUIPMENT-REQUEST ===*/
.jd-no-pto-image {
	background-image: url("/siteart/jd-tractor-no-pto.jpg");
    background-position: center;
    background-size: cover;
	min-height: 300px;
}

/*=== PARTS ===*/
.repair-tractor-image {
	background-image: url("/siteart/repairing-tractor.jpg");
    background-position: center;
    background-size: cover;
	min-height: 300px;
}

@media screen and (max-width: 875px)  {
	.flex-horizontal {
		flex-direction: column
	}
	.desktop-only {
		display: none;
	}
	.mobile-only {
		display: flex;
	}

	.left-border-container {
		margin: 5vw 0;
	}
	
	/*=== HEADER ===*/
	.logo-container {
		top: -5px;
	}
	.logo-container .logo {
		max-width: 150px;
	}

	/*=== FOOTER ===*/
	footer.site-footer .footer-links {
		padding: 0 0 25px 0;
	}
	footer.site-footer .footer-links.justify-right {
		justify-content: flex-start;
	}

	/*=== DEFAULT ===*/
	.default-page .equipment-tile .equipment-text {
		padding-left: 20px;
		padding-right: 0px;
	}
	.default-page .equipment-tile .equipment-info {
		flex-grow: 1;
		flex-shrink: 1;
		flex-basis: 100%;
	}

	/*=== ABOUT ===*/
	.about-page .about-image {
		min-height: 475px;
		transition: .3s ease all;
	}

	/*=== SERVICES ===*/
	.service-grid {
		grid-template-columns: repeat(1, 1fr);
	}
}

@media screen and (max-width: 650px)  {
	header.site-header .nav-group {
		padding: 2px 0 10px;
	}
}

@media screen and (max-width: 500px)  {
	.top-row .large-sub-heading-text {
		font-size: 75px;
		line-height: 61px;
	}
	
	/*=== DEFAULT ===*/
	.default-page .equipment-tile {
		flex-direction: column;
	}
	.default-page .equipment-tile .equipment-text {
		transform: unset;
		writing-mode: unset;
		padding-left: unset;
		text-align: left;
		align-self: flex-start;
	}
	.default-page .equipment-tile .equipment-info {
		width: unset;
	}

	/*=== ABOUT ===*/
	.about-page .about-image {
		min-height: 300px;
		transition: .3s ease all;
	}
}