﻿/*===================== 
	Color information
	
	-
	-
	-
	-
		 
=======================*/
/*===================== 
	CSS reset/normalize 
=======================*/

/**Correct `block` display not defined in IE 8/9.**/
article,aside,details,figcaption,figure,footer,header,hgroup,
main,nav,section,summary {display: block;}
pre {white-space: pre-wrap;}
small { font-size: 80%;}


/*===================== 
	@Font-Face 
=======================*/


/*===================== 
	base styles 
=======================*/

html {
    font-family: Arial, sans-serif; /* 1 */
    -ms-text-size-adjust: 100%; /* 2 */
    -webkit-text-size-adjust: 100%; /* 2 */
	}

body {
    margin: 0;
	}

svg:not(:root) {overflow: hidden;/*reset*/}
	
/* clear floats */ 
.group:before,
.group:after {content: ""; display: table;} 
.group:after {clear: both;}
.group {zoom: 1;}	
.clear { clear: both;}
	
/*image replacement*/
.hide-text {
	text-indent:  100%;
	white-space:  nowrap;
	overflow:  hidden;
	}	

hr {
    -moz-box-sizing: content-box;
    box-sizing: content-box;
	border-style: solid;
    height: 0;
	} 

img { border: 0;} 
	
/*===================== 
	typography 
=======================*/

h1, h2, h3, h4, h5, h6 {
	margin: 0;
	padding: 0;
	}
	h1 {font-size: 2em;}

p {
	font-family: 'Barlow', sans-serif;
	font-size: 16px;
}

	
h1 {
	font-family: 'Oswald', sans-serif;
	font-size: 36px;
}
		

h2 {
	font-family: 'Oswald', sans-serif;
	font-size: 28px;
}

	
h3 {
	font-family: 'Oswald', sans-serif;
	font-size: 24px;
}


h4 {
	font-family: 'Barlow', sans-serif;
	font-size: 18px;
	font-weight: 400;
}


h5 {
}


h6 {
}


.green {color: #257d41;}
.dark-green {color: #1b5b2f;}
.black {color: #000000;}
.white {color: #ffffff;}
.center {text-align: center;}
.right {text-align: right;}
.bold {font-weight: 800;}
.semi-bold {font-weight: 600;}
.tracking {letter-spacing: 1px;}
.caps {text-transform: uppercase;}

/*===================== 
	link styles 
=======================*/

a:focus {outline: thin dotted;/*reset*/
	}
	
a,
a:link, 
a:visited, 
a:active {
	outline: 0;/*reset*/
    color: #aaa; 
    text-decoration:none;
	}
	a:hover  {
		outline: 0;/*reset*/
		text-decoration: none;
		color: #ccc;
		}  

/*===================== 
	header styles 
=======================*/
header {
	margin: 0 auto;
	width: 100%;
	max-width: 1600px;
	padding: 15px;
    box-sizing: border-box;
}
.header-wrap_contact {
    text-align: right;	
}
.header-contact {
	display: inline-block;
    padding: 10px;
    text-align: right;
	margin: 5px 0px 5px 20px;
    box-sizing: border-box;
}
.header-logo {}


/*===================== 
	nav styles 
=======================*/

nav.primary {
	padding: 0;
	display: block;
	margin: 0 auto;
	position: relative;
	text-align: right;
}
nav ul {
	padding: 10px;
    margin: 0;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    font-size: 16px !important; 
    letter-spacing: 1px;
}
nav > ul > li {
	display: inline-block;
	list-style-type: none; 
	padding-left: 15px;
}
nav ul li a {
	font-weight: 600;
	color: #000000!important;
}	
			
nav ul li a:hover {
	color: #257d41!important;
	border-bottom: 1px solid #257d41;
	padding-bottom: 3px;
}


/* Appearance of the sub-level links */

nav.primary ul li li a { 
	line-height: ;
	color: ;
	text-align:;
	font-size: ;
	font-weight:;
	}
	
nav.primary ul li li a:hover { 
	color: ;
	text-align: ;
	font-size:  ;
	font-weight: ;
	}
	
nav.primary ul li li:hover { 
	}
	
	
/* This controls the Primary nav dropdowns for sublinks. Should not have to edit this too much */
nav.primary ul ul {
	display: none;
    position: absolute; 
	max-width: 235px;
	/*background: ;*/
	/*margin-top: 21px;*/
}
nav.primary ul ul ul {
    position: absolute; 
    left: 100%;
    top:0; 
}
nav.primary ul li:hover > ul {  
    display: block;
    line-height:18px; 
    z-index: 2000 !important;
}
nav.primary ul ul li {
    float: none; 
    position: relative;
	display:block;
    margin:0;
	width:100%;
}
.dropdown_arrow {
	display: inline-block !important;
}
.dropdown_style {}


/******** End of primary Nav ***************/


/*===================== 
	mobile nav
=======================*/

#menu-button { /* initially will need to be hidden */
	display: block;
	font-size: 32px;
	width:100%;
	position: relative;
	z-index: 400;/* needs to be lower than nav.mobile, adjust as needed */
	background: transparent;
	text-align: right;
	min-height: 0 !important;
}
#menu-button a {
	color:#000;
	text-decoration: none;
	text-align: right !important;
}
nav.mobile {
	display:block;
	position: fixed;
	top: 0;
	left: -250px;
	width: 250px;
	height: 100%;
	background: #000;
	z-index: 500; /* needs to be higher than #menu-button, adjust as needed */
	overflow:auto;
}
nav.mobile h3 { /* Menu header styles */
	position: relative;
	padding: 12px 10px;
	color: #fff;
	font-size: 1.2em;
	font-weight: 400;
	border-bottom: 4px solid #222;
}
nav.mobile .menu-toggle { /* Menu close button */
	position: absolute;
	top: 12px;
	right: 10px;
	display: inline-block;
	padding: 6px 9px 5px;
	font-family: Arial, sans-serif;
	font-weight: 700;
	line-height: 1;
	background: #222;
	color: #999;
	text-decoration: none;
	vertical-align: top;
}
.menu-toggle {
	text-align: right;
	font-size: 28px;
	color: #000;
}
.menu-toggle a:hover {
	color: #000 !important;
}
.close_mobile {
	font-size: 26px !important;
	font-weight: 900;
	text-align: right;
}
nav.mobile .menu-toggle:hover { /* Menu close button on hover */
	color: #fff;
}
nav.mobile ul {
	list-style: none;
	font-weight: 300;
	margin:0;
	padding:0;
}
nav.mobile ul li {
	padding: 8px 0 6px 0 !important;
}
nav.mobile ul li a {
	position: relative;
	display: block;
	color: #257d41!important;
	font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
	font-size: 18px;
	letter-spacing: 1px;
	padding-bottom: 10px;
	padding-top: 10px;
}
nav.mobile ul li a:hover {
	background-color: #257d41;
	color: #000000!important;
}
nav.mobile ul li li a { /* appearance of the sub-level links */
	position: relative;
	display: block;
	padding: 0px 10px 0px 15px;
	color: #000;
	text-decoration: none;
	text-transform: none !important;
}
nav.mobile ul li li li a { /* appearance of third level sub-level links if needed */
	background: #666;
	position: relative;
	display: block;
	padding: 10px 10px 10px 25px;
	color: #000;
	text-decoration: none;
}
nav.mobile ul li span.click{/* dropdown menu idicator arrow be sure to include this image with your image files */ 
	background:url(../siteart/menu-dropdown-arrow.png) 10px 12px no-repeat;
	background-size:55%;
	position:relative;
	display:block;
	float:right;
	margin:-44px 0 0 0;
	cursor:pointer;
	z-index: 12399994;
	width:44px;
	height:44px;
	-webkit-transition:background-size .3s ease-in-out;
	-moz-transition:background-size .3s ease-in-out;
	transition:background-size .3s ease-in-out;
}
nav.mobile ul li span.click:hover{
	background-size:60%;
}





/*===================== 
	home page styles 
=======================*/
.button-wrapper {
	max-width: 1600px;
	padding: 20px;
	display: block;
	margin: auto;
}
.inventory-btn {
	background-color: transparent;
	color: #257d41;
	border: 4px solid #1b5b2f;
	display: block;
	margin:0px auto 25px auto;
	padding: 25px 40px;
	width: 90%;
}
.inventory-btn:hover {
	background-color: #1b5b2f;
	color: #FFFFFF;
}
.inventory-icon {
	display: block;
	margin: auto;
	padding: 5px;
	max-height: 80px;
}

.vermeer-bkgd {
	-webkit-clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%);
	clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%);
	background-color: rgba(27, 91, 47, 0.8);
	padding: 100px 35px 100px 25%;
	text-align: right;
}
.vermeer-logo {
	max-width: 175px;
    float: right;
    margin-bottom: 20px;
}
.learn-btn {
	background-color: transparent;
	color: #FFFFFF;
	border: 2px solid #FFFFFF;
	padding: 10px 25px;
	font-family: 'Oswald', sans-serif;
	font-size: 20px;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-top: 30px;
	margin-bottom: 10px;
}
.learn-btn:hover {
	background-color: #FFFFFF;
	color: #257d41;
}
.vermeer-bkgd_mobile {
	background-color: #1b5b2f;
	padding: 35px;
	margin-bottom: 25px;
}
.vermeer-logo_mobile {
	max-width: 175px;
    margin-bottom: 20px;
}
.learn-btn_mobile {
	background-color: transparent;
	color: #FFFFFF;
	border: 2px solid #FFFFFF;
	padding: 10px 25px;
	font-family: 'Oswald', sans-serif;
	font-size: 20px;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-top: 30px;
	margin-bottom: 10px;
}
.learn-btn_mobile:hover {
	background-color: #FFFFFF;
	color: #257d41;
}
.quality-container {
	background-image: url("../siteart/quality-tractors.jpg");
	background-position: center;
}
.quality-bkgd {
	-webkit-clip-path: polygon(0 0, 75% 0, 100% 100%, 0% 100%);
	clip-path: polygon(0 0, 75% 0, 100% 100%, 0% 100%);
	background-color: rgba(27, 91, 47, 0.8);
	padding: 115px 25% 100px 35px;
}
.contact-btn {
	background-color: #257d41;
	color: #FFFFFF;
	border:  2px solid #257d41;
	padding: 10px 25px;
	font-family: 'Oswald', sans-serif;
	font-size: 20px;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-top: 30px;
	margin-bottom: 10px;
}
.contact-btn:hover {
	background-color: #FFFFFF;
	color: #257d41;
	border:  2px solid #FFFFFF;
}
.quality-bkgd_mobile {
	background-color: #1b5b2f;
	padding: 35px;
}
.contact-btn_mobile {
	background-color: #257d41;
	color: #FFFFFF;
	border:  2px solid #257d41;
	padding: 10px 25px;
	font-family: 'Oswald', sans-serif;
	font-size: 20px;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-top: 30px;
	margin-bottom: 10px;
}
.contact-btn_mobile:hover {
	background-color: #FFFFFF;
	color: #257d41;
	border:  2px solid #FFFFFF;
}
.quality-header {
	background-color: transparent;
	color: #FFFFFF;
	border: 2px solid #FFFFFF;
	padding: 15px;
	margin-top: 10px;
	margin-bottom: 30px;
}
.product-header {
    display: grid;
    grid-template-columns: minmax(20px, 1fr) auto minmax(20px, 1fr);
    align-items: center;
    text-align: center;
    grid-gap: 20px;
    width: 100%;
	color: #257d41;
}

.product-header:before,
.product-header:after {
    content: '';
    border-top: 2px solid;
}
.product-logos {
	padding: 10px;
	margin: auto;
}
.product-wrapper {
	max-width: 1600px;
	padding: 20px;
	display: block;
	margin: auto;
}


.cycle-slideshow {
    width:100%;
    height:auto;
}
.cycle-slideshow img {
    width:100%;
    height:auto;
}


/*===================== 
	contact page styles 
=======================*/
#formpage {
vertical-align:top;
}
#formpage td {
vertical-align:top;
padding:3px 5px;
}
#formpage input {
	padding:6px 5px;
	border-radius:5px;
	-moz-border-radius:5px;
	-webkit-border-radius:5px;
	border:1px solid #8e8d8d;
	font-family:Arial, Helvetica, sans-serif;
	color:#8e8d8d;
	font-size:12px;
}
.name {width: 100%;}
.email {width: 49%; float: left; margin-right: 2%;}
.phone {width: 49%; float: right;}
.address {width: 100%;}
.city {width: 32%; float: left; margin-right: 2%!important;}
.state {width: 32%; float: left; margin-right: 2%;}
.zip {width: 32%; float: right;}
.comments {width: 100%;}
.contact_form {
	border: 2px solid #1b5b2f;
	border-radius: 0px;
	margin: 15px auto;
	padding: 15px;
}
.submit-button {
	display: block;
	margin: 15px auto;
	padding: 15px 30px;
	border: 2px solid #1B5B2F;
	font-family: 'Oswald', sans-serif;
	font-size: 16px;
	background-color: transparent;
	color: #1B5B2F;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 1px;	
}
.submit-button:hover {
	background-color: #1B5B2F;
	color: #FFFFFF;
}
.form-wrapper {
	max-width: 1600px;
	display: block;
	margin: 40px auto;
	margin-bottom: 100px;
}
.locations-wrapper {
	max-width: 1600px;
	display: block;
	margin: 25px auto;
}
.stevensville-wrap {
	padding: 30px;
}
.broadus-wrap {
	padding: 30px;
}
.stevensville-header {
	border-bottom: 1px solid #257d41;
    padding-bottom: 3px;
    margin-top: 25px;
    margin-bottom: 15px;
}
.broadus-header {
	border-bottom: 1px solid #257d41;
    padding-bottom: 3px;
    margin-top: 25px;
    margin-bottom: 15px;
}
.email-link {
	color: #1B5B2F;
}
.email-link:hover {
	color: #257D41;
}


/*===================== 
	thank you styles 
=======================*/
.thank-wrapper {
	max-width: 1600px;
	display: block;
	margin: 50px auto 100px auto;
	text-align: center;
}
.thank-btn {
	display: block;
	margin: 15px auto;
	padding: 15px 30px;
	border: 2px solid #1B5B2F;
	font-family: 'Oswald', sans-serif;
	font-size: 16px;
	background-color: transparent;
	color: #1B5B2F;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 1px;	
}
.thank-btn:hover {
	background-color: #1B5B2F;
	color: #FFFFFF;
}


/*===================== 
	inventory page styles 
=======================*/

.attachment-search .search-checkboxes .scroll-list {
    padding: 10px 20px;
}
.full #wide_col {
	max-width: 1800px!important;
}
.attachment-search {
    background-color: #ddd;
    box-sizing: border-box;
    width: 25%;
    float: left;
    max-width: 460px!important;
}

/*===================== 
	footer styles 
=======================*/

footer {
	margin: 0;
	width: 100%;
}
.footer-wrapper {
	background-color: #1b5b2f;
	padding: 20px 40px;
}
.footer-logo {
	max-width: 200px;
}
.footer-header {
	border-bottom: 1px solid #ffffff;
	padding-bottom: 10px;
	font-family: 'Oswald', sans-serif;
}

	
a.footerlink:link,
a.footerlink:visited, 
a.footerlink:active {
	text-decoration: none; 
	font-size: 12px;
	color: #fff;
	letter-spacing: .5px;
	}
	a.footerlink:hover {
		text-decoration: none; 
		font-size: 12px;
		color: #d6d6d6;
		}

.footertext {
	font-size: 12px; 
	color: #FFFFFF;
	letter-spacing: .5px;
}

.smallfootertext {
	font-size: 10px; 
	color: #FFFFFF;
	letter-spacing: .5px;
}

.divfooter {
	max-width: 750px;
    text-align: left;
    margin-top: 20px;
}

/*========================= 
	 Responsive styles 
===========================*/

/*==========  Non-Mobile First Method  ==========*/

/* Large Devices, Wide Screens */
@media only screen and (max-width : 1200px) {


}


/* Medium Devices, Desktops */
@media only screen and (max-width : 992px) {
	.header-logo {display: block; margin: auto;}
	.header-wrap_contact {text-align: center;}
	.header-contact {text-align: center; margin: 0px;}
	.divfooter {text-align: center; max-width: 992px}
	.footer-logo {display: block; margin: auto;}
	.inventory-btn {margin: 0 auto 25px auto;}
}


/* Small Devices, Tablets */
@media only screen and (max-width : 768px) {
	.vermeer-logo_mobile {margin: 0px auto 20px auto;}
	.learn-btn_mobile {margin: 30px auto 10px auto;}
	.vermeer-bkgd_mobile {text-align: center;}
	.quality-bkgd_mobile {text-align: center;}
	.contact-btn_mobile {margin: 30px auto 10px auto;}
	

}

/* Extra Small Devices, Phones */ 
@media only screen and (max-width : 480px) {
 	.name {width: 100%; float: none; margin: 5px auto;}
	.email {width: 100%; float: none; margin: 5px auto;}
	.phone {width: 100%; float: none; margin: 5px auto;}
	.address {width: 100%; float: none; margin: 5px auto;}
	.city {width: 100%; float: none; margin: 5px auto!important;}
	.state {width: 100%; float: none; margin: 5px auto;}
	.zip {width: 100%; float: none; margin: 5px auto;}
	.comments {width: 100%; float: none; margin: 5px auto;}
 
}

/* Custom, iPhone Retina */ 
@media only screen and (max-width : 320px) {


}

