﻿/***** 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;
}

table{border-collapse:collapse; width:100%;}
td{vertical-align:top;}

/* Make HTML 5 elements display block-level for consistent styling */  
header, nav, article, footer, address {  
    display: block;  
} 

/*-------- COLORS --------

	COLOR:  #XXXXXX
*/

:root {
		
	--blue: #003399; 
	
	--gray1: #eee;
	--gray2: #ddd;
}

/***** END RESET *****/
::-moz-selection {
    background: #000; 
    color: #fff;
    text-shadow: none;
}
::selection {
    background: #000;
    color: #fff;
    text-shadow: none;
}


/* Clearfix */
.cf:before,
.cf:after {
    content: " ";
    display: table;
}
.cf:after {
    clear: both;
}
.cf {
    *zoom: 1;
}

/*-------- BODY STYLES --------*/

* {box-sizing: border-box;}

body {
}

.wid-90 {width: 90%; margin: 0 auto; max-width: 1700px;}

.padit {padding: 90px 0;}
.header-pad {padding: 60px 0;}

.logo {max-width: 300px;}

.logo img {width: 100%; display: block; padding: 10px 0;}

.flex {display: flex;}

.flex-1 {
	width: 100%;
}

.flex-2 {
	width: 50%;
}

.flex-1 .wid-90, .flex-2 .wid-90 {
	width: 80%; max-width: 800px;
}

.mobile-only {display: none;}

.gray-body {background-color: var(--gray1);}
.blue-body {background-color: var(--blue);}

/*------------- TEXT STYLES AND BUTTONS -------------*/

.white{color: #fff;}

.blue {color: var(--blue);}

.upper {text-transform: uppercase;}

a:link, a:visited, a:active {text-decoration:none; font-family: "DM Sans", sans-serif; }
a:hover {text-decoration:none;}

h1, h2, h3, h4, h5, h6 { font-family: "Teko", serif; }

p, li {
	font-family: "DM Sans", sans-serif;
}

p.body-text {
	line-height: 2;
}

ul.bullets {
	margin-left: 30px;
	line-height: 2;
}

ul.bullets li {
	list-style: disc;
}

hr {
	margin: 50px 0;
	border: 1px solid #A91E22;
}

.sm-heading {
	font-size: 20px;
	font-family: "DM Sans", sans-serif;
	font-weight: 900;
}

.heading {
	font-size: 40px;
	font-weight: 700;
	line-height: 1;
}

/*  BUTTONS  */

.gray-btn {
	padding: 13px 50px;
	background: var(--gray1);
	color: var(--blue);
	font-family: "Teko", sans-serif;
	font-size: 16px;
	font-weight: 700;
	cursor: pointer;
	border: none;
	border-radius: 3px;
	line-height: 1;
	-webkit-transition:.3s ease-in;  
	-moz-transition:.3s ease-in;  
	-o-transition:.3s ease-in;  
	transition:.3s ease-in;
}

.gray-btn:hover {
	color: #000;
	background: #fff;
}

.blue-btn {
	padding: 13px 50px;
	background: var(--blue);
	color: var(--gray2);
	font-family: "Teko", sans-serif;
	font-size: 16px;
	font-weight: 700;
	cursor: pointer;
	border: none;
	border-radius: 3px;
	line-height: 1;
	-webkit-transition:.3s ease-in;  
	-moz-transition:.3s ease-in;  
	-o-transition:.3s ease-in;  
	transition:.3s ease-in;
}

.blue-btn:hover {
	color: #fff;
	background: #000;
}

/*--- HEADER STYLES ---------------------*/

header {
	position: relative;
	z-index: 5;
}

/* Use this for heading that are "floating/overlayed" on top. Wrap .header-wrap around logo/desktop nav*/
header .header-wrap {
	position: absolute;
	z-index: 5;
	top: 0;
	width: 100%;
	left: 50%;
	transform: translate(-50%, 0);
}

.header-container {
	position: relative;
	background-color: #000;
}

.main-header {
	background: linear-gradient(180deg, #001C55 0%, rgba(0, 28, 85, 0.00) 75%);
}

.main-header .flex {
	justify-content: space-between;
	align-items: flex-start;
}

.flex.logo-nav {
	gap: 50px;
}

.flex.logo-nav .logo {
	padding: 20px;
	max-width: 220px;
	background: #fff;
}

.flex.logo-nav nav.primary {
	margin-top: 30px;
}

.search-toggle {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 40px;
	height: 40px;
	border-radius: 20px;
	background-color: #fff;
	color: var(--blue);
	margin-top: 30px;
	cursor: pointer;
}

#header-search {
	display: none;
	padding: 20px 0;
}

#header-search .search-bar {
	border-radius: 5px;
}

#header-search .search-bar input {
	background: #fff !important;
	padding: 10px 20px !important;
	border-radius: 10px 0 0 10px !important;
	width: 100% !important;
	border-bottom: 2px solid #fff !important;
}

#header-search .search-bar button {
	background: var(--blue);
	border-radius: 0 10px 10px 0;
	width: 43px;
	-webkit-transition:.3s ease-in;  
	-moz-transition:.3s ease-in;  
	-o-transition:.3s ease-in;  
	transition:.3s ease-in;
}

#header-search .search-bar button:hover {
	background: #000;
}

#header-search .search-bar input:focus-visible {
	outline: none;
	border-bottom: 2px solid var(--blue) !important;
}

.mobile-search .search-bar {
	margin-top: 40px;
	justify-content: center;
}

.mobile-search .search-bar input {
    color: #000 !important;
    border-bottom: 2px solid var(--blue) !important;
}

.mobile-search .search-bar input::placeholder {
	color: #555;
}

.search-bar input:focus-visible {
	outline: none;
}

.search-bar input {
    border: none !important;
    background: none !important;
    color: #000 !important;
    font-family: "DM Sans", sans-serif !important;
    font-weight: 600;
    border-bottom: 2px solid #000 !important;
    padding: 5px !important;
    font-size: 16px !important;
    border-radius: 0 !important;
    width: unset !important;
    height: auto !important;
}

.search-bar button {
    border: none;
    background: none;
    padding: 5px;
    font-size: 18px;
    cursor: pointer;
}

.mobile-search .search-bar button {
	color: var(--blue);
}

/*---BODY--------------------------------*/

.header-space {
	height: 245px;
}

.page-heading {
	background-image: linear-gradient(rgba(0,0,0,0.25), rgba(0,0,0,0.25)), url("../siteart/page-heading.jpg");
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	padding: 350px 0 200px;
	text-align: center;
}

.page-heading .breadcrumbs a {
	color: #fff;
}

.page-heading .heading {
	font-size: 64px;
}

.hero {
	background: linear-gradient(0deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.25) 100%), url("../siteart/bad-boy-hero.webp");
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}

.hero-text {
	max-width: 700px;
	margin: 0 auto;
	text-align: center;
	padding: 330px 0;
}

.hero-text .heading {
	font-size: 48px;
	padding-bottom: 50px;
}

.browse-cat .wid-90.flex {
	border-radius: 10px;
	background: #FFF;
	box-shadow: 0 10px 20px -10px rgba(0, 0, 0, 0.25);
	margin-top: -150px;
	position: relative;
}

.inv-cat {
	width: 100%;
	padding: 30px;
	text-align: center;
}

.inv-cat:nth-child(even) {
	background-color: var(--gray1);
}

.inv-cat img {
	display: block;
	margin: 0 auto;
	width: 100%;
	max-width: 350px;
}

.inv-cat .cat-title {
	font-size: 40px;
	line-height: 1;
	padding-bottom: 10px;
}

.inv-cat .sale-rent.flex {
	justify-content: space-around;
	gap: 20px;
}

a.expand-link {
	color: #000;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
	-webkit-transition:.3s ease-in;  
	-moz-transition:.3s ease-in;  
	-o-transition:.3s ease-in;  
	transition:.3s ease-in;
}

a.expand-link:hover {
	color: var(--blue);
	gap: 10px;
}

.flex-1 .gray-body {
	padding: 50px 0;
}

.flex-1.img-aside {
	position: relative;
	min-height: 250px;
}

.flex-1.img-aside img {
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
	object-fit: cover;
	top: 0;
}

.flex-1.img-aside.left-side img {
	border-radius: 0 20px 20px 0;
	box-shadow: 10px 0 20px -10px rgba(0, 0, 0, 0.25);
}

.flex-1.img-aside.right-side img {
	border-radius: 20px 0 0 20px;
	box-shadow: -10px 0 20px -10px rgba(0, 0, 0, 0.25);
}

.blue-img-divider {
	background-color: var(--blue);
	background-image: linear-gradient( rgba(0, 51, 153, 0.80), rgba(0, 51, 153, 0.80)), url("../siteart/bad-boy-tools.jpg");
	background-size: cover;
	background-repeat: no-repeat;
	background-attachment: fixed;
	height: 350px;
}

.ups-drop {
	background-color: var(--blue);
	background-image: linear-gradient( rgba(0, 51, 153, 0.80), rgba(0, 51, 153, 0.80)), url("../siteart/store.jpg");
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}

.ups-drop .wid-90.flex {
	justify-content: center;
	gap: 30px 50px;
	align-items: flex-start;
}

.ups-drop img {
	display: block;
	width: 100%;
	max-width: 180px;
}

.ups-drop .wid-90.flex div {
	width: 100%;
	max-width: 600px;
}

.wid-90.brands {
	text-align: center;
}

.brands.flex {
	padding-top: 30px;
	justify-content: space-around;
	gap: 30px;
	flex-wrap: wrap;
}

.brands.flex a {
	position: relative;
}

.brands.flex img {
	display: block;
	width: 100%;
	max-width: 200px;
}

.flex.brands .tooltip {
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	max-width: 150px;
	background-color: rgba(255,255,255,0.85);
	padding: 5px;
	border-radius: 7px;
	border: 2px solid var(--blue);
	color: #000;
	font-weight: 800;
	box-shadow: 0 0 20px -10px rgba(0, 0, 0, 0.5);
	-webkit-transition:.1s ease-in;  
	-moz-transition:.2s ease-in;  
	-o-transition:.2s ease-in;  
	transition:.2s ease-in, box-shadow .5s ease-in;
	opacity: 0;
}

.brands.flex a:hover .tooltip {
	top: 50%;
	opacity: 1;
	box-shadow: 0 10px 20px -10px rgba(0, 0, 0, 0.8);
}

.contact-left {
	max-width: 500px;
}

.contact-item.flex {
	padding: 30px;
	border-radius: 10px;
	gap: 20px;
	max-width: 400px;
	margin: 20px 0;
}

.contact-item.flex .icon {
	font-size: 48px;
}

.contact-item.flex a {
	color: #000;
	-webkit-transition:.3s ease-in;  
	-moz-transition:.3s ease-in;  
	-o-transition:.3s ease-in;  
	transition:.3s ease-in;
}

.contact-item.flex a:hover {
	color: var(--blue)
}

/*--------FORM STYLES--------------------*/

.contact-form.flex {
	gap: 50px 5%;
	align-items: flex-start;
}

.form-container {
	margin: 0 auto;
	background-color: #fff;
	width: 100%;
	max-width: 700px;
	box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.25);
	border-radius: 10px;
	padding: 30px 40px;
}

.form-container .heading {
	padding: 15px 0;
}

.form-flex {
	display: flex;
	justify-content: center;
	gap: 30px;
	margin: 10px 0;
}

.form-flex label, .form-flex legend {
	font-family: "DM Sans", sans-serif;
	font-size: 15px;
	font-weight: 600;
	padding-bottom: 5px;
	display: inline-block;
}

.form-field, .form-flex input, .form-flex select, .form-flex textarea, .form-flex div {
	width: 100%;
}

.form-flex input[type="radio"], .form-flex input[type="checkbox"] {
	width: unset;
}

.form-flex input, .form-flex select, .form-flex textarea {
	background: var(--gray1);
	border: none;
	border-bottom: 2px solid var(--gray1);
	color: #2D2D2D;
	font-family: "DM Sans", sans-serif;
	font-size: 15px;
	padding: 15px;
	border-radius: 10px;
	
}

.form-flex input:focus-visible, .form-flex select:focus-visible, .form-flex textarea:focus-visible {
	outline: none;
	border-bottom: 2px solid var(--blue);
}

textarea {
	height: 150px;
}

.CaptchaPanel {
	font-family: "Outfit", sans-serif;
}

.captcha-button {
	text-align:center;
}

#captcha {
	display: none;
}

/*---PRECISION PLANTING---*/
.precision-hero {background-image: linear-gradient(rgba(0,0,0,0.25), rgba(0,0,0,0.25)), url("../siteart/precision-planting-hero.jpg");}
.precision-flex {display: flex; justify-content: space-between; gap: 30px;}
.precision-flex > div:first-child {width: 60%;}
.precision-flex > div:last-child {width: 40%;}
.precision-flex img {width: 100%; border-radius: 20px;}
.precision-flex h3, .precision-centered h3 {margin-top: 30px; margin-bottom: 10px; font-size: 35px;}
.precision-centered {text-align: center; margin-top: 50px;}
.precision-centered div {display: flex; gap: 20px; justify-content: center; margin-top: 30px;}
.precision-centered p {width: 100%; background: #eee; border-radius: 20px; padding: 20px;}
.precision-centered i {color: var(--blue); font-size: 25px;}
.precision-img {width: 350px; margin-bottom: 30px;}

/*-------- FOOTER STYLES ----------------*/
footer {
	padding-bottom: 50px;
	background: #333;
}

footer .wid-90.flex {
	justify-content: space-between;
	gap: 20px;
	flex-wrap: wrap;
}

footer h3.sm-heading {
	margin-bottom: 10px;
}

.footer-nav .flex {
	gap: 0 40px;
	flex-wrap: wrap;
}

.footer-nav ul li a, .footer-contact a {
	color: #fff;
	line-height: 2;
	-webkit-transition:.3s ease-in;  
	-moz-transition:.3s ease-in;  
	-o-transition:.3s ease-in;  
	transition:.3s ease-in;
}

.footer-nav ul li a:hover, .footer-contact a:hover {
	color: var(--gray2);
}

/*----INVENTORY STYLES - KEEP AT BOTTOM OF CSS----*/





/*---------- RESPONSIVE STYLES ----------*/

@media only screen and (max-width: 1100px) {
	.inv-cat .cat-title {font-size: 28px;}
	
}

@media only screen and (max-width: 1300px) {
	.search-toggle {display:none!important;}
}

@media only screen and (max-width: 1000px) {
	.main-header .flex.logo-nav {width: 100%; justify-content: center; gap: 0;}
	.main-header .flex {gap: 5px;}
	.flex.logo-nav .logo {padding: 10px; max-width: 200px;}
	.search-toggle {display: none;}
	
	.contact-form.flex {flex-wrap: wrap;}
	
	.page-heading {padding: 280px 0 150px;}
}

@media only screen and (max-width: 850px) {
	.heading {font-size: 36px;}
	.page-heading .heading {font-size: 48px;}
	
	.hero-text .heading {font-size: 40px;}
	.hero-text {padding: 300px 0 200px;}
	
	.browse-cat .wid-90.flex {flex-wrap: wrap;}
	
	.text-img.flex {flex-wrap: wrap;}
	.flex-1.img-aside {margin-bottom: -20px;}
	.flex-1.img-aside img {width: 90%;}
	.text-img.flex .flex-1.padit {padding: 0;}
	.flex-1.img-aside.right-side {order: -1;}
	.flex-1.img-aside.right-side img {right: 0;}
	
	.form-flex {flex-wrap: wrap; gap: 20px; padding: 5px 0;}
	
	.precision-flex, .precision-centered div {flex-wrap: wrap;}
	.precision-flex div {width: 100% !important;}
	.precision-flex .precision-img {width: 350px !important;}
}


@media only screen and (max-width: 600px) {
	.heading {font-size: 28px;}
	.page-heading .heading {font-size: 36px;}
	
	.page-heading {padding: 280px 0 100px;}
	
	.hero-text .heading {font-size: 30px; padding-bottom: 30px;}
	.hero-text {padding: 280px 0 60px;}
	.browse-cat .wid-90.flex {margin-top: -30px;}
	
	.ups-drop .wid-90.flex {flex-wrap: wrap;}
}

@media only screen and (max-width: 500px) {
	
}

@media only screen and (max-width: 450px) {
/*	make buttons full width*/
	.gray-btn, a:has(> .gray-btn) {width: 100%;}
	
	.inv-cat .sale-rent.flex {justify-content: space-between;}
	
	.contact-item.flex {flex-wrap: wrap;}
	
	.contact-item.flex .icon {width: 100%; text-align: center;}
	
	.footer-contact {width: 100%;}
	
	footer .logo {width: 100%; max-width: unset;}
	footer .logo img {max-width: 300px; margin: 0 auto;}
}

@media only screen and (max-width: 400px) {
	.precision-flex .precision-img {width: 100% !important;}
}





