﻿/*===================== 
	Color information
	
	- Light Blue: #6dc6e7;
	- Darker Blue: #2885b3;
	- Light Blue-Gray Tint: #e6ecf5;
	-
		 
=======================*/
/*===================== 
	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%;
}
/*===================== 
		VIDEO
=======================*/
.myvid1 > * > html > body > .media-container > .media-element > #VidControl{background-image: url("../siteart/about-bg-1.jpg"); }

.banner-flex > .vidwrap {width: 40% !important; overflow: hidden; max-height: 400px; margin-top: 8px;}

@media screen and (max-width: 1000px) { 
.banner-flex > .vidwrap {width: 75% !important; overflow: hidden; max-height: 400px;}
}

@media screen and (max-width: 800px) { 
.banner-flex > .vidwrap {width: 100% !important; overflow: hidden; max-height: 400px;}
}


.banner-flex > .vidtitle {font-size: 15px;
position: absolute;
    top: 0;
    margin: 10px auto;
    clear: both;}


.vidtitle {
    font-family: 'Exo 2', sans-serif;
    margin: 0;
    padding: 0px 0px 5px 0px;
    font-weight: 600;
    line-height: 1.5em;
    color: #0161a7 !important;
    font-size: 20px;
    text-transform: uppercase;
}

 /* Layout for this demo */
.vidwrap{
  position: relative;
  max-width: 1500px;
  width: 100%;
  margin: auto;
}

 /* The outer-div to move the elements */
.box-video{
  position: relative;
  width: 100%;
  margin:0 auto 20px auto;
  cursor: pointer;
  overflow: hidden;
}

 /* Set Cover aka Background-Image */
.box-video .bg-video{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: 2;
}

 /* Add light shade to make play button visible*/
.bg-video::after{ 
	content:'';
	position: absolute;
  	top: 0;
  	left: 0;
  	width: 100%;
  	height: 100%;
  	background-color: rgba(0,0,0,0.1);
  	z-index: 3;
  	}


/* The Play-Button using CSS-Only */
.box-video .bt-play {
  position: absolute;
  top:50%;
  left:50%;
  margin:-30px 0 0 -30px;
  display: inline-block;
  width: 60px;
  height: 60px;
  background: rgba(255,255,255,0.1);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 50%;
  text-indent: -999em;
  cursor: pointer;
  z-index:2;
  -webkit-transition: all .3s ease-out;
  transition: all .3s ease-out;
}
.principles-list > li > ol {
  list-style-type: lower-alpha;
  font-family: 'Exo 2', sans-serif;
  font-size: 18px;
  line-height: 2.5em;
  margin: 0;
}
.principles-list li::marker {
  font-weight: bold;
}
/* The Play-Triangle */
.box-video .bt-play:after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  height: 0;
  width: 0;
  margin: -12px 0 0 -6px;
  border: solid transparent;
  border-left-color: #000;
  border-width: 12px 20px;
  -webkit-transition: all .3s ease-out;
  transition: all .3s ease-out;
}

.box-video:hover .bt-play {
  transform: scale(1.1);
}

/* When Class added the Cover gets hidden... */
.box-video.open .bg-video{
  visibility: hidden;
  opacity: 0;

  -webkit-transition: all .6s .8s;
  transition: all .6s .8s;  
}

/* and iframe shows up */
.box-video.open .video-container{
  opacity: 1;
  -webkit-transition: all .6s .8s;
  transition: all .6s .8s;
}

/* Giving the div ratio of 16:9 with padding */
.video-container {
	position: relative;
	width: 100%;
	height: 0;
  margin: 0;
  z-index: 1;
	padding-bottom: 56.27198%;
}

.video-container iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}


/*===================== 
	base styles 
=======================*/
html {
  -ms-text-size-adjust: 100%; /* 2 */
  -webkit-text-size-adjust: 100%; /* 2 */
    scroll-behavior: smooth;
    scroll-padding-top: 180px;
}
body {
  font-family: 'Exo 2', sans-serif;
  margin: 0;
  padding: 0;
  background: url(../siteart/p6.png) repeat;
  color: #000;
}
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;
  background: #fedd37;
  height: 10px;
  width: 100%;
  border: none;
  margin: 2px auto;
}
.blue {
  height: 5px;
  background: #005dac;
  width: 100%;
}
img {
  border: 0;
  max-width: 100%;
}
/*===================== 
	typography 
=======================*/
h1, h2, h3, h4, h5, h6 {
  font-family: 'Exo 2', sans-serif;
  margin: 0;
  padding: 0 0 2% 0;
  font-weight: 600;
  line-height: 1.5em;
  color: #0161a7;
}
h1 {
  font-size: 36px;
}
h2 {
  font-size: 30px;
}
h3 {
  font-size: 24px;
}
h4 {
  font-size: 20px;
}
h5 {
  font-size: 18px;
}
p {
  font-family: 'Exo 2', sans-serif;
  padding: 0 0 2% 0;
  font-size: 18px;
  line-height: 2.5em;
  margin: 0;
}
strong {
  font-family: 'Exo 2', sans-serif;
  font-weight: 600;
}
/*===================== 
	link styles 
=======================*/
a.link:focus {
  outline: thin dotted; /*reset*/
}
a {
  text-decoration: none;
  color: inherit;
}
a:hover {
  text-decoration: none;
  color: #0161a7;
}
.appbutton {}
.appbutton a {
  background: #38b749;
  padding: 5px 10px;
  color: #fff;
  border-radius: 3px;
}
.appbutton a:hover {
  background: #262626;
  padding: 5px 10px;
  color: #fff;
  border-radius: 3px;
}
/*===================== 
	list styles 
=======================*/
ul.list {
  margin: 0;
  padding: 0 0 5% 7%;
}
ul.list li {
  font-size: 16px;
}
/*===================== 
	header styles 
=======================*/
.home-header-1 {
    z-index: 300;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-image: url("../siteart/header-hero-bg-2.jpg");
}
.home-header-2-logo {
    width:100%;
    padding:40px 20px 20px 20px;
    box-sizing: border-box;
    display: flex;
    gap:50px 0;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    order:2;
    min-height: 655px;
}
.head-logo-cont-1 {
    width: 100%;
    display: flex;
    gap:40px;
    justify-content: space-between;
    max-width: 1500px;
}
.head-logo-col-1-1 {
    width: 100%;
    max-width: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap:10px;
}
.head-logo-col-1-1 img {
    max-width: 100%;
    width: 100%;
    height: auto;
    display: block;
    filter:drop-shadow(0 0 5px #fff) drop-shadow(0 0 10px #fff);
}
.head-logo-col-1-1 p {
    font-size: 23px;
    line-height: normal;
    font-weight: 700;
    font-family: "Manrope", sans-serif;
    color: #0161a7;
    text-align: center;
    text-shadow: 0 0 10px #fff,0 0 5px #fff,0 0 10px #fff,0 0 10px #fff;
}
.head-logo-col-1-1 p a {
    color: #0161a7;
}
.head-logo-col-1-1 p a:hover {
    color: #000000;
}

.head-logo-col-1-15 {
	width: 100%;
    max-width: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap:10px;
}

.head-logo-col-1-2 {
    width: 100%;
    max-width: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap:10px;
}
.head-logo-col-1-2 img {
    max-width: 100%;
    width: 100%;
    height: auto;
    display: block;
    filter:drop-shadow(0 0 5px #fff) drop-shadow(0 0 10px #fff);
}
.head-logo-col-1-2 p {
    font-size: 23px;
    line-height: normal;
    font-weight: 700;
    font-family: "Manrope", sans-serif;
    color: #0161a7;
    text-align: center;
    text-shadow: 0 0 10px #fff,0 0 5px #fff,0 0 10px #fff,0 0 10px #fff;
}
.head-logo-col-1-2 p a {
    color: #0161a7;
}
.head-logo-col-1-2 p a:hover {
    color: #000000;
}
.head-logo-cont-2 {
    width:100%;
    max-width: 300px;
}
.head-logo-cont-2 img {
    max-width: 100%;
    width: 100%;
    height: auto;
    display: block;
}

.home-header-1 header {
	background:none;
	order:2;
}
.home-header-1 nav {
	order:1;
}
.home-header-1 header p {
  color: #fff;
	text-shadow: 0 0 8px #000;
}

header {
  width: 100%;
  margin: 0;
  padding: 20px 0 0 0;
  background: #fff;
  text-align: center;
}
header p {
  padding: 0;
  color: #0161a7;
}
.headerwrap {
  width: 96%;
  max-width: 1280px;
  margin: 0 auto;
}
.logoleft img{
	margin: 10px auto;
	max-width: 350px;
	width:100%;
}
.address {
  text-align: right;
  padding-top: 10px;
}
.address h2 {
  padding: 0;
  color: #000;
}
.address h5 {
  padding: 0;
  color: #000;
}

/* FACEBOOK SLIDER */
#fb {
  top: 230px;
  right: -300px;
  z-index: 9999999;
transition: .2s ease-in;
}

.facebookside {
  background: #fff;
  width: 300px;
  max-height: 100%;
  position: fixed;
  z-index: 9995;
}
.fb_iframe_widget {
  display: inline-block;
  *zoom: 1;
  *display: inline;
  position: relative;
  z-index: 99999999999;
}
#facebookTab {
  display: block;
  height: 45px;
  width: 45px;
  background: url(../siteart/logos/facebook.jpg);
  position: absolute;
  left: -45px;
  top: 0px;
}
#facebookTab:hover {
  background: url(../siteart/logos/facebook.jpg);
  z-index: 99999999999;
}


/* snap SLIDER */
#snap {
  top: 380px;
  right: -300px;
  z-index: 9999996;
transition: .2s ease-in;
}

.snapside {
  background: #fff;
  width: 300px;
  max-height: 100%;
  position: fixed;
  z-index: 9999;
}
.snap_iframe_widget {
  display: inline-block;
  *zoom: 1;
  *display: inline;
  position: relative;
  z-index: 99999999999;
}
#snapTab {
  display: block;
  height: 45px;
  width: 45px;
  background: url(../siteart/logos/snap-logo.jpg);
  position: absolute;
  left: -45px;
  top: 0px;
}
#snapTab:hover {
  background: url(../siteart/logos/snap-logo.jpg);
  z-index: 99999999999;
}


/* insta SLIDER */
#insta {
  top: 280px;
  right: -300px;
  z-index: 9999998;
transition: .2s ease-in;
}

.instaside {
  background: #fff;
  width: 300px;
  max-height: 100%;
  position: fixed;
  z-index: 9995;
}
.insta_iframe_widget {
  display: inline-block;
  *zoom: 1;
  *display: inline;
  position: relative;
  z-index: 99999999999;
}
#instaTab {
  display: block;
  height: 45px;
  width: 45px;
  background: url("../siteart/logos/instagram-logo.jpg");
  position: absolute;
  left: -45px;
  top: 0px;
}
#instaTab:hover {
  background: url("../siteart/logos/instagram-logo.jpg");
  z-index: 99999999999;
}


/* TikTok SLIDER */
#tiktok {
  top: 330px;
  right: -300px;
  z-index: 9999997;
transition: .2s ease-in;
}

.tiktokside {
  background: #fff;
  width: 300px;
  max-height: 100%;
  position: fixed;
  z-index: 9995;
}
.tiktok_iframe_widget {
  display: inline-block;
  *zoom: 1;
  *display: inline;
  position: relative;
  z-index: 99999999999;
}
#tiktokTab {
  display: block;
  height: 45px;
  width: 45px;
  background: url("../siteart/logos/tiktok-logo.jpg");
  position: absolute;
  left: -45px;
  top: 0px;
}
#tiktokTab:hover {
  background: url("../siteart/logos/tiktok-logo.jpg");
  z-index: 99999999999;
}
/*===================== 
	nav styles 
=======================*/
/* see menumaker.css for additional nav styles */
/*===================== 
	content styles 
=======================*/
.wrapper {
  width: 96%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0;
	height: auto;
}
.invwrap {
  padding-bottom: 2%;
}
.invwrap .container {
  max-width: 100%;
}
.invwrap .list-content {
	background:#fff;
}
.container {
  width: 100%;
  max-width: 1330px;
  margin: 0 auto;
}
.copywrap {
  width: 80%;
  margin: 0 auto;
  text-align: center;
}
.wrap {
	width:100%;
	margin:0;
}

.home-locations {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1100px;
    width: 100%;
    margin: 0 auto !important;
}
.home-locations-col-1 {
    width:32%;
}
.home-locations-col-1 iframe {
    width:100%;
    height: 300px;
}
.about-bg-1 {
    background-image: -webkit-linear-gradient(270deg,rgba(255,255,255,0.00) 0%,rgba(255,255,255,0.34) 100%), url("../siteart/about-bg-1.jpg");
    background-image: -moz-linear-gradient(270deg,rgba(255,255,255,0.00) 0%,rgba(255,255,255,0.34) 100%), url("../siteart/about-bg-1.jpg");
    background-image: -o-linear-gradient(270deg,rgba(255,255,255,0.00) 0%,rgba(255,255,255,0.34) 100%), url("../siteart/about-bg-1.jpg");
    background-image: linear-gradient(180deg,rgba(255,255,255,0.00) 0%,rgba(255,255,255,0.34) 100%), url("../siteart/about-bg-1.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position:center;;padding:3% 0;position:relative;
}

/*===================== 
	slideshow styles 
=======================*/
/*
    these are just the default styles used in the Cycle2 demo pages.  
    you can use these styles or any others that you wish.
*/
/* set border-box so that percents can be used for width, padding, etc (personal preference) */
.cycle-slideshow, .cycle-slideshow * {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.cycle-slideshow {
  width: 100%;
	height: auto;
  padding: 0;
  position: relative;
  /*background: url(http://malsup.github.com/images/spinner.gif) 50% 50% no-repeat;*/
}
.cycle-slideshow a {
	width:100%;	
}
/* slideshow images (for most of the demos, these are the actual "slides") */
.cycle-slideshow img {
  /* 
    some of these styles will be set by the plugin (by default) but setting them here
    helps avoid flash-of-unstyled-content
    */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0;
  display: block;
}
/* in case script does not load */
.cycle-slideshow img:first-child {
  position: static;
  z-index: 100;
}
.cycle-slideshow video {
	height: auto;
	box-sizing: border-box;
	width: 100%;
}
/* pager */
.cycle-pager {
  text-align: center;
  width: 100%;
  z-index: 500;
  position: absolute;
  bottom: -30px;
  overflow: hidden;
}
#bottompromo .cycle-pager {
  bottom: 10px;
}
.cycle-pager span {
  font-family: arial;
  font-size: 50px;
  width: 20px;
  height: 20px;
  display: inline-block;
  color: #000;
  cursor: pointer;
	text-shadow: 0 0 5px rgba(255,255,255,0.5);
}
/*.cycle-pager span.cycle-pager-active { color: #0161a7;}*/
.cycle-pager > * {
  cursor: pointer;
}
/* caption */
.cycle-caption {
  position: absolute;
  color: white;
  bottom: 15px;
  right: 15px;
  z-index: 700;
}
/* overlay */
.cycle-overlay {
  font-family: tahoma, arial;
  position: absolute;
  bottom: 0;
  width: 100%;
  z-index: 600;
  background: black;
  color: white;
  padding: 15px;
  opacity: .5;
}
/* prev / next links */
.cycle-prev, .cycle-next {
  position: absolute;
  top: 0;
  width: 30%;
  opacity: 0;
  filter: alpha(opacity=0);
  z-index: 800;
  height: 100%;
  cursor: pointer;
}
.cycle-prev {
  left: -20%;
  background: url(http://malsup.github.com/images/left.png) 50% 50% no-repeat;
}
.cycle-next {
  right: -20%;
  background: url(http://malsup.github.com/images/right.png) 50% 50% no-repeat;
}
.cycle-prev:hover, .cycle-next:hover {
  opacity: .7;
  filter: alpha(opacity=70)
}
.disabled {
  opacity: .5;
  filter: alpha(opacity=50);
}
/* display paused text on top of paused slideshow */
.cycle-paused:after {
  content: 'Paused';
  color: white;
  background: black;
  padding: 10px;
  z-index: 500;
  position: absolute;
  top: 10px;
  right: 10px;
  border-radius: 10px;
  opacity: .5;
  filter: alpha(opacity=50);
}
.hero {
  width: 100%;
  margin: 0 auto;
  background: url(../siteart/corn_back.jpg) top center no-repeat;
  -moz-background-size: cover;
  -webkit-background-size: cover;
  background-size: cover;
	height: 100%;
}
#show, .slides {
  width: 100%;
  height: auto;
}
.slideshow-img-mobile {
	max-width: 100%;
	height: auto;
	margin:0 auto;
	display: none;
	padding:20px;
	box-sizing: border-box;
}

.promoslider {
  background: url(../siteart/whitey_@2X.jpg) center center repeat;
}

.home-slider {
    width:100%;
    background:#0161a7;
}
.home-slider .slick-slide {
    position: relative;
}
.home-slider .slick-slide img {
    padding:0;
}
.banner-flex {
    
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
.banner-flex-left {
    width:59%;
}
.banner-flex-right {
    width:39%;
}
.banner-flex-right img {
    max-width: 100%;
    height: auto;
    display: block;
}
.slide-single-image {
	width:100%;
	height: auto;
	max-height: 400px;
	display: block;
	margin:0 auto;
	object-fit: contain;
	object-position: center;
}

.slider-content {
    min-height: 39vw;
    width: 100%;
    padding: 30px 30px 30px 30px;
    box-sizing: border-box;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.nh-slide .small-text {
    color:#fff;
    font-size: 2vw;
    text-align: left;
    width:65%;
    line-height: normal;
    padding:0;
}
.nh-slide .large-text {
    color:#fff;
    font-size: 4vw;
    text-align: left;
    padding:1vw 0;
    width:65%;
    line-height: normal;
}
.nh-slide .slide-btn {
    display: inline-block;
    padding:.8vw;
    background:#ffd103;
    font-size: 1.5vw;
    text-align: left;
    margin-top:1vw;
    line-height: normal;
}
.parts-links {
    margin-top:.8vw;
    color:#fff;
    font-size: 2vw;
    text-align: left;
}
.parts-links a {
    color:#ffd103;
    font-weight: 600;
}
.parts-links a:hover {
    color:#fff;
}
.dist-slide img {
    max-width: 400px;
    margin:0 auto!important;
}
.dist-slide .small-text {
    color:#fff;
    font-size: 2vw;
    max-width: 1000px;
    text-align: center;
    line-height: normal;
    padding:0;
    margin:0 auto;
}
.dist-slide .large-text {
    color:#000;
    font-size: 3vw;
    font-weight: 700;
    text-align: center;
    max-width: 1000px;
    padding:1vw 0;
    line-height: normal;
    margin:0 auto;
    text-shadow: 0 0 10px rgba(255,255,255,1) 0 0 10px rgba(255,255,255,1);
}
.dist-slide .slide-btn {
    display: inline-block;
    padding:.8vw;
    background:#ffd103;
    font-size: 1.5vw;
    text-align: left;
    margin-top:1vw;
    line-height: normal;
}
.mainero-slide img {
    width:100%!important;
    max-width: 600px;
    margin:0 auto!important;
}
.mainero-slide .small-text {
    color:#000;
    font-size: 2vw;
    text-align: center;
    margin:0 auto;
    max-width: 1000px;
    line-height: normal;
    padding:0;
}
.mainero-slide .large-text {
    color:#000;
    font-size: 3vw;
    text-align: center;
    padding:0 0 1vw 0;
    max-width: 1000px;
    line-height: normal;
    margin:0 auto;
}
.mainero-slide .slide-btn {
    display: inline-block;
    padding:.8vw;
    background:#ffd103;
    font-size: 1.5vw;
    text-align: left;
    margin-top:1vw;
    line-height: normal;
}
.head-social{
	width: 100%;
	display: none;
}
.home-social {
    width:100%;
    padding:40px 0;
}
.home-social h3, .head-social h3 {
    text-align: center;
    font-size: 40px;
}
.home-social ul, .head-social ul {
    padding:20px 0;
    margin:0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap:20px 40px;
}
.home-social ul li, .head-social ul li {
    font-size: 30px;
    font-weight: 400;
    padding:0;
    margin:0;
    list-style: none;
}
.home-social ul li a, .head-social ul li a {
    color:#005dac;
}
.home-social ul li a:hover, .head-social ul li a:hover {
    color:#454545;
}

/*===================== 
	quicklinks styles 
=======================*/
.quicklinks{background:url(../siteart/whitey_@2X.jpg) center center repeat;text-align:center;padding:3% 0;position:relative;}
.quicklinks-home{background:#6e675f;text-align:center;padding:3% 0;position:relative;}
#linkwrap{max-width:1580px;}
.linkbox{background:#fff;position:relative;-moz-box-shadow:5px 5px 5px #606060;-webkit-box-shadow:5px 5px 5px #606060;box-shadow:5px 5px 5px #606060;width:11.5%;display:inline-block;*zoom:1;*display:inline;padding:1% 0;margin:1%;position:relative;overflow:hidden;}

.titlebar{height:45px;position:relative;}
.titlebar h3{width:100%;position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);-webkit-transform:translate(-50%,-50%);-ms-transform:translate(-50%,-50%);}
.conditionslide{background:#005dac;width:100%;padding:0 0 5px 0;position:absolute;z-index:999;bottom:-100%;left:0;-webkit-transition:.5s all ease;-moz-transition:.5s all ease;-o-transition:.5s all ease;transition:.5s all ease;}
.conditionslide a{display:block;text-align:center;color:#fff;padding:4px 0;font-size:12px;}
.conditionslide a:hover{color:#005dac;background:#fff;border-top:1px solid #005dac;}


.linkbox:hover .conditionslide {bottom:0px;}


.linkbox h3{line-height:1em;font-size:20px;padding:10px 2px 0 2px;}
.linkbox:hover > h3{color:#005dac;}
.linkbox:hover .conditionslide{bottom:0px;}


.cta-btn-cont-1 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.invbutton{background:url(../siteart/navback5.jpg) repeat;background-color:#fff; padding:8px;-moz-border-radius:5px;-webkit-border-radius:5px;border-radius:5px;-moz-box-shadow:5px 5px 5px #606060;-webkit-box-shadow:5px 5px 5px #606060;box-shadow:5px 5px 5px #606060;}
.invbutton:hover{background:url(../siteart/navback_active2.jpg) repeat;-moz-transition:0.24s all ease;-webkit-transition:0.25s all ease;-o-transition:0.25s all ease;transition:0.25s all ease;-moz-border-radius:5px;-webkit-border-radius:5px;border-radius:5px;}
.invbutton h4{padding:0;}
.invbutton:hover h4{color:#fedd37;}

#collapse{position:relative;}
#collapse:hover{cursor:pointer;}
.landinglink{width:30%;display:inline-block;zoom: 1;*display: inline;margin:10px;}
.completelist{position:absolute;width:100%;-moz-box-shadow:5px 5px 5px #606060;-webkit-box-shadow:5px 5px 5px #606060;box-shadow:5px 5px 5px #606060;}
.completelist a{width:100%;display:block;margin:0 auto;padding:5px 0;text-align:center;background:#bcbcbc;color:#0161a7;}
.completelist a:hover{background:#fedd37;-moz-transition:0.24s all ease;-webkit-transition:0.25s all ease;-o-transition:0.25s all ease;transition:0.25s all ease;}
/*===================== 
	showroom styles 
=======================*/
.showroom-cont {
	max-width: 900px;
	margin:0 auto;
	display:flex;
	flex-wrap: wrap;
	justify-content: center;
}
.showroom-btn {
	background: #fff;
	position: relative;
	-moz-box-shadow: 5px 5px 5px #606060;
	-webkit-box-shadow: 5px 5px 5px #606060;
	box-shadow: 5px 5px 5px #606060;
	display: block;
	height: 230px;
	padding: 0;
	margin: 10px 20px 20px 20px;
	-webkit-transition:.25s ease-in;
	-moz-transition:.25s ease-in;
	-o-transition:.25s ease-in;
	transition:.25s ease-in;
}
.showroom-btn img {
	max-width: 200px;
	height: auto;
	display: block;
}

.showroom-btn-info {
	width:100%;
	position: absolute;
	text-align: center;
	bottom:10px;
	padding:0 5px;
	box-sizing: border-box;
	line-height: 1em;
	font-size: 18px;
	ont-family: 'Exo 2', sans-serif;
	color: #0161a7;
	font-weight: 600;
}
.showroom-btn:hover {
	-moz-box-shadow: 5px 9px 15px #606060;
  	-webkit-box-shadow: 5px 9px 15px #606060;
	box-shadow: 5px 9px 15px #606060;

}
/*===================== 
	brand slider styles 
=======================*/
.manu {
  width: 100%;
  background: #fff;
}
.manuslider {
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0;
}
.manuslider .slick-track {
	display: flex;
	align-items: center;
}
/*===================== 
	contact/location styles 
=======================*/
#storecontact {
  margin-bottom: 2%;
}
#contactblock {
  background: #fff;
  padding: 2%;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  -moz-box-shadow: 5px 5px 5px #666;
  -webkit-box-shadow: 5px 5px 5px #666;
  box-shadow: 5px 5px 5px #666;
}
.mapmobile {
  display: none;
}
.precisionhead, .precisionsubhead {
  padding: 0;
  text-align: left;
}
.precisioncopy {
  text-align: left;
}
.precision-wrap {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 20px 1%;
}
.precision-cont-1:first-of-type {
	width:100%;
}
.precision-cont-1 {
	width: 47%;
	background: #fff;
	padding: 1%;
	box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.4);
	box-sizing: border-box;
	flex-grow: 1;
	display: flex;
	flex-wrap: wrap;
	gap:20px;
}
.precision-head-1 {
	width:100%;
	padding-bottom:10px;
	border-bottom: 1px solid #000;
}
.precision-head-1 img {
	margin:0 auto;
	max-width: 200px;
	width: 100%;
	height: 100px;
	display: block;
	object-fit: contain;
	object-position: center;
}
.precision-head-1 h2 {
	font-size: 24px;
	text-align: center;
}
.precision-cont-1 ul {
	padding:10px;
	margin:0;
	flex-grow: 1;
}
.precision-cont-1 ul li {
	padding:0;
	margin:0;
	list-style: none;
	font-size: 18px;
	font-weight: 400;
}
.precision-cont-1 ul li span {
	font-size: 700;
}

/*===================== 
	finance styles 
=======================*/
.financerow {
  width: 100%;
  text-align: center;
  margin: 0 auto;
}
.financebox {
  display: inline-block;
  zoom: 1;
  *display: inline;
  margin: 1%;
  width: 20%;
  background: #fff;
  padding: 1%;
  -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);
    border: 1px solid #0161a7;
}
/*===================== 
	precision styles 
=======================*/
#precisiontext {
  text-align: left;
}
#precisiontext h4 {
  padding: 0;
}
#precisiontext ul li {
  margin: 5px auto;
  font-size: 18px;
  line-height: 1.5em;
}
#precisiontext ul li a {
  color: #0161a7;
}
#precisiontext ul li a:hover {
  color: #000;
}

/*===================== 
	precision styles 
=======================*/

.career-wrap {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap:20px 1%;
}
.career-cont-1 {
    width: 47%;
    background: #fff;
    padding: 1%;
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.4);
    box-sizing: border-box;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}
.career-cont-1 .invbutton {
    display: inline-block;
    margin:20px 5px;
}

.career-cont-2 {
    width: 100%;
    background: #fff;
    padding: 1%;
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.4);
    box-sizing: border-box;
    margin:40px auto;
}
.career-cont-2 p {
    padding:0;
}
/*===================== 
	Equipment Distribution styles 
=======================*/

.manu-section-1 {
    width:100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}
.manu-col-1 {
    width:69%;
}
.manu-col-1 img {
    max-width: 100%;
    height: auto;
    display: block;
}
.manu-col-2 {
    width:29%;
}
.btn-1 {
    margin: 10px;
    padding:15px 20px;
    background-image: -webkit-linear-gradient(270deg,rgba(255,217,27,1.00) 0%,rgba(255,230,109,1.00) 24.87%,rgba(255,217,27,1.00) 82.38%);
    background-image: -moz-linear-gradient(270deg,rgba(255,217,27,1.00) 0%,rgba(255,230,109,1.00) 24.87%,rgba(255,217,27,1.00) 82.38%);
    background-image: -o-linear-gradient(270deg,rgba(255,217,27,1.00) 0%,rgba(255,230,109,1.00) 24.87%,rgba(255,217,27,1.00) 82.38%);
    background-image: linear-gradient(180deg,rgba(255,217,27,1.00) 0%,rgba(255,230,109,1.00) 24.87%,rgba(255,217,27,1.00) 82.38%);
    box-shadow: 2px 5px 10px 1px rgba(0,0,0,0.6);
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    font-family: 'Exo 2', sans-serif;
    color: #0161a7;
    font-size: 20px;
    text-align: center;
}
.btn-1:hover {
    background-image: -webkit-linear-gradient(270deg,rgba(90,90,90,1.00) 0%,rgba(171,171,171,1.00) 24.87%,rgba(90,90,90,1.00) 82.38%);
    background-image: -moz-linear-gradient(270deg,rgba(90,90,90,1.00) 0%,rgba(171,171,171,1.00) 24.87%,rgba(90,90,90,1.00) 82.38%);
    background-image: -o-linear-gradient(270deg,rgba(90,90,90,1.00) 0%,rgba(171,171,171,1.00) 24.87%,rgba(90,90,90,1.00) 82.38%);
    background-image: linear-gradient(180deg,rgba(90,90,90,1.00) 0%,rgba(171,171,171,1.00) 24.87%,rgba(90,90,90,1.00) 82.38%);
    color: #fedd37;
}

/*===================== 
	Form styles 
=======================*/
#formpage {
  padding: 0 10px;
}
form {
  margin: 0 0 0;
}
label {
  display: block;
  font-size: 16px;
  padding-top: 4%;
  width: 100%;
}
form input {
  font-family: 'Open Sans', Arial, sans-serif;
  border: #999999 solid 1px;
  border-radius: 2px;
  padding: 1%;
  font-size: 14px;
  width: 100%;
  margin-bottom: 10px;
}
form input:focus {
  border: #2885b3 solid 1px;
}
form input.button2 {
  display: block;
  width: 50%;
  margin: 0 auto 5% auto;
  border: #277e32 solid 1px;
  background-color: #38b749;
  color: #fff;
  border-radius: 2px;
}
form input.button2:hover {
  background-color: #277e32;
  cursor: pointer;
}
select {
  font-family: 'Open Sans', Arial, sans-serif;
  border: #999999 solid 1px;
  padding: 1%;
  font-size: 14px;
  width: 102%;
}
textarea {
  font-family: 'Open Sans', Arial, sans-serif;
  border: #999999 solid 1px;
  border-radius: 2px;
  padding: 1%;
  font-size: 14px;
  width: 100%;
}

/*===================== 
	Form styles 
=======================*/

/* Containers */
.thankyou-cont-1 {
    width: 100%;
    background: #fff;
    padding: 1% 1% 50px 1%;
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.4);
    box-sizing: border-box;
    margin:40px auto;
}


.form-info-cont {
	width: 100%;
	box-sizing: border-box;
    text-align: left;
}
.form-info-cont label {
	padding:0 0 10px 0;
}
.form-flex {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-end;
}
.form-inline-1 {
	display: flex;
	flex-wrap: wrap;
}

.form-inline .btn-red {
    display: block;
    margin:0 auto;
}

.thankyou-container {
	max-width: 1100px;
	box-sizing: border-box;
	padding:10% 10px 10% 10px;
	margin:0 auto;
}
.form-parts-section {
    display: flex;
    flex-wrap: wrap;
    margin-bottom:30px;
}
.parts-row {
    display: flex;
    flex-wrap: wrap;
    width:100%;
}
.parts-row .col-1-3 {
    border:1px solid #000;
    width:33.33%;
    box-sizing: border-box;
}

.parts-row .col-1-4 {
    border:1px solid #000;
    width:25%;
    box-sizing: border-box;
}

.blue-row {
    background:#0161a7;
}
.blue-row h3{
    color:#fff!important;
    text-align: center;
    padding:0;
    margin:0 auto;
}
.grey-row {
    background:#CFCFCF;
}
.parts-row input {
    padding:5px;
    margin:0;
    background: rgba(0,0,0,0)!important;
    border:0px!important;
    font-size: 17px;
    box-sizing: border-box;
}

/* 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;
    background:#fff;
    border:1px solid #000;
}
.form-info-cont p {
    color:#b80000;
}
.radio-input input, .check-box-cont input {
	display: inline-block;
    width: auto;
}
.radio-input label, .check-box-cont label {
	display: inline-block;
    width: auto;
}
.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: 'Open Sans', Arial, 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: #891b1d;
	-webkit-appearance: none;
}
.form-info-cont h3 {
    margin: 0 0 10px 0;
    padding: 0 0 5px 0;
    border-bottom: 1px solid #000;
    color:#b80000;
}

.form-inline .invbutton {
    display: inline-block;
    margin: 20px 5px;
    width:auto;
    padding:8px 15px;
    cursor: pointer;
}

.CaptchaWhatsThisPanel a {color:#000;}
.CaptchaWhatsThisPanel a:hover {text-decoration:underline;} 







/*===================== 
	layout styles 
=======================*/


.col-1-2 {
    width:49%;
}
.col-1-3 {
    width:32%;
}

.padit {
  padding: 2% 0;
}
.welcome h1 {
  font-weight: 600;
}
.welcome {
  text-align: center;
  background: #6e675f;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
#storehours {
  margin-top: 10%;
}
.store, .address {
  background: #fff;
  padding: 2%;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  -moz-box-shadow: 5px 5px 5px #666;
  -webkit-box-shadow: 5px 5px 5px #666;
  box-shadow: 5px 5px 5px #666;
}
.hours, .storecontact {
  text-align: center;
}
#stjoe {
  
}
#skyview {
  
}
.sitemap {
  background: url(../siteart/escheresque_ste.png) repeat;
  color: #fff;
}
.sitemap p {
  line-height: 2em;
}
.sitemap i {
  font-size: 42px;
  margin-right: 20px;
}
#bottompromo {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
}
/*===================== 
	inventory styles 
=======================*/
.listed {
  margin-top: -30px;
  padding-top: 2%;
  position: absolute;
  left: 0;
  width: 100%;
  background: url("/siteart/august_2020/st.joe.tractor.jpg") top center fixed no-repeat;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  border-top: 5px solid #005dac;
}
.hosted-content .listings-wrapper .listings-list .listing-banner {
  background: #005dac !important;
}
.listing-banner h2 {
  color: #fff !important;
}
.listings-wrapper .listing-smallcard.column3 {
  background: #ccc !important;
}
.hosted-content .btn {
  background: #005dac !important;
}
.hosted-content .btn:hover {
  background: #fedd37 !important;
}
.listings-wrapper .hosted-theme .btn:hover {
  color: #005dac !important;
}
.hosted-content input[type='submit'] {
  background: #005dac !important;
}
.hosted-content input[type='submit']:hover {
  background: #fedd37 !important;
  color: #333 !important;
}
.hosted-content .attachment-search .search-checkboxes label {
  width: 20px !important;
}
.hosted-content .attachment-search .search-checkboxes label .row input[type="checkbox"] {
  -moz-appearance: checkbox !important;
  -webkit-appearance: checkbox !important;
  -ms-appearance: checkbox !important;
  -o-appearance: checkbox !important;
  appearance: checkbox !important;
}
.hosted-content .pagination > select {
  width: 5% !important;
}
.hosted-content .pagination > .drop-down-form select {
  width: 60px !important;
}
.hosted-content .listings-wrapper {
  text-align: left !important;
}
.currency-capital-price-container, .currency-capital-price-container img {
  display: none !important;
}
#hs-content-wrapper {
  background: url("/siteart/august_2020/combine_bkg_2020.jpg") center center fixed no-repeat;
  -moz-background-size: cover;
  -webkit-background-size: cover;
  background-size: cover;
  border-top: 5px solid #005dac;
  width: 100%;
  max-width: none;
  z-index: -2;
  margin-top: 20px;
  left: 0;
  padding-top: 50px;
}
#hs-main-content {
  width: 96%;
  max-width: 1280px;
  margin: 0 auto;
}
.product-controls select {
  width: auto;
}
.products {
  background: #fff;
}
/*--------Scrolling Inventory--------*/
.mobilecontainer {
  overflow: hidden; /* must have this property for mobile phones and tablet display! */
  width: 100%;
  margin: 0 auto;
  height: 92px;
  padding: 0;
  background: #000;
}
iframe.banner {
  width: 100%;
  height: 92px;
  background: #000
}
/*  SECTIONS  */
.section {
  clear: both;
  padding: 0px;
  margin: 0px;
}
/*  COLUMN SETUP  */
.col {
  display: block;
  float: left;
  margin: 1% 0 1% 2.0%;
}
.col:first-child {
  margin-left: 0;
}
/*  GROUPING  */
.group:before, .group:after {
  content: "";
  display: table;
}
.group:after {
  clear: both;
}
.group {
  zoom: 1; /* For IE 6/7 */
}
/*  GRID OF TWELVE  */
.span_12_of_12 {
  width: 100%;
}
.span_11_of_12 {
  width: 91.5%;
}
.span_10_of_12 {
  width: 83%;
}
.span_9_of_12 {
  width: 74.5%;
}
.span_8_of_12 {
  width: 66%;
}
.span_7_of_12 {
  width: 57.5%;
}
.span_6_of_12 {
  width: 49%;
}
.span_5_of_12 {
  width: 40.5%;
}
.span_4_of_12 {
  width: 32%;
}
.span_3_of_12 {
  width: 23.5%;
}
.span_2_of_12 {
  width: 15%;
}
.span_1_of_12 {
  width: 6.5%;
}
/*  GRID OF FOUR  */
.span_4_of_4 {
  width: 100%;
}
.span_3_of_4 {
  width: 74.5%;
}
.span_2_of_4 {
  width: 49%;
}
.span_1_of_4 {
  width: 23.5%;
}
/*  GRID OF THREE  */
.span_3_of_3 {
  width: 100%;
}
.span_2_of_3 {
  width: 66.13%;
}
.span_1_of_3 {
  width: 32.26%;
}
/*===================== 
	video styles 
=======================*/
.videobox {
  width: 22%;
  margin: 1%;
  display: inline-block;
  zoom: 1;
  *display: inline;
  vertical-align: top;
}
.videotitle {
  background: #005dac;
  position: relative;
  height: 60px;
  padding: 0 2%;
}
.videotitle p {
  text-align: center;
  color: #fff;
  position: absolute;
  top: 50%;
  width: 96%;
  transform: translate(-0%, -50%);
  -webkit-transform: translate(-0%, -50%);
  -ms-transform: translate(-0%, -50%);
  padding-bottom: 0;
  font-size: 16px;
}
#kinze img {
  height: 150px !important;
  width: 100% !important;
  overflow: hidden;
}
.pagetitle {
  text-align: left;
}

.slick-slide {
    height: auto!important;
}

/*===================== 
	footer styles 
=======================*/
.pagebottom {
  background: #fff;
  padding: 20px 0;
  border-top: #fedd37 10px solid;
}
.pagebottom p {
  color: #fff;
  font-size: 14px;
}
.pagebottom a {
  color: #454545;
}
.pagebottom a:hover {
  color: #005dac;
}
#footerpages a, #footerpages h3, #footerinv h3, #footerinv a {
  display: block;
  text-align: center;
}
#footerinv h3, #footerpages h3 {
  padding: 0;
}
#footerinvleft, #footerinvright {
  margin: 0 auto;
}
#footerlogos {
  text-align: center;
}
footer {
  margin: 0 auto;
  width: 100%;
}
a.footerlink:link, a.footerlink:visited, a.footerlink:active {
  text-decoration: none;
  font-size: 11px;
  color: #005dac;
  border-bottom: none;
}
a.footerlink:hover {
  text-decoration: none;
  font-size: 11px;
  color: #454545;
}
.footertext {
  font-size: 11px;
  color: #005dac;
}
.smallfootertext {
  font-size: 11px;
  color: #005dac;
}
.divfooter {
  text-align: left;
  margin: 0 auto;
}

footer {
    text-align: center;
}
/*===================== 
	Responsive styles 
=======================*/
.mobile-only {display: none;}
@media screen and (max-width: 1500px) {
	.titlebar h3{font-size:16px;}
    .conditionslide a{font-size:11px;}
	.listed{padding-top:4%;}
}


@media screen and (max-width: 1350px) {
	.copywrap{width:96%;}
	.copywrap p{padding:0 4%;}
    .conditionslide a{padding:3px 0;}
	h1{font-size:32px;}
	.linkbox{width:12.5%;margin:0.5%;}
	

	
	#stjoe, #skyview{-moz-background-size:contain;-webkit-background-size:contain;background-size:contain;}
	
	.manuslider{width:85%;}
	
	#employed h4{font-size:18px;}
	.employee, #contacthours p{font-size:16px;}
	#contacthours h3{font-size:20px;}
	
	.financebox{width:25%;}
}


@media screen and (max-width: 1170px) {

	.linkbox{padding-top:2%;}
	.linkbox h3{font-weight:normal;}
	.conditionslide a{padding:3px;}
	
	.pagebottom h3{font-size:20px;padding:0;}
	.pagebottom a{font-size:16px;}
	
	#hourblock, #employed{width:100%;float:none;text-align:center;margin:0.5% auto;}
	.days, .time{display:inline-block;zoom: 1;*display: inline;padding:0;}
}

@media screen and (max-width: 1050px) {

	.linkbox{padding:2% 0;width:17.5%;margin:1%;}
	.titlebar{height:40px;}
	.titlebar h3{font-size:16px;}
	.invbutton h4{font-size:16px;}
	.completelist a{font-size:14px;}
	
	.hosted-content .pagination>select{width:8% !important;}
	
	.pagebottom a{font-size:14px;}
	
	.videobox{width:31%;}
}

@media screen and (max-width: 1085px) {
    header p{font-size:20px;}
    
}

@media screen and (max-width: 900px) {
	.linkbox{padding:2% 0 1% 0;}
	.linkbox h3{padding:4px 2px 0 2px;}
	
	.copywrap{width:85%;}
	.copywrap p{padding:0;}
	
	.storecontact h3{font-size:20px;}
	
	.manuslider{width:80%;}
}

@media screen and (max-width: 800px) {
    
    .col-1-3, .col-1-2 {
        width:100%;
    }
    .banner-flex-left {
        width:100%;
        order:2;
    }
    .banner-flex-right {
        width:100%;
        order:1;
    }
	header p{font-size:15px;}	

    .home-header-1 {
    background-image: -webkit-linear-gradient(270deg,rgba(255,255,255,0.30) 0%,rgba(255,255,255,0.30) 100%), url("../siteart/homepage-hero-background.jpg");
    background-image: -moz-linear-gradient(270deg,rgba(255,255,255,0.30) 0%,rgba(255,255,255,0.30) 100%), url("../siteart/homepage-hero-background.jpg");
    background-image: -o-linear-gradient(270deg,rgba(255,255,255,0.30) 0%,rgba(255,255,255,0.30) 100%), url("../siteart/homepage-hero-background.jpg");
    background-image: linear-gradient(180deg,rgba(255,255,255,0.30) 0%,rgba(255,255,255,0.30) 100%), url("../siteart/homepage-hero-background.jpg");
    }
    .head-logo-cont-1 {
        flex-direction: column;
        align-items: center;
    }
	.home-header-1 header {
		background:#fff;
	}
	.home-header-1 header p {
	  color: #0161a7;
		text-shadow: none;
	}
	.home-header-1 header {
		order:1;
	}
	.home-header-1 #menu-button {
		order:0;box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
	}
	
	.slideshow-img-mobile {
		display: block;
	}
	
	.head-logo-col-1-2 img {
		display: none;
	}

	
	.linkbox{padding-top:3%;}
	.titlebar h3{font-size:14px;}
	.conditionslide a{font-size:10px;}
	.logo{float:none;text-align:center;}
	h1 {font-size: 30px;}
	h2 {font-size: 26px;}
	h3 {font-size: 20px;}
	h4 {font-size: 18px;}
	h5 {font-size: 16px;}
	p {font-size: 16px;}
	
	#fb {top:140px;}
	#insta{top:190px;}
	#tiktok {top:240px;}
	#snap{top:290px;}
	
	.copywrap{width:90%;}
	
	.storecontact h3{font-size:18px;}
	
	.landinglink{width:45%;margin:10px auto;}
	.invwrap{padding:8% 0;margin:0 auto;}
	
	.listed{padding-top:2%;}
	#sandhills{position:absolute;width:96%;left:0;text-align:center;margin:290px 2% 2% 2%;}
	.divfooter{text-align:center;}
	#footerpages{width:35%;text-align:center;}
	#footerinv{width:63%;text-align:center;margin-bottom:3%;}
	#footerlogos{width:100%;float:none;display:block;text-align:center;margin:2% auto;}
	#footerlogos img{transform:scale(0.80);max-height:40px;}
	
	.mapdesktop{display:none;}
	.address, .mapmobile{display:inline-block;zoom: 1;*display: inline;vertical-align:middle;}
	.address{width:35%;}
	.mapmobile{width:60%;}
	#stjoecontact, #stjoestore, #skyviewcontact, #skyviewstore{width:100%;margin:1% auto;}
	#storecontact{margin-bottom:4%;}
	
	.videobox{width:45%;margin:2%;}
	
	#sandhills img{margin:0 auto !important;}
	
	#precisiontext ul li{font-size:16px;}
	
	#hs-content-wrapper{margin-top:-20px;padding-top:0;}	

    .career-cont-1 {
        width:95%;
        margin:20px auto;
    }
    .manu-col-1 {
        width:100%;
    }
    .manu-col-2 {
        width:100%;
        max-width: 300px;
        margin:20px auto;
    }
    .slider-content {
        padding:30px;
        
    }
    .nh-slide .small-text, .mainero-slide .small-text {
        font-size: 4vw;
    }
    .nh-slide .large-text, .mainero-slide .large-text {
        font-size: 6vw;
    }
    .dist-slide .large-text {
        font-size: 5vw;
    }
    
    .nh-slide .slide-btn, .dist-slide .slide-btn, .mainero-slide .slide-btn {
        padding:1.2vw;
        font-size: 3.5vw;
        margin-top:3vw;
    }
    .parts-links {
        font-size: 4.5vw;    
    }
}
@media screen and (max-width: 767px) {
	.desktop-only {display: none;}

	.mobile-only {display: block;background:#005dac;}
	
	.head-logo-col-1-1 p{
		display: none;
	}
	
	.head-logo-col-1-2{
		display: none;
	}
	
	.head-social{
		display: contents;
	}
}


@media screen and (max-width: 700px) {
	.linkbox{width:28%;}
	.precision-cont-1 {
		width: 100%;
	}
	
}

@media screen and (max-width: 650px) {
	header p{font-size:15px;padding:0 8px;margin:0 0 5px 0;}

	.linkbox{width:30%;margin:1%;padding-top:4%}
	#complete{margin-top:5%;}
	.landinglink{width:70%;}

	#fb {display:none;}
	#insta {display:none;}
	#tiktok {display:none;}
	#snap {display:none;}
	
	.copywrap{width:96%;}
	h1{font-size:26px;}
	
	.hosted-content .pagination>select{width:12% !important;}
	
	#employed h4{font-size:17px;}
	#stjoelocation, #storehours, #skyviewlocation, .address, .mapmobile{display:block;width:90%;float:none;text-align:center;margin:2% auto;}
	#sandhills{margin-top:300px;}
    
    .videotitle p{font-size:14px;}
}

/*  GO FULL WIDTH BELOW 480 PIXELS */
@media only screen and (max-width: 480px) {
	
	.logoright{margin-top:-8%;}
	
	#anchor{display:none;}

	.linkbox{width:40%;margin:2%;}
	.landinglink{width:90%;}
	
	.pagebottom{padding:0;}
	#footerpages{width:100%;float:none;display:block;margin:4% auto;}
	#footerinv{width:100%;float:none;display:block;margin:4% auto;}
	#footerinvleft, #footerinvright{width:50%;float:left;margin:0 auto;}
	#sandhills{margin-top:280px;margin-bottom:5%;}
	#footerlogos a img{height:60px;}
	
	.col {  margin: 4% 0 4% 0%; }
	.span_1_of_4, .span_2_of_4, .span_3_of_4, .span_4_of_4 { width: 100%; }
	.span_3_of_3, .span_2_of_3, .span_1_of_3 { width: 100%; }
    .span_1_of_12, .span_2_of_12, .span_3_of_12, .span_4_of_12, .span_5_of_12, .span_6_of_12, .span_7_of_12, .span_8_of_12, .span_9_of_12, .span_10_of_12, .span_11_of_12, .span_12_of_12 {
	width: 100%; 
	}	
	
	.hosted-content .pagination>select{width:15% !important;}
	
	#position, .precision{margin:8px auto;}
	.mail{width:50%;margin:0 auto;}		
	#precisionmail{width:100%;}
	
	.videobox{width:80%;margin:4% auto;}

	#sandhills{margin-top:340px;}
	#footerlogos img{margin:0 auto !important;}
	
	.financebox{width:50%;margin:2% auto;}
	
}

@media screen and (max-width: 447px){

	
	.copywrap{width:90%;}
	
	/*.promoslider{display:none;}*/
	
	.pagebottom{padding:20px 0;text-align: center;}
	.divfooter {text-align:center;}	
	#sandhills{margin-top:380px;}
}

@media screen and (max-width: 414px){
	
	.pagebottom{padding:0;}
	#footerpages, #footerinv{width:100%;}
	#footerinvleft, #footerinvright{margin:0 auto;width:100%;float:none;display:block;}
	#footerpages h3, #footerinv h3{padding-bottom:0;}
	#sandhills{margin-top:620px;}
	
	.mail{width:60%;}	
	.precision{width:60%;}
	
	.videobox{width:90%;}
	
	.financebox{width:70%;}
}

@media screen and (max-width: 380px){

	.topline{display:none;}
	
	.linkbox{width:45%;margin:2%;padding:6% 0 2% 0;}
	
	.hosted-content .pagination>select{width:18% !important;}
	
	.invwrap{padding:10% 0;}
	
	.mail{width:70%;}
	.precision{width:70%;}
}