@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200;300;400;500;600;700&display=swap');

/* ===== GOOD TIMES FONT ===== */
@font-face {
  font-family: "good-times";
  src: url('/assets/fonts/good-times-500.woff2') format('woff2'),
       url('/assets/fonts/good-times.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}


/* ===== UTILITY COLOR CLASSES ===== */
.yellow-color { color: #FFFD00; }
.white-color { color: #fff; }
.grey-color { color: #808080; }
.black-color { color: #000; }
.white-bg { background-color: #fff; }
.grey-bg { background-color: #1e1e1e; }
.black-bg { background-color: #000; }



.primary-btn {
  border-radius: 0px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  height: 44px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 400;
  text-transform: uppercase;
  padding: 0px 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #000 !important;
  outline: none !important;
  box-shadow: none !important;
  border: 2px solid transparent;
  font-family: "Oswald";
  background: #FFFD00;
}
.primary-btn:hover {
  border-color: #FFFD00;
  background-color: #000;
  color: #FFFD00 !important;
}
.primary-btn:focus {
  color: #000 !important;
}

.grey-btn {
  border-radius: 0px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  height: 44px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 400;
  text-transform: uppercase;
  padding: 0px 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff !important;
  outline: none !important;
  box-shadow: none !important;
  border: 2px solid transparent;
  font-family: "Oswald";
  background: #808080;
}
.grey-btn:hover {
  border-color: #000;
  color: #000 !important;
}
.grey-btn:focus {
  color: #000 !important;
}

.border-btn {
  border-radius: 0px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  height: 44px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 400;
  text-transform: uppercase;
  padding: 0px 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #454545 !important;
  outline: none !important;
  box-shadow: none !important;
  border: 2px solid #454545;
  font-family: "Oswald";
  background: transparent;
}
.border-btn:hover {
  background-color: #454545;
  border-color: #000;
  color: #fff !important;
}
.border-btn:focus {
  color: #000 !important;
}

.green-btn {
  border-radius: 0px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  height: 44px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 400;
  text-transform: uppercase;
  padding: 0px 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff !important;
  outline: none !important;
  box-shadow: none !important;
  border: 2px solid transparent;
  font-family: "Oswald";
  background: #00955C;
}
.green-btn:hover {
  border-color: #000;
  color: #000 !important;
}
.green-btn:focus {
  color: #000 !important;
}

header {
  position: relative;
  transition: all 0.4s ease-in-out;
  padding: 15px 0px;
}
header .navbar-nav li {
  font-size: 14px;
  padding: 10px 8px;
  position: relative;
  z-index: 2;
}
@media (max-width: 1024.99px) {
  header .navbar-nav li {
    padding: 10px;
  }
}
header .navbar-nav li.current-menu-item a {
  color: #FFFD00;
  background-color: #000000cc;
}
header .navbar-nav li a {
  color: #fff;
  font-size: 16px;
  text-transform: uppercase;
  font-family: "Oswald";
  padding: 2px 6px;
  font-weight: 400;
  letter-spacing: 0.5px;
}
header .navbar-nav li a:hover {
  text-decoration: none;
  color: #FFFD00;
  background-color: #000000cc;
}
header .navbar-nav li a:hover::before {
  border-color: #FFFD00;
}
@media (max-width: 450.99px) {
  header .navbar-nav li a {
    font-size: 17px;
    display: block;
  }
  header .navbar-nav li a:hover {
    background-color: transparent;
  }
}
header .navbar-nav li .sub-menu-toggle {
  display: none;
}
header .navbar-nav li:first-child {
  padding-left: 0;
}
header .navbar-nav li:last-child {
  padding-right: 0;
}
@media (max-width: 820.99px) {
  header .navbar-nav li {
    text-align: center;
    z-index: unset;
  }
  header .navbar-nav li:first-child {
    padding-left: 10px;
  }
  header .navbar-nav li:last-child {
    padding-right: 10px;
  }
  header .navbar-nav li.current-menu-item a {
    border: none;
    background-color: transparent;
  }
}
@media (max-width: 450.99px) {
  header .navbar-nav li {
    text-align: left;
    width: 100%;
    border-bottom: 1px solid #2e2e2e;
  }
  header .navbar-nav li:first-child {
    border-top: 1px solid #2e2e2e;
  }
  header .navbar-nav li.current-menu-item a {
    border: none;
    background-color: transparent;
  }
}
header .navbar-nav .menu-item-has-children {
  position: relative;
}
header .navbar-nav .menu-item-has-children ul {
  display: block;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(1, -0.41, 0, 1.12);
  transform: scaleY(0);
  transform-origin: top;
  background: #000000cc;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  float: left;
  padding: 0;
  margin: 0 0;
  text-align: left;
  list-style: none;
  width: min-content;
  background-clip: padding-box;
}
@media (max-width: 820.99px) {
  header .navbar-nav .menu-item-has-children ul {
    transform: initial;
    visibility: visible;
    opacity: 1;
    display: none;
    margin: 0 auto;
    right: 0;
    float: unset;
    width: min-content !important;
  }
}
@media (max-width: 450px) {
  header .navbar-nav .menu-item-has-children ul {
    width: 94% !important;
    z-index: 9999999999;
    height: 100%;
    padding: 0px;
    position: unset;
    border: none;
    margin: 5px 0px 0px 0px;
    background: transparent;
    float: right;
  }
}
header .navbar-nav .menu-item-has-children ul li {
  padding: 0;
  margin: 0;
  margin-top: 0px !important;
}
header .navbar-nav .menu-item-has-children ul li:hover {
  background: transparent;
}
header .navbar-nav .menu-item-has-children ul li:after {
  display: none;
}
@media (max-width: 450px) {
  header .navbar-nav .menu-item-has-children ul li {
    border: none;
  }
}
header .navbar-nav .menu-item-has-children ul li a::before {
  visibility: hidden;
}
header .navbar-nav .menu-item-has-children ul a {
  color: #fff;
  padding: 6px 10px;
  margin: 0;
  display: block;
  width: 100%;
  clear: both;
  font-weight: 400;
  text-align: inherit;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
}
header .navbar-nav .menu-item-has-children ul a:hover {
  text-decoration: none;
  color: #FFFD00;
}
header .navbar-nav .menu-item-has-children:hover ul {
  opacity: 1;
  visibility: visible;
  transform: scaleY(1);
  width: auto;
}
header .navbar-nav .menu-item-has-children:hover:before {
  border-color: #FFFD00;
}
@media (max-width: 450px) {
  header .navbar-nav .menu-item-has-children {
    width: 100%;
  }
  header .navbar-nav .menu-item-has-children a {
    display: block;
    position: relative;
  }
  header .navbar-nav .menu-item-has-children a:before {
    content: "";
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
    height: 8px;
    width: 8px;
    transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    position: absolute;
    right: 20px;
    top: 10px;
  }
}
header .navbar-toggler {
  background: none;
  position: absolute;
  top: 7px;
  right: 0;
  height: 40px;
  outline: none;
  border: none;
  box-shadow: none;
}
@media (max-width: 820.99px) {
  header .navbar-toggler {
    top: -51px;
    padding-right: 0;
  }
}
@media (max-width: 450.99px) {
  header .navbar-toggler {
    top: -45px;
    right: 0px;
  }
}
header .navbar-toggler-icon {
  height: 5px;
  background: #00a3e0;
  position: relative;
}
header .navbar-toggler-icon:after, header .navbar-toggler-icon:before {
  content: "";
  height: 5px;
  width: 100%;
  background: #00a3e0;
  display: block;
  position: absolute;
}
header .navbar-toggler-icon:after {
  top: -10px;
}
header .navbar-toggler-icon:before {
  bottom: -10px;
}
header.addbg {
  background-color: #262626;
}

.slider {
  position: relative;
  height: 100%;
  min-height: 103vh;
  margin-top: -130px;
}
@media (max-width: 1024.99px) {
  .slider {
    min-height: 50vh;
  }
}
@media (max-width: 450px) {
  .slider {
    margin-top: 0px;
    min-height: 82vh;
  }
}
.slider .home-slider {
  height: 100%;
  position: relative;
}
.slider .home-slider .owl-stage-outer,
.slider .home-slider .owl-stage,
.slider .home-slider .owl-item {
  height: 100%;
}
.slider .home-slider .item {
  height: 100%;
  min-height: 103vh;
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  background-size: cover;
  object-fit: cover;
}
@media (max-width: 1024.99px) {
  .slider .home-slider .item {
    min-height: 50vh;
    margin-top: 0px;
    background-size: cover;
  }
}
@media (max-width: 768.99px) {
  .slider .home-slider .item {
    min-height: 57vh;
  }
}
@media (max-width: 450.99px) {
  .slider .home-slider .item {
    background-image: none !important;
    padding-top: 0px;
    min-height: 82vh;
    margin-top: 0px;
  }
}
.slider .home-slider .item .slide-invnet-btn {
  text-align: right;
  margin-bottom: 44px;
}
@media (max-width: 450.99px) {
  .slider .home-slider .item .slide-invnet-btn {
    display: none;
  }
}
.slider .slider-nav {
  position: absolute;
  z-index: 5;
  left: 250px;
  bottom: 0;
}
@media (max-width: 1440.99px) {
  .slider .slider-nav {
    left: 155px;
  }
}
@media (max-width: 1366.99px) {
  .slider .slider-nav {
    left: 116px;
  }
}
@media (max-width: 1280.99px) {
  .slider .slider-nav {
    left: 72px;
  }
}
@media (max-width: 820.99px) {
  .slider .slider-nav {
    left: 35px;
  }
}
@media (max-width: 768.99px) {
  .slider .slider-nav {
    left: 55px;
  }
}
@media (max-width: 450.99px) {
  .slider .slider-nav {
    display: none;
  }
}
.slider .slider-nav #carousel-custom-dots li {
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  font-family: "Oswald";
  font-size: 14px;
  color: #fff;
  position: relative;
  display: inline-flex;
  align-items: center;
  text-transform: uppercase;
  margin-bottom: 30px;
  justify-content: flex-end;
}
.slider .slider-nav #carousel-custom-dots li .count {
  width: 22px;
  margin-left: 15px;
  margin-right: 8px;
  margin-top: 2px;
  opacity: 0;
  border: solid 1px #fff;
  display: inline-block;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
}
.slider .slider-nav #carousel-custom-dots li .text {
  display: inline-block;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
}
.slider .slider-nav #carousel-custom-dots li.active {
  color: #FFFD00;
}
.slider .slider-nav #carousel-custom-dots li.active .count {
  opacity: 1;
  border-color: #FFFD00;
}

.select-box {
  position: relative;
}
.select-box .form-control {
  background: rgba(255, 255, 255, 0.2);
  border: 0;
  padding: 10px 20px;
  width: 100%;
  color: #fff;
  border-radius: 0px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -webkit-appearance: none;
  z-index: 1;
  position: relative;
}
.select-box .form-control option {
  background: #343a40;
}
.select-box:before {
  content: "";
  border-top: solid 1px #fff;
  border-right: solid 1px #fff;
  height: 5px;
  width: 5px;
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  position: absolute;
  right: 20px;
  top: 15px;
}

.items-slider.owl-carousel {
  position: relative;
}
.items-slider.owl-carousel .owl-nav {
  margin: 0;
}
.items-slider.owl-carousel .owl-nav .owl-prev,
.items-slider.owl-carousel .owl-nav .owl-next {
  position: absolute;
  margin: auto;
  top: 50%;
  height: 25px;
  width: 25px;
  transform: translateY(-50%);
}
.items-slider.owl-carousel .owl-nav .owl-prev span,
.items-slider.owl-carousel .owl-nav .owl-next span {
  line-height: 0;
  font-size: 90px;
  color: #FFFD00;
}
.items-slider.owl-carousel .owl-nav .owl-prev:hover,
.items-slider.owl-carousel .owl-nav .owl-next:hover {
  background: none;
}
.items-slider.owl-carousel .owl-nav .owl-prev:focus,
.items-slider.owl-carousel .owl-nav .owl-next:focus {
  outline: 0;
}
@media (max-width: 820.99px) {
  .items-slider.owl-carousel .owl-nav .owl-prev,
.items-slider.owl-carousel .owl-nav .owl-next {
    background: #fff !important;
    top: 100px;
  }
}
.items-slider.owl-carousel .owl-nav .owl-prev {
  left: -40px;
}
@media (max-width: 820.99px) {
  .items-slider.owl-carousel .owl-nav .owl-prev {
    left: 10px;
  }
}
.items-slider.owl-carousel .owl-nav .owl-next {
  right: -40px;
}
@media (max-width: 820.99px) {
  .items-slider.owl-carousel .owl-nav .owl-next {
    right: 10px;
  }
}
@media (max-width: 820.99px) {
  .items-slider.owl-carousel .owl-nav {
    display: none;
  }
}

.save {
  position: relative;
  padding: 1rem 0.5rem;
  font-family: "Oswald", sans-serif;
  font-size: 14px;
  text-transform: capitalize;
}
.save label {
  text-transform: unset;
  display: flex;
  align-items: center;
  margin: 0;
}
.save label img {
  width: auto;
}
.save input[type=checkbox] {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  left: 0;
  top: 0;
}
@media (max-width: 450.99px) {
  .save {
    padding: 0px;
  }
}

.send-to-phone {
  white-space: nowrap;
}

.select-modal {
  padding: 50px 0 100px;
  background: #000000;
  background: -moz-linear-gradient(top, #000000 0%, #000000 85%, #05090a 100%);
  background: -webkit-linear-gradient(top, #000000 0%, #000000 85%, #05090a 100%);
  background: linear-gradient(to bottom, #000000 0%, #000000 85%, #05090a 100%);
}
.select-modal .car-modal {
  position: relative;
}
.select-modal .car-modal ul {
  background: #000000;
  background: -moz-linear-gradient(left, #000000 0%, #000000 25%, #1a3a43 100%);
  background: -webkit-linear-gradient(left, #000000 0%, #000000 25%, #1a3a43 100%);
  background: linear-gradient(to right, #000000 0%, #000000 25%, #1a3a43 100%);
  margin-right: 15rem;
  height: 270px;
  padding: 20px 0;
}
.select-modal .car-modal ul li {
  text-transform: uppercase;
  color: #3B97B2;
  letter-spacing: 2px;
  background:  url('/assets/images/service-arrow.svg') no-repeat 0px 8px;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  padding-left: 10px;
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 10px;
}
.select-modal .car-modal ul li:after {
  content: "";
  width: 30%;
  background: #437689;
  height: 1px;
  position: absolute;
  left: 0;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  bottom: 0;
}
.select-modal .car-modal ul li:hover {
  background:  url('/assets/images/service-arrow.svg') no-repeat 0px 8px;
  padding-left: 15px;
  color: #fff;
}
.select-modal .car-modal ul li:hover:after {
  width: 100%;
}
.select-modal .car-modal img {
  position: absolute;
  right: 0;
  bottom: -25px;
}

#searchfields_holder {
  padding: 0;
}
#searchfields_holder #multiyear_select span:first-child,
#searchfields_holder #multimake_select span:first-child,
#searchfields_holder #multimodel_select span:first-child,
#searchfields_holder #multiprice_select span:first-child {
  width: 100%;
  display: block;
  color: #000;
  background: #fff;
  padding: 12px 20px;
  position: relative;
  border-radius: 8px;
  font-weight: 400;
}
#searchfields_holder #multiyear_select span:first-child:after,
#searchfields_holder #multimake_select span:first-child:after,
#searchfields_holder #multimodel_select span:first-child:after,
#searchfields_holder #multiprice_select span:first-child:after {
  content: "";
  border-top: solid 2px #000;
  border-right: solid 2px #000;
  height: 7px;
  width: 7px;
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  position: absolute;
  right: 20px;
  top: 16px;
}
#searchfields_holder #multiyear_select div li span,
#searchfields_holder #multimake_select div li span,
#searchfields_holder #multimodel_select div li span,
#searchfields_holder #multiprice_select div li span {
  border: none !important;
  padding: 10px 0px !important;
  display: flex !important;
  align-items: center;
  flex-flow: row;
}
#searchfields_holder #multiyear_select div li span.count,
#searchfields_holder #multimake_select div li span.count,
#searchfields_holder #multimodel_select div li span.count,
#searchfields_holder #multiprice_select div li span.count {
  padding: 0px !important;
  width: auto;
}
#searchfields_holder #multiyear_select div li span:after,
#searchfields_holder #multimake_select div li span:after,
#searchfields_holder #multimodel_select div li span:after,
#searchfields_holder #multiprice_select div li span:after {
  display: none;
}
#searchfields_holder #multiyear_select .holder,
#searchfields_holder #multimake_select .holder,
#searchfields_holder #multimodel_select .holder,
#searchfields_holder #multiprice_select .holder {
  border: 0px;
  background: #343a40;
  border-top: 0;
  max-height: 200px;
  overflow: auto;
  position: absolute;
  width: 100%;
  z-index: 9;
}
#searchfields_holder #multiyear_select .holder::-webkit-scrollbar,
#searchfields_holder #multimake_select .holder::-webkit-scrollbar,
#searchfields_holder #multimodel_select .holder::-webkit-scrollbar,
#searchfields_holder #multiprice_select .holder::-webkit-scrollbar {
  width: 5px;
}
#searchfields_holder #multiyear_select .holder::-webkit-scrollbar-track,
#searchfields_holder #multimake_select .holder::-webkit-scrollbar-track,
#searchfields_holder #multimodel_select .holder::-webkit-scrollbar-track,
#searchfields_holder #multiprice_select .holder::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.2);
}
#searchfields_holder #multiyear_select .holder::-webkit-scrollbar-thumb,
#searchfields_holder #multimake_select .holder::-webkit-scrollbar-thumb,
#searchfields_holder #multimodel_select .holder::-webkit-scrollbar-thumb,
#searchfields_holder #multiprice_select .holder::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
}
#searchfields_holder #multiyear_select .holder ul li,
#searchfields_holder #multimake_select .holder ul li,
#searchfields_holder #multimodel_select .holder ul li,
#searchfields_holder #multiprice_select .holder ul li {
  list-style: none;
  cursor: pointer;
}
#searchfields_holder #multiyear_select .holder ul li span,
#searchfields_holder #multimake_select .holder ul li span,
#searchfields_holder #multimodel_select .holder ul li span,
#searchfields_holder #multiprice_select .holder ul li span {
  cursor: pointer;
  background: none;
  color: #fff;
}
#searchfields_holder li {
  padding: 0;
  list-style: none;
  position: relative;
}
#searchfields_holder li ul {
  padding: 0;
}
#searchfields_holder .inventory-search-btn {
  align-items: center;
  display: flex;
}
#searchfields_holder .inventory-search-btn button {
  height: 34px;
  width: 100px;
  font-weight: 300;
  font-size: 14px;
}

.key-search {
  background: #fff;
  border: 0;
  color: #343a40;
  height: 42px;
  padding: 10px;
}
.key-search::placeholder {
  color: #343a40;
}

.car-more-information {
  margin-bottom: 20px;
  margin-top: 5px;
}
.car-more-information .card {
  background: none;
  border: solid 1px transparent;
  border: 0px !important;
}
.car-more-information .card.active {
  border-bottom: solid 1px #dee2e6 !important;
}
@media (max-width: 450.99px) {
  .car-more-information .card.active {
    border-bottom: none !important;
  }
}
.car-more-information .card .card-header {
  background: #101010;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  margin-bottom: 20px;
}
.car-more-information .card .card-header h5 a {
  display: block;
  color: #fff;
}
.car-more-information .card:last-child .card-header {
  margin-bottom: 0;
}
.car-more-information .nav-tabs {
  display: none;
}
@media (min-width: 820.99px) {
  .car-more-information .nav-tabs {
    display: flex;
  }
  .car-more-information .card {
    border: none;
  }
  .car-more-information .card .card-header {
    display: none;
  }
  .car-more-information .card .collapse {
    display: block;
  }
}
@media (max-width: 820.99px) {
  .car-more-information .tab-content > .tab-pane {
    display: block !important;
    opacity: 1;
  }
}
.car-more-information .card {
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  border-top: solid 1px #343a40;
}
.car-more-information .card-body {
  color: #3C3C3C;
  font-size: 14px;
  line-height: 22px;
  font-family: "Arial";
}
.car-more-information .card-body p {
  padding: 0px;
  color: #3C3C3C;
  font-size: 14px;
  line-height: 22px;
}
.car-more-information .card-body ul li {
  color: #3C3C3C;
  font-size: 14px;
  line-height: 22px;
  font-family: "Arial";
}
.car-more-information .nav-tabs {
  border: 0;
  position: relative;
  z-index: 1;
  border-top: solid 5px #3C3C3C;
  border-bottom: solid 1px transparent;
}
.car-more-information .nav-tabs .nav-item .nav-link {
  border: 0;
  color: #000;
  padding: 20px 35px;
  margin: 0 20px 0px 0;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  text-transform: uppercase;
  font-family: "Oswald";
  font-size: 17px;
  border-top: solid 5px transparent;
}
.car-more-information .nav-tabs .nav-item .nav-link.active {
  border-bottom: solid 4px #3C3C3C;
  color: #fff;
  background: #3C3C3C;
}
.car-more-information .nav-tabs .nav-item:last-child .nav-link {
  margin-right: 0;
}
.car-more-information #collapse-A .card-body span,
.car-more-information #collapse-A .card-body strong {
  color: #000 !important;
}

.breadcrumb {
  background: none;
}
.breadcrumb li {
  font-size: 12px;
}
.breadcrumb li.active {
  color: #343a40;
  font-weight: 500;
}

.car-detail-slider .owl-item .item img {
  max-height: 540px;
  object-fit: cover;
}
.car-detail-slider.owl-theme .owl-nav {
  margin: 0;
}
.car-detail-slider.owl-theme .owl-nav .owl-prev,
.car-detail-slider.owl-theme .owl-nav .owl-next {
  position: absolute;
  top: 50%;
  background: #101010;
  color: #fff;
  width: 50px;
  height: 50px;
  margin: 0;
  outline: none !important;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
}
.car-detail-slider.owl-theme .owl-nav .owl-prev span,
.car-detail-slider.owl-theme .owl-nav .owl-next span {
  display: none;
}
@media (max-width: 450px) {
  .car-detail-slider.owl-theme .owl-nav .owl-prev,
.car-detail-slider.owl-theme .owl-nav .owl-next {
    width: 33px;
    height: 33px;
  }
}
.car-detail-slider.owl-theme .owl-nav .owl-prev {
  left: 0;
}
.car-detail-slider.owl-theme .owl-nav .owl-prev:before {
  content: "";
  width: 15px;
  height: 1px;
  background: #101010;
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 15px;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  margin: auto;
  display: none;
}
.car-detail-slider.owl-theme .owl-nav .owl-prev:after {
  content: "";
  height: 40px;
  width: 40px;
  display: block;
  background-image:  url('/assets/images/arrow-prev.svg');
  position: absolute;
  right: 3px;
  top: 2px;
  bottom: 0;
  background-size: auto;
  margin: auto;
  background-repeat: no-repeat;
  background-position: center center;
}
@media (max-width: 450px) {
  .car-detail-slider.owl-theme .owl-nav .owl-prev:after {
    height: 15px;
    width: 15px;
    left: 0;
    right: 0;
    background-size: contain;
  }
}
.car-detail-slider.owl-theme .owl-nav .owl-next {
  right: 0;
}
.car-detail-slider.owl-theme .owl-nav .owl-next:before {
  content: "";
  width: 15px;
  height: 1px;
  background: #343a40;
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  margin: auto;
  display: none;
}
.car-detail-slider.owl-theme .owl-nav .owl-next:after {
  content: "";
  height: 40px;
  width: 40px;
  display: block;
  background-image:  url('/assets/images/arrow-next.svg');
  position: absolute;
  right: 3px;
  top: 2px;
  bottom: 0;
  background-size: auto;
  margin: auto;
  background-repeat: no-repeat;
  background-position: center center;
}
@media (max-width: 450px) {
  .car-detail-slider.owl-theme .owl-nav .owl-next:after {
    height: 15px;
    width: 15px;
    left: 0;
    right: 0;
    background-size: contain;
  }
}
@media (max-width: 450.99px) {
  .car-detail-slider.owl-theme .owl-nav {
    display: none;
  }
}
.car-detail-slider .item {
  position: relative;
}
.car-detail-slider .item .btn {
  position: absolute;
  right: 6px;
  bottom: 6px;
  border-radius: 0px;
  padding: 4px;
  background-color: transparent;
  outline: none !important;
  box-shadow: none !important;
}
.car-detail-slider .item .get-price-today {
  background-color: #343a40;
  color: #fff;
  font-size: 12px;
  text-transform: uppercase;
  position: absolute;
  top: 20px;
  right: 20px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0px 15px;
}

.car-details-action li a {
  color: #101010;
}

.custom-accordian .accordable {
  margin: 0;
  padding: 0;
}
.custom-accordian .accordable-panel {
  margin-bottom: 5px;
  position: relative;
}
.custom-accordian .accordable-panel:before {
  content: "";
  padding: 0;
  border-top: solid 3px #000;
  border-right: solid 3px #000;
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  display: inline-block;
  height: 10px;
  width: 10px;
  left: 10px;
  top: 21px;
  position: absolute;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
}
.custom-accordian .accordable-panel.open:before {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  border-color: #000;
  top: 22px;
}
.custom-accordian .accordable-heading {
  border-bottom: solid 1px #646464;
  color: #000;
  padding: 15px 40px;
  font-weight: 500;
  letter-spacing: 0;
  font-family: "Oswald", sans-serif;
  font-size: 16px;
}
.custom-accordian .accordable-expander {
  padding: 25px;
}
.custom-accordian .list-items {
  color: #646464;
}

.file-name {
  width: 60%;
  height: 40px;
  background: #fff;
  color: #434343;
  display: flex;
  align-items: center;
  padding: 10px;
}

.browse {
  background: #000;
  color: #fff;
  width: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-left: auto;
}
.browse input {
  opacity: 0;
  width: 100%;
  height: 100%;
  position: absolute;
}

.upload-tips-btn {
  color: #4990CE;
}
.upload-tips-btn img {
  margin-right: 10px;
}
.upload-tips-btn:hover {
  color: #4990CE;
}

.upload-tips-content {
  background: #ccc;
  padding: 20px 70px;
  text-align: center;
  color: #000;
  line-height: 20px;
  margin-top: 20px;
  opacity: 0;
  transform: scaleY(0);
  transform-origin: top;
  position: absolute;
  z-index: 10000;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
}
.upload-tips-content.open {
  opacity: 1;
  transform: scaleY(1);
}

.features {
  background: #000;
  color: #fff;
  display: flex;
  height: 70px;
}
.features-count {
  height: 100%;
  min-width: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  font-family: "Oswald", sans-serif;
  font-weight: normal;
  background: #101010;
  position: relative;
}
.features-count:after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 0;
  border-top: 8px solid #101010;
  border-left: 25px solid transparent;
  border-right: 25px solid transparent;
  right: 0;
  margin: auto;
}
.features-name {
  padding: 10px;
  font-size: 26px;
  font-weight: 300;
  font-family: "Oswald";
  position: relative;
  width: 100%;
}
.features-name:after {
  content: attr(aria-label);
  opacity: 0;
  position: absolute;
  top: 20px;
}
.features-name:before {
  content: "";
  background: #101010;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
}
.features-name span {
  position: absolute;
  left: 0;
  width: 100%;
  padding: 10px;
}
.features:hover {
  color: #fff;
}
.features:hover .features-name:after {
  opacity: 1;
}
.features:hover .features-name span {
  opacity: 0;
}
.features:hover .features-name:before {
  transform: scaleX(1);
}

.hunter-shaw .person-details {
  position: relative;
}
.hunter-shaw .person-details .name {
  font-size: 40px;
  font-family: "Oswald", sans-serif;
  color: #fff;
  position: absolute;
  left: 20px;
  top: 20px;
}
.hunter-shaw .person-details .social-media {
  position: absolute;
  right: 20px;
  margin: 0;
  bottom: 20px;
}
.hunter-shaw .person-details .social-media li:not(:last-child) {
  margin-right: 50px;
}
.hunter-shaw p {
  text-align: justify;
  padding-left: 20px;
  line-height: 20px;
}

.car-detils .car-name,
.car-detils .car-price,
.car-detils .info {
  position: relative;
}
.car-detils .car-name:after,
.car-detils .car-price:after,
.car-detils .info:after {
  content: "";
  background: #000;
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
}
.car-detils .car-name:after {
  height: 1px;
}
.car-detils .car-price:after,
.car-detils .info:after {
  height: 3px;
}

.call-us a {
  color: #fff;
  background: #0093FF;
  padding: 10px;
  text-align: center;
  margin-top: 20px;
  font-size: 20px;
  font-weight: 600;
  display: block;
  text-transform: uppercase;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.call-us a img {
  margin-right: 20px;
}
.call-us a:hover {
  color: #fff;
}

.browse-type .nav-link {
  border: 0px;
  text-transform: uppercase;
  font-weight: 600;
  color: #767676;
  padding: 10px 20px;
}
@media (max-width: 820.99px) {
  .browse-type .nav-link {
    padding: 10px 15px;
  }
}
.browse-type .nav-link.active {
  color: rgba(118, 118, 118, 0.4);
}

.ready-to-buy {
  background: #262627  url('/assets/images/consign-bg.png') no-repeat center;
  padding: 2rem 0;
}
.ready-to-buy .sections {
  margin-top: 10rem;
}
.ready-to-buy .text-drive {
  color: #B9B9B9;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
}

.short-line {
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 20px;
}
.short-line:after {
  content: "";
  position: absolute;
  height: 6px;
  background: #343a40;
  width: 20%;
  left: 0;
  bottom: 0;
}

.our-services {
  background: #EBEBEB;
  padding: 2rem 0 5rem;
}
.our-services p {
  color: #4E4E4E;
  margin-bottom: 30px;
  line-height: 30px;
}
.our-services p:last-child {
  margin-bottom: 0;
}
.our-services li {
  color: #4E4E4E;
  background:  url('/assets/images/service-arrow.svg') no-repeat left center;
  padding-left: 20px;
  margin-bottom: 20px;
}

.inner-page .search-inventory {
  background-color: #ffffff17;
  margin: 0;
}
.inner-page .shorting {
  margin: 10px 0;
}
.inner-page .shorting select {
  padding: 12px 40px 12px 20px;
  border: solid 1px #ccc;
  color: #3C3C3C;
  position: relative;
  z-index: 2;
  border-radius: 5px;
  -webkit-appearance: none;
}
.inner-page .shorting .select-box {
  position: relative;
}
.inner-page .shorting .select-box:after {
  content: "";
  border-top: solid 1px #3C3C3C;
  border-right: solid 1px #3C3C3C;
  height: 5px;
  width: 5px;
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  position: absolute;
  right: 20px;
  top: 17px;
  z-index: 2;
}
.inner-page .shorting a {
  opacity: 0.5;
}
.inner-page .shorting a.active {
  opacity: 1;
}

.search-inventory #searchfields_holder {
  padding: 0;
}
.search-inventory #searchfields_holder .form-control {
  width: 100%;
  display: block;
  color: #3E3E3E;
  background-color: #fff;
  font-size: 14px;
  font-weight: 400;
  padding: 0px 20px;
  position: relative;
  text-transform: capitalize;
  border-radius: 0px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  cursor: pointer;
  height: 48px;
  display: flex;
  align-items: center;
  box-shadow: 0px 3px 6px #a7a7a752;
  padding: 20px;
}
.search-inventory #searchfields_holder .form-control::placeholder {
  color: #3E3E3E;
  font-size: 14px;
}
@media (max-width: 450.99px) {
  .search-inventory #searchfields_holder .form-control {
    font-size: 16px;
  }
  .search-inventory #searchfields_holder .form-control::placeholder {
    font-size: 13px;
  }
}
.search-inventory #searchfields_holder #multiyear_select span:first-child,
.search-inventory #searchfields_holder #multimake_select span:first-child,
.search-inventory #searchfields_holder #multimodel_select span:first-child,
.search-inventory #searchfields_holder #multiprice_select span:first-child {
  width: 100%;
  display: block;
  color: #3E3E3E;
  background-color: #fff;
  font-size: 14px;
  font-weight: 400;
  padding: 0px;
  position: relative;
  text-transform: capitalize;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  cursor: pointer;
  height: 48px;
  display: flex;
  align-items: center;
  box-shadow: none;
  padding: 0px 20px;
  border: 1px solid #C1C1C1;
}
.search-inventory #searchfields_holder #multiyear_select span:first-child:after,
.search-inventory #searchfields_holder #multimake_select span:first-child:after,
.search-inventory #searchfields_holder #multimodel_select span:first-child:after,
.search-inventory #searchfields_holder #multiprice_select span:first-child:after {
  content: "";
  border-top: solid 2.5px #343a40;
  border-right: solid 2.5px #343a40;
  height: 9px;
  width: 9px;
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  position: absolute;
  right: 16px;
  top: 16px;
}
.search-inventory #searchfields_holder #multiyear_select span:first-child.active,
.search-inventory #searchfields_holder #multimake_select span:first-child.active,
.search-inventory #searchfields_holder #multimodel_select span:first-child.active,
.search-inventory #searchfields_holder #multiprice_select span:first-child.active {
  background: #6C6C6C;
  color: #000;
}
.search-inventory #searchfields_holder #multiyear_select span:first-child.active:after,
.search-inventory #searchfields_holder #multimake_select span:first-child.active:after,
.search-inventory #searchfields_holder #multimodel_select span:first-child.active:after,
.search-inventory #searchfields_holder #multiprice_select span:first-child.active:after {
  border-color: #000;
}
@media (max-width: 450.99px) {
  .search-inventory #searchfields_holder #multiyear_select span:first-child,
.search-inventory #searchfields_holder #multimake_select span:first-child,
.search-inventory #searchfields_holder #multimodel_select span:first-child,
.search-inventory #searchfields_holder #multiprice_select span:first-child {
    font-size: 16px;
  }
}
.search-inventory #searchfields_holder #multiyear_select div li span,
.search-inventory #searchfields_holder #multimake_select div li span,
.search-inventory #searchfields_holder #multimodel_select div li span,
.search-inventory #searchfields_holder #multiprice_select div li span {
  border: none !important;
  padding: 10px !important;
  display: flex !important;
  align-items: center;
}
.search-inventory #searchfields_holder #multiyear_select div li span.count,
.search-inventory #searchfields_holder #multimake_select div li span.count,
.search-inventory #searchfields_holder #multimodel_select div li span.count,
.search-inventory #searchfields_holder #multiprice_select div li span.count {
  padding: 0px !important;
}
.search-inventory #searchfields_holder #multiyear_select div li span:after,
.search-inventory #searchfields_holder #multimake_select div li span:after,
.search-inventory #searchfields_holder #multimodel_select div li span:after,
.search-inventory #searchfields_holder #multiprice_select div li span:after {
  display: none;
}
.search-inventory #searchfields_holder #multiyear_select .holder,
.search-inventory #searchfields_holder #multimake_select .holder,
.search-inventory #searchfields_holder #multimodel_select .holder,
.search-inventory #searchfields_holder #multiprice_select .holder {
  border: 0px;
  background: #3C3C3C;
  border-radius: 5px;
  margin-top: 10px;
  border-top: 0;
  max-height: 200px;
  overflow: auto;
  position: unset;
  width: 100%;
  z-index: 1;
  color: #fff;
  height: 100%;
  padding: 0px 0px 10px 0px;
  display: flex;
  flex-wrap: wrap;
  scrollbar-color: green grey;
  scrollbar-width: auto;
}
.search-inventory #searchfields_holder #multiyear_select .holder::-webkit-scrollbar,
.search-inventory #searchfields_holder #multimake_select .holder::-webkit-scrollbar,
.search-inventory #searchfields_holder #multimodel_select .holder::-webkit-scrollbar,
.search-inventory #searchfields_holder #multiprice_select .holder::-webkit-scrollbar {
  width: 15px;
}
.search-inventory #searchfields_holder #multiyear_select .holder::-webkit-scrollbar-track,
.search-inventory #searchfields_holder #multimake_select .holder::-webkit-scrollbar-track,
.search-inventory #searchfields_holder #multimodel_select .holder::-webkit-scrollbar-track,
.search-inventory #searchfields_holder #multiprice_select .holder::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.2);
}
.search-inventory #searchfields_holder #multiyear_select .holder::-webkit-scrollbar-thumb,
.search-inventory #searchfields_holder #multimake_select .holder::-webkit-scrollbar-thumb,
.search-inventory #searchfields_holder #multimodel_select .holder::-webkit-scrollbar-thumb,
.search-inventory #searchfields_holder #multiprice_select .holder::-webkit-scrollbar-thumb {
  background: #00955C;
  border-radius: 10px;
}
.search-inventory #searchfields_holder #multiyear_select .holder .elm,
.search-inventory #searchfields_holder #multimake_select .holder .elm,
.search-inventory #searchfields_holder #multimodel_select .holder .elm,
.search-inventory #searchfields_holder #multiprice_select .holder .elm {
  display: inline-flex;
  background: transparent;
  text-align: center;
  color: white;
  height: 30px;
  font-size: 12px;
  justify-content: center;
  align-items: center;
  margin-right: 5px;
  margin-bottom: 5px;
  padding: 0px 10px;
  cursor: pointer;
}
.search-inventory #searchfields_holder #multiyear_select .holder ::-webkit-scrollbar-track,
.search-inventory #searchfields_holder #multimake_select .holder ::-webkit-scrollbar-track,
.search-inventory #searchfields_holder #multimodel_select .holder ::-webkit-scrollbar-track,
.search-inventory #searchfields_holder #multiprice_select .holder ::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0);
  background-color: #262626;
  border-radius: 10px;
}
.search-inventory #searchfields_holder #multiyear_select .holder ::-webkit-scrollbar,
.search-inventory #searchfields_holder #multimake_select .holder ::-webkit-scrollbar,
.search-inventory #searchfields_holder #multimodel_select .holder ::-webkit-scrollbar,
.search-inventory #searchfields_holder #multiprice_select .holder ::-webkit-scrollbar {
  width: 5px;
  background-color: #262626;
}
.search-inventory #searchfields_holder #multiyear_select .holder ::-webkit-scrollbar-thumb,
.search-inventory #searchfields_holder #multimake_select .holder ::-webkit-scrollbar-thumb,
.search-inventory #searchfields_holder #multimodel_select .holder ::-webkit-scrollbar-thumb,
.search-inventory #searchfields_holder #multiprice_select .holder ::-webkit-scrollbar-thumb {
  border-radius: 3px;
  background-color: #000;
}
.search-inventory #searchfields_holder #multiyear_select .holder ul li,
.search-inventory #searchfields_holder #multimake_select .holder ul li,
.search-inventory #searchfields_holder #multimodel_select .holder ul li,
.search-inventory #searchfields_holder #multiprice_select .holder ul li {
  list-style: none;
  margin-bottom: 0;
  padding: 0px;
  display: block;
  margin-right: 0px;
  margin-bottom: 0px;
}
.search-inventory #searchfields_holder #multiyear_select .holder ul li span,
.search-inventory #searchfields_holder #multimake_select .holder ul li span,
.search-inventory #searchfields_holder #multimodel_select .holder ul li span,
.search-inventory #searchfields_holder #multiprice_select .holder ul li span {
  background: transparent;
  display: flex !important;
  flex-wrap: nowrap;
  word-break: normal;
  white-space: nowrap;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
}
.search-inventory #searchfields_holder #multiyear_select .holder ul li span box,
.search-inventory #searchfields_holder #multimake_select .holder ul li span box,
.search-inventory #searchfields_holder #multimodel_select .holder ul li span box,
.search-inventory #searchfields_holder #multiprice_select .holder ul li span box {
  display: inline-block;
  height: 14px;
  width: 14px;
  margin-right: 10px;
  vertical-align: middle;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  background-color: transparent;
  border: 2px solid #c2c2c2;
}
.search-inventory #searchfields_holder #multiyear_select .holder ul li.active span box,
.search-inventory #searchfields_holder #multimake_select .holder ul li.active span box,
.search-inventory #searchfields_holder #multimodel_select .holder ul li.active span box,
.search-inventory #searchfields_holder #multiprice_select .holder ul li.active span box {
  background-color: #FFFD00;
}
.search-inventory #searchfields_holder #multiyear_select .holder ul li.selected:after,
.search-inventory #searchfields_holder #multimake_select .holder ul li.selected:after,
.search-inventory #searchfields_holder #multimodel_select .holder ul li.selected:after,
.search-inventory #searchfields_holder #multiprice_select .holder ul li.selected:after {
  content: "";
  width: 7px;
  height: 7px;
  background: #6C6C6C;
  position: absolute;
  left: 14px;
  top: 15px;
}
.search-inventory #searchfields_holder li {
  list-style: none;
  position: relative;
  padding: 0px;
}
.search-inventory #searchfields_holder li ul {
  padding: 0;
}
.search-inventory #searchfields_holder .inventory-btn {
  color: #fff;
  border: 1px solid #3C3C3C;
  display: flex;
  cursor: pointer;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 48px;
  font-size: 18px;
  font-weight: 400;
  font-family: "Oswald";
  text-transform: uppercase;
  background-color: #3C3C3C;
}
.search-inventory #searchfields_holder .inventory-btn img {
  width: 36px;
  margin-left: 10px;
}
.search-inventory .show-btn-div {
  text-align: right;
  position: relative;
}
.search-inventory .show-btn-div::before {
  content: " ";
  position: absolute;
  left: 0;
  right: 260px;
  top: 22px;
  height: 1px;
  background-color: #707070;
}
@media (max-width: 820.99px) {
  .search-inventory .show-btn-div::before {
    right: 210px;
  }
}
.search-inventory .show-btn-div a,
.search-inventory .show-btn-div button {
  background-color: #fff;
  border-radius: 10px;
  color: #343a40;
  text-transform: uppercase;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  font-weight: bold;
  height: 44px;
  padding: 0px 45px;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
}
.search-inventory .show-btn-div a:hover,
.search-inventory .show-btn-div button:hover {
  background-color: #000;
  color: #fff;
}
@media (max-width: 820.99px) {
  .search-inventory .show-btn-div a,
.search-inventory .show-btn-div button {
    padding: 0px 25px;
  }
}

.test-drive-form .form-control {
  background: #f4f4f4;
  border: solid 1px #d8d8d8;
  height: 40px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
}
.test-drive-form .time-picker {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.test-drive-form .time-picker select.form-control {
  height: 40px !important;
  color: #343a40;
}
.test-drive-form .time-picker select.form-control option {
  background: none;
  color: #343a40;
}
.test-drive-form .time-picker .select-box {
  width: 130px;
}
.test-drive-form .time-picker .select-box:before {
  display: none;
}
.test-drive-form .time-picker .select-box:after {
  content: "";
  border-top: solid 1px #343a40;
  border-right: solid 1px #343a40;
  height: 5px;
  width: 5px;
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  position: absolute;
  right: 20px;
  top: 15px;
  z-index: 1;
}

.sell-car {
  background:  url('/assets/images/sellyourcar-image.png') no-repeat center/cover;
  height: 700px;
}
@media (max-width: 820.99px) {
  .sell-car {
    height: auto;
  }
}

.sell-car-form {
  font-family: "Noto Sans" !important;
}
.sell-car-form h1 {
  font-family: "Noto Sans" !important;
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 100;
  text-align: center;
}
.sell-car-form .short-line:after {
  width: 100%;
}
.sell-car-form .form-control {
  background: #F5F5F5;
  border: solid 1px #E6E6E6;
  color: #343a40;
  padding: 10px 20px;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.sell-car-form .form-control::placeholder {
  color: #343a40;
}
.sell-car-form select.form-control {
  height: 44px !important;
}
.sell-car-form select.form-control option {
  color: #343a40;
}
.sell-car-form .select-box:before {
  display: none;
}
.sell-car-form .select-box:after {
  content: "";
  border-top: solid 1px #343a40;
  border-right: solid 1px #343a40;
  height: 5px;
  width: 5px;
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  position: absolute;
  right: 20px;
  top: 15px;
  z-index: 1;
}
.sell-car-form .upload-file {
  display: flex;
  justify-content: space-between;
}
.sell-car-form .upload-file .form-control {
  width: 70%;
}
.sell-car-form .upload-file .file-upload {
  position: relative;
}
.sell-car-form .upload-file .file-upload input {
  position: absolute;
  opacity: 0;
  width: 100% !important;
  height: 100%;
  top: 0;
  z-index: 1;
  cursor: pointer;
  float: unset !important;
  height: 50px;
}
.sell-car-form .upload-file .file-upload span {
  background: #000 !important;
  float: unset !important;
  color: #fff !important;
  font-weight: 600;
  padding: 12px 30px;
  text-transform: uppercase;
  position: relative;
  top: 10px;
}
.sell-car-form button {
  margin: 15px auto 0px;
}
.sell-car-form button span.text {
  padding: 5px 25px;
}

.smsMSG,
.share {
  cursor: pointer;
}

.smsMSG {
  position: relative;
  display: inline-block;
  font-weight: 500;
  color: #000;
}
@media (max-width: 450.99px) {
  .smsMSG {
    width: 100%;
    padding: 0px;
    font-size: 11px;
  }
}

.smsMSG img {
  vertical-align: middle;
}

.smsMSG .error {
  color: red;
  font-size: 0.6em;
}

.smsMSG.opened .inboxContainer {
  max-height: 42px;
  z-index: 9;
}

.inboxContainer {
  max-height: 0px;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  position: absolute;
  top: 100%;
  right: -8px;
}

.smsMSG .inputBox {
  position: relative;
  background-color: white;
  width: 147px;
  height: 30px;
  padding: 0;
  border-radius: 7px;
  margin: 7px 1px;
  white-space: nowrap;
  color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0px 0px 2px 2px #0000005e;
}

.smsMSG .inputBox .buttonSMS {
  content: " ";
  display: block;
  background:  url('/assets/images/sms-icon.png');
  height: 100%;
  width: 33px;
  position: absolute;
  right: 0;
  top: 0;
}

.smsMSG .inputBox span {
  display: inline-block;
  vertical-align: middle;
  color: #000;
  margin-left: 7px;
}

.smsMSG .inputBox input {
  border: 0;
  box-shadow: none;
  vertical-align: middle;
  outline: none;
  letter-spacing: 2px;
  font-size: 12px;
  width: 65%;
  margin-right: auto;
}

.pin {
  cursor: pointer;
  z-index: 6;
}

.pin.vdp {
  position: relative;
  top: auto;
  right: auto;
  z-index: 6;
}

.pin img,
.pin span {
  display: inline-block;
  vertical-align: middle;
}

.pin.vdp span {
  margin-left: 0px;
  margin-top: 0px;
}

.pin.active a {
  display: none !important;
}

.pin a.active {
  display: none !important;
}

.pin.active a.active {
  display: inline-block !important;
}

.compare {
  text-align: right;
  position: relative;
  cursor: pointer;
}
.compare label {
  cursor: pointer;
  position: relative;
  padding-left: 17px;
  margin-bottom: 0px;
}
@media (max-width: 450px) {
  .compare {
    display: none !important;
  }
}
.compare input:not(.active) {
  display: none;
}
.compare input {
  position: absolute;
  z-index: -1;
  opacity: 0;
  cursor: pointer;
}
.compare .control__indicator {
  position: absolute;
  top: 0px;
  left: 0px;
  height: 14px;
  width: 14px;
  cursor: pointer;
  background: transparent;
  border-radius: 0px;
  border: 1px solid #fff;
}
.compare .control:hover input ~ .control__indicator,
.compare .control input:focus ~ .control__indicator {
  background: transparent;
}
.compare .control input:checked ~ .control__indicator {
  background: #343a40;
}
.compare .control__indicator:after {
  font-family: "Font Awesome 5 Pro";
  content: "";
  position: absolute;
  display: none;
  font-size: 10px;
  -webkit-transition: 0.3s all ease;
  -o-transition: 0.3s all ease;
  transition: 0.3s all ease;
}
.compare .control input:checked ~ .control__indicator:after {
  display: block;
  color: #fff;
}
.compare .control--checkbox .control__indicator:after {
  top: 56%;
  left: 52%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

html,
body {
  font-size: 14px;
  font-weight: normal;
  line-height: normal;
  font-family: "Neue Haas Grotesk Display Pro" !important;
  margin: 0;
  color: #fff;
  background-color: #fff;
  font-weight: 500;
}

::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0);
  background-color: #262626;
  border-radius: 10px;
}

::-webkit-scrollbar {
  width: 5px;
  background-color: #262626;
}

::-webkit-scrollbar-thumb {
  border-radius: 3px;
  background-color: #fff;
}

.page-margin {
  padding-top: 170px;
}
@media (max-width: 820.99px) {
  .page-margin {
    padding-top: 130px;
  }
}

.font-oswald {
  font-family: "Oswald";
}

.font-goodtimes {
  font-family: "good-times";
}

.form-control {
  color: #3E3E3E;
  outline: none;
  font-size: 14px;
  height: 48px;
  font-weight: 400;
  border-radius: 0px;
  padding: 0px 20px;
  color: #000;
  background-color: #fff;
  box-shadow: 0px 3px 6px #a7a7a752;
  text-transform: capitalize;
  cursor: pointer;
  border-radius: 0px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  display: flex;
  align-items: center;
  border: 1px solid #C1C1C1;
}
.form-control::placeholder {
  color: #3C3C3C;
  font-size: 14px;
}

textarea.form-control {
  min-height: 160px;
  outline: none;
  box-shadow: none;
}

select.form-control:not([size]):not([multiple]) {
  height: 48px;
}

@media (max-width: 1199px) {
  .page-id-30 .container {
    max-width: 1140px;
  }
}

header.shrink {
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  box-shadow: 0 1px 3px rgba(0,0,0,0.4);
  padding: 12px 0px;
  z-index: 99999;
  background-color: transparent;
}
header.addbg {
  background-color: #000 !important;
  box-shadow: 0 2px 6px rgba(0,0,0,0.8);
}
/* No gradient overlay needed - header uses solid bg via .addbg */

header.shrink nav.navbar {
  transition: all 0.4s ease-in-out;
  padding-top: 0px;
  padding-bottom: 0px;
}
@media (max-width: 450.99px) {
  header.shrink nav.navbar {
    padding: 0.5rem 1rem;
  }
}

header {
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
}
@media (max-width: 820.99px) {
  header .navbar-brand {
    width: 170px;
  }
  header .head-call-to-actions {
    padding-right: 70px;
  }
  header .head-call-to-actions a img {
    width: 28px;
  }
  header .head-call-to-actions a img.head-location-icon {
    width: 22px;
  }
}
@media (max-width: 450.99px) {
  header {
    height: 96px;
    background-color: #000 !important;
  }
  header .navbar-brand {
    width: 180px;
  }
  header .head-call-to-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-left: auto;
    padding-top: 15px;
    padding-left: 0px;
    padding-right: 75px;
  }
  header .head-call-to-actions a img {
    width: 26px;
  }
  header .head-call-to-actions a img.head-location-icon {
    width: 20px;
  }
  header .navbar-collapse .navbar-nav {
    padding: 0px 15px;
    align-items: flex-start;
  }
}
header .header-top {
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 6px;
  margin-bottom: 4px;
}
header .header-top a {
  color: #fff;
  font-family: "Oswald", sans-serif;
  font-weight: 300;
  font-size: 13px;
}
header .navbar-collapse.show {
  background: #000000cc;
  margin-top: 10px;
  padding: 15px 0px;
  position: absolute;
  width: 100%;
  transition: all 0.4s ease 0s;
}
header .head-collection {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
header .head-collection a {
  font-weight: 500;
}
@media (max-width: 1024.99px) {
  header .head-collection a {
    font-size: 12px;
  }
}
@media (max-width: 1024.99px) {
  header .head-collection .head-collection-center a img {
    max-width: 150px;
  }
}
@media (max-width: 768.99px) {
  header .mobile-header .navbar-brand {
    max-width: 180px;
  }
}
@media (max-width: 450.99px) {
  header .mobile-header .navbar-brand {
    max-width: 180px;
    width: 100%;
  }
}
header .select-css {
  position: relative;
}

.sell-vehicle {
  position: relative;
  z-index: 99;
}
.sell-vehicle::before {
  content: " ";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  min-height: 360px;
  background-color: #000308;
  width: 100%;
  z-index: -1;
}
@media (max-width: 820.99px) {
  .sell-vehicle::before {
    min-height: 50vh;
  }
}
@media (max-width: 450.99px) {
  .sell-vehicle::before {
    display: none;
  }
}
.sell-vehicle .section-heading h2 {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-flow: column;
  font-family: "good-times";
}
.sell-vehicle .section-heading h2 span {
  font-size: 50px;
}
@media (max-width: 820.99px) {
  .sell-vehicle .section-heading h2 {
    font-size: 20px;
  }
  .sell-vehicle .section-heading h2 span {
    font-size: 30px;
    margin: 0;
  }
}
@media (max-width: 450.99px) {
  .sell-vehicle .section-heading h2 {
    align-items: center;
  }
  .sell-vehicle .section-heading h2 span {
    font-size: 35px;
    margin: 0;
  }
}
.sell-vehicle .sell-car-cards {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
}
@media (max-width: 820.99px) {
  .sell-vehicle .sell-car-cards {
    flex-direction: column;
    align-items: flex-start;
  }
}
.sell-vehicle .sell-car-cards .vehicle-card {
  max-width: 32%;
  display: flex;
  align-items: flex-start;
  flex-flow: column;
}
.sell-vehicle .sell-car-cards .vehicle-card.border-lr {
  border-left: 1px solid #fff;
  border-right: 1px solid #fff;
  padding: 0 16px 0 25px;
}
.sell-vehicle .sell-car-cards .vehicle-card h3 {
  font-size: 18px;
  font-weight: 400;
  font-family: "Oswald";
}
.sell-vehicle .sell-car-cards .vehicle-card .vehicle-card-text {
  display: flex;
  align-items: center;
}
.sell-vehicle .sell-car-cards .vehicle-card .vehicle-card-text span {
  font-family: "good-times";
  font-size: 36px;
  margin-right: 6px;
  color: #FFFD00;
}
.sell-vehicle .sell-car-cards .vehicle-card .vehicle-card-text p {
  font-size: 16px;
}
@media (max-width: 820.99px) {
  .sell-vehicle .sell-car-cards .vehicle-card {
    max-width: unset;
    width: 100%;
    align-items: flex-start;
    flex-flow: column;
    text-align: left;
    margin-bottom: 25px;
  }
  .sell-vehicle .sell-car-cards .vehicle-card.border-lr {
    border: none;
    padding: 0;
  }
  .sell-vehicle .sell-car-cards .vehicle-card h3 {
    margin-top: 20px;
  }
  .sell-vehicle .sell-car-cards .vehicle-card p {
    max-width: 75%;
  }
}
@media (max-width: 425px) {
  .sell-vehicle .sell-car-cards .vehicle-card {
    align-items: flex-start;
  }
  .sell-vehicle .sell-car-cards .vehicle-card .vehicle-card-text {
    align-items: center;
    flex-flow: column;
  }
  .sell-vehicle .sell-car-cards .vehicle-card .vehicle-card-text p {
    max-width: unset;
    text-align: center;
  }
}
.sell-vehicle .mobile-hide {
  display: none;
}
@media (max-width: 450.99px) {
  .sell-vehicle {
    background-color: #000308;
  }
  .sell-vehicle .mobile-hide {
    display: inline-block;
  }
}

.consign-section {
  position: relative;
  background-image:  url('/assets/images/consign-bg.png');
  background-repeat: no-repeat;
  background-size: cover;
  padding-bottom: 50px;
}
@media (max-width: 450.99px) {
  .consign-section {
    background-position: center;
    background-image: linear-gradient(to bottom, #d0d0d0, #dcdcdc, #e7e7e7, #f3f3f3, #ffffff);
    border-bottom: 1px solid #d0d0d0;
  }
}
.consign-section .sell-buy-block {
  position: relative;
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: -60px;
}
@media (max-width: 820.99px) {
  .consign-section .sell-buy-block {
    margin-top: -90px;
  }
}
.consign-section .sell-buy-block::before {
  content: " ";
  position: absolute;
  left: 0;
  top: 16px;
  right: 0;
  width: 100%;
  z-index: -1;
  background-image:  url('/assets/images/consign-overlay.png');
  background-repeat: no-repeat;
  background-size: cover;
  height: 100px;
}
@media (max-width: 820.99px) {
  .consign-section .sell-buy-block::before {
    top: 0;
    height: 85px;
  }
}
.consign-section .sell-buy-block .sell-buy-img {
  width: 60%;
  margin-left: -30px;
}
@media (max-width: 820.99px) {
  .consign-section .sell-buy-block .sell-buy-img {
    margin-left: -15px;
    width: 50%;
  }
}
@media (max-width: 450.99px) {
  .consign-section .sell-buy-block .sell-buy-img {
    display: none;
  }
}
.consign-section .sell-buy-block .sell-buy-text {
  margin-top: -25px;
  padding-right: 25px;
}
@media (max-width: 820.99px) {
  .consign-section .sell-buy-block .sell-buy-text {
    margin-top: 0;
    padding-right: 15px;
  }
}
.consign-section .sell-buy-block .sell-buy-text p {
  font-size: 17px;
  text-transform: uppercase;
  font-weight: 300;
  font-family: "Oswald";
}
.consign-section .sell-buy-block .sell-buy-text h3 {
  font-size: 30px;
  font-weight: 400;
  font-family: "Oswald";
  display: flex;
  align-items: center;
}
@media (max-width: 820.99px) {
  .consign-section .sell-buy-block .sell-buy-text h3 {
    font-size: 24px;
  }
}
.consign-section .sell-buy-block .sell-buy-text h3 img {
  margin-left: 15px;
}
.consign-section .section-heading {
  border-top: 5px solid #3E3E3E;
  padding-top: 30px;
  margin-top: 15px;
}
@media (max-width: 450.99px) {
  .consign-section .section-heading {
    border: navajowhite;
  }
}
.consign-section .section-heading h2 {
  display: inline-flex;
  justify-content: center;
  align-items: flex-start;
  flex-flow: column;
  font-family: "good-times";
  color: #3E3E3E;
}
.consign-section .section-heading h2 span {
  font-size: 50px;
}
@media (max-width: 820.99px) {
  .consign-section .section-heading h2 {
    font-size: 20px;
  }
  .consign-section .section-heading h2 span {
    font-size: 30px;
    margin: 0;
  }
}
.consign-section .section-heading p {
  color: #3E3E3E;
  font-size: 18px;
  line-height: 25px;
  font-weight: 500;
  font-family: "Oswald", sans-serif;
}
@media (max-width: 820.99px) {
  .consign-section .section-heading p {
    font-size: 16px;
  }
}
.consign-section .consign-number {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 15px;
}
@media (max-width: 820.99px) {
  .consign-section .consign-number {
    flex-flow: column;
    align-items: flex-start;
  }
}
.consign-section .consign-number .need-more p {
  color: #3E3E3E;
  font-weight: 500;
  text-transform: uppercase;
  display: inline-block;
  margin: 0;
  font-size: 18px;
  font-family: "Oswald";
}
@media (max-width: 820.99px) {
  .consign-section .consign-number .need-more p {
    font-size: 16px;
  }
}
.consign-section .consign-number .need-more a {
  font-size: 18px;
  font-family: "Oswald";
  color: #3E3E3E;
  font-weight: 500;
  text-transform: uppercase;
}
@media (max-width: 820.99px) {
  .consign-section .consign-number .need-more a {
    font-size: 16px;
  }
}
@media (max-width: 820.99px) {
  .consign-section .consign-number .need-more {
    margin-bottom: 15px;
  }
}
@media (max-width: 450.99px) {
  .consign-section .consign-number {
    display: none;
  }
}
.consign-section .mobile-show {
  display: none;
}
@media (max-width: 450.99px) {
  .consign-section .mobile-show {
    display: block;
    margin-top: 10px;
    padding: 25px;
  }
  .consign-section .mobile-show::before {
    border-radius: 10px;
    height: 175px;
  }
  .consign-section .mobile-show .sell-buy-text p {
    font-size: 20px;
    font-weight: 400;
  }
  .consign-section .mobile-show .sell-buy-text h3 {
    font-size: 40px;
    display: unset;
  }
  .consign-section .desktop-show {
    display: none;
  }
  .consign-section #consignment_form {
    display: none;
  }
}

.trend-heading {
  font-size: 26px;
  color: #3E3E3E;
  text-align: center;
  text-transform: uppercase;
  font-family: "good-times";
  font-weight: 600;
}
@media (max-width: 820.99px) {
  .trend-heading {
    font-size: 20px;
  }
}
@media (max-width: 450.99px) {
  .trend-heading {
    font-size: 16px;
  }
}

.trending-section .trend-car-cards {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  padding: 0 15px;
}
@media (max-width: 450.99px) {
  .trending-section .trend-car-cards {
    justify-content: center;
    display: block;
  }
}
.trending-section .trend-car-cards .inventory-card {
  padding: 0;
  cursor: pointer;
  margin: 0px 0px 30px 0px;
  background-color: #fff;
  box-shadow: 0px 3px 10px #00000066;
  font-family: "Oswald", sans-serif;
}
@media (max-width: 1199px) {
  .trending-section .trend-car-cards .inventory-card {
    max-width: 33.3%;
  }
}
@media (max-width: 820.99px) {
  .trending-section .trend-car-cards .inventory-card {
    max-width: 48.5%;
  }
}
@media (max-width: 450.99px) {
  .trending-section .trend-car-cards .inventory-card {
    max-width: 100%;
    margin-left: 0px;
  }
}
.trending-section .trend-car-cards .inventory-card .single-car {
  position: relative;
  border-radius: 10px;
  font-size: 16px;
  font-family: "Oswald", sans-serif;
}
.trending-section .trend-car-cards .inventory-card .single-car-name {
  color: #3E3E3E;
  line-height: 20px;
  font-weight: 400;
  font-size: 14px;
  padding: 5px 8px;
}
.trending-section .trend-car-cards .inventory-card .single-car-name span {
  font-size: 16px;
  display: inline-block;
  margin-top: 3px;
}
.trending-section .trend-car-cards .inventory-card .single-car-image {
  max-height: 250px;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  position: relative;
}
.trending-section .trend-car-cards .inventory-card .single-car-footer {
  padding: 8px 0px;
  color: #3E3E3E;
}
.trending-section .trend-car-cards .inventory-card .single-car-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 450.99px) {
  .trending-section .trend-car-cards .inventory-card .single-car-footer ul {
    justify-content: space-evenly !important;
  }
}
.trending-section .trend-car-cards .inventory-card .single-car-footer ul li {
  border-radius: 4px;
  font-size: 12px;
  padding: 5px;
  border: 1px solid #707070;
  color: #fff;
  font-weight: 500;
  text-transform: capitalize;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
}
.trending-section .trend-car-cards .inventory-card .single-car-footer ul li:hover {
  background-color: #3E3E3E;
}
@media (max-width: 450.99px) {
  .trending-section .trend-car-cards .inventory-card .single-car-footer ul li {
    font-size: 14px;
  }
}
@media (max-width: 450.99px) {
  .trending-section .trend-car-cards .inventory-card .single-car-footer ul .compare {
    display: none;
  }
}
.trending-section .trend-car-cards .inventory-card .single-car-footer ul a {
  text-transform: capitalize;
  color: #fff;
}
.trending-section .trend-car-cards .inventory-card .single-car-footer img {
  width: 14px !important;
}
.trending-section .trend-car-cards .inventory-card .single-car-price {
  color: #3E3E3E;
  height: 160px;
  background: #fff;
  border-radius: 0px 0px 6px 6px;
}
@media (max-width: 820.99px) {
  .trending-section .trend-car-cards .inventory-card .single-car-price {
    height: 180px;
  }
}
.trending-section .trend-car-cards .inventory-card .single-car-price .view-price {
  background: #fff;
  color: #3E3E3E;
  padding: 10px 20px;
  margin-left: auto;
  text-transform: uppercase;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
}
.trending-section .trend-car-cards .inventory-card .single-car-price .view-price:hover {
  text-decoration: none;
}
.trending-section .trend-car-cards .inventory-card .single-car-overlay {
  position: absolute;
  top: 0px;
  width: 100%;
  height: 100%;
  transform: translateY(227px);
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  left: 0;
  overflow: hidden;
  color: #3E3E3E;
}
@media (max-width: 1440.99px) {
  .trending-section .trend-car-cards .inventory-card .single-car-overlay {
    transform: translateY(212px);
  }
}
@media (max-width: 1366.99px) {
  .trending-section .trend-car-cards .inventory-card .single-car-overlay {
    transform: translateY(200px);
  }
}
@media (max-width: 1024.99px) {
  .trending-section .trend-car-cards .inventory-card .single-car-overlay {
    transform: translateY(214px);
  }
}
@media (max-width: 450.99px) {
  .trending-section .trend-car-cards .inventory-card .single-car-overlay {
    transform: translateY(232px);
  }
}
.trending-section .trend-car-cards .inventory-card .single-car-overlay p {
  margin-bottom: 0px;
  padding-bottom: 0px;
  display: inline-block;
  width: 40%;
}
.trending-section .trend-car-cards .inventory-card .single-car-overlay .single-car-name {
  background-color: #fff;
  padding: 9px 15px 5px 15px;
}
@media (max-width: 820.99px) {
  .trending-section .trend-car-cards .inventory-card .single-car-overlay .single-car-name {
    padding-bottom: 0px;
  }
}
.trending-section .trend-car-cards .inventory-card .single-car-overlay .single-car-name .car-name-price {
  width: 100%;
  color: #0B0B0B;
  font-weight: bold;
}
@media (max-width: 1024.99px) {
  .trending-section .trend-car-cards .inventory-card .single-car-overlay .single-car-name .car-name-price {
    margin-bottom: 6px;
  }
}
@media (max-width: 450.99px) {
  .trending-section .trend-car-cards .inventory-card .single-car-overlay .single-car-name .car-name-price {
    font-size: 16px;
  }
}
.trending-section .trend-car-cards .inventory-card .single-car-overlay .single-car-des {
  padding: 6px 15px 10px 15px;
  opacity: 0;
  display: none;
}
.trending-section .trend-car-cards .inventory-card .single-car-overlay .single-car-des p {
  width: 100%;
  font-size: 13px;
  line-height: 19px;
  color: #525252;
  font-family: "Oswald", sans-serif;
  font-weight: 400;
  display: -webkit-box;
  max-width: 100%;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 0;
}
.trending-section .trend-car-cards .inventory-card .single-car-overlay .single-car-des .read-more-link {
  color: #3E3E3E;
  font-weight: 600;
  font-size: 12px;
  text-decoration: underline;
  font-family: "Oswald", sans-serif;
  white-space: nowrap;
}
@media (max-width: 450.99px) {
  .trending-section .trend-car-cards .inventory-card .single-car-overlay .single-car-des p {
    font-size: 15px;
  }
}
.trending-section .trend-car-cards .inventory-card .single-car-overlay .single-car-amount {
  padding: 0px 15px 6px 15px;
  position: relative;
}
.trending-section .trend-car-cards .inventory-card .single-car-overlay .single-car-amount span {
  font-weight: 600;
  font-family: "Oswald", sans-serif;
  font-size: 10px;
  color: #000;
  display: block;
}
@media (max-width: 450.99px) {
  .trending-section .trend-car-cards .inventory-card .single-car-overlay .single-car-amount span {
    font-size: 14px;
  }
}
.trending-section .trend-car-cards .inventory-card .single-car-overlay .single-car-amount p {
  font-family: "Oswald", sans-serif;
  font-size: 17px;
  color: #000;
  font-weight: 600;
}
.trending-section .trend-car-cards .inventory-card .single-car-overlay .single-car-amount a.mobile-vimore-btn {
  display: none;
}
@media (max-width: 450.99px) {
  .trending-section .trend-car-cards .inventory-card .single-car-overlay .single-car-amount {
    padding: 0px 15px 10px 15px;
    font-size: 15px;
  }
  .trending-section .trend-car-cards .inventory-card .single-car-overlay .single-car-amount a.mobile-vimore-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fd7e14;
    position: absolute;
    bottom: 10px;
    left: unset;
    right: 15px;
    width: 34%;
    border: none;
    height: 36px;
    font-size: 14px;
    border-radius: 45px;
    font-weight: 400;
    font-family: "Oswald", sans-serif;
    text-transform: capitalize;
    background: #343a40;
    transition: all 0.5s ease-in-out;
  }
}
.trending-section .trend-car-cards .inventory-card .single-car-overlay ul {
  position: relative;
  max-height: 220px;
  overflow: auto;
  padding: 4px 15px;
}
.trending-section .trend-car-cards .inventory-card .single-car-overlay ul li {
  color: #000;
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 4px;
  text-transform: capitalize;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.trending-section .trend-car-cards .inventory-card .single-car-overlay ul li p {
  margin: 0;
  display: inline-block;
  width: 42%;
  font-weight: 700;
  font-size: 13px;
  color: #000;
  font-family: "Oswald", sans-serif;
}
.trending-section .trend-car-cards .inventory-card .single-car-overlay ul li span {
  width: 58%;
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-weight: 500;
  font-size: 13px;
}
@media (max-width: 450.99px) {
  .trending-section .trend-car-cards .inventory-card .single-car-overlay ul {
    padding-top: 4px;
  }
}
.trending-section .trend-car-cards .inventory-card .single-car-overlay a {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  position: absolute;
  bottom: 20px;
  left: 0px;
  right: 0px;
  margin: 0px auto;
  width: 62%;
  border: none;
  height: 52px;
  font-size: 18px;
  border-radius: 0px;
  font-weight: 400;
  font-family: "Oswald";
  text-transform: uppercase;
  background: #3E3E3E;
  transition: all 0.5s ease-in-out;
}
@media (max-width: 1024.99px) {
  .trending-section .trend-car-cards .inventory-card .single-car-overlay a {
    width: 50%;
    font-size: 14px;
    height: 30px;
  }
}
.trending-section .trend-car-cards .inventory-card .single-car-details {
  position: relative;
  overflow: hidden;
}
.trending-section .trend-car-cards .inventory-card .single-car-details .single-car-image img {
  max-height: 230px;
  height: 230px;
  width: 100%;
  object-fit: cover;
  display: block;
}
.trending-section .trend-car-cards .inventory-card .single-car-details .single-car-image img.overlay {
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: auto;
}
.trending-section .trend-car-cards .inventory-card .single-car-details .single-car-image .resized-lease {
  position: absolute;
  min-height: auto;
  height: auto;
  right: 0;
  bottom: 0px;
  width: 50%;
  height: auto;
}
.trending-section .trend-car-cards .inventory-card .single-car:hover .single-car-overlay {
  transform: translateY(0);
  background: #fff;
  max-height: 100%;
  transform-origin: bottom;
  top: 0px;
}
@media (max-width: 450.99px) {
  .trending-section .trend-car-cards .inventory-card .single-car:hover .single-car-overlay {
    transform: translateY(232px);
  }
}
.trending-section .trend-car-cards .inventory-card .single-car:hover .single-car-overlay ul {
  opacity: 1;
  padding: 10px 15px;
  display: block;
  margin-bottom: 0;
}
.trending-section .trend-car-cards .inventory-card .single-car:hover .single-car-overlay ul li {
  color: #000;
}
.trending-section .trend-car-cards .inventory-card .single-car:hover .single-car-overlay ul li span {
  font-size: 14px;
  font-weight: 500;
}
.trending-section .trend-car-cards .inventory-card .single-car:hover .single-car-des {
  display: block;
  opacity: 1;
}
.trending-section .trend-car-cards .inventory-card .single-car:hover .single-car-name {
  color: #343a40;
  border: 0;
}
.trending-section .trend-car-cards .inventory-card .single-car:hover .single-car-image {
  opacity: 0;
}
@media (max-width: 450.99px) {
  .trending-section .trend-car-cards .inventory-card .single-car:hover .single-car-image {
    opacity: 1;
  }
}
.trending-section .trend-car-cards .inventory-card .single-car:hover .single-car-price {
  background: none;
}
.trending-section .trend-car-cards .inventory-card .single-car .single-car-lease {
  background-color: #3E3E3E;
  padding: 11px 8px 8px 8px;
  margin-top: 5px;
  position: relative;
  min-height: 57px;
}
.trending-section .trend-car-cards .inventory-card .single-car .single-car-lease h6 {
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  margin: 0;
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 3px;
}
.trending-section .trend-car-cards .inventory-card .single-car .single-car-lease span {
  font-size: 14px;
}
.trending-section .trend-car-cards .inventory-card .single-car .single-car-lease img {
  position: absolute;
  top: 1px;
  right: 1px;
}
.trending-section .trend-car-cards .inventory-card .single-car-buttons {
  background-color: #D8D8D8;
}
.trending-section .trend-car-cards .inventory-card .single-car-buttons ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0 8px;
}
.trending-section .trend-car-cards .inventory-card .single-car-buttons ul li {
  height: 48px;
  color: #000;
  font-size: 10px;
  font-family: "Oswald", sans-serif;
  display: flex;
  align-items: center;
  font-weight: 700;
  justify-content: center;
  text-transform: uppercase;
  letter-spacing: 0.2px;
  white-space: nowrap;
}
.trending-section .trend-car-cards .inventory-card .single-car-buttons ul li a {
  color: #000;
  font-size: 10px;
  font-weight: 700;
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.2px;
  text-decoration: none;
  display: flex;
  align-items: center;
  white-space: nowrap;
}
.trending-section .trend-car-cards .inventory-card .single-car-buttons ul li a:hover {
  text-decoration: none;
  color: #000;
}
.trending-section .trend-car-cards .inventory-card .single-car-buttons ul li i {
  font-size: 16px;
  margin-right: 5px;
}

@media (max-width: 450.99px) {
  .trending-section .trend-car-cards .inventory-card .single-car-buttons ul {
    justify-content: space-around;
  }
}
.trending-section .owl-carousel .owl-item img {
  display: block;
  vertical-align: middle;
  width: 100%;
}
.trending-section .owl-nav {
  margin: 0px 0px 20px 0px;
}
.trending-section .owl-nav .owl-prev, .trending-section .owl-nav .owl-next {
  color: #000 !important;
}
.trending-section .owl-nav .owl-prev span, .trending-section .owl-nav .owl-next span {
  font-size: 48px;
}
.trending-section .owl-nav .owl-prev {
  position: relative;
  bottom: 350px;
  right: 140px;
}
.trending-section .owl-nav .owl-next {
  position: relative;
  bottom: 350px;
  left: 140px;
}

.service-section {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
@media (max-width: 820.99px) {
  .service-section {
    min-height: 40vh;
  }
}
@media (max-width: 450.99px) {
  .service-section {
    min-height: unset;
  }
  .service-section .service-content-block a {
    border-radius: 8px;
    min-width: 240px;
    height: 56px;
  }
}
.service-section.service-plus {
  position: relative;
}
.service-section.service-plus::before {
  content: " ";
  position: absolute;
  bottom: -50px;
  left: 3px;
  right: 0;
  background-image:  url('/assets/images/service-arrow.svg');
  background-repeat: no-repeat;
  background-size: cover;
  height: 100px;
  width: 100px;
  margin: 0 auto;
  z-index: 999;
}
@media (max-width: 820.99px) {
  .service-section.service-plus::before {
    height: 70px;
    width: 70px;
    bottom: -35px;
  }
}
@media (max-width: 450.99px) {
  .service-section.service-plus::before {
    display: none;
  }
}
.service-section.service-first {
  background-image:  url('/assets/images/service-1-bg.png');
}
.service-section.service-first .yellow-border-left {
  position: relative;
}
.service-section.service-first .yellow-border-left::before {
  content: " ";
  border-left: 2px solid #FFFD00;
  position: absolute;
  top: 0;
  left: 130px;
  min-height: 100vh;
}
@media (max-width: 820.99px) {
  .service-section.service-first .yellow-border-left {
    display: none;
  }
}
.service-section.service-first .service-content-block::after {
  content: " ";
  position: absolute;
  right: 130px;
  top: 0;
  min-height: 100vh;
  z-index: -1;
  border-right: 2px solid #FFFD00;
}
@media (max-width: 820.99px) {
  .service-section.service-first .service-content-block::after {
    min-height: 40vh;
    border: none;
  }
}
.service-section.service-first .service-content-block::before {
  border-left: 2px solid #FFFD00;
}
@media (max-width: 820.99px) {
  .service-section.service-first .service-content-block::before {
    border: none;
    min-height: 40vh;
  }
}
.service-section.service-first .service-content-block {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-flow: column;
  position: relative;
  z-index: 99;
  min-height: 100vh;
  padding: 110px 250px 110px 110px;
}
@media (max-width: 1366.99px) {
  .service-section.service-first .service-content-block {
    padding: 110px 200px 110px 70px;
  }
}
@media (max-width: 820.99px) {
  .service-section.service-first .service-content-block {
    min-height: 40vh;
  }
}
@media (max-width: 768.99px) {
  .service-section.service-first .service-content-block {
    padding: 40px;
  }
}
@media (max-width: 450.99px) {
  .service-section.service-first .service-content-block {
    padding: 25px 15px;
    text-align: center;
    align-items: center;
  }
}
.service-section.service-first .service-content-block::before {
  content: " ";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  min-height: 100vh;
  background-color: #000000b5;
  width: 100%;
  z-index: -1;
}
@media (max-width: 820.99px) {
  .service-section.service-first .service-content-block::before {
    min-height: 40vh;
    background-color: transparent;
  }
}
.service-section.service-first .service-content-block h2 {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-flow: column;
  font-family: "good-times";
  color: #fff;
}
.service-section.service-first .service-content-block h2 span {
  font-size: 46px;
}
@media (max-width: 820.99px) {
  .service-section.service-first .service-content-block h2 {
    font-size: 20px;
  }
  .service-section.service-first .service-content-block h2 span {
    font-size: 30px;
    margin: 0;
  }
}
@media (max-width: 450.99px) {
  .service-section.service-first .service-content-block h2 {
    align-items: center;
    color: #fff;
  }
}
.service-section.service-first .service-content-block p {
  line-height: 25px;
  font-size: 18px;
  font-weight: 100;
  color: #fff;
}
@media (max-width: 450.99px) {
  .service-section.service-first .service-content-block p {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
  }
}
@media (max-width: 450.99px) {
  .service-section.service-first {
    background-image:  url('/assets/images/service-1-bg.png');
    color: #fff;
  }
}
.service-section.service-second {
  background-image:  url('/assets/images/service-2-bg.png');
}
.service-section.service-second .yellow-border-right {
  position: relative;
}
.service-section.service-second .yellow-border-right::before {
  content: " ";
  border-right: 2px solid #FFFD00;
  position: absolute;
  top: 0;
  right: 130px;
  min-height: 100vh;
}
@media (max-width: 820.99px) {
  .service-section.service-second .yellow-border-right::before {
    min-height: 40vh;
    border: none;
  }
}
.service-section.service-second .yellow-border-right::after {
  content: " ";
  border-left: 2px solid #FFFD00;
  position: absolute;
  top: 0;
  left: 0;
  min-height: 100vh;
}
@media (max-width: 820.99px) {
  .service-section.service-second .yellow-border-right::after {
    min-height: 40vh;
    border: none;
  }
}
@media (max-width: 820.99px) {
  .service-section.service-second .yellow-border-right {
    display: none;
  }
}
.service-section.service-second .service-content-block::after {
  content: " ";
  position: absolute;
  left: 130px;
  top: 0;
  min-height: 100vh;
  z-index: -1;
  border-right: 2px solid #FFFD00;
}
@media (max-width: 820.99px) {
  .service-section.service-second .service-content-block::after {
    min-height: 40vh;
    border: none;
  }
}
.service-section.service-second .service-content-block {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-flow: column;
  position: relative;
  z-index: 99;
  min-height: 100vh;
  padding: 110px 110px 110px 250px;
}
@media (max-width: 1366.99px) {
  .service-section.service-second .service-content-block {
    padding: 110px 110px 110px 200px;
  }
}
@media (max-width: 820.99px) {
  .service-section.service-second .service-content-block {
    min-height: 40vh;
    border: none;
    padding: 110px 200px 110px 70px;
  }
}
@media (max-width: 768.99px) {
  .service-section.service-second .service-content-block {
    padding: 40px;
  }
}
@media (max-width: 450.99px) {
  .service-section.service-second .service-content-block {
    padding: 25px 15px;
    text-align: center;
    align-items: center;
  }
}
.service-section.service-second .service-content-block::before {
  content: " ";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  min-height: 100vh;
  background-color: #000000b5;
  width: 100%;
  z-index: -1;
}
@media (max-width: 820.99px) {
  .service-section.service-second .service-content-block::before {
    min-height: 40vh;
    background-color: transparent;
  }
}
.service-section.service-second .service-content-block h2 {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-flow: column;
  color: #fff;
  font-family: "good-times";
}
.service-section.service-second .service-content-block h2 span {
  font-size: 46px;
}
@media (max-width: 820.99px) {
  .service-section.service-second .service-content-block h2 {
    font-size: 20px;
  }
  .service-section.service-second .service-content-block h2 span {
    font-size: 30px;
    margin: 0;
  }
}
@media (max-width: 450.99px) {
  .service-section.service-second .service-content-block h2 {
    align-items: center;
    color: #fff;
  }
}
.service-section.service-second .service-content-block p {
  line-height: 25px;
  font-size: 18px;
  font-weight: 100;
  color: #fff;
}
@media (max-width: 450.99px) {
  .service-section.service-second .service-content-block p {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
  }
}
@media (max-width: 450.99px) {
  .service-section.service-second {
    background-image:  url('/assets/images/service-2-bg.png');
  }
}
.service-section.service-third {
  background-image:  url('/assets/images/service-3-bg.png');
  min-height: 70vh;
}
@media (max-width: 820.99px) {
  .service-section.service-third {
    min-height: 40vh;
  }
}
@media (max-width: 450.99px) {
  .service-section.service-third {
    background-image:  url('/assets/images/service-3-bg.png');
  }
}
.service-section.service-third .yellow-border-left {
  position: relative;
}
.service-section.service-third .yellow-border-left::before {
  content: " ";
  border-left: 2px solid #FFFD00;
  position: absolute;
  top: 0;
  left: 130px;
  min-height: 70vh;
}
@media (max-width: 820.99px) {
  .service-section.service-third .yellow-border-left::before {
    min-height: 40vh;
  }
}
@media (max-width: 820.99px) {
  .service-section.service-third .yellow-border-left {
    display: none;
  }
}
.service-section.service-third .service-content-block::after {
  content: " ";
  position: absolute;
  right: 130px;
  top: 0;
  min-height: 70vh;
  z-index: -1;
  border-right: 2px solid #FFFD00;
}
@media (max-width: 820.99px) {
  .service-section.service-third .service-content-block::after {
    min-height: 40vh;
    border: none;
  }
}
.service-section.service-third .service-content-block::before {
  border-left: 2px solid #FFFD00;
}
@media (max-width: 820.99px) {
  .service-section.service-third .service-content-block::before {
    border: none;
    min-height: 40vh;
  }
}
.service-section.service-third .service-content-block {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-flow: column;
  position: relative;
  z-index: 99;
  min-height: 70vh;
  padding: 110px 250px 110px 110px;
}
@media (max-width: 1366.99px) {
  .service-section.service-third .service-content-block {
    padding: 110px 200px 110px 70px;
  }
}
@media (max-width: 820.99px) {
  .service-section.service-third .service-content-block {
    min-height: 40vh;
    padding: 110px 200px 110px 70px;
  }
}
@media (max-width: 768.99px) {
  .service-section.service-third .service-content-block {
    padding: 40px;
  }
}
@media (max-width: 450.99px) {
  .service-section.service-third .service-content-block {
    padding: 25px 15px;
    text-align: center;
    align-items: center;
  }
}
.service-section.service-third .service-content-block::before {
  content: " ";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  min-height: 70vh;
  background-color: #000000b5;
  width: 100%;
  z-index: -1;
}
@media (max-width: 820.99px) {
  .service-section.service-third .service-content-block::before {
    min-height: 40vh;
    background-color: transparent;
  }
}
.service-section.service-third .service-content-block h2 {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-flow: column;
  color: #fff;
  font-family: "good-times";
}
.service-section.service-third .service-content-block h2 span {
  font-size: 46px;
}
@media (max-width: 820.99px) {
  .service-section.service-third .service-content-block h2 {
    font-size: 20px;
  }
  .service-section.service-third .service-content-block h2 span {
    font-size: 30px;
    margin: 0;
  }
}
@media (max-width: 450.99px) {
  .service-section.service-third .service-content-block h2 {
    align-items: center;
    color: #fff;
  }
}
.service-section.service-third .service-content-block p {
  line-height: 25px;
  font-size: 18px;
  font-weight: 100;
  color: #fff;
}
@media (max-width: 450.99px) {
  .service-section.service-third .service-content-block p {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
  }
}
.service-section.service-fourth {
  background-image:  url('/assets/images/service-4-bg.png');
  min-height: 70vh;
}
@media (max-width: 820.99px) {
  .service-section.service-fourth {
    min-height: 40vh;
  }
}
@media (max-width: 450.99px) {
  .service-section.service-fourth {
    background-image:  url('/assets/images/service-4-bg.png');
  }
}
.service-section.service-fourth .yellow-border-right {
  position: relative;
}
.service-section.service-fourth .yellow-border-right::before {
  content: " ";
  border-right: 2px solid #FFFD00;
  position: absolute;
  top: 0;
  right: 130px;
  min-height: 70vh;
}
@media (max-width: 820.99px) {
  .service-section.service-fourth .yellow-border-right::before {
    min-height: 40vh;
    border: none;
  }
}
.service-section.service-fourth .yellow-border-right::after {
  content: " ";
  border-left: 2px solid #FFFD00;
  position: absolute;
  top: 0;
  left: 0;
  min-height: 70vh;
}
@media (max-width: 820.99px) {
  .service-section.service-fourth .yellow-border-right::after {
    min-height: 40vh;
    border: none;
  }
}
.service-section.service-fourth .service-content-block::after {
  content: " ";
  position: absolute;
  left: 130px;
  top: 0;
  min-height: 70vh;
  z-index: -1;
  border-right: 2px solid #FFFD00;
}
@media (max-width: 820.99px) {
  .service-section.service-fourth .service-content-block::after {
    min-height: 40vh;
    border: none;
  }
}
.service-section.service-fourth .service-content-block {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-flow: column;
  position: relative;
  z-index: 99;
  min-height: 70vh;
  padding: 110px 110px 110px 250px;
}
@media (max-width: 1366.99px) {
  .service-section.service-fourth .service-content-block {
    padding: 110px 110px 110px 200px;
  }
}
@media (max-width: 820.99px) {
  .service-section.service-fourth .service-content-block {
    min-height: 40vh;
    padding: 110px 200px 110px 70px;
  }
}
@media (max-width: 768.99px) {
  .service-section.service-fourth .service-content-block {
    padding: 40px;
  }
}
@media (max-width: 450.99px) {
  .service-section.service-fourth .service-content-block {
    padding: 25px 15px;
    text-align: center;
    align-items: center;
  }
}
.service-section.service-fourth .service-content-block::before {
  content: " ";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  min-height: 70vh;
  background-color: #000000b5;
  width: 100%;
  z-index: -1;
}
@media (max-width: 820.99px) {
  .service-section.service-fourth .service-content-block::before {
    min-height: 40vh;
    background-color: transparent;
  }
}
.service-section.service-fourth .service-content-block h2 {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-flow: column;
  font-family: "good-times";
  color: #fff;
}
.service-section.service-fourth .service-content-block h2 span {
  font-size: 46px;
}
@media (max-width: 820.99px) {
  .service-section.service-fourth .service-content-block h2 {
    font-size: 20px;
  }
  .service-section.service-fourth .service-content-block h2 span {
    font-size: 30px;
    margin: 0;
  }
}
@media (max-width: 450.99px) {
  .service-section.service-fourth .service-content-block h2 {
    align-items: center;
    color: #fff;
  }
}
.service-section.service-fourth .service-content-block p {
  line-height: 25px;
  font-size: 18px;
  font-weight: 100;
  color: #fff;
}
@media (max-width: 450.99px) {
  .service-section.service-fourth .service-content-block p {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
  }
}

.insta-section ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-around;
}
@media (max-width: 450.99px) {
  .insta-section ul {
    flex-wrap: wrap;
  }
}
.insta-section ul li {
  position: relative;
}
@media (max-width: 820.99px) {
  .insta-section ul li {
    max-width: unset;
  }
}
@media (max-width: 450.99px) {
  .insta-section ul li {
    max-width: 100%;
    width: 100%;
    margin-bottom: 15px;
  }
  .insta-section ul li img {
    width: 90%;
  }
}
.insta-section ul li a {
  position: absolute;
  top: 14px;
  right: 14px;
}
@media (max-width: 450.99px) {
  .insta-section ul li a {
    top: 20px;
    right: 35px;
  }
}

.footer {
  background-color: #3C3C3C;
}
.footer h3 {
  color: #fff;
  text-transform: uppercase;
  font-family: "good-times";
}
.footer .footer-direction {
  background-image:  url('/assets/images/footer-map.png');
  background-size: cover;
  background-repeat: no-repeat;
  object-fit: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
@media (max-width: 450px) {
  .footer .footer-direction {
    min-height: 80vh;
  }
  .footer .footer-direction a img {
    width: 25px;
  }
}
.footer .footer-top-right {
  text-transform: uppercase;
}
.footer .footer-top-right .d-new-grid {
  display: grid;
}
.footer .footer-top-right .f-card {
  margin-bottom: 26px;
}
.footer .footer-top-right .f-card h4 {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  font-family: "Oswald";
}
.footer .footer-top-right .f-card p {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 10px;
  color: #A0A0A0;
  text-transform: capitalize;
}
.footer .footer-top-right .f-card span {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 10px;
  color: #A0A0A0;
  text-transform: capitalize;
}
.footer .footer-top-right .f-card a {
  color: #A0A0A0;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 10px;
  text-transform: capitalize;
}
.footer .footer-top-right .f-card .f-card-min p {
  min-width: 125px;
  display: inline-block;
  text-transform: capitalize;
}
.footer .footer-top-right .footer-btn {
  background-color: #fff !important;
  color: #3E3E3E !important;
  min-width: 270px;
}

.footer-social {
  text-align: center;
}
.footer-social ul.social-icons {
  list-style: none;
  margin: 10px 0;
  padding: 0;
}
@media (max-width: 450.99px) {
  .footer-social ul.social-icons {
    margin-top: 15px;
  }
}
.footer-social ul.social-icons li {
  display: inline-block;
  margin-right: 35px;
}
.footer-social ul.social-icons li:last-child {
  margin-right: 0px;
}
@media (max-width: 450.99px) {
  .footer-social {
    background-color: #3C3C3C;
  }
}

.footer-copyright {
  padding: 30px 0px;
  background-color: #3C3C3C;
}
.footer-copyright p {
  color: #fff;
  font-size: 16px;
  font-weight: 100;
  margin: 0;
}
.footer-copyright a {
  color: #fff;
  font-weight: 100;
  font-size: 16px;
}
.footer-copyright a:hover {
  color: #fff;
}

@media (max-width: 450.9px) {
  .inventory-page .mobile-height .col {
    width: 100%;
    flex-basis: auto;
    margin-bottom: 15px;
  }
}

.invent-cards-section .invent-cards-block {
  position: relative;
  background-color: #F4F4F4;
  box-shadow: 0px 3px 6px #a7a7a79e;
  padding: 15px 15px 20px 15px;
}
.invent-cards-section .invent-cards-block .invent-cards-block-left .col-12.col-md-7.pl-md-0.d-flex {
  position: relative;
}
.invent-cards-section .invent-cards-block .invent-cards-block-left .col-12.col-md-7.pl-md-0.d-flex .overlay {
  position: absolute;
  top: 0;
  right: 0;
  padding-right: 15px;
}
.invent-cards-section .invent-cards-block .invent-cards-block-left img {
  object-fit: cover;
}
.invent-cards-section .invent-cards-block .invent-cards-block-left .single-car-buttons {
  padding-top: 15px;
}
.invent-cards-section .invent-cards-block .invent-cards-block-left .single-car-buttons ul {
  list-style: none;
  margin: 0;
  padding: 0 8px;
}
.invent-cards-section .invent-cards-block .invent-cards-block-left .single-car-buttons ul li {
  display: inline-block;
  margin-right: 20px;
}
.invent-cards-section .invent-cards-block .invent-cards-block-left .single-car-buttons ul li:last-child {
  margin-right: 0;
}
.invent-cards-section .invent-cards-block .invent-cards-block-left .single-car-buttons ul li a {
  color: #000;
  font-weight: 500;
}
@media (max-width: 450.99px) {
  .invent-cards-section .invent-cards-block .invent-cards-block-left .single-car-buttons ul li a {
    font-size: 11px;
  }
}
@media (max-width: 450.99px) {
  .invent-cards-section .invent-cards-block .invent-cards-block-left .single-car-buttons ul li {
    margin-bottom: 15px;
  }
  .invent-cards-section .invent-cards-block .invent-cards-block-left .single-car-buttons ul li:last-child {
    margin-bottom: 0;
  }
}
@media (max-width: 450.99px) {
  .invent-cards-section .invent-cards-block .invent-cards-block-left .single-car-buttons ul {
    display: flex;
    justify-content: space-between;
  }
}
@media (max-width: 450.99px) {
  .invent-cards-section .invent-cards-block .invent-cards-block-left .col-12.col-md-5 {
    display: none;
  }
}
.invent-cards-section .invent-cards-block .invent-cards-block-right {
  color: #000;
}
.invent-cards-section .invent-cards-block .invent-cards-block-right .single-car-overlay .single-car-name p {
  font-family: "good-times";
  font-size: 18px;
}
.invent-cards-section .invent-cards-block .invent-cards-block-right .single-car-overlay .single-car-amount p {
  font-family: "good-times";
  font-size: 18px;
}
.invent-cards-section .invent-cards-block .invent-cards-block-right .single-car-overlay .list-unstyled li {
  color: #000;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 7px;
  text-transform: capitalize;
}
.invent-cards-section .invent-cards-block .invent-cards-block-right .single-car-overlay .list-unstyled li p {
  margin-bottom: 0px;
  padding-bottom: 0px;
  display: inline-block;
  width: 30%;
  text-transform: uppercase;
  font-family: "Oswald";
}
.invent-cards-section .invent-cards-block .invent-cards-block-right .single-car-overlay .list-unstyled li span {
  width: 58%;
  color: #7E7E7E;
  display: inline-block;
  text-transform: uppercase;
  font-family: "Oswald";
}
.invent-cards-section .invent-cards-block .invent-cards-block-right .single-car-overlay .single-car-des p {
  line-height: 20px;
  color: #525252;
  display: -webkit-box;
  max-width: 100%;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.invent-cards-section .invent-cards-block .invent-cards-block-right .single-car-overlay .single-purchase-btns {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 820.99px) {
  .invent-cards-section .invent-cards-block .invent-cards-block-right .single-car-overlay .single-purchase-btns {
    justify-content: flex-start;
  }
  .invent-cards-section .invent-cards-block .invent-cards-block-right .single-car-overlay .single-purchase-btns a {
    margin-right: 20px;
  }
}
.invent-cards-section .invent-cards-block .invent-cards-block-right .single-car-overlay .single-purchase-btns a {
  min-width: 210px;
  min-height: 52px;
}
@media (max-width: 450.99px) {
  .invent-cards-section .invent-cards-block .invent-cards-block-right .single-car-overlay .single-purchase-btns a {
    min-width: 160px;
  }
}

.inventory-details-section {
  padding-bottom: 10px;
  color: #000;
  margin-bottom: 4px;
  position: relative;
  z-index: 9;
}
@media (max-width: 768px) {
  .inventory-details-section {
    margin-top: 0px !important;
    padding-top: 0px !important;
  }
}
.inventory-details-section::after {
  content: " ";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  min-height: 88.5vh;
  background-color: #F4F4F4;
  z-index: -1;
}
@media (max-width: 1440.99px) {
  .inventory-details-section::after {
    min-height: 98vh;
  }
}
@media (max-width: 1024.99px) {
  .inventory-details-section::after {
    min-height: 45vh;
  }
}
@media (max-width: 840.99px) {
  .inventory-details-section::after {
    background-color: transparent;
  }
}
.inventory-details-section .overlay {
  width: 50%;
  position: absolute !important;
  top: 0;
  right: 0;
  margin-right: 15px;
}
.inventory-details-section .d-headfing {
  font-size: 16px;
  font-weight: 700;
}
.inventory-details-section .invent-detail-heading h1 {
  line-height: 35px;
  font-size: 1.75rem;
}
@media (max-width: 820.99px) {
  .inventory-details-section .invent-detail-heading h1 {
    line-height: 30px;
    font-size: 22px;
  }
}
.inventory-details-section .invent-detail-price h6 {
  color: #000;
  font-size: 1.75rem;
}
@media (max-width: 820.99px) {
  .inventory-details-section .invent-detail-price h6 {
    line-height: 30px;
    font-size: 22px;
  }
}
.inventory-details-section .id-left-btns a {
  width: 100%;
}
@media (max-width: 820.99px) {
  .inventory-details-section .id-left-btns a {
    font-size: 14px;
    padding: 0px;
  }
}
@media (max-width: 450.99px) {
  .inventory-details-section .id-left-btns a {
    font-size: 18px;
    height: 50px;
  }
}
.inventory-details-section .car-call-to-action a {
  color: #343434;
  font-size: 13px;
  text-transform: capitalize;
  display: flex;
  align-items: center;
}
.inventory-details-section .car-call-to-action a img {
  vertical-align: middle;
}
.inventory-details-section .car-call-to-action a span {
  margin-left: 0px;
  font-family: "Oswald", sans-serif;
  font-size: 13px;
  font-weight: 600;
}
@media (max-width: 820.99px) {
  .inventory-details-section .car-call-to-action .mobile-call {
    margin-top: 15px;
    flex-direction: row;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start !important;
  }
  .inventory-details-section .car-call-to-action .mobile-call .mobile-center {
    text-align: center;
    width: 40%;
    display: inline-block;
    min-width: auto;
    margin-bottom: 25px;
  }
}
@media (max-width: 450.99px) {
  .inventory-details-section .car-call-to-action a {
    font-size: 14px;
  }
  .inventory-details-section .car-call-to-action .justify-content-between {
    flex-direction: column;
  }
  .inventory-details-section .car-call-to-action .mobile-call {
    margin-top: 15px;
    flex-direction: row;
    display: flex;
    flex-wrap: wrap;
    justify-content: center !important;
  }
  .inventory-details-section .car-call-to-action .mobile-call .mobile-center {
    text-align: center;
    width: 50%;
    display: inline-block;
    min-width: auto;
    margin-bottom: 25px;
  }
}
@media (max-width: 450.99px) and (max-width: 375.99px) {
  .inventory-details-section .car-call-to-action .mobile-call {
    justify-content: center !important;
  }
}
@media (max-width: 450.99px) {
  .inventory-details-section .car-call-to-action .mobile-remove {
    display: none !important;
  }
}
@media (max-width: 450.99px) {
  .inventory-details-section .car-call-to-action .new-call-to-action {
    flex-wrap: wrap;
  }
}
.inventory-details-section .list-view ul {
  list-style: none;
  margin: 0;
}
.inventory-details-section .list-view ul li div {
  min-width: 60%;
  display: inline-block;
  font-weight: 500;
  font-size: 13px;
  color: #7e7e7e;
  text-transform: uppercase;
  font-family: "Oswald";
}
.inventory-details-section .list-view ul li .divfirst {
  min-width: 38%;
  display: inline-block;
  margin-bottom: 0px;
  font-weight: 500;
  color: #000;
  font-family: "Oswald";
  text-transform: uppercase;
}
.inventory-details-section.inventory-tab-back::before {
  content: " ";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background-color: #F4F4F4;
  box-shadow: 0px 6px 6px #00000012;
}
@media (max-width: 1440.99px) {
  .inventory-details-section.inventory-tab-back::before {
    min-height: 12.1vh;
  }
}
@media (max-width: 1024.99px) {
  .inventory-details-section.inventory-tab-back::before {
    min-height: 6.1vh;
  }
}
@media (max-width: 840.99px) {
  .inventory-details-section.inventory-tab-back::before {
    background-color: transparent;
    box-shadow: none;
  }
}
.inventory-details-section.inventory-tab-back::after {
  content: " ";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  min-height: auto;
  background-color: transparent;
}

#photos .photo img {
  cursor: pointer;
}
#photos img {
  cursor: pointer;
}

.other-page-banner {
  position: relative;
  height: 100%;
  min-height: 103vh;
  margin-top: -130px;
  padding-top: 160px;
  background-repeat: no-repeat;
  background-color: #000;
  background-size: contain;
  object-fit: cover;
}
@media (max-width: 450.99px) {
  .other-page-banner {
    margin-top: 0px;
    min-height: 82vh;
  }
}
@media (max-width: 425px) {
  .other-page-banner {
    padding-top: 0px;
  }
}
@media (max-width: 425px) {
  .other-page-banner .nine-first-colm {
    padding-top: 0px !important;
  }
}
.other-page-banner .nine-first-colm .other-page-heading h4 {
  font-family: "good-times";
  font-size: 26px;
}
@media (max-width: 450.99px) {
  .other-page-banner .nine-first-colm .other-page-heading h4 {
    font-size: 20px;
  }
}
.other-page-banner .nine-first-colm .other-page-heading h3 {
  font-size: 50px;
  font-family: "good-times";
}
@media (max-width: 450.99px) {
  .other-page-banner .nine-first-colm .other-page-heading h3 {
    font-size: 35px;
  }
}
.other-page-banner .nine-first-colm .nine-first-colm-p p {
  font-family: "Oswald", sans-serif;
  line-height: 25px;
  font-size: 16px;
  font-weight: 100;
  letter-spacing: 1px;
}
.other-page-banner .nine-first-colm .nine-video-block .nine-video-block-text h4 {
  font-weight: 500;
  font-family: "Oswald";
  font-size: 24px;
  text-transform: uppercase;
}
.other-page-banner .nine-first-colm .nine-video-block .nine-video-block-text p {
  font-family: "Oswald", sans-serif;
  line-height: 22px;
  font-size: 16px;
  letter-spacing: 1px;
}
.other-page-banner .nine-first-colm .nine-context-block p {
  font-family: "Oswald", sans-serif;
  line-height: 25px;
  font-size: 16px;
  font-weight: 100;
  letter-spacing: 1px;
}
.other-page-banner .nine-first-colm .nine-context-block-btn {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.other-page-banner .nine-first-colm .nine-context-block-btn a {
  position: absolute;
  bottom: 20px;
}

.about-us-section .about-us-box.second-about {
  padding-top: 150px;
}
@media (max-width: 450.99px) {
  .about-us-section .about-us-box.second-about {
    padding-top: 0px;
  }
}
.about-us-section .about-us-box h3 {
  font-size: 20px;
  color: #fff;
  font-weight: 500;
  margin-top: 15px;
  padding-left: 15px;
}
.about-us-section .about-us-box h6 {
  font-size: 16px;
  color: #B2B2B2;
  padding-left: 15px;
}
.about-us-section .about-us-box a {
  font-size: 14px;
  color: #00AAEB;
  padding-left: 15px;
}
.about-us-section .about-us-box a img {
  vertical-align: baseline;
  margin-right: 6px;
}
.about-us-section .about-work {
  padding-top: 140px;
}
.about-us-section .about-work h2 {
  display: inline-flex;
  justify-content: center;
  align-items: flex-start;
  flex-flow: column;
  font-family: "good-times";
  color: #fff;
}
.about-us-section .about-work h2 span {
  font-size: 50px;
}
@media (max-width: 820.99px) {
  .about-us-section .about-work h2 {
    font-size: 20px;
  }
  .about-us-section .about-work h2 span {
    font-size: 30px;
    margin: 0;
  }
}
.about-us-section .about-work p {
  font-size: 18px;
  line-height: 25px;
  font-weight: 500;
  color: #B7B7B7;
}
@media (max-width: 820.99px) {
  .about-us-section .about-work p {
    font-size: 16px;
  }
}
.about-us-section .about-work a {
  min-width: 240px;
}

#form_wrap h2 {
  font-family: "Oswald";
  color: #FFFD00;
  font-size: 22px;
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: 15px;
}

.display_name h2 {
  font-family: "Oswald";
  color: #FFFD00;
  font-size: 22px;
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: 15px;
}

@media (max-width: 450.99px) {
  .insta-section {
    display: none;
  }
}
form input.form-control,
form select.form-control,
form textarea,
form textarea.form-control,
form ::placeholder,
form option {
  font-weight: 300;
  font-size: 16px;
  font-family: "Neue Haas Grotesk Display Pro" !important;
}

/*# sourceMappingURL=style.css.map */

/*
     FILE ARCHIVED ON 23:55:04 Feb 07, 2024 AND RETRIEVED FROM THE
     INTERNET ARCHIVE ON 23:54:06 Jun 30, 2026.
     JAVASCRIPT APPENDED BY WAYBACK MACHINE, COPYRIGHT INTERNET ARCHIVE.

     ALL OTHER CONTENT MAY ALSO BE PROTECTED BY COPYRIGHT (17 U.S.C.
     SECTION 108(a)(3)).
*/
/*
playback timings (ms):
  capture_cache.get: 1.055
  load_resource: 123.835
  PetaboxLoader3.resolve: 104.093
  PetaboxLoader3.datanode: 18.444
*/
/* ===== SERVICE SECTION BACKGROUNDS ===== */
.service-section {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 60vh;
    display: flex;
    align-items: center;
}


/* ===== FOOTER ===== */
.footer-bottom {
    border-top: 1px solid #333;
}
.footer-copy {
    color: #888;
    font-size: 13px;
}
.social-icon {
    color: #fff;
    font-size: 18px;
    transition: color 0.3s;
}
.social-icon:hover {
    color: #FFFD00;
    text-decoration: none;
}
.footer-logo img {
    filter: brightness(0.8);
}

/* ===== MOBILE NAV ===== */
@media (max-width: 991.99px) {
    #navbarCollapse .sub-menu {
        display: none;
        padding-left: 15px;
        background: #1e1e1e;
    }
    #navbarCollapse .sub-menu li a {
        font-size: 14px !important;
        padding: 8px 10px !important;
    }
}

/* ===== INVENTORY PAGE ===== */

/* Search pill dropdowns */
.inventory-select {
  appearance: none;
  -webkit-appearance: none;
  background-color: #fff;
  border: 1.5px solid #ccc;
  border-radius: 30px;
  padding: 10px 40px 10px 18px;
  font-family: "Oswald", sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #3E3E3E;
  width: 100%;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23333' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  transition: border-color 0.2s;
}
.inventory-select:focus {
  outline: none;
  border-color: #3B97B2;
}

/* Search button */
.search-inventory #searchfields_holder .inventory-btn {
  background: #3E3E3E;
  color: #fff;
  border: none;
  padding: 10px 30px;
  font-family: "Oswald", sans-serif;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  white-space: nowrap;
  height: 46px;
  transition: background 0.2s;
}
.search-inventory #searchfields_holder .inventory-btn:hover {
  background: #000;
}

/* Tab links available/sold */
.tab-link {
  font-family: "Oswald", sans-serif;
  font-size: 13px;
  color: #777;
  text-transform: uppercase;
  text-decoration: none;
}
.active-tab-link {
  font-family: "Oswald", sans-serif;
  font-size: 13px;
  color: #000;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: underline;
}

/* Inventory card layout */
.invent-cards-block {
  background-color: #F4F4F4;
  box-shadow: 0px 3px 6px rgba(0,0,0,0.15);
  padding: 15px 15px 10px 15px;
  border-radius: 4px;
}

/* ── Image row: fixed height so buttons never get covered ── */
.invent-image-row {
  height: 310px;
  overflow: hidden;
}
.invent-image-row > div {
  height: 310px;
  overflow: hidden;
}

/* Thumbnail column */
.invent-thumbs {
  display: flex;
  flex-direction: column;
  gap: 5px;
  height: 310px;
  overflow: hidden;
}
.invent-thumb-img {
  width: 100%;
  height: 152px;
  object-fit: cover;
  border-radius: 3px;
  display: block;
  flex-shrink: 0;
}

/* Main profile image */
.invent-main-img {
  width: 100%;
  height: 310px;
  object-fit: cover;
  border-radius: 3px;
  display: block;
}

@media (max-width: 767.99px) {
  .invent-image-row,
  .invent-image-row > div,
  .invent-thumbs { height: auto; overflow: visible; }
  .invent-thumb-img { height: 90px; }
  .invent-main-img  { height: 200px; }
}

/* SOLD ribbon diagonal */
.sold-ribbon {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  border-radius: 3px;
}
.sold-ribbon span {
  position: absolute;
  top: 52px;
  left: -55px;
  width: 220px;
  background: linear-gradient(135deg, #6a0dad, #9b59b6);
  color: #fff;
  font-family: "good-times", "Oswald", sans-serif;
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  padding: 10px 0;
  transform: rotate(-35deg);
  transform-origin: center;
  letter-spacing: 3px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.3);
}

/* Right details section */
.invent-cards-block-right {
  padding-top: 10px;
  padding-bottom: 10px;
  display: flex;
  flex-direction: column;
}
.invent-cards-block-right .single-car-overlay {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.invent-cards-block-right .single-purchase-btns {
  margin-top: auto;
  padding-top: 16px;
}
.invent-cards-block-right .single-car-name p {
  font-family: "good-times", "Oswald", sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: #0B0B0B;
  line-height: 1.3;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.invent-cards-block-right .single-car-amount p {
  font-family: "good-times", "Oswald", sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: #0B0B0B;
  margin-bottom: 12px;
}
.invent-cards-block-right .list-unstyled li {
  display: flex;
  align-items: center;
  margin-bottom: 5px;
  font-size: 14px;
}
.invent-cards-block-right .list-unstyled li p {
  margin: 0;
  width: 35%;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  color: #0B0B0B;
  font-size: 13px;
}
.invent-cards-block-right .list-unstyled li span {
  width: 65%;
  font-family: "Oswald", sans-serif;
  font-weight: 400;
  color: #7E7E7E;
  text-transform: uppercase;
  font-size: 13px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.invent-cards-block-right .single-car-des p {
  font-size: 13px;
  line-height: 1.6;
  color: #525252;
  margin-top: 10px;
  margin-bottom: 0;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.invent-cards-block-right .single-purchase-btns {
  display: flex;
  gap: 10px;
  flex-wrap: nowrap;
}
/* VIEW DETAILS — white bg, dark border, dark text */
.invent-cards-block-right .single-purchase-btns .grey-btn {
  background: #fff !important;
  color: #0B0B0B !important;
  border: 2px solid #0B0B0B !important;
  height: 52px;
  font-size: 13px;
  font-weight: 600;
  flex: 1;
  min-width: 0;
  padding: 0 10px;
  letter-spacing: 0.5px;
}
.invent-cards-block-right .single-purchase-btns .grey-btn:hover {
  background: #0B0B0B !important;
  color: #fff !important;
}
/* BUY NOW — green */
.invent-cards-block-right .single-purchase-btns .green-btn {
  height: 52px;
  font-size: 13px;
  font-weight: 600;
  flex: 1;
  min-width: 0;
  padding: 0 10px;
  letter-spacing: 0.5px;
}

/* Save to Collection / Send to Phone / Contact Dealer */
.invent-cards-block-left .single-car-buttons {
  border-top: 1px solid #e0e0e0;
  margin-top: 8px;
}
.invent-cards-block-left .single-car-buttons ul {
  list-style: none;
  margin: 0;
  padding: 8px 0 4px 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 0;
}
.invent-cards-block-left .single-car-buttons ul li {
  margin-right: 18px;
  margin-bottom: 4px;
}
.invent-cards-block-left .single-car-buttons ul li a {
  color: #0B0B0B;
  font-size: 11px;
  font-weight: 600;
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}
.invent-cards-block-left .single-car-buttons ul li a i {
  font-size: 15px;
}

/* Responsive */
@media (max-width: 767.99px) {
  .invent-cards-block-right { padding-top: 15px; }
  .sold-ribbon span { font-size: 20px; width: 160px; top: 35px; left: -45px; }
  .invent-cards-block-left .single-car-buttons ul li { margin-right: 10px; }
  .invent-cards-block-left .single-car-buttons ul li a { font-size: 10px; }
  .invent-cards-block-right .single-purchase-btns { gap: 8px; }
}