.column1 {
  grid-column: span 1;
}

.row1 {
  grid-row: span 1;
}

.column2 {
  grid-column: span 2;
}

.row2 {
  grid-row: span 2;
}

.column3 {
  grid-column: span 3;
}

.row3 {
  grid-row: span 3;
}

.column4 {
  grid-column: span 4;
}

.row4 {
  grid-row: span 4;
}

.column5 {
  grid-column: span 5;
}

.row5 {
  grid-row: span 5;
}

.column6 {
  grid-column: span 6;
}

.row6 {
  grid-row: span 6;
}

.column7 {
  grid-column: span 7;
}

.row7 {
  grid-row: span 7;
}

.column8 {
  grid-column: span 8;
}

.row8 {
  grid-row: span 8;
}

.column9 {
  grid-column: span 9;
}

.row9 {
  grid-row: span 9;
}

.column10 {
  grid-column: span 10;
}

.row10 {
  grid-row: span 10;
}

.column11 {
  grid-column: span 11;
}

.row11 {
  grid-row: span 11;
}

.column12 {
  grid-column: span 12;
}

.row12 {
  grid-row: span 12;
}

/* Global Styles */
body {
  font-size: 100%;
  font-family: "Outfit", sans-serif;
  margin: 0;
  color: #212121;
}

img {
  max-width: 100%;
}

* {
  box-sizing: border-box;
}

a:hover,
a,
a:active {
  text-decoration: none;
  outline: none;
}

p {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 130%;
  margin: 0;
}

.p-container,
.c-container {
  max-width: 1420px;
  margin: auto;
  padding: 0 25px;
}

.p-container-small,
.c-container-small {
  max-width: 960px;
}

.section {
  margin-top: 38px;
}

.section-md {
  padding: 40px 0 0 0;
}

.section-lg {
  padding: 100px 0;
}

.flex {
  display: flex;
}

.flex-middle {
  align-items: center;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-between {
  justify-content: space-between;
}

.p-grid {
  display: grid;
  grid-gap: 28px;
  grid-template-columns: repeat(12, 1fr);
}
.p-grid.p-grid-five {
  grid-template-columns: repeat(5, 1fr);
}
.p-grid.p-grid-six {
  grid-template-columns: repeat(6, 1fr);
}
.p-grid.p-grid-eight {
  grid-template-columns: repeat(8, 1fr);
}
.p-grid.p-grid-small {
  grid-gap: 18px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Outfit", sans-serif;
}

.site-header {
  width: 100%;
  position: sticky;
  top: 0;
  left: 0;
  background: #fff;
  width: 100%;
  z-index: 3;
  box-shadow: 3px 8px 12px rgba(0, 0, 0, 0.031372549);
}
.site-header .header-container .flex {
  width: 100%;
}
.site-header .header-container .flex .logo {
  padding: 15px 0;
  display: inline-block;
}
.site-header .header-container .flex .logo img {
  width: 230px;
  object-fit: cover;
}
.site-header .header-container .flex .header-action-button {
  display: inline-flex;
  gap: 10px;
  align-items: center;
}
.site-header .header-container .flex .login-btn {
  display: inline-flex;
  color: #24272c;
  font-size: 16px;
  align-items: center;
  gap: 5px;
  overflow: hidden;
}
.site-header .header-container .flex .login-btn:hover {
  color: #f85204;
}

.navigation {
  border-top: 1px solid rgba(36, 39, 44, 0.1);
  box-shadow: 0 3px 6px 0 rgba(36, 39, 44, 0.11);
}
.navigation .p-container > .menu-wrap {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navigation .p-container > .menu-wrap > ul {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0 auto 0 0;
  align-self: stretch;
  padding: 0;
}
.navigation .p-container > .menu-wrap > ul > li {
  height: 100%;
  position: relative;
  gap: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 17px 10px;
  transition: 0.2s ease;
}
.navigation .p-container > .menu-wrap > ul > li span {
  font-size: 10px;
}
.navigation .p-container > .menu-wrap > ul > li a {
  color: rgba(36, 39, 44, 0.87);
  font-size: 14px;
  font-weight: 700;
  margin-right: 3px;
  text-transform: uppercase;
}
.navigation .p-container > .menu-wrap > ul > li > ul {
  position: absolute;
  top: 100%;
  left: 0;
  width: 190px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.1215686275);
  margin: 0;
  padding: 0;
  list-style-type: none;
  opacity: 0;
  transition: max-height 0.45s linear, opacity 0.3s linear;
  max-height: 0;
  overflow: hidden;
}
.navigation .p-container > .menu-wrap > ul > li > ul li {
  position: relative;
  padding: 10px 14px 10px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}
.navigation .p-container > .menu-wrap > ul > li > ul li:hover {
  background: rgba(241, 241, 241, 0.0392156863);
}
.navigation .p-container > .menu-wrap > ul > li > ul li > a {
  text-transform: inherit;
  font-size: 15px;
  display: block;
  color: #fff;
  padding: 0;
  font-weight: 500;
}
.navigation .p-container > .menu-wrap > ul > li:hover {
  background: #24272c;
}
.navigation .p-container > .menu-wrap > ul > li:hover ul {
  max-height: 500px;
  border-radius: 0 0 10px 10px;
  opacity: 1;
  transition: max-height 0.45s linear, opacity 0.3s linear;
  background: #24272c;
}
.navigation .p-container > .menu-wrap > ul > li:hover > a,
.navigation .p-container > .menu-wrap > ul > li:hover span {
  color: #fff;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  font-family: "Roboto", sans-serif;
  color: #24272c;
  transition: all 0.35s ease-in-out;
}
.btn-whatsapp i {
  display: inline-block;
  font-size: 20px;
}

.hamburger {
  width: 37px;
  height: 37px;
  padding: 0 7px;
  cursor: pointer;
  display: none;
  vertical-align: middle;
  border: none;
  overflow: hidden;
  background: #f85204;
  border-radius: 5px;
  -webkit-transition: all 0.35s ease-in-out;
}
.hamburger span {
  -webkit-transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  -ms-transition: all 0.35s ease-in-out;
  -o-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
  display: block;
  width: 100%;
  height: 2px;
  background-color: #fff;
  margin-bottom: 6px;
}
.hamburger span:nth-child(2n) {
  width: 60%;
}
.hamburger span:last-child {
  margin-bottom: 0;
}
.hamburger:hover {
  background: #24272c;
}
.hamburger:hover span {
  width: 100%;
}

.black-backdrop {
  z-index: 100;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition-delay: 0.3s;
  background-color: rgba(0, 0, 0, 0.5);
  cursor: pointer;
  transition: all 0.3s ease-out;
  visibility: hidden;
}

.sidenav-wrap {
  position: relative;
}
.sidenav-wrap .responsive--nav {
  z-index: 1000;
  min-height: 100vh;
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: calc(100vh - 40px);
  background-color: #fff;
  box-shadow: 4px 0 24px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-flow: column;
  transition: all 0.3s ease-out;
  transition-delay: 0.3s;
  max-width: 320px;
}
.sidenav-wrap .responsive--nav .responsive-header {
  position: sticky;
  top: 0;
  z-index: 1;
  padding: 10px 25px;
  background: #f1f1f1;
  color: #fff;
}
.sidenav-wrap .responsive--nav .responsive-header img {
  width: 220px;
}
.sidenav-wrap .responsive--nav .responsive-header button {
  background: #f1f1f1;
  color: #f85204;
  cursor: pointer;
  border: none;
  margin: 0;
  border-radius: 10px 0 0 10px;
  padding: 0;
  position: absolute;
  left: -40px;
  top: 0;
  height: 45px;
  width: 50px;
  line-height: 45px;
  font-size: 23px;
}
.sidenav-wrap .responsive--nav .mobile-menu-wrap {
  overflow-y: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.sidenav-wrap .responsive--nav .mobile-menu-wrap > .mobile-menu > ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  overflow-y: auto;
}
.sidenav-wrap .responsive--nav .mobile-menu-wrap > .mobile-menu > ul > li.dropdown {
  position: relative;
}
.sidenav-wrap .responsive--nav .mobile-menu-wrap > .mobile-menu > ul > li.dropdown > span {
  position: absolute;
  right: 0;
  height: 35px;
  width: 35px;
  cursor: pointer;
  top: 8px;
  text-align: center;
  line-height: 35px;
  transition: all 0.35s ease-in-out;
  font-size: 16px;
}
.sidenav-wrap .responsive--nav .mobile-menu-wrap > .mobile-menu > ul > li.dropdown.dropdown-active > span {
  transform: rotate(180deg);
  transition: all 0.35s ease-in-out;
}
.sidenav-wrap .responsive--nav .mobile-menu-wrap > .mobile-menu > ul > li {
  padding: 15px 0 0 0px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1098039216);
}
.sidenav-wrap .responsive--nav .mobile-menu-wrap > .mobile-menu > ul > li > a {
  color: #000;
  align-items: center;
  font-size: 14px;
  text-align: left;
  padding: 0 12px 12px 20px;
  display: inline-block;
  font-weight: 700;
  text-transform: uppercase;
  transition: all 0.35s ease-in-out;
}
.sidenav-wrap .responsive--nav .mobile-menu-wrap > .mobile-menu > ul > li > ul {
  list-style: none;
  padding: 0;
  display: none;
  margin: 0 0 0 0;
  background: #f1f1f1;
}
.sidenav-wrap .responsive--nav .mobile-menu-wrap > .mobile-menu > ul > li > ul > li {
  padding: 10px 12px 10px 18px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1411764706);
  position: relative;
}
.sidenav-wrap .responsive--nav .mobile-menu-wrap > .mobile-menu > ul > li > ul > li:last-child {
  border-bottom: none;
}
.sidenav-wrap .responsive--nav .mobile-menu-wrap > .mobile-menu > ul > li > ul > li > a {
  font-weight: 500;
  text-align: left;
  font-size: 13px;
  color: #000;
  text-transform: uppercase;
  display: inline-block;
  font-weight: 700;
}
.sidenav-wrap .responsive--nav .mobile-menu-wrap > .mobile-menu > ul > li > ul > li > a:hover {
  color: #f85204;
}
.sidenav-wrap .responsive--nav .mobile-menu-wrap > .mobile-menu > ul > li:hover > a {
  color: #f85204;
}
.sidenav-wrap .responsive--nav .responsive-footer {
  width: 100%;
  left: 0;
  bottom: 0;
  margin-top: auto;
  background: #fff;
  padding: 15px;
  text-align: center;
}
.sidenav-wrap .responsive--nav .responsive-footer a {
  width: 100%;
  margin-bottom: 70px;
}
.sidenav-wrap.show__side--menu .black-backdrop {
  opacity: 1;
  visibility: visible;
  transition: all 0.3s ease-out;
}
.sidenav-wrap.show__side--menu .responsive--nav {
  right: 0;
  transition: all 0.4s ease;
}

.stats-wrap {
  margin-bottom: 25px;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.0705882353);
  padding-bottom: 25px;
  font-weight: 500;
}

.stats-col {
  display: flex;
  align-items: center;
  gap: 17px;
}
.stats-col .title {
  font-weight: 600;
  font-size: 18px;
}
.stats-col p {
  margin: 0;
  font-size: 15px;
  color: #fff;
  font-weight: 400;
}
.stats-col img {
  filter: brightness(0) invert(1);
}

.site-footer {
  padding: 30px 0 15px 0;
  background: #24272c;
  position: relative;
}
.site-footer > div {
  position: relative;
  z-index: 1;
}
.site-footer .f-logo {
  text-align: center;
}
.site-footer .f-logo img {
  background: #fff;
  border-radius: 100%;
  width: 110px;
  padding: 4px 0 4px 4px;
  text-align: center;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.site-footer .quick__links ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.site-footer .quick__links ul li {
  padding-bottom: 12px;
}
.site-footer .quick__links ul li a {
  color: rgba(255, 255, 255, 0.6705882353);
  font-weight: 400;
  font-size: 14px;
  position: relative;
  display: inline-block;
}
.site-footer .quick__links ul li:hover a {
  opacity: 1;
  color: #fff;
}

.copyright {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: #fff;
  font-size: 13px;
  font-family: "Roboto", sans-serif;
}

.footer-heading {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
  padding-bottom: 10px;
  display: block;
}

.f-contacts div {
  margin-bottom: 5px;
  line-height: 1.4;
}
.f-contacts div p {
  color: #fff;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.55;
  padding-top: 0;
  margin-bottom: 4px;
  font-family: "Roboto", sans-serif;
  display: inline-block;
}
.f-contacts div p a {
  font-size: inherit;
  margin: 0;
  font-weight: inherit;
}
.f-contacts div a {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
}

.socials {
  margin-top: 15px;
}
.socials span {
  display: block;
  font-size: 14px;
  margin-bottom: 5px;
  color: #fff;
}
.socials a {
  font-weight: 300 !important;
  font-size: 13px !important;
  background: rgba(255, 255, 255, 0.07);
  height: 30px;
  width: 30px;
  border-radius: 48px;
  text-align: center;
  line-height: 30px;
  color: #fff;
  margin: 5px 4px 5px 0;
}
.socials a:hover {
  color: #f85204;
  background: #fff;
}

.btn-wrap {
  position: relative;
  display: inline-block;
}

.tag {
  position: absolute;
  top: -10px;
  left: -10px;
  background: #e7fff0;
  color: #138b4b;
  font-size: 10px;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 6px;
}

.d-btn {
  display: inline-flex;
  background: #f85204;
  color: #fff;
  font-size: 13px;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: "Outfit", sans-serif;
  padding: 10px 15px;
  border-radius: 3px;
  text-decoration: none;
  transition: 0.2s ease;
  border: none;
  justify-content: center;
  cursor: pointer;
}
.d-btn i {
  font-size: 18px;
}
.d-btn:hover {
  background: #24272c;
  color: #fff;
}
.d-btn.d-btn-outline {
  color: #f85204;
  padding: 10px 20px;
  border-radius: 5px;
  text-align: center;
  background: #fff;
  border: 1px solid #f85204;
}
.d-btn.d-btn-outline:hover {
  background: #f85204;
  color: #fff;
}
.d-btn.d-btn-white {
  background: #fff;
  color: #24272c;
}
.d-btn.d-btn-white:hover {
  background: #24272c;
  color: #fff;
}

.form-group input {
  width: 100%;
  height: 45px;
  padding: 0 12px 0 20px;
  outline: none;
  font-weight: 500;
  font-size: 14px;
  border-radius: 8px;
  font-family: "Outfit", sans-serif;
  border: 1px solid rgba(9, 0, 0, 0.0705882353);
  transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.form-group input:focus {
  border-color: #24272c;
}
.form-group select {
  color: rgba(0, 0, 0, 0.7294117647);
  border-radius: 8px;
  font-family: "Outfit", sans-serif;
  font-size: 15px;
  font-weight: 500;
  width: 100%;
  height: 45px;
  cursor: pointer;
  padding: 14px 25px 14px 16px;
  border: 1px solid rgba(9, 0, 0, 0.0705882353);
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTIiIGhlaWdodD0iNiIgdmlld0JveD0iMCAwIDEyIDYiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxwYXRoIGQ9Ik02IDZMMC44MDM4NDcgMC43NUwxMS4xOTYyIDAuNzUwMDAxTDYgNloiIGZpbGw9ImJsYWNrIi8+Cjwvc3ZnPgo=);
  background-position: calc(100% - 14px) 50%;
  background-repeat: no-repeat;
  background-size: 12px 7px;
  line-height: 1.2;
  -webkit-appearance: none;
  -moz-appearance: none;
  text-overflow: "";
}
.form-group select:focus {
  border-color: #24272c;
}
.form-group button.d-btn {
  width: 100%;
  border-radius: 8px;
  padding: 13px 25px;
}

.heading-section,
.section-heading {
  font-size: 15px;
  color: rgba(17, 17, 17, 0.81);
  font-weight: 400;
  margin-bottom: 25px;
  gap: 10px;
}
.heading-section .heading,
.section-heading .heading {
  color: #24272c;
  font-weight: 600;
  font-size: 28px;
  letter-spacing: -0.5px;
  line-height: 1;
  font-family: "Outfit", sans-serif;
}
.heading-section > div,
.section-heading > div {
  display: inline-flex;
  gap: 6px;
  flex-direction: column;
}
.heading-section .btn-arrow,
.section-heading .btn-arrow {
  color: #f85204;
  display: inline-flex;
  margin-top: auto;
  gap: 10px;
  align-items: center;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 12px;
  transition: 0.4s gap ease;
}
.heading-section .btn-arrow i,
.section-heading .btn-arrow i {
  font-size: 20px;
}
.heading-section .btn-arrow:hover,
.section-heading .btn-arrow:hover {
  gap: 15px;
}

.badge {
  font-size: 10px;
  line-height: normal;
  font-weight: 700;
  color: #2b2d42;
  background-color: #fff;
  padding: 5px 9px;
  text-transform: uppercase;
  border-radius: 3px;
}

.vehicle-card {
  position: relative;
  transition: 0.4s;
  display: flex;
  flex: 1 0 auto;
  height: 100%;
  border-radius: 5px;
}
.vehicle-card .vehicle-inner {
  height: 100%;
  transition: 0.3s ease-in-out;
  border-radius: 5px;
  background: #fff;
  width: 100%;
  border: 1px solid rgba(14, 13, 13, 0.14);
  display: flex;
  flex-direction: column;
}
.vehicle-card .vehicle-inner .badge-wrap {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 1;
}
.vehicle-card .vehicle-inner img, .vehicle-card .vehicle-inner iframe {
  border-radius: 5px 5px 0 0;
  transition: 0.2s;
  width: 100%;
  object-fit: cover;
}
.vehicle-card .vehicle-inner iframe {
  height: 230px;
}
.vehicle-card .vehicle-inner:hover img {
  transition: 0.2s;
}
.vehicle-card .vehicle-status {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 1;
}
.vehicle-card .badge-wrap {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 1;
}
.vehicle-card .vehicle-info {
  text-align: left;
  padding: 10px 18px 18px 18px;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.vehicle-card .vehicle-info h3 {
  text-transform: capitalize;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0;
  color: rgba(0, 0, 0, 0.831372549);
  overflow: hidden;
  line-height: 1.3;
  -moz-box-orient: vertical;
  display: -webkit-box;
  margin-bottom: 8px;
}
.vehicle-card .vehicle-info h3 a {
  color: rgba(0, 0, 0, 0.7882352941);
}
.vehicle-card .vehicle-info h3:hover {
  color: #24272c;
}
.vehicle-card .vehicle-info h3:hover a {
  color: inherit;
}
.vehicle-card .vehicle-info p {
  line-height: 1.5;
  -webkit-line-clamp: 3;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: rgba(36, 39, 44, 0.89);
  font-size: 14px;
  font-weight: 400;
  margin-top: 12px;
}
.vehicle-card .vehicle-info .price-info {
  align-items: center;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-bottom: 17px;
  margin-top: 17px;
}
.vehicle-card .vehicle-info .price-info span {
  font-size: 16px;
  color: #24272c;
  font-weight: 600;
  margin-bottom: 0;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.vehicle-card .vehicle-info .price-info span del {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.35);
  font-weight: 600;
  margin-left: 3px;
}
.vehicle-card.thumbnail-card .vehicle-inner {
  flex-direction: inherit;
}
.vehicle-card.thumbnail-card .vehicle-inner .vehicle-image {
  background: #e0e0e2;
  flex: 1;
}
.vehicle-card.thumbnail-card .vehicle-inner .vehicle-image img {
  height: 100%;
  object-fit: contain;
}

.btn-action {
  border-top: 1px solid rgba(17, 17, 17, 0.1294117647);
  display: inline-flex;
  justify-content: space-between;
  padding-top: 17px;
  margin-top: auto;
  width: 100%;
  gap: 8px;
}
.btn-action .d-btn-outline {
  width: 100%;
}

.position-relative {
  position: relative;
}

.d-btn-favourite {
  color: #24272c;
  border: 1px solid rgba(36, 39, 44, 0.2196078431);
  width: 50px;
  height: 38px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
}
.d-btn-favourite svg {
  width: 22px;
  height: 22px;
}
.d-btn-favourite svg path {
  stroke: #24272c;
  stroke-width: 1.3px;
}
.d-btn-favourite:hover {
  background: #24272c;
  color: #fff;
}
.d-btn-favourite:hover svg path {
  stroke: #fff;
}

.slider-wrap {
  position: relative;
}
.slider-wrap .slick-slide {
  padding: 5px;
  margin: 0 5px;
}
.slider-wrap .slick-slider {
  margin: 0 -10px;
}
.slider-wrap .slide-arrows {
  margin-top: 0;
  text-align: center;
  display: flex;
  justify-content: center;
  gap: 10px;
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
}
.slider-wrap .slick-btn {
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 8px 12px 0 rgba(36, 39, 44, 0.15);
  cursor: pointer;
  height: 35px;
  left: 0px;
  border: none;
  position: absolute;
  font-size: 14px;
  top: 50%;
  width: 35px;
  z-index: 99;
  color: #24272c;
}
.slider-wrap .slick-btn.slick-btn-next {
  right: 5px;
  left: inherit;
}
.slider-wrap .slick-btn:hover {
  background: #24272c;
  color: #fff;
}

.brand-item {
  text-align: center;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.1882352941);
  padding: 10px 0;
  border-radius: 10px;
  transition: 0.3s ease;
}
.brand-item img {
  margin-bottom: 5px;
}
.brand-item .brand-title {
  font-size: 14px;
}
.brand-item a {
  color: #24272c;
}
.brand-item:hover {
  transform: scale(1.05);
}

.breadcrumb-wrap {
  padding: 15px 0 0 0;
}
.breadcrumb-wrap .p-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}
.breadcrumb-wrap nav {
  white-space: normal;
  overflow-x: auto;
}
.breadcrumb-wrap nav ul {
  display: flex;
  align-items: center;
  list-style-type: none;
  padding: 0;
  overflow-x: auto;
  white-space: nowrap;
  flex-wrap: inherit;
  margin: 0;
}
.breadcrumb-wrap nav ul li {
  font-size: 13px;
  font-weight: 500;
}
.breadcrumb-wrap nav ul li a {
  color: #111;
  font-size: 13px;
}
.breadcrumb-wrap nav ul li:not(:last-child)::after {
  content: "";
  display: inline-block;
  margin: 0 8px;
  width: 4px;
  height: 7px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNCIgaGVpZ2h0PSI3IiB2aWV3Qm94PSIwIDAgNCA3IiBmaWxsPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTAuMTM3MzI0IDYuODYyOTFDMC4zMTk3OTggNy4wNDU3IDAuNjEzOTkxIDcuMDQ1NyAwLjc5NjQ2NSA2Ljg2MjkxTDMuODkxMDcgMy43NjI5OUM0LjAzNjMxIDMuNjE3NTEgNC4wMzYzMSAzLjM4MjQ5IDMuODkxMDcgMy4yMzcwMUwwLjc5NjQ2NSAwLjEzNzA5QzAuNjEzOTkxIC0wLjA0NTY5NjYgMC4zMTk3OTkgLTAuMDQ1Njk2NiAwLjEzNzMyNCAwLjEzNzA5Qy0wLjA0NTE0OTMgMC4zMTk4NzcgLTAuMDQ1MTQ5MyAwLjYxNDU3NSAwLjEzNzMyNCAwLjc5NzM2MkwyLjgzMzQ3IDMuNTAxODdMMC4xMzM2MDEgNi4yMDYzN0MtMC4wNDUxNDkzIDYuMzg1NDIgLTAuMDQ1MTQ5OCA2LjY4Mzg1IDAuMTM3MzI0IDYuODYyOTFaIiBmaWxsPSIjOTA5MDkxIi8+Cjwvc3ZnPgo=");
}
.breadcrumb-wrap nav ul li.active > a {
  color: #f85204;
}

.ec_breadcrumb_inner {
  padding: 15px 0 15px 0;
  white-space: normal;
  overflow-x: auto;
}
.ec_breadcrumb_inner .ec-breadcrumb-list {
  display: flex;
  align-items: center;
  list-style-type: none;
  padding: 0;
  overflow-x: auto;
  white-space: nowrap;
  flex-wrap: inherit;
  margin: 0;
}
.ec_breadcrumb_inner .ec-breadcrumb-list li {
  font-size: 13px;
  font-weight: 500;
}
.ec_breadcrumb_inner .ec-breadcrumb-list li a {
  color: #111;
  font-size: 13px;
}
.ec_breadcrumb_inner .ec-breadcrumb-list li:not(:last-child)::after {
  content: "";
  display: inline-block;
  margin: 0 8px;
  width: 4px;
  height: 7px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNCIgaGVpZ2h0PSI3IiB2aWV3Qm94PSIwIDAgNCA3IiBmaWxsPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTAuMTM3MzI0IDYuODYyOTFDMC4zMTk3OTggNy4wNDU3IDAuNjEzOTkxIDcuMDQ1NyAwLjc5NjQ2NSA2Ljg2MjkxTDMuODkxMDcgMy43NjI5OUM0LjAzNjMxIDMuNjE3NTEgNC4wMzYzMSAzLjM4MjQ5IDMuODkxMDcgMy4yMzcwMUwwLjc5NjQ2NSAwLjEzNzA5QzAuNjEzOTkxIC0wLjA0NTY5NjYgMC4zMTk3OTkgLTAuMDQ1Njk2NiAwLjEzNzMyNCAwLjEzNzA5Qy0wLjA0NTE0OTMgMC4zMTk4NzcgLTAuMDQ1MTQ5MyAwLjYxNDU3NSAwLjEzNzMyNCAwLjc5NzM2MkwyLjgzMzQ3IDMuNTAxODdMMC4xMzM2MDEgNi4yMDYzN0MtMC4wNDUxNDkzIDYuMzg1NDIgLTAuMDQ1MTQ5OCA2LjY4Mzg1IDAuMTM3MzI0IDYuODYyOTFaIiBmaWxsPSIjOTA5MDkxIi8+Cjwvc3ZnPgo=");
}
.ec_breadcrumb_inner .ec-breadcrumb-list li.active > a {
  color: #f85204;
}

.feature-box {
  gap: 10px;
}
.feature-box span {
  font-weight: 500;
  color: rgba(0, 0, 0, 0.8);
  font-size: 12px;
  position: relative;
  padding-left: 10px;
}
.feature-box span:before {
  content: "";
  background: #24272c;
  height: 6px;
  width: 6px;
  position: absolute;
  left: 0;
  top: 5px;
  border-radius: 100%;
}

.testimonial-card {
  position: relative;
  background: #fff;
  padding: 15px;
  border-radius: 14px;
  border: 1px solid #ccc;
  margin: 0 10px;
}
.testimonial-card .testimonial-icon {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  padding: 8px;
  border-radius: 50%;
}
.testimonial-card .testimonial-icon img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
}
.testimonial-card .review-text {
  font-size: 14px;
  line-height: 1.65;
  color: #000;
  margin-top: 15px;
}
.testimonial-card .author {
  color: rgba(0, 0, 0, 0.8392156863);
  font-size: 13px;
  display: inline-flex;
  gap: 14px;
  align-items: center;
}
.testimonial-card .author .rating {
  display: block;
}
.testimonial-card .author .rating p {
  font-weight: 700;
  font-size: 14px;
  letter-spacing: -0.2px;
  margin-bottom: 5px;
}
.testimonial-card .author .rating i {
  color: #997f1f;
  font-size: 13px;
  margin-right: 1px;
}
.testimonial-card .author img {
  width: 48px;
  height: 48px;
  border: 1px solid #f1f1f1;
  border-radius: 100%;
  object-fit: cover;
}

.booking-form {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10000;
  opacity: 0;
  background: rgba(0, 0, 0, 0.87);
  visibility: hidden;
  transition: 0.3s linear;
  color: #fff;
  overflow-y: auto;
  height: calc(100vh - 20px);
}
.booking-form .container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  text-align: left;
  margin: auto;
  color: #000;
}
.booking-form .container .booking-form-wrap {
  max-width: 450px;
  background: #fff;
  width: 100%;
  border-radius: 8px;
  padding-bottom: 25px;
  overflow-y: auto;
  position: relative;
}
.booking-form .container .booking-form-wrap .close-pop {
  font-size: 30px;
  color: #33366b;
  cursor: pointer;
  display: block;
  position: absolute;
  top: 10px;
  right: 20px;
  transform: rotate(45deg);
}
.booking-form .container .booking-form-wrap h3 {
  font-size: 20px;
  color: #24272c;
  padding: 20px 10px 14px 20px;
  text-transform: uppercase;
  font-family: "Outfit", sans-serif;
  letter-spacing: 0;
  font-weight: 700;
}
.booking-form .container .booking-form-wrap form {
  padding: 0 22px;
}
.booking-form .container .booking-form-wrap form .form-group:not(:last-child) {
  margin-bottom: 14px;
}
.booking-form .container .booking-form-wrap form .form-group label {
  font-size: 15px;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.8);
  margin-bottom: 11px;
  display: block;
}
.booking-form .container .booking-form-wrap form .form-group label strong {
  color: orangered;
  font-weight: 700;
  font-size: 12px;
  opacity: 0.77;
}
.booking-form .container .booking-form-wrap form .form-group input,
.booking-form .container .booking-form-wrap form .form-group textarea {
  background-color: #f1f1f1;
  border-radius: 4px;
  height: 41px;
  font-family: "Outfit", sans-serif;
  width: 100%;
  border: solid 1px rgba(0, 0, 0, 0.14);
  padding: 8px 10px 8px 15px;
  font-size: 13px;
  color: #000;
  font-weight: 800;
}
.booking-form .container .booking-form-wrap form .form-group input:focus,
.booking-form .container .booking-form-wrap form .form-group textarea:focus {
  background: #fff;
  outline: none;
  border-color: #24272c;
}
.booking-form .container .booking-form-wrap form .form-group textarea {
  height: 100px;
}
.booking-form .container .booking-form-wrap form .form-group select {
  background-color: #f1f1f1;
  border: 1px solid rgba(5, 5, 5, 0.1098);
  font-weight: 500;
  border-radius: 4px;
  font-size: 14px;
  font-family: var(--font-heading);
  color: rgba(0, 0, 0, 0.5804);
  width: 100%;
  height: 44px;
  padding-left: 15px;
}
.booking-form .container .all-btn a {
  padding: 16px 25px;
}

.blur {
  filter: blur(5px);
}

body.append_quote-form .booking-form {
  opacity: 1;
  visibility: visible;
}

.form-container .form-content {
  max-width: 520px;
  width: 100%;
  padding: 22px 25px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 1px 11px 25px rgba(0, 0, 0, 0.2705882353);
  margin: auto;
}
.form-container .form-content header {
  font-size: 28px;
  font-weight: 600;
  color: #24272c;
  line-height: 1;
}
.form-container .form-content form {
  margin-top: 25px;
}
.form-container .form-content form .field {
  margin-bottom: 15px;
  position: relative;
  width: 100%;
  border-radius: 5px;
}
.form-container .form-content form .field label {
  margin-bottom: 10px;
  font-size: 15px;
  font-weight: 600;
  opacity: 0.7;
  display: inline-block;
}
.form-container .form-content form .field button {
  display: block;
  width: 100%;
  font-size: 14px;
  padding: 13px 15px;
  display: inline-flex;
  background: #f85204;
  color: #fff;
  font-size: 13px;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: "Outfit", sans-serif;
  border-radius: 3px;
  text-decoration: none;
  transition: 0.2s ease;
  border: none;
  justify-content: center;
  cursor: pointer;
}
.form-container .form-content form .field button:hover {
  background: #24272c;
}
.form-container .form-content form .field i {
  position: absolute;
  right: 13px;
  top: 12px;
  cursor: pointer;
  font-size: 16px;
}
.form-container .form-content form .field input {
  height: 42px;
  outline: none;
  padding: 0 15px 0 18px;
  border: 1px solid #cacaca;
  width: 100%;
  font-size: 16px;
  font-weight: 600;
  border: 1px solid rgba(0, 0, 0, 0.2117647059);
  border-radius: 6px;
  transition: all 0.35s ease-in-out;
}
.form-container .form-content form .field input:focus {
  transition: all 0.35s ease-in-out;
  border-color: #24272c;
}
.form-container .form-content .form-link {
  text-align: center;
  margin: 0px 0 17px 0;
  font-size: 13px;
}
.form-container .form-content .form-link a {
  font-weight: 600;
  border-bottom: 1px solid #24272c;
  font-size: 15px;
  color: #24272c;
  text-decoration: none;
}
.form-container .form-content .form-link a:hover {
  color: #f85204;
}

main {
  display: flex;
  flex-direction: column;
  gap: 38px;
  margin-bottom: 38px;
}

.banner {
  margin-block: 25px;
  position: relative;
  z-index: 1;
}

.banner-wrap {
  position: relative;
}
.banner-wrap:after {
  height: 100%;
  width: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0.27) 100%);
  left: 0;
  bottom: -1px;
  position: absolute;
  content: "";
  border-radius: 10px;
  height: 100%;
  z-index: 1;
}
.banner-wrap .banner-slider {
  z-index: 2;
}
.banner-wrap .banner-text {
  flex: 1;
  position: absolute;
  flex-direction: column;
  justify-content: center;
  top: 100px;
  left: 30px;
}
.banner-wrap .banner-text .title {
  font-size: 45px;
  margin-block-end: 18px;
  line-height: 1.1;
  display: block;
  color: #fff;
  color: #fff;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5607843137);
}
.banner-wrap .banner-text .title span {
  color: #fff;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5607843137);
  display: block;
}
.banner-wrap .banner-text p {
  font-size: 20px;
  color: #fff;
  margin-block-end: 25px;
  font-weight: 300;
}
.banner-wrap .banner-text p span {
  color: #fff;
  font-weight: 600;
}
.banner-wrap .banner-item {
  border-radius: 8px;
  position: relative;
}
.banner-wrap .banner-item img {
  border-radius: 8px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.filter-wrap {
  position: absolute;
  top: calc(100% - 93px);
  left: 30px;
  z-index: 2;
  width: calc(100% - 60px);
}
.filter-wrap .tab > a {
  color: #212121;
  background: #fff;
  border-radius: 90px;
  padding: 6px 12px;
  margin-right: 5px;
  font-size: 14px;
  font-weight: 500;
}
.filter-wrap .tab > a:hover, .filter-wrap .tab > a.active {
  background: #24272c;
  color: #fff;
}
.filter-wrap .tab-container {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  margin-top: 25px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 5px 20px 0px;
}
.filter-wrap .tab-container .p-grid {
  gap: 15px;
  grid-template-columns: repeat(5, 1fr);
}
.filter-wrap .tab-container .form-group select {
  background-color: #fff;
}
.filter-wrap .tab-container .form-group input {
  background-image: url(../img/search-sm.png);
  background-repeat: no-repeat;
  background-position: 12px 9px;
  background-color: #fff;
  padding: 0 12px 0 50px;
}

.recent-block {
  margin-top: 10px;
}

.car-hero-cta {
  color: #fff;
}
.car-hero-cta img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.car-hero-cta .banner-wrap .banner-item {
  height: 400px;
}
.car-hero-cta .banner-wrap .banner-text {
  z-index: 2;
  top: 50%;
  transform: translateY(-50%);
}
.car-hero-cta .banner-wrap .banner-text .title {
  font-weight: 400;
  font-size: 38px;
  margin-block-end: 15px;
}
.car-hero-cta .banner-wrap .banner-text p {
  font-size: 18px;
  margin-block-end: 40px;
  font-weight: 300;
}

.about-section {
  font-family: "Roboto", sans-serif;
}
.about-section .about-title {
  color: #24272c;
  font-weight: 600;
  font-size: 24px;
  line-height: 1;
  margin-bottom: 15px;
}

.intro {
  font-size: 15.6px;
  line-height: 1.68;
  color: #24272c;
}
.intro p:not(:last-child) {
  margin-bottom: 12px;
}

#simple-chat-button--container {
  position: fixed;
  bottom: 35px;
  left: 35px;
  z-index: 12;
}
#simple-chat-button--container #simple-chat-button--button {
  display: block;
  position: relative;
  text-decoration: none;
  animation: pulse 2s infinite;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-transform: scale(1);
  transform: scale(1);
  box-shadow: 0 6px 8px 2px rgba(0, 0, 0, 0.15);
  background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjU2IiB3aWR0aD0iMjU2IiB2aWV3Qm94PSItMjMgLTIxIDY4MiA2ODIuNjY3IiBmaWxsPSIjZmZmIiB4bWxuczp2PSJodHRwczovL3ZlY3RhLmlvL25hbm8iPjxwYXRoIGQ9Ik01NDQuMzg3IDkzLjAwOEM0ODQuNTEyIDMzLjA2MyA0MDQuODgzLjAzNSAzMjAuMDUxIDAgMTQ1LjI0NiAwIDIuOTggMTQyLjI2MiAyLjkxIDMxNy4xMTNjLS4wMjMgNTUuODk1IDE0LjU3OCAxMTAuNDU3IDQyLjMzMiAxNTguNTUxTC4yNSA2NDBsMTY4LjEyMS00NC4xMDJjNDYuMzI0IDI1LjI3IDk4LjQ3NyAzOC41ODYgMTUxLjU1MSAzOC42MDJoLjEzM2MxNzQuNzg1IDAgMzE3LjA2Ni0xNDIuMjczIDMxNy4xMzMtMzE3LjEzMy4wMzUtODQuNzQyLTMyLjkyMi0xNjQuNDE4LTkyLjgwMS0yMjQuMzU5ek0zMjAuMDUxIDU4MC45NDFoLS4xMDljLTQ3LjI5Ny0uMDItOTMuNjg0LTEyLjczLTEzNC4xNi0zNi43NDJsLTkuNjIxLTUuNzE1LTk5Ljc2NiAyNi4xNzIgMjYuNjI5LTk3LjI3LTYuMjctOS45NzNjLTI2LjM4Ny00MS45NjktNDAuMzItOTAuNDc3LTQwLjI5Ny0xNDAuMjgxLjA1NS0xNDUuMzMyIDExOC4zMDUtMjYzLjU3IDI2My42OTktMjYzLjU3IDcwLjQwNi4wMjMgMTM2LjU5IDI3LjQ3NyAxODYuMzU1IDc3LjMwMXM3Ny4xNTYgMTE2LjA1MSA3Ny4xMzMgMTg2LjQ4NGMtLjA2MiAxNDUuMzQ0LTExOC4zMDUgMjYzLjU5NC0yNjMuNTk0IDI2My41OTR6bTE0NC41ODYtMTk3LjQxOGMtNy45MjItMy45NjktNDYuODgzLTIzLjEzMy01NC4xNDgtMjUuNzgxLTcuMjU4LTIuNjQ1LTEyLjU0Ny0zLjk2MS0xNy44MjQgMy45NjktNS4yODUgNy45My0yMC40NjkgMjUuNzgxLTI1LjA5NCAzMS4wNjZzLTkuMjQyIDUuOTUzLTE3LjE2OCAxLjk4NC0zMy40NTctMTIuMzM2LTYzLjcyNy0zOS4zMzJjLTIzLjU1NS0yMS4wMTItMzkuNDU3LTQ2Ljk2MS00NC4wODItNTQuODkxLTQuNjE3LTcuOTM3LS4wMzktMTEuODEyIDMuNDc3LTE2LjE3MiA4LjU3OC0xMC42NTIgMTcuMTY4LTIxLjgyIDE5LjgwOS0yNy4xMDVzMS4zMi05LjkxOC0uNjY0LTEzLjg4M2MtMS45NzctMy45NjUtMTcuODI0LTQyLjk2OS0yNC40MjYtNTguODQtNi40MzctMTUuNDQ1LTEyLjk2NS0xMy4zNTktMTcuODMyLTEzLjYwMi00LjYxNy0uMjMtOS45MDItLjI3Ny0xNS4xODctLjI3N3MtMTMuODY3IDEuOTgtMjEuMTMzIDkuOTE4LTI3LjczIDI3LjEwMi0yNy43MyA2Ni4xMDUgMjguMzk1IDc2LjY4NCAzMi4zNTUgODEuOTczIDU1Ljg3OSA4NS4zMjggMTM1LjM2NyAxMTkuNjQ4YzE4LjkwNiA4LjE3MiAzMy42NjQgMTMuMDQzIDQ1LjE3NiAxNi42OTUgMTguOTg0IDYuMDMxIDM2LjI1NCA1LjE4IDQ5LjkxIDMuMTQxIDE1LjIyNy0yLjI3NyA0Ni44NzktMTkuMTcyIDUzLjQ4OC0zNy42OCA2LjYwMi0xOC41MTIgNi42MDItMzQuMzc1IDQuNjE3LTM3LjY4NC0xLjk3Ny0zLjMwNS03LjI2Mi01LjI4NS0xNS4xODQtOS4yNTR6bTAgMCIgZmlsbC1ydWxlPSJldmVub2RkIi8+PC9zdmc+") center/44px 44px no-repeat #25D366;
}

@keyframes pulse {
  30% {
    transform: scale(1.2);
  }
  40%, 60% {
    transform: rotate(-20deg) scale(1.2);
  }
  50% {
    transform: rotate(20deg) scale(1.2);
  }
  70% {
    transform: rotate(0) scale(1.2);
  }
  to {
    transform: scale(1);
  }
}
.single-scroll {
  margin: 18px 0 0px 0;
}
.single-scroll .single-cover .single-slide {
  height: 560px;
}
.single-scroll .single-cover .single-slide > a,
.single-scroll .single-cover .single-slide img {
  display: block;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  width: 100%;
}

.action-button {
  position: absolute;
  top: 20px;
  right: 20px;
}
.action-button a {
  padding: 8px 8px;
}

.in-page-gallery .slick-btn.slick-btn-prev {
  left: 15px;
}
.in-page-gallery .slick-btn.slick-btn-next {
  right: 15px;
}

.single-pro-desc .ec-single-title {
  font-weight: 700;
  font-size: 36px;
  line-height: 1.2;
  color: rgba(0, 0, 0, 0.9294117647);
  letter-spacing: -0.2px;
}
.single-pro-desc .ec-sub-title {
  color: rgba(0, 0, 0, 0.4588235294);
  font-weight: 700;
  font-size: 16px;
  margin-top: 10px;
  display: inline-block;
}

.ec-single-pro-description {
  line-height: 1.7;
  font-weight: 400;
  font-size: 16px;
  font-family: "Roboto", sans-serif;
}
.ec-single-pro-description table {
  width: 100%;
  border-color: #e9edf0;
  border-collapse: collapse;
}
.ec-single-pro-description table tr th, .ec-single-pro-description table tr td {
  font-size: 15px;
  padding: 11px 15px;
  font-weight: 800;
  border-bottom: 1px solid rgba(0, 0, 0, 0.0392156863);
  text-align: left;
}
.ec-single-pro-description table tr:nth-child(even), .ec-single-pro-description table tr:hover {
  background: rgba(0, 0, 0, 0.0392156863);
}
.ec-single-pro-description p {
  margin: 0 0 20px 0;
}
.ec-single-pro-description ul,
.ec-single-pro-description ol {
  padding-left: 20px;
  padding-top: 0;
  padding-right: 0;
  margin: 0;
}

.single-sidebar {
  border: 1px solid #DEDEDE;
  border-radius: 12px;
  padding: 20px;
}
.single-sidebar .feature-box {
  background: rgba(0, 0, 0, 0.0705882353);
  padding: 7px 18px;
  border-radius: 4px;
  border: 1px solid rgba(0, 0, 0, 0.1019607843);
}
.single-sidebar .feature-box span {
  font-size: 12px;
}
.single-sidebar .btn-action {
  padding-top: 17px;
  margin-top: 19px;
}
.single-sidebar .price-section .label {
  font-size: 12px;
  font-weight: 600;
  color: #999;
  letter-spacing: 0.5px;
}
.single-sidebar .price-section p {
  font-size: 15px;
  margin-top: 4px;
  opacity: 0.7;
  letter-spacing: -0.3px;
  font-weight: 500;
}
.single-sidebar .price-section .price {
  margin: 2px 0 0;
  color: #24272c;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.3px;
  line-height: 1;
}
.single-sidebar .price-section {
  margin-bottom: 14px;
}
.single-sidebar .d-btn-favourite:hover svg path {
  fill: #fff;
}

.inspection-wrap {
  border: 1px solid #45C17A;
  border-radius: 12px;
  padding: 20px;
  margin-top: 18px;
  padding-bottom: 9px;
  background: #E3FFF0;
}
.inspection-wrap h3 {
  margin-bottom: 14px;
  font-size: 18px;
}
.inspection-wrap p {
  font-size: 14px;
  margin-bottom: 10px;
  position: relative;
  align-items: center;
  display: inline-flex;
  color: #24272c;
  gap: 7px;
}
.inspection-wrap p i {
  color: #45C17A;
  font-size: 15px;
}

.sticky {
  position: sticky;
  top: 180px;
}

.detailed-information {
  margin-top: 25px;
}
.detailed-information .accordion-list {
  padding: 25px 22px;
  border-radius: 10px;
  border: 1px solid rgba(204, 204, 204, 0.4117647059);
  margin-bottom: 25px;
}
.detailed-information .accordion-list .testimonial-slider {
  margin: 0 -10px;
}
.detailed-information .accordion-list:last-child {
  margin-bottom: 0;
}
.detailed-information .accordion-list h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #24272c;
  vertical-align: middle;
  display: inline-block;
}

.feature-col-wraper {
  text-align: center;
}
.feature-col-wraper iframe {
  width: 100%;
  border-radius: 10px;
}
.feature-col-wraper .feature {
  border: 1px solid rgba(0, 0, 0, 0.07);
  padding: 17px 10px;
  border-radius: 9px;
  color: #24272c;
  font-size: 13px;
}
.feature-col-wraper img {
  width: 40px;
  height: 40px;
  display: block;
  margin: 0 auto;
  padding-bottom: 4px;
}
.feature-col-wraper strong {
  display: block;
  font-size: 18px;
  color: #424242;
  font-weight: 500;
}

.similar-block {
  background: rgba(241, 241, 241, 0.5215686275);
  padding: 40px 0;
}

.ec-sidebar-heading {
  margin-top: 20px;
}
.ec-sidebar-heading h1 {
  text-transform: uppercase;
  text-decoration: none;
  color: #24272c;
  display: block;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0.2px;
  margin-bottom: 18px;
}
.ec-sidebar-heading h1 i {
  margin-right: 7px;
  font-size: 25px;
}
.ec-sidebar-heading {
  position: relative;
}
.ec-sidebar-heading span {
  position: absolute;
  right: 0;
  cursor: pointer;
}

.pagination-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 18px 12px;
}
.pagination-wrap .pagination {
  display: inline-flex;
  gap: 8px;
  margin: 0;
  padding: 6px;
  list-style: none;
  align-items: center;
  background: #ffffff;
  border-radius: 8px;
}
.pagination-wrap .pagination .page-item {
  display: inline-block;
}
.pagination-wrap .pagination .page-item .page-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 17px;
  color: #2b2f3a;
  background: transparent;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  user-select: none;
  transition: background 0.16s ease, color 0.16s ease, transform 0.06s ease;
  box-sizing: border-box;
}
.pagination-wrap .pagination .page-item .page-link:hover, .pagination-wrap .pagination .page-item .page-link:focus {
  background: #24272c;
  transform: translateY(-1px);
  color: #fff;
}
.pagination-wrap .pagination .page-item .page-link:focus-visible {
  box-shadow: 0 0 0 3px rgba(36, 99, 255, 0.14);
  outline: none;
}
.pagination-wrap .pagination .page-item .page-link .visually-hidden {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}
.pagination-wrap .pagination .page-item.active .page-link {
  background: #f85204;
  color: #fff;
  font-weight: 600;
  box-shadow: 0 6px 20px rgba(36, 99, 255, 0.12);
  transform: none;
}
.pagination-wrap .pagination .page-item.disabled .page-link {
  color: #98a0b3;
  cursor: not-allowed;
  opacity: 0.65;
  background: transparent;
  transform: none;
  pointer-events: none;
}

.ec-page-content-filter form {
  position: static;
  background-color: #000;
  padding: 25px;
  width: 100%;
  border-radius: 10px;
}
.ec-page-content-filter form .p-grid {
  grid-gap: 15px;
}
.ec-page-content-filter form .p-grid .form-group {
  grid-column: span 12;
}

.ec-shop-rightside .ec-pro-list-top {
  align-items: flex-end;
  font-size: 14px;
  padding: 0px 0 9px 0;
  flex-wrap: wrap;
  border: none;
  align-items: center;
  justify-content: space-between;
  display: flex;
}
.ec-shop-rightside .ec-pro-list-top .filter-results {
  font-size: 22px;
  font-weight: 600;
}
.ec-shop-rightside .ec-pro-list-top .filter-results strong {
  font-weight: 800;
  color: #24272c;
}
.ec-shop-rightside .ec-pro-list-top .ec-sort-select {
  display: inline-flex;
  align-items: center;
  margin-bottom: 9px;
}
.ec-shop-rightside .ec-pro-list-top .ec-sort-select .sort-by {
  font-size: 14px;
  color: #111;
  padding-right: 13px;
}
.ec-shop-rightside .ec-pro-list-top .ec-sort-select select {
  padding-right: 35px;
  color: #212529;
  background-color: rgba(204, 204, 204, 0.1294117647);
}
.ec-shop-rightside.text-right {
  text-align: right;
}

.section-md {
  padding: 40px 0;
}

.sticky-sidebar {
  position: sticky;
  top: 70px;
}

.profile-sidebar {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.2392156863);
}

.profile-sidebar .user {
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  font-size: 15px;
  padding: 25px;
  padding-bottom: 0;
}

.profile-sidebar .user img {
  width: 55px;
  height: 55px;
  margin-right: 18px;
  border-radius: 100%;
  padding: 4px;
  border: 1px solid #ccc;
}

.profile-sidebar .user .user-name {
  font-size: 17px;
  font-weight: 600;
  color: #000;
  letter-spacing: -0.5px;
}

.profile-sidebar .user .user-role {
  font-size: 14px;
  color: #000;
  opacity: 0.75;
  font-weight: 500;
}

.profile-sidebar .navigation-sidebar {
  font-size: 14px;
}

.profile-sidebar .navigation-sidebar h5, .profile-sidebar .navigation-sidebar .h5 {
  margin: 0;
  padding: 15px 0 18px 0;
  line-height: 1;
  font-size: 16px;
  font-weight: 700;
  color: #f85204;
}

.profile-sidebar .navigation-sidebar h5 a, .profile-sidebar .navigation-sidebar .h5 a {
  color: #f85204;
}

.profile-sidebar .navigation-sidebar h5 a:hover, .profile-sidebar .navigation-sidebar .h5 a:hover {
  color: #f85204;
}

.profile-sidebar .navigation-sidebar .sidebar-nav {
  border-bottom: 1px solid rgba(17, 17, 17, 0.1294117647);
  padding: 0 25px;
}

.profile-sidebar .navigation-sidebar .sidebar-nav ul {
  margin: 0;
  padding: 0 0 20px 0;
  list-style-type: none;
}

.profile-sidebar .navigation-sidebar .sidebar-nav ul li:first-child a {
  padding-top: 0;
}

.profile-sidebar .navigation-sidebar .sidebar-nav ul li a {
  color: #111;
  line-height: 1.8;
  display: block;
  padding-top: 6px;
  font-size: 15px;
  font-weight: 500;
  opacity: 0.75;
  position: relative;
}

.profile-sidebar .navigation-sidebar .sidebar-nav ul li a:hover {
  color: #f85204;
  opacity: 1;
}

.ml-30 {
  margin-left: 30px;
}

.user-main-info {
  padding: 20px;
  margin-bottom: 25px;
  border-radius: 9px;
  background: #f85204;
}

.user-main-info .prop-info {
  font-size: 35px;
  font-weight: 600;
  color: #fff;
  text-align: center;
}

.user-main-info .prop-info .title {
  font-size: 16px;
  font-weight: 500;
}

.user-main-info .grid {
  grid-template-columns: repeat(4, 1fr);
}

.user-main-info .grid > div:nth-child(even) {
  border-left: 1px solid rgba(255, 255, 255, 0.2196078431);
  border-right: 1px solid rgba(255, 255, 255, 0.2196078431);
  padding: 0 10px;
  margin: 0 0;
}

.user-main-info .grid > div:last-child {
  border-right: none;
  margin-right: 0;
}

.navigation-menu-items {
  height: 100%;
  background: #fff;
  color: #666;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  display: block;
  transition: 0.2s linear;
  color: rgba(15, 15, 15, 0.8784313725);
  font-size: 18px;
  font-weight: 700;
  border-radius: 4px;
  transition: 0.2s linear;
  padding: 30px;
  line-height: 1.2;
}

.navigation-menu-items:hover {
  background: #f85204;
  color: #fff !important;
  transition: 0.2s linear;
}

.navigation-menu-items:hover i {
  color: #fff;
}

.navigation-menu-items i {
  display: block;
  font-size: 30px;
  padding-bottom: 13px;
  color: rgba(15, 15, 15, 0.8784313725);
  transition: 0.2s linear;
}

.error {
  color: #a81f00;
  display: inline-block;
  margin-top: 7px;
  font-size: 15.4px;
  font-weight: 600;
}

.form-container .c-container {
  max-width: 780px;
}

.form-container .form-content {
  max-width: 520px;
  width: 100%;
  padding: 30px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(17, 17, 17, 0.2392156863);
  box-shadow: 1px 11px 25px rgba(0, 0, 0, 0.2705882353);
  margin: auto;
}

.form-container .form-content header {
  font-size: 30px;
  font-weight: 700;
  color: #f85204;
  text-align: center;
  line-height: 1;
}

.form-container .form-content p {
  text-align: center;
  font-size: 16px;
  margin-top: 8px;
  font-weight: 700;
  color: #111;
}

.form-container .form-content form {
  margin-top: 30px;
}

.form-container .form-content .field {
  margin-bottom: 15px;
  position: relative;
  width: 100%;
  border-radius: 6px;
}

.form-container .form-content .field i {
  position: absolute;
  right: 20px;
  top: 15px;
  cursor: pointer;
  font-size: 20px;
}

.form-container .form-content .field input {
  height: 50px;
  outline: none;
  padding: 0 15px 0 18px;
  border: 1px solid #CACACA;
  width: 100%;
  font-size: 16px;
  font-weight: 600;
  border: 1px solid rgba(0, 0, 0, 0.2117647059);
  border-radius: 6px;
  transition: all 0.35s ease-in-out;
}

.form-container .form-content .field input:focus {
  transition: all 0.35s ease-in-out;
  border-color: #f85204;
}

.form-container .form-content .field button {
  height: 55px;
  width: 100%;
  border: none;
  font-size: 16px;
  font-weight: 800;
  border-radius: 6px;
  color: #fff;
  background-color: #f85204;
  transition: all 0.3s ease;
  cursor: pointer;
  text-transform: uppercase;
}

.form-container .form-content .form-link {
  text-align: center;
  margin: 0px 0 17px 0;
}

.form-container .form-content .form-link a {
  font-weight: 800;
  font-size: 15px;
  color: #0171d3;
  text-decoration: none;
}

.form-container .form-content .form-link a:hover {
  color: #f85204;
}

.form-container .form-content .form-link span {
  font-size: 15px;
  font-weight: 400;
  color: #232836;
}

.form-nav {
  margin: 0 0 35px 0;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: center;
}

.form-nav li {
  cursor: pointer;
  color: rgb(0, 104, 239);
  background-color: rgb(232, 242, 255);
  border: 1px solid rgb(0, 104, 239);
  width: 100%;
  max-width: 100%;
  display: inline-flex;
  -moz-box-align: center;
  align-items: center;
  -moz-box-pack: center;
  justify-content: center;
  position: relative;
  white-space: nowrap;
  border-radius: 9999px;
  padding: 12px;
  font-size: 17px;
  margin-right: 20px;
  font-weight: 800;
}

.form-nav li:hover, .form-nav li.active {
  background: #f85204;
  border-color: #f85204;
  color: #fff;
}

.form-nav li:hover a, .form-nav li.active a {
  color: #fff;
}

.slick-dots {
  display: none !important;
}

.calculator-box {
  background: #f9fafb;
  padding: 25px;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.1019607843);
}
.calculator-box .c-row {
  margin-bottom: 25px;
}
.calculator-box .c-row:last-child {
  margin-bottom: 0;
}
.calculator-box .c-row .icon-cd_R::before {
  content: "Rs.";
  font-size: 13px;
}
.calculator-box .c-row .topText {
  font-size: 14px;
  line-height: 1.36;
  color: rgba(0, 0, 0, 0.8705882353);
  font-weight: 400;
}
.calculator-box .c-row .topText > div {
  display: flex;
  gap: 15px;
  font-size: 14px;
  margin-top: 10px;
  align-items: center;
  justify-content: space-between;
}
.calculator-box .c-row .topText > div input {
  display: block;
  width: 100%;
  border-radius: 8px;
  font-size: 15px;
  height: 40px;
  border: 1px solid #ccc;
  font-family: "Outfit", sans-serif;
  flex: 1;
  padding: 0 15px;
  font-size: 15px;
  -webkit-appearance: auto; /* Restores default appearance */
  appearance: auto;
}
.calculator-box .c-row .topText > div > span {
  flex: auto;
  max-width: 30px;
  opacity: 0.6;
  font-size: 12px;
  text-align: center;
  font-weight: 700;
}
.calculator-box .c-row .topText input {
  display: block;
  width: 100%;
}
.calculator-box .c-row .topText .minValue {
  font-size: 21px;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.8705882353);
}

.rangeslider-wrap {
  padding-top: 30px;
}
.rangeslider-wrap .rangeslider {
  position: relative;
  height: 7px;
  border-radius: 5px;
  width: 100%;
  background-color: rgba(128, 128, 128, 0.2784313725);
}
.rangeslider-wrap .rangeslider .rangeslider__fill {
  position: absolute;
  top: 0;
  z-index: 1;
  height: 100%;
  background-color: #f75d34;
  border-radius: 5px;
}
.rangeslider-wrap .rangeslider .rangeslider__handle {
  transition: background-color 0.2s;
  box-sizing: border-box;
  width: 25px;
  height: 25px;
  border-radius: 100%;
  background-color: #FFF;
  touch-action: pan-y;
  cursor: pointer;
  display: inline-block;
  position: absolute;
  z-index: 3;
  top: -10px;
  border: 7px solid #f75d34;
}
.rangeslider-wrap .rangeslider .rangeslider__labels {
  position: absolute;
  width: 100%;
  z-index: 2;
  display: flex;
  justify-content: space-between;
}
.rangeslider-wrap .rangeslider .rangeslider__labels .rangeslider__labels__label {
  font-size: 12px;
  position: relative;
  padding-top: 15px;
  color: rgba(0, 0, 0, 0.46);
  font-weight: 700;
}
.rangeslider-wrap .rangeslider .rangeslider__labels .rangeslider__labels__label:first-child {
  transform: translateY(-140%);
}
.rangeslider-wrap .rangeslider .rangeslider__labels .rangeslider__labels__label:last-child {
  transform: translateY(-140%);
}

.results {
  grid-column-gap: 25px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: #f9fafb;
  padding: 22px;
  text-align: center;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.1019607843);
}
.results div {
  color: #24272c;
  font-size: 13px;
  line-height: 1.4;
  margin-bottom: 10px;
}
.results div:last-child {
  grid-column: span 3;
}
.results div span {
  display: block;
  font-weight: 600;
  font-size: 20px;
}
.results div span strong {
  font-weight: 600;
}

@media (max-width: 1024px) {
  .ec-shop-rightside.text-right .vehicle-card.column3 {
    grid-column: span 4;
  }
}
@media (max-width: 900px) {
  .this-calculate .column8, .this-calculate .column4 {
    grid-column: span 12 !important;
  }
  .this-calculate .column4 {
    order: -1;
  }
  .this-calculate .column4 .results {
    width: 100%;
  }
  .section-detail .p-container .column8, .section-detail .p-container .column4,
  .section-detail .p-container .column9, .section-detail .p-container .column3 {
    grid-column: span 12 !important;
  }
  .section-detail .p-container .column4, .section-detail .p-container .column3 {
    order: -1;
  }
  .section-detail .p-container .column4 .results, .section-detail .p-container .column3 .results {
    width: 100%;
  }
  .ec-page-content-filter .p-container .p-grid > .column3, .ec-page-content-filter .p-container .p-grid .column9 {
    grid-column: span 12;
  }
  .ec-page-content-filter .ec-shop-rightside.text-right .vehicle-card.column3 {
    grid-column: span 4;
  }
  .banner .banner-wrap .banner-text {
    flex-direction: column;
    justify-content: center;
    top: 50%;
    left: 30px;
    transform: translateY(-50%);
  }
  .banner .banner-wrap .banner-text .title {
    font-size: 35px;
    margin-block-end: 15px;
  }
  .banner .banner-wrap .banner-text p {
    font-size: 16px;
    margin-block-end: 23px;
  }
  .site-footer .column3:first-child {
    grid-column: span 12;
  }
  .site-footer .column3:first-child .f-logo {
    text-align: left;
  }
  .site-footer .column2 {
    grid-column: span 3;
  }
  .section-ev .p-grid .column4,
  .section-ev .p-grid .column3,
  .section-blog .p-grid .column4,
  .section-blog .p-grid .column3 {
    grid-column: span 6;
  }
  .section-brands .p-grid.p-grid-eight {
    grid-template-columns: repeat(4, 1fr);
  }
  .navigation {
    display: none;
  }
  .hamburger {
    display: inline-block;
  }
  .blur {
    filter: blur(5px);
  }
  .site-header .header-container {
    padding: 0 22px;
  }
  .site-header .header-container .header-action-button .login-btn,
  .site-header .header-container .header-action-button .d-btn {
    font-size: 0;
  }
  .site-header .header-container .header-action-button .login-btn svg,
  .site-header .header-container .header-action-button .d-btn svg {
    width: 32px;
    height: 32px;
  }
  .site-header .header-container .header-action-button .d-btn {
    display: none;
  }
  .banner {
    margin: 0;
  }
  .banner .p-container {
    padding: 0 0;
  }
  .banner .banner-item img {
    border-radius: 0;
  }
  .filter-wrap {
    position: relative;
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    padding: 20px 22px 0 22px;
  }
  .filter-wrap .tab {
    display: inline-flex;
    width: 100%;
    gap: 10px;
    align-items: center;
    justify-content: space-between;
  }
  .filter-wrap .tab > a {
    border: 1px solid #24272c;
    color: #24272c;
    display: inline-block;
    background: none;
    padding: 12px 12px;
    flex: 1;
    text-align: center;
  }
  .filter-wrap .tab-container {
    background: #fff;
    border-radius: 10px;
    margin-top: 20px;
  }
  .filter-wrap .tab-container .p-grid {
    gap: 15px;
    grid-template-columns: repeat(2, 1fr);
  }
  .filter-wrap .tab-container .p-grid .form-group:last-child {
    grid-column: span 2;
  }
  .p-grid.p-grid-five {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .site-footer .p-grid {
    gap: 8px;
  }
  .site-footer .column2 {
    grid-column: span 6;
  }
  .site-footer .column3 {
    grid-column: span 12;
  }
  .site-footer .stats-wrap .stats-col {
    grid-column: span 6 !important;
  }
  .section-ev .p-grid {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    scroll-snap-type: inline mandatory;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .section-ev .p-grid > div {
    flex: 0 0 500px;
  }
  main {
    gap: 25px;
    margin-bottom: 25px;
  }
  .recent-block {
    margin-top: 0;
  }
  .p-grid.p-grid-five {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .single-scroll .single-cover .single-slide {
    height: 400px;
  }
  .single-pro-desc .ec-single-title {
    font-size: 28px;
  }
  .section-ev .p-grid > div {
    flex: 0 0 420px;
  }
  .ec-page-content-filter .ec-shop-rightside.text-right .vehicle-card.column3 {
    grid-column: span 6;
  }
}
@media (max-width: 500px) {
  .feature-col-wraper iframe {
    width: 100%;
    border-radius: 10px;
    height: 350px;
  }
  .ec-page-content-filter .ec-shop-rightside.text-right .p-grid {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    scroll-snap-type: inline mandatory;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .ec-page-content-filter .ec-shop-rightside.text-right .p-grid .vehicle-card.column3 {
    flex: 0 0 280px;
    font-size: 15px;
  }
  .section-ev .p-grid > div {
    flex: 0 0 380px;
  }
  .section-brands .p-grid.p-grid-eight {
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 15px;
  }
}
@media (max-width: 480px) {
  .this-calculate .column8, .this-calculate .column4 {
    grid-column: span 12 !important;
  }
  .this-calculate .column4 {
    order: -1;
  }
  .this-calculate .column4 .results {
    width: 100%;
    display: block;
    text-align: left;
    padding: 10px 20px;
  }
  .banner .banner-wrap .banner-item img {
    border-radius: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
  .banner .banner-wrap .banner-text .title {
    font-size: 30px;
    margin-block-end: 10px;
  }
  .banner .banner-wrap .banner-text p {
    font-size: 15px;
    margin-block-end: 20px;
  }
  .banner .banner-wrap:after {
    display: none !important;
  }
  .site-footer .f-logo img {
    width: 80px;
  }
  .site-footer .column2 {
    grid-column: span 6;
  }
  .site-footer .column3 {
    grid-column: span 12;
  }
  .site-footer .stats-wrap {
    gap: 15px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }
  .site-footer .stats-wrap .stats-col {
    display: block;
    text-align: center;
  }
  .site-footer .stats-wrap .stats-col .title {
    font-size: 16px;
  }
  .section-ev .p-grid > div {
    margin-top: 3px;
    flex: 0 0 360px;
  }
  main {
    gap: 20px;
    margin-bottom: 20px;
  }
  .car-hero-cta {
    color: #fff;
  }
  .car-hero-cta .p-container {
    padding: 0;
  }
  .car-hero-cta img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0 !important;
  }
  .car-hero-cta .banner-wrap .banner-item {
    border-radius: 0 !important;
  }
  .car-hero-cta .banner-wrap .banner-text {
    z-index: 2;
    top: 50%;
    transform: translateY(-50%);
  }
  .car-hero-cta .banner-wrap .banner-text .title {
    font-size: 32px;
  }
  .car-hero-cta .banner-wrap .banner-text p {
    font-size: 17px;
    margin-block-end: 25px;
    font-weight: 300;
  }
  .heading-section .heading,
  .section-heading .heading {
    font-size: 22px;
  }
  .recent-block .p-grid,
  .section-blog .p-grid {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    scroll-snap-type: inline mandatory;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .recent-block .p-grid > div,
  .section-blog .p-grid > div {
    flex: 0 0 280px;
    font-size: 15px;
  }
  .vehicle-card .vehicle-info .btn-action {
    flex-wrap: inherit;
  }
  .p-container {
    padding: 0 15px;
  }
  .filter-wrap {
    padding: 20px 15px 0 15px;
  }
  .filter-wrap .tab-container {
    margin-top: 0;
    padding: 18px;
  }
  .filter-wrap .tab-container > a {
    padding: 10px 12px;
  }
  .filter-wrap .tab-container .p-grid {
    gap: 15px;
    grid-template-columns: repeat(1, 1fr);
  }
  .filter-wrap .tab-container .p-grid .form-group:last-child {
    grid-column: span 1;
  }
}
@media (max-width: 375px) {
  .section-brands .p-grid.p-grid-eight {
    grid-template-columns: repeat(2, 1fr);
  }
}
