﻿/*===================== 
	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 {
    -ms-text-size-adjust: 100%; 
    -webkit-text-size-adjust: 100%; 
	}

body {
	font-family: 'Roboto', sans-serif;
    margin: 0;
	padding:0;
	}

svg:not(:root) {overflow: hidden;/*reset*/}
	
.clear { clear: both;}

img { border: 0;} 

.grey-bg {
    background-image: url("../siteart/bg-pattern-1.png");
    background-repeat: repeat;
    background-color:#737373;
}

	
/*===================== 
	typography 
=======================*/

h1, h2, h3, h4, h5, h6 {
	margin: 0;
	padding: 0;
	}
	h1 {
        font-size: 30px;
        font-weight: 700;
}
	h2 {
        font-size: 24px;
        font-weight: 700;
}
	h3 {
        font-size: 18px;
        font-weight: 700;
}
	h4 {}
	h5 {}
	h6 {}

p {
    font-size: 17px;
	margin: 0;
    font-weight: 300;
	}

.bold {
    font-weight: bold;
	}

.btn-orange {
    display: block;
    max-width: 300px;
    width:100%;
    margin:10px 0;
    background:#D43E0C;
    color:#fff!important;
    font-size: 20px;
    text-align: center;
    padding:10px 10px;
    transition: .1s ease-in;
    box-sizing: border-box;
}
.btn-orange:hover {
   background:#000; 
}
.btn-black {
    display: block;
    max-width: 300px;
    width:100%;
    margin:10px 0;
    background:#000;
    color:#fff!important;
    font-size: 20px;
    text-align: center;
    padding:10px 10px;
    transition: .1s ease-in;
    box-sizing: border-box;
}
.btn-black:hover {
   background:#03872D; 
}


/*===================== 
	link styles 
=======================*/

a:focus {outline: thin dotted;/*reset*/}
	
a,
a:link, 
a:visited, 
a:active {
	outline: 0;/*reset*/
    color: inherit; 
    text-decoration:none;
	}
	a:hover  {
		outline: 0;/*reset*/
		text-decoration: none;
		color: #ccc;
		}  

/*===================== 
	header styles 
=======================*/

.header-wrap {
    font-family: 'Roboto', sans-serif;
	width: 100%;
	margin: 0;
	}
.top-header {
    width:100%;
    background-image: url("../siteart/bg-pattern-1.png");
    background-repeat: repeat;
    background-color:#737373;
}
.top-header .container-2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.top-head-logo {
    max-width:170px;
    height: auto;
    padding:10px 0;
}
.top-head-logo img {
    max-width:100%;
    height: auto;
    display: block;
}
.top-header a {
    font-size: 18px;
    color: #fff!important;
}
.top-header a:hover {
    color: #03872D!important;
}


header {
	margin: 0 auto;
	max-width: 1100px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
	}
.head-logo-1 {
    padding:15px 10px;
}
.head-logo-1 img {
	max-width: 100%;
	height: auto;
	display: block;
}
.location-cont-1 {
    padding:20px 10px;  
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 350px;
    width:100%;
    box-sizing: border-box;
}
.location-cont-1 ul {
    padding:0;
    margin:0;
    text-align: right;
}
.location-cont-1 ul li h3 {
    padding:0 0 5px 0;
}
.location-cont-1 ul li {
    padding:0;
    margin:0;
    list-style: none;
}
.location-cont-1 ul li a {
    padding:0;
    margin:0;
    color: #000;
    font-size: 14px;
}
.location-cont-1 ul li a:hover {
    color: #03872D;
}

/*===================== 
	nav styles 
=======================*/

#menu-button{display: none;}
nav.mobile { display:none;}
.menu-toggle.exit-click {
    display: none !important;
}

nav.primary {
	padding:0;
	display:block;
	width:100%;
	position:relative;
	background: #03872D;
	}
	nav.primary ul {
		margin:0 auto; 
		padding:0;
        display: flex;
        justify-content: space-between;
        max-width: 1100px;
        box-sizing: border-box;
		}
		nav.primary ul li {
			display:inline-block;
			margin:0;
			list-style-type:none; 
			}
			nav.primary ul li a {
                font-family: 'Roboto', sans-serif;
				color: #fff;
				font-size: 18px;
				text-decoration: none;
				padding: 15px 10px;
				display: block;
				margin: 0;
				text-align: center;
				text-transform: uppercase;
				-webkit-transition: .4s ease-in;
				-moz-transition: .2s ease-in;
				-o-transition: .2s ease-in;
				transition: .2s ease-in;
				font-weight: 600;
				}	
			nav.primary ul li a:hover {
				background: #000;
				cursor: pointer;
				}
			/* Appearance of the sub-level links */
			nav.primary ul li li a { 
				font-size:16px;
				line-height:16px;
				padding:10px 0;
				color:#fff;
				background: #181818;
				display: block;
				text-align:center;
				border-right:none;
				border-left:none;
				border-bottom: #fff solid 1px;
			}
			/* Appearance of the sub-level links on hover */
			nav.primary ul li li a:hover { 
                color:#03872D;
			}
/* This controls the Primary nav dropdowns for sublinks. Should not have to edit this too muuch */
nav.primary ul ul {
    display: none;
    position: absolute; 
}
nav.primary ul ul ul {
    position: absolute; 
    left: 100%;
    top:0; 
}
nav.primary ul li:hover > ul {  
    display: block;
    line-height:18px; 
    z-index: 100;
}
nav.primary ul ul li {
	display: block;
    float: none; 
	width: 250px;
    position: relative;
    margin:0;
}

/*===================== 
	content styles 
=======================*/

.sub-cat-btn-cont-1 {
    display: flex;
    justify-content: center;
    align-items: center;
    padding:20px 10px 180px 10px;
}
.sub-cat-btn {
    margin:20px;
    position: relative;
}
.sub-cat-btn img {
    max-width: 100%;
    height: auto;
    display: block;
}
.sub-cat-info {
    position: absolute;
    top:0;
    left:0;
    width:100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background:rgba(0,0,0,0.6);
    transition: .2s ease-in;
}
.sub-cat-info img {
    max-width: 90%;
    height: auto;
    display: block;
    margin:0 auto;
}
.sub-cat-info p {
    text-align: center;
    position: absolute;
    bottom:15px;
    left:0;
    right:0;
    color:#fff;
    font-size: 25px;
    font-weight: 600;
}
.sub-cat-info:hover {
    background:rgba(0,0,0,0.2);
}
.about-wrap {
    width:100%;
    margin:0;
    background-color:#03872D;
    box-shadow: 0 0 15px 10px rgba(0,0,0,0.4);
    position: relative;
    padding-bottom:100px;
}

.about-container-1 {
    max-width: 1100px;
    padding:0 10px;
    box-sizing: border-box;
    margin:0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    transform: translateY(-120px);
}
.about-row-1 {
    width:70%;
    padding:45px 30px;
    background:#fff;    
    box-sizing: border-box;
    box-shadow: 0 0 10px 2px rgba(0,0,0,0.4);
}
.about-row-1 h1 {
     font-weight: 300;   
}
.about-row-1 h1 span {
     font-weight: 800;   
}
.about-row-1 p {
    line-height: 2.2;
    position: relative;
    z-index: 200;
        
}
.about-img-1 {
    width:30%;
    
}
.about-img-1 img {
    max-width: 500px;
    height: auto;
    display: block;
    position: absolute;
    right:0;
}
.slider-promo-cont-1 {
    max-width: 1100px;
    padding:0 10px;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin:0 auto -100px auto;
    transform: translateY(-120px);
}
.slider-promo-brand-1 {
    background:#f25824;
    width:32%;
    padding:10px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.slider-promo-brand-1 img {
    max-width: 100%;
    height: auto;
    display: block;
    margin:0 auto;
}
.slider-promo-brand-1 h2 {
    color:#fff;
    text-align: center;
    padding:20px 0 0 0;
}
.slider-promo {
    background:#fff;
    padding:10px;
    width:65%;
    box-shadow: 0 0 10px 2px rgba(0,0,0,0.4);
}

.slider-brant-con-1 {
    max-width: 1100px;
    padding: 20px 20px 40px 20px;
    box-sizing: border-box;
    margin:0 auto;
    position: relative;
    z-index: 2000;
    transform: translateY(70px);
}
.slider-brant-con-1:after {
    content: "";
    position: absolute;
    z-index: -1;
    background: #fff;
    width: calc(100% - 20px);
    height: 100%;
    display: block;
    left: 0;
    top: 0;
    box-sizing: border-box;
    right: 0;
    margin: 0 auto;
    box-shadow: 0 0 10px 2px rgba(0,0,0,0.4);
}
.coming-soon {
    padding-bottom: 25vw!important;
}
.contact-info h1, .coming-soon h1, .location-info h1 {
    font-weight: 300;
}
.contact-info h1 span, .coming-soon h1 span, .location-info h1 span {
    font-weight: 800;
}
.contact-info h3 a, .contact-info h3 {
    color:#fff;
}
.contact-info h3 a:hover {
    color:#737373;
}
.contact-info ul {
    padding:10px 0;
    margin:0 0 10px 0;
    border-bottom:1px solid #fff;
}
.contact-info ul li {
    padding:2px 0;
    margin:0;
    list-style: none;
    color:#fff;    
}
.contact-info ul li a {
    color:#fff;
}
.contact-info ul li a:hover {
    color:#737373;
}

.location-row-1 {
    padding:20px 0;
    border-bottom:1px solid #000;  
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin:20px 0;
}
.location-row-1:first-of-type {
    border-top:1px solid #000;  
}

.location-row-1 ul {
    padding:10px 0;
    margin:0;
}
.location-row-1 ul li {
    padding:2px 0;
    margin:0;
    list-style: none;
    color:#000;    
}
.location-row-1 ul li a {
    color:#000;
}
.location-row-1 ul li a:hover {
    color:#737373;
}
.map-cont-1 {
    width:100%;
    height: 300px;
}


/*===================== 
	slideshow styles 
=======================*/

.wrap-slider {
    width:100%;
    
}
.hero-slide-cont-1 {
    width:100%;
    height: auto;
    position: relative;
}
.hero-slide-cont-1 img {
    width:100%;
    height: auto;
    display: block;
}
.hero-slide-overlay-1 {
    
    position: absolute;
    z-index: 300;
    padding:10px;
    box-sizing: border-box;
    width:100%;
    max-width: 400px;
    margin:0 auto;
    background:#fff;
    box-shadow: 0 0 10px 5px rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.hero-slide-overlay-1.kubota-1 {
    right:0;
    left:-700px;
    top:5vw;
}
.hero-slide-overlay-1.big-tex-1 {
    right:0;
    left:-700px;
    top:5vw;
}
.hero-slide-overlay-1.kubota-1 img {
    max-width: 320px;
    width:100%;
    height: auto;
}
.hero-slide-overlay-1.big-tex-1 img {
    max-width: 250px;
    width:100%;
    height: auto;
}
.hero-slide-overlay-1  p {
    text-align:center;
    font-size: 22px;
    font-weight: 700;
    padding:10px 0;
}
.slider-hero .slick-prev {
    position: absolute;
    bottom: 25px;
    z-index: 200;
    left: 0;
    font-size: 32px;
    color: #000;
    right: -990px;
    width: 30px;
    margin: 0 auto;
    display: block;
    cursor: pointer;
}
.slider-hero .slick-next {
    position: absolute;
    bottom: 25px;
    z-index: 200;
    left: 0;
    font-size: 32px;
    color: #000;
    right: -1070px;
    width: 30px;
    margin: 0 auto;
    display: block;
    cursor: pointer;
}
.slider-hero .slick-prev:hover, .slider-hero .slick-next:hover {
     color:#03872D;   
}
.slider-promo img {
    width:100%;
    height: auto;
}
.slider-promo .slick-dots {
    margin: 20px auto 5px auto;
    padding:0;
    text-align: center;
    display: flex;
    justify-content: center;
}
.slider-promo .slick-dots li {
    margin:0 5px;
    padding:0;
    list-style: none;
}
.slider-promo .slick-dots li button {
    display: block;
    font-size: 0;
    width:17px;
    height: 17px;
    border-radius: 0px;
    border:0px;
    background:#000;
}
.slider-promo .slick-dots li button:hover {
    opacity: 0.7;
}
.slider-promo .slick-dots .slick-active button {
    background:#D43E0C;
}
.slider-promo .promo-slide-cont-1 {
    position: relative;
    display: block;
    width:100%;
    height: auto;
	background-color:#000;
}

.promo-overlay {
    position: absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    padding:20px 35px;
    box-sizing: border-box;
    display: flex;
    /*flex-wrap: wrap;*/
    justify-content: space-between;
    flex-direction: column;
    align-items: flex-start;
} 
.promo-overlay.right-align {
    align-items: flex-end;
}
.right-align p {
    text-align: right;
}
.promo-overlay p {
    font-family: 'Roboto Condensed', sans-serif;
    color:#fff;
    text-shadow: 0 0 10px rgba(0,0,0,1);
}
.promo-overlay .lg-txt {
    font-size: 30px;
    font-weight: 600;
    padding-bottom: 5px;
}
.promo-overlay .mid-txt {
    font-size: 22px;
    font-weight: 600;
    padding-bottom: 5px;
}
.promo-overlay .sml-txt {
    font-size: 22px;
    font-weight:300;
    padding-bottom: 5px;
}
.kubota-flex .promo-overlay .promo-info {
	padding-bottom: 100px;
	background-color:#fff;
}
.kubota-flex {
	display: flex !important;
}
.kubota-tractor-package-img {
	position: absolute;
	top: 0;
	right: 0;
	width: 350px;
}
.kubota-tractor-package-img img {
	width: 100%;
	height: auto;
	object-fit: contain;
}
.kubota-btn-1 {
    font-family: 'Roboto Condensed', sans-serif;
    font-size:18px;
    font-weight: 600;
    color:#fff!important;
    padding:10px 30px;
    background:#D43E0C;
    text-align: center;
    display: block;
    box-sizing: border-box;
}

.slider-brand .slick-prev {
    position: absolute;
    bottom: -25px;
    z-index: 200;
    right: 50px;
    font-size: 32px;
    color: #000;
    width: 30px;
    margin: 0 auto;
    display: block;
    cursor: pointer;
}
.slider-brand .slick-next {
    position: absolute;
    bottom: -25px;
    z-index: 200;
    right: 10px;
    font-size: 32px;
    color: #000;
    width: 30px;
    margin: 0 auto;
    display: block;
    cursor: pointer;
}
.slider-brand .slick-prev:hover, .slider-brand .slick-next:hover {
     color:#03872D;   
}
.slider-brand a {
    height: 145px;
    display: flex;
    justify-content: center;
    align-items: center;
	flex-direction: column;
}
.slider-brand .slick-slide img {
  display: block;
  padding: 0 20px;
  width: 100%;
  box-sizing: border-box;
  background-color:#fff;
}

/*===================== 
	Form styles 
=======================*/

/* Containers */



.form-info-cont {
	width: 100%;
	box-sizing: border-box;
}
.form-flex {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}
.form-inline-1 {
	display: flex;
	flex-wrap: wrap;
}
.thankyou-container {
	width:100%;
	box-sizing: border-box;
	padding:30px 10% 10% 10%;
	margin-top:0;
}

/* Inputs */

.radio-pad {
	padding: 0 0 0 10px;
}

.form-info-cont input, .form-info-cont date, .form-info-cont select {
	width: 100%;
	display: block;
	padding: 5px 0 5px 5px;
	font-size: 17px;
	margin:  0 0 15px 0;
	box-sizing: border-box;
}
.form-info-checkbox input[type="checkbox"] {
	padding: 5px 0 5px 5px;
	margin:  0 0 15px 0;
	box-sizing: border-box;
}
.form-info-cont textarea {
	width: 100%;
	display: block;
	padding: 5px;
	font-size: 17px;
	min-height: 120px;
	box-sizing: border-box;
	margin:  0 0 15px 0;
	font-family: 'Roboto', sans-serif;
}

select {
	margin:0;
	padding:0;
}
.form-inline .button {
	color: #fff;
	font-size:20px;
	font-weight: 500; 
    display: block;
    padding: 10px;
	width: 40%;
    margin: 10px auto;
	-webkit-transition: .4s ease-in;
    -moz-transition: .2s ease-in;
    -o-transition: .2s ease-in;
    transition: .2s ease-in;
	border: none;
    background: #03872D;
	-webkit-appearance: none;
}


.form-inline .button:hover {
    background: #737373;

}

.CaptchaWhatsThisPanel a {color:#000;}
.CaptchaWhatsThisPanel a:hover {text-decoration:underline;} 


/*===================== 
	layout styles 
=======================*/

.wrap {
	width: 100%;
	margin: 0;
	}
	
.wrap-1 {
    width: 100%;
	margin: 0; 
    padding:40px 0;
}
.container-white {
    max-width: 1100px;
    padding: 40px 30px 40px 30px;
    box-sizing: border-box;
    margin:0 auto;
    position: relative;
    z-index: 1;
}
.container-white:after {
    content: "";
    position: absolute;
    z-index: -1;
    background: #fff;
    width: calc(100% - 20px);
    height: 100%;
    display: block;
    left: 0;
    top: 0;
    box-sizing: border-box;
    right: 0;
    margin: 0 auto;
    box-shadow: 0 0 10px 2px rgba(0,0,0,0.4);
}
.container-green {
    max-width: 1100px;
    padding: 40px 30px 40px 30px;
    box-sizing: border-box;
    margin:0 auto;
    position: relative;
    z-index: 1;
}
.container-green:after {
    content: "";
    position: absolute;
    z-index: -1;
    background: #03872D;
    width: calc(100% - 20px);
    height: 60%;
    display: block;
    left: 0;
    top: 0;
    box-sizing: border-box;
    right: 0;
    margin: 0 auto;
    box-shadow: 0 0 10px 2px rgba(0,0,0,0.4);
}
.container-1 {
	max-width: 1100px;
	margin: 0 auto;
	padding:30px 10px;
	box-sizing: border-box;
	}
.container-2 {
	max-width: 1100px;
	margin: 0 auto;
	padding:10px;
	box-sizing: border-box;
	}
.container-inv {
	max-width: 1100px;
	margin: 0 auto;
	padding:40px 10px;
	box-sizing: border-box;
	}
.flex-cont-1 {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}
.flex-cont-2 {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
	
.col-1-6 { width: 16%; box-sizing:border-box;}
.col-1-5 { width: 20%; box-sizing:border-box;}
.col-1-4 { width: 24%; box-sizing:border-box;}
.col-1-3 { width: 33%; box-sizing:border-box;}
.col-1-2 { width: 49%; box-sizing:border-box;}
.col-2-3 { width: 65%; box-sizing:border-box;}
.col-3-4 { width: 75%; box-sizing:border-box;}

/*===================== 
	footer styles 
=======================*/

footer {
    font-family: 'Roboto', sans-serif;
	margin: 0;
	width: 100%;
    background:#000;
    padding:50px 0 0 0;
	}
.home-foot-1 footer {
    padding:150px 0 0 0;
}
	
.foot-info-section {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 460px;
}

.foot-cont-1 {
    max-width: 1100px;
    padding:10px;
    box-sizing: border-box;
    margin:0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.foot-logo-1 img {
    max-width:275px;
    height: auto;
    display: block;
}
.foot-logo-1 p {
    text-align: center;
    padding:20px 0 0 0;
    font-weight: 600;
}
.foot-logo-1 p a {
    color:#03872D;
    font-size: 18px;
    text-align: center;
}
.foot-logo-1 p a i {
    font-size: 30px;
    margin:0 0 0px 10px;
}
.foot-logo-1 p a:hover {
    color:#fff;
}
.foot-logo-1 .foot-phone {
    display: none;
}
.foot-logo-1 .foot-phone a {
    color:#fff;
}
.foot-logo-1 .foot-phone a:hover {
    color:#737373;
}

.foot-col-1, .foot-col-2 {
    padding:0 0 40px 0;
}
.foot-col-2 h2 {
    color:#fff;
    font-size: 18px;
}
.foot-col-1 h2 a {
    color:#fff;
    font-size: 18px;
}
.foot-col-1 h2 a:hover {
    color:#737373;
}
.foot-col-1 ul, .foot-col-2 ul {
    padding:10px 0;
    margin:0;
}
.foot-col-1 ul li {
    margin-bottom:4px!important;
}
.foot-col-1 ul li, .foot-col-2 ul li {
    padding:0;
    margin:0;
    list-style: none;
    color:#03872D;
    font-size: 14px;
    line-height: 1.4;
}
.foot-col-1 ul li a, .foot-col-2 ul li a {
    color:#03872D;
}
.foot-col-1 ul li a:hover, .foot-col-2 ul li a:hover {
    color:#737373;   
}
.bottom-foot-1 {
    width:100%;
    background-image: url("../siteart/bg-pattern-1.png");
    background-repeat: repeat;
    background-color:#737373;
}
.bottom-foot-1 p {
    color:#fff;
    font-size: 12px;
}
.bottom-foot-1 p a {
    color:#fff;
}
.bottom-foot-1 p a:hover {
    color:#03872D;
}


a.footerlink:link,
a.footerlink:visited, 
a.footerlink:active {
	text-decoration: none; 
	font-size:13px;
	color: #222;
	}
	a.footerlink:hover {
		text-decoration:none; 
		font-size:13px;
		color: #fff;
		}

.footertext {
	font-size:13px; 
	color:#666;
	}

.smallfootertext {
	font-size:10px; 
	color:#666;
	}

.divfooter {
	max-width:490px; 
	text-align:center; 
	margin:0 auto;
	}

/*========================== 
	  Responsive styles 
============================*/

@media screen and (max-width: 1150px)  {
    .hero-slide-overlay-1.kubota-1, .hero-slide-overlay-1.big-tex-1 {
        right: auto;
        left: 20px;
        top:4vw;
    }
    .slider-hero .slick-prev {
        bottom: 15px;
        left: auto;
        right: 60px;
    }
    .slider-hero .slick-next {
        bottom: 15px;
        left: auto;
        right: 20px;
    }
    .about-row-1 {
      padding: 45px 140px 45px 30px;
    }
    .about-img-1 img {
      max-width: 380px;
    }
    .sub-cat-info p {
        bottom:10px;
        font-size: 20px;
    }
}


@media screen and (max-width: 1080px)  {
    .promo-overlay .lg-txt {
        font-size: 22px;
        font-weight: 600;
        padding-bottom: 5px;
    }
    .promo-overlay .mid-txt {
        font-size: 17px;
        font-weight: 600;
        padding-bottom: 5px;
    }
    .promo-overlay .sml-txt {
        font-size: 17px;
        font-weight:300;
        padding-bottom: 5px;
    }
	.kubota-tractor-package-img {
		width: 300px;
	}
}
@media screen and (max-width: 1000px) {
	.kubota-tractor-package-img {
		width: 265px;
	}
	.kubota-flex .promo-overlay .promo-info {
		padding-bottom: 70px;
	}
}
@media screen and (max-width: 880px)  {
    .head-logo-1 {
        width:27%;
    }
    header {
         align-items: center;   
    }
    nav.primary ul li a {
      font-size: 2vw;
    }
	
	.kubota-tractor-package-img {
		width: 220px;
	}
	.kubota-flex .promo-overlay .promo-info {
		padding-bottom: 45px;
	}
	.kubota-flex .promo-overlay {
		padding-left: 10px;
	}
	
    .foot-logo-1 img {
      max-width: 180px;
    }
}


@media screen and (max-width: 760px)  {

    .col-1-3, .col-2-3 {
        width:100%;
    }
    .container-green {
      margin: 40px auto 0 auto;
    }
	.container-green:after {height: 100%;}
	
    .top-header {
        background-image: none;
        background-color:transparent;
    }
    .top-head-logo {
        background-image: url("../siteart/bg-pattern-1.png");
        background-repeat: repeat;
        background-color:#737373;
        max-width:100%;
        width:100%;
    }
    .top-header .container-2 {
        padding:0;
        justify-content: center;
    }
    .top-head-logo img {
        width:100%;
        max-width: 170px;
        margin:0 auto;
        padding:10px 0;
    }
    .top-header a {
        padding:10px 0;
        color: #000!important;
    }
    header {
        flex-direction: column;
        justify-content: center;
        align-items: center;
	}
    .head-logo-1 {
        width:auto;
    }

    .location-cont-1 {
        padding:20px 10px;  
        display: block;
    }
    .location-cont-1 .mobile-hide {
        display: none;
    }
    .location-cont-1 ul {
        text-align: center;
    }
	.kubota-tractor-package-img {
		width: 265px;
	}
	.kubota-flex .promo-overlay .promo-info {
		padding-bottom: 70px;
	}
    
	/*==============================
		Mobile Nav Styles			
	================================*/	
    
    .mobile.open + .menu-toggle.exit-click {
        position: fixed !important;
        top: 0 !important;
        left: 250px !important;
        right: 0 !important;
        bottom: 0 !important;
        z-index: 1000;
    }
    
	nav.primary{display:none;}
	#menu-button{ 
		width: 100%;
		display: block;
		font-size: 24px;
		position: relative;
		line-height:60px; 
		z-index: 400; /* needs to be lower than nav.mobile, adjust as needed */
		background: #03872D;
	}
		#menu-button a{
			 color:#000;
			 text-decoration: none;
			 padding:0 0 0 .8em; 
			 font-weight:normal;
			 cursor: pointer;
		  }
	nav.mobile {
		display:block;
		position: fixed;
		top: 0;
		left: -250px;
		width: 250px;
		height: 100%;
		background: #333;
		z-index: 500; /* needs to be higher than #menu-button, adjust as needed */
		overflow:auto;
	}
	/* MENU HEADER SOCIAL MEDIA */
		nav.mobile .social-media {
			position: relative;
			text-decoration: none;
			display: inline-block;
			font-size:16px;
			word-spacing:13px;
			padding:0 0 0 15px;
			color: #ccc !important;
		}

		nav.mobile .social-media a:link, nav.mobile .social-media a:visited {color:#ccc; text-decoration:none;}
		nav.mobile .social-media a:hover, nav.mobile .social-media a:active {color:#fff; text-decoration:underline;}

	/* MENU HEADER STYLES */
	nav.mobile .mobile_top {
		position: relative;
		display:block;
		padding: 0;
		margin:15px 0 10px 0;
		color: #999;
		font-size: 18px;
		font-weight: 400;
	}

	/* MENU CLOSE 'X' BUTTON */
	nav.mobile .menu-toggle {
		position: absolute;
		padding: 3px 8px 3px;
		font-family: Arial, sans-serif;
		font-size:24px;
		font-weight: bold;
		line-height: 1;
		background: #222;
		color: #999;
		text-decoration: none;
		top:-4px;
		right:13px;
	}
	nav.mobile .menu-toggle:hover { /* Menu close button on hoveer */
		color: #fff;
		cursor: pointer;
	}

	/* MENU LIST STYLE */
	nav.mobile ul {
		list-style: none;
		font-weight: 300;
		margin:0;
		padding:0;
	}
	nav.mobile ul li {
		border-top: 1px solid #454545;
		border-bottom: 1px solid #151515;
		position:relative;
	}

	/* FIRST LEVEL */
	nav.mobile ul li a {
		position: relative;
		display: block;
		font-size:15px;
		padding: 10px;
		color: #999;
		text-decoration: none;
		border-left:4px #333 solid;
		text-shadow: 1px 1px 1px rgba(0,0,0,0.3);
        text-transform: uppercase;
	}
	nav.mobile ul li a:hover {
		background:rgba(45,45,45,0.5); 
		color: #fff; 
		border-left:4px #03872D solid; /* border highlight - Change to fit match site colors */
	}

	/* SECOND LEVEL */
	nav.mobile ul li li:last-child {border:none;}
	nav.mobile ul li li a {
		background: #444;
		position: relative;
		display: block;
		padding: 10px 10px 10px 15px;
		border-left:4px #444 solid;
		color: #ccc;
		text-decoration: none;
	}
	nav.mobile ul li li a:hover {background:rgba(65,65,65,0.5);}

	/* THIRD LEVEL */
	nav.mobile ul li li li:last-child {border:none;}
	nav.mobile ul li li li a {
		background: #555;
		position: relative;
		display: block;
		padding: 10px 10px 10px 25px;
		color: #ccc;
		text-decoration: none;
		border-left:4px #555 solid;
	}
	nav.mobile ul li li li a:hover {background:rgba(85,85,85,0.5);}

	nav.mobile ul li .click{/* dropdown menu idicator arrow be sure to include this image with your image files */ 
		position:absolute;
		display:block;
		cursor:pointer;
		z-index: 12399994;
		top:0;
		right:0;
		width:auto;
		height:auto;
		padding: 17px 20px;
		color:#fff;

	}
	.nav-footer {color:#03872D; position:relative; text-align:center; font-size:14px; line-height:16px; padding:15px 0;}

	/* FONT AWESOME ICONS */
	nav.mobile ul li a i{
		width:25px;
		padding:8px 3px;
		margin:0 6px 0 0;
		text-align:center;
		background:#292929;
		-webkit-border-radius: 30px;
		-moz-border-radius: 30px;
		border-radius: 30px;
		text-shadow: 1px 1px 1px rgba(0,0,0,0.3);
	}


	nav.mobile ul li .fa-chevron-down {color:#999;}
    
    .hero-slide-overlay-1 {
        position: relative;
        max-width: 100%;
        width:90%
    }
    
    .hero-slide-overlay-1.kubota-1, .hero-slide-overlay-1.big-tex-1 {
        left: auto;
        right: auto;
        top:-20px;
    }
    .slider-hero .slick-prev {
        display: none!important;
    }
    .slider-hero .slick-next {
        display: none!important;
    }
    .about-row-1 {
      padding: 45px 20px;
        width:100%;
    }
    .about-img-1 img {
      display: none;
    }
    .about-container-1, .slider-promo-cont-1 {
        max-width: 100%;
        width: 90%;
    }
    .slider-promo-brand-1 {
         width:100%; 
        position: relative;
        z-index: 100;
    }
    .slider-promo {
      background: #fff;
      padding: 10px;
      width: 100%;
      box-shadow: 0 0 10px 2px rgba(0,0,0,0.4);
    }
    .sub-cat-btn-cont-1 {
         flex-wrap: wrap;
    }
    .sub-cat-btn {
        width: 93%;
        margin:20px 0;
        box-sizing: border-box;
    }
    .sub-cat-btn img {
      display: none;
    }
    .sub-cat-btn .sub-cat-info img {
        display: block;
        max-width: 250px;
        width:90%;
    }
    .sub-cat-info {
        position: static;
        width: 100%;
        flex-direction: column;
        padding:20px 0;
    }
    .sub-cat-info p {
      position: static;
      padding:20px 0 0 0;
    }
    .foot-logo-1 {
        text-align: center;
    }
    .foot-logo-1 img {
      max-width: 100%;
    }
    .foot-logo-1 a {
        display: inline-block;
    }
    .foot-cont-1 {
        justify-content: center;
        flex-direction: column;
        padding:10px 10px 50px 10px;
    }
    .foot-col-1 {
        padding: 0;
        text-align: center;
    }
    .foot-info-section {
        display: block;
		margin: 0 auto;
    }
    .foot-col-1 ul {
      display: none;
    }
    .foot-col-2 {
        display: none;
    }
    .bottom-foot-1 p {
      text-align: center;
    }
    .foot-logo-1 .foot-phone {
        display: block;
    }
    .promo-overlay {
        padding:2vw 1.5vw;
    }
    .promo-overlay .lg-txt {
        font-size: 3.75vw;
        padding:0;
    }
    .promo-overlay .mid-txt {
        font-size: 3vw;
        padding:0;
    }
    .promo-overlay .sml-txt {
        font-size: 3vw;
        padding:0;
    }
    .kubota-btn-1 {
        font-size:2.5vw;
        padding:1.3vw 4vw;
    }
    
}

@media screen and (max-width: 650px) {
	.kubota-tractor-package-img {
		width: 220px;
	}
	.kubota-flex .promo-overlay .promo-info {
		padding-bottom: 55px;
	}
}

@media screen and (max-width: 550px) {
	.kubota-tractor-package-img {
		width: 180px;
	}
	.kubota-flex .promo-overlay .promo-info {
		padding-bottom: 35px;
	}
}

@media screen and (max-width: 450px) {
    .kubota-tractor-package-img {
		width: 150px;
	}
}

@media screen and (max-width: 400px) {
	.kubota-tractor-package-img {
		width: 120px;
	}
	.kubota-flex .promo-overlay .promo-info {
		padding-bottom: 10px;
	}
}
	
