/*---------------------------- THEME COMMON STYLE START ------------------------------*/
@font-face {
  font-family: "MMC-Headline,sans-serif";
  src: url("../fonts/MMC-Bold-2c63c4927e.ttf") format("truetype");
}

@font-face {
  font-family: "MMC-Medium,sans-serif";
  src: url("../fonts/MMC-Medium-682261bfb2.ttf") format("truetype");
}

@font-face {
  font-family: "MMC-Subline,sans-serif";
  src: url("../fonts/MMC-Regular-dd2c8a0d76.ttf") format("truetype");
}

* {
  box-sizing: border-box;
}

body {
  font-family: "MMC-Subline,sans-serif";
  line-height: 26px;
  font-size: 15px;
  color: #666;
  letter-spacing: 0.5px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "MMC-Headline,sans-serif";
  letter-spacing: 1px;
  line-height: 1.5;
  padding: 0;
  margin: 0;
}

a,
a:hover,
a:active,
a:focus {
  transition: all 0.3s;
  text-decoration: none;
  outline: none;
  border: none;
}

ul, li {
  margin: 0;
  padding: 0;
}

button {
  border: none;
}

button:focus {
  outline: 1px dotted transparent;
  outline: 5px auto -webkit-focus-ring-color;
}

.form-control:focus {
  outline: 0;
  box-shadow: none;
  transition: all 500ms ease;
}

.container-mid {
  position: relative;
  max-width: 1300px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

.list-style-none {
  padding: 0;
  list-style-type: none;
}

.shadow-box {
  box-shadow: 0px 3px 8px 0px rgba(0, 0, 0, 0.1);
}

.colorPrimary {
  color: #ed1c24;
}

.colorSecondary {
  color: #000000;
}

/*-----------------theme common style ends----------------*/
.themeHeading {
  position: relative;
  margin-bottom: 40px;
}

.themeHeading h2 {
  color: #1f1f1f;
  position: relative;
  font-size: 42px;
  line-height: 1;
  margin-bottom: 15px;
}

@media (max-width: 767px) {
  .themeHeading h2 {
    font-size: 26px;
  }
}

.themeHeading p {
  font-size: 15px;
  max-width: 650px;
  width: 100%;
  color: #8b8b8b;
}

/*--------------------------------- Theme Button CSS Start ------------------------------ */
.themeBtn {
  font-family: "MMC-Headline,sans-serif";
  position: relative;
  border: 0;
  padding: 6px 20px 8px;
  border-radius: 0;
  font-size: 16px;
  color: #fff;
  letter-spacing: 1px;
  background-color: #ed1c24;
  border: 1px solid #ed1c24;
  text-transform: uppercase;
  display: inline-block;
  z-index: 0;
  overflow: hidden;
  transition: .3s ease-in-out;
}

.themeBtn::after {
  position: relative;
  font-family: "FontAwesome";
  content: "\f054";
  left: 0;
  margin-left: 10px;
  transition: .3s ease-in-out;
}

.themeBtn.active {
  border: 1px solid #000000;
  background-color: #000000;
}

.themeBtn.active:hover {
  background-color: #ed1c24;
  border-color: #ed1c24;
}

.themeBtn:hover {
  color: #fff;
  background-color: #000000;
  border: 1px solid #000000;
}

.themeBtn:hover::after {
  left: 5px;
}

.themeBtn:focus {
  border: 1px solid #000000;
  background-color: #000000;
}

/*--------------------------------- Header Section Start ------------------------------ */
#header > .top-bar {
  background-color: #000000;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.33);
}

#header > .top-bar .d-flex {
  justify-content: flex-end;
  font-size: 11px;
  line-height: 32px;
}

#header > .top-bar .d-flex a {
  color: #fff;
}

#header > .top-bar .d-flex a:hover {
  text-decoration: underline;
}

#header > .top-bar .d-flex i {
  position: relative;
  top: 2px;
  color: #ed1c24;
  font-size: 16px;
  font-weight: 900;
}

@media (max-width: 991px) {
  #header > .top-bar {
    display: none;
  }
}

.site-header {
  background: #000000;
  position: relative;
  box-shadow: 0 15px 20px -3px rgba(0, 0, 0, 0.03);
  z-index: 11;
  transition: .5s;
}

@media (max-width: 991px) {
  .site-header {
    padding: 5px 0;
  }
}

.site-header.site-header-active {
  position: fixed;
  width: 100%;
  top: 0;
  background-color: #000000;
  box-shadow: 0 15px 20px -3px rgba(0, 0, 0, 0.07);
  animation: smoothScroll 1s forwards;
}

.site-header.site-header-active .navbar .navbar-expand-lg li a::after {
  display: none;
}

.site-header .navbar {
  margin-bottom: 0;
  border-radius: 0;
  border: 0;
  padding: 0;
}

@media (max-width: 991px) {
  .site-header .navbar {
    padding: 0px 15px;
  }
}

.site-header .navbar.navbar-expand-lg .navbar-nav {
  align-items: center;
}

@media (max-width: 991px) {
  .site-header .navbar.navbar-expand-lg .navbar-nav {
    margin: 0px;
    align-items: initial;
  }
}

.site-header .navbar.navbar-expand-lg li {
  display: inline-block;
}

.site-header .navbar.navbar-expand-lg li.dropdown:nth-last-child(2) .dropdown-menu, .site-header .navbar.navbar-expand-lg li.dropdown:last-child .dropdown-menu {
  left: auto;
  right: 0;
}

.site-header .navbar.navbar-expand-lg li.dropdown.show a::after {
  top: 6px;
  transform: rotate(-135deg);
}

@media (max-width: 991px) {
  .site-header .navbar.navbar-expand-lg li {
    padding: 0;
  }
}

.site-header .navbar.navbar-expand-lg li a {
  font-family: "MMC-Headline,sans-serif";
  position: relative;
  text-transform: uppercase;
  padding: 15px 10px;
  font-size: 15px;
  line-height: 60px;
  color: #fff;
  display: block;
  text-align: center;
  transition: all 0.2s ease-in;
  cursor: pointer;
}

.site-header .navbar.navbar-expand-lg li a.wishlist-icon {
  background-color: #ed1c24;
  padding: 10px 20px;
}

@media (max-width: 991px) {
  .site-header .navbar.navbar-expand-lg li a.wishlist-icon {
    padding: 0 10px;
  }
}

@media (max-width: 767px) {
  .site-header .navbar.navbar-expand-lg li a.wishlist-icon {
    padding: 10px;
  }
}

@media (max-width: 1200px) {
  .site-header .navbar.navbar-expand-lg li a {
    font-size: 14px;
  }
}

@media (max-width: 991px) {
  .site-header .navbar.navbar-expand-lg li a:hover {
    outline: 0;
    box-shadow: none;
  }
}

@media (max-width: 991px) {
  .site-header .navbar.navbar-expand-lg li a {
    padding: 0 10px;
  }
}

@media (max-width: 767px) {
  .site-header .navbar.navbar-expand-lg li a {
    padding: 10px;
    font-size: 15px;
    line-height: 30px;
  }
}

.site-header .navbar.navbar-expand-lg li a.dropdown-toggle::after {
  border: none;
  position: relative;
  top: 1px;
  margin-left: 8px;
  height: 8px;
  width: 8px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
  transition: .2s ease-in-out;
}

@media (min-width: 992px) {
  .site-header .navbar.navbar-expand-lg li.dropdown:hover .dropdown-toggle::after {
    top: 6px;
    transform: rotate(-135deg);
  }
}

.site-header .navbar.navbar-expand-lg li .dropdown-menu {
  border: 1px solid #f1f1f1;
  border-top: none;
  border-bottom: none;
  top: 97%;
  border-radius: 0;
  padding: 0;
  min-width: 15rem;
  border-top: 1px solid #f1f1f1;
  z-index: 1;
}

.site-header .navbar.navbar-expand-lg li .dropdown-menu.mega-menu {
  min-width: 750px;
  max-width: 750px;
  width: 100%;
  background-color: #fff;
  flex-wrap: wrap;
}

.site-header .navbar.navbar-expand-lg li .dropdown-menu.mega-menu.show {
  display: flex;
}

@media (max-width: 991px) {
  .site-header .navbar.navbar-expand-lg li .dropdown-menu.mega-menu {
    min-width: 100%;
  }
}

.site-header .navbar.navbar-expand-lg li .dropdown-menu.mega-menu li {
  width: 33.3%;
}

@media (max-width: 991px) {
  .site-header .navbar.navbar-expand-lg li .dropdown-menu.mega-menu li {
    width: 33.3%;
  }
}

@media (max-width: 767px) {
  .site-header .navbar.navbar-expand-lg li .dropdown-menu.mega-menu li {
    width: 50%;
  }
}

@media (max-width: 575px) {
  .site-header .navbar.navbar-expand-lg li .dropdown-menu.mega-menu li {
    width: 100%;
  }
}

.site-header .navbar.navbar-expand-lg li .dropdown-menu.mega-menu li a {
  text-transform: capitalize;
  border: none;
  text-align: left;
}

.site-header .navbar.navbar-expand-lg li .dropdown-menu.mega-menu li a img {
  max-width: 80px;
}

.site-header .navbar.navbar-expand-lg li .dropdown-menu li {
  display: block;
}

.site-header .navbar.navbar-expand-lg li .dropdown-menu li a {
  text-align: left;
  color: #1f1f1f;
  padding: 15px;
  line-height: 1;
  font-size: 14px;
  border-bottom: 1px solid #f1f1f1;
}

.site-header .navbar.navbar-expand-lg li .dropdown-menu li a:focus, .site-header .navbar.navbar-expand-lg li .dropdown-menu li a:hover, .site-header .navbar.navbar-expand-lg li .dropdown-menu li a:active {
  background-color: #ed1c24;
  color: #fff;
}

@media (max-width: 991px) {
  .site-header .navbar.navbar-expand-lg li .dropdown-menu li a {
    background-color: rgba(241, 241, 241, 0.44);
    text-align: center;
  }
}

.site-header .navbar-toggler {
  background: transparent;
  border-radius: 0;
  border: 0;
  margin: 14px 0;
  padding: 0 5px;
  outline: none;
}

.site-header .navbar-toggler .icon-bar {
  width: 22px;
  height: 2px;
  background-color: #fff;
  display: block;
  transition: all 0.2s;
  margin: 4px 0;
}

.site-header .navbar-toggler .top-bar {
  transform: rotate(-42deg);
  transform-origin: 90% 90%;
}

.site-header .navbar-toggler .middle-bar {
  opacity: 0;
}

.site-header .navbar-toggler .bottom-bar {
  transform: rotate(42deg);
  transform-origin: 90% 10%;
}

.site-header .navbar-toggler.collapsed .top-bar {
  transform: rotate(0);
}

.site-header .navbar-toggler.collapsed .middle-bar {
  opacity: 1;
}

.site-header .navbar-toggler.collapsed .bottom-bar {
  transform: rotate(0);
}

.navbar-brand {
  margin: 0;
  padding: 0;
  padding-right: 25px;
  margin-right: 15px;
}

.navbar-brand img {
  max-width: 80px;
  image-rendering: -webkit-optimize-contrast;
}

@media (max-width: 390px) {
  .navbar-brand img {
    max-width: 50px;
  }
}

@media (max-width: 390px) {
  .dealer-logo h6 {
    font-size: 13px;
  }
}

@media (min-width: 992px) {
  .dropdown:hover .dropdown-menu {
    display: block;
  }
  .dropdown:hover .dropdown-menu.mega-menu {
    display: flex;
  }
}

@keyframes smoothScroll {
  0% {
    transform: translateY(-35px);
  }
  100% {
    transform: translateY(0px);
  }
}

@media (max-width: 767px) {
  .site-header .navbar-nav li {
    display: block;
  }
}

/*--------------------------------- Header Section End ------------------------------ */
@media (max-width: 991px) {
  .site-header .navbar-collapse {
    position: fixed;
    top: 88px;
    left: -100%;
    padding: 0;
    width: 100%;
    text-align: center;
    height: calc(100vh - 88px);
    transition: all 0.3s ease;
    display: block;
    overflow-y: scroll;
  }
  .site-header .navbar-collapse.collapsing {
    height: 100vh;
    margin-right: 50%;
    transition: all 0.3s ease;
    display: block;
  }
  .site-header .navbar-collapse.show {
    left: 0;
    background: #000000;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    overflow-y: scroll;
  }
}

@media (max-width: 390px) {
  .site-header .navbar-collapse {
    top: 60px;
    height: calc(100vh - 88px);
  }
}

/*--------------------------------- Footer Section Start ------------------------------ */
.siteFooter {
  position: relative;
  background-color: #000000;
}

.siteFooter h5 {
  color: #fff;
}

.footer_list-item li a {
  color: #f1f1f1;
  padding: 5px 10px 6px 0;
  border-radius: 2px;
  transition: .3s ease-in-out;
}

.footer_list-item li a:hover {
  padding-left: 5px;
  background-color: #ed1c24;
}

.footer_secondary {
  font-size: 14px;
  background-color: #000000;
  color: #f1f1f1;
}

.footer_secondary a {
  color: #ed1c24;
  font-weight: 600;
}

.footer_secondary a:hover {
  text-decoration: underline;
}

.social-links li a {
  display: flex;
  align-items: center;
  color: #fff;
}

.social-links li a i {
  display: inline-block;
  height: 40px;
  width: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f1f1f1;
  color: #1f1f1f;
  border-radius: 5px;
  margin-right: 10px;
}

.social-links li a:hover.facebook i {
  color: #fff;
  background-color: #4267B2;
}

.social-links li a:hover.twitter i {
  color: #fff;
  background-color: #1DA1F2;
}

.social-links li a:hover.youtube i {
  color: #fff;
  background-color: #ff0000;
}

.social-links li a:hover.linkedin i {
  color: #fff;
  background-color: #0077b5;
}

.heroSection {
  position: relative;
  z-index: 0;
}

.heroSection .carousel-inner .carousel-item {
  position: relative;
  height: 600px;
}

@media (max-width: 991px) {
  .heroSection .carousel-inner .carousel-item {
    height: 500px;
  }
}

@media (max-width: 767px) {
  .heroSection .carousel-inner .carousel-item {
    height: auto;
  }
}

.heroSection .carousel-inner .carousel-item .carousel-img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-position: left center;
  background-size: cover;
  background-repeat: no-repeat;
}

@media (max-width: 767px) {
  .heroSection .carousel-inner .carousel-item .carousel-img {
    position: relative;
    height: 200px;
  }
}

@media (max-width: 575px) {
  .heroSection .carousel-inner .carousel-item .carousel-img {
    height: 150px;
  }
}

.heroSection .carousel-inner .carousel-item .carousel-img::before, .heroSection .carousel-inner .carousel-item .carousel-img.cta-section::after {
  position: absolute;
  content: '';
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.77) 10%, transparent 60%);
}

@media (max-width: 767px) {
  .heroSection .carousel-inner .carousel-item .carousel-img::before, .heroSection .carousel-inner .carousel-item .carousel-img.cta-section::after {
    display: none;
  }
}

.heroSection .carousel-inner .carousel-item .carousel-caption {
  right: auto;
  bottom: auto;
  top: 45%;
  left: 10%;
  transform: translateY(-50%);
  text-align: left;
  max-width: 450px;
  width: 100%;
}

@media (max-width: 767px) {
  .heroSection .carousel-inner .carousel-item .carousel-caption {
    position: relative;
    color: #1f1f1f;
    transform: none;
    top: auto;
    left: auto;
    width: 100%;
    padding: 15px;
    margin-bottom: 50px;
  }
}

.heroSection .carousel-inner .carousel-item .carousel-caption h3 {
  font-size: 64px;
}

@media (max-width: 1200px) {
  .heroSection .carousel-inner .carousel-item .carousel-caption h3 {
    font-size: 55px;
  }
}

@media (max-width: 991px) {
  .heroSection .carousel-inner .carousel-item .carousel-caption h3 {
    font-size: 45px;
  }
}

@media (max-width: 767px) {
  .heroSection .carousel-inner .carousel-item .carousel-caption h3 {
    font-size: 35px;
  }
}

@media (max-width: 767px) {
  .heroSection .carousel-inner .carousel-item .carousel-caption h3 {
    font-size: 28px;
  }
}

.heroSection .carousel-control-prev, .heroSection .carousel-control-next {
  width: 10%;
  color: #ed1c24;
}

.heroSection .carousel-indicators {
  bottom: 10px;
}

.heroSection .carousel-indicators li {
  display: inline-block;
  height: 20px;
  width: 13px;
  border: none;
  background-color: #ed1c24;
  transform: skew(-25deg);
  box-sizing: border-box;
  opacity: 1;
}

.heroSection .carousel-indicators li.active {
  background-color: #fff;
  border: 2px solid #ed1c24;
}

.searchBox {
  display: flex;
  flex-direction: row;
  justify-content: center;
  padding: 20px 15px 10px;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .searchBox {
    flex-direction: unset;
    flex-wrap: wrap;
    padding: 15px 10px 5px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  }
}

.searchBox .form-input {
  width: 20%;
  margin-bottom: 8px;
  padding: 0 5px;
}

@media (max-width: 767px) {
  .searchBox .form-input {
    flex: 50%;
  }
}

@media (max-width: 575px) {
  .searchBox .form-input {
    flex: 100%;
  }
}

.searchBox .themeBtn {
  padding: 7px 40px 9px;
  border-radius: 3px;
  font-size: 17px;
}

.searchBox .themeBtn::after {
  display: none;
}

.hero-cta {
  justify-content: center;
  flex-wrap: wrap;
}

.hero-cta .hero-cta-block {
  border: 1px solid rgba(241, 241, 241, 0.55);
  border-radius: 5px;
  margin: 5px;
  background-color: rgba(31, 31, 31, 0.77);
  padding: 15px;
  min-width: 180px;
  transition: .3s ease-in-out;
}

@media (max-width: 575px) {
  .hero-cta .hero-cta-block {
    flex: 1;
    min-width: 150px;
  }
}

.hero-cta .hero-cta-block:hover {
  background-color: #ed1c24;
}

.hero-cta .hero-cta-block img {
  max-width: 45px;
  image-rendering: -webkit-optimize-contrast;
}

@media (max-width: 575px) {
  .hero-cta .hero-cta-block img {
    max-width: 45px;
  }
}

.hero-cta .hero-cta-block h4 {
  font-size: 15px;
  color: #fff;
  line-height: 1.4;
}

@media (max-width: 575px) {
  .hero-cta .hero-cta-block h4 {
    font-size: 15px;
  }
}

.form-input .select2.select2-container.select2-container--default {
  width: 100% !important;
}

.form-input .select2-container .select2-selection--single {
  height: 45px;
  border-radius: 0px;
  border: 0px;
  outline: none;
}

.form-input .select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 43px;
  outline: none;
  border: none;
  border-radius: 3px;
  padding: 0 12px;
  font-size: 15px;
  border: 1px solid #ccc;
}

.form-input .select2-container--default .select2-selection--single .select2-selection__clear {
  margin-right: 10px;
}

.form-input .select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 42px;
  right: 3px;
}

.form-input .select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: rgba(31, 31, 31, 0.66);
}

.form-input .select2-search--dropdown {
  padding: 12px;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: #000000 !important;
}

.select2-dropdown {
  border: 1px solid #ccc;
  border-radius: 5px;
}

.select2-search--dropdown {
  padding: 0;
}

.select2-results__options {
  list-style: none;
  margin: 0;
  padding: 0 10px 10px;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
  border: 1px solid #aaa;
  margin: 0 10px;
  margin-top: 10px;
  width: 92%;
  margin-bottom: 10px;
}

.ourVehicles {
  position: relative;
}

.ourVehicles::before, .ourVehicles.cta-section::after {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background-color: #f1f1f1;
}

.slick-arrow {
  height: 40px;
  width: 40px;
  background-color: transparent;
  color: #ed1c24;
  border-top: 3px solid #000000;
  border-left: 3px solid #000000;
  transition: .3s ease-in-out;
  z-index: 2;
}

@media (max-width: 991px) {
  .slick-arrow {
    height: 20px;
    width: 20px;
  }
}

.slick-arrow::before, .slick-arrow.cta-section::after {
  content: '';
}

.slick-arrow.slick-prev {
  left: 0;
  transform: rotate(-45deg);
}

@media (min-width: 1300px) {
  .slick-arrow.slick-prev {
    left: 225px;
  }
}

.slick-arrow.slick-next {
  right: 0;
  transform: rotate(135deg);
}

@media (min-width: 1300px) {
  .slick-arrow.slick-next {
    right: 225px;
  }
}

.vehicle-box {
  color: #000000;
}

@media (max-width: 575px) {
  .vehicle-box h2 {
    font-size: 25px;
  }
}

.vehicle-box h6 span {
  color: #ed1c24;
  font-size: 24px;
}

.vehicle-img {
  overflow: hidden;
  height: 330px;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 575px) {
  .vehicle-img {
    height: 200px;
  }
}

.vehicle-img img {
  display: inline-block;
  transition: .3s ease-in-out;
}

.cta-section {
  position: relative;
  background-color: #000000;
  overflow: hidden;
}

.cta-section::before, .cta-section::after {
  position: absolute;
  content: '';
  top: 0;
  left: -100px;
  width: 20%;
  height: 100%;
  background-color: #ed1c24;
  transform: skew(30deg);
}

@media (max-width: 991px) {
  .cta-section::before, .cta-section::after {
    display: none;
  }
}

.cta-section::after {
  left: auto;
  right: -100px;
}

.cta-section .col-lg-2:last-child .ctaBlock::before, .cta-section .col-lg-2:last-child .ctaBlock.cta-section::after {
  display: none;
}

.ctaBlock {
  position: relative;
  display: block;
  color: #fff;
}

.ctaBlock::before, .ctaBlock.cta-section::after {
  position: absolute;
  content: '';
  top: 50%;
  right: 0;
  height: 50px;
  width: 2px;
  border-radius: 4px;
  background-color: #f1f1f1;
  transform: translateY(-50%);
}

@media (max-width: 767px) {
  .ctaBlock::before, .ctaBlock.cta-section::after {
    display: none;
  }
}

.ctaBlock:hover {
  color: #ed1c24;
}

.testDrive {
  color: #000000;
}

.offer {
  position: relative;
  padding-bottom: 350px;
  background-position: center top;
  color: #1f1f1f;
}

@media (max-width: 991px) {
  .offer {
    padding-bottom: 250px;
    background-position: center 30%;
  }
}

@media (max-width: 767px) {
  .offer {
    padding-bottom: 150px;
    background-position: center 40%;
  }
}

.offer::before, .offer.cta-section::after {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, #000000, transparent);
  opacity: .55;
}

.offer-inner {
  border-radius: 10px;
}

.offer-inner .themeHeading h2 {
  font-size: 70px;
  color: #fff;
  text-shadow: 2px 2px 2px #000000;
  line-height: 1.3;
  letter-spacing: 0;
}

@media (max-width: 991px) {
  .offer-inner .themeHeading h2 {
    font-size: 44px;
  }
}

@media (max-width: 767px) {
  .offer-inner .themeHeading h2 {
    font-size: 30px;
    line-height: 1;
  }
}

.contactDealer-text {
  padding: 30px 10px;
  color: #1f1f1f;
  text-align: center;
  width: 90%;
}

@media (max-width: 575px) {
  .contactDealer-text {
    padding: 20px 0;
  }
}

.contactDealer-text i {
  font-size: 100px;
  color: #ed1c24;
  margin-bottom: 20px;
  animation: bounce 0.5s alternate cubic-bezier(0.5, 0.05, 1, 0.5) infinite;
}

.contactDealer-text .d-flex {
  margin-top: 20px;
  flex-direction: column;
  column-gap: 15px;
}

.contactDealer-text .d-flex .themeBtn {
  display: flex;
  justify-content: space-between;
  width: 70%;
  margin: 10px 0;
}

@media (max-width: 575px) {
  .contactDealer-text .d-flex .themeBtn {
    width: 100%;
  }
}

@keyframes bounce {
  from {
    transform: translate3d(0, -25px, 0);
  }
  to {
    transform: translate3d(0, 0px, 0);
  }
}

.blogs-section {
  padding-bottom: 100px;
}

.aboutUs {
  padding: 50px 0 250px 0;
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

@media (min-width: 1200px) {
  .aboutUs {
    padding: 0 0 100px;
  }
}

.aboutUs-inner {
  background: #000;
  padding: 30px;
  border-radius: 3px;
}

@media (min-width: 1200px) {
  .aboutUs-inner {
    position: relative;
    top: -50px;
  }
}

.aboutUs-inner .themeHeading h2 {
  font-size: 34px;
  line-height: 1.3;
}

.aboutUs-inner .themeHeading p {
  max-width: 100%;
}

.aboutUs-inner .themeHeading .themeBtn:hover {
  background-color: #fff;
  color: #ed1c24;
}

.blog-grid {
  background: #1f1f1f;
  border-radius: 10px;
  border: 1px solid #f1f1f1;
  transition: .5s ease-in-out;
}

.blog-grid:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px #f1f1f1;
}

.blog-grid:hover .blog-img img {
  filter: grayscale(100%);
  transform: scale(1.1);
}

.blog-grid .blog-img {
  position: relative;
  height: 240px;
  border-radius: 10px;
  overflow: hidden;
}

.blog-grid .blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .5s ease-in-out;
}

.blog-grid .blog-content {
  position: relative;
  padding: 25px 20px 20px;
}

.blog-grid .blog-content h3 {
  font-size: 24px;
  line-height: 1.2;
}

.blog-grid .blog-content p {
  color: #f1f1f1;
}

.blog-grid .blog-content .blog-cat {
  position: absolute;
  top: -20px;
  display: inline-block;
  border-radius: 30px;
  background-color: #ed1c24;
  color: #fff;
  padding: 3px 20px 0;
}

.blog-grid .blog-content .themeBtn:hover {
  background-color: #fff;
  color: #ed1c24;
}

.delaer-page-banner {
  position: relative;
  padding: 80px 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  text-transform: capitalize;
  color: #fff;
}

.delaer-page-banner::before, .delaer-page-banner.cta-section::after {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
}

.content-wrapper {
  padding: 60px 0;
}

.service-wizard {
  background-color: #f1f1f1;
  padding: 15px;
}

.service-wizard-img {
  overflow: hidden;
}

.service-wizard-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wizard form label {
  font-weight: 600;
}

.wizard-prev:hover::before, .wizard-prev.cta-section:hover::after {
  left: -5px;
}

.wizard-prev::before, .wizard-prev.cta-section::after {
  position: relative;
  font-family: "FontAwesome";
  content: "\f053";
  left: 0;
  margin-right: 10px;
  transition: .3s ease-in-out;
}

.wizard-prev::after {
  display: none;
}

.service-list {
  max-height: 200px;
  overflow-y: scroll;
}

.form-input {
  margin-bottom: 20px;
}

.form-input input.form-control {
  height: 45px;
}

.form-input input.form-control::placeholder {
  color: #9f9f9f;
}

.box-image {
  margin-bottom: 0.5rem;
}

.box-content {
  padding: 0.5rem 0.5rem;
}

.box-description {
  margin-bottom: 0.375rem;
}

.box-grid {
  border-radius: 0.25rem;
  overflow: hidden;
  box-shadow: 0px 3px 4px -1px rgba(34, 59, 91, 0.3);
  padding: 1rem;
  margin: 1rem 0rem;
  background-color: #f5f5f5;
  transition: 0.4s all;
  color: #151515;
}

.box-grid:hover {
  box-shadow: 0px 7px 6px -1px rgba(34, 59, 91, 0.3);
}

.box-grid .themeBtn {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.box-grid .heading-and-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.25rem;
}

.box-grid .heading-and-price .heading {
  text-transform: capitalize;
  font-size: 1.375rem;
  font-weight: 500;
}

.box-grid .heading-and-price .price {
  color: #ed1c24;
  font-size: 1.25rem;
}

.box-grid .modal {
  padding-right: 0rem !important;
}

.box-grid .modal-dialog {
  max-width: 650px;
}

.box-grid .modal-content {
  padding: 1rem 1rem 1.25rem;
}

.box-grid .modal-content a {
  color: #ed1c24;
}

.box-grid .modal-content a:hover {
  color: #c61017;
}

.box-grid .modal-header {
  padding: 0rem 0rem 1rem;
  position: relative;
}

@media (max-width: 575px) {
  .box-grid .modal-header {
    padding: 0rem 0rem 3.5rem;
  }
}

.box-grid .modal-header .heading p {
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 0rem;
}

.box-grid .modal-header .close {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: revert;
  font-size: 1.25rem;
  padding: 12px 12px 14px 13px;
  margin: 0rem 0rem 0rem auto;
  border-radius: 50%;
  overflow: hidden;
  width: 32px;
  height: 32px;
  border: 2px solid #1f1f1f;
}

.box-grid .modal-header .print {
  text-transform: capitalize;
  position: absolute;
  right: 0rem;
  bottom: 1rem;
  padding: 2px 0.75rem 4px;
  text-align: center;
  transition: 0.3s all;
  background-color: #eee;
}

@media (max-width: 575px) {
  .box-grid .modal-header .print {
    right: unset;
    left: 0rem;
  }
}

.box-grid .modal-header .print svg {
  transition: 0.3s all;
  width: 20px;
  stroke: #1f1f1f;
}

.box-grid .modal-header .print:hover {
  background-color: #ed1c24;
  color: #fff;
}

.box-grid .modal-header .print:hover svg {
  stroke: #fff;
}

.box-grid .modal-body {
  padding: 0.5rem 0rem 0rem;
}

.box-grid .modal-body h4 {
  font-size: 1.25rem;
  font-weight: 500;
}

.box-grid .modal-body .modal-description {
  margin-bottom: 1rem;
}

.box-grid .modal-body .image-desc {
  font-size: 14px;
  margin: 1rem 0rem 0rem;
}

.box-links {
  text-align: center;
}

.box-links .row {
  margin-left: -0.25rem;
  margin-right: -0.25rem;
}

.box-links .row > * {
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}

/* ----------------------------- Vehicle Listing Page CSS Start --------------------------*/
.vehicleListingSection .theme-select2-design {
  position: relative;
  z-index: 1;
}

.vehicleListingSection .theme-select2-design .select2.select2-container.select2-container--default {
  width: 100% !important;
}

.vehicleListingSection .theme-select2-design .select2-container .select2-selection--single {
  height: 45px;
  border: 1px solid #ccc;
  outline: none;
  border-radius: .14286rem;
}

.vehicleListingSection .theme-select2-design .select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 43px;
  outline: none;
  padding-left: 8px;
  padding-right: 22px;
  color: #666;
  border: 0px;
  border-radius: 0px;
  text-transform: capitalize;
}

.vehicleListingSection .theme-select2-design .select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 42px;
  right: 5px;
}

.vehicleListingSection .select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: #ed1c24;
}

.vehicleListingSection .select2-dropdown {
  border: 0px solid #aaa;
  border-radius: 0;
  box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.1);
  z-index: 8;
}

.vehicleListingSection .select2-search--dropdown {
  padding: 0;
}

.vehicleListingSection .select2-results__options {
  list-style: none;
  margin: 0;
  padding: 0 10px 10px;
}

.vehicleListingSection .select2-container--default .select2-search--dropdown .select2-search__field {
  border: 1px solid #aaa;
  margin: 0 10px;
  margin-top: 10px;
  width: 92%;
  margin-bottom: 10px;
}

.vehicleListing-banner {
  position: relative;
  background-color: #fff;
  padding: 30px 0;
  box-shadow: 0 3px 10px 0 #f1f1f1;
}

.vehicleListing-banner .listings-breadcrumbs ul {
  list-style: none;
  padding: 0;
}

.vehicleListing-banner .listings-breadcrumbs ul li {
  display: inline-block;
}

.vehicleListing-banner .listings-breadcrumbs ul li a {
  position: relative;
  color: #1f1f1f;
}

.vehicleListing-banner .listings-breadcrumbs ul li a:hover {
  color: #ed1c24;
}

.vehicleListing-banner .listings-breadcrumbs ul li:not(:last-child)::after {
  content: '/';
  padding: 0 8px;
}

.vehicleListing-banner .vehicleListing-pageTitle {
  width: 100%;
  display: flex;
  align-items: flex-end;
  padding-top: 10px;
}

@media (max-width: 991px) {
  .vehicleListing-banner .vehicleListing-pageTitle {
    flex-direction: column;
    align-items: flex-start;
    position: relative;
  }
}

.vehicleListing-banner .vehicleListing-pageTitle h1 {
  flex-grow: 1;
  color: #1f1f1f;
  font-size: 30px;
  text-transform: capitalize;
}

@media (max-width: 991px) {
  .vehicleListing-banner .vehicleListing-pageTitle h1 {
    font-size: 20px;
    line-height: 1.15;
    padding-bottom: 20px;
  }
}

.vehicleListing-banner .vehicleListing-pageTitle .vehicleListing-options {
  margin-bottom: 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  grid-template-columns: 1fr 1fr;
  grid-gap: 20px;
}

@media (max-width: 991px) {
  .vehicleListing-banner .vehicleListing-pageTitle .vehicleListing-options {
    width: 100%;
    grid-gap: 0;
  }
}

.vehicleListing-banner .vehicleListing-pageTitle .vehicleListing-options .vehicleListing-mobileFilter {
  position: relative;
  display: block;
  width: 100%;
}

.vehicleListing-banner .vehicleListing-pageTitle .vehicleListing-options .vehicleListing-mobileFilter .vehicleListing-mobileFilterOpen {
  font-size: 15px;
  line-height: 18px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  background-color: #f4f4f4;
  color: #ed1c24;
  padding: 13px 20px;
  width: 100%;
  border-radius: 20px;
  border: 1px solid transparent;
  cursor: pointer;
  outline: none;
  transition: border 0.25s cubic-bezier(0.5, 0.25, 0.25, 0.75);
  appearance: none;
}

.vehicleListings {
  background: #f4f4f4;
}

.vehicleListings .vehicleListings-sidebar {
  padding: 20px 0 10px;
  background-color: #fff;
  border: 1px solid #eee;
  border-radius: 5px;
}

@media (max-width: 991px) {
  .vehicleListings .vehicleListings-sidebar {
    padding-top: 0px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 111;
    width: 100%;
    height: 100vh;
    overflow-y: scroll;
    display: none;
    border-radius: 0px;
  }
}

.vehicleListings .vehicleListings-sidebar label {
  font-weight: bold;
}

.vehicleFilter-mobileBtns {
  background-color: #f4f4f4;
}

.vehicleFilter-mobileBtns .filter-mobileBtns {
  flex-grow: 1;
  padding: 0 5px;
}

.vehicleFilter-mobileBtns .filterResult {
  display: block;
  width: 100%;
  padding: 3px 8px 5px;
  border: 2px solid #ed1c24;
  background-color: #ed1c24;
  color: #fff;
  border-radius: 30px;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
}

.vehicleFilter-mobileBtns .filterResult.clearResult {
  background-color: #fff;
  border: 2px solid #888;
  color: #888;
}

.vehicleFilter-mobileBtns .filterResult.clearResult:hover, .vehicleFilter-mobileBtns .filterResult.clearResult:active, .vehicleFilter-mobileBtns .filterResult.clearResult:focus {
  background-color: #fff;
  border: 2px solid #888;
  color: #888;
}

.vehicleListings-condition {
  padding: 0 20px;
}

.vehicleListings-condition .nav-pills {
  padding: 5px 5px;
  background-color: #f1f1f1;
  border-radius: 5px;
}

.vehicleListings-condition .nav-pills li {
  flex: 1;
  padding: 0;
  text-align: center;
}

.vehicleListings-condition .nav-pills li a {
  color: #1f1f1f;
  background-color: #fff;
  line-height: 1.5;
  border-radius: 0;
  font-family: "MMC-Headline,sans-serif";
}

.vehicleListings-condition .nav-pills li a.active {
  background-color: #ed1c24;
  color: #fff;
}

.vehicleListings-condition .nav-pills li a.active:hover, .vehicleListings-condition .nav-pills li a.active:focus {
  background-color: #ed1c24;
  color: #fff;
}

.vehicleListings-location {
  padding: 20px 20px 0;
}

.vehicleListings-location .form-group {
  margin-bottom: 25px;
}

.vehicleListings-location button {
  font-family: "MMC-Headline,sans-serif";
  background-color: #ed1c24;
  color: #fff;
  border: 0;
  border-radius: 3px;
  text-transform: capitalize;
  font-size: 15px;
  width: 100%;
  padding: 8px;
  letter-spacing: 1px;
  line-height: 1.5;
  text-align: center;
}

.vehicleListings-locationRadius {
  padding: 15px 20px 30px;
  border-top: 1px solid #dee2e6;
  border-bottom: 1px solid #dee2e6;
}

.vehicleListings-locationRadius .form-group {
  margin-bottom: 0px;
}

.vehicleFilters-wrap {
  padding: 20px 20px 12px;
}

.vehicleFilters-wrap .vehicleFilters {
  margin-bottom: 15px;
}

.vehicleFilters-wrap .vehicleFilters label {
  margin-bottom: 2px;
}

.vehicleFilters-wrap .vehicleFilters .form-group {
  margin-bottom: 0px;
}

.sliderFilterRange {
  padding: 15px 20px 35px;
  border-top: 1px solid #dee2e6;
}

.sliderFilterRange input {
  width: 50%;
  border: 0;
  font-size: 16px;
  font-weight: 300;
  color: #000000;
  margin-bottom: 15px;
  outline: none;
}

.sliderFilterRange input:focus {
  width: 50%;
  border: 0;
  font-size: 16px;
  font-weight: 300;
  color: #000000;
  margin-bottom: 15px;
  outline: none;
}

.sliderFilterRange input#maxPrice,
.sliderFilterRange input#maxMiles {
  text-align: right;
}

.sliderFilterRange .ui-widget.ui-widget-content {
  height: 3px;
  border: 0;
  background-color: #C2C4C8;
}

.sliderFilterRange .ui-slider-horizontal .ui-slider-range {
  background-color: #000000;
  border-color: #000000;
}

.sliderFilterRange .ui-slider .ui-slider-handle {
  top: -11px;
  height: 25px;
  width: 25px;
  border-radius: 50%;
  border: 2px solid #fff;
  background-color: #ed1c24;
  background-image: none;
  cursor: pointer;
  outline: none;
}

.sliderFilterRange .ui-slider .ui-slider-handle:last-child {
  margin-left: -15px;
}

.vehicleFeatures-filter .card {
  border: none;
  border-radius: 0;
  border-top: 1px solid #e0e0e0;
}

.vehicleFeatures-filter .card:first-child {
  border-top: 1px solid #e0e0e0;
}

.vehicleFeatures-filter .card .card-header {
  padding: 0;
  border: none;
  border-radius: 0;
  background-color: #fff;
}

.vehicleFeatures-filter .card .card-header a {
  position: relative;
  display: block;
  font-weight: 700;
  font-size: 16px;
  color: #1f1f1f;
  letter-spacing: 0;
  padding: 14px 0;
  background-color: rgba(0, 0, 0, 0.005);
}

.vehicleFeatures-filter .card .card-header a::after {
  position: absolute;
  content: '';
  top: 48%;
  right: 20px;
  height: 8px;
  width: 8px;
  border-top: 1px solid #000000;
  border-right: 1px solid #000000;
  transform: rotate(-45deg);
}

.vehicleFeatures-filter .card .card-header a.collapsed::after {
  transform: rotate(135deg);
  top: 40%;
}

.vehicleFeatures-filter .card .card-body {
  box-shadow: inset 0 6px 6px -4px rgba(204, 204, 204, 0.5);
}

.vehicleFeatures-filter .check-filter .control-label {
  display: block;
  font-size: 16px;
  letter-spacing: .5px;
  color: #000000;
  margin: 0;
  text-transform: capitalize;
  cursor: pointer;
}

.vehicleFeatures-filter .check-filter .filter-color {
  position: relative;
  top: 2px;
  display: inline-block;
  height: 15px;
  width: 15px;
  margin: 0 5px;
  border-radius: 50%;
}

.vehicleFeatures-filter .check-filter:not(:last-child) {
  margin-bottom: 10px;
}

.vehicleFeatures-filter .check-filter input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  z-index: -3;
}

.vehicleFeatures-filter .check-filter input[type="checkbox"] + label {
  padding-left: 25px;
  cursor: pointer;
  position: relative;
  -webkit-touch-callout: none;
  user-select: none;
}

.vehicleFeatures-filter .check-filter input[type="checkbox"] + label:before {
  content: "";
  position: absolute;
  left: 0;
  top: -7px;
  width: 18px;
  height: 18px;
  border: 1px solid #000000;
  border-radius: 2px;
  background: #fff;
}

.vehicleFeatures-filter .check-filter input[type="checkbox"]:not(:checked) + label:after,
.vehicleFeatures-filter .check-filter input[type="checkbox"]:checked + label:after {
  position: absolute;
  top: -4px;
  left: 3px;
  font-size: 12px;
  transition: all .2s;
  color: #fff;
  font-family: 'FontAwesome';
  -webkit-font-smoothing: antialiased;
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  -moz-osx-font-smoothing: grayscale;
  content: "\f00c";
}

.vehicleFeatures-filter .check-filter input[type="checkbox"]:not(:checked) + label:after {
  opacity: 0;
  transform: scale(0);
}

.vehicleFeatures-filter .check-filter input[type="checkbox"]:checked + label:after {
  opacity: 1;
  transform: scale(1);
}

.vehicleFeatures-filter .check-filter input[type="checkbox"]:checked + label:before {
  background-color: #ed1c24;
  border: 1px solid #ed1c24;
}

@media (max-width: 991px) {
  .vehicleListings-result {
    padding-top: 30px;
  }
}

/* ----------------------------- Vehicle Listing Page CSS End --------------------------*/
/* ----------------------------- Vehicle Grid CSS Start --------------------------*/
.vehicleListings-wrapper {
  border-radius: 6px;
  background-color: #fff;
  border: 1px solid #eee;
  margin-bottom: 30px;
  box-shadow: 0 2px 10px -4px #999;
  transition: .3s ease-in-out;
  overflow: hidden;
  position: relative;
}

.vehicleListings-wrapper .vehicleListings-img {
  position: relative;
  overflow: hidden;
  height: 250px;
  object-fit: cover;
}

.vehicleListings-wrapper .vehicleListings-img a {
  display: block;
}

.vehicleListings-wrapper .vehicleListings-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: .5s ease-in-out;
}

.vehicleListings-wrapper img.vehicleListings-frame {
  position: absolute;
  left: 0;
  bottom: 0;
  height: unset;
  width: 100%;
  display: block;
  object-fit: unset;
}

.vehicleListings-wrapper .vehicleListings-offer {
  position: relative;
  z-index: 1;
}

.vehicleListings-wrapper .vehicleListings-offer span {
  position: absolute;
  top: 35px;
  left: -65px;
  display: inline-block;
  padding: 3px 55px;
  text-transform: uppercase;
  font-size: 16px;
  border-radius: 0px;
  background-color: #ed1c24;
  border: 2px solid #ed1c24;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  color: #f1f1f1;
  transform: rotate(-45deg);
  text-align: center;
  z-index: -1;
  transition: .3s ease-in-out;
  font-weight: 900;
}

.vehicleListings-wrapper .vehicleListings-name {
  padding: 15px 20px 20px;
  position: relative;
}

.vehicleListings-wrapper .vehicleListings-name .vehicleListings-title {
  padding-bottom: 10px;
}

.vehicleListings-wrapper .vehicleListings-name .vehicleListings-title a {
  display: block;
}

.vehicleListings-wrapper .vehicleListings-name .vehicleListings-title .vehicleListings-model {
  font-size: 20px;
  color: #1f1f1f;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  text-transform: capitalize;
}

.vehicleListings-wrapper .vehicleListings-name .vehicleListings-title .vehicleListings-model span {
  background-color: #f9f9f9;
  padding: 2px 5px;
  font-size: 16px;
  margin-right: 3px;
  font-family: "MMC-Subline,sans-serif";
}

.vehicleListings-wrapper .vehicleListings-name .vehicleListings-title .vehicleListings-trim {
  font-size: 13px;
  line-height: 20px;
  color: #1f1f1f;
  margin-bottom: 0px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  text-transform: uppercase;
}

.vehicleListings-wrapper .vehicleListings-name .vehicleListings-wishlist {
  display: inline-block;
  position: absolute;
  top: -15px;
  right: 10px;
  text-align: center;
  height: 40px;
  width: 40px;
  padding: 1px 0 0 1px;
  line-height: 38px;
  border-radius: 50%;
  background-color: #fff;
  box-shadow: 0 4px 10px -5px #999;
  transition: none;
}

.vehicleListings-wrapper .vehicleListings-name .vehicleListings-wishlist svg {
  width: 21px;
  fill: #fff;
  stroke: #000000;
  stroke-width: 2px;
}

.vehicleListings-wrapper .vehicleListings-name .vehicleListings-wishlist:hover svg {
  stroke: #ed1c24;
}

.vehicleListings-wrapper .vehicleListings-name .vehicleListings-price h5 {
  color: #ed1c24;
  font-size: 20px;
  line-height: 1;
}

.vehicleListings-wrapper .vehicleListings-name .vehicleListings-price .vehicleListings-loanPayment {
  color: #1f1f1f;
  line-height: 1.5;
}

.vehicleListings-wrapper .vehicleListings-name .vehicleListings-price .vehicleListings-loanPayment span {
  font-size: 13px;
  color: #777;
  font-weight: 400;
  margin-right: 5px;
}

.vehicleListings-wrapper .vehicleListings-name .vehicleListings-price .vehicleListings-loanPayment .emi-tooltip-icon {
  position: relative;
  top: 3px;
  display: inline-block;
  width: 16px;
  height: 16px;
  border-radius: 8px;
  margin-left: 2px;
  box-shadow: none;
  background-position: 50%;
  background-repeat: no-repeat;
  background-image: url("../images/list-emi-icon.svg");
  cursor: pointer;
}

.vehicleListings-wrapper .vehicleListings-name .vehicleListings-price .vehicleListings-loanPayment .ui-tooltip {
  background-color: #f1f1f1;
  padding: 10px 15px;
  color: #000000;
  border-radius: 6px;
  font-size: 13px;
  line-height: 1.25;
  border-bottom: 2px solid #ed1c24;
  box-shadow: 0 0 10px #eee;
  cursor: pointer;
}

.vehicleListings-wrapper .vehicleListings-features {
  text-align: center;
  border-top: 1px solid #dee2e6;
  padding: 12px 20px 50px;
}

.vehicleListings-wrapper .vehicleListings-features ul {
  padding-left: 0px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  list-style: none;
}

.vehicleListings-wrapper .vehicleListings-features ul li {
  color: #1f1f1f;
  flex: 1;
  line-height: 33px;
}

.vehicleListings-wrapper .vehicleListings-features ul li i {
  font-size: 24px;
  position: relative;
  top: 5px;
}

.vehicleListings-wrapper .vehicleListings-features ul li .specTitle {
  text-transform: uppercase;
  color: #000000;
  font-size: 10px;
  line-height: 1;
  padding: 0 6px;
}

.vehicleListings-wrapper .vehicleListings-features ul li .specText {
  text-transform: capitalize;
  font-size: 12px;
  font-weight: bold;
}

.vehicleListings-wrapper .vehicleListings-btn {
  padding: 0 15px 20px;
}

.vehicleListings-wrapper .vehicleListings-btn a {
  text-transform: uppercase;
  color: #fff;
  border-radius: 0px;
  font-size: 14px;
  padding: 10px 5px;
  text-decoration: none;
  cursor: pointer;
  text-align: center;
  position: relative;
  width: 100%;
  display: block;
  margin-top: 10px;
  font-family: "MMC-Headline,sans-serif";
  transition: all 0.5s;
}

.vehicleListings-wrapper .vehicleListings-btn a i {
  font-size: 16px;
  padding-left: 5px;
  position: relative;
  top: 2px;
  font-weight: bold;
}

.vehicleListings-wrapper .vehicleListings-btn a.btn-getQuote {
  background: #ed1c24;
  transition: all 0.5s;
}

.vehicleListings-wrapper .vehicleListings-btn a.btn-getQuote:hover {
  background: #000000;
  transition: all 0.5s;
}

.vehicleListings-wrapper .vehicleListings-btn a.btn-viewMore {
  background: #000000;
  transition: all 0.5s;
}

.vehicleListings-wrapper .vehicleListings-btn a.btn-viewMore:hover {
  background: #ed1c24;
  transition: all 0.5s;
}

.vehicleListings-wrapper:hover .vehicleListings-img img {
  transform: scale(1.1);
}

.vehicleListings-wrapper:hover .vehicleListings-title .vehicleListings-model {
  color: #ed1c24;
  transition: all 0.5s;
}

.vehicleListings-wrapper:hover .vehicleListings-title .vehicleListings-model span {
  color: #1f1f1f;
  transition: all 0.5s;
}

.vehicleListings-wrapper:hover .vehicleListings-offer span {
  background-color: #000000;
  border-color: #000000;
}

/* ----------------------------- Vehicle Grid CSS End --------------------------*/
.piForm {
  background: #f1f1f1;
  padding: 30px 25px;
}

.rpForm {
  background: #f1f1f1;
  padding: 30px 25px;
}

.installation-confirm .installation-confirm-inner {
  background: #f1f1f1;
  padding: 30px 25px;
}

.value-your-trade-section {
  padding: 50px 0;
}

.vytForm {
  background: #f1f1f1;
  padding: 30px 25px;
}

.piForm {
  background: #f1f1f1;
  padding: 30px 25px;
}

/*******************************************************
  siteBreadcrumbs section starts
*******************************************************/
.siteBreadcrumbs {
  background-color: #f9f9f9;
  font-weight: 700;
  text-transform: uppercase;
  color: #000000;
}

.siteBreadcrumbs .siteBreadcrumbs-inner {
  padding: 15px 0;
}

.siteBreadcrumbs .siteBreadcrumbs-inner a {
  color: #ed1c24;
  font-weight: 700;
}

/*******************************************************
siteBreadcrumbs section ends
*******************************************************/
/*******************************************************
vehicleDetail section starts
*******************************************************/
.vehicleDetail {
  position: relative;
}

.vehicleDetail .vdp-slider-container .slick-prev, .vehicleDetail .vdp-slider-container .slick-next {
  transform: rotate(0);
  border: 0;
}

.vehicleDetail-heading {
  padding: 20px;
}

@media (max-width: 767px) {
  .vehicleDetail-heading .carDetailTop {
    text-align: conter;
  }
}

.vehicleDetail-heading .carDetailTop .carDetailTop-inner {
  padding: 10px 0;
}

@media (max-width: 767px) {
  .vehicleDetail-heading .carDetailTop .carDetailTop-inner {
    text-align: center;
    display: block;
  }
}

.vehicleDetail-heading .carDetailTop .carDetailTop-inner h1 {
  font-size: 25px;
  margin-bottom: 0;
  color: #000000;
  text-transform: capitalize;
}

.vehicleDetail-heading .carDetailTop .carDetailTop-inner a {
  color: #ed1c24;
  margin-top: 10px;
  display: block;
}

.vehicleDetail-heading .carPrice {
  font-size: 20px;
  font-weight: 500;
  text-align: right;
  padding: 10px;
  margin-top: 10px;
}

@media (max-width: 767px) {
  .vehicleDetail-heading .carPrice {
    text-align: center;
  }
}

.vehicleDetail-heading .carPrice .price-heading {
  color: #000000;
}

.vehicleDetail-heading .carPrice .new-price {
  color: #ed1c24;
}

.vdpLeft-block h3 {
  border-bottom: 1px solid #e5e5e5;
  font-size: 20px;
  margin-bottom: 0;
  text-transform: uppercase;
  padding: 13px 22px;
  color: #000000;
}

@media (max-width: 767px) {
  .vdpLeft-block h3 {
    font-size: 18px;
  }
}

.vdp-slider-container .slider-images img {
  width: 100%;
}

.vdp-slider-container .slick-prev {
  left: 20px;
  z-index: 2;
}

.vdp-slider-container .slick-prev::before, .vdp-slider-container .slick-prev.cta-section::after {
  font-family: "fontawesome";
  font-weight: 900;
  content: "\f137";
  font-size: 25px;
  opacity: 1;
}

.vdp-slider-container .slick-prev, .vdp-slider-container .slick-next {
  width: 32px;
  height: 32px;
  background: rgba(0, 0, 0, 0.8);
  border-radius: 50%;
  padding: 1px;
  line-height: 0;
  text-align: center;
}

.vdp-slider-container .slick-next {
  right: 20px;
  z-index: 2;
}

.vdp-slider-container .slick-next::before, .vdp-slider-container .slick-next.cta-section::after {
  font-family: "fontawesome";
  font-weight: 900;
  content: "\f138";
  font-size: 25px;
  opacity: 1;
}

.vdp-slider-container .slider-for .slider-images {
  position: relative;
  cursor: pointer;
  height: 400px;
  background: #000000;
  scroll-snap-align: center;
  vertical-align: top;
}

.vdp-slider-container .slider-for .slider-images img {
  position: absolute;
  max-height: 100%;
  z-index: 4;
  width: auto !important;
  margin: auto;
  max-width: 100% !important;
  display: block;
  left: 0;
  height: auto;
  top: 0;
  bottom: 0;
  right: 0;
}

.vdp-slider-container #slider-nav .slick-prev, .vdp-slider-container #slider-nav .slick-next {
  top: 33%;
}

.singleDetailGrid {
  margin-top: 30px;
}

.singleDetailGrid .car-attributes {
  padding: 20px;
  column-gap: 15px;
  flex-wrap: wrap;
}

.singleDetailGrid .car-attributes .car-attributesInner {
  padding: 15px 12px;
  margin: 10px 0;
  width: 100%;
  border-radius: 4px;
  box-shadow: 0 0 10px #eee;
  display: flex;
}

.singleDetailGrid .car-attributes .car-attributesInner .car-attributesimg {
  height: 32px;
  width: 32px;
  margin-right: 12px;
}

.singleDetailGrid .car-attributes .car-attributesInner .car-attributesContent {
  width: 70%;
}

.singleDetailGrid .car-attributes .car-attributesInner .car-attributesContent span {
  display: block;
}

.singleDetailGrid .car-attributes .car-attributesInner .car-attributesContent .car-attributes-head {
  text-transform: capitalize;
  color: #1f1f1f;
  font-size: 13px;
  line-height: 1;
}

.singleDetailGrid .car-attributes .car-attributesInner .car-attributesContent .car-attributes_value {
  text-transform: capitalize;
  line-height: 1;
  font-size: 13px;
  color: #636363;
  margin: 10px 0 0;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.veicleTabDetail .nav {
  border-bottom: 1px solid #e5e5e5;
}

.veicleTabDetail .nav .nav-item {
  position: relative;
}

.veicleTabDetail .nav .nav-item .nav-link {
  background-color: transparent;
  color: #000000;
  text-transform: uppercase;
  font-size: 20px;
  letter-spacing: 1px;
  line-height: 1.5;
  display: inline-block;
  font-family: "MMC-Headline,sans-serif";
  position: relative;
  transition: .3s ease-in-out;
  padding: 13px 20px;
}

@media (max-width: 767px) {
  .veicleTabDetail .nav .nav-item .nav-link {
    font-size: 12px;
    padding: 5px 10px;
  }
}

.veicleTabDetail .nav .nav-item .nav-link::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 2px;
  background-color: #ed1c24;
  display: block !important;
  bottom: -2px;
  left: 0;
  transition: .3s ease-in-out;
}

.veicleTabDetail .nav .nav-item .nav-link.active {
  position: relative;
  transition: .3s ease-in-out;
}

.veicleTabDetail .nav .nav-item .nav-link.active::after {
  width: 100%;
  height: 2px;
  transition: .3s ease-in;
}

.veicleTabDetail .tab-content .specsBlock {
  padding-left: 22px;
}

.veicleTabDetail .tab-content .specsBlock .specsBlock-list {
  padding-left: 0;
  column-count: 2;
  margin-top: 20px;
}

@media (max-width: 767px) {
  .veicleTabDetail .tab-content .specsBlock .specsBlock-list {
    column-count: 1;
  }
}

.veicleTabDetail .tab-content .specsBlock .specsBlock-list li {
  list-style: disc;
  font-size: 12px;
  border-bottom: 1px solid #eee;
  margin-bottom: 10px;
}

.veicleTabDetail .tab-content .specsBlock .loadMoreBtn {
  font-size: 14px;
  letter-spacing: 1px;
  padding: 8px 30px;
  display: block;
  border-radius: 30px;
  background-color: #000000;
  color: #fff;
  text-transform: capitalize;
  transition: 0.3s ease-in-out;
}

.vdpCalc .vdpCalc-inner {
  background-color: #fcfcfc;
  width: 100%;
  overflow: hidden;
  margin: 0 auto;
}

.vdpCalc .financeCalc-main {
  padding: 10px 5px 10px;
}

@media (max-width: 767px) {
  .vdpCalc .financeCalc-main {
    padding: 20px;
  }
}

.vdpCalc .financeCalc-main .totalPayment {
  position: unset;
  width: 100%;
  margin-top: 20px;
  box-shadow: none;
  border: 1px solid #ccc;
}

.vdpCalc .rangeSlide {
  width: 100%;
  appearance: none;
  width: 100%;
  margin: 20px 0 0;
  height: 2px;
  background: #ed1c24;
  outline: none;
  opacity: 0.7;
  transition: opacity .2s;
}

.vdpCalc .rangeSlide::-webkit-slider-thumb {
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #000000;
  cursor: pointer;
}

.vdpCalc .rangeSlide::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #000000;
  cursor: pointer;
}

.vdpCalc .sliderRange {
  font-size: 10px;
}

.vdpCalc .loanPeriod ul {
  margin-top: 10px;
  border: 1px solid rgba(0, 0, 0, 0.4);
}

.vdpCalc .loanPeriod ul li {
  display: inline-block;
  width: 16.66%;
  text-align: center;
}

.vdpCalc .loanPeriod ul li .loanPeriodLabel {
  display: block;
  position: relative;
  cursor: pointer;
  font-size: 14px;
  color: #24272c;
  margin: 0;
}

.vdpCalc .loanPeriod ul li .loanPeriodLabel input {
  position: absolute;
  z-index: 1;
  opacity: 0;
}

.vdpCalc .loanPeriod ul li .loanPeriodLabel .loanPeriodValue {
  display: inline-block;
  width: 100%;
  height: 37px;
  line-height: 38px;
  text-align: center;
  padding-left: 0;
  border: 0;
  border-radius: 0;
  top: 0;
  font-size: 14px;
  border-right: 1px solid rgba(0, 0, 0, 0.4);
}

.vdpCalc .loanPeriod ul li .loanPeriodLabel input[type="radio"]:checked ~ .loanPeriodValue {
  background: #000000;
  color: #fff;
}

.vdpCalc .loanPeriod ul li:last-child .loanPeriodValue {
  border-right: none;
}

.vdpCalc .paymentDetail {
  font-size: 13px;
  line-height: 38px;
  color: #333;
}

.vdpCalc .paymentDetail .d-flex {
  border-bottom: 1px solid #ccc;
}

.vdpCalc .paymentDetail .d-flex:last-child {
  border: none;
}

.vdpCalc .totalPayment {
  padding: 15px 30px;
  border-top: 1px solid #ccc;
  box-shadow: -1px 0 8px -5px #ed1c24;
  position: fixed;
  width: 100%;
  bottom: 0;
  right: 0;
  z-index: 9999;
  background: #fff;
  width: 500px;
}

.vdpCalc .totalEmi {
  font-size: 17px;
}

.vdpCalc .totalEmi span {
  text-align: left;
  display: block;
  font-size: 12px;
  color: #666;
  line-height: 14px;
}

.vdpCalc .applyLoan a {
  display: block;
  padding: 3px 20px;
  background-color: #ecf5ff;
  color: #ed1c24;
  border: 1px solid;
  border-radius: 5px;
}

.similarVehicles-grid {
  position: relative;
  margin-top: 20px;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  transition: .3s ease-in-out;
}

.similarVehicles-grid::before, .similarVehicles-grid.cta-section::after {
  position: absolute;
  content: '';
  bottom: 0;
  display: block !important;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: linear-gradient(0deg, rgba(199, 199, 199, 0.19) 0, rgba(255, 255, 255, 0));
  transition: all 0.4s ease-in-out;
}

.similarVehicles-grid .similarVehicles-img {
  position: relative;
  overflow: hidden;
  height: 130px;
  min-width: 220px;
  object-fit: cover;
  padding: 0px 10px;
  transition: .3s ease-in-out;
}

@media (max-width: 991px) {
  .similarVehicles-grid .similarVehicles-img {
    height: 180px;
  }
}

.similarVehicles-grid .similarVehicles-img img {
  height: 100%;
  width: 90%;
  object-fit: cover;
  transition: .5s ease-in-out;
}

.similarVehicles-grid .similarVehicles-content {
  padding: 20px 20px;
}

.similarVehicles-grid .similarVehicles-content p {
  margin-bottom: 0;
}

.similarVehicles-grid .similarVehicles-content p a {
  color: #1f1f1f;
  display: block;
  text-transform: uppercase;
  transition: .3s ease-in-out;
}

.similarVehicles-grid .similarVehicles-content h5 span {
  color: #ed1c24;
}

.similarVehicles-grid:hover .similarVehicles-content p a {
  color: #ed1c24;
}

.similarVehicles-grid:hover .similarVehicles-img img {
  transform: scale(1.1);
}

.vdp-sidebar {
  position: sticky;
  top: 95px;
}

@media (max-width: 991px) {
  .vdp-sidebar {
    position: relative;
    top: unset;
  }
}

.sidebar-col {
  border: 1px solid #EBEBEB;
}

.sidebar-col h4 {
  margin: 0;
  font-size: 18px;
  margin-bottom: 0;
  background-color: #fcfcfc;
  border-bottom: 1px solid #e5e5e5;
  padding: 8px 15px;
  text-align: center;
  color: #1f1f1f;
  text-transform: uppercase;
}

.sidebar-col h4 .wishlistBtn {
  color: #000000;
}

.sidebar-col h4 .wishlistBtn i {
  color: #ed1c24;
}

.sidebar-col .sidebarActionBtn {
  font-family: "MMC-Medium,sans-serif";
  background: #ed1c24;
  display: inline-block;
  width: 100%;
  color: #fff !important;
  text-align: center;
  padding: 15px 0;
  cursor: pointer;
  border: 2px solid #ed1c24;
  text-transform: uppercase;
}

.sidebar-col .sidebarActionBtn img {
  width: 25px;
  margin-top: -5px;
  margin-right: 1px;
}

.sidebar-col .sidebarActionBtn.sidebarActionBtn2 {
  background: #000000;
  border: 2px solid #000000;
}

.sidebar-col .sidebarActionBtn:hover {
  opacity: .8;
}

.sidebar-col .Contact-Seller {
  padding: 20px 20px 0;
}

.sidebar-col .Contact-Seller .Contact-SellerImg, .sidebar-col .Contact-Seller .Contact-SellerContent {
  display: inline-block;
}

.sidebar-col .Contact-Seller .Contact-SellerImg {
  height: 50px;
  width: 50px;
  margin-right: 15px;
}

.sidebar-col .Contact-Seller .Contact-SellerContent a {
  color: #ed1c24;
  text-transform: uppercase;
  font-size: 16px;
}

.sidebar-col .dealer-vdp-social {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 20px 10px;
}

@media (max-width: 991px) {
  .sidebar-col .dealer-vdp-social {
    padding-top: 10px;
  }
}

.sidebar-col .dealer-vdp-social ul {
  padding-left: 0;
  margin-bottom: 0;
}

.sidebar-col .dealer-vdp-social ul li {
  display: inline-block;
}

.sidebar-col .dealer-vdp-social ul li a {
  display: inline-block;
  color: #fff;
  font-size: 16px;
  height: 40px;
  width: 40px;
  text-align: center;
  line-height: 37px;
  border-radius: 5px;
  margin-right: 10px;
  padding-left: 1px;
}

.sidebar-col .dealer-vdp-social ul li a.twitter {
  background-color: #00ACEE;
}

.sidebar-col .dealer-vdp-social ul li a.facebook {
  background-color: #3B5998;
}

.sidebar-col .dealer-vdp-social ul li a.instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.sidebar-col .dealer-vdp-social ul li a.linked-in {
  background-color: #0e76a8;
}

.sidebar-col .dealer-vdp-social ul li a.file-copy {
  background-color: #000000;
}

.sidebar-col .dealer-vdp-social ul li a:hover {
  opacity: .8;
}

.vdpCarfax {
  display: block;
  padding: 10px;
  text-align: center;
  border-radius: 0;
  border: 1px solid #ccc;
}

.vdpCarfax a {
  color: #ed1c24;
}

.offer-popup .modal-dialog {
  top: 20%;
  margin: 0 auto !important;
  max-width: 650px;
  border: 0;
}

.offer-popup .modal-dialog .modal-content .close {
  position: absolute;
  right: 2px;
  color: #fff;
  z-index: 1;
  opacity: 1;
  top: 0;
  font-size: 30px;
}

.offer-popup .modal-dialog .modal-content .close img {
  width: 28px;
}

.offer-popup .modal-dialog .modal-content .close:hover {
  opacity: .8;
}

.offer-popup .modal-dialog .modal-content .offerPopupContent {
  margin-top: 20px;
}

.offer-popup .modal-dialog .modal-content .offerPopupContent h2 {
  text-align: center;
  font-size: 24px;
  line-height: 32px;
  text-transform: uppercase;
}

.offer-popup .modal-dialog .modal-content .offerPopupContent p {
  text-align: center;
  margin-bottom: 20px;
}

.offer-popup .modal-dialog .modal-content .offerPopupForm {
  margin-bottom: 20px;
  padding: 20px;
}

.offer-popup .modal-dialog .modal-content .offerPopupForm form {
  margin-top: 20px;
}

.offer-popup .modal-dialog .modal-content .offerPopupForm form input {
  border-radius: 2px;
}

.offer-popup .modal-dialog .modal-content .offerPopupForm form textarea {
  border-radius: 2px;
}

.offer-popup .modal-dialog .modal-content .offerPopupForm form button {
  width: 100%;
  background: #ed1c24;
  color: #fff;
  border-radius: 2px;
}

.offer-popup .modal-dialog .modal-content .offerPopupForm form button:hover {
  background: #000000;
}

/*******************************************************
vehicleDetail section ends
*******************************************************/
.payment-calc-section {
  padding: 70px 0;
  position: relative;
}

.payment-calcInner {
  position: relative;
  max-width: 800px;
  padding: 20px;
  margin: 0 auto;
  border-radius: 10px;
  background: #f1f1f1;
}

.payment-calcInner input[type=text] {
  height: 45px;
}

/* ----------------------------- Vehicle Current Offers Start --------------------------*/
.vehicleCurrentOffers {
  background-color: #f1f1f1;
}

.vehicleCurrentOffers-wrapper {
  text-align: center;
  border-radius: 6px;
  background-color: #fff;
  border: 1px solid #eee;
  margin: 15px 0;
  box-shadow: 0 2px 10px -4px #999;
  transition: .3s ease-in-out;
  overflow: hidden;
  position: relative;
}

.vehicleCurrentOffers-wrapper .vehicleCurrentOffers-img {
  position: relative;
  overflow: hidden;
  height: 210px;
  min-width: 220px;
  object-fit: cover;
}

.vehicleCurrentOffers-wrapper .vehicleCurrentOffers-img a {
  display: block;
}

.vehicleCurrentOffers-wrapper .vehicleCurrentOffers-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: .5s ease-in-out;
}

.vehicleCurrentOffers-wrapper .vehicleCurrentOffers-name {
  padding: 15px 20px 20px;
  position: relative;
}

.vehicleCurrentOffers-wrapper .vehicleCurrentOffers-name .vehicleCurrentOffers-title {
  padding-bottom: 15px;
}

.vehicleCurrentOffers-wrapper .vehicleCurrentOffers-name .vehicleCurrentOffers-title a {
  display: block;
}

.vehicleCurrentOffers-wrapper .vehicleCurrentOffers-name .vehicleCurrentOffers-title .vehicleCurrentOffers-model {
  font-size: 20px;
  color: #1f1f1f;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  text-transform: capitalize;
}

.vehicleCurrentOffers-wrapper .vehicleCurrentOffers-name .vehicleCurrentOffers-title .vehicleCurrentOffers-model span {
  background-color: #f9f9f9;
  padding: 2px 5px;
  font-size: 16px;
  margin-right: 3px;
  font-family: "MMC-Subline,sans-serif";
}

.vehicleCurrentOffers-wrapper .vehicleCurrentOffers-name .vehicleCurrentOffers-price h5 {
  font-family: "MMC-Subline,sans-serif";
  color: #000000;
  font-size: 14px;
}

.vehicleCurrentOffers-wrapper .vehicleCurrentOffers-name .vehicleCurrentOffers-price p {
  color: #000000;
  font-size: 14px;
  line-height: 1.5;
}

.vehicleCurrentOffers-wrapper .vehicleCurrentOffers-name .vehicleCurrentOffers-price span {
  font-weight: bold;
}

.vehicleCurrentOffers-wrapper .vehicleCurrentOffers-name .vehicleCurrentOffers-btn a {
  text-transform: uppercase;
  color: #fff;
  background: #ed1c24;
  border-radius: 0px;
  font-size: 14px;
  padding: 10px 5px;
  text-decoration: none;
  cursor: pointer;
  text-align: center;
  position: relative;
  width: 100%;
  display: block;
  margin-top: 10px;
  font-family: "MMC-Headline,sans-serif";
  transition: all 0.5s;
}

.vehicleCurrentOffers-wrapper .vehicleCurrentOffers-name .vehicleCurrentOffers-btn a i {
  font-size: 16px;
  padding-left: 5px;
  position: relative;
  top: 2px;
  font-weight: bold;
}

.vehicleCurrentOffers-wrapper .vehicleCurrentOffers-name .vehicleCurrentOffers-btn a:hover {
  background: #000000;
  transition: all 0.5s;
}

.vehicleCurrentOffers-wrapper:hover .vehicleCurrentOffers-img img {
  transform: scale(1.1);
}

.vehicleCurrentOffers-wrapper:hover .vehicleListings-title .vehicleListings-model {
  color: #ed1c24;
  transition: all 0.5s;
}

.vehicleCurrentOffers-wrapper:hover .vehicleListings-title .vehicleListings-model span {
  color: #1f1f1f;
  transition: all 0.5s;
}

/* ----------------------------- Vehicle Grid CSS End --------------------------*/
/*# sourceMappingURL=main.css.map */