@import url("https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Caveat:wght@400..700&family=Manrope:wght@200..800&display=swap");
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
  background: transparent;
  border: 0;
  margin: 0;
  padding: 0; }

/*---PLEASE MAKE CSS CHANGES IN STYLES.SCSS FILE, CHANGES MADE IN CSS FILE WILL BE OVERRIDDEN ----*/
table {
  border-collapse: collapse;
  width: 100%; }

td {
  vertical-align: top; }

/* Make HTML 5 elements display block-level for consistent styling */
header, nav, article, footer, address {
  display: block; }

/*---PLEASE MAKE CSS CHANGES IN STYLES.SCSS FILE, CHANGES MADE IN CSS FILE WILL BE OVERRIDDEN ----*/
/*-------- COLORS --------

*/
/***** END RESET *****/
::-moz-selection {
  background: #000;
  color: #fff;
  text-shadow: none; }

::selection {
  background: #000;
  color: #fff;
  text-shadow: none; }

/* Clearfix */
.cf:before,
.cf:after {
  content: " ";
  display: table; }

.cf:after {
  clear: both; }

.cf {
  *zoom: 1; }

/*---PLEASE MAKE CSS CHANGES IN STYLES.SCSS FILE, CHANGES MADE IN CSS FILE WILL BE OVERRIDDEN ----*/
/*---These are Variables. They are being used in place of the hex color easily changes site colors but updating these variables----*/
/*----These are Mixins. They work similarly to variables and are plugged in using @include in place of the CSS----*/
.show {
  position: relative;
  transform: translateX(150px);
  opacity: 0;
  transition: 1s all ease; }

.show.showing {
  transform: translateX(0);
  opacity: 1; }

.showSecond {
  position: relative;
  transform: translateX(-150px);
  opacity: 0;
  transition: 1s all ease; }

.showSecond.showing {
  transform: translateX(0);
  opacity: 1; }

.showThird {
  position: relative;
  transform: translateY(50px);
  opacity: 0;
  transition: 2.5s all ease; }

.showThird.showing {
  transform: translateY(0);
  opacity: 1; }

/*-------- BODY STYLES --------*/
* {
  box-sizing: border-box;
  background: #111; }

body {
  font-family: "Manrope", sans-serif;
  background: #000; }

h1, h2, h3, h4, h5 {
  font-family: "Barlow Condensed", sans-serif; }

a {
  text-decoration: none !important; }

.btn {
  display: inline-block;
  padding: 13px 25px;
  font-weight: 500;
  border-radius: 8px;
  font-size: 14px;
  transition: .3s ease; }
  .btn i {
    padding-left: 8px; }

.green {
  background: #8FFD32;
  color: #000;
  border: solid 1px #8FFD32; }

.green:hover {
  background: #111;
  color: #fff;
  border: solid 1px #8FFD32; }

::selection {
  background-color: #8FFD32;
  color: #000; }

/* Trail dot style */
.trail {
  position: fixed;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: rgba(143, 253, 50, 0.8);
  box-shadow: 0 0 15px rgba(143, 253, 50, 0.8), 0 0 20px rgba(143, 253, 50, 0.6), 0 0 30px rgba(143, 253, 50, 0.4);
  pointer-events: none;
  transform: translate(-50%, -50%);
  animation: fadeOut 0.5s linear forwards;
  z-index: 500;
  filter: blur(8px); }

@keyframes fadeOut {
  to {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.5); } }
/*--- HEADER STYLES ---------------------*/
.top-header {
  width: 100%;
  background: #111;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 0 0 0 5%; }
  .top-header a {
    color: #fff;
    font-family: "Manrope", sans-serif;
    font-size: 14px;
    display: inline-block;
    margin-left: 20px;
    padding: 29px 0; }
    .top-header a i {
      color: #8FFD32;
      margin-right: 5px;
      -webkit-text-fill-color: #111;
      -webkit-text-stroke-width: 1px;
      -webkit-text-stroke-color: #8FFD32; }

.left-top {
  max-width: 550px;
  display: flex;
  flex-direction: row;
  justify-content: flex-start; }
  .left-top img {
    width: 100%;
    max-width: 220px;
    padding: 10px;
    margin-right: 20px; }

.right-top {
  max-width: 700px;
  display: flex;
  flex-direction: row;
  justify-content: flex-end; }
  .right-top a {
    margin-right: 20px;
    font-family: "Manrope", sans-serif; }

.green-btn {
  background-color: #8FFD32;
  border: solid 1px #111;
  margin: 0 !important;
  color: #000 !important;
  padding: 28px 30px !important;
  font-size: 14px; }

.green-btn:hover {
  background-color: #111;
  border: solid 1px #8FFD32;
  color: #fff !important; }

.phone {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  margin-right: 20px;
  padding-top: 3px; }
  .phone i {
    color: #8FFD32;
    font-size: 30px;
    padding-top: 8px;
    margin-right: 5px;
    -webkit-text-fill-color: #111;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #8FFD32; }
  .phone span {
    display: inline-block;
    color: #fff; }
    .phone span p {
      font-size: 12px;
      font-family: "Manrope", sans-serif; }
    .phone span a {
      color: #fff;
      font-family: "Manrope", sans-serif;
      font-size: 15px;
      font-weight: 600;
      padding: 0 !important;
      margin: 0; }

header {
  width: 100%;
  background-color: #111;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 0 0 0 5%; }

.nav-right {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  max-width: 700px; }
  .nav-right a {
    color: #fff;
    font-size: 14px;
    display: inline-block;
    margin-left: 20px;
    padding: 29px 0; }
    .nav-right a i {
      color: #8FFD32;
      margin-right: 5px;
      -webkit-text-fill-color: #111;
      -webkit-text-stroke-width: 1px;
      -webkit-text-stroke-color: #8FFD32; }

body, html, #app {
  margin: 0;
  width: 100%;
  height: 100%; }

#editorBody {
  overflow-x: hidden; }

/*--------Hero---------*/
.cycle-slideshow {
  width: 100%;
  height: 750px;
  position: relative; }

.grad {
  width: 100%;
  z-index: 110;
  position: absolute;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)); }

.cycle-slideshow img {
  width: 100%;
  background-color: #000;
  height: 750px;
  object-fit: cover; }

.slide-caption {
  position: absolute;
  bottom: 34%;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 98%;
  max-width: 1300px;
  text-align: center;
  color: #fff;
  z-index: 120; }
  .slide-caption h1 {
    font-size: 80px;
    text-transform: uppercase;
    margin: 0 auto;
    max-width: 1000px;
    font-weight: 400;
    line-height: 85px;
    color: #fff; }
    .slide-caption h1 span {
      color: #8FFD32; }

/*-------Search-----------*/
.search-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: flex-start; }

.search-wrapper .search-row {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  margin: 0 auto;
  background: #3D3D3D;
  width: 270px; }

.search-row input::placeholder {
  color: #fff;
  opacity: 1; }

.search-wrapper input {
  width: calc(100% - 60px);
  height: 49px !important;
  color: #fff !important;
  background: #3D3D3D !important;
  border: none !important;
  padding: 6px 10px !important;
  box-sizing: border-box; }

.search-wrapper button {
  border: none !important;
  transition: .3s ease;
  width: 60px !important;
  padding: 6px;
  box-sizing: border-box;
  background: #3D3D3D;
  font-size: 14px;
  color: #fff; }
  .search-wrapper button i {
    color: #fff;
    font-size: 16px; }

.search-wrapper button:hover {
  background: #8FFD32; }

/*----Search Hero-----*/
.search-form {
  width: 100%;
  padding: 5px 10px;
  background: #111;
  margin-top: 40px; }

.form-row {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  margin: 0 auto;
  width: 100%;
  max-width: 1300px; }
  .form-row select {
    flex: 1;
    border: solid 4px #111;
    padding: 16px 14px;
    background: #3D3D3D;
    color: #fff;
    box-sizing: border-box; }
  .form-row input {
    width: calc(100% - 120px);
    border: solid 4px #111;
    flex: 1;
    color: #000;
    background: #fff;
    padding: 16px 10px;
    box-sizing: border-box; }
  .form-row button {
    border: solid 4px #111;
    transition: .3s ease;
    width: 160px;
    padding: 16px 14px;
    box-sizing: border-box;
    background: #8FFD32;
    font-size: 14px;
    color: #000; }
    .form-row button i {
      color: #fff;
      font-size: 16px; }
  .form-row button:hover {
    background: #8FFD32; }

/*-----Quick Links----*/
.pad {
  padding: 6% 0; }

.pad-small {
  padding: 4% 0; }

.black-back {
  width: 100%;
  background-color: #111;
  position: relative;
  color: #fff; }
  .black-back p {
    color: #e4e4e4 !important; }

.wrap {
  max-width: 1500px;
  margin: 0 auto;
  width: 100%;
  padding: 0 10px;
  box-sizing: border-box; }

.qls-top {
  text-align: center;
  max-width: 950px;
  margin: 0 auto 40px auto; }
  .qls-top h2 {
    font-size: 60px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 65px;
    background: linear-gradient(90deg, #C9C9C9 0.13%, #FFF 44.67%, #C9C9C9 98.67%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    padding: 10px 0; }
    @media only screen and (max-width: 1000px) {
      .qls-top h2 {
        font-size: 50px;
        line-height: 55px; } }
    @media only screen and (max-width: 700px) {
      .qls-top h2 {
        font-size: 40px;
        line-height: 45px; } }
    @media only screen and (max-width: 500px) {
      .qls-top h2 {
        font-size: 32px;
        line-height: 35px; } }
    .qls-top h2 span {
      font-size: 30px;
      line-height: 20px;
      color: #8FFD32;
      font-family: "Caveat", cursive;
      -webkit-text-fill-color: #8FFD32; }
      @media only screen and (max-width: 800px) {
        .qls-top h2 span {
          font-size: 25px;
          line-height: 20px; } }
      @media only screen and (max-width: 500px) {
        .qls-top h2 span {
          font-size: 22px;
          line-height: 18px; } }
  .qls-top p {
    font-size: 16px;
    font-family: "Manrope", sans-serif;
    line-height: 22px;
    color: #e4e4e4;
    width: 80%;
    margin: 0 auto; }

.ql {
  position: relative; }

.swiper {
  width: 100%;
  padding: 40px 0; }

.swiper-slide {
  transition: transform 0.5s ease, opacity 0.5s ease;
  transform: scale(0.9); }

.swiper-slide-next {
  transform: scale(1); }

.swiper-slide a {
  display: block;
  margin: 30px 0;
  overflow: hidden;
  width: 100%;
  height: 320px;
  border-radius: 20px;
  position: relative; }
  .swiper-slide a img {
    width: 100%;
    transition: .3s ease;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    filter: brightness(0.5); }
  .swiper-slide a .text-over {
    position: absolute;
    top: 30px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 85%;
    z-index: 120; }
    .swiper-slide a .text-over h3 {
      font-size: 30px;
      font-weight: 600;
      font-family: "Barlow Condensed", sans-serif;
      color: #fff;
      text-transform: uppercase;
      line-height: 35px; }
      @media only screen and (max-width: 600px) {
        .swiper-slide a .text-over h3 {
          font-size: 24px;
          line-height: 28px; } }
    .swiper-slide a .text-over p {
      font-size: 16px;
      font-family: "Manrope", sans-serif;
      line-height: 22px;
      color: #e4e4e4;
      margin: 10px 0 0 0; }
  .swiper-slide a i {
    position: absolute;
    transition: .3s ease;
    bottom: 18px;
    right: 15px;
    width: 45px;
    height: 45px;
    background: #8FFD32;
    border-radius: 10px;
    color: #000;
    padding: 15px; }
  .swiper-slide a:hover img {
    transform: scale(1.1); }
  .swiper-slide a:hover i {
    background: #111;
    color: #fff; }

.swiper-button-next {
  color: #8FFD32;
  width: 45px;
  border: solid 1px #8FFD32;
  padding: 15px;
  height: 45px;
  border-radius: 15px;
  background: #111;
  margin-right: -80px;
  transform: translateY(-50%);
  z-index: 130; }
  .swiper-button-next .swiper-navigation-icon {
    display: none; }

.swiper-button-prev {
  color: #8FFD32;
  width: 45px;
  border: solid 1px #8FFD32;
  padding: 15px;
  height: 45px;
  border-radius: 15px;
  background: #111;
  margin-left: -80px !important;
  transform: translateY(-50%);
  z-index: 130; }
  .swiper-button-prev .swiper-navigation-icon {
    display: none; }

.swiper-slide::before {
  content: " ";
  opacity: 0;
  position: absolute;
  inset: 0px -5px 20px;
  margin-top: 20px;
  background: linear-gradient(to right, #8FFD32, #8FFD32);
  filter: blur(20px);
  border-radius: inherit;
  z-index: -1;
  transform: skew(5deg, 5deg); }

.swiper-slide-next::before {
  opacity: 1;
  transition: ease-out .5s; }

.ql-grid {
  display: grid;
  width: 100%;
  gap: 20px;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(2, 1fr); }

.ql-grid-item {
  position: relative;
  padding: 40px;
  background: #111;
  border-radius: 20px;
  overflow: hidden; }
  .ql-grid-item h3 {
    font-size: 30px;
    font-weight: 600;
    font-family: "Barlow Condensed", sans-serif;
    color: #fff;
    text-transform: uppercase;
    line-height: 35px;
    color: #fff; }
    @media only screen and (max-width: 600px) {
      .ql-grid-item h3 {
        font-size: 24px;
        line-height: 28px; } }
  .ql-grid-item p {
    font-size: 16px;
    font-family: "Manrope", sans-serif;
    line-height: 22px;
    color: #e4e4e4;
    margin: 10px 0 20px 0; }
  .ql-grid-item a {
    margin-top: 60px;
    display: inline-block; }

.grid-text {
  z-index: 50;
  position: relative; }

.ql-grid-item:first-of-type {
  grid-column: span 2 / span 2; }

.ql-grid-item:nth-of-type(2) {
  grid-column: span 3 / span 3;
  grid-column-start: 3;
  grid-row-start: 1; }

.ql-grid-item:nth-of-type(3) {
  grid-column: span 3 / span 3;
  grid-column-start: 1;
  grid-row-start: 2; }

.ql-grid-item:nth-of-type(4) {
  grid-column: span 2 / span 2;
  grid-column-start: 4;
  grid-row-start: 2; }

.glow {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  right: 0;
  height: 100%;
  width: 100%; }
  .glow i {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px); }
  .glow i:nth-child(1) {
    top: -60px;
    left: -80px;
    width: 200px;
    height: 200px;
    background: -webkit-radial-gradient(center, ellipse cover, #8FFD32 0%, #A2FF52 100%);
    box-shadow: 0px 0px 20px 5px #b7FF7A;
    animation: topglow 15s ease-in-out infinite;
    -webkit-animation: topglow 15s ease-in-out infinite; }
  .glow i:nth-child(2) {
    bottom: -80px;
    right: -30px;
    background: -webkit-radial-gradient(center, ellipse cover, #8FFD32 0%, #A2FF52 100%);
    box-shadow: 0px 0px 5px 0px #faa002;
    width: 220px;
    height: 160px;
    -webkit-animation: bottomglow  infinite;
    animation: bottomglow 20s ease-in-out infinite; }

.glow2 {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  right: 0;
  height: 100%;
  width: 100%; }
  .glow2 i {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px); }
  .glow2 i:nth-child(1) {
    top: -60px;
    left: -80px;
    width: 200px;
    height: 200px;
    background: -webkit-radial-gradient(center, ellipse cover, #8FFD32 0%, #A2FF52 100%);
    box-shadow: 0px 0px 20px 5px #b7FF7A;
    animation: topglow 15s ease-in-out infinite;
    -webkit-animation: topglow 15s ease-in-out infinite; }
  .glow2 i:nth-child(2) {
    bottom: -80px;
    right: -30px;
    background: -webkit-radial-gradient(center, ellipse cover, #8FFD32 0%, #A2FF52 100%);
    box-shadow: 0px 0px 5px 0px #faa002;
    width: 220px;
    height: 160px;
    -webkit-animation: bottomglow  infinite;
    animation: bottomglow 10s ease-in-out infinite; }
  .glow2 i:nth-child(3) {
    top: -50px;
    right: -30px;
    background: -webkit-radial-gradient(center, ellipse cover, #8FFD32 0%, #A2FF52 100%);
    box-shadow: 0px 0px 5px 0px #faa002;
    width: 150px;
    height: 150px;
    -webkit-animation: topglow  infinite;
    animation: topglow 25s ease-in-out infinite;
    filter: blur(50px); }

.glow3 {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  right: 0;
  height: 100%;
  width: 100%; }
  .glow3 i {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px); }
  .glow3 i:nth-child(1) {
    top: -70px;
    left: 10px;
    width: 250px;
    height: 250px;
    filter: blur(60px);
    background: -webkit-radial-gradient(center, ellipse cover, #8FFD32 0%, #A2FF52 100%);
    box-shadow: 0px 0px 20px 5px #b7FF7A;
    animation: topglow 15s ease-in-out infinite;
    -webkit-animation: topglow 25s ease-in-out infinite; }
  .glow3 i:nth-child(2) {
    bottom: -80px;
    right: 50px;
    background: -webkit-radial-gradient(center, ellipse cover, #8FFD32 0%, #A2FF52 100%);
    box-shadow: 0px 0px 5px 0px #faa002;
    width: 300px;
    height: 160px;
    -webkit-animation: bottomglow  infinite;
    animation: bottomglow 15s ease-in-out infinite;
    filter: blur(50px); }
  .glow3 i:nth-child(3) {
    bottom: 10px;
    right: -30px;
    background: -webkit-radial-gradient(center, ellipse cover, #8FFD32 0%, #A2FF52 100%);
    box-shadow: 0px 0px 5px 0px #faa002;
    width: 150px;
    height: 200px;
    -webkit-animation: topglow  infinite;
    animation: topglow 20s ease-in-out infinite;
    filter: blur(60px); }

.glow4 {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  right: 0;
  height: 100%;
  width: 100%; }
  .glow4 i {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px); }
  .glow4 i:nth-child(1) {
    top: -80px;
    left: 0px;
    right: 0;
    margin: 0 auto;
    width: 230px;
    height: 200px;
    filter: blur(40px);
    background: -webkit-radial-gradient(center, ellipse cover, #8FFD32 0%, #A2FF52 100%);
    box-shadow: 0px 0px 20px 5px #b7FF7A;
    animation: topglow 15s ease-in-out infinite;
    -webkit-animation: topglow 25s ease-in-out infinite; }
  .glow4 i:nth-child(2) {
    bottom: -80px;
    right: 0px;
    left: 0;
    margin: 0 auto;
    background: -webkit-radial-gradient(center, ellipse cover, #8FFD32 0%, #A2FF52 100%);
    box-shadow: 0px 0px 5px 0px #faa002;
    width: 300px;
    height: 160px;
    -webkit-animation: bottomglow  infinite;
    animation: bottomglow 15s ease-in-out infinite;
    filter: blur(50px); }

@keyframes topglow {
  from {
    opacity: 0.4;
    transform: scale(1) translate(0, 0); }
  25% {
    opacity: 0.50;
    transform: translate(30px, 80px); }
  50% {
    opacity: 0.55;
    transform: scale(1.5) translate(30px, 150px); }
  75% {
    opacity: 0.50;
    transform: translate(50px, 190px); }
  to {
    opacity: .4;
    transform: scale(1) translate(0, 0); } }
@keyframes bottomglow {
  from {
    opacity: 0.3;
    transform: scale(1) translate(0, 0); }
  25% {
    opacity: 0.40;
    transform: translate(50px, -80px); }
  50% {
    opacity: 0.40;
    transform: scale(1.5) translate(80px, -150px); }
  75% {
    opacity: 0.40;
    transform: translate(50px, -190px); }
  to {
    opacity: .3;
    transform: scale(1) translate(0, 0); } }
.accordion {
  color: #fff;
  margin: 5px;
  cursor: pointer;
  padding: 19px 18px;
  font-size: 16px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  transition: 0.4s;
  display: flex;
  transition: .3s ease;
  justify-content: space-between;
  background: linear-gradient(to bottom, #343434, #151515);
  font-family: "Manrope", sans-serif;
  border-radius: 10px; }

.accordion:hover {
  transform: translateY(-5px); }

.active {
  background: #111 !important; }

.active {
  box-shadow: 0 0 7px 2px #8FFD32; }

.panel {
  padding: 0px 10px;
  background-color: #111;
  max-height: 0;
  overflow: hidden;
  color: #fff;
  font-size: 15px;
  margin: 5px;
  transition: max-height 0.2s ease-out; }

.panel p {
  padding: 25px 10px; }

/*---------Pages----------*/
.page-wrap {
  max-width: 1700px !important;
  margin: 0 auto;
  padding: 0 10px; }

.page-top {
  width: 100%;
  max-width: 1000px; }
  .page-top h1 {
    font-size: 100px;
    font-weight: 700;
    padding-bottom: 20px;
    text-transform: uppercase;
    line-height: 100px;
    color: #fff; }
    .page-top h1 span {
      color: #8FFD32; }
  .page-top p {
    font-size: 16px;
    font-family: "Manrope", sans-serif;
    line-height: 22px;
    color: #e4e4e4;
    margin: 10px 0 20px 0; }
  .page-top a {
    margin-top: 40px; }
  .page-top p a {
    color: #fff;
    text-decoration: underline; }

.gray-back {
  width: 100%;
  background: #232323;
  color: #fff; }

.brands h2 {
  font-size: 30px;
  font-weight: 600;
  font-family: "Barlow Condensed", sans-serif;
  color: #fff;
  text-transform: uppercase;
  line-height: 35px;
  text-align: center;
  color: #ccc; }
  @media only screen and (max-width: 600px) {
    .brands h2 {
      font-size: 24px;
      line-height: 28px; } }

.brands p {
  text-align: center;
  padding: 10px 0; }

.brand-row {
  max-width: 1000px;
  margin: 30px auto;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px; }
  .brand-row h3 {
    padding: 15px 25px;
    transition: .3s ease;
    font-size: 22px;
    color: #fff;
    text-transform: uppercase;
    border: solid 1px #727272;
    background: #111; }

.brand-row a:hover h3 {
  background: #8FFD32;
  border: solid 1px #8FFD32;
  color: #000; }

.page-content {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center; }
  .page-content h2 {
    font-size: 30px;
    font-weight: 600;
    font-family: "Barlow Condensed", sans-serif;
    color: #fff;
    text-transform: uppercase;
    line-height: 35px;
    text-align: center;
    color: #fff; }
    @media only screen and (max-width: 600px) {
      .page-content h2 {
        font-size: 24px;
        line-height: 28px; } }
    .page-content h2 span {
      color: #8FFD32; }
  .page-content p {
    font-size: 16px;
    font-family: "Manrope", sans-serif;
    line-height: 22px;
    color: #e4e4e4;
    margin: 10px 0 20px 0;
    color: #ccc; }

.why-top {
  width: 100%; }
  .why-top h2 {
    font-size: 60px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 65px;
    background: linear-gradient(90deg, #C9C9C9 0.13%, #FFF 44.67%, #C9C9C9 98.67%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center; }
    @media only screen and (max-width: 1000px) {
      .why-top h2 {
        font-size: 50px;
        line-height: 55px; } }
    @media only screen and (max-width: 700px) {
      .why-top h2 {
        font-size: 40px;
        line-height: 45px; } }
    @media only screen and (max-width: 500px) {
      .why-top h2 {
        font-size: 32px;
        line-height: 35px; } }
    .why-top h2 span {
      font-size: 30px;
      line-height: 20px;
      color: #8FFD32;
      font-family: "Caveat", cursive;
      -webkit-text-fill-color: #8FFD32; }
      @media only screen and (max-width: 800px) {
        .why-top h2 span {
          font-size: 25px;
          line-height: 20px; } }
      @media only screen and (max-width: 500px) {
        .why-top h2 span {
          font-size: 22px;
          line-height: 18px; } }

.why-row {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  gap: 25px;
  flex-wrap: wrap;
  padding: 30px 0; }
  .why-row .why {
    width: calc(33.33% - 25px);
    background: #191919;
    padding: 30px;
    border-left: solid 5px #8FFD32; }
    .why-row .why i {
      padding: 15px;
      font-size: 22px;
      color: #8FFD32;
      background: #222;
      margin-bottom: 20px; }
    .why-row .why h3 {
      font-size: 30px;
      font-weight: 600;
      font-family: "Barlow Condensed", sans-serif;
      color: #fff;
      text-transform: uppercase;
      line-height: 35px;
      padding: 10px 0 30px 0; }
      @media only screen and (max-width: 600px) {
        .why-row .why h3 {
          font-size: 24px;
          line-height: 28px; } }
      .why-row .why h3 p {
        font-size: 16px;
        font-family: "Manrope", sans-serif;
        line-height: 22px;
        color: #e4e4e4;
        margin: 10px 0 20px 0; }

.request {
  width: 100%; }
  .request h2 {
    font-size: 60px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 65px;
    background: linear-gradient(90deg, #C9C9C9 0.13%, #FFF 44.67%, #C9C9C9 98.67%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #fff;
    padding: 10px 0 30px 0; }
    @media only screen and (max-width: 1000px) {
      .request h2 {
        font-size: 50px;
        line-height: 55px; } }
    @media only screen and (max-width: 700px) {
      .request h2 {
        font-size: 40px;
        line-height: 45px; } }
    @media only screen and (max-width: 500px) {
      .request h2 {
        font-size: 32px;
        line-height: 35px; } }
  .request p {
    font-size: 16px;
    font-family: "Manrope", sans-serif;
    line-height: 22px;
    color: #e4e4e4; }

.contact-row {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  gap: 25px;
  padding-top: 30px;
  flex-wrap: wrap; }

.form {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto; }
  .form h2 {
    font-size: 60px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 65px;
    background: linear-gradient(90deg, #C9C9C9 0.13%, #FFF 44.67%, #C9C9C9 98.67%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center; }
    @media only screen and (max-width: 1000px) {
      .form h2 {
        font-size: 50px;
        line-height: 55px; } }
    @media only screen and (max-width: 700px) {
      .form h2 {
        font-size: 40px;
        line-height: 45px; } }
    @media only screen and (max-width: 500px) {
      .form h2 {
        font-size: 32px;
        line-height: 35px; } }
    .form h2 span {
      font-size: 30px;
      line-height: 20px;
      color: #8FFD32;
      font-family: "Caveat", cursive;
      -webkit-text-fill-color: #8FFD32; }
      @media only screen and (max-width: 800px) {
        .form h2 span {
          font-size: 25px;
          line-height: 20px; } }
      @media only screen and (max-width: 500px) {
        .form h2 span {
          font-size: 22px;
          line-height: 18px; } }

.contact {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  gap: 25px; }
  .contact h1 {
    font-size: 100px;
    font-weight: 700;
    padding-bottom: 20px;
    text-transform: uppercase;
    line-height: 100px;
    color: #fff; }
    .contact h1 span {
      color: #8FFD32; }
  .contact p {
    font-size: 16px;
    font-family: "Manrope", sans-serif;
    line-height: 22px;
    color: #e4e4e4;
    margin: 10px 0 20px 0; }
  .contact a {
    margin-top: 40px; }

.contact-left {
  max-width: 1000px; }

.contact-right {
  width: calc(100% - 1000px);
  padding: 40px;
  background: #191919;
  border-left: solid 5px #8FFD32; }
  .contact-right h2 {
    font-size: 30px;
    font-weight: 600;
    font-family: "Barlow Condensed", sans-serif;
    color: #fff;
    text-transform: uppercase;
    line-height: 35px;
    padding: 0px 0 15px 0; }
    @media only screen and (max-width: 600px) {
      .contact-right h2 {
        font-size: 24px;
        line-height: 28px; } }
  .contact-right h3 {
    font-size: 24px;
    color: #fff;
    padding: 10px 0 5px 0; }
  .contact-right p {
    font-size: 16px;
    font-family: "Manrope", sans-serif;
    line-height: 22px;
    color: #e4e4e4;
    padding: 5px 0;
    margin: 0; }
  .contact-right a {
    color: #fff; }
  .contact-right i {
    color: #8FFD32;
    font-size: 22px;
    margin-right: 10px;
    -webkit-text-fill-color: #111;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #8FFD32; }

/*--------FORM STYLES--------------------*/
#formpage {
  width: 98%;
  margin: 0 auto;
  display: block;
  text-align: left;
  padding: 50px;
  background: #222;
  border: solid 1px #555; }
  #formpage h3 {
    font-size: 30px;
    font-weight: 600;
    font-family: "Barlow Condensed", sans-serif;
    color: #fff;
    text-transform: uppercase;
    line-height: 35px;
    color: #fff;
    padding: 5px 15px 5px 15px;
    margin: 20px 5px;
    border-left: solid 3px #8FFD32; }
    @media only screen and (max-width: 600px) {
      #formpage h3 {
        font-size: 24px;
        line-height: 28px; } }
  #formpage h4 {
    font-size: 20px;
    color: #fff;
    padding: 5px 15px 5px 15px;
    margin: 20px 5px;
    border-left: solid 3px #8FFD32; }
  #formpage label {
    margin: 5px;
    padding: 10px 0 5px 0;
    color: #dbdbdb; }
  #formpage label:has(+ input:required)::after {
    content: "*";
    color: #8FFD32;
    margin-left: 5px; }
  #formpage input, #formpage select {
    padding: 14px;
    border: #777;
    color: #fff !important;
    font-size: 14px;
    background: #3D3D3D; }
  #formpage input[type="text"], #formpage input[type="email"], #formpage input[type="date"], #formpage input[type="tel"], #formpage select, #formpage input[type="phone"] {
    width: 100%;
    box-sizing: border-box; }
  #formpage textarea {
    font-family: 'Arial', sans-serif;
    border: #777;
    box-sizing: border-box;
    color: #fff;
    background: #3D3D3D;
    width: 100%;
    height: 130px;
    border-radius: 2px;
    padding: 14px;
    color: #fff !important;
    font-size: 14px; }
  #formpage textarea:focus, #formpage .input:focus {
    box-shadow: 0 0 4px 2px #8FFD32;
    border: None; }

.flex-form {
  width: 100%;
  text-align: left;
  margin: 0 auto;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  font-size: 15px; }

.flex-row {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  width: 100%;
  padding: 5px 0;
  flex-wrap: wrap; }

.form-whole {
  width: calc(100% - 10px);
  display: block;
  vertical-align: middle;
  margin: 5px; }

.form-half {
  width: calc(50% - 10px);
  display: inline-block;
  vertical-align: middle;
  margin: 2px 5px; }

.form-third {
  width: calc(33.33% - 10px);
  display: inline-block;
  vertical-align: middle;
  margin: 2px 5px; }

.form-fourth, .form-quarter {
  width: calc(25% - 10px);
  display: inline-block;
  vertical-align: middle;
  margin: 2px 5px; }

.form-eighth {
  width: calc(12.5% - 10px);
  display: inline-block;
  vertical-align: middle;
  margin: 2px 5px; }

#formpage .submit-button, #submit-btn button {
  width: 200px;
  padding: 14px;
  background: #8FFD32;
  display: block;
  box-sizing: border-box;
  border-radius: 5px;
  text-align: center;
  color: #000;
  font-weight: 500;
  border: none;
  font-size: 14px;
  text-transform: uppercase; }

#formpage input.submit-button:hover, #submit-btn button:hover {
  transition: ease-out .3s;
  cursor: pointer;
  background: #3D3D3D;
  color: #000; }

.submit-button, #submit-btn {
  padding: 10px 0px 10px 0px;
  position: relative;
  width: 100%;
  text-align: center; }

.captcha-button {
  width: 200px; }

#formpage input.submit-button {
  color: #000 !important; }

.CaptchaPanel {
  text-align: left !important; }

.include-captcha {
  display: none; }

.CaptchaWhatsThisPanel a {
  color: #fff !important; }

/*-------- FOOTER STYLES ----------------*/
.footer-wrap {
  width: 100%;
  padding: 6% 0 20px 0;
  border-radius: 50px 50px 0 0;
  color: #fff;
  background: radial-gradient(at center bottom, #111 60%, #8FFD32); }
  .footer-wrap h2 {
    font-size: 60px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 65px;
    background: linear-gradient(90deg, #C9C9C9 0.13%, #FFF 44.67%, #C9C9C9 98.67%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #fff; }
    @media only screen and (max-width: 1000px) {
      .footer-wrap h2 {
        font-size: 50px;
        line-height: 55px; } }
    @media only screen and (max-width: 700px) {
      .footer-wrap h2 {
        font-size: 40px;
        line-height: 45px; } }
    @media only screen and (max-width: 500px) {
      .footer-wrap h2 {
        font-size: 32px;
        line-height: 35px; } }
  .footer-wrap p {
    font-size: 16px;
    font-family: "Manrope", sans-serif;
    line-height: 22px;
    color: #e4e4e4;
    margin: 10px auto 20px auto; }

.footer {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding-bottom: 4%;
  width: 95%;
  margin: 0 auto; }

.foot-left {
  max-width: 450px;
  width: 100%; }

.foot-right {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  max-width: 350px;
  width: 100%; }

.foot-col {
  color: #fff; }
  .foot-col ul {
    margin: 0;
    padding: 0; }
    .foot-col ul li {
      list-style: none;
      line-height: 30px; }
      .foot-col ul li a {
        color: #fff;
        font-size: 14px; }
  .foot-col a:hover {
    text-decoration: underline !important; }

.btm-foot {
  padding: 10px 0;
  text-align: center;
  color: #fff;
  font-size: 13px;
  border-top: solid 1px #ccc; }

/*---------------------- Inventory --------------------------------*/
.detail__main-content .listing-carousel .recommended-listings-section, .listing-carousel .recommended-listings-container .listing {
  background: #000 !important; }

#copylink .Mui-disabled, .des-modal-header, .MuiFormControl-root .Mui-disabled, .ts-modal-content {
  color: #000 !important;
  -webkit-text-fill-color: #000; }

.ts-button {
  background: #8FFD32 !important;
  color: #000 !important; }

#no-compare-listings, .bread-crumbs-heading .return-links .return-links-link i, .detail__search-results {
  color: #8FFD32 !important; }

.listing-carousel .recommended-listings-section .view-all-link, .listing-carousel .recommended-auctions-section .view-all-link {
  background: #8FFD32 !important;
  color: #333 !important; }

.ts-modal-content button {
  background: #8FFD32 !important;
  color: #333 !important; }

button.MuiPaginationItem-previousNext {
  background: #000 !important;
  color: #fff !important; }

.MuiPaginationItem-page, .MuiPaginationItem-firstLast {
  color: #fff !important; }

.options-popper-div .options-popper-btn, .listing-prices__retail-price, .listing-prices__discount-formatted-price, .listing-prices__alternate-retail-price, .listing-prices__exclusive-wholesale-price {
  color: #fff !important; }

.beta-site-warning__heading {
  color: #eee !important; }

section.list-top-section, nav.breadcrumbs, ul.breadcrumbs__list {
  background: transparent !important; }

.dealer-contact__header h2 {
  color: #000 !important; }

a.email-seller.des-email-seller.collapsible-contact-list-item, a.video-chat.des-video-chat.collapsible-contact-list-item {
  border-radius: 0 !important; }

.listing-card-grid {
  background: #000; }

.financing-section {
  background-color: #000;
  color: #fff;
  padding: 10px 50px;
  text-align: right;
  font-family: "Manrope", serif !important;
  display: flex;
  align-items: center;
  justify-content: flex-end; }
  .financing-section .flexit {
    display: flex;
    align-items: center;
    gap: 15px;
    display: flex;
    flex-direction: row;
    justify-content: space-between; }

.search-stock {
  text-align: left;
  /*
  	.keyword{
  		padding: 20px 15px !important;
  		color: #000;
  	}
  */ }
  .search-stock span {
    color: #fff;
    font-weight: 700; }
  .search-stock .flexit input[type="text"], .search-stock .flexit select {
    padding: 0px 10px;
    border: solid 1px #fff;
    border-radius: 5px;
    box-shadow: none !important;
    color: #828282 !important;
    background: #F2F2F2 !important;
    width: 100%;
    font-family: "Manrope", serif !important;
    box-sizing: border-box;
    width: 220px;
    font-size: 14px !important; }
  .search-stock .squarebutton {
    background-color: #8FFD32 !important;
    padding: 5px 25px;
    border-radius: 5px;
    color: #333;
    font-weight: 700;
    white-space: nowrap;
    border: none; }

.finance-blurb {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-grow: 0;
  gap: 20px; }
  .finance-blurb button {
    font-family: "Manrope", serif !important;
    flex-grow: 0; }
  .finance-blurb p {
    white-space: nowrap; }

.ts-modal-content {
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px; }
  .ts-modal-content h2 {
    color: #000 !important; }
  .ts-modal-content span {
    color: #000 !important; }
  .ts-modal-content button.close.ts-button {
    color: #000 !important; }
  .ts-modal-content .detail-wrapper :not([class*="Mui"], [class*="Mui"] *, .detail-shipping, .detail-shipping *, .detail__specs-label, .detail__specs-label *, .inspection__spec-label, .inspection__spec-label *, .detail__beta-site-warning, .detail__beta-site-warning *, .currency-select, .currency-selector-option, .mc-media-overlay-banner-span, .mc-media-overlay-banner-span *) {
    color: #000; }

.body-wrapper {
  padding: 50px;
  background-color: #000 !important;
  color: #fff !important;
  font-family: "Manrope", serif !important; }
  .body-wrapper span.list-title-text {
    font-size: 52px !important;
    font-family: "Barlow Condensed", sans-serif !important;
    font-weight: 700 !important;
    color: #fff !important; }

.info {
  color: #fff !important; }

.or-line {
  color: #000; }


span.rent-title {
  background-color: transparent;
  color: #fff;
  margin: 5px 0px !important;
  font-weight: 700;
  font-size: 14px !important; }

a.list-listing-title-link {
  font-family: "Barlow Condensed", sans-serif !important;
  font-size: 24px; }

.list-redesign .list-container-flexrow .list-listing-card-wrapper .listing-card-grid .list-listing-title .listing-category {
  font-size: 14px !important;
  font-family: "Manrope", serif !important;
  font-weight: 900 !important; }

.list-content .list-listing-title-link {
  color: #fff !important; }

.listing-widgets {
  display: none !important; }

button.ts-button.faceted-section-head.section-head {
  background-color: #111 !important;
  color: #fff !important; }

.faceted-search-content .faceted-search__top-section {
  border: none !important; }

.show-closest-first {
  background-color: #000 !important; }

.show-closest-first-container {
  border: none !important; }

.list-redesign .list-container-flexrow .list-listing-card-wrapper {
  box-shadow: none !important; }

.list-redesign .list-container-flexrow .list-listing-card-wrapper .ListingParentElement {
  border: 1px #ffffff50 solid !important; }

.faceted-search-content .faceted-section-head {
  border-bottom: 1px #ffffff50 solid !important; }

.faceted-search-content .faceted-section-box {
  border: none !important; }

.faceted-search-content .faceted-section-box .faceted-option-checkbox-container label {
  display: flex;
  gap: 5px; }

.list-redesign .page-type-toggle {
  background-color: #242424 !important; }

.list-redesign .page-type-toggle .active {
  background-color: #000 !important; }

.list-redesign .specs-container .specs-button {
  background-color: #000 !important; }

.list-top-section .list-bcrumbs-and-title .ground-bcrumbs .media-buttons .print-this, .list-top-section .list-bcrumbs-and-title .ground-bcrumbs .media-buttons .email-this {
  background-color: #000 !important;
  border: 1px #ffffff50 solid !important; }

.faceted-search-content .faceted-search__main-section {
  border: none !important; }

span.listing-widget__text {
  text-align: center; }

.list-content .price-container .price {
  color: #8FFD32 !important; }

.list-content .listing-widgets .Currency a {
  background-color: #8FFD32 !important;
  font-family: "Manrope", sans-serif !important;
  color: #000 !important; }

.list-redesign .widget-container .listing-widgets .shipping a {
  background-color: #000 !important;
  font-family: "Manrope", sans-serif !important; }

button.selected-facet.ts-button {
  background-color: #8FFD32 !important;
  color: #000 !important;
  border-radius: 30px !important;
  padding: 10px 15px !important; }

a.view-listing-details-link.des-view-listingDetails.template-branded-button {
  background-color: #8FFD32;
  color: #000 !important;
  border-radius: 30px;
  padding: 15px; }

.list-top-section .list-listings-count {
  color: #fff !important; }

.list-heading {
  padding-bottom: 25px !important;
  align-items: baseline !important; }

span.listing-category {
  color: #fff !important;
  font-family: "Barlow Condensed", sans-serif !important;
  font-weight: 700 !important;
  font-size: 21px !important; }

.list-listing.listing-data-selector {
  background-color: #000 !important;
  border: 1px #ffffff50 solid !important; }

a.email-seller.des-email-seller.collapsible-contact-list-item, a.video-chat.des-video-chat.collapsible-contact-list-item {
  /*   width: 50%; */
  margin: 0px;
  border-radius: 30px;
  margin-top: 7px;
  padding: 15px;
  background-color: #fff;
  color: #000;
  white-space: nowrap;
  transition: .25s;
  display: flex;
  align-items: center;
  line-height: 0px; }

.email-seller span span {
  visibility: hidden; }

.email-seller span span::before {
  content: "Contact Us";
  visibility: visible;
  display: block;
  position: relative; }

.email {
  display: flex !important;
  justify-content: center;
  align-items: center;
  line-height: 0px;
  gap: 3px; }

.entry-content {
  background-color: #000; }

.compare-container {
  color: #fff !important; }
  .compare-container h2 {
    color: #fff !important;
    font-size: 1.3rem !important;
    line-height: auto !important; }
  .compare-container a {
    color: #fff !important; }

.breadcrumbs {
  color: #fff !important; }
  .breadcrumbs a {
    color: #fff !important; }

.bread-crumbs-heading .return-links .return-links-link span {
  color: #fff !important; }

.breadcrumbs__link {
  color: #fff !important;
  font-weight: 700 !important; }

.compare-listings-container .compare-container .compare-price {
  color: #fff !important; }

.list-container-flexrow .contact-options a, .list-container-flexrow .dealer-phone-call, .list-container-flexrow .dealer-phone-text {
  background-color: #fff !important;
  color: #000 !important; }

a.dealer-phone-call {
  color: #000 !important; }

/* Hide the original text */
.email span {
  visibility: hidden; }

/* Add the new text using ::before */
.email span::before {
  content: "Contact Us";
  visibility: visible;
  display: block;
  position: relative; }

.list-redesign .contact-container .shared {
  display: flex !important; }

a.email-seller.des-email-seller.collapsible-contact-list-item:hover {
  background-color: #EBEBEB; }

a.video-chat.des-video-chat.collapsible-contact-list-item {
  display: none !important; }

.ts-modal-content.show-all-modal-content-container {
  color: #000; }
  .ts-modal-content.show-all-modal-content-container label {
    display: flex;
    gap: 5px; }

/*
.contact-options.contact-list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 5px;
}
*/
.list-content .listing-description {
  text-transform: lowercase !important; }

.list-redesign .page-type-toggle .sort {
  padding: 5px 10px !important; }

.faceted-search-content .selected-facets-container {
  border: none !important; }

button.ts-button.template-branded-button {
  background-color: #8FFD32 !important;
  color: #000; }

.list-redesign .other-site-data-section .rent-lease .rent-lease-price {
  color: #8FFD32 !important;
  font-weight: 700 !important; }

.list-redesign .other-site-data-section .rent-lease .rent-title, .list-content .spec-icon, .list-content .list-error {
  background-color: #000 !important; }

button.ts-button.faceted-section-head.section-head0 {
  background-color: #000 !important; }

a.MuiButtonBase-root.MuiButton-root.MuiButton-text.MuiButton-textPrimary.MuiButton-sizeSmall.MuiButton-textSizeSmall.MuiButton-colorPrimary.MuiButton-root.MuiButton-text.MuiButton-textPrimary.MuiButton-sizeSmall.MuiButton-textSizeSmall.MuiButton-colorPrimary.dealer-contact__link.illinoisliftcomwpstg-1aeryl3 {
  color: #fff !important; }

button.MuiButtonBase-root.MuiButton-root.MuiButton-text.MuiButton-textPrimary.MuiButton-sizeSmall.MuiButton-textSizeSmall.MuiButton-colorPrimary.MuiButton-root.MuiButton-text.MuiButton-textPrimary.MuiButton-sizeSmall.MuiButton-textSizeSmall.MuiButton-colorPrimary.dealer-contact__videochat.illinoisliftcomwpstg-1aeryl3 {
  color: #fff !important; }

.illinoisliftcomwpstg-l50j6d {
  color: #fff !important; }

.detail__specs-label {
  background-color: #242424 !important;
  color: #fff !important; }

.dealer-contact.dealer-contact_retail {
  background-color: #fff !important;
  color: #000 !important; }
  .dealer-contact.dealer-contact_retail a, .dealer-contact.dealer-contact_retail p, .dealer-contact.dealer-contact_retail span {
    color: #000 !important; }

.dealer-contact.dealer-contact_rental {
  background-color: #fff !important;
  color: #000 !important; }
  .dealer-contact.dealer-contact_rental span, .dealer-contact.dealer-contact_rental p {
    color: #000 !important; }

.dealer-contact__details {
  color: #000 !important; }
  .dealer-contact__details a {
    color: #000 !important; }

a.payments-as-low-as-route {
  color: #fff !important; }

main#main-content, div#main-content {
  border: none !important; }

.site-main .comment-navigation, .site-main
.posts-navigation, .site-main
.post-navigation {
  margin: 0 0 1.5em;
  overflow: hidden; }

.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
  float: left;
  width: 50%; }

.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
  float: right;
  text-align: right;
  width: 50%; }

#wp-admin-bar-new-content-default {
  display: none; }

.detail__breadcrumbs {
  color: #fff;
  font-weight: 700; }

select#retail-currency {
  color: #fff;
  font-weight: 700; }

span.listing-prices__retail-price {
  color: #8FFD32; }

.detail__specs-value {
  font-weight: 700; }

button.MuiButtonBase-root.MuiButton-root.MuiButton-contained.MuiButton-containedPrimary.MuiButton-sizeSmall.MuiButton-containedSizeSmall.MuiButton-colorPrimary.MuiButton-root.MuiButton-contained.MuiButton-containedPrimary.MuiButton-sizeSmall.MuiButton-containedSizeSmall.MuiButton-colorPrimary.use-beta-site-cookie-button.illinoisliftcomwpstg-f5lzj {
  background-color: #8FFD32;
  color: #000;
  font-weight: 700; }

.list-content {
  max-width: none !important; }

@media screen and (min-width: 1001px) {
  .list-container-flexrow .list-listing-card-wrapper {
    width: 22% !important; } }
/*---------- RESPONSIVE STYLES ----------*/
@media only screen and (max-width: 1650px) {
  .ql {
    width: 80%;
    margin: 0 auto; }

  .swiper-button-prev {
    margin-left: -60px; }

  .swiper-button-next {
    margin-right: -60px; }

  .contact-right {
    min-width: 535px; } }
/* Large Desktop */
@media only screen and (max-width: 1500px) {
  .top-header, header {
    padding: 0px 0; }

  .form-row {
    flex-wrap: wrap; }

  .form-row select, .form-row input {
    min-width: 170px; }

  .form-row button {
    flex: 1;
    min-width: 180px;
    width: auto; } }
@media only screen and (max-width: 1400px) {
  .swiper-slide-next:before {
    opacity: 0;
    transition: ease-out .5s; }

  .swiper-slide-active::before {
    opacity: 1;
    transition: ease-out .5s; }

  .swiper-slide-active {
    transform: scale(1); }

  .swiper {
    padding: 50px; } }
/* Desktop */
@media only screen and (max-width: 1215px) {
  .top-header .add {
    display: none; }

  .footer-wrap {
    padding: 70px 0 20px 0; }

  .page-top h1, .contact h1 {
    font-size: 80px;
    line-height: 85px; }

  .contact {
    flex-direction: column; }

  .contact-left {
    width: 100%; }

  .contact-right {
    width: 98%;
    margin: 20px auto 0 auto;
    min-width: 0; } }
/* Small Desktop */
@media only screen and (max-width: 1100px) {
  .nav-right {
    display: none; }

  .ql-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto;
    gap: 18px; }

  .ql-grid-item:first-of-type {
    grid-column: span 2 / span 2;
    grid-column-start: 1; }

  .ql-grid-item:nth-of-type(2) {
    grid-column: span 2 / span 2;
    grid-column-start: 3; }

  .ql-grid-item:nth-of-type(3) {
    grid-column: span 2 / span 2;
    grid-column-start: 1; }

  .ql-grid-item:nth-of-type(4) {
    grid-column: span 2 / span 2;
    grid-column-start: 3; }

  .why-row .why {
    width: calc(50% - 25px); } }
/* Tablet Landscape */
@media only screen and (max-width: 1000px) {
  .slide-caption {
    bottom: 20%; }

  .swiper-slide-active {
    margin-right: 50px !important; }

  .footer {
    flex-direction: column; }

  .foot-left {
    width: 100%;
    padding-bottom: 40px;
    max-width: 800px; }

  .foot-right {
    width: 100%; }

  .page-top h1, .contact h1 {
    font-size: 70px;
    line-height: 75px; } }
/* Tablet Portrait */
@media only screen and (max-width: 900px) {
  .right-top {
    display: none; }

  .top-header {
    width: 230px; }

  .header-wrap {
    display: flex;
    background: #111;
    flex-direction: row;
    justify-content: space-between; }

  header {
    width: 160px; }

  #menu-button {
    width: 100% !important; }

  .slide-caption h1 {
    font-size: 60px;
    line-height: 65px; }

  .cycle-slideshow, .cycle-slideshow img {
    height: 650px; } }
/* Small Tablet */
@media only screen and (max-width: 800px) {
  .swiper-button-next, .swiper-button-prev {
    display: none; }

  .ql-grid {
    gap: 12px; }

  .ql-grid-item {
    padding: 22px; }

  .ql-grid-item p {
    margin: 8px 0 16px; }

  .ql-grid-item:first-of-type {
    grid-column: span 4 / span 4;
    grid-column-start: 1;
    grid-row-start: 1; }

  .ql-grid-item:nth-of-type(2) {
    grid-column: span 4 / span 4;
    grid-column-start: 1;
    grid-row-start: 2; }

  .ql-grid-item:nth-of-type(3) {
    grid-column: span 4 / span 4;
    grid-column-start: 1;
    grid-row-start: 3; }

  .ql-grid-item:nth-of-type(4) {
    grid-column: span 4 / span 4;
    grid-column-start: 1;
    grid-row-start: 4; }

  .ql-grid {
    grid-template-rows: repeat(4, 1fr); }

  .ql-grid-item a {
    margin-top: 20px; }

  .page-top h1, .contact h1 {
    font-size: 60px;
    line-height: 65px; }

  .pad {
    padding: 50px 0; }

  .pad-small {
    padding: 20px 0; }

  .form-half {
    width: calc(100% - 10px); }

  .form-third {
    width: calc(100% - 10px); }

  .form-fourth, .form-quarter {
    width: calc(50% - 10px); }

  .form-eighth {
    width: calc(50% - 10px); }

  .why-row .why {
    width: calc(100% - 25px); } }
/* Large Mobile */
@media only screen and (max-width: 700px) {
  .ql {
    width: 99%; } }
/* Medium Mobile */
@media only screen and (max-width: 600px) {
  .slide-caption {
    bottom: 8%; }

  .slide-caption h1 {
    font-size: 45px;
    line-height: 50px; }

  .swiper-slide a {
    height: 260px; }

  .footer-wrap {
    background: radial-gradient(at center bottom, #111 80%, #8FFD32); }

  .page-top h1, .contact h1 {
    font-size: 50px;
    line-height: 55px; }

  #formpage {
    padding: 30px; } }
/* Small Mobile */
@media only screen and (max-width: 500px) {
  .swiper-slide::before {
    inset: 15px 10px 30px; }

  .swiper {
    padding: 30px; }

  .form-fourth, .form-quarter {
    width: calc(100% - 10px); }

  .form-eighth {
    width: calc(100% - 10px); } }
/* Extra Small Mobile */
@media only screen and (max-width: 430px) {
  .contact-right {
    padding: 20px; }

  .contact-right p {
    font-size: 15px; }

  .contact-right i {
    font-size: 18px; }

  .why-row .why {
    padding: 20px; }

  .why-row .why i {
    margin: 0; }

  .why-row .why h3 {
    padding: 10px 0 15px 0; } }
/* Very Small Mobile */
@media only screen and (max-width: 380px) {
  .form-row select, .form-row input {
    min-width: 175px; }

  .cycle-slideshow, .cycle-slideshow img {
    height: 750px; }

  .slide-caption h1 {
    font-size: 40px;
    line-height: 45px; }

  header {
    width: 130px; }

  #menu-button a {
    padding: 14px !important;
    width: 90px !important;
    font-size: 18px !important; } }
/* Navigation Responsive Styles */
/* Form Responsive Improvements */
