.hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box;
  z-index: 1;
}
.hero.has-specials .ag-hero-background-video video,
.hero.has-specials .ag-hero-background-image {
  filter: blur(20px) brightness(0.5);
  transform: scale(1.1);
}
.hero .ag-hero-background-video:after {
  content: '';
  background-color: rgba(0,0,0,0.4);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.hero .ag-hero-background,
.hero .ag-hero-background-video,
.hero video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .hero .ag-hero-background,
  .hero .ag-hero-background-video,
  .hero video {
    display: none;
  }
}
.hero .ag-hero-blur-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-size: cover;
  background-position: center;
  filter: blur(35px) brightness(0.5);
  opacity: 0;
  -webkit-transition: opacity 0.8s ease ease-in-out;
  -moz-transition: opacity 0.8s ease ease-in-out;
  -o-transition: opacity 0.8s ease ease-in-out;
  transition: opacity 0.8s ease ease-in-out;
}
.hero .ag-hero-blur-bg.active {
  opacity: 1;
}
.hero-overlay {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 5;
  padding: 20px 0;
  pointer-events: none;
}
.hero-overlay .hero-specials-container {
  width: 92%;
  max-width: 1200px;
  pointer-events: auto;
  position: relative;
  margin: auto 0;
}
.hero-overlay .hero-specials-container .dv-hp-specials-carousel-wrapper .slick-list,
.hero-overlay .hero-specials-container .dv-hp-specials-carousel-wrapper .slick-track,
.hero-overlay .hero-specials-container .dv-hp-specials-carousel-wrapper .slick-slide,
.hero-overlay .hero-specials-container .dv-hp-specials-carousel-wrapper .offer,
.hero-overlay .hero-specials-container .dv-hp-specials-carousel-wrapper .offer a {
  height: auto !important;
  display: block;
}
.hero-overlay .hero-specials-container .dv-hp-specials-carousel-wrapper .slide-offer-image img {
  max-width: 100%;
  height: auto;
  max-height: 50vh;
  object-fit: contain;
  margin: 0 auto;
  display: block;
}
.hero-overlay .hero-specials-container .dv-hp-specials-carousel-wrapper .slide-offer-image img.dv-slide-mobile-only {
  display: none;
}
.hero-overlay .hero-content-bottom {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: auto;
  padding-bottom: 20px;
  pointer-events: auto;
}
.hero-overlay .hero-content-bottom .autocomplete-container {
  width: 92%;
  max-width: 800px;
  margin-bottom: 20px;
}
.ag-hero-background-image {
  display: block;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
.ag-hero-background-image:after {
  content: '';
  background-color: rgba(0,0,0,0.4);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.ag-hero-background-image.mobile-only {
  display: none;
}
@media (max-width: 768px) {
  .ag-hero-background-image.desktop-only {
    display: none !important;
  }
  .ag-hero-background-image.mobile-only {
    display: block !important;
  }
}
@media (max-width: 768px) {
  .hero-overlay {
    flex: auto;
  }
  .hero-specials-container {
    width: 95% !important;
    margin: 0 !important;
  }
  .hero-specials-container .dv-slide-mobile-only {
    display: block !important;
  }
  .hero-specials-container .slide-offer-image img:not(.dv-slide-mobile-only) {
    display: none !important;
  }
}
.ag-hero-overlay-header {
  position: absolute;
  top: 70px;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: center;
  justify-content: center;
}
.ag-hero-overlay-header h2 {
  font-weight: normal;
}
@media screen and (max-width: 768px) {
  .ag-hero-overlay-header {
    margin-bottom: 20px;
  }
  .ag-hero-overlay-header h1 {
    font-size: 28px;
  }
  .ag-hero-overlay-header h2 {
    font-size: 20px;
  }
}
.ctas {
  position: absolute;
  bottom: 24px;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 15px;
  padding: 0 24px;
  box-sizing: border-box;
  pointer-events: auto;
}
@media screen and (max-width: 900px) {
  .ctas {
    grid-template-columns: repeat(3, 1fr);
    bottom: 12px;
    padding: 0 12px;
  }
}
@media screen and (max-width: 600px) {
  .ctas {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    bottom: 10px;
    padding: 0 10px;
  }
}
.ctas a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60px;
  background: rgba(172,172,172,0.2);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(172,172,172,0.2);
  text-decoration: none;
  -webkit-transition: background ease-in-out;
  -moz-transition: background ease-in-out;
  -o-transition: background ease-in-out;
  transition: background ease-in-out;
}
.ctas a:hover {
  background: rgba(0,0,0,0.5);
}
.ctas a span {
  font-size: 14px;
  color: #fff;
  text-align: center;
}
.dv-model-carousel-outer {
  margin: 12.5px 12.5px 0 12.5px;
}
@media screen and (max-width: 500px) {
  .ag-model-carousel-kia-heading {
    font-size: 24px !important;
  }
  .ag-model-carousel-kia-tabs-container {
    margin-bottom: 0 !important;
  }
}
.swiper-pagination-bullet {
  width: 4px;
  height: 4px;
}
.swiper-model-carousel-kia {
  padding: 10px 0 40px !important;
}
.ag-model-carousel-kia-tabs {
  padding: 0 0 40px !important;
}
.dv-carousel-hero {
  padding-bottom: 0;
  display: flex;
  display: -webkit-flex;
  display: -ms-flexbox;
  flex-flow: column nowrap;
  position: relative;
  max-height: 730px;
  z-index: 0;
  margin: 12.5px 12.5px 0 12.5px;
}
.dv-reviews-carousel {
  margin: 12.5px 0 0 0;
  background-color: var(--primary-color) !important;
}
.dv-reviews-carousel .dv-reviews-carousel-title a {
  text-transform: none !important;
  font-size: 14px !important;
  letter-spacing: normal !important;
  padding-bottom: 14px !important;
  color: var(--primary-color) !important;
  background-color: #fff !important;
}
.dv-reviews-carousel .dv-reviews-carousel-title a:hover {
  background-color: var(--secondary-color) !important;
  color: #fff !important;
}
.dv-reviews-carousel .dv-reviews-carousel-title h4 i {
  color: #d91414 !important;
}
@media screen and (max-width: 768px) {
  .dv-reviews-mini-badge-container {
    flex-direction: column;
  }
  .dv-reviews-carousel-title h4 {
    font-size: 26px !important;
  }
}
.ag-service-wrapper {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  text-align: center;
  padding: 8rem 2rem;
  display: flex;
  display: -webkit-flex;
  display: -ms-flexbox;
  flex-flow: column nowrap;
  justify-content: center;
  position: relative;
  margin: 12.5px;
}
@media screen and (max-width: 768px) {
  .ag-service-wrapper {
    background-attachment: scroll;
  }
}
.ag-service-wrapper:before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  background: rgba(5,20,31,0.8);
  z-index: 0;
}
.ag-service-wrapper p {
  color: #fff;
  text-transform: uppercase;
  z-index: 1;
  position: relative;
}
.ag-service-wrapper p.ag-service-wrapper-header {
  font-size: 120px;
  font-weight: bold;
  line-height: 1;
}
@media screen and (max-width: 1280px) {
  .ag-service-wrapper p.ag-service-wrapper-header {
    font-size: 48px;
  }
}
@media screen and (max-width: 991px) {
  .ag-service-wrapper p.ag-service-wrapper-header {
    font-size: 36px;
  }
}
.ag-service-wrapper p.ag-service-wrapper-sub-header {
  text-transform: none;
  font-size: 24px;
  margin: 30px 0 50px;
  font-weight: 300;
}
@media screen and (max-width: 1280px) {
  .ag-service-wrapper p.ag-service-wrapper-sub-header {
    font-size: 24px;
  }
}
@media screen and (max-width: 991px) {
  .ag-service-wrapper p.ag-service-wrapper-sub-header {
    font-size: 20px;
  }
}
@media screen and (max-width: 768px) {
  .ag-service-wrapper p.ag-service-wrapper-sub-header {
    font-size: 16px;
  }
}
.ag-service-wrapper .ag-service-cta-wrapper {
  display: flex;
  display: -webkit-flex;
  display: -ms-flexbox;
  justify-content: center;
  align-items: center;
  gap: 20px;
  z-index: 1;
  position: relative;
}
@media screen and (max-width: 600px) {
  .ag-service-wrapper .ag-service-cta-wrapper {
    flex-flow: column nowrap;
  }
}
.ag-service-wrapper .ag-service-cta-wrapper a {
  text-decoration: none;
  color: #fff;
  padding: 15px 20px;
  min-width: 100px;
  font-size: 14px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.2);
  -webkit-transition: all ease-in-out;
  -moz-transition: all ease-in-out;
  -o-transition: all ease-in-out;
  transition: all ease-in-out;
  display: inline-block;
}
.ag-service-wrapper .ag-service-cta-wrapper a:hover {
  background: rgba(255,255,255,0.25);
  border: 1px solid rgba(255,255,255,0.4);
}
.ag-service-wrapper .ag-service-cta-wrapper a span {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.ag-service-wrapper .ag-service-cta-wrapper a i {
  font-size: 12px;
}
.ag-certified {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  text-align: center;
  padding: 10rem 2rem;
  display: flex;
  display: -webkit-flex;
  display: -ms-flexbox;
  flex-flow: column nowrap;
  justify-content: center;
  position: relative;
  margin: 12.5px;
}
@media screen and (max-width: 768px) {
  .ag-certified {
    background-attachment: scroll;
  }
}
.ag-certified:before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  background: rgba(5,20,31,0.8);
  z-index: 0;
}
.ag-certified a {
  text-decoration: none;
  color: #fff !important;
  padding: 15px 20px;
  min-width: 100px;
  font-size: 14px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.2);
  -webkit-transition: all ease-in-out;
  -moz-transition: all ease-in-out;
  -o-transition: all ease-in-out;
  transition: all ease-in-out;
  display: inline-block;
}
.ag-certified a:hover {
  background: rgba(255,255,255,0.25);
  border: 1px solid rgba(255,255,255,0.4);
}
.ag-certified a span {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.ag-certified a i {
  font-size: 12px;
}
.ag-certified .ag-section-container {
  display: flex;
  flex-direction: column;
  justify-content: center !important;
  gap: 50px;
}
.ag-certified .ag-section-container-header {
  position: relative;
}
.ag-certified .ag-section-container-header h2 {
  font-size: 36px !important;
  text-transform: none !important;
}
.ag-certified .ag-section-container-header h3 {
  font-size: 22px !important;
  text-transform: none !important;
}
.ag-seo {
  padding: 100px 0;
  overflow: hidden;
}
.ag-seo h4 {
  font-size: 24px;
  color: #bcc4cc;
  font-weight: bold;
  text-transform: uppercase;
}
@media screen and (max-width: 768px) {
  .ag-seo h4 {
    font-size: 18px;
  }
}
.ag-seo h2 {
  font-size: 64px;
  font-weight: bold;
  margin-bottom: 6.25px;
  color: var(--primary-color);
  text-transform: uppercase;
}
@media screen and (max-width: 768px) {
  .ag-seo h2 {
    font-size: 28px;
    margin-bottom: 3.125px;
  }
}
.ag-seo h3 {
  text-transform: uppercase;
  font-size: clamp(12px, 2vw, 20px);
  color: #000;
  margin: 0;
  font-weight: normal;
  letter-spacing: 2px;
}
.ag-seo p {
  font-size: 14px;
  color: #000;
  line-height: 150%;
  text-transform: inherit;
}
.ag-seo .ag-seo-inner {
  display: flex;
  display: -webkit-flex;
  display: -ms-flexbox;
  align-items: center;
}
.ag-seo .ag-seo-inner .ag-seo-column .ag-seo-column-inner {
  text-align: center;
  max-width: 65vw;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .ag-seo .ag-seo-inner .ag-seo-column .ag-seo-column-inner {
    max-width: 100%;
  }
}
.ag-seo .ag-seo-inner .ag-seo-column .seo-more {
  display: none;
  padding-top: 25px;
}
.ag-seo .ag-seo-inner .ag-seo-column .seo-more-btn {
  margin-top: 25px;
  display: inline-block;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: transparent;
  color: #000;
  padding: 12.5px;
  padding-left: 10px;
}
.ag-seo .ag-seo-inner .ag-seo-column .seo-more-btn i {
  color: var(--secondary-color);
  font-size: 28px;
  vertical-align: text-top;
}
.ag-seo .ag-seo-inner .ag-seo-column .seo-more-btn:hover {
  cursor: pointer;
}
.ag-seo .ag-seo-inner .ag-seo-column:first-child {
  padding: 0 100px;
  flex-basis: 100%;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .ag-seo .ag-seo-inner .ag-seo-column {
    flex-basis: 100%;
    width: 100%;
  }
  .ag-seo .ag-seo-inner .ag-seo-column:first-child {
    padding: 0 12.5px;
  }
}
.dv-hp-hero-carousel .slick-arrow {
  display: none !important;
}
.dv-hp-hero-carousel .dv-hero-carousel-triggers {
  bottom: 150px;
}
@media screen and (max-width: 900px) {
  .dv-hp-hero-carousel .dv-hero-carousel-triggers {
    bottom: 210px;
  }
}
@media screen and (max-width: 600px) {
  .dv-hp-hero-carousel .dv-hero-carousel-triggers {
    bottom: 225px;
  }
}
.autocomplete-container {
  position: absolute;
  pointer-events: auto;
  width: 50%;
  left: 50%;
  transform: translateX(-50%);
  bottom: 100px;
  z-index: 2;
}
@media screen and (max-width: 900px) {
  .autocomplete-container {
    width: 65%;
    bottom: 165px;
  }
}
@media screen and (max-width: 600px) {
  .autocomplete-container {
    display: none;
  }
}
.autocomplete-container .aa-InputWrapper:before {
  color: #fff !important;
}
.autocomplete-container .dv-autocomplete-input {
  background: rgba(172,172,172,0.2);
  backdrop-filter: blur(5px);
  border: none !important;
  color: #fff !important;
}
.autocomplete-container .dv-autocomplete-input::placeholder {
  color: #e5e5e5 !important;
}
.autocomplete-container .dv-autocomplete-input:hover {
  border: 1px solid rgba(172,172,172,0.2) !important;
}
.autocomplete-container .dv-autocomplete-panel {
  position: absolute !important;
  top: auto !important;
  bottom: 50px !important;
  left: 0 !important;
  right: 0 !important;
  max-height: 250px !important;
}
