@charset "utf-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
/***** BEGIN RESET *****/

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;}
.clear {clear: both; height:0px; margin:0;}

/***** END RESET *****/

* {
	-webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
	box-sizing: border-box;
}

body {
	font-family: 'Montserrat', sans-serif!important;
	overflow-x: hidden;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

button,
input { /* 1 */
  overflow: visible;
}

button,
select { /* 1 */
  text-transform: none;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

a {
	text-decoration: none;
	-webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all.3s ease-in-out;
}

.width {width: 1250px; margin: 0 auto; max-width: 95%;}
.wrapper-width {width: 92%; margin: 0 auto; max-width: 1150px; }


a#cta-btn {
    display: block;
    margin: 25px 0;
    color: #000;
	background: #ddd;
    width: 100%;
    text-align: center;
    text-decoration: none;
    padding: 1em;
	font-size: 14px;
    font-weight: 600;
	cursor: pointer;
}
a#cta-btn:hover {
	background: none;
}

/***************************  HEADER STYLES  *************************************/
header .sticky {
  position: fixed;
  z-index: 999999;
  top: 0;
  width: 100%;
}

header {
	width: 100%;
	display: inline-block!important;
	height: auto;
	position: relative;
	margin: 0 auto;
	background: #fff;
	box-shadow: 0px 3px 3px rgba(0,0,0,0.2);
	padding-top: 10px;
}
a.main-logo {
	padding-right: 12px;
}
.hdr-logos {
	width: 100%;
	max-width: 570px;
	display: inline-block;
}
.hdr-logos .main-logo {
	float: left;
}
.hdr-logos .jd-logo {
	float: left;
}
a.main-logo img {
	width: 100%;
	margin: 0 auto;
	max-width: 420px;
	padding: 10px 0 5px 0;
}
img.jd-logo {
	max-width: 120px;
    border-left: 1px solid #ccc;
    padding-left: 12px;
	margin-top: 15px;
}
.hdr-contact {
	float: right;
    background: #1f6937;
	position: absolute;
    right: 0;
    top: 0;
	border-radius: 0 0 0 15px;
}
.hdr-contact:before {
	content: "";
    position: absolute;
    left: -56px;
    bottom: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 65px 65px 0;
    border-color: transparent #1f6937 transparent transparent;
    display: inline-block;
    vertical-align: middle;
	border-radius: 0 0 15px 0;
}
.hdr-contact a {
	color: #ddd!important;
	font-size: 13px;
	padding: 1.5em 15px;
	display: inline-block;
}
.hdr-contact a:hover {
	color: #fff!important;
}
.hdr-contact a .fas {
	color: #000;
	margin-right: 3px;
}
.hdr-contact .drk-green {
	background: #004220;
}
.hdr-contact a.drk-green:hover {
	background: #000;
	color: #fff;
}

/*********************  HOMEPAGE STYLES **************************************/
.hero-wrapper {
	width: 100%;
	display: inline-block;
	margin: 0 auto;
	margin: 20px 0;
	padding: 2em;
}
.hero-wrapper p {
	padding: 2em 0;
	line-height: 26px;
}
.hero-wrapper h1 span {
	color: #000;
	font-size: 20px;
}
.hero-wrapper h1 {
	color: #1f6937;
}

/* quick links */
.quicklinks-wrapper {
	width: 100%;
	display: block;
	margin: 0 auto;
	border-top: 1px solid white;
	border-bottom: 1px solid white;
	background: url('/siteart/quicklinks-bg2.jpg') no-repeat center;
	background-size: cover;
}
.zoom-container {
	width: 50%;
	height: 95px;
	position: relative;
	overflow: hidden;
	display: inline-block;
	font-size: 16px;
	vertical-align: top;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	margin-right: -4px;
	border-bottom: 1px solid #fff;
}

.zoom-container img {
	display: block;
	width: 100%;
	height: auto;
	-webkit-transition: all .5s ease; /* Safari and Chrome */
    -moz-transition: all .5s ease; /* Firefox */
    -ms-transition: all .5s ease; /* IE 9 */
    -o-transition: all .5s ease; /* Opera */
    transition: all .5s ease;
	background: rgba(0, 0, 0, .70)

}
.zoom-container .zoom-caption {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 2;
	-webkit-transition: all .5s ease; /* Safari and Chrome */
    -moz-transition: all .5s ease; /* Firefox */
    -ms-transition: all .5s ease; /* IE 9 */
    -o-transition: all .5s ease; /* Opera */
    transition: all .5s ease;
	text-align: center;
	margin: 0 auto;
	height: 100%;
	background: rgba(0, 0, 0, .20);
	border-left: 1px solid white;
}

.zoom-container .zoom-caption:hover {
	background: none;
}

.zoom-container .zoom-caption p {
	position: absolute;
	word-break: normal;
	left: 0;
	right: 0;
	top: 35%;
	display: block;
	text-align: center;
	font-size: 16px;
	color: #ddd;
	letter-spacing: 1px;
	font-weight:600;
	padding: 5px 0;
	text-transform: uppercase;
	text-shadow: 2px 2px 8px #222222;
    -webkit-text-shadow: 2px 2px 8px #222222;
    -moz-text-shadow: 2px 2px 8px #222222;
    -ms-text-shadow: 2px 2px 8px #222222;
	-webkit-transition: all .5s ease; /* Safari and Chrome */
    -moz-transition: all .5s ease; /* Firefox */
    -ms-transition: all .5s ease; /* IE 9 */
    -o-transition: all .5s ease; /* Opera */
    transition: all .5s ease;
}

.zoom-container .zoom-caption p .fas {
	margin-right: 40px;
	color: #ddd;
}

.zoom-container:hover img {
	-webkit-transform:scale(1.25); /* Safari and Chrome */
    -moz-transform:scale(1.25); /* Firefox */
    -ms-transform:scale(1.25); /* IE 9 */
    -o-transform:scale(1.25); /* Opera */
     transform:scale(1.25);
	background: rgba(0, 0, 0, .3);
}

.zoom-container:hover .zoom-caption p {
	color: #fff;
}

.zoom-container:hover .zoom-caption p:after {
	content: ' \00BB';
	margin-left: 5px;
	color: #fff;
	font-size: 18px;
}


/* mission section */
.mission-wrapper {
	width: 100%;
	display: inline-block;
	margin: 0 auto;
	padding: 4em 0 0 0;
	background: url('/siteart/mission-bg.jpg') no-repeat center;
	background-size: cover;
	background-attachment: fixed;
	text-align: center;
	color: #fff;
}
.mission-wrapper h2 {
	color: #ddd;
	text-transform: uppercase;
	display: block;
	text-shadow: 2px 2px 8px #222222;
    -webkit-text-shadow: 2px 2px 8px #222222;
    -moz-text-shadow: 2px 2px 8px #222222;
    -ms-text-shadow: 2px 2px 8px #222222;
}
.mission-wrapper p {
	font-weight: 700;
	padding: 1.5em 0;
	text-shadow: 2px 2px 8px #222222;
    -webkit-text-shadow: 2px 2px 8px #222222;
    -moz-text-shadow: 2px 2px 8px #222222;
    -ms-text-shadow: 2px 2px 8px #222222;
}
.mission-wrapper a#cta-btn {
	color: #fff;
	padding: 1em;
	border: 1px solid #fff;
	background: none;
	font-size: 18px!important;
	float: left;
	text-align: left;
	width: 46%;
	margin: 2%;
	text-shadow: 2px 2px 8px #222222;
    -webkit-text-shadow: 2px 2px 8px #222222;
    -moz-text-shadow: 2px 2px 8px #222222;
    -ms-text-shadow: 2px 2px 8px #222222;
}
.mission-wrapper .fas {
	float: right;
}
.mission-wrapper a#cta-btn:hover {
	border: 1px solid #ddd;
	text-shadow: none;
	background: rgba(42,42,42,.75);
}
.mission-wrapper img {
	width: 100%;
	margin: 0 auto;
	display: block;
	max-width: 120px;
}
.jd-wrapper {
	width: 100%;
	padding: 1em;
	background: rgba(255,255,255,.5);
	text-align: center;
	margin-top: 50px;
}

/*********************  SHOWROOM STYLES **************************************/
/*===================== 
	hover box styles 
=======================*/
.quicklinks{text-align:center;margin:0 auto;padding:2em 0;width:100%;}
.linkbox{display:inline-block;zoom: 1;*display: inline;width:31.33%;margin:1%;padding:1%;position:relative;text-align:left;height:230px;background:#ddd !important;-moz-box-shadow:5px 5px 5px rgba(0,0,0,0.4);-webkit-box-shadow:5px 5px 5px rgba(0,0,0,0.4);box-shadow:5px 5px 5px rgba(0,0,0,0.4);overflow:hidden;z-index:1;}
.linkbox > img{display:block;position:absolute;z-index:2;height:100%;max-width:100%;max-height:100%;}

.linkslider{width:100%;height:100%;position:absolute;z-index:100;bottom:0;left:0;background: rgba(43,43,43,.9);font-family:'Montserrat', sans-serif;font-size:14px;
-webkit-transform:translateY(230px); -moz-transform:translateY(230px); -ms-transform:translateY(230px); -o-transform:translateY(230px); transform:translateY(230px);
-webkit-transition: transform 0.5s ease; -moz-transition: transform 0.5s ease; -o-transition: transform 0.5s ease; transition: transform 0.5s ease;
}
.linkslider a{display:block;font-size:13px;color:#fff;font-weight:700;padding:12px  10px;text-align: center;border-bottom: 1px solid #ddd;}
.linkslider a:hover{background:#ddd;color:#000;}

.linkbox:hover > .linkslider{-webkit-transform:translateY(30px); -moz-transform:translateY(30px); -ms-transform:translateY(30px); -o-transform:translateY(30px); transform:translateY(30px);}

#jd {position:absolute;width:100%;height:100%;bottom:0;right:0;left:0;z-index:1;background:url("../siteart/manu-logos/john-deere.png") center no-repeat;-moz-background-size:cover;-webkit-background-size:cover;background-size:cover;display:block;}
#sunflower {position:absolute;width:100%;height:100%;bottom:0;right:0;left:0;z-index:1;background:url("../siteart/manu-logos/sunflower.png") center no-repeat;-moz-background-size:cover;-webkit-background-size:cover;background-size:cover;display:block;}




/*********************  CONTACT STYLES **************************************/
/** page wrapper **/
.page-wrapper {
	width: 100%;
	display: inline-block;
	margin: 0 auto;
}
.page-wrapper h2 {
    border-bottom: 2px solid #ccc;
	padding-bottom: 10px;
    padding-left: 10px;
    line-height: 30px;
    margin-top: 50px;
}
.page-wrapper .title h1 {
	display: block;
	text-align: center;
	text-transform: uppercase;
	padding: 2em .5em;
	color: #fff;
	font-size: 40px;
	font-style: italic;
	background: url('/siteart/mission-bg.jpg') no-repeat bottom;
	background-size: cover;
	text-shadow: 5px 5px 18px #222222;
    -webkit-text-shadow: 5px 5px 18px #222222;
    -moz-text-shadow: 5px 5px 18px #222222;
    -ms-text-shadow: 5px 5px 18px #222222;
	font-family: 'Montserrat', sans-serif;
	/*box-shadow: 0px 2px 4px rgba(0,0,0,0.5);*/
}
.page-wrapper p {
	padding: 5em 1.5em;
	line-height: 26px;
	text-align: center;
}
.page-wrapper p a {
	color: #333333;
	text-decoration: underline;
}
.page-wrapper p a:hover {
	text-decoration: none;
}
#contact-form h1{font-size:18px; font-weight:500; padding:20px ; box-sizing:border-box;}
#contact-form h1 a{color:#333;}
#contact-form h1 a:hover{text-decoration:underline;}
.contact-info {
	width: 100%;
	display: inline-block;
	margin: 15px 0;
}

.contact-info .left {
	float: left;
	width: 50%;
	padding: 1rem;
}

.contact-info .left p {
	margin: 20px 0;
	line-height: 24px;
	font-size: 16px;
	padding: 0;
	text-align: left;
	font-family: 'Montserrat', sans-serif;
}

.contact-info .left a {
	color: #6e0200;
	font-weight: 700;
}

.contact-info .left p a:hover {
	color: #000;
	text-decoration: underline;
}

.contact-info .right {
	float: right;
	width: 50%;
}



/*********************  FOOTER STYLES **************************************/

footer {
	width: 100%;
	display: inline-block;
	margin: 0 auto;
	box-sizing: border-box;
	background: #004220;
	padding-top: 3em;
	color: #fff;
	line-height: 26px;
	font-size: 14px;
	border-top: 5px solid #1f6937;
}
footer .col4 p.large {
	color: #31A055;
	display: block;
	margin-bottom: 15px;
	font-size:22px; 
	font-weight:700;
	text-tranform:uppercase;
}
footer .col4 {
	float: left;
	width: 21%;
	margin: 2%;
}
footer .col4 a {
	color: #fff!important;
	display: block;
	font-size: 14px;
}
footer .col4 a:hover {
	text-decoration: underline;
}
.site-host {
	width: 100%;
	display: inline-block;
	margin: 0 auto;
	background: #222;
	padding: 20px 5%;
	margin-top: 3em;
}

.site-host p {
	text-transform: uppercase;
	color: #999;
	letter-spacing: .75px;
	font-size: 9px; 
	line-height: 18px;
	padding: 0 10px;
	text-align: center;
	display: inline-block;
	width: 100%;
	box-sizing: border-box;
	font-family: 'Montserrat', sans-serif;
}


/**********************  MEDIA QUERIES (RWD) ***************************************/
@media screen and (max-width: 1280px) {
/* HEADER */
	a.main-logo img {max-width: 375px;}
	img.jd-logo {max-width: 90px;}
	.hdr-contact a {font-size: 11px;}
	
/* HOMEPAGE */
	.zoom-container .zoom-caption h3, .zoom-container:hover .zoom-caption h3:after {font-size: 12px;}
}

@media screen and (max-width: 1050px) {
/* HEADER */
	header {padding-top: 45px;}
	.hdr-contact {float: none; width: 100%; border-radius: 0; text-align: center;}
	.hdr-contact:before {display: none;}
	a.main-logo {display: block; margin: 0 auto;}
	a.main-logo img {display: block;}
	.hdr-logos .jd-logo {float: right; width: 30%;}
	.hdr-logos {display: inline-block; max-width: none;}
	.hdr-logos .main-logo {float: none; width: 100%;}
	
	.zoom-container {height: 75px;}
	
/* FOOTER */
	footer .col4 {width: 46%; font-size: 12px;}
	footer .col4 a {font-size: 12px;}
}

@media screen and (max-width: 800px) {
/* SHOWROOM */
	.linkbox {width: 47%;}
	
	.page-wrapper .title h1 {font-size: 32px;}
}

@media screen and (max-width: 600px) {
/* HEADER */
	.hdr-contact a {font-size: 8px; padding: 1.5em 8px;}
	a.main-logo img {max-width: 320px; padding: 0 0 5px 0;}
	
/* HOMEPAGE */
	.mission-wrapper a#cta-btn {float: none; width: 100%; margin: 0 auto; margin-top: 10px; margin-bottom: 10px; display: inline-block;}
	.mission-wrapper {background-attachment: inherit;}
	.mission-wrapper h2 {text-shadow: none;}
	.mission-wrapper img {max-width: 90px;}
	.zoom-container {width: 100%;}
	.quicklinks-wrapper.width {max-width: 100%;}
	.zoom-container .zoom-caption {border-left: none;}
}

@media screen and (max-width: 410px) {
	.hdr-contact a {font-size: 7.5px; padding: 1.5em 5px;}
}


@media screen and (max-width: 360px) {
	header {padding-top: 10px;}
	.hdr-contact {display: none;}
}

