:root {
  --white-color: #fff;
  --black-color: #292929;
  --gray-color: #f5f5f5;
  --cream-color: #d7be96;
  --dark-cream-btn-hover: #af9976;
  --desc-color: #1b1b1b;
  --regular: 400;
  --bold: 700;
  --semi-bold: 600;
  --light: 300;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

*,
h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  padding: 0;
}

ul,
li {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

a {
  text-decoration: none;
}

.container-main {
  max-width: 1440px;
  margin: 0 auto;
}

body {
  font-family: "IBM Plex Sans";
  overflow-x: hidden;
}

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

.main-header {
  /* padding: 10px 51px; */
  /* padding-top: 19px;
  padding-bottom: 17px; */
  padding-left: 64px;
  padding-right: 64px;
  position: absolute;
  top: 0px;
  left: 0;
  width: 100%;
  z-index: 10;
  /* background: var(--black-color); */
  /* box-shadow: inset 0 0 0 1px #868686; */
  /* box-shadow: inset 0 0 0 1px #868686; */
  border-bottom: 1px solid #868686;
  /* background-color: rgba(41, 41, 41, 0); */
  background: linear-gradient(100deg,
      rgba(27, 27, 27, 0.3) 50%,
      rgba(27, 27, 27, 0.7) 100%);
}

.mob-header {
  display: none;
}

@keyframes headerSlideDown {
  0% {
    opacity: 0.8;
    transform: translateY(-50px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.main-header.sticky {
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  border-bottom: 1px solid #868686;
  background-color: var(--black-color);
  animation: headerSlideDown 0.5s ease forwards;
}

header {
  position: relative;
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo {
  max-width: 200px;
  margin-left: -200px;
}

.header-wrap ul {
  display: flex;
  align-items: center;
  gap: 33px;
}

.header-wrap ul li {
  font-size: 12px;
  letter-spacing: 0.15em;
  font-weight: var(--regular);
  color: var(--white-color);
  text-transform: uppercase;
}

.header-wrap ul li a {
  position: relative;
  color: var(--white-color);
  text-decoration: none;
}

.header-wrap ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0%;
  height: 2px;
  background-color: var(--cream-color);
  transition: width 0.4s ease;
}

.header-wrap ul li a:hover {
  /* font-weight: var(--bold); */
  text-shadow: 0.5px 0 0 currentColor, -0.5px 0 0 currentColor;
}

.header-wrap ul li a:hover::after {
  width: 100%;
}

.header-wrap ul li.active a {
  text-shadow: 0.5px 0 0 currentColor, -0.5px 0 0 currentColor;
}

.header-wrap ul li.active a::after {
  width: 100%;
}

.contact-btn {
  border-radius: 5px;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.15em;
  width: max-content;
  height: 42px;
  padding: 12px 38px;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: linear-gradient(90deg,
      rgba(255, 255, 255, 0.6) 0%,
      rgba(255, 255, 255, 0.3) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.contact-btn:hover {
  color: var(--white-color);
}

/* Drop down */

.header-wrap ul li {
  position: static;
  padding: 30px 0;
}

.header-wrap ul li .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: var(--white-color);
  display: flex;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  z-index: 100;
  border: unset;
  height: max-content;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  padding: 41px 64px;
}

/* Hover effect */
.header-wrap ul li:hover>.dropdown-menu {
  opacity: 1;
  visibility: visible;
}

.main-header.menu-open {
  background-color: var(--black-color) !important;
}

.main-header.dropdown-open {
  background-color: var(--black-color) !important;
}

.header-wrap ul li.dropdown-open>a::after {
  width: 100%;
}

.dropdown-left {
  width: 30%;
}

.dropdown-right {
  width: 70%;
}

.dropdown-left-btn {
  margin-top: 34px;
}

.dropdown-left-btn a {
  border-radius: 5px;
  color: var(--desc-color) !important;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  font-weight: var(--regular);
  letter-spacing: 0.15em;
  width: max-content;
  height: 46px;
  padding: 14px 20px;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid var(--desc-color);
  background: transparent;
  text-shadow: none !important;
}

.dropdown-left-btn a:hover {
  background: var(--cream-color);
  font-weight: var(--regular);
}

.dropdown-left-btn a::after {
  content: unset !important;
}

.dropdown-left-btn a img {
  margin-left: 9px;
  width: 4px;
  height: 9px;
  display: block;
}

.dropdown-left-links ul {
  display: flex;
  flex-direction: column;
  gap: 42px;
  align-items: unset;
  justify-content: center;
}

.dropdown-left-links ul li {
  color: var(--black-color);
  padding: unset;
  width: max-content;
}

.dropdown-left-links ul li a {
  color: var(--black-color);
  text-shadow: unset !important;
  display: flex;
  align-items: center;
}

.dropdown-left-links ul li a.active {
  text-shadow: 0.5px 0 0 currentColor, -0.5px 0 0 currentColor !important;
}

.dropdown-left-links ul li a:hover {
  text-shadow: 0.5px 0 0 currentColor, -0.5px 0 0 currentColor !important;
}

.dropdown-left-links ul li a.active::after {
  width: 100% !important;
}

.dropdown-left-links ul li a:hover:after {
  width: 100% !important;
}

.dropdown-left-links ul li a::after {
  width: unset !important;
}

.dropdown-left-links ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0% !important;
  height: 2px;
  background-color: var(--cream-color);
  transition: width 0.4s ease;
}

.dropdown-left-links ul li a img {
  margin-left: 9px;
  width: 4px;
  height: 9px;
  display: none;
}

.dropdown-left-links ul li a.active img {
  display: block;
}

.dropdown-left-links ul li a:hover img {
  display: block;
}

.dropdown-right .vehicle-page-vehicles-flex {
  padding-top: unset;
}

/* home-section */

.home-banner-main {
  position: relative;
}

.home-banner-bg {
  height: 100vh;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.home-banner-info {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  padding-top: 181px;
  padding-bottom: 31px;
}

.home-banner-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  z-index: 0;
  /* background: linear-gradient(60deg,
    rgba(27, 27, 27, 0) 0%,
    rgba(27, 27, 27, 0.7) 100%); */

  background: linear-gradient(to left,
      rgba(27, 27, 27, 0) 0%,
      rgba(27, 27, 27, 1) 100%);
  opacity: 0.6;
}

.home-banner-bg::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 30%;
  height: 100%;
  z-index: 0;
  /* background: linear-gradient(60deg,
    rgba(27, 27, 27, 0) 0%,
    rgba(27, 27, 27, 0.7) 100%); */

  background: linear-gradient(to right,
      rgba(27, 27, 27, 0) 0%,
      rgba(27, 27, 27, 0.7) 100%);
  opacity: 0.6;
}

.home-banner-flex {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
}

.home-banner-left,
.home-banner-right {
  width: 50%;
}

/* .home-banner-left {
    background: linear-gradient(100deg,
            rgba(27, 27, 27, 0) 0%,
            rgba(27, 27, 27, 0.7) 100%);
    background: linear-gradient(100deg,
            rgba(27, 27, 27, 0.3) 50%,
            rgba(27, 27, 27, 0.7) 100%);
    background: linear-gradient(to right,
            rgba(27, 27, 27, 0) 0%,
            rgba(27, 27, 27, 1) 100%);
} */

.home-banner-content h1 {
  font-size: 55px;
  font-weight: var(--bold);
  color: var(--white-color);
  max-width: 508px;
}

.home-banner-content p {
  font-size: 14px;
  font-weight: var(--light);
  color: var(--white-color);
  max-width: 429px;
  margin-top: 18px;
}

.home-banner-stats {
  padding-top: 166px;
  max-width: 408px;
}

.home-banner-stats-flex {
  display: flex;
  flex-wrap: wrap;
}

.home-banner-stats-block {
  width: 33.33%;
  border-right: 0.5px solid var(--white-color);
}

.home-banner-stats-block-inner {
  padding-right: 27px;
  padding-left: 27px;
}

.home-banner-stats-block-heading h4 {
  font-size: 25px;
  font-weight: var(--bold);
  color: var(--white-color);
  text-align: center;
}

.home-banner-stats-block:first-child .home-banner-stats-block-inner {
  padding-left: unset;
}

.home-banner-stats-block:last-child {
  border-right: none;
}

.home-banner-stats-block:last-child .home-banner-stats-block-inner {
  padding-right: unset;
}

.home-banner-stats-block-desc p {
  font-size: 14px;
  font-weight: var(--light);
  color: var(--white-color);
  margin-top: 4px;
  text-align: center;
}

.home-banner-right {
  display: flex;
  justify-content: flex-end;
}

.home-banner-right-info {
  max-width: 325px;
}

.home-banner-right-block {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: linear-gradient(40deg,
      rgba(255, 255, 255, 0.6) 0%,
      rgba(255, 255, 255, 0.3) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: all 0.3s ease;
  padding: 19px 21px;
  border-radius: 5px;
}

.home-banner-right-block-heading {
  max-width: 108px;
  padding-bottom: 13px;
  position: relative;
}

.home-banner-right-block-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 70%;
  height: 0.5px;
  background-color: var(--white-color);
}

.home-banner-right-block-desc p {
  font-size: 12px;
  font-weight: var(--light);
  color: var(--white-color);
  margin-top: 7px;
}

.home-banner-right-info-btns {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-bottom: 18px;
}

.home-banner-right-info-btns button {
  height: 27px;
  width: 27px;
  background: transparent;
  border-radius: 50%;
  border: unset;
  border: 1px solid var(--white-color);
  display: flex;
  justify-content: center;
  align-items: center;
}

.home-banner-right-info-btns button img {
  width: 8px;
  height: 11px;
}

.home-banner-right-slider .owl-dots {
  display: none;
}

/* two bg-sections */
.two-bg-img-section {
  position: relative;
}

.two-bg-img-section-flex {
  display: flex;
  flex-wrap: wrap;
}

.two-bg-img-section-left,
.two-bg-img-section-right {
  width: 50%;
}

.two-bg-img-section-bg {
  position: relative;
  aspect-ratio: 720/505;
}

.two-bg-img-section-bg img {
  width: 100%;
  display: block;
}

.two-bg-img-section-info {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  /* for stacked heading + button */
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* .two-bg-img-section-info-heading {
  padding-top: 70px;
} */

.two-bg-img-section-info-heading h2 {
  font-size: 50px;
  font-weight: var(--semi-bold);
  color: var(--white-color);
}

.two-bg-img-section-info-heading-btn {
  margin-top: 21px;
}

.two-section-btn {
  border-radius: 5px;
  color: var(--cream-color);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  font-weight: var(--regular);
  letter-spacing: 0.15em;
  width: 268px;
  height: 46px;
  padding: 14px 20px;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid var(--cream-color);
  background: rgba(27, 27, 27, 0.6);
  /* backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px); */
}

.two-section-btn img {
  margin-left: 9px;
  width: 4px;
  height: 9px;
}

.two-section-btn:hover {
  color: var(--cream-color);
  background: rgba(27, 27, 27);
}

/* testimonial section */
.testimonials-section-main {
  padding-right: 52px;
  padding-left: 39px;
  padding-top: 56px;
  padding-bottom: 79px;
}

.testimonials-section-main .container-main {
  background-color: var(--gray-color);
  border-radius: 8px;
  padding-top: 32px;
  padding-right: 40px;
  padding-bottom: 32px;
  padding-left: 81px;
  position: relative;
  overflow: hidden;
}

.testimonials-section-flex {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.testimonials-section-left,
.testimonials-section-right {
  width: 50%;
}

.testimonials-section-right {
  /* height: 408px; */
  padding-left: 85px;
/*   aspect-ratio: 532/408; */
}
.testimonials-section-img-slider-item{
	aspect-ratio: 532/408;
}

.testimonials-section-right img {
  border-radius: 8px;
}

.testimonials-section-left {
  position: relative;
  z-index: 1;
}

.testimonials-section-main .container-main::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 849px;
  height: 147px;
  background-image: url("../images/testimonail-top-vector.svg");
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 0;
  opacity: 1;
}

.testimonials-section-main .container-main::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 883px;
  height: 283px;
  background-image: url("../images/testimonial-bottom-vector.svg");
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 0;
  opacity: 1;
}

.testimonails-section-heading {
  margin-bottom: 34px;
}

.testimonails-section-heading h4 {
  font-size: 14px;
  letter-spacing: 0.15em;
  color: #868686;
  text-transform: uppercase;
  font-weight: var(--regular);
}

.testimonials-client-review h4 {
  font-size: 25px;
  color: var(--black-color);
  font-weight: var(--semi-bold);
}

.testimonials-client-review-desc p {
  font-size: 14px;
  color: var(--black-color);
  font-weight: var(--regular);
  max-width: 515px;
  margin-top: 14px;
}

.testimonials-client-name-pos {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 34px;
  max-width: max-content;
}

.testimonials-client-name p,
.testimonials-client-pos p {
  font-size: 14px;
  color: var(--black-color);
  font-weight: var(--regular);
  font-style: italic;
}
.testimonials-client-name p{
	padding-right:2px;
}
.testimonials-client-pos p{
	padding-left:2px;
}

.testimonials-section-slider-btn {
  display: flex;
  gap: 10px;
  margin-top: 44px;
}

.testimonials-section-slider-btn button {
  height: 27px;
  width: 27px;
  background: transparent;
  border-radius: 50%;
  border: unset;
  border: 1px solid var(--desc-color);
  display: flex;
  justify-content: center;
  align-items: center;
}

.testimonials-section-slider-btn button img {
  width: 8px;
  height: 10px;
}

.home-banner-right-slider .owl-dots {
  display: none;
}

/* Showroom display */

.home-overview-part {
  position: relative;
}

.home-overview-img {
  width: 50%;
  position: relative;
  z-index: 1;
  /* aspect-ratio: 687/635; */
  height: 635px;
}

.home-overview-info {
  width: 100%;
  position: absolute;
  top: 0;
  height: 100%;
  background-color: var(--black-color);
}

.home-overview-info .container-main {
  height: 100%;
  display: flex;
  justify-content: flex-end;
}

.home-overview-content {
  height: 100%;
  display: flex;
  flex-flow: column;
  justify-content: center;
  width: 50%;
  padding-left: 83px;
}

.home-overview-small-title {
  margin-bottom: 12px;
}

.home-overview-big-title h2 {
  font-size: 45px;
  font-weight: var(--semi-bold);
  color: var(--white-color);
}

.home-overview-small-title h4 {
  font-size: 14px;
  font-weight: var(--regular);
  color: #868686;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.home-overview-desc {
  margin-top: 21px;
  max-width: 533px;
}

.home-overview-desc p {
  font-size: 14px;
  font-weight: var(--regular);
  color: var(--gray-color);
}

.home-overview-desc-points-section {
  margin-top: 15px;
}

.home-overview-desc-points-section p {
  font-size: 14px;
  font-weight: var(--regular);
  color: var(--gray-color);
}

.home-overview-desc-points-section ul {
  padding-left: 10px;
}

.home-overview-desc-points-section ul li {
  font-size: 14px;
  font-weight: var(--regular);
  color: var(--gray-color);
  position: relative;
  padding-left: 15px;
}

.home-overview-desc-points-section ul li::before {
  content: "●";
  position: absolute;
  left: 0;
  top: 3px;
  color: var(--white-color);
  font-size: 10px;
}

.home-overview-btns {
  display: flex;
  margin-top: 34px;
  gap: 24px;
}

.explorar-servicios a {
  border-radius: 5px;
  color: var(--black-color);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.15em;
  width: max-content;
  height: 42px;
  padding: 12px 38px;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid var(--cream-color);
  background: var(--cream-color);
}

.explorar-servicios a:hover {
  background: var(--dark-cream-btn-hover);
  border: 1px solid var(--dark-cream-btn-hover);
}

.vistar-show-room a {
  border-radius: 5px;
  color: var(--cream-color);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.15em;
  width: max-content;
  height: 42px;
  padding: 12px 38px;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid var(--cream-color);
  background: transparent;
}

.vistar-show-room a:hover {
  color: var(--dark-cream-btn-hover);
  border: 1px solid var(--dark-cream-btn-hover);
  background: var(--white-color);
}

/* faq section */

.faq-section-main {
  background-color: var(--gray-color);
  padding-top: 106px;
  padding-bottom: 106px;
}

.faq-section-flex {
  display: flex;
  flex-wrap: wrap;
}

.faq-section-left,
.faq-section-right {
  width: 50%;
}

.faq-section-left {
  padding-right: 100px;
}

.faq-section-small-heading h4 {
  font-size: 14px;
  font-weight: var(--regular);
  color: #868686;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.faq-section-small-heading {
  margin-bottom: 19px;
}

.faq-section-big-heading h2 {
  font-size: 45px;
  font-weight: var(--semi-bold);
  color: var(--desc-color);
  max-width: 412px;
}

.faq-section-desc {
  margin-top: 23px;
}

.faq-section-desc p {
  font-size: 14px;
  font-weight: var(--regular);
  color: #868686;
  max-width: 429px;
}

.faq-section-btn {
  margin-top: 25px;
}

.faq-section-btn a {
  border-radius: 5px;
  color: var(--white-color);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  font-weight: var(--regular);
  letter-spacing: 0.15em;
  width: max-content;
  height: 46px;
  padding: 14px 20px;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  /* border: 1px solid var(--cream-color); */
  background: var(--cream-color);
}

.faq-section-btn a:hover {
  color: var(--white-color);
  background: var(--dark-cream-btn-hover);
}

.faq-section-btn a img {
  margin-left: 9px;
  width: 5px;
  height: 9px;
}

/* Base accordion item */
.faq-real-one .accordion-item {
  padding: 37px;
  border-radius: 10px;
  background-color: var(--white-color);
  border: none;
  margin-bottom: 10px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* Button base */
.faq-real-one .accordion-button {
  background-color: var(--white-color);
  color: var(--black-color);
  border: none;
  font-size: 22px;
  font-weight: var(--semi-bold);
  padding: unset;
  box-shadow: none;
  position: relative;
  transition: all 0.3s ease;
}

/* Arrow */
.faq-real-one .accordion-button::after {
  content: "";
  position: relative;
  background-color: var(--black-color);
  border-radius: 50%;
  width: 42px;
  height: 42px;
  padding: 22px;
  margin-left: auto;
  background-image: url("../images/arrow-faq.svg");
  background-repeat: no-repeat;
  background-size: 1rem;
  background-position: center;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.faq-real-one .accordion-button:not(.collapsed) {
  color: var(--white-color);
  background-color: var(--black-color);
}

.faq-real-one .accordion-button:not(.collapsed)::after {
  transform: rotate(-45deg);
  background-color: var(--cream-color);
  background-image: url("../images/arrow-faq-black.svg");
}

.faq-real-one .accordion-body {
  padding: unset;
  padding-top: 18px;
  width: 500px;
  color: var(--black-color);
  transition: color 0.3s ease, background-color 0.3s ease;
}

.faq-real-one .accordion-body p {
  font-size: 14px;
  font-weight: var(--regular);
  color: var(--white-color);
}

.faq-real-one .accordion-item:has(.accordion-button:not(.collapsed)) {
  background-color: var(--black-color);
}

.faq-real-one .accordion-item:has(.accordion-button:not(.collapsed)) .accordion-body {
  color: var(--white-color);
}

/* home products section */

.home-products-page-main {
  padding-top: 65px;
  padding-bottom: 65px;
  background-color: var(--white-color);
}

.home-products-page-heading {
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-products-page-heading h2 {
  font-size: 45px;
  font-weight: var(--regular);
  color: var(--desc-color);
  text-align: center;
  width: 641px;
}

.home-products-page-heading h2 span {
  font-weight: var(--bold);
}

.home-products-page-system {
  padding-top: 40px;
  padding-left: 80px;
  padding-right: 80px;
}

.home-products-tab .tab-btns {
  display: flex;
  width: 100%;
  border-bottom: 1px solid var(--gray-color);
  padding: 26px;
  justify-content: space-between;
  align-items: center;
}

.home-products-tab .tab-btns li {
  font-size: 14px;
  letter-spacing: 0.15em;
  font-weight: var(--regular);
  color: var(--black-color);
  text-transform: uppercase;
}

.home-products-tab .tab-btns li a {
  color: var(--black-color);
}

.home-products-tab .tab-btns li a {
  position: relative;
  color: var(--black-color);
  text-decoration: none;
}

.home-products-tab .tab-btns li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0%;
  height: 2px;
  background-color: var(--cream-color);
  transition: width 0.4s ease;
}

.home-products-tab .tab-btns li a:hover {
  /* font-weight: var(--bold); */
  text-shadow: 0.5px 0 0 currentColor, -0.5px 0 0 currentColor;
}

.home-products-tab .tab-btns li a:hover::after {
  width: 100%;
}

.home-products-tab .tab-btns li a.active {
  /* font-weight: var(--bold); */
  text-shadow: 0.5px 0 0 currentColor, -0.5px 0 0 currentColor;
}

.home-products-tab .tab-btns li a.active::after {
  width: 100%;
}

.home-products-tab .tab-btns .more-vehicles a {
  border-radius: 5px;
  color: var(--desc-color);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  font-weight: var(--regular);
  letter-spacing: 0.15em;
  width: max-content;
  height: 46px;
  padding: 14px 20px;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid var(--desc-color);
  background: transparent;
}

.home-products-tab .tab-btns .more-vehicles a:hover {
  background: var(--cream-color);
  font-weight: var(--regular);
  text-shadow: unset;
}

.home-products-tab .tab-btns .more-vehicles a:hover::after {
  content: unset;
}

.home-products-tab .tab-btns .more-vehicles a:hover::before {
  content: unset;
}

.home-products-tab .tab-btns .more-vehicles a img {
  margin-left: 9px;
  width: 4px;
  height: 9px;
  display: block;
}

.home-product-flex-right-info-desc p,
.home-product-flex-right-info-color-heading p {
  font-size: 14px;
  font-weight: var(--regular);
  color: var(--desc-color);
}

.home-product-flex-right-info-desc ul {
  padding-left: 10px;
}

.home-product-flex-right-info-desc ul li {
  font-size: 14px;
  font-weight: var(--regular);
  color: var(--desc-color);
  position: relative;
  padding-left: 15px;
}

.home-product-flex-right-info-desc ul li::before {
  content: "●";
  position: absolute;
  left: 0;
  top: 3px;
  color: var(--desc-color);
  font-size: 10px;
}

.tab-contents {
  padding-top: 50px;
}

.home-product-flex {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.home-product-flex-left,
.home-product-flex-right {
  width: 50%;
}

.home-product-flex-right {
  padding-left: 106px;
}

.home-product-flex-left-img {
  /* height: 504px;
  width: 548px; */
  aspect-ratio: 548/504;
}

.home-product-flex-right-phenom-img {
  height: 23px;
  width: max-content;
}
body.mac_os .home-product-flex-right-phenom-img{
	height:unset;
	width:unset;
}

body.mac_os .home-product-flex-right-phenom-img img{
	height: 23px;
    object-fit: cover;
/*     max-height: 23px; */
	width:unset;
}

.home-product-flex-right-info-desc {
  padding-top: 30px;
  max-width: 420px;
}

.home-product-flex-right-info-color {
  padding-top: 20px;
}

.home-product-flex-right-info-colors ul {
  display: flex;
  gap: 14px;
  align-items: center;
  padding-top: 20px;
}

.home-product-flex-right-info-colors ul li {
  height: 46px;
  width: 46px;
  border-radius: 50%;
  border: 1px solid #000;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1px;
}

.home-product-flex-right-info-colors ul li img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.home-product-flex-right-info-colors ul li.more-colors {
  font-size: 14px;
  font-weight: var(--regular);
  color: var(--desc-color);
  border: unset;
  margin-left: -10px;
}

.home-product-flex-right-info-colors ul li.more-colors a {
  color: var(--desc-color);
}

.home-product-flex-right-info-desc ul {
  padding-top: 20px;
}

.home-product-flex-right-info-add-cart {
  padding-top: 51px;
}

.home-product-flex-right-info-add-cart a {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--cream-color);
  padding: 0px 20px;
  height: 46px;
  width: max-content;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: var(--regular);
  color: var(--white-color);
  border: unset;
  border-radius: 5px;
  text-align: center;
	font-size:14px;
}

.home-product-flex-right-info-add-cart a:hover {
  background-color: var(--dark-cream-btn-hover);
  color: var(--white-color);
}

.home-products-page-system-btn {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.home-products-page-system-btn button {
  height: 27px;
  width: 27px;
  background: transparent;
  border-radius: 50%;
  border: unset;
  border: 1px solid var(--desc-color);
  display: flex;
  justify-content: center;
  align-items: center;
}

.home-products-page-system-btn button img {
  width: 8px;
  height: 10px;
}

.tab-contents {
  position: relative;
}

.home-products-page-system-btn {
  position: absolute;
  top: 0;
  right: 37%;
}

/* contact section */

.home-contact-us-main {
  padding-top: 69px;
  padding-bottom: 42px;
  background-color: var(--black-color);
}

/* .home-contact-us-main .container-main{
    padding-left: 75px;
    padding-right: 112px;
} */
.home-contact-us-flex {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.home-contact-us-left,
.home-contact-us-right {
  width: 50%;
}

.home-contact-us-left {
  padding-right: 187px;
}

.home-contact-us-left-heading h2 {
  font-size: 35px;
  font-weight: var(--semi-bold);
  color: var(--white-color);
}

.home-contact-us-left-heading h2 span {
  color: var(--cream-color);
}

.form-flex {
  display: flex;
  flex-wrap: wrap;
  margin: -7px;
}

.form-field {
  padding: 19px;
  width: 33.33%;
  margin-bottom: 0;
}

.form-field.half {
  width: 50%;
}

.form-field.full {
  width: 100%;
  padding: 0px 19px;
}

.form-field input::placeholder,
.form-field textarea::placeholder,
.form-field select option {
  color: var(--desc-color);
}

.form-field input,
.form-field textarea,
.form-field select {
  font-size: 14px;
  color: var(--desc-color);
  font-weight: var(--regular);
  letter-spacing: 0.15em;
  width: 100%;
  height: 46px;
  outline: none;
  border: unset;
  padding: 0px 12px;
  /* border-radius: 5px; */
  background-color: var(--white-color);
  border-radius: 5px;
}

.form-field textarea {
  padding: 12px;
  height: 92px;
}

.submit-btn {
  float: right;
  margin-top: 15px;
  padding: 0 12px;
}

.submit-btn input {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--cream-color);
  padding: 0px 20px;
  height: 46px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: var(--regular);
  color: var(--black-color);
  border: unset;
  border-radius: 5px;
  text-align: center;
}

.submit-btn input:hover {
  background-color: var(--dark-cream-btn-hover);
}

.footer-main {
  background-color: var(--black-color);
  /* padding-bottom: 56px; */
  padding-top: 30px;
}

.footer-main .footer {
  position: relative;
  padding-top: 39px;
  padding-bottom:26px;
}

.footer-main .footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: -23px;
  right: -23px;
  height: 1px;
  background-color: var(--gray-color);
}

.footer-flex {
  display: flex;
  justify-content: space-between;
  /* padding-bottom: 60px; */
}

.footer-logo {
  max-width: 265px;
  margin-bottom: 41px;
}

.social-icons {
  display: flex;
  gap: 24px;
}

.fb-icon img,
.insta-icon img {
  height: 24px;
  width: 24px;
}

.footer-block h6 {
  font-size: 12px;
  letter-spacing: 0.15em;
  color: var(--white-color);
  font-weight: var(--bold);
  margin-bottom: 20px;
  text-transform: uppercase;
}

.footer-block ul li {
  font-size: 12px;
  letter-spacing: 0.15em;
  color: var(--white-color);
  font-weight: var(--regular);
  margin-bottom: 20px;
  text-transform: uppercase;
}

.footer-block ul li a {
  color: var(--white-color);
  padding:0px;
}

.home-product-slider.owl-theme .owl-dots .owl-dot.active span,
.home-product-slider.owl-theme .owl-theme .owl-dots .owl-dot:hover span {
  width: 43px;
  background: #d7be96;
  height: 3px;
  border-radius: unset;
  margin: 1px 2px;
}

.home-product-slider.owl-theme .owl-dots .owl-dot span {
  width: 12px;
  background: #d9d9d9;
  height: 3px;
  border-radius: unset;
  margin: 1px 2px;
}

/* contact page */

.header-color .main-header {
  position: unset;
  background: var(--black-color);
  border-bottom: 1px solid #868686;
  padding-left: 64px;
  padding-right: 64px;
}

.contact-page-main {
  background: linear-gradient(to right, #efefef 50%, #ffffff 50%);
  /* overflow-x: hidden; */
}

.contact-page-info {
  padding-top: 58px;
  padding-bottom: 58px;
  padding-right: 55px;
}

.contact-page-flex {
  display: flex;
  flex-wrap: wrap;
}

.contact-page-left,
.contact-page-right {
  width: 50%;
}

.contact-page-info-heading,
.contact-page-right-info-heading {
  padding-bottom: 20px;
}

.contact-page-info-heading h2,
.contact-page-right-info-heading h2 {
  font-weight: var(--semi-bold);
  font-size: 35px;
  color: var(--black-color);
}

.contact-page-info-desc,
.contact-page-right-info-desc {
  width: 501px;
  padding-bottom: 10px;
}

.contact-page-info-desc p,
.contact-page-right-info-desc p {
  font-weight: var(--light);
  color: var(--black-color);
  font-size: 14px;
}

.contact-page-info-desc-real p {
  font-weight: var(--light);
  color: var(--black-color);
  font-size: 14px;
}

.contact-page-info-desc-real p a {
  color: var(--dark-cream-btn-hover);
  font-weight: var(--bold);
}

.contact-page-info-form {
  padding-top: 25px;
}

.contact-page-info-form .form-field {
  margin-left: -19px;
}

.contact-page-info-form .form-field.full {
  margin-right: 54px;
}

.contact-page-info-form .submit-btn {
  margin-right: 67px;
  padding: 0;
  margin-top: 21px;
}

.contact-page-info-form .form-field input,
.contact-page-info-form .form-field textarea,
.contact-page-info-form .form-field select {
  border: 1px solid #d9d9d9;
}

.contact-page-info-form .form-field textarea {
  height: 136px;
}

.contact-page-info-form form {
  box-sizing: border-box;
  height: 100%;
  width: 100%;
  display: inline-block;
}

.contact-page-right-info {
  padding-left: 55px;
  padding-top: 58px;
  padding-bottom: 58px;
}

.contact-page-right-info-desc-real p {
  color: var(--dark-cream-btn-hover);
  font-weight: var(--bold);
  font-size: 14px;
  text-decoration: underline;
}

.contact-page-right-info-desc-real p a {
  color: var(--dark-cream-btn-hover);
  font-weight: var(--bold);
  font-size: 14px;
  text-decoration: underline;
}

.contact-page-right-info-map {
  border-radius: 10px;
  padding-top: 32px;
}

.contact-page-right-info-map,
.contact-page-right-info-map iframe {
  /* height: 319px;
  width: 563px; */
  border-radius: 10px;
  aspect-ratio: 563/319;
}

/* Service page */

.service-page .home-banner-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  /* background: linear-gradient(60deg,
    rgba(27, 27, 27, 0) 0%,
    rgba(27, 27, 27, 0.7) 100%); */

  background: rgba(0, 0, 0, 0.5);
}

.service-page .home-banner-bg::after {
  content: unset;
}

/* .service-page .home-banner-bg::before{
    content: unset;
} */

.service-page .home-banner-content .color {
  color: var(--cream-color);
  text-transform: uppercase;
  margin-bottom: 13px;
}

.service-page .home-banner-content h1 {
  max-width: 448px;
  font-size: 45px;
}

.service-page .home-banner-content p {
  max-width: 350px;
}

.service-page-btn {
  margin-top: 37px;
}

.service-page-btn a {
  border-radius: 5px;
  color: var(--black-color);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.15em;
  width: max-content;
  height: 42px;
  padding: 14px 20px;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid var(--cream-color);
  background: var(--cream-color);
}

.service-page-btn a:hover {
  background: var(--dark-cream-btn-hover);
  border: 1px solid var(--dark-cream-btn-hover);
}

.nuestros-servicios-main {
  padding-top: 58px;
  padding-bottom: 58px;
}

.nuestros-servicios-heading {
  display: flex;
  justify-content: center;
  align-items: center;
}

.nuestros-servicios-heading h2 {
  font-size: 45px;
  color: var(--desc-color);
  font-weight: var(--semi-bold);
}

.nuestros-servicios-flex {
  display: flex;
  flex-wrap: wrap;
  padding-top: 32px;
}

.nuestros-servicios-block {
  width: 33.33%;
  padding: 10px;
}

.nuestros-servicios-inner {
  height: 100%;
  padding: 50px 30px;
  border-radius: 10px;
  background-color: var(--gray-color);
}

.nuestros-servicios-block-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
  margin: 0 auto;
  max-width: 39px;
  min-height: 39px;
}

.nuestros-servicios-block-icon img {
  width: 39px;
  height: 39px;
  object-fit: contain;
}

.nuestros-servicios-block-heading h3 {
  font-size: 35px;
  color: var(--black-color);
  font-weight: var(--bold);
  text-align: center;
}

.nuestros-servicios-block-desc {
  margin-top: 10px;
}

.nuestros-servicios-block-desc p {
  font-size: 14px;
  color: var(--black-color);
  font-weight: var(--light);
  text-align: center;
}

.nuestros-servicios-block-link {
  display: flex;
  justify-content: center;
  align-items: center;
}

.nuestros-servicios-block-link a {
  font-size: 14px;
  color: var(--cream-color);
  font-weight: var(--bold);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-top: 27px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.nuestros-servicios-block-link a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0%;
  height: 2px;
  background-color: var(--cream-color);
  transition: width 0.4s ease;
}

.nuestros-servicios-block-link a:hover::after {
  width: 100%;
}

.nuestros-servicios-block-link a img {
  margin-left: 14px;
  width: 4px;
  height: 9px;
}

.nuestros-servicios-inner:hover {
  background-color: var(--black-color);
}

.nuestros-servicios-inner:hover .nuestros-servicios-block-icon img {
  filter: invert(1);
}

.nuestros-servicios-inner:hover .nuestros-servicios-block-heading h3,
.nuestros-servicios-inner:hover .nuestros-servicios-block-desc p {
  color: var(--white-color);
}

.sobre-nosotros-main {
  padding-top: 78px;
  padding-bottom: 48px;
}

.sobre-nosotros-flex {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.sobre-nosotros-left,
.sobre-nosotros-right {
  width: 50%;
}

.sobre-nosotros-right {
  padding-left: 75px;
}

.sobre-nosotros-info .color {
  color: var(--dark-cream-btn-hover);
  text-transform: uppercase;
  margin-bottom: 13px;
}

.sobre-nosotros-info p {
  font-size: 14px;
  font-weight: var(--light);
  color: var(--black-color);
  max-width: 556px;
}

.sobre-nosotros-info h2 {
  font-size: 45px;
  font-weight: var(--bold);
  color: var(--black-color);
  max-width: 603px;
  margin-bottom: 31px;
}

.sobre-nosotros-btns {
  display: flex;
  gap: 15px;
  padding-top: 36px;
}

.explore-vehicle a {
  border-radius: 5px;
  color: var(--black-color);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.15em;
  width: max-content;
  height: 46px;
  padding: 14px 20px;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid var(--cream-color);
  background: var(--cream-color);
}

.explore-vehicle a:hover {
  background: var(--dark-cream-btn-hover);
  border: 1px solid var(--dark-cream-btn-hover);
}

.visit-showroom a {
  border-radius: 5px;
  color: var(--desc-color);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  font-weight: var(--regular);
  letter-spacing: 0.15em;
  width: max-content;
  height: 46px;
  padding: 14px 20px;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid var(--desc-color);
  background: transparent;
}

.visit-showroom a:hover {
  background: var(--cream-color);
  font-weight: var(--regular);
}

.sobre-nosotros-img {
  /* height: 514px; */
  position: relative;
  aspect-ratio: 674/514;
}

.sobre-nosotros-img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-color: #000;
  opacity: 0.2;
  height: 100%;
  width: 100%;
  border-radius: 12px;
}

.sobre-nosotros-img img {
  border-radius: 12px;
}

.sobre-nosotros-img-slider {
  position: relative;
}

.sobre-nosotros-img-slider.owl-theme .owl-dots {
  position: absolute;
  bottom: 45px;
  left: 50%;
  transform: translateX(-50%);
}

.sobre-nosotros-img-slider.owl-theme .owl-dots .owl-dot.active span,
.sobre-nosotros-img-slider.owl-theme .owl-theme .owl-dots .owl-dot:hover span {
  width: 43px;
  background: #d7be96;
  height: 3px;
  border-radius: unset;
  margin: 1px 2px;
}

.sobre-nosotros-img-slider.owl-theme .owl-theme .owl-dots {
  margin-top: unset !important;
}

.sobre-nosotros-img-slider.owl-theme .owl-dots .owl-dot span {
  width: 12px;
  background: #d9d9d9;
  height: 3px;
  border-radius: unset;
  margin: 1px 2px;
}

.service-contact .service-contact,
.service-contact .contact-page-info {
  padding-top: 74px;
}

.service-contact .contact-page-info-desc-real {
  display: flex;
  gap: 20px;
}

.service-contact .contact-page-info-desc-real p:first-child {
  position: relative;
}

.service-contact .contact-page-info-desc-real p:first-child::after {
  content: "";
  position: absolute;
  right: -10px;
  top: 0;
  width: 1px;
  height: 100%;
  background-color: var(--black-color);
}

.service-contact .form-field {
  padding: 7.5px;
  margin-left: 0px;
}

.service-contact .form-field.full {
  margin-right: 0px;
}
.service-contact .submit-btn{
	margin-right:0px;
}

.contact-page-info-form .form-field select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  background-image: url(../images/down-arrow-select-mg.png);
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 8px;

  padding-right: 40px;
  cursor: pointer;
}

.contact-page-main.service-contact {
  background: var(--gray-color);
	height:unset !important;
}

.service-contact .contact-page-info {
  position: relative;
}

.service-contact .contact-page-info::after {
  content: "";
  position: absolute;
  right: 0px;
  top: 58px;
  width: 1px;
  height: 500px;
  background-color: #d9d9d9;
  padding-top: 58px;
  padding-bottom: 58px;
}

/* About us page */

.about-us-page .home-banner-content h1 {
  max-width: unset;
}

.nuestra-historia-main {
  background-color: var(--white-color);
  padding-top: 58px;
  padding-bottom: 80px;
}

.nuestra-historia-info {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 23px;
}

.nuestra-historia-heading h2 {
  font-weight: var(--semi-bold);
  font-size: 35px;
  color: var(--desc-color);
  text-align: center;
}

.nuestra-historia-desc {
  max-width: 750px;
}

.nuestra-historia-desc p {
  font-weight: var(--regular);
  font-size: 14px;
  color: var(--black-color);
  text-align: center;
  margin-bottom: 12px;
}

.nuestra-mision-part {
  position: relative;
}

.nuestra-mision-part-flex {
  display: flex;
  flex-direction: row-reverse;
}

.nuestra-mision-img {
  width: 50%;
  position: relative;
  z-index: 1;
  height: 438px;
  /* aspect-ratio: 747/438; */
}

.nuestra-mision-overview {
  width: 100%;
  position: absolute;
  top: 0;
  height: 100%;
  background-color: var(--gray-color);
}

.nuestra-mision-overview .container-main {
  height: 100%;
  display: flex;
  justify-content: flex-start;
}

.nuestra-mision-overview-content {
  height: 100%;
  display: flex;
  flex-flow: column;
  justify-content: center;
  width: 50%;
  padding-right: 63px;
  gap: 20px;
}

.nuestra-mision-overview-content-heading h2 {
  font-weight: var(--semi-bold);
  font-size: 35px;
  color: var(--desc-color);
}

.nuestra-mision-overview-content-desc p {
  font-weight: var(--regular);
  font-size: 14px;
  color: var(--black-color);
  margin-bottom: 12px;
}

.valores-section {
  padding-top: 30px;
  overflow-x: hidden;
}

.valores-section .home-overview-info {
  background-color: var(--gray-color);
}

.valores-section .home-overview-content {
  padding-left: 55px;
}

.valores-section .home-overview-img {
  height: 506px;
}

.valores-heading h2 {
  font-weight: var(--semi-bold);
  font-size: 35px;
  color: var(--desc-color);
}

.valores-content-flex {
  display: flex;
  margin-top: 28px;
  flex-direction: column;
  gap: 20px;
}

.valores-content-block {
  border-bottom: 1px solid #d9d9d9;
}

.valores-content-block-heading h3 {
  font-weight: var(--semi-bold);
  font-size: 20px;
  color: var(--black-color);
  margin-bottom: 8px;
}

.valores-content-block-desc p {
  font-weight: var(--light);
  font-size: 14px;
  color: var(--black-color);
  font-style: italic;
  padding-bottom: 17px;
}

.nuestra-historia-btn {
  display: flex;
  gap: 15px;
  padding-top: 32px;
}

/* Vehicle Page */

.vehicle-page-main {
  padding-top: 39px;
  padding-bottom: 55px;
  background-color: var(--white-color);
}

.vehicle-page-heading h2 {
  font-weight: var(--semi-bold);
  font-size: 45px;
  color: var(--black-color);
  margin-bottom: 17px;
  text-align: center;
}

.vehicle-page {
  position: relative;
}

.vehicle-page-top-bar {
  position: sticky;
  top: 80px;
  display: flex;
  justify-content: center;
  z-index: 5;
}

.vehicle-page-top-bar-inner {
  background-color: var(--gray-color);
  border-radius: 100px;
  padding: 18px 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: max-content;
  margin: 0 auto;
}



.vehicle-page-top-bar-inner-links ul {
  display: flex;
  align-items: center;
  justify-content: center;
}

.vehicle-page-top-bar-inner-links ul li {
  font-size: 14px;
  letter-spacing: 0.15em;
  font-weight: var(--regular);
  color: var(--black-color);
  text-transform: uppercase;
  padding: 0 40px;
}

.vehicle-page-top-bar-inner-links ul li a {
  color: var(--black-color);
}

.vehicle-page-top-bar-inner-links ul li a {
  position: relative;
  color: var(--black-color);
  text-decoration: none;
}

.vehicle-page-top-bar-inner-links ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0%;
  height: 2px;
  background-color: var(--cream-color);
  transition: width 0.4s ease;
}

.vehicle-page-top-bar-inner-links ul li a:hover {
  text-shadow: 0.5px 0 0 currentColor, -0.5px 0 0 currentColor;
}

.vehicle-page-top-bar-inner-links ul li a:hover::after {
  width: 100%;
}

.vehicle-page-top-bar-inner-links ul li {
  border-right: 1px solid #d9d9d9;
}

.vehicle-page-top-bar-inner-links ul li:last-child {
  border: none;
}

.vehicle-page-top-bar-inner-links ul li.active a {
  text-shadow: 0.5px 0 0 currentColor, -0.5px 0 0 currentColor;
}

.vehicle-page-top-bar-inner-links ul li.active a::after {
  width: 100%;
}

.vehicle-page-vehicles-heading {
  padding-top: 30px;
}

.vehicle-page-vehicles-heading h2 {
  font-weight: var(--semi-bold);
  font-size: 35px;
  color: var(--black-color);
  margin-bottom: 17px;
  text-align: center;
}

.vehicle-page-vehicles-flex {
  display: flex;
  flex-wrap: wrap;
  padding-top: 43px;
}

.vehicle-page-vehicles-block {
  width: 33.33%;
}

.vehicle-page-vehicles-block-inner {
  height: 100%;
  padding-left: 43px;
  padding-right: 43px;
  border-right: 1px solid #d9d9d9;
}

.vehicle-page-vehicles-block-inner-img {
  aspect-ratio: 290 / 267;
}

.vehicle-page-vehicles-block-inner-info {
  padding-top: 36px;
}

.vehicle-page-main .vehicle-page-vehicles-block-inner-name{
	  height: 18px;
  width: max-content;
} 

.vehicle-page-vehicles-block-inner-name {
/*   height: 18px; */
/*   width: max-content; */
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}
.vehicle-page-vehicles-block-inner-name a img{
	height:18px;
	width:max-content;
}

body.mac_os  .vehicle-page-main .vehicle-page-vehicles-block-inner-name {
    min-height: unset;
    width: unset;
	height:unset;
}

body.mac_os .vehicle-page-main  .vehicle-page-vehicles-block-inner-name img {
    height: auto;
    width: auto;
    max-height: 18px;
    object-fit: contain;
}

body.mac_os .category-detail-wrap .vehicle-page-vehicles-block-inner-name{
	 min-height: unset;
    width: unset;
	height:unset;
}
body.mac_os .category-detail-wrap  .vehicle-page-vehicles-block-inner-name img {
    height: auto;
    width: auto;
    max-height: 18px;
    object-fit: contain;
}


body.mac_os .dropdown-menu .vehicle-page-vehicles-block-inner-name {
   height: 18px;
  width: max-content;
}
body.mac_os .dropdown-menu .vehicle-page-vehicles-block-inner-name img {
/*     height: 100%; */
    width: unset;
    object-fit: cover;
}


.vehicle-page-vehicles-block-inner-link {
  display: flex;
  justify-content: center;
  align-items: center;
}

.vehicle-page-vehicles-block-inner-link a {
  font-size: 14px;
  color: var(--cream-color) !important;
  font-weight: var(--bold);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-top: 27px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  text-shadow: unset !important;
}

.vehicle-page-vehicles-block-inner-link a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0%;
  height: 2px;
  background-color: var(--cream-color);
  transition: width 0.4s ease;
}

.vehicle-page-vehicles-block-inner-link a:hover::after {
  width: 100%;
}

.vehicle-page-vehicles-block-inner-link a img {
  margin-left: 14px;
  width: 4px;
  height: 9px;
}

.vehicle-page-vehicles-block:last-child .vehicle-page-vehicles-block-inner {
  border: none;
}

.vehicle-main-block {
  padding-top: 78px;
}

.vehicle-page-vehicles-block-inner-link a::after {
  width: unset !important;
}

.vehicle-page-vehicles-block-inner-link a:hover::after {
  width: 100% !important;
  transition: width 0.4s ease;
}

.vehicle-page-vehicles-block-inner-link a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0% !important;
  height: 2px;
  background-color: var(--cream-color);
  transition: width 0.4s ease;
}

.dropdown-menu .vehicle-page-vehicles-flex {
  display: none;
}

.dropdown-menu .vehicle-page-vehicles-flex.active {
  display: flex;
}

/* Vehicle detail Page */

.vehicle-detail-page-hero .home-banner-left {
  width: 100%;
}

.vehicle-detail-page-hero .home-banner-content {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-direction: column;
}

.vehicle-detail-page-hero .home-banner-content p.color {
  color: var(--cream-color);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}



.vehicle-detail-page-hero .home-banner-content img {
  width: max-content;
  height: 43px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  margin-top: 23px;
  margin-bottom: 41px;
}
body.mac_os .vehicle-detail-page-hero .home-banner-content img{
	width:unset;
}

.vehicle-detail-page-hero .home-banner-content p {
  max-width: 500px;
  text-align: center;
}

.vehicle-detail-stats {
  display: flex;
  justify-content: space-between;
  padding-top: 100px;
}

.vehicle-detail-stats-block {
  width: 25%;
}

.vehicle-detail-stats-block-heading p {
  color: var(--white-color);
  letter-spacing: 1.5px;
  font-size: 14px;
  font-weight: var(--regular);
  text-transform: uppercase;
  text-align: center;
}

.vehicle-detail-stats-block-desc h4 {
  color: var(--white-color);
  font-size: 25px;
  font-weight: var(--bold);
  text-align: center;
  margin-top: 7px;
}

/* quiero-mi-phenom */

.quiero-mi-phenom-img {
  aspect-ratio: 1440/650;
}

.quiero-mi-phenom {
  position: relative;
}

.quiero-mi-phenom-slider {
  position: relative;
}

.quiero-mi-phenom-slider-btns {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  width: 100%;
  z-index: 1;
  padding: 0px 40px;
}

.quiero-mi-phenom-slider-btns button {
  pointer-events: auto;
  /* allow clicking buttons */
}

.quiero-mi-phenom-slider-btns button {
  height: 32px;
  width: 32px;
  background: transparent;
  border-radius: 50%;
  border: unset;
  border: 1px solid var(--white-color);
  display: flex;
  justify-content: center;
  align-items: center;
}

.quiero-mi-phenom-slider-btns button img {
  width: 8px;
  height: 11px;
}

.quiero-mi-phenom-slider.owl-theme .owl-dots {
  position: absolute;
  bottom: 45px;
  left: 50%;
  transform: translateX(-50%);
}

.quiero-mi-phenom-slider.owl-theme .owl-dots .owl-dot.active span,
.quiero-mi-phenom-slider.owl-theme .owl-theme .owl-dots .owl-dot:hover span {
  width: 43px;
  background: #d7be96;
  height: 3px;
  border-radius: unset;
  margin: 1px 2px;
}

.quiero-mi-phenom-slider.owl-theme .owl-theme .owl-dots {
  margin-top: unset !important;
}

.quiero-mi-phenom-slider.owl-theme .owl-dots .owl-dot span {
  width: 12px;
  background: #d9d9d9;
  height: 3px;
  border-radius: unset;
  margin: 1px 2px;
}

.quiero-mi-phenom-desc {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 35px;
}

.quiero-mi-phenom-desc p {
  font-size: 14px;
  font-weight: var(--light);
  color: var(--desc-color);
  text-align: center;
  max-width: 705px;
}

.quiero-mi-phenom-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 20px;
}

.quiero-mi-phenom-btn a {
  border-radius: 5px;
  color: var(--black-color);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.15em;
  width: max-content;
  height: 46px;
  padding: 14px 20px;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid var(--cream-color);
  background: var(--cream-color);
}

.quiero-mi-phenom-btn a:hover {
  background: var(--dark-cream-btn-hover);
  border: 1px solid var(--dark-cream-btn-hover);
}

.informacion-tecnica-main {
  padding-top: 95px;
  padding-bottom: 95px;
}

.informacion-tecnica-flex {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.informacion-tecnica-left {
  width: 45%;
}

.informacion-tecnica-right {
  width: 55%;
}

.informacion-tecnica-left {
  padding-right: 50px;
}

.informacion-tecnica-slider {
  position: relative;
}

.informacion-tecnica-img {
  aspect-ratio: 747/588;
}

.informacion-tecnica-slider.owl-theme .owl-dots {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
}

.informacion-tecnica-slider.owl-theme .owl-dots .owl-dot.active span,
.informacion-tecnica-slider.owl-theme .owl-theme .owl-dots .owl-dot:hover span {
  width: 43px;
  background: #d7be96;
  height: 3px;
  border-radius: unset;
  margin: 1px 2px;
}

.informacion-tecnica-slider.owl-theme .owl-theme .owl-dots {
  margin-top: unset !important;
}

.informacion-tecnica-slider.owl-theme .owl-dots .owl-dot span {
  width: 12px;
  background: #d9d9d9;
  height: 3px;
  border-radius: unset;
  margin: 1px 2px;
}

.informacion-tecnica-left-heading h2 {
  font-size: 45px;
  color: var(--black-color);
  font-weight: var(--semi-bold);
}

.informacion-tecnica-faqs {
  padding-top: 43px;
}

.informacion-tecnica-faqs .accordion-button {
  font-size: 14px;
  color: #868686;
  font-weight: var(--regular);
  padding: unset;
  padding-top: 17px;
  padding-bottom: 17px;
}

.informacion-tecnica-faqs .accordion-button::after {
  content: "+";
  background-image: unset;
  color: var(--desc-color);
  font-size: 14px;
  font-weight: var(--regular);
  height: unset;
  width: unset;
  background-size: unset;
}

.informacion-tecnica-faqs .accordion-button:not(.collapsed)::after {
  content: "+";
  /* transform: unset; */
  background-image: unset;
}

.informacion-tecnica-faqs .accordion-button:not(.collapsed) {
  background-color: unset;
  box-shadow: unset;
}

.informacion-tecnica-faqs .accordion-button:focus {
  box-shadow: unset;
}

.informacion-tecnica-faqs .accordion-item {
  border: none;
  border-bottom: 1px solid #d9d9d9;
}

.informacion-tecnica-faqs .accordion-body {
  padding: unset;
  padding-top: 7px;
  padding-bottom: 23px;
}

.informacion-tecnica-faqs .accordion-body ul li {
  font-size: 14px;
  color: var(--black-color);
  font-weight: var(--regular);
}

.informacion-tecnica-faqs .accordion-body p {
  font-size: 14px;
  color: var(--black-color);
  font-weight: var(--regular);
}

.informacion-tecnica-link a {
  font-size: 14px;
  color: var(--cream-color);
  font-weight: var(--bold);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-top: 38px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: max-content;
}

.informacion-tecnica-link a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0%;
  height: 2px;
  background-color: var(--cream-color);
  transition: width 0.4s ease;
}

.informacion-tecnica-link a:hover::after {
  width: 100%;
}

.informacion-tecnica-link a img {
  margin-left: 14px;
  width: 4px;
  height: 9px;
}

.vehicle-detail-page-overview .home-overview-info {
  background-color: var(--gray-color);
}

.vehicle-detail-page-overview .home-overview-big-title h2 {
  color: var(--black-color);
}

.vehicle-detail-page-overview .home-overview-desc p {
  color: var(--desc-color);
}

.vehicle-detail-page-overview .home-overview-desc-points-section ul li {
  color: var(--desc-color);
}

.vehicle-detail-page-overview .home-overview-desc-points-section ul li::before {
  color: var(--desc-color);
}

.la-different-esta-main {
  padding-top: 113px;
  padding-bottom: 113px;
}

.la-different-esta-part {
  position: relative;
}

.la-different-esta-flex {
  display: flex;
  flex-direction: row-reverse;
}

.la-different-esta-overview {
  width: 100%;
  position: absolute;
  top: 0;
  height: 100%;
  background-color: var(--white-color);
}

.la-different-esta-overview .container-main {
  height: 100%;
  display: flex;
  justify-content: flex-start;
}

.la-different-esta-overview-content {
  height: 100%;
  display: flex;
  flex-flow: column;
  justify-content: center;
  width: 40%;
  padding-right: 90px;
  gap: 20px;
}

.la-different-esta-overview-heading h2 {
  font-weight: var(--semi-bold);
  font-size: 45px;
  color: var(--desc-color);
}

.la-different-esta-overview-desc p {
  font-weight: var(--regular);
  font-size: 14px;
  color: var(--black-color);
  margin-bottom: 12px;
}

.la-different-esta-right {
  width: 60%;
  position: relative;
  z-index: 1;
}

.la-different-esta-right-slider-img {
  aspect-ratio: 309/424;
}

.la-different-esta-right-slider-btns {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  width: 100%;
  z-index: 1;
  padding: 0px 40px;
}

.la-different-esta-right-slider-btns button {
  height: 32px;
  width: 32px;
  background: rgba(255, 255, 255, 0.3);

  border-radius: 50%;
  border: unset;
  border: 1px solid var(--white-color);
  display: flex;
  justify-content: center;
  align-items: center;
}

.la-different-esta-right-slider-btns button img {
  width: 8px;
  height: 11px;
}

.la-different-esta-right-slider-inner.owl-theme .owl-dots {
  position: absolute;
  top: 70%;
  left: -45%;
  transform: translateX(-50%);
}

.la-different-esta-right-slider-inner.owl-theme .owl-dots .owl-dot.active span,
.la-different-esta-right-slider-inner.owl-theme .owl-theme .owl-dots .owl-dot:hover span {
  width: 43px;
  background: #d7be96;
  height: 3px;
  border-radius: unset;
  margin: 1px 2px;
}

.la-different-esta-right-slider-inner.owl-theme .owl-theme .owl-dots {
  margin-top: unset !important;
}

.la-different-esta-right-slider-inner.owl-theme .owl-dots .owl-dot span {
  width: 12px;
  background: #d9d9d9;
  height: 3px;
  border-radius: unset;
  margin: 1px 2px;
}

.vehicle-detail-main {
  padding-top: 61px;
}

.vehicle-detail-flex {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.vehicle-detail-left,
.vehicle-detail-right {
  width: 50%;
}

.vehicle-detail-left-img {
  aspect-ratio: 600/551;
}

.vehicle-detail-right {
  padding-left: 67px;
}

.vehicle-detail-name img {
  width: unset;
  height: 22px;
}

.vehicle-detail-desc {
  padding-top: 35px;
}

.vehicle-detail-desc-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  row-gap: 23px;
}

.vehicle-detail-desc-block {
  width: 50%;
}

.vehicle-detail-desc-heading h3 {
  font-size: 14px;
  color: #bbbbbb;
  font-weight: var(--regular);
  margin-bottom: 8px;
}

.vehicle-detail-desc-info p {
  font-size: 14px;
  color: var(--black-color);
  font-weight: var(--regular);
}

.vehicle-detail-desc-block:last-child {
  width: 100%;
}

.vehicle-detail-color-flex ul {
    display: flex;
    gap: 14px;
    align-items: center;
    overflow-x: auto; 
    overflow-y: hidden;   
    white-space: nowrap;   
}

.vehicle-detail-color-flex ul::-webkit-scrollbar {
    height: 6px;    
    display: none;      
}

.vehicle-detail-color-img {
  height: 46px;
  width: 46px;
  border-radius: 50%;
  border: 1px solid #000;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1px;
}

.vehicle-detail-color-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.vehicle-detail-color-desc p {
  font-size: 14px;
  color: #bbbbbb;
  font-weight: var(--regular);
  margin-top: 8px;
  text-align: center;
}

.vehicle-detail-color-desc p a {
  color: #bbbbbb;
}

.whatsapp-sticky img {
  width: 55px;
  height: 55px;
  object-fit: cover;
  position: fixed;
  right: 28px;
  bottom: 29px;
  z-index: 20;
}

.mobile-home-section-box {
  background: linear-gradient(40deg,
      rgba(255, 255, 255, 0.6) 0%,
      rgba(255, 255, 255, 0.3) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: all 0.3s ease;
  padding: 19px 21px;
  border-radius: 5px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.mobile-home-section-heading {
  max-width: 108px;
  position: relative;
  display: flex;
  margin: 0 auto;
}

.mobile-home-section-stats {
  display: flex;
  align-items: center;
  /* justify-content: space-between; */
}

.mobile-home-section-main {
  display: none;
}

.vehicle-main-block {
  scroll-margin-top: 150px;
}

.tab-dropdown .tab-dropdown-btn{
  display: none;
}

.home-products-tab .tab-content-box {
    display: none;  
}

.home-products-tab .tab-content-box.active {
    display: block; 
}

.category-detail-wrap{
	padding-top:50px;
	padding-bottom:80px;
}
/* .vehicle-page-main {
  overflow-x: visible !important;
} */
.home-contact-us-main{
	overflow-x:hidden !important;
}

.testimonials-section-right{
  position: relative;
}
.testimonials-section-img-slider.owl-theme .owl-dots {
  position: absolute;
  bottom: 45px;
  left: 50%;
  transform: translateX(-50%);
}

.testimonials-section-img-slider.owl-theme .owl-dots .owl-dot.active span,
.testimonials-section-img-slider.owl-theme .owl-theme .owl-dots .owl-dot:hover span {
  width: 43px;
  background: #d7be96;
  height: 3px;
  border-radius: unset;
  margin: 1px 2px;
}

.testimonials-section-img-slider.owl-theme .owl-theme .owl-dots {
  margin-top: unset !important;
}

.testimonials-section-img-slider.owl-theme .owl-dots .owl-dot span {
  width: 12px;
  background: #d9d9d9;
  height: 3px;
  border-radius: unset;
  margin: 1px 2px;
}

.footer-designer-main{
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer-designer-name p{
  font-size: 12px;
  letter-spacing: 0.15em;
  color: var(--white-color);
  font-weight: var(--regular);
  text-transform: uppercase;
}
.footer-designer-name p a{
  font-size: 12px;
  letter-spacing: 0.15em;
  color: var(--white-color);
  font-weight: var(--semi-bold);
  margin-bottom: 20px;
  text-transform: uppercase;
}



