﻿/* ===========================================================
green: #4B7728 - yellow: #F1D884
=========================================================== */

/* ===========================================================
01.      Reset
02.      Body Styles
03.      Header Structure
04.      Typography
05.      Links / Buttons
06.      Site Structure
07.      Footer Structure
08.      Form Structurev
08.01   Form Base Styles
08.02   Captcha
09.02   Form Structure
09.      Classes
10.      Inventory Stylesheader h1 img
11.      Responsive Styles
=========================================================== */

/* ===========================================================
01. Reset
=========================================================== */

/*! minireset.css v0.0.6 | MIT License | github.com/jgthms/minireset.css */

html,
body,
p,
ol,
ul,
li,
dl,
dt,
dd,
blockquote,
figure,
fieldset,
legend,
textarea,
pre,
iframe,
hr,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
/*
  font-size: 100%;
  font-weight: normal;
*/
}

ul {
  list-style: none;
}

button,
input,
select,
textarea {
  margin: 0;
}

html {
  box-sizing: border-box;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

video {
  height: auto;
  max-width: 100%;
}

iframe {
  border: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

td:not([align]),
th:not([align]) {
  text-align: inherit;
}

html {
  background-color: white;
  font-size: 16px;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  min-width: 300px;
  /* overflow-x: hidden;
    overflow-y: scroll; */
  text-rendering: optimizeLegibility;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

article,
aside,
figure,
footer,
header,
hgroup,
section {
  display: block;
}

a:link,
a:visited,
a:active {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

img {
  border: 0;
  height: auto;
  max-width: 100%;
  align-self: center;
  flex-shrink: 0;
}

/* ===========================================================
02. Body Styles
=========================================================== */

body {
  font-family: "Barlow", sans-serif;
  font-size: 18px;
}

html,
body {
  overflow-x: hidden;
}

/* ===========================================================
03. Header Structure
=========================================================== */

/* Header */

.mobile-nav-container,
#menu-button {
  display: none;
}

header {
  width: 100%;
  position: relative;
  z-index: 10;
  background: #fff;
  -webkit-box-shadow: 0px 4px 16px -1px rgba(0, 0, 0, 0.44);
  -moz-box-shadow: 0px 4px 16px -1px rgba(0, 0, 0, 0.44);
  box-shadow: 0px 4px 16px -1px rgba(0, 0, 0, 0.44);
}

header h1 img {
  max-width: 400px;
  height: auto;
}

.header-top {
  padding: 30px 0;
}

.header-top .wrapper {
  display: flex;
  position: relative;
  justify-content: space-between;
  align-items: center;
}

.header-logo {
  position: relative;
  z-index: 10;
max-width:45%;
}

.header-logo a {
  display: flex;
}

.header-bottom {
  border-top: 1px solid #636868;
  width: 100%;
}

.header-bottom .wrapper {
  display: flex;
  justify-content: flex-start;
}

.bttn-container {
  display: flex;
}

.bttn-container a:first-of-type {
  margin-right: 50px;
}

header .bttn-container {
  height: 100%;
  align-items: center;
}

header .bttn-container .fa-phone {
  color: #4b7728;
  font-size: 25px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}

header .bttn-container .fa-phone:hover {
  opacity: 0.6;
}

/* Header Search */

.header-search-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 110px;
  background-size: 1px 200px;
  position: relative;
  overflow: hidden;
}

.header-search-icon:hover {
  cursor: pointer;
}

.header-search-icon:hover i {
  opacity: 0.6;
}

.header-search-icon a {
  position: relative;
  z-index: 1;
}

.header-search-icon i {
  color: #4b7728;
  font-size: 25px;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -webkit-transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -moz-transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -ms-transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -o-transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.header-hide-bttn {
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -webkit-transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -moz-transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -ms-transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -o-transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform: translateY(-15px);
  -webkit-transform: translateY(-15px);
  -moz-transform: translateY(-15px);
  -ms-transform: translateY(-15px);
  -o-transform: translateY(-15px);
}

/*  */

.header-search-slide {
  background: #e8e8e8;
  padding: 30px 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
}

.search-outer-container {
  width: 100%;
  max-height: 100%;
  height: 50px;
}

.header-search {
  display: flex;
  height: 100%;
}

.header-search input[type="text"] {
  font-weight: 500;
  font-style: normal;
  font-size: 18px !important;
  color: #808080 !important;
  text-transform: uppercase;
  background: #d3d3d3;
  border: none;
}

.header-search ::placeholder {
  font-weight: 500;
  font-style: normal;
  font-size: 18px !important;
  color: #808080 !important;
  text-transform: uppercase;
}

.header-search i {
  color: #fff;
  font-size: 25px;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
}

#mobile-form-submit {
  max-height: 80px;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
}

#mobile-form-submit:hover {
  background: #2f6326 !important;
  cursor: pointer;
}

.header-search input:focus {outline: none !important;outline-style: none;box-shadow: none;border-color: transparent;caret-color: #c1bfbf;}

.initiallyHidden {display: none;}
.ft-logo {text-align: center; width: 100%; margin: 25px auto; padding: 0px 0 20px 0; border-bottom:1px solid #f1f1f1}
.logowis {display:inline-flex; text-align: left; margin: 0 auto;}
.logowis a {padding: 25px 25px; border: 1px solid #f1f1f1;height: 110px;margin: 5px;transition: .4s ease;}
.logowis img {height: 100%;width:100%; object-fit: contain; }
.logowis a:hover {opacity: .5; border: 1px solid #ccc;}

/* ===========================================================
04. Typography
=========================================================== */

h2 {
  font-size: 43px;
  line-height: 42px;
  font-weight: 700;
  letter-spacing: -1px;
  font-family: "Barlow", sans-serif !important;
  margin-bottom: 50px;
}

.list-content .list-title .list-title-text,
.auction-heading {
  font-size: 35px !important;
  line-height: 34px !important;
  font-weight: 700 !important;
  letter-spacing: -1px;
  font-family: "Barlow", sans-serif !important;
  color: #4b7728;
}

h3 {
  /* font-family: "Barlow Condensed", sans-serif; */
  font-size: 30px;
  line-height: 31px;
  font-weight: 700;
  letter-spacing: 0;
  font-family: "Barlow", sans-serif !important;
  margin-bottom: 20px;
}

h4 {
  font-family: "Barlow", sans-serif;
  font-weight: 600;
  font-size: 21px;
  line-height: 24px;
  font-style: normal;
  letter-spacing: 0.1px;
  margin-bottom: 25px;
}

h5 {
  font-family: "Barlow", sans-serif;
  font-size: 16px;
  line-height: 17px;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.small {
  font-size: 0.8em;
  color: #929292;
}

strong {
  color: #363636;
  font-weight: 700;
}

p {
  color: #000;
  margin-bottom: 25px;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
}

/* ===========================================================
05. Links / Buttons
=========================================================== */

a {
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -webkit-transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -moz-transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -ms-transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -o-transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.bttn-base {
  font-family: "Barlow", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: 0.3s !important;
  height: 50px;
  padding: 0 80px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  border: none !important;
  box-sizing: border-box;
}

.bttn-green {
  background: #4b7728;
  color: #fff !important;
}

.bttn-green:hover {
  background: #2f6326;
}

.bttn-green i {
  color: #fff;
}

.bttn-yellow {
  background: #f1d884;
  color: #446831 !important;
}

.bttn-yellow:hover {
  background: #d8bc6c;
}

.bttn-base i {
  margin-right: 10px;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -webkit-transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -moz-transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -ms-transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -o-transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.bttn-arrow i {
  margin: 0 0 0 10px;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -webkit-transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -moz-transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -ms-transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -o-transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.bttn-arrow:hover i {
  transform: translateX(5px);
  -webkit-transform: translateX(5px);
  -moz-transform: translateX(5px);
  -ms-transform: translateX(5px);
  -o-transform: translateX(5px);
}

.bttn-small {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.body-link {
  font-weight: 600;
  color: #757575;
}

.body-link:hover {
  opacity: 0.7;
}

/* ===========================================================
06. Site Structure
=========================================================== */

.wrapper {
  width: 80%;
  max-width: 1500px;
  margin: 0 auto;
  height: 100%;
}

.slide-content {
  position: relative;
  /* height: 700px; */
}

.slide-content .wrapper {
  position: relative;
  height: 100%;
  display: flex;
}

.hero-copy {
  position: absolute;
  z-index: 3;
  max-width: 450px;
  left: 10%;
  top: 50%;
  transform: translateY(-50%);
  text-align: left;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}

h1.hero-copy-heading {
  font-family: "Barlow", sans-serif;
    font-weight: 700;
    font-size: 55px;
    line-height: 55px;
    letter-spacing: -1px;
    color: #a9a9a8;
    margin-bottom: 15px;
}

.hero-copy-heading span {
  color: #4b7728;
}

.hero-copy-small {
  color: #000;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0.2px;
}

.slide-big-x img {
  transform: translateX(110px);
}

/* Search Bar Section */

.search-bar {
      margin: -5px 0 0 0;
}

.search-bar-outer {
  background: #4b7728;
  padding: 40px;
  position: relative;
  z-index: 2;
  -webkit-box-shadow: 0px 4px 10px -2px rgba(0, 0, 0, 0.48);
  -moz-box-shadow: 0px 4px 10px -2px rgba(0, 0, 0, 0.48);
  box-shadow: 0px 4px 10px -2px rgba(0, 0, 0, 0.48);
}

.column4 {
  width: 25%;
  padding: 0 5px;
}

.search-bar-form {
  justify-content: space-between;
  width: 100%;
}

.search-bar-form input[type="text"],
.search-bar-form select {
  background: #fff;
  border: none;
  border-radius: 50px;
  padding: 15px;
  width: 100%;
  color: #a9a9a8;
  height: 50px;
  font-size: 14px !important;
  box-sizing: border-box;
  margin-right: 20px;
  -webkit-box-shadow: 0px 3px 4px -2px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0px 3px 4px -2px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 3px 4px -2px rgba(0, 0, 0, 0.2);
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
}

.search-bar-form select::placeholder {
  text-transform: uppercase;
}

.search-bar-form .bttn-base {
  margin-top: 0 !important;
  -webkit-box-shadow: 0px 3px 4px -2px rgba(0, 0, 0, 0.2) !important;
  -moz-box-shadow: 0px 3px 4px -2px rgba(0, 0, 0, 0.2) !important;
  box-shadow: 0px 3px 4px -2px rgba(0, 0, 0, 0.2) !important;
}

.form-slider-container {
  width: 100%;
  margin-right: 20px;
}

.search-bar-form label.wrap {
  width: 100%;
  overflow: hidden;
  height: 50px;
  position: relative;
  display: block;
  margin-right: 20px;
  -webkit-box-shadow: 0px 3px 4px -2px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0px 3px 4px -2px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 3px 4px -2px rgba(0, 0, 0, 0.2);
}

.search-bar-form select.dropdown {
  height: 50px;
  padding: 10px;
  border: 0;
  font-size: 15px;
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.search-bar-form label.wrap:after {
  content: "\f107 ";
  font-family: FontAwesome;
  color: #4b7728;
  position: absolute;
  right: 0;
  top: 15px;
  z-index: 1;
  width: 10%;
  height: 100%;
  pointer-events: none;
}

select::-ms-expand {
  display: none;
}

select.dropdown {
  height: 50px;
  padding: 10px;
  border: 0;
  font-size: 15px;
  width: 200px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

label.wrap:after {
  content: "\f13a ";
  font-family: FontAwesome;
  color: #000;
  position: absolute;
  right: 0;
  top: 18px;
  z-index: 1;
  width: 10%;
  height: 100%;
  pointer-events: none;
}

.search-bar-form .bttn-base {
  padding: 0;
  width: 100%;
}

.search-bar-form .bttn-base i {
  font-size: 19px;
}

/* Categories */

.category-card-outer {
  width: 25%;
  padding: 10px;
}

.category-card-inner {
  background: #e8e8e8;
  position: relative;
  transition: top 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition: top 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  -moz-transition: top 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  -ms-transition: top 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  -o-transition: top 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  height: 300px;
  display: flex;
  align-items: flex-end;
}

.category-copy-container h4 {
  color: #4b7728;
  font-size: 19px;
}

.category-copy-container h4,
.category-card-body,
.category-copy .bttn-small {
  z-index: 3;
}

.category-card-body {
  font-size: 16px;
  line-height: 19px;
  color: #636868;
  font-weight: 400;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.8s, visibility 0.8s;
  -webkit-transition: opacity 0.8s, visibility 0.8s;
  -moz-transition: opacity 0.8s, visibility 0.8s;
  -ms-transition: opacity 0.8s, visibility 0.8s;
  -o-transition: opacity 0.8s, visibility 0.8s;
}

.category-card-inner .bttn-small {
  color: #808080 !important;
  align-self: center;
  margin: 15px 0;
  position: relative;
  z-index: 0;
  visibility: hidden;
}

.category-card-inner img {
  position: absolute;
  left: 50%;
  top: 20px;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}

.category-copy-container {
  display: flex;
  flex-direction: column;
  background: rgba(232, 232, 232, 0.8);
  width: 100%;
  position: relative;
}

.category-copy-container {
  height: 75px;
  overflow: hidden;
  padding: 25px 25px 12.5px 25px;
  transition: height 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition: height 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  -moz-transition: height 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  -ms-transition: height 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  -o-transition: height 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  text-align: center;
}

.category-card-inner:hover .category-copy-container {
  height: 80%;
  transition: height 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition: height 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  -moz-transition: height 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  -ms-transition: height 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  -o-transition: height 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.category-card-inner:hover .category-card-body {
  visibility: visible;
  opacity: 1;
  transition: opacity 0.8s, visibility 0.8s;
  -webkit-transition: opacity 0.8s, visibility 0.8s;
  -moz-transition: opacity 0.8s, visibility 0.8s;
  -ms-transition: opacity 0.8s, visibility 0.8s;
  -o-transition: opacity 0.8s, visibility 0.8s;
}

.category-card-inner:hover .bttn-small {
  margin-top: auto;
  visibility: visible;
  opacity: 1;
  transition: opacity 0.8s, visibility 0.8s;
  -webkit-transition: opacity 0.8s, visibility 0.8s;
  -moz-transition: opacity 0.8s, visibility 0.8s;
  -ms-transition: opacity 0.8s, visibility 0.8s;
  -o-transition: opacity 0.8s, visibility 0.8s;
}

.view-all {
  background: #4b7728;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}

.view-all:hover .category-copy-container {
  height: 75px !important;
}

.view-all .category-copy-container h4 {
  color: #fff;
}

.view-all .category-copy-container {
  background: none;
}

.view-all img {
  left: 50%;
  top: 45%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  width: 90%;
}

.view-all:hover {
  background: #2f6326;
}

/* CTA */

.ct-01-inner {
  background: url("/siteart/background-green-01.jpg") no-repeat center center;
  background-size: cover;
  padding: 40px;
  justify-content: space-between;
}

.ct-inventory-yellow .ct-01-inner {
  background: url("/siteart/cta-01-yellow.jpg") no-repeat center center;
  background-size: cover;
  padding: 40px;
  justify-content: space-between;
}

.ct-01-inner .bttn-base {
  margin-top: auto;
}

/* Values */

.values {
  background-color: #e8e8e8;
  background-image: url("/siteart/background-grey-01.jpg");
  background-position: center bottom;
  background-size: contain;
  background-repeat: no-repeat;
  padding-bottom: 250px;
}

.values h2 {
  text-align: center;
  color: #808080;
}

.section-nav ul {
  display: flex;
  justify-content: center;
}

.section-nav li {
  cursor: pointer;
  display: inline-block;
  color: #000;
  font-family: "Barlow", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 18px;
  letter-spacing: 0.6px;
  text-decoration: none;
  align-items: center;
  margin: 0 40px;
  text-align: center;
  text-transform: uppercase;
  height: 100%;
  border-bottom: 2px solid transparent;
  transition: 0.3s ease-in-out;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -ms-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
}

.section-nav .active {
  color: #4b7728;
  padding-bottom: 5px;
  position: relative;
}

.section-nav .active:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 100%;
  border-bottom: 2px solid #4b7728;
}

.values .col-1 {
  padding: 0 100px;
}

.values-container .heading {
  justify-content: flex-end;
  padding-right: 100px;
}

.values-container {
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease-in;
  -webkit-transition: opacity 0.3s ease-in;
  -moz-transition: opacity 0.3s ease-in;
  -ms-transition: opacity 0.3s ease-in;
  -o-transition: opacity 0.3s ease-in;
}

.values-container.active {
  display: block !important;
  opacity: 1;
}

/* Locations */
.flex-press {display: flex; flex-direction: row; align-items: center;}
.our-location {
  background: #4b7728;
}

.location-container {
  background: #305628;
  color: #fff;
  padding: 50px;
  -webkit-box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.35);
  -moz-box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.35);
  box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.35);
}

.location-container select,
.internal-form select {
  background: #4b7728;
  border: none;
  padding: 15px;
  width: 100%;
  color: #fff;
  height: 50px;
  font-size: 18px !important;
  font-weight: 500;
  box-sizing: border-box;
  margin-right: 20px;
  text-transform: uppercase;
}

.location-container select option {
  color: #fff;
  font-size: 18px;
}

.internal-form select option {
  color: #777;
  font-size: 18px;
}

.location-container select::placeholder,
.internal-form select::placeholder {
  text-transform: uppercase;
}

.location-container label.wrap,
.internal-form label.wrap {
  width: 100%;
  overflow: hidden;
  height: 50px;
  position: relative;
  display: block;
  margin-right: 20px;
}

.location-container select.dropdown,
.internal-form select.dropdown {
  height: 50px;
  padding: 10px;
  border: 0;
  font-size: 15px;
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.location-container label.wrap:after,
.internal-form label.wrap:after {
  content: "\f107 ";
  font-family: FontAwesome;
  color: #f1d884;
  position: absolute;
  right: 0;
  top: 15px;
  z-index: 1;
  width: 5%;
  height: 100%;
  pointer-events: none;
}

.location-container a,
.location-container p {
  color: #fff;
}

.location-container form,
.location-info {
  margin-bottom: 50px;
}

.location-container .col-6:last-of-type {
  padding-left: 50px;
}

.location-info {
  justify-content: space-between;
}

.location-bottom {
  justify-content: flex-end;
}

.list b {
  margin-right: 20px;
}

.list span {
  margin-left: auto;
  width: auto;
  font-weight: 500;
}

.location-container .list li {
  display: flex;
}

.list li {
  padding: 10px 15px;
  display: flex;
}

.list li:nth-of-type(odd) {
  background: #4b7728;
}

.internal .list li {
  color: #808080 !important;
}

.internal .list li:nth-of-type(odd) {
  background: #e8e8e8 !important;
}

.list-two-col {
  columns: 2;
  -webkit-columns: 2;
  -moz-columns: 2;
  column-gap: 50px;
}

.location-container .bttn-base {
  margin-top: auto;
}

.location-container .phone b {
  margin-right: 20px;
}

/* Locations Page */

.internal-heading {
  height: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.internal-heading h1 {
  margin-bottom: 0;
  position: relative;
  z-index: 3;
  /* font-size: 50px; */
  /* text-transform: uppercase; */
  /* line-height: 42px; */
}

/* .internal-heading h2 span {
  display: block;
  font-size: 19px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 27px;
} */

.internal-sidebar {
  background: #4b7728;
  padding: 25px 0;
}

.internal-sidebar h4 {
  padding: 0 25px;
}

.internal-sidebar.state-locator h5 {
  margin-bottom: 0;
  font-weight: 400;
  text-transform: capitalize;
}

.internal-sidebar .states {
  border-top: 1px solid #365b15;
}

.internal-sidebar .states li {
  display: block;
  border-bottom: 1px solid #365b15;
  padding: 25px;
  cursor: pointer;
  color: #fff;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}

.internal-sidebar .states li.active,
.internal-sidebar .states li:hover {
  background: #2f6326;
}

.internal-sidebar .states li.active {
  position: relative;
}

.internal-sidebar .states li.active:after {
  content: "";
  height: 30px;
  width: 30px;
  background: #fff;
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  -webkit-transform: translateY(-50%) rotate(45deg);
  -moz-transform: translateY(-50%) rotate(45deg);
  -ms-transform: translateY(-50%) rotate(45deg);
  -o-transform: translateY(-50%) rotate(45deg);
}

.location-card p {
  color: #808080;
}

.location-card .bttn-small,
.location-card .list li {
  color: #808080;
}

.internal-main {
  padding-left: 50px;
}

.location-card {
  background: #e8e8e8;
  padding: 25px;
  margin-bottom: 25px;
  justify-content: space-between;
}

.location-card-image {
  display: flex;
  margin-right: 25px;
  width: 25%;
}

.location-card-image img {
  align-self: flex-start;
}

.location-card-right {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.location-card-right-top {
  justify-content: space-between;
}

.location-card-address {
  margin-right: 25px;
}

.location-card-bottom {
  justify-content: flex-end;
}

.location-card-right-inner {
  display: flex;
  flex-direction: column;
}

.location-card .list {
  width: 100%;
  margin-bottom: 25px;
}

.location-card .list li,
.internal-sidebar .list li {
  font-size: 14px;
}

.location-card .list li:nth-of-type(odd) {
  background: #fff;
}

/* Single Locations */
.branch-location .internal-heading {
  background: #efefef;
  margin-bottom: 15px;
  height: 350px;
}

.branch-location.tulare .internal-heading {
  background: url("/siteart/internal-heading-california-tulare.jpg") no-repeat center center;
  background-size: cover;
}

.branch-location.el-centro .internal-heading {
  background: url("/siteart/internal-heading-california-el-centro.jpg") no-repeat center center;
  background-size: cover;
}

.branch-location.turlock .internal-heading {
  background: url("/siteart/internal-heading-california-turlock.jpg") no-repeat center center;
  background-size: cover;
}

.branch-location.twin-falls .internal-heading {
  background: url("/siteart/internal-heading-idaho-twin-falls.jpg") no-repeat center center;
  background-size: cover;
}

.branch-location.appleton .internal-heading {
  background: url("/siteart/appleton.jpg") no-repeat center center;
  background-size: cover;
}

.branch-location.platteville .internal-heading {
  background: url("/siteart/internal-heading-wisconsin-platteville.jpg") no-repeat center center;
  background-size: cover;
}

.internal-heading-overlay {
  background: rgba(0, 0, 0, 0.4);
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.branch-location .internal-main {
  padding: 0 50px 0 0;
}

.branch-location .internal-main iframe {
  height: 100%;
}

.branch-location .internal-sidebar {
  padding: 0;
  display: flex;
  flex-direction: column;
  background: #e8e8e8;
}

.branch-location .internal-sidebar h4,
.branch-location .internal-sidebar h5 {
  background: #8c8c8c;
  padding: 25px 25px 25px 25px;
  margin-bottom: 0;
}

.branch-location .internal-sidebar h5 {
  font-weight: 600;
  font-size: 21px;
  line-height: 24px;
  text-transform: none;
  margin-bottom: 25px;
  color: #fff !important;
}

.branch-location .internal-sidebar .bottom {
  padding: 15px 25px 50px 25px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.branch-location .internal-sidebar .location-card {
  padding: 0;
}

.branch-location .internal-sidebar .location-card-right-top {
  flex-direction: column;
}

.branch-location .internal-sidebar .location-card .list {
  width: 100%;
}

.branch-location .internal-sidebar .location-card-address {
  margin-right: 0;
}

.branch-location .internal-sidebar .location-card p,
.branch-location .internal-sidebar .location-card .body-link,
.branch-location .internal-sidebar .location-card .list {
  padding: 0 25px;
}

.branch-location .internal-sidebar .location-card .bttn-base {
  display: none;
}

.branch-location .internal-sidebar .location-card .list {
  margin: 25px 0;
}

.branch-location .internal-sidebar .bttn-base {
  width: 80%;
  padding: 0;
  margin: auto auto 25px auto;
}

.branch-location .internal-sidebar .location-card .location-card-bottom {
  justify-content: center;
}

.internal-sidebar .body-link,
.location-card .body-link {
  display: block;
  margin-bottom: 9px;
  font-size: 16px;
}

.body-link span {
  font-weight: 300;
  /* width: 100px; */
  margin-right: 10px;
  display: block;
}

.branch-location .internal-sidebar .list li:nth-of-type(odd) {
  background: #fff;
}

.branch-location .internal-sidebar .bttn-base,
.branch-location .internal-sidebar .location-card .location-card-bottom {
  margin-top: auto;
}

.branch-location .internal-sidebar .location-card {
  height: 100%;
}

.ct-container .wrapper {
  justify-content: space-between;
}

.ct-inventory,
.ct-demo {
  padding: 10px;
}

.ct-inner {
  background: #efefef;
}

.green-bg {
  background: #4b7728;
}

.ct-inventory .ct-inner {
  background: url("/siteart/background-green-02.jpg") no-repeat center center;
  background-size: cover;
  padding: 40px;
  justify-content: space-between;
}

.ct-demo .ct-inner {
  background: url("/siteart/background-green-01.jpg") no-repeat center center;
  background-size: cover;
  padding: 40px;
  justify-content: space-between;
}

.ct-inner .bttn-base {
  margin-top: auto;
}

/* About */

.internal .youtube {
  width: 80%;
  height: 500px;
}

/* Breadcrumb */

.breadcrumb-container li {
  display: inline-block;
  margin-right: 7px;
  color: #d3d3d3;
}

.breadcrumb-container li a {
  color: #a9a9a8;
  font-family: "Barlow", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 13px;
  text-decoration: none;
  display: flex;
  align-items: center;
  margin: 0;
  text-align: center;
  text-transform: none;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.2s ease-in;
  transition: 0.3s;
  -ms-transition: 0.3s;
}

.breadcrumb-container li a span {
  color: #517838;
  font-weight: 700;
}

.breadcrumb-container li a:hover {
  opacity: 0.7;
}

/* Literature */

.list-bttn {
  color: #636868;
  width: 100%;
  font-weight: 400;
  display: flex;
  justify-content: space-between;
}

.list-bttn span {
  margin-left: 0;
  font-weight: 400;
}

/* State Landing */
.state-top {
  display: flex;
  justify-content: center;
}

.state-top p {
  max-width: 900px;
}

.large {
  font-size: 22px;
  font-weight: 400;
  line-height: 33px;
}

.landing-ca-locations {
  background-color: #4b7728;
  /* background-image: url("/siteart/background-green-california.jpg"); */
  background-position: center bottom;
  background-size: contain;
  background-repeat: no-repeat;
  padding-bottom: 250px;
}

.state-landing-locations .section-nav li {
  color: #bebbbb;
}

.state-landing-locations .section-nav li.active {
  color: #fff;
}

.state-landing-locations .internal-container {
  align-items: center;
}

.state-landing-locations .location-card {
  background: #efefef;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.state-landing-locations .location-card h5 {
  color: #3b601b !important;
}

.internal-sidebar .location-card-image {
  display: none;
}

/* Modals */

.modal-open {
  overflow: hidden !important;
  position: absolute !important;
  width: 100%;
}

.modal p {
  font-size: 14px;
  line-height: 20px;
}

.modal-small {
  font-size: 11.5px !important;
  line-height: 18px !important;
}

.modal .close {
  opacity: 1 !important;
  height: 40px;
  width: 50px;
}

.modal .close span {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

#phoneModal form {
  width: 100%;
}

#phoneModal label {
  position: relative;
  margin-bottom: 50px;
}

#phoneModal select {
  background: #efefef;
  border: none;
  padding: 15px;
  width: 100%;
  color: #8e8e8e;
  height: 50px;
  font-size: 14px !important;
  box-sizing: border-box;
  margin-right: 20px;
  -webkit-box-shadow: 0px 3px 4px -2px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0px 3px 4px -2px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 3px 4px -2px rgba(0, 0, 0, 0.2);
  margin-bottom: 50px;
}

#phoneModal label.wrap:after {
  content: "\f107 ";
  font-family: FontAwesome;
  color: #4b7728;
  position: absolute;
  right: 0;
  top: 2px;
  font-size: 20px;
  z-index: 1;
  width: 10%;
  height: 50px;
  pointer-events: none;
}

#phoneModal select option {
  padding: 10px 0;
}

.thankyou .text-center i {
  color: #808080;
  font-size: 55px;
  opacity: 0.4;
  margin-bottom: 25px;
}

/* Noui Slider Start */

#searchbar-form .column4 {
  width: 100%;
  margin-right: 20px;
  background: #fff;
  padding: 5px 10px;
  -webkit-box-shadow: 0px 3px 4px -2px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0px 3px 4px -2px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 3px 4px -2px rgba(0, 0, 0, 0.2);
  height: 70px;
  display: flex;
  align-items: center;
}

.noUi-target {
  position: relative;
  direction: ltr;
  margin-bottom: 10px;
}

.noUi-origin {
  position: absolute;
  right: 0;
  top: 0;
  left: 0;
  bottom: 0;
  border-radius: 2px;
}

.noUi-marker,
.noUi-pips,
.noUi-tooltip,
.noUi-value {
  position: absolute;
}

.noUi-horizontal {
  height: 12px;
  z-index: 0;
}

.noUi-horizontal .noUi-handle {
  width: 25px;
  height: 21px;
  left: -13px;
  top: -6px;
}

.noUi-horizontal .noUi-handle-upper {
  top: -5px;
}

.noUi-background {
  background: #ccc;
}

.noUi-connect {
  background: #f1d884 !important;
  border: 1px #cbc8c7 solid;
}

.search-bar .noUi-target {
  width: calc(100% - 35px);
  margin: 15px auto;
}

.noUi-target {
  width: calc(75% - 15px);
  margin: 15px auto;
}

.noUi-handle {
  position: relative;
  background: #d4d3d3 !important;
  border: 1px solid #9e9e9e !important;
  border-radius: 3px;
  z-index: 1;
}

.noUi-handle:after,
.noUi-handle:before {
  content: "";
  display: block;
  position: absolute;
  height: 12px;
  width: 1px;
  background: #9e9e9e;
  left: 10px;
  top: 3px;
}

.noUi-handle:after {
  left: 12px;
}

.noUi-pips-horizontal {
  padding: 5px 0;
  height: 10px;
  top: 100%;
  left: 0;
  width: 100%;
}

.noUi-marker-horizontal.noUi-marker {
  margin-top: 5px;
  margin-left: -1px;
  width: 1px;
  height: 5px;
  background: rgb(204, 204, 204);
}

.example-val {
  color: #fff;
  font-family: "Barlow", sans-serif;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 500;
  /* text-transform: uppercase; */
  text-align: center;
  font-size: 16px;
  padding-bottom: 0;
}

.example-val span {
  font-weight: 400;
}

#slider-price-value-lower:before,
#slider-price-value-upper:before {
  content: "$";
  padding-right: 2px;
}

/* ===========================================================
07. Footer Structure
=========================================================== */

footer {
  background: #e0e0df;
  border-top: 1px solid #636868;
}

footer li a,
footer p {
  color: #000;
}

.footer-left {
  margin-right: 50px;
}

.footer-logo {
  width: 300px;
}

footer .wrapper {
  justify-content: space-between;
}

.footer-nav ul {
  columns: 2;
  -webkit-columns: 2;
  -moz-columns: 2;
  column-gap: 50px;
}

.footer-nav li {
  margin-bottom: 15px;
}

.footer-nav li a {
  text-transform: uppercase;
  font-size: 16px;
  display: block;
}

.footer-nav li a:hover {
  opacity: 0.6;
}

.footer-top {
  border-bottom: 1px solid #efefef;
  border-top: 1px solid #efefef;
}

.footer-bottom {
  background: #dfdfde;
  border-top: 1px solid #636868;
  padding: 15px;
}

.footer-bottom p {
  margin-bottom: 0;
  font-size: 13px;
  font-weight: 500;
}

.footer-bottom .wrapper {
  justify-content: space-between;
  align-items: center;
}

footer .social-icons a {
  margin-bottom: 0;
}

.footer-social-container li {
  padding: 5px 5px 5px 5px;
  margin-right: 5px;
  width: 40px;
  height: 40px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  border: 2.25px solid #808080;
}

.footer-social-container a {
  width: 110px;
  margin-bottom: 0;
  height: 50px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  -webkit-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  -moz-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  -ms-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.footer-social-container li:hover i {
  color: #dfdfde;
}

.footer-social-container li:hover {
  border: 2.25px solid #808080;
  background: #808080;
}

.footer-social-container li a i {
  color: #808080;
  font-size: 22px;
  line-height: 39px;
}

.flex-foot-logo {
	gap: 20px;
    align-items: center;
}
/* ===========================================================
08. Form Structure
=========================================================== */

/* 08.01. Form Base Styles
=========================================================== */

::-webkit-input-placeholder {
  font-size: 14px !important;
  font-weight: 400 !important;
}

::-moz-placeholder {
  font-size: 14px !important;
  font-weight: 400 !important;
}

:-ms-input-placeholder {
  font-size: 14px !important;
  font-weight: 400 !important;
}

::-ms-input-placeholder {
  font-size: 14px !important;
  font-weight: 400 !important;
}

::placeholder {
  font-size: 14px !important;
  font-weight: 400 !important;
}

textarea::-webkit-input-placeholder {
  font-size: 14px !important;
  font-weight: 400 !important;
}

textarea::-moz-placeholder {
  font-size: 14px !important;
  font-weight: 400 !important;
}

textarea:-ms-input-placeholder {
  font-size: 14px !important;
  font-weight: 400 !important;
}

textarea::-ms-input-placeholder {
  font-size: 14px !important;
  font-weight: 400 !important;
}

textarea::placeholder {
  font-size: 14px !important;
  font-weight: 400 !important;
}

#formpage {
  position: relative;
  z-index: 3;
  width: 100%;
}

#formpage label {
  font-size: 14px !important;
  font-weight: 400 !important;
  color: #8e8e8e;
  margin-bottom: 20px;
  text-align: left;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
}

#formpage input[type="text"],
#formpage input[type="email"],
#formpage input[type="phone"],
#formpage input[type="date"],
#formpage input[type="time"],
#formpage select,
#formpage textarea {
  background: #f7f7f7;
  border: none;
  padding: 15px;
  width: 100%;
  margin-bottom: 20px;
  color: #8e8e8e;
  font-size: 14px !important;
  box-sizing: border-box;
  height: 50px;
}

.align-bottom {
  align-items: flex-end;
}

.align-bottom .margin-right,
.align-bottom input[type="text"] {
  width: 50% !important;
}

.form-flex {
  display: flex;
}

#formpage .small {
  margin-bottom: 25px;
}

.form-flex input {
  width: 50%;
}

#formpage textarea {
  min-height: 300px;
}

.form-continue {
  width: 100%;
  text-align: center;
}

#green-btn {
  margin: 20px auto !important;
}

.contact-half {
  width: 50%;
}

.contact-half-one {
  width: 49%;
}

/* ===========================================================
11. Brand carousel
=========================================================== */

.brands-carousel a{padding: 15px;border: solid 1px #e7e7e7;box-sizing: border-box;border-radius: 5px;margin: 10px;height: 95px;text-align: center;background: #fff;}
.brands-carousel a img{max-width: none; height: 100%; width: 100%; object-fit: contain;}
.mobile-wrapper{max-width: calc(100% - 50px);margin: 0 auto;}
.brands-grid{display: flex;flex-wrap: wrap;}
.brands-grid a{padding: 30px 20px;border: solid 1px #e7e7e7;box-sizing: border-box;border-radius: 5px;margin: 10px;text-align: center;flex-grow: 1;}
.brands-grid a img{max-width: 100%;margin: 0 auto;}
.slick-next {background:none; height:17px; width:22px;}
.slick-prev {background:none; height:17px; width:18px;}
.slick-next:before{color:#000;font-size:30px;}
.slick-prev:before {color:#000;font-size:30px;}
.slick-brands:before {color: #fff !important;font-size: 22px;opacity: .25;transition:.3s all;}

/* 08.02. Captcha
=========================================================== */

.CaptchaImagePanel {
  margin-top: 10px;
  padding: 0 0 0 0;
}

.CaptchaMessagePanel {
  padding: 0 0 0 0 !important;
  margin: 0 0 0 0 !important;
  font-weight: normal !important;
  font-size: 12px;
  line-height: 14px;
  text-align: center;
}

.CaptchaAnswerPanel {
  margin: 0 0 0 0;
  padding: 2px 0px 2px 0px !important;
}

.CaptchaWhatsThisPanel {
  line-height: 0;
  margin: 0 0 10px 0;
  padding: 10px 0 10px 0 !important;
}

.CaptchaWhatsThisPanel a {
  color: inherit;
}

.CaptchaWhatsThisPanel a:hover {
  text-decoration: none;
}

/* 08.03. Form Structure
=========================================================== */

/* ===========================================================
09. Classes
=========================================================== */

.margin-right {
  margin-right: 20px;
}

.text-center {
  text-align: center;
}

.margin-right-md {
  margin-right: 40px;
}

.row.row-no-padding {
  padding: 0;
}

.row.row-no-padding>.column {
  padding: 0;
}

.row.row-wrap {
  flex-wrap: wrap;
}

.row.row-top {
  align-items: flex-start;
}

.row.row-bottom {
  align-items: flex-end;
}

.row.row-center {
  align-items: center;
}

.row.row-stretch {
  align-items: stretch;
}

.row.row-baseline {
  align-items: baseline;
}

.col-1 {
  width: 100%;
}

.col-2 {
  width: calc(100% / 6);
}

.col-3 {
  width: 25%;
}

.col-4 {
  width: 33.33333%;
}

.col-5 {
  width: 41.66667%;
}

.col-6 {
  width: 50%;
}

.col-7 {
  width: 58.33333%;
}

.col-8 {
  width: 66.66667%;
}

.col-9 {
  width: 75%;
}

.col-10 {
  width: 83.33333%;
}

.col-11 {
  width: 91.66667%;
}

.col-12 {
  width: 100%;
}

.flex {
  display: flex;
}

.flex-center {
  justify-content: center;
}

.flex-column {
  flex-direction: column;
}

.flex-wrap {
  flex-wrap: wrap;
}

.center {
  text-align: center;
}

.pd-sm {
  padding: 25px 0;
}

.pd-md {
  padding: 50px 0;
}

.pd-lg {
  padding: 100px 0;
}

.pd-t-lg {
  padding-top: 100px;
}

.pd-t-md {
  padding-top: 50px;
}

.pd-b-lg {
  padding-bottom: 100px;
}

.pd-b-md {
  padding-bottom: 50px;
}

.pd-b-sm {
  padding-bottom: 20px;
}

.m-t-sm {
  margin-top: 20px;
}

.m-t-md {
  margin-top: 50px;
}

.m-md {
  margin: 50px 0;
}

.m-b-lg {
  margin-bottom: 100px;
}

.m-b-md {
  margin-bottom: 50px;
}

.m-b-sm {
  margin-bottom: 25px;
}

.m-b-none {
  margin-bottom: 0 !important;
}

.pd-r-med {
  padding-right: 50px;
}

.pd-all-md {
  padding: 50px;
}

.bg-lt-grey {
  background: #f7f7f7;
}

.bg-white {
  background: #fff;
}

.yellow {
  color: #f1d884;
}

.grey {
  color: #808080;
}

.lt-grey {
  color: #a2a2a2;
}

.white {
  color: #fff;
}

.green {
  color: #4b7728;
}

/* ===========================================================
10. Inventory Styles
=========================================================== */

.inventory {
  padding-top: 250px;
  background: #f7f9fa;
}

.faceted-search-field {
  overflow-x: hidden;
}

.list-content .list-title {
  padding: 15px 0;
  font-size: 1em;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex !important;
  justify-content: flex-start !important;
  align-items: flex-start !important;
  flex-direction: column !important;
  border-bottom: none;
}

.list-content .list-title .list-listings-count {
  line-height: 27px;
  margin-left: 3px !important;
  color: #777 !important;
  font-size: 0.8rem !important;
  text-transform: uppercase !important;
  font-weight: 700 !important;
}

.list-content {
  margin: 0 auto;
  max-width: initial !important;
}

.faceted-search-content .faceted-section-box {
  padding: 15px 2%;
  border-bottom: 1px solid #ddd;
  background: #fff !important;
}

.list-container,
.selected-facets-container,
.detail-content,
.list-content .list-main-section {
  border: none !important;
}

.list-content input[type="button"],
.list-content input[type="color"],
.list-content input[type="date"],
.list-content input[type="datetime"],
.list-content input[type="datetime-local"],
.list-content input[type="email"],
.list-content input[type="file"],
.list-content input[type="month"],
.list-content input[type="number"],
.list-content input[type="password"],
.list-content input[type="reset"],
.list-content input[type="search"],
.list-content input[type="submit"],
.list-content input[type="tel"],
.list-content input[type="text"],
.list-content input[type="time"],
.list-content input[type="url"],
.list-content input[type="week"],
.list-content select,
.list-content textarea,
.modal-form-el label+input,
.modal-form-el label+select {
  height: 30px;
  line-height: 30px;
}

.faceted-search-content .faceted-section-box .faceted-option-checkbox-container .option-name {
  margin: 5px 0 0 5px;
}

.quick-search input[type="text"] {
  padding: 12px !important;
}

.search-mobile input[type="text"] {
  padding: 15px !important;
}

.faceted-search-content .selected-facets-container .selected-facet,
.list-content .list-main-section .list-container .list-listing .listing-top-right .view-listing-details-link,
.list-content .list-main-section .list-container .list-listing .listing-top-right .buy-now-link,
.list-content .list-main-section .list-container .list-listing .listing-top-right .check-availability-link,
.list-content .list-main-section .list-container .list-listing .listing-top-right .email-seller-link,
.faceted-search-content .faceted-section-box .faceted-view-more-btn,
.detail-content .detail-main-body .main-detail-data .offer-btn,
.detail-content .detail-main-body .main-detail-data .buy-btn,
.list-content .list-listing-mobile .view-listing-details-link,
.list-content .list-listing-mobile .buy-now-link,
.list-content .list-listing-mobile .check-availability-link,
.list-content .list-listing-mobile .email-seller-link,
.faceted-search-content .mobile-done-button-container .mobile-done-button,
.detail-content-mobile .detail-main-body .main-detail-data .dealer-phone-mobile-container .dealer-phone-mobile,
.detail-content-mobile .detail-main-body .main-detail-data .fin-calc-btn-mobile,
.detail-content-mobile .detail-contact-bar .contact-bar-btn,
.list-container-flexrow .view-listing-details-link,
.paging-container .page-navs .list-page-nav,
.detail-content-mobile .detail-main-body .main-detail-data .buy-btn-mobile,
.detail-content-mobile .detail-main-body .main-detail-data .offer-btn-mobile,
.detail-content-mobile .detail-main-body .main-detail-data .send-email-btn-mobile,
.detail-content-mobile .detail-main-body .main-detail-data .send-wholesale-email-btn-mobile,
.faceted-show-all-btn {
  background: #4b7728 !important;
  border: none;
  color: #fff !important;
}

.detail-content-mobile .detail-additional-data .data-row .data-label,
.detail-content .detail-additional-data .data-row .data-label {
  background: #4b7728 !important;
  color: #fff;
  font-weight: 700;
}

.detail-content .detail-additional-data .data-row .data-value {
  background: none;
  font-weight: 400;
  border-bottom: 1px #eee solid;
}

.detail-content .detail-additional-data .data-row {
  margin-bottom: 0;
}

.detail-content .detail-additional-data h4 {
  margin: 25px 0 5px;
  color: #241e20 !important;
}

.list-content .list-main-section .list-container .list-listing .listing-top-right .view-listing-details-link:hover,
.list-content .list-main-section .list-container .list-listing .listing-top-right .buy-now-link:hover,
.list-content .list-main-section .list-container .list-listing .listing-top-right .check-availability-link:hover,
.list-content .list-main-section .list-container .list-listing .listing-top-right .email-seller-link:hover,
.faceted-search-content .faceted-section-box .faceted-view-more-btn:hover,
.detail-content .detail-main-body .main-detail-data .offer-btn:hover,
.detail-content .detail-main-body .main-detail-data .buy-btn:hover,
.list-content .list-listing-mobile .view-listing-details-link:hover,
.list-content .list-listing-mobile .buy-now-link:hover,
.list-content .list-listing-mobile .check-availability-link:hover,
.list-content .list-listing-mobile .email-seller-link:hover,
.faceted-search-content .mobile-done-button-container .mobile-done-button:hover,
.detail-content-mobile .detail-main-body .main-detail-data .fin-calc-btn-mobile:hover,
.detail-content-mobile .detail-main-body .main-detail-data .dealer-phone-mobile-container .dealer-phone-mobile:hover,
.list-container-flexrow .view-listing-details-link:hover {
  background: #2f6326 !important;
}

.list-content .list-main-section .list-container .list-listing .listing-top .listing-top-left .listing-main-stats .price,
.list-content .list-title .list-listings-count,
.detail-content .detail-main-body .main-detail-data .detail-price,
.detail-content .search-results,
.list-content .list-listing-mobile .price-container .price,
.list-content .list-top-section .listing-option-bar .list-listings-count,
.detail-content-mobile .detail-main-body .main-detail-data .detail-price,
.info {
  color: #241e20;
}
.list-content .listing-widgets .Currency a {color: #241e20 !important;}
.detail-content .dealer-info .phone-and-email .send-email-btn,
.list-content .list-listing-mobile .dealer-phone-container .dealer-phone-call,
.list-content .list-listing-mobile .dealer-phone-container .dealer-phone-text,
.detail-content-mobile .detail-main-body .main-detail-data .opened {
  color: #4b7728 !important;
  border: 1px #4b7728 solid !important;
}

.detail-content-mobile .detail-main-body .main-detail-data .buy-btn-mobile,
.detail-content-mobile .detail-main-body .main-detail-data .offer-btn-mobile {
  position: relative;
  height: 43px;
  width: 100%;
  box-sizing: border-box;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.125rem;
  font-weight: 200;
  font-family: Arial, sans-serif;
  justify-content: flex-start;
  border: 0 !important;
  cursor: pointer;
  padding-left: 8px;
  border-radius: 5px;
  backface-visibility: hidden;
}

.detail-content-mobile .detail-main-body .main-detail-data .send-email-btn-mobile,
.detail-content-mobile .detail-main-body .main-detail-data .send-wholesale-email-btn-mobile {
  border: 0 !important;
  color: #fff;
  margin-bottom: 20px;
}

.detail-content-mobile .detail-additional-data .data-row .data-value {
  background-color: #efefef !important;
}

.detail-content-mobile .detail-main-body .main-detail-data .dealer-phone-mobile-container .dealer-phone-mobile {
  margin-right: 0 !important;
}

.detail-content .detail-additional-data .data-row .data-value {
  width: 100%;
  padding: 10px 7px;
  background-color: #fff !important;
  font-weight: bold;
  margin-left: 5px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  font-family: Arial, sans-serif;
  white-space: pre-wrap;
  flex-direction: column;
  width: 804px;
}

.detail-content .dealer-info .phone-and-email .send-email-btn:hover {
  color: #4b7728;
  border: 1px #4b7728 solid;
}

.white-bg .container {
  width: 100% !important;
}

.section-head {
  width: 100%;
}

.list-content .list-title {
  display: block;
  margin: 0;
}

.list-content .list-title .list-title-text {
  display: block;
  width: 100%;
}

.print-this,
.email-this {
  background: #4b7728 !important;
  color: #fff !important;
  font-weight: 300 !important;
  font-size: 12px !important;
  text-transform: uppercase !important;
  padding: 10px 50px !important;
  text-align: center !important;
  transition: 0.3s !important;
  border-radius: 0 !important;
  border: 0 !important;
}

.print-this:hover,
.email-this:hover {
  background: #2f6326 !important;
}

.inventory input[type="submit"]:hover,
.inventory button[type="submit"]:hover,
.btn:hover,
.button:hover {
  background: #2f6326 !important;
}

.list-content .list-main-section .list-container .list-listing {
  background: #efefef;
  padding: 15px !important;
  border-radius: 5px;
}

.list-container-flexrow .price-container .price {
  margin-left: 0;
  color: #241e20;
}

.list-content .list-main-section .list-container .list-listing {
  border: 1px solid #ccc;
  background-color: #fff !important;
  -webkit-box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.29);
  -moz-box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.29);
  box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.29);
}

.list-container-flexrow .listing-card .listing-widgets a {
  margin-bottom: 6px;
}

body .noUi-connect {
  background: #dddddd;
}

.noUi-handle {
  border: none;
  border-radius: 3px;
  background: #fff;
  cursor: default;
  box-shadow: none;
}

.list-content .list-main-section .list-container .list-listing {
  border: none !important;
}

.faceted-section-head i {
  color: #4b7728 !important;
}

.faceted-search-content .selected-facets-container .selected-facet {
  background: #4b7728 !important;
}

.faceted-section-box input[type="submit"],
.faceted-section-box button[type="submit"] {
  background: #4b7728 !important;
}

.faceted-search-content .faceted-section-box .faceted-text-input::placeholder {
  font-weight: 400;
  font-size: 12px;
}

.detail-content {
  margin: 0 auto;
  max-width: 1124px;
  padding: 25px !important;
}

.legal-text-content span,
.legal-text-content {
  font-size: 11px !important;
  line-height: 15px !important;
}

.faceted-search-content .selected-facets-container {
  padding: 10px;
  border-bottom: 1px solid #ddd;
}

.listing-widgets a {
  background-color: #dddbdb !important;
  border-radius: 0 !important;
  -webkit-border-radius: 0 !important;
  -moz-border-radius: 0 !important;
  -ms-border-radius: 0 !important;
  -o-border-radius: 0 !important;
  transition: all 0.3s ease-in;
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -ms-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
}

.listing-widgets a:hover {
  background-color: #cccccc !important;
}

.detail-content .dealer-info h3 {
  font-size: 1rem !important;
  font-weight: bold;
  font-family: Arial, sans-serif;
  margin-top: 20px;
}

.detail-content .detail-main-body .main-detail-data {
  border-radius: 0 !important;
}

.detail-content .detail-main-body .detail-body-data {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  background: #fff;
  padding-bottom: 20px;
  margin-bottom: 40px;
}

.detail-content .dealer-info .phone-and-email {
  float: right;
  width: 37%;
  margin-right: 20px;
}

.detail-content .dealer-info .phone-and-email .send-email-btn,
.list-content .list-listing-mobile .dealer-phone-container .dealer-phone-call,
.list-content .list-listing-mobile .dealer-phone-container .dealer-phone-text,
.detail-content-mobile .detail-main-body .main-detail-data .opened {
  color: #fff !important;
  font-size: 12px !important;
  font-weight: 300 !important;
  border: 0 !important;
  background: #4b7728 !important;
}

.detail-content .dealer-info .phone-and-email .send-email-btn:hover,
.list-content .list-listing-mobile .dealer-phone-container .dealer-phone-call:hover,
.list-content .list-listing-mobile .dealer-phone-container .dealer-phone-text:hover,
.detail-content-mobile .detail-main-body .main-detail-data .opened:hover {
  background: #3d3d3d !important;
}

.fa-facebook-f:before {
  content: "\f39e" !important;
}

.list-content .list-listing-mobile .dealer-phone-container .dealer-phone-call .dealer-phone,
.list-content .list-listing-mobile .dealer-phone-container .dealer-phone-text .dealer-phone {
  color: #fff !important;
}

.mc-thumbs {
  z-index: 1;
}

.detail-content-mobile .detail-main-body .detail-img-carousel .mc-btn {
  z-index: 2 !important;
}

footer a[href^="tel:"] {
  color: inherit !important;
}

.list-container-flexrow .buy-now-link,
.list-container-flexrow .contact-options a,
.list-container-flexrow .dealer-phone-call,
.list-container-flexrow .dealer-phone-text {
  background-color: #333;
  color: #fff !important;
}

.list-content .list-main-section .list-container .list-listing .listing-top-right .view-listing-details-link,
.list-content .list-main-section .list-container .list-listing .listing-top-right .buy-now-link {
  min-width: 100% !important;
  width: 100% !important;
}

.list-content .list-main-section .list-container .list-listing .listing-top-right .buy-now-link,
.list-content .list-main-section .list-container .list-listing .listing-top-right .contact-btn,
.list-content .list-main-section .list-container .list-listing .listing-top-right .check-availability,
.list-content .list-main-section .list-container .list-listing .listing-top-right .email-seller,
.list-content .list-main-section .list-container .list-listing .listing-top-right .video-chat,
.list-content .list-main-section .list-container .list-listing .listing-top-right .facebook-messenger,
.list-content .list-main-section .list-container .list-listing .listing-top-right .whatsapp,
.list-content .list-main-section .list-container .list-listing .listing-top-right .text {
  background-color: #f1d884 !important;
  color: #4b7728 !important;
}

.list-content .list-main-section .list-container .list-listing .listing-top-right .buy-now-link:hover,
.list-content .list-main-section .list-container .list-listing .listing-top-right .contact-btn:hover,
.list-content .list-main-section .list-container .list-listing .listing-top-right .check-availability:hover,
.list-content .list-main-section .list-container .list-listing .listing-top-right .email-seller:hover,
.list-content .list-main-section .list-container .list-listing .listing-top-right .video-chat:hover,
.list-content .list-main-section .list-container .list-listing .listing-top-right .facebook-messenger:hover,
.list-content .list-main-section .list-container .list-listing .listing-top-right .whatsapp:hover,
.list-content .list-main-section .list-container .list-listing .listing-top-right .text {
  background-color: #d8bc6c !important;
}

/* Breadcrumb */

.mobile-breadcrumb {
  background-color: #808080 !important;
}

.mobile-breadcrumb .breadcrumbs-element {
  color: #e8e8e8 !important;
}

/* Modal / Mobile buttons / Mobile Data Rows */

.button,
.contact-options a,
.fin-calc-mobile>a,
.detail-content-mobile .detail-additional-data .data-row .data-label {
  background-color: #4b7728 !important;
  color: #fff !important;
}

.button:hover,
.contact-options a:hover,
.fin-calc-mobile>a:hover {
  background-color: #4b7728 !important;
}


.compare-title h3,
.compare-price {
  color: #4b7728 !important;
}

.contact-info-heading h2,
.compare-title h3 {
  font-size: 22px;
}

.detail-additional-data h3 {
  font-size: 22px;
  margin-top: 25px;
}

.compare-chkbox-container .compare-listings .compare-label {
  font-size: 12px;
  vertical-align: middle;
  display: inline-block;
  margin-bottom: 12px;
}

.list-content .list-error-container .info button {
  color: #fff;
  background-color: #4b7728 !important;
}

p.disclaimer {
  font-size: 15px;
}



/* ===========================================================
12. Responsive Styles
=========================================================== */

@media only screen and (max-width: 1450px) {
	.flex-press .col-6 h2 {font-size: 35px;}
	.flex-press .col-6 h3 {font-size: 20px; line-height: 26px;}
  .location-info {
    display: block !important;
  }

  .location-info div {
    margin-bottom: 50px;
  }
}

@media only screen and (max-width: 1400px) {
  .hero-copy {
    max-width: 400px;
  }

  .hero-copy-heading {
    font-size: 40px;
    line-height: 37px;
  }

  .category-card-inner:hover .category-copy-container {
    height: 100%;
  }
}

@media only screen and (max-width: 1250px) {
  .wrapper {
    width: 90%;
  }

  .slide-big-x img {
    transform: translateX(150px);
  }

  .hero-copy-heading {
    font-size: 36px;
    line-height: 33px;
  }
}

@media only screen and (max-width: 1200px) {
  header h1 img {
    max-width: 250px;
  }

  .header-search input[type="text"] {
    font-size: 16px !important;
  }

  .header-search ::placeholder {
    font-size: 16px !important;
  }

  .branch-location .internal-sidebar {
    width: 40%;
  }

  .branch-location .internal-main {
    width: 60%;
  }

  .internal .youtube {
    width: 70%;
    height: 400px;
  }
}

@media only screen and (max-width: 1150px) {
	
  .search-bar-form {
    flex-wrap: wrap;
  }

  .column4 {
    width: 50%;
    margin-bottom: 15px;
  }

  .column4.last {
    width: 50%;
    margin-top: 10px;
  }

  .search-bar-form .bttn-base {
    width: 100%;
  }

  .search-bar-form select.dropdown,
  .search-bar-form label.wrap,
  .search-bar-form input[type="text"],
  .search-bar-form .bttn-base {
    height: 40px;
  }

  .search-bar-form label.wrap:after {
    top: 10px;
  }
	
	.logowis {flex-wrap:wrap;}
	.logowis a {flex-basis: 30% !important;flex-grow:1 !important;}
	
}

@media only screen and (max-width: 1100px) {
	
	
}

@media only screen and (max-width: 1078px) {
  .body {
    font-size: 16px;
    line-height: 24px;
  }

  .category-card-outer {
    width: 33%;
    flex-grow: 1;
  }

  .location-container form,
  .location-container h4,
  .location-info {
    margin-bottom: 30px;
  }

  .location-card {
    padding: 20px;
  }
}

@media only screen and (max-width: 1000px) {
	
  .hero-copy-heading {
    font-size: 32px;
    line-height: 30px;
  }

  .location-info {
    flex-direction: column;
  }

  .location-container p {
    margin-bottom: 20px;
  }

  h3 {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 23px;
    line-height: 22px;
  }

  .location-card-right-top {
    flex-direction: column;
  }

  .location-card .list {
    width: inherit;
    margin: 25px 0;
  }
}

@media only screen and (min-width: 786px) and (max-width: 952px) {
  .has-search-bar {
    width: calc(66% - 0.75%) !important;
    float: left;
  }
}

@media only screen and (max-width: 950px) {
	.flex-press {display: block;}
	.flex-press .col-6 {width: 100%; margin: 0 auto; padding: 10px 0;}
	
  .header-top {
    padding: 0;
  }

  .header-top .wrapper {
    align-items: stretch;
  }

  #mobile-form-submit {
    max-height: 75px;
  }

  header h1 img {
    max-width: 200px;
  }

  .header-top .wrapper {
    padding: 0;
  }

  header .wrapper {
    width: 100% !important;
  }

  .header-search-slide .wrapper {
    box-sizing: border-box !important;
  }

  .header-logo {
    margin-left: 5%;
    padding: 20px 0;
  }

  .header-right {
    justify-content: flex-end;
    height: 100%;
  }

  .hide-mobile,
  .header-right {
    display: none;
  }

  .mobile-header {
    display: block;
  }

  .mobile-nav-container {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .mobile-menu-nav-icon {
    background: #4b7728;
    position: relative;
    overflow: hidden;
    width: 80px;
    height: 100%;
    padding: 0 !important;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
  }

  .mobile-menu-nav-icon:hover {
    background: #efefef !important;
  }

  .mobile-menu-nav-icon i {
    font-size: 33px !important;
    color: #fff !important;
  }

  .mobile-menu-nav-icon:hover .search-icon-overlay {
    opacity: 0.5;
    left: -20px;
  }

  .nav-icon {
    padding: 0px;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 100%;
    width: 65px;
  }

  .nav-icon a {
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .nav-icon:last-of-type {
    padding-right: 0 !important;
  }

  .nav-icon i {
    font-size: 26px;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    color: #4b7728;
  }

  .nav-icon i:hover {
    color: #2f6326;
  }

  .nav-icon:hover {
    background: #efefef;
  }

  .header-search-slide {
    right: 0;
    top: 75px;
    width: 100%;
    padding: 25px;
    box-sizing: border-box;
  }

  .values .col-1 {
    padding: 0 60px;
  }

  .large {
    font-size: 19px;

    line-height: 30px;
  }
}

@media only screen and (max-width: 900px) {
  .pd-r-med {
    padding-right: 0;
  }

  .list-two-col {
    columns: 1;
  }

  .list-bttn {
    font-size: 13px;
  }
}

@media only screen and (max-width: 880px) {
  .slide-content {
    height: 600px;
  }

  .slide-big-x img {
    display: none;
  }

  .hero-copy {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    max-width: 100%;
    transform: none;
    position: static;
  }

  .hero-copy-heading {
    font-size: 40px;
    line-height: 38px;
  }

  .hero-copy-container .bttn-green {
    background: #f1d884 !important;
    color: #517838 !important;
  }

  .hero-copy-container .bttn-green i {
    color: #517838 !important;
  }

  .hero-copy-container .bttn-green:hover {
    background: #d8bc6c;
  }

  .slide-big-x {
    background: url("/siteart/hero/hero-big-x-01-mobile-new.jpg") no-repeat center center;
    background-size: cover;
  }

  .hero-copy-container {
    text-align: center;
  }

  .hero-copy-heading,
  .hero-copy-heading span,
  .hero-copy-small {
    color: #fff;
  }

  .search-bar {
    padding: 25px;
  }

  .search-bar-outer {
    padding: 25px;
  }

  #formpage input[type="text"],
  #formpage input[type="email"],
  #formpage input[type="phone"],
  #formpage input[type="date"],
  #formpage input[type="time"],
  #formpage select,
  #formpage textarea {
    width: 100%;
  }

  .align-bottom .margin-right,
  .align-bottom input[type="text"] {
    width: 100% !important;
  }

  .margin-right {
    margin-right: 0;
  }

  .contact-half,
  .contact-half-one {
    width: 100%;
  }

  .form-flex {
    flex-direction: column;
  }

  .select-last {
    margin-left: -5px;
  }

  .contact textarea {
    width: 100% !important;
  }

  .contact #formpage input[type="text"],
  .contact #formpage input[type="email"],
  .contact #formpage input[type="phone"],
  .contact #formpage select,
  .contact #formpage textarea {
    width: 100% !important;
  }

  .contact .margin-right {
    margin-right: 0;
  }

  .contact .form-flex {
    flex-wrap: wrap;
  }
}

@media only screen and (max-width: 800px) {
  footer .wrapper {
    flex-direction: column-reverse;
  }

  footer .footer-right .col-1 {
    justify-content: center;
    margin-bottom: 50px;
  }

  footer .footer-left .flex {
    align-items: center;
  }

  .footer-left {
    margin-right: 0;
  }

  .footer-bottom p {
    margin-top: 10px;
  }

  .location-card {
    flex-direction: column;
  }

  .location-card-image {
    display: none;
  }

  .internal .youtube {
    width: 100%;
  }
}

@media only screen and (max-width: 786px) {
  .header-search input[type="text"] {
    font-size: 15px !important;
  }

  .header-search ::placeholder {
    font-size: 15px !important;
  }

  .category-card-outer {
    width: 50%;
  }

  .category-copy-container {
    padding: 0 15px;
  }

  .category-card-inner {
    height: 270px;
  }

  .category-card-body {
    font-size: 14px;
    line-height: 19px;
  }

  .ct-01-inner {
    display: block;
    text-align: center;
  }

  h2 {
    font-size: 31px;
    line-height: 30px;
    letter-spacing: 0;
    margin-bottom: 40px;
  }

  h4 {
    font-size: 21px;
    line-height: 21px;
  }

  .location-container {
    flex-direction: column;
  }

  .location-container .col-6 {
    width: 100%;
  }

  .location-container .col-6:last-of-type {
    padding-left: 0;
    padding-top: 50px;
  }

  .location-container iframe {
    height: 400px;
  }

  .location-container {
    padding: 25px;
  }

  .list-content .legal-text-container p {
    font-size: 11px !important;
    line-height: 19px;
  }
}

@media only screen and (max-width: 700px) {

  .search-bar-form input[type="text"],
  .search-bar-form select,
  .search-bar-form ::placeholder {
    font-size: 13px !important;
  }

  .section-nav li {
    font-size: 16px;
    letter-spacing: 0.3px;
    margin: 0 25px;
  }

  .section-nav ul {
    flex-direction: column;
  }

  .section-nav li {
    margin: 0 0 25px 0;
  }

  .section-nav .active:after {
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
  }

  .values .col-1 {
    flex-direction: column;
    padding: 0;
  }

  .values-container .col-5,
  .values-container .col-7 {
    width: 100%;
  }

  .values-container .heading {
    justify-content: flex-start;
    padding-right: 0;
    margin-bottom: 30px;
  }

  .values-container {
    padding-top: 50px !important;
  }

  p {
    font-size: 17px;
    line-height: 29px;
  }

  .internal-container {
    flex-direction: column;
  }

  .internal-sidebar {
    width: 100% !important;
  }

  .internal-sidebar {
    width: 100% !important;
    text-align: center;
  }

  .internal-sidebar .states li {
    display: inline-block;
    border-bottom: none;
    padding: 15px;
  }

  .internal-sidebar .states li.active,
  .internal-sidebar .states li:hover {
    background: inherit;
    opacity: 0.6;
  }

  .internal-sidebar .states li.active:after {
    display: none;
  }

  .internal-main {
    padding-left: 0;
    margin-top: 50px;
    width: 100% !important;
  }

  .internal-heading {
    height: 200px;
  }

  .branch-location .internal-container {
    flex-direction: column-reverse;
  }

  .branch-location .internal-main {
    padding: 0;
    margin-top: 50px;
  }

  .branch-location .internal-main iframe {
    height: 600px;
  }

  .branch-location .internal-sidebar .list,
  .branch-location .internal-sidebar .body-link {
    margin-bottom: 25px;
  }

  .ct-container .wrapper {
    flex-direction: column;
  }

  .ct-inventory,
  .ct-demo {
    width: 100%;
  }

  .header-search i {
    font-size: 18px;
  }

  .additional-numbers {
    display: flex;
    width: 100%;
  }

  .additional-numbers div {
    width: 50%;
  }

  .branch-location .internal-sidebar .body-link {
    margin-bottom: 10px;
  }

  .internal-sidebar .body-link,
  .location-card .body-link {
    display: flex;
    /* justify-content: center; */
    align-items: center;
  }

  .body-link span {
    margin-right: 5px;
  }
}

@media only screen and (max-width: 650px) {
  .column4 {
    width: 50%;
  }

  .column4.last {
    margin-top: 5px;
  }

  .column4.last {
    width: 100%;
  }

  .slide-content {
    height: 550px;
  }

  .category-card-outer {
    padding: 5px;
  }

  .category-copy-container h4 {
    font-size: 15px;
    line-height: 17px;
  }

  .category-card-inner {
    height: 230px;
  }

  h4 {
    font-size: 19px;
    line-height: 22px;
  }

  .large {
    font-size: 17px;
    line-height: 27px;
  }
	.logowis {flex-wrap:wrap !important;}
	
	.logowis a {flex-basis: 45% !important;}
}

@media only screen and (max-width: 600px) {
  .header-top {
    height: 65px;
  }

  .header-search-slide {
    top: 65px;
  }

  .nav-icon {
    width: 70px;
  }

  .nav-icon i {
    font-size: 23px;
  }

  .mobile-menu-nav-icon i {
    font-size: 25px !important;
  }

  .bttn-base {
    width: 100%;
  }

  .search-bar {
    margin: 0;
  }

  header h1 img {
    max-width: 140px;
  }

  .hero-copy {
    padding: 0 5%;
  }

  .hero-copy-heading {
    font-size: 33px;
    line-height: 34px;
  }

  .footer-nav li a {
    font-size: 14px;
  }

  .footer-nav li {
    margin-bottom: 17px;
  }

  .footer-logo {
    width: 240px;
  }

  .list-content .list-title .list-title-text,
  .auction-heading {
    font-size: 27px !important;
    line-height: 28px !important;
  }

  p,
  .body-link {
    font-size: 16px;
    line-height: 27px;
  }

  .internal .list li {
    font-size: 15px;
  }
}

@media only screen and (max-width: 550px) {
  .nav-icon {
    width: 40px;
  }

  .column4 {
    width: 100% !important;
  }

  .category-card-inner:hover .category-copy-container,
  .category-copy-container {
    height: 50px;
  }

  .category-card-inner:hover .category-card-body {
    visibility: hidden;
    opacity: 0;
    display: none;
  }

  .list-bttn {
    font-size: 12px;
  }

  .additional-numbers {
    display: block;
  }

  .additional-numbers div {
    width: 100%;
  }

  .body-link span {
    display: inline-block;
    line-height: 19px;
  }
}

@media only screen and (max-width: 450px) {
	.flex-foot-logo {
		flex-wrap: wrap;
		text-align: center;
	}
	
	.foot-small {
    flex-basis: 100%;
}
	
	.footer-logo {
    flex-basis: 100%;
}
	.nav-icon {
    width: 30px;
  }
	.logowis a{flex-basis:100% !important;}
	
}