/* BEGIN RESET */
html {
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
            box-sizing: border-box;
}

*,
*::before,
*::after {
	-webkit-box-sizing: inherit;
	   -moz-box-sizing: inherit;
			box-sizing: inherit;
}
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, address {display:block;} 

/* COLORS */

/* Highlight Styles */
::-moz-selection {
    background: #000; 
    color: #fff;
    text-shadow: none;
}
::selection {
    background: #000;
    color: #fff;
    text-shadow: none;
}

/* Shared Styles */
a {
	font-style: inherit;
    color: inherit;
	text-decoration: none;
}
body {
	font-family: "roboto", sans-serif!important;
	font-style: normal;
	font-size: 16px!important;
	color: #000000;
}
h1, h2, h3 {
	color: #ffffff;
}
h1 {
	font-family: "alkaline", sans-serif;
	font-weight: 800;
	font-style: normal;
	font-size: 46px;
    line-height: 50px;
}
h2 {
	font-size: 19px;
}
h3 {
	font-size: 28px;
}
h4 {
	font-size: 24px;
}
b {
	font-weight: 700;
}
p {
	font-weight: 400;
}
button {
	height: 35px;
    border-radius: 40px;
    padding: 0px 20px;
    font-weight: 800;
	cursor: pointer;
}
button.primary {
	border: 2px solid #009244;
	background-color: #009244;
	color: #ffffff;
	width: 100%;
	transition: .3s ease all;
}
button.primary:hover {
	background-color: #ffffff;
	color: #009244;
}
button.secondary {
	border: 2px solid #ffffff;
	background-color: #ffffff;
	color: #000000;
	transition: .3s ease all;
}
button.secondary:hover {
	background-color: #009244;
	color: #ffffff;
}

/* Flex */
.flex-container {
	display: flex;
	flex-direction: row;
}
.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;
}

/* Horizontal Align */
.justify-center {
	justify-content: center;
}
.justify-right {
	justify-content: flex-end
}
.justify-left {
	justify-content: flex-start
}
.justify-between {
	justify-content: space-between;
}

/* Vertical Align */
.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;
}

/* Text Align */
.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;
}

/* Custom Styles */
/* Header */
header.site-header .triangle-right {
	position: relative;
}
header.site-header .triangle-right .triangle {
	position: absolute;
	height: 100%;
    top: 0;
    bottom: 0;
	left: -1px;
    z-index: 100;
    width: 100px;
	clip-path: polygon(0% 0%, 50% 0%, 100% 50%, 50% 100%, 0% 100%);
	background-color: #ffffff;
}
header .logo {
	background-color: #ffffff;
	height: 100px;
	max-width: 215px;
    width: auto;
}
header .logo img {
	height: 100px;
	width: auto;
	padding: 5px 5px 5px 0px;
	margin-left: 100px;
}
header .nav-group {
    background-color: #009444;
}
header .header-contact-container {
	background-color: #000000;
}
header .header-contact {
	color: #ffffff;
	font-weight: 900;
	margin-right: 115px;
	line-height: 16px;
}
header .header-contact p {
	padding: 0px 5px;
    margin: 10px;
}
header .header-contact p:last-of-type {
	padding: 0px 0px 0px 10px;
    margin: 10px 0px 10px 0;
}
header .header-contact p:not(:first-of-type) {
	border-left: 2px solid #ffffff;
}

/* Footer*/
footer {
	line-height: 24px;
    background-color: #ffffff;
}
footer section:first-of-type {
	max-width: 1366px;
    width: 80%;
    margin: 10px auto;
}
footer .address {
	text-decoration: underline;
}
footer .sub-footer {
	background-color: #000000;
	color: #ffffff;
	padding: 5px 0;
}
footer .logo {
	background-image: url("../siteart/logo.png");
	background-color: #ffffff;
	height: 100px;
	max-width: 215px;
    width: auto;
}
footer .logo img {
	height: 100px;
	width: auto;
	padding: 5px 0 5px 5px;
	
}

/* Global */
.hero {
	background-size: cover;
	width: 100%;
	height: 400px;
    background-position: center;
}
.hero-bar {
	padding: 25px 100px;
    background: rgba(0,0,0,0.55);
}
.hero-bar .text-wrap {
	max-width: 1366px;
	width: 100%;
	margin: 0 auto;
}
.hero-bar h1 {
	margin: 0 5px 10px 0;
	line-height: 50px;
}

/* Default */
.default-page .hero {
	background-image: url("../siteart/6230_tractor.jpg");
	background-size: cover;
    background-position: center;
}
.default-page .divider {
	height: 1px;
	background-color: #000000;
}
.default-page .button-container {
	position: relative;
	height: 350px;
}
.default-page .button-group {
	position: absolute;
	height: 100%;
	left: 0;
	right: 0;
	bottom: 70px;
}
.default-page .left-page-button, .right-page-button {
	background-size: cover;
	width: 100%;
    background-position: center;
	cursor: pointer;
}
.default-page .left-page-button h3, .right-page-button h3 {
	background-color: rgba(0,0,0,0.50);
    width: 100%;
}
.default-page .left-page-button h3:hover, .right-page-button h3:hover {
	background-color: unset;
}
.default-page .left-page-button {
	clip-path: polygon(0 0, 100% 20%, 100% 100%, 0% 100%);
	background-image: url("../siteart/john-deere-7810-tractor.jpg");
}
.default-page .right-page-button {
	clip-path: polygon(0 20%, 100% 0, 100% 100%, 0% 100%);
	background-image: url("../siteart/kuhms-bale-accumulator.jpg");
}
.default-page .about {
	max-width: 650px;
	margin: 15px 30px 15px 100px;
	padding: 50px 0 100px;
}
.default-page .about p {
	margin: 15px 0 25px;
}
.default-page-footer footer {
    position: relative;
	margin-top: 20px;
}

/* Contact */
.contact-page .hero {
	background-image: url("../siteart/bale-wrapper.jpg");
}
.contact-page .contact-group {
	margin: 75px auto;
	width: 80%;
	max-width: 1366px;
	background-color: #009444;
}
.contact-page .contact-group .contact-info {
	color: #ffffff;
	padding: 0px 35px;
}
.contact-page .contact-group .contact-info div {
	margin: 0 10px;
}
.contact-page .contact-group .contact-form {
	background-color: #ffffff;
	width: 100%;
	padding: 0px 35px 0px 0;
}
.contact-page .contact-info .fa-facebook {
	font-size: 20px;
}
.contact-page input {
	border: 1px solid #9f9f9f;
    padding: 5px;
}
.contact-page .required {
	color: #FF0004;
}
.contact-page textarea {
	resize: vertical;
    height: 75px;
}
.contact-page textarea, .contact-page input {
	margin-bottom: 10px;
}
.contact-page label {
	margin-bottom: 5px;
}
.contact-page input[type="submit"] {
	background-color: #000000;
    color: #ffffff;
    padding: 10px 0;
    cursor: pointer;
    margin-top: 5px;
	border: 1px solid #000000;
}
.contact-page input[type="submit"]:hover {
	background-color: #ffffff;
    color: #000000;
}

/* Thank You */
.thank-you-page .contact-group .contact-form {
	padding: 50px 35px 50px 0;
}

/* Auctions Page */
.auctions-page {
	max-width: 1366px;
	margin: 25px auto;
    width: 80%;
    max-width: 1366px;
}

@media screen and (max-width: 930px)  {
	/* Contact */
	.contact-page .contact-group .contact-info.flex-horizontal {flex-direction: column;}
	.contact-page .contact-group .contact-info div {margin: 15px 0;}
	
	/* Thank You */
	.thank-you-page .contact-group .contact-form {padding: 100px 35px 100px 0;}
}

@media screen and (max-width: 870px)  {
	header .logo img {
		margin-left: 25px;
	}
	header .header-contact {
		margin-right: 25px;
	}
}

@media screen and (max-width: 800px) {
	h1 {
		font-size: 36px;
	}
	h2 {
		font-size: 20px;
	}
	h3 {
		font-size: 24px;
	}
	h4 {
		font-size: 20px;
	}
	
	.flex-horizontal {
		flex-direction: column;
	}
	
	.desktop-only {
		display: none;
	}
	.mobile-only {
		display: flex;
	}
	
	/* Header */
	header .logo {
		margin: auto;
		height: unset;
	}
	header .logo img {
		margin: 10px auto 5px;		
	}
	header .header-contact {
		margin: auto;
	}
	
	/* Footer */
	footer {
		margin-top: 20px;
	}
	/* .default-page-footer footer {
		margin-top: 0;
	} */
	
	/* Global */ 
	.hero {
		height: unset;
	}
	.hero-bar {
		padding: 75px 0 25px;
	}
	.hero-bar .text-wrap {
		align-items: flex-start;
		width: 75%;
	}
	.hero-bar h1 {
		margin: 0;
		line-height: 40px;
	}
	.hero-bar h2 {
		margin: 10px 0px 20px;
	}
	
	/* Default */
	.default-page .about {
		margin: auto auto;
		padding: 50px 0;
		width: 75%;
	}
	.default-page .button-container {
		position: unset;
		height: unset;
	}
	.default-page .button-group {
		flex-direction: column-reverse;
		position: unset;
		left: unset;
		right: unset;
		bottom: unset;
		height: unset;
	}
	.default-page .left-page-button, .default-page  .right-page-button {
		height: 185px;
		clip-path: unset;
	}
	.default-page .map iframe {
		height: 300px;
	}
	
	/* Contact */
	.contact-page .contact-group .contact-form {
		padding: unset;
		padding-bottom: 30px;
	}
	.contact-page .contact-group .contact-info {
		width: 100%;
	}
}

@media screen and (max-width: 400px)  {
	footer section:first-of-type {
		flex-direction: column;
	}
	footer section:first-of-type .text-right {
		text-align: center;
	}
	footer .logo img {
		margin: 30px 0 0;
	}
}
