.cw-shimmer-banner {
  background-color:  #E22E37;
  color: var(--color-theme-text-btn);
  text-align: center;
  overflow: hidden;

  background-size: 300%;
  background-position-x: 100%;
  animation: cw-shimmer-primary 5s infinite linear;
}

.cw-shimmer-banner .cw-shimmer-box {
  padding: 1rem 1rem;
  max-width: var(--cw-box-width);
}

.cw-shimmer-banner a {
  color: inherit;
  font-size: 4rem;
  margin: 0;
  font-weight: 700;
  text-shadow: 1px 1px 2px #000;
  transition-duration: .3s;
}

.cw-shimmer-banner a:hover {
  opacity: .9;
  text-shadow: 3px 2px 2px #000;
}

@keyframes cw-shimmer-primary {
  0%,
  30% {
    background-position-x: 100%
  }

  40%,
  100% {
    background-position-x: 0%
  }
}


@media (min-width: 992px) {
  .cw-shimmer-banner a {
    font-size: 4rem;
  }

  .cw-shimmer-banner a:hover {
    font-size: 2.2rem;
  }
}










/* =========================
   HERO
========================= */
.cw-hero-NV {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
  }
  
  /* =========================
     SLIDESHOW
  ========================= */
  .cw-hero-slideshow {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }
  
  .cw-hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    animation: cwHeroFade 20s infinite;
  }
  
  .cw-hero-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  
  /* Dark overlay */
  .cw-hero-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.15);
  }
  
  /* 4 slides */
  .cw-hero-slide:nth-child(1) {
    animation-delay: 0s;
  }
  
  .cw-hero-slide:nth-child(2) {
    animation-delay: 5s;
  }
  
  .cw-hero-slide:nth-child(3) {
    animation-delay: 10s;
  }
  
  .cw-hero-slide:nth-child(4) {
    animation-delay: 15s;
  }
  
  @keyframes cwHeroFade {
  
    0% {
      opacity: 0;
    }
  
    5% {
      opacity: 1;
    }
  
    28% {
      opacity: 1;
    }
  
    33% {
      opacity: 0;
    }
  
    100% {
      opacity: 0;
    }
  }
  
  
  /* =========================
     HERO TEXT
  ========================= */
  .cw-hero-NV .cw-main-img-text {
    position: relative;
    z-index: 4;
    height: 100%;
    display: flex;
    align-items: center;
    text-align: center;
    padding: 40px 10px;
    color: var(--color-theme-text);
  }
  
  .cw-hero-NV .cw-main-img-text h1 {
    font-family: "Orbitron", sans-serif;
    font-size: 1.35rem;
    text-transform: uppercase;
    font-weight: 400;
  }
  
  .cw-hero-NV .cw-main-img-text h1 span {
    color: var(--color-theme-primary);
    font-weight: 700;
    font-size: 1.8rem;
  }
  
  .cw-hero-NV .cw-main-img-text h1 .cw-small-text {
    color: var(--color-theme-primary);
  }
  
  
  /* =========================
     CURVE
  ========================= */
  .cw-hero-curve {
    position: absolute;
    left: -5%;
    bottom: -1px;
    width: 110%;
    height: 70px;
    background: rgb(0, 0, 0);
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
    z-index: 5;
    pointer-events: none;
  }
  
  
  /* =========================
     QUICK ACTIONS
  ========================= */
  .cw-hero-actions {
    position: relative;
    z-index: 10;
    background: rgb(0, 0, 0);
    padding: 0 20px 30px;
  }
  
  .cw-hero-action-container {
    max-width: 1200px;
    margin: -5px auto 0;
    display: flex;
    gap: 10px;
    position: relative;
    z-index: 20;
  }
  
  .cw-hero-action {
    flex: 1;
    min-height: 105px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-decoration: none !important;
    background: #111;
    border: 2px solid var(--color-theme-primary);
    color: #fff !important;
    transition: all .3s ease;
  }
  
  .cw-hero-action:hover {
    background: var(--color-theme-primary);
    color: #fff !important;
    transform: translateY(-5px);
  }
  
  .cw-hero-action-icon {
    display: block;
    font-size: 28px;
    line-height: 1;
    margin-bottom: 10px;
  }
  
  .cw-hero-action-label {
    font-family: "Orbitron", sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
  }
  
  
  /* =========================
     TABLETS
  ========================= */
  @media (min-width: 768px) {
  
    .cw-hero-NV {
      height: 450px;
    }
  
    .cw-hero-NV .cw-main-img-text h1 {
      font-size: 2rem;
    }
  
    .cw-hero-NV .cw-main-img-text h1 span {
      font-size: 2.5rem;
    }
  
    .cw-hero-NV .cw-main-img-text h1 .cw-small-text {
      font-size: 1.5rem;
    }
  
  }
  
  
  /* =========================
     DESKTOP
  ========================= */
  @media (min-width: 992px) {
  
    .cw-hero-NV {
      height: 475px;
    }
  
    .cw-hero-NV .cw-main-img-text {
      position: absolute;
      width: 100%;
      left: 0;
      color: #fff;
      max-width: 600px;
    }
  
    .cw-hero-NV .cw-main-img-text h1 {
      text-align: left;
      margin-left: 6%;
      text-shadow: 2px 2px 3px #000;
      font-size: 2.5rem;
    }
  
    .cw-hero-NV .cw-main-img-text h1 span {
      font-size: 3rem;
    }
  
  }
  
  
  /* =========================
     LARGE DESKTOP
  ========================= */
  @media (min-width: 1200px) {
  
    .cw-hero-NV {
      height: 500px;
      max-height: none;
    }
  
    .cw-hero-NV .cw-main-img-text h1 .cw-small-text {
      font-size: 1.75rem;
    }
  
  }
  
  
  @media (min-width: 1400px) {
  
    .cw-hero-NV {
      height: 525px;
    }
  
    .cw-hero-NV .cw-main-img-text h1 {
      font-size: 3rem;
    }
  
    .cw-hero-NV .cw-main-img-text h1 span {
      font-size: 3.5rem;
    }
  
    .cw-hero-NV .cw-main-img-text h1 .cw-small-text {
      font-size: 2rem;
    }
  
  }
  
  
  @media (min-width: 1920px) {
  
    .cw-hero-NV {
      height: 550px;
    }
  
    .cw-hero-NV .cw-main-img-text h1 {
      font-size: 3.25rem;
    }
  
    .cw-hero-NV .cw-main-img-text h1 span {
      font-size: 4.15rem;
    }
  
  }
  
  
  /* =========================
     MOBILE
  ========================= */
  @media (max-width: 767px) {
  
    .cw-hero-NV {
      height: 350px;
    }
  
    .cw-hero-slide img {
      object-position: center;
    }
  
    .cw-hero-curve {
      height: 50px;
    }
  
    .cw-hero-actions {
      padding: 0 10px 25px;
    }
  
    .cw-hero-action-container {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 8px;
    }
  
    .cw-hero-action {
      min-height: 90px;
      padding: 12px 5px;
    }
  
    .cw-hero-action-icon {
      font-size: 23px;
      margin-bottom: 7px;
    }
  
    .cw-hero-action-label {
      font-size: 10px;
    }
  
  }
  
  
  /* =========================
     SMALL PHONES
  ========================= */
  @media (max-width: 480px) {
  
    .cw-hero-NV {
      height: 320px;
    }
  
    .cw-hero-action-container {
      grid-template-columns: repeat(2, 1fr);
    }
  
  }

  







/* =========================================
MAIN MODULE
========================================= */

.cw-dealer-feature {
 position: relative;
 width: 100%;
 overflow: hidden;
 background: #fff;
}

 
  /*SEARCH Section Styles*/
  
  #cw-searchSection {
    padding: 5.5em 0 2.25em 0;
  }
  
  #cw-searchSection .cw-buttons h5 {
    padding: 0.5em 1em 0em 1em;
    color: rgb(0, 0, 0);
    font-size: 1.2em;
  }
  
  #cw-searchSection .cw-buttons a {
    display: block;
    padding: 0.5em;
    margin-top: 0.2em;
    font-size: 1.1em;
    font-weight: 700;
    color: #fff;
    background: var(--color-theme-secondary);
    background-size: 200%;
    background-position: bottom center;
    border: 2px solid var(--color-theme-primary);
    border-radius: 4px;
    -webkit-transition: all 0.25s ease-out;
    transition: all 0.25s ease-out;
  }
  
  #cw-searchSection .cw-buttons a:hover {
    color: var(--color-theme-secondary);
    background: var(--color-theme-background);
  }
  
  /* SEARCH Section Styles */
  #cw-searchSection .cw-buttons h5::after {
    content: "";
    position: absolute;
    height: 1px;
    width: 47%;
    background: var(--color-theme-secondary);
    top: 7%;
    right: 5%;
  }


 

 
.popular-vehicles-sections {
    margin-top: 5rem;
}

.popular-vehicles-section {
    padding: 2em 0;
    position: relative;
}

.popular-vehicles-section-heading {
    background: #000 !important;
    color: rgb(255, 255, 255);
    padding-top: 10px;
    padding-left: 15px;
    border-radius: 10px 0 0 10px;
}

.popular-vehicle-link {
    padding-bottom: 1em;
}
 