@charset "UTF-8";

/* ====================================== _____________ Variables Styles _____________ ====================================== */
/* ====================================== _____________ Variables Styles _____________ ====================================== */
/* ====================================== _____________ Mixin Styles _____________ ====================================== */
/* ====================================== _____________ Mixin Styles _____________ ====================================== */
/* ====================================== _____________ Classes Styles _____________ ====================================== */
.leftContainer {
  margin-left: auto;
  padding: 0 15px;
  padding-right: 0;
}

@media (max-width: 576px) {
  .leftContainer {
    width: 100%;
    padding-right: 15px;
    margin-left: auto;
  }
}

@media (min-width: 576px) and (max-width: 767px) {
  .leftContainer {
    width: calc(540px + ((100vw - 540px) / 2));
    padding-right: 15px;
    margin-left: auto;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .leftContainer {
    width: calc(720px + ((100vw - 720px) / 2));
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .leftContainer {
    width: calc(960px + ((100vw - 960px) / 2));
  }
}

@media (min-width: 1200px) {
  .leftContainer {
    width: calc(1140px + ((100vw - 1140px) / 2));
  }
}

.rightContainer {
  margin-right: auto;
  padding: 0 15px;
  padding-left: 0;
}

@media (max-width: 576px) {
  .rightContainer {
    width: 100%;
    padding-left: 15px;
    margin-left: auto;
  }
}

@media (min-width: 576px) and (max-width: 767px) {
  .rightContainer {
    width: calc(540px + ((100vw - 540px) / 2));
    padding-left: 15px;
    margin-right: auto;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .rightContainer {
    width: calc(720px + ((100vw - 720px) / 2));
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .rightContainer {
    width: calc(960px + ((100vw - 960px) / 2));
  }
}

@media (min-width: 1200px) {
  .rightContainer {
    width: calc(1140px + ((100vw - 1140px) / 2));
  }
}

.mainColor {
  color: #E42B1B !important;
}

.secColor {
  color: #222 !important;
}

.whtColor {
  color: #fff !important;
}

.blkColor {
  color: #000 !important;
}

.mainBgColor {
  background-color: #E42B1B !important;
}

.secBgColor {
  background-color: #222 !important;
}

.whtBgColor {
  background-color: #fff !important;
}

.blkBgColor {
  background-color: #000 !important;
}

p,
.p {
  font-size: 0.95rem;
  font-weight: 400;
  margin-bottom: 1rem;
}

a,
.a,
.link {
  font-size: 0.95rem;
  font-weight: 400;

  margin-bottom: 0.5rem;
}

.mainHover {
  transition: all 0.3s ease-in-out;
}

.mainHover:hover {
  color: #E42B1B;
}

/* ====================================== _____________ Classes Styles _____________ ====================================== */
/* ====================================== _____________ Reset Styles _____________ ====================================== */
* {
  outline: 0 !important;
}

/* Heading Capitalization */
h1,
h2,
h3,
h4,
h5,
h6 {
  text-transform: capitalize !important;
}

/* Sticky Bottom Bar */
.sticky-bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #fff;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  padding: 15px 20px;
  display: flex;
  justify-content: center;
  gap: 15px;
}

.sticky-bottom-bar .sticky-btn {
  flex: 1;
  max-width: 250px;
  padding: 12px 24px;
  border: 2px solid #000;
  background-color: #000;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  text-align: center;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.sticky-bottom-bar .sticky-btn:hover {
  background-color: #000;
  color: #fff;
  border-color: #000;
}

.sticky-bottom-bar .sticky-btn:first-child {
  background-color: #fff;
  color: #000;
  border: 2px solid #000;
}

.sticky-bottom-bar .sticky-btn:first-child:hover {
  background-color: #000;
  color: #fff;
}

.sticky-bottom-bar .sticky-btn:first-child:hover {
  background-color: #fff;
  color: #E42B1B;
  border-color: #E42B1B;
}

@media (max-width: 576px) {
  .sticky-bottom-bar {
    padding: 12px 15px;
    gap: 10px;
  }

  .sticky-bottom-bar .sticky-btn {
    padding: 10px 16px;
    font-size: 13px;
  }
}

.sticky-call-btn {
  position: fixed;
  right: 20px;
  bottom: 90px;
  width: 60px;
  height: 60px;
  background-color: #002d62;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  z-index: 1001;
  transition: all 0.3s ease;
}

.sticky-call-btn:hover {
  transform: scale(1.1);
  background-color: #003d82;
}

.sticky-call-btn svg {
  width: 30px;
  height: 30px;
  fill: #fff;
}

@media (max-width: 576px) {
  .sticky-call-btn {
    right: 15px;
    bottom: 80px;
    width: 50px;
    height: 50px;
  }

  .sticky-call-btn svg {
    width: 25px;
    height: 25px;
  }
}

a,
a:hover {
  text-decoration: none;
  color: inherit;
}

button {
  border: none;
  background-color: transparent;
}

html {
  font-size: 100%;
  overflow-x: hidden;
}

@media (max-width: 576px) {
  html {
    font-size: 85%;
  }
}

@media (min-width: 576px) and (max-width: 767px) {
  html {
    font-size: 88%;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  html {
    font-size: 90%;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  html {
    font-size: 95%;
  }
}

@media (min-width: 1200px) {
  html {
    font-size: 100%;
  }
}

body {
  font-size: 1rem;
  font-weight: 400;
  font-family: "Montserrat";
  overflow-x: hidden;
}

body.ar {
  font-family: "Obviously Demo";
  direction: rtl;
  text-align: right;
}

textarea {
  resize: none;
}

.accordion {
  background-color: #252728;
}

.accordion .accordion-item {
  border: none;
}

.accordion .accordion-button {
  background-color: #252728;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.32px;
  color: white;
  padding: 0 0 12px 0;
}

.accordion-button::after {
  background-image: url("../img/global/add.svg");
  width: 13px;
  height: 13px;
  background-size: contain;
}

.accordion-button:not(.collapsed)::after {
  background-image: url("../img/global/reduce.svg") !important;
}

.accordion-body {
  padding: 0 10px;
}

.swiper-slide {
  background-color: transparent !important;
}

@media (min-width: 991px) {
  .byd-product-detail-page-btns.animation-true-dom {
    transform: translateY(200px) !important;
  }
}

.findStore .title {
  font-size: 2rem !important;
  margin-bottom: 1.5rem !important;
}

.findStore h2 {
  font-size: 1.25rem !important;
  margin-bottom: 1rem !important;
  font-weight: bold;
  color: black;
}

.manual-warranty-information .main-content h3 {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
  color: #555;
  text-align: start;
}

/* ====================================== _____________ Reset Styles _____________ ====================================== */
@font-face {
  font-family: "Montserrat";
  src: url("font/Montserrat-Bold.eot");
  src: url("font/Montserrat-Bold.eot?#iefix") format("embedded-opentype"), url("font/Montserrat-Bold.woff2") format("woff2"), url("font/Montserrat-Bold.woff") format("woff"), url("font/Montserrat-Bold.ttf") format("truetype"), url("font/Montserrat-Bold.svg#Montserrat-Bold") format("svg");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("font/Montserrat-Black.eot");
  src: url("font/Montserrat-Black.eot?#iefix") format("embedded-opentype"), url("font/Montserrat-Black.woff2") format("woff2"), url("font/Montserrat-Black.woff") format("woff"), url("font/Montserrat-Black.ttf") format("truetype"), url("font/Montserrat-Black.svg#Montserrat-Black") format("svg");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("font/Montserrat-BlackItalic.eot");
  src: url("font/Montserrat-BlackItalic.eot?#iefix") format("embedded-opentype"), url("font/Montserrat-BlackItalic.woff2") format("woff2"), url("font/Montserrat-BlackItalic.woff") format("woff"), url("font/Montserrat-BlackItalic.ttf") format("truetype"), url("font/Montserrat-BlackItalic.svg#Montserrat-BlackItalic") format("svg");
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("font/Montserrat-BoldItalic.eot");
  src: url("font/Montserrat-BoldItalic.eot?#iefix") format("embedded-opentype"), url("font/Montserrat-BoldItalic.woff2") format("woff2"), url("font/Montserrat-BoldItalic.woff") format("woff"), url("font/Montserrat-BoldItalic.ttf") format("truetype"), url("font/Montserrat-BoldItalic.svg#Montserrat-BoldItalic") format("svg");
  font-weight: bold;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("font/Montserrat-ExtraBoldItalic.eot");
  src: url("font/Montserrat-ExtraBoldItalic.eot?#iefix") format("embedded-opentype"), url("font/Montserrat-ExtraBoldItalic.woff2") format("woff2"), url("font/Montserrat-ExtraBoldItalic.woff") format("woff"), url("font/Montserrat-ExtraBoldItalic.ttf") format("truetype"), url("font/Montserrat-ExtraBoldItalic.svg#Montserrat-ExtraBoldItalic") format("svg");
  font-weight: bold;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("font/Montserrat-ExtraBold.eot");
  src: url("font/Montserrat-ExtraBold.eot?#iefix") format("embedded-opentype"), url("font/Montserrat-ExtraBold.woff2") format("woff2"), url("font/Montserrat-ExtraBold.woff") format("woff"), url("font/Montserrat-ExtraBold.ttf") format("truetype"), url("font/Montserrat-ExtraBold.svg#Montserrat-ExtraBold") format("svg");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("font/Montserrat-ExtraLight.eot");
  src: url("font/Montserrat-ExtraLight.eot?#iefix") format("embedded-opentype"), url("font/Montserrat-ExtraLight.woff2") format("woff2"), url("font/Montserrat-ExtraLight.woff") format("woff"), url("font/Montserrat-ExtraLight.ttf") format("truetype"), url("font/Montserrat-ExtraLight.svg#Montserrat-ExtraLight") format("svg");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("font/Montserrat-ExtraLightItalic.eot");
  src: url("font/Montserrat-ExtraLightItalic.eot?#iefix") format("embedded-opentype"), url("font/Montserrat-ExtraLightItalic.woff2") format("woff2"), url("font/Montserrat-ExtraLightItalic.woff") format("woff"), url("font/Montserrat-ExtraLightItalic.ttf") format("truetype"), url("font/Montserrat-ExtraLightItalic.svg#Montserrat-ExtraLightItalic") format("svg");
  font-weight: 200;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("font/Montserrat-Light.eot");
  src: url("font/Montserrat-Light.eot?#iefix") format("embedded-opentype"), url("font/Montserrat-Light.woff2") format("woff2"), url("font/Montserrat-Light.woff") format("woff"), url("font/Montserrat-Light.ttf") format("truetype"), url("font/Montserrat-Light.svg#Montserrat-Light") format("svg");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("font/Montserrat-Italic.eot");
  src: url("font/Montserrat-Italic.eot?#iefix") format("embedded-opentype"), url("font/Montserrat-Italic.woff2") format("woff2"), url("font/Montserrat-Italic.woff") format("woff"), url("font/Montserrat-Italic.ttf") format("truetype"), url("font/Montserrat-Italic.svg#Montserrat-Italic") format("svg");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("font/Montserrat-LightItalic.eot");
  src: url("font/Montserrat-LightItalic.eot?#iefix") format("embedded-opentype"), url("font/Montserrat-LightItalic.woff2") format("woff2"), url("font/Montserrat-LightItalic.woff") format("woff"), url("font/Montserrat-LightItalic.ttf") format("truetype"), url("font/Montserrat-LightItalic.svg#Montserrat-LightItalic") format("svg");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("font/Montserrat-MediumItalic.eot");
  src: url("font/Montserrat-MediumItalic.eot?#iefix") format("embedded-opentype"), url("font/Montserrat-MediumItalic.woff2") format("woff2"), url("font/Montserrat-MediumItalic.woff") format("woff"), url("font/Montserrat-MediumItalic.ttf") format("truetype"), url("font/Montserrat-MediumItalic.svg#Montserrat-MediumItalic") format("svg");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("font/Montserrat-Regular.eot");
  src: url("font/Montserrat-Regular.eot?#iefix") format("embedded-opentype"), url("font/Montserrat-Regular.woff2") format("woff2"), url("font/Montserrat-Regular.woff") format("woff"), url("font/Montserrat-Regular.ttf") format("truetype"), url("font/Montserrat-Regular.svg#Montserrat-Regular") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("font/Montserrat-Medium.eot");
  src: url("font/Montserrat-Medium.eot?#iefix") format("embedded-opentype"), url("font/Montserrat-Medium.woff2") format("woff2"), url("font/Montserrat-Medium.woff") format("woff"), url("font/Montserrat-Medium.ttf") format("truetype"), url("font/Montserrat-Medium.svg#Montserrat-Medium") format("svg");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("font/Montserrat-SemiBold.eot");
  src: url("font/Montserrat-SemiBold.eot?#iefix") format("embedded-opentype"), url("font/Montserrat-SemiBold.woff2") format("woff2"), url("font/Montserrat-SemiBold.woff") format("woff"), url("font/Montserrat-SemiBold.ttf") format("truetype"), url("font/Montserrat-SemiBold.svg#Montserrat-SemiBold") format("svg");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("font/Montserrat-SemiBoldItalic.eot");
  src: url("font/Montserrat-SemiBoldItalic.eot?#iefix") format("embedded-opentype"), url("font/Montserrat-SemiBoldItalic.woff2") format("woff2"), url("font/Montserrat-SemiBoldItalic.woff") format("woff"), url("font/Montserrat-SemiBoldItalic.ttf") format("truetype"), url("font/Montserrat-SemiBoldItalic.svg#Montserrat-SemiBoldItalic") format("svg");
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("font/Montserrat-Thin.eot");
  src: url("font/Montserrat-Thin.eot?#iefix") format("embedded-opentype"), url("font/Montserrat-Thin.woff2") format("woff2"), url("font/Montserrat-Thin.woff") format("woff"), url("font/Montserrat-Thin.ttf") format("truetype"), url("font/Montserrat-Thin.svg#Montserrat-Thin") format("svg");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("font/Montserrat-ThinItalic.eot");
  src: url("font/Montserrat-ThinItalic.eot?#iefix") format("embedded-opentype"), url("font/Montserrat-ThinItalic.woff2") format("woff2"), url("font/Montserrat-ThinItalic.woff") format("woff"), url("font/Montserrat-ThinItalic.ttf") format("truetype"), url("font/Montserrat-ThinItalic.svg#Montserrat-ThinItalic") format("svg");
  font-weight: 100;
  font-style: italic;
  font-display: swap;
}

/* ====================================== _____________ Global Styles _____________ ====================================== */
.homepage {
  margin-top: 64px;
}

.bookingService {
  margin-left: 0 !important;
}

@media (max-width: 1200px) {
  .byd-page .btn+.btn {
    margin-left: 0 !important;
  }
}

@media (max-width: 991px) {
  .byd-page .btn+.btn {
    margin-left: 20px !important;
  }
}

@media (max-width: 768px) {
  .byd-page .btn+.btn {
    margin-left: 0 !important;
  }
}

/* ====================================== _____________ Global Styles _____________ ====================================== */
/* ====================================== _____________ Grids Styles _____________ ====================================== */
/* ====================================== _____________ Grids Styles _____________ ====================================== */
/* ====================================== _____________ Header Styles _____________ ====================================== */
.header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  transition: all 0.3s ease-in-out;
  z-index: 9999;
  padding: 0 50px;
  background-color: #252728;
  height: 65px;
}

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

.header.faded {
  background-color: rgba(37, 39, 40, 0.8) !important;
  backdrop-filter: none;
}

.header nav {
  height: 100%;
}

.header .header-handle {
  display: flex;
  -webkit-box-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  align-items: center;
}

.header .header-handle .header-open-nav {
  position: relative;
  width: 18px;
  height: 18px;
  background-color: transparent;
}

.header .header-handle .header-open-nav::before {
  margin-top: -6px;
}

.header .header-handle .header-open-nav::after {
  margin-top: 6px;
}

.header .header-handle .header-open-nav::before,
.header .header-handle .header-open-nav::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  height: 2px;
  width: 18px;
  border-radius: 1px;
  background-color: white;
  transform: translate(-50%, -50%) rotate(0deg);
  transition: transform 0.4s ease-out, margin-top 0.2s ease-out, -webkit-transform 0.4s ease-out;
  will-change: width, transform, margin-top;
}

.header .header-handle .header-open-nav span {
  height: 2px;
  border-radius: 1px;
  width: 18px;
  background-color: white;
  position: absolute;
  top: 50%;
  left: 0px;
  transform: translateY(-50%);
  transition: width 0.3s ease-out;
  will-change: width;
}

.header .header-handle.active .header-open-nav::before {
  margin-top: 0px;
  transform: translate(-50%, -50%) rotate(225deg);
}

.header .header-handle.active .header-open-nav span {
  width: 0px;
}

.header .header-handle.active .header-open-nav::after {
  margin-top: 0px;
  transform: translate(-50%, -50%) rotate(-225deg);
}

.header .dropdown-menu {
  left: 0 !important;
  width: 100%;
  margin: 0;
  border-radius: 0;
  top: 56px !important;
}

.header .dropdown-menu .content {
  width: 100%;
  transition: 0.5s;
  padding: 64px 220px;
  color: #252728;
  margin: 0 auto;
  position: relative;
  overflow-y: auto;
  min-height: 54vh;
  max-height: 70vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: white;
}

@media (max-width: 1200px) {
  .header .dropdown-menu .content {
    padding: 50px 150px;
  }
}

.header .dropdown-menu .content .list {
  padding-top: 16px;
}

.header .dropdown-menu .content .list .item {
  flex-shrink: 0;
  font-size: 1.25rem;
  line-height: 26px;
  display: inline-block;
  margin-bottom: 24px;
  cursor: pointer;
  position: relative;
  font-weight: 700;
  width: max-content;
  color: #252728;
  transform: translate3d(0, 0, 0);
  display: block;
}

.header .dropdown-menu .content .list .item::before {
  content: "";
  position: absolute;
  bottom: -2px !important;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  z-index: -1;
  height: 1.5px;
  background-color: #252728;
  color: #252728;
  opacity: 0;
}

.header .dropdown-menu .content .list .item.active::before {
  opacity: 1;
}

.header .dropdown-menu .content .cars {
  display: flex;
  flex-wrap: wrap;
  display: none;
}

.header .dropdown-menu .content .cars.active {
  display: flex;
}

.header .dropdown-menu .content .cars .car {
  display: inline-block;
  padding: 24px 30px 24px 30px;
  max-height: 262px;
  transition: 0.5s;
  vertical-align: top;
  position: relative;
  text-align: center;
  width: 40%;
  flex: 0 0 40%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.header .dropdown-menu .content .cars .car:hover {
  background: #f3f3f3;
  box-shadow: 0 10px 20px 0 #f3f3f3 !important;
}

.header .dropdown-menu .content .cars .car h3 {
  text-transform: uppercase;
  margin-bottom: 16px;
  font-size: 1rem;
  line-height: 24px;
  color: #252728;
  font-weight: 600;
  text-align: center;
  height: 50px;
}

.header .dropdown-menu .content .cars .car img {
  width: 177px;
  height: 97px;
  object-fit: contain;
  margin-bottom: 16px;
  transition: all 0.3s ease-in-out;
}

.header .dropdown-menu .content .cars .car img:hover {
  transform: scale(1.05);
  cursor: pointer;
}

.header .dropdown-menu .content .cars .car span {
  color: #515253;
  line-height: 22px;
  font-size: 0.875rem;
  font-weight: 500;
  display: block;
  text-transform: uppercase;
}

.header .dropdown-menu .content .cars .car span:hover {
  color: #252728;
  text-decoration: underline;
  cursor: pointer;
}

.header .locations {
  height: 100%;
  color: #fff;
  font-size: 1rem;
  display: inline-flex;
  font-weight: 500;
  align-items: center;
  margin: 0 calc(1.1160714286vw + -1.4285714286px);
}

.header .locations img {
  width: 19px;
  margin-inline-end: 10px;
}

.header .nav-link {
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  margin: 0 calc(2.4553571429vw - 17.1428571429px) 21px;
  border-bottom: 2px solid transparent;
  margin-bottom: 0;
}

.header .nav-link:hover {
  color: white !important;
  border-bottom: 2px solid #fff;
}

/* ====================================== _____________ Header Styles _____________ ====================================== */
/* ====================================== _____________ Footer Styles _____________ ====================================== */
.footer {
  position: relative;
  background-color: #252728;
  color: #fff;
  padding: 0 50px;
}

@media screen and (max-width: 992px) and (min-width: 768px) {
  .footer {
    padding: 0 64px;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 0 16px;
  }
}

.footer_content {
  padding: 72px 0;
  border-bottom: 1px solid #4c4c4c;
}

@media screen and (max-width: 991.98px) {
  .footer_content {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    height: auto;
    padding: 0;
    padding-top: 11.1111111111vw;
  }
}

.footer_content_box_title {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.32px;
  padding-bottom: 8px;
}

.footer_content_box_list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

@media (max-width: 768px) {
  .footer_content_box_list {
    gap: 0;
  }
}

.footer_content_box_list_item {
  font-size: 0.875rem;
  line-height: 22px;
  color: #fff;
}

.footer_content_box_list_item_link {
  margin-bottom: 0;
  font-size: 12px;
}

@media (max-width: 768px) {
  .footer_content_box_list_item_link {
    font-weight: normal;
  }
}

.footer_content_moreLinks {
  margin-top: 64px;
}

@media screen and (max-width: 991px) {
  .footer_content_moreLinks {
    margin-top: 32px;
  }
}

.footer_content_moreLinks_links {
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  gap: 16px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.2px;
  color: #e9e9e9;
}

.footer_content_moreLinks_links_link {
  font-size: 0.75rem;
}

@media (max-width: 991.98px) {
  .footer_content_moreLinks_links {
    padding: 40px 0;
    justify-content: center;
  }
}

.footer_content_socialMedia {
  display: flex;
  -webkit-box-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  align-items: center;
}

@media (max-width: 991.98px) {
  .footer_content_socialMedia {
    justify-content: center;
    padding-top: 5.5555555556vw;
    padding-bottom: 1.6666666667vw;
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .footer_content_socialMedia {
    padding-top: 3.5555555556vw;
    padding-bottom: 1.6666666667vw;
  }
}

@media (max-width: 568px) {
  .footer_content_socialMedia {
    padding-top: 0;
  }
}

.footer_content_socialMedia_title {
  margin-inline-end: 16px;
  margin-bottom: 0;
  font-size: 0.75rem;
  max-width: 50%;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.24px;
  color: #e9e9e9;
  text-transform: uppercase;
}

.footer_content_socialMedia_link {
  margin: 0px 10px;
  color: #a2a2a2;
  display: inline-flex;
  filter: saturate(0.5);
  opacity: 0.4;
}

.footer_content_socialMedia_link:hover {
  opacity: 1;
}

.footer_content_socialMedia_link img {
  height: 21px;
}

@media (max-width: 991.98px) {
  .footer_content_socialMedia_link {
    padding: 16px 0;
  }

  .footer_content_socialMedia_link:first-of-type {
    margin-inline-start: 0;
  }
}

.footer_copyright {
  font-size: 12px;
  text-align: center;
  font-weight: 400;
  line-height: 1.8;
  padding: 40px 50px;
  color: #999999;
  border-top: 1px solid #4c4c4c;
  margin-bottom: 0;
}

.footer_copyright a {
  font-size: 12px;
}

@media screen and (max-width: 991px) {
  .footer_copyright {
    padding: 40px 0;
  }
}

/* ====================================== _____________ Footer Styles _____________ ====================================== */
/* ====================================== _____________ Sidebar Styles _____________ ====================================== */
.sidebar {
  position: fixed;
  top: 64px;
  z-index: 99;
  width: 100%;
  background: white;
  left: 0;
  height: calc(100vh - 13.8889vw);
  padding: 32px 24px calc(64px + 3.95833vw);
  background-color: white;
  overflow-y: scroll !important;
  display: none;
}

.sidebar.active {
  display: block;
}

.sidebar .nav-link {
  color: #252728;
  width: 100%;
  font-size: 1.25rem;
  display: inline-block;
  line-height: 1.375;
  font-weight: 600;
  margin: 12px 0px;
  border-bottom: 2px solid transparent;
  width: max-content;
}

.sidebar .nav-link:hover {
  border-bottom: 2px solid #252728;
}

.sidebar .dropdown-menu {
  position: relative !important;
  transform: none !important;
}

.sidebar .content {
  width: 100%;
  transition: 0.5s;
  color: #252728;
  margin: 0 auto;
  position: relative;
  overflow-y: auto;
  display: flex;
}

.sidebar .content .list {
  padding-top: 16px;
}

@media (max-width: 768px) {
  .sidebar .content .list {
    display: flex;
    gap: 50px;
  }
}

.sidebar .content .list .item {
  flex-shrink: 0;
  font-size: 1.25rem;
  line-height: 26px;
  display: inline-block;
  margin-bottom: 24px;
  cursor: pointer;
  position: relative;
  font-weight: 700;
  width: max-content;
  color: #252728;
  transform: translate3d(0, 0, 0);
  display: block;
}

.sidebar .content .list .item::before {
  content: "";
  position: absolute;
  bottom: -2px !important;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  z-index: -1;
  height: 1.5px;
  background-color: #252728;
  color: #252728;
  opacity: 0;
}

.sidebar .content .list .item.active::before {
  opacity: 1;
}

@media (max-width: 991px) {
  .sidebar .content .list .item {
    font-size: 1rem;
    line-height: 24px;
    font-weight: 600;
    display: block !important;
    margin: 8px 0vw;
  }
}

.sidebar .content .cars {
  display: flex;
  flex-wrap: wrap;
  display: none;
}

.sidebar .content .cars.active {
  display: flex;
}

@media (max-width: 768px) {
  .sidebar .content .cars {
    height: 500px;
    overflow: scroll;
  }
}

@media (max-width: 768px) {
  .sidebar .content .cars.cars2 {
    height: auto;
    overflow: scroll;
  }
}

.sidebar .content .cars .car {
  display: inline-block;
  padding: 24px 30px 24px 30px;
  max-height: 262px;
  transition: 0.5s;
  vertical-align: top;
  position: relative;
  text-align: center;
  width: 20%;
  flex: 0 0 20%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media screen and (max-width: 1441px) and (min-width: 991px) {
  .sidebar .content .cars .car {
    width: 33% !important;
  }
}

@media (max-width: 991px) {
  .sidebar .content .cars .car {
    width: 50%;
    flex: 0 0 50%;
    padding: 5px;
  }
}

@media (max-width: 768px) {
  .sidebar .content .cars .car {
    align-items: start;
    width: 100%;
    flex: 0 0 100%;
  }
}

.sidebar .content .cars .car h3 {
  text-transform: uppercase;
  margin-bottom: 16px;
  font-size: 1rem;
  line-height: 24px;
  color: #252728;
  font-weight: 600;
  text-align: center;
  height: 50px;
}

@media (max-width: 991px) {
  .sidebar .content .cars .car h3 {
    height: auto;
  }
}

.sidebar .content .cars .car img {
  width: 177px;
  height: 97px;
  object-fit: contain;
  margin-bottom: 16px;
  transition: all 0.3s ease-in-out;
}

@media (max-width: 991px) {
  .sidebar .content .cars .car img {
    width: 80px;
    height: 44px;
    margin-bottom: 0;
  }
}

@media (max-width: 768px) {
  .sidebar .content .cars .car img {
    width: 118px;
    height: 64px;
    margin-bottom: 0;
  }
}

.sidebar .content .cars .car img:hover {
  transform: scale(1.05);
  cursor: pointer;
}

.sidebar .content .cars .car span {
  color: #515253;
  line-height: 22px;
  font-size: 0.875rem;
  font-weight: 500;
  display: block;
  text-transform: uppercase;
}

.sidebar .content .cars .car span:hover {
  color: #252728;
  text-decoration: underline;
  cursor: pointer;
}

@media (max-width: 768px) {
  .sidebar .content .cars .car span {
    font-size: 10px;
  }
}

/* ====================================== _____________ Sidebar Styles _____________ ====================================== */
/* ====================================== _____________ Forms Styles _____________ ====================================== */
/* ====================================== _____________ Forms Styles _____________ ====================================== */
/* ====================================== _____________ Buttons Styles _____________ ====================================== */
.mainButton {
  margin: 0 16px;
  max-width: 900px;
  color: white;
  border: 1px solid white;
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.3s ease-in-out;
  text-transform: uppercase;
  min-width: 200px;
}

.mainButton:hover {
  color: black;
  background-color: white;
}

@media screen and (max-width: 991px) {
  .mainButton {
    margin: 8px !important;
    width: 100%;
  }
}

/* ====================================== _____________ Buttons Styles _____________ ====================================== */
/* ====================================== _____________ Slider Styles _____________ ====================================== */
.swiper-container {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ====================================== _____________ Slider Styles _____________ ====================================== */
/* ====================================== _____________ cards Styles _____________ ====================================== */
/*  _____________ cards Styles _____________  */
/*  _____________ cards Styles _____________  */
/* ====================================== _____________ cards Styles _____________ ====================================== */
/* ====================================== _____________ modal Styles _____________ ====================================== */
.videoPopup {
  z-index: 999999;
  background: rgba(0, 0, 0, 0.8);
  padding-right: 0 !important;
}

.videoPopup .modal-dialog {
  outline: none;
  -webkit-box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  width: 100%;
  max-width: none;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.videoPopup .modal-dialog .modal-content {
  width: 75%;
  height: 90%;
  border: none;
  border-radius: 0;
}

@media (max-width: 1200px) {
  .videoPopup .modal-dialog .modal-content {
    width: 90%;
    height: 60%;
  }
}

@media (max-width: 991px) {
  .videoPopup .modal-dialog .modal-content {
    width: 90%;
    height: 50%;
  }
}

@media (max-width: 568px) {
  .videoPopup .modal-dialog .modal-content {
    width: 90%;
    height: 30%;
  }
}

.videoPopup .modal-dialog .modal-body {
  padding: 0;
  width: 100%;
  height: 100%;
  display: flex;
}

.videoPopup .modal-dialog video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.videoPopup .modal-dialog .btn-close {
  position: absolute;
  top: 38px;
  right: 2.5625vw;
  z-index: 100;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  width: 35px;
  height: 35px;
  padding: 0px;
  background-color: transparent;
  background-image: url("../img/global/icon-close.svg");
  background-size: contain;
  background-repeat: no-repeat;
}

@media (max-width: 991px) {
  .videoPopup .modal-dialog .btn-close {
    top: 3vw;
    right: 4vw;
  }
}

@media (max-width: 768px) {
  .videoPopup .modal-dialog .btn-close {
    top: 5px;
    right: 5px;
  }
}

.popupForm {
  z-index: 999999;
  padding: 0 !important;
}

.popupForm .modal-dialog {
  border-radius: 8px;
}

.popupForm .modal-dialog .modal-content {
  background-color: white;
  padding: 30px;
  border-radius: 8px !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}

.popupForm .modal-dialog .modal-content .modal-body {
  padding: 0;
}

.popupForm .modal-dialog .modal-content .modal-body h2 {
  margin-top: 0;
  margin-bottom: 20px;
  color: #333;
  text-align: center;
  font-size: 10px;
}

.popupForm .modal-dialog .modal-content .modal-body label,
.popupForm .modal-dialog .modal-content .modal-body p {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
  color: #555;
  font-size: 10px;
}

.popupForm .modal-dialog .modal-content .modal-body .form-control,
.popupForm .modal-dialog .modal-content .modal-body .form-select {
  width: calc(100% - 20px);
  padding: 0 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1rem;
  height: 40px;
}

.popupForm .modal-dialog .modal-content .modal-body .form-check-label {
  margin-bottom: 0;
  padding-top: 4px;
}

.popupForm .modal-dialog .modal-content .modal-body textarea {
  height: 112px !important;
}

.popupForm .modal-dialog .modal-content .modal-body button {
  background-color: #000000;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 4px !important;
  cursor: pointer;
  font-size: 16px;
  width: 100%;
  margin-top: 10px;
}

.popupForm .modal-dialog .modal-content .modal-body button:hover {
  background-color: #0056b3;
}

.popupForm .btn-close {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 24px;
  cursor: pointer;
  color: #aaa;
}

/* ====================================== _____________ modal Styles _____________ ====================================== */
/* ====================================== _____________ Home Page Styles _____________ ====================================== */
/*  _____________ banner Styles _____________  */
.banner {
  height: 100vh;
  position: relative;
  margin-top: 64px;
}

.banner .swiper-slide {
  display: block !important;
}

.banner_content {
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  top: 0;
}

.banner_content_title {
  width: auto;
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 48px;
  padding: 0 96px 0 0;
  margin-bottom: 8px;
  color: white;
  position: absolute;
  top: 140px;
  left: 96px;
}

@media (max-width: 991px) {
  .banner_content_title {
    top: 130px;
    left: 0px;
    margin: 0 16px;
    padding: 0;
    text-align: start;
    font-size: 2.2rem;
  }
}

.banner_content_parentButton {
  z-index: 10;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: absolute;
  bottom: 64px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

@media (max-width: 991px) {
  .banner_content_parentButton {
    position: absolute;
    bottom: 9vw !important;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 100%;
    padding: 0 200px 0 200px;
  }
}

@media (max-width: 768px) {
  .banner_content_parentButton {
    padding: 0;
  }
}

.banner_content_videoPlay {
  position: absolute;
  z-index: 20;
  width: 75px;
  height: 10px;
  right: 3%;
  bottom: 13%;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  z-index: 99;
}

.banner_content_videoPlay img {
  width: 52px !important;
  height: 52px !important;
}

@media (max-width: 991px) {
  .banner_content_videoPlay {
    top: 48%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 76px !important;
    height: 76px !important;
    bottom: auto;
    right: auto;
  }

  .banner_content_videoPlay img {
    width: 76px !important;
    height: 76px !important;
  }
}

@media (max-width: 991px) {
  .banner_content_videoPlay {
    top: 48%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 59px !important;
    height: 59px !important;
    bottom: auto;
    right: auto;
  }

  .banner_content_videoPlay img {
    width: 59px !important;
    height: 59px !important;
  }
}

@media (max-width: 567px) {
  .banner_content_videoPlay {
    top: 48%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 29px !important;
    height: 29px !important;
    bottom: auto;
    right: auto;
  }

  .banner_content_videoPlay img {
    width: 29px !important;
    height: 29px !important;
  }
}

.banner .swiper-button-next,
.banner .swiper-button-prev {
  position: absolute;
  top: 48%;
  width: calc(44px / 44 * 27);
  height: 44px;
  margin-top: calc(0px - (44px / 2));
  z-index: 10;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: white;
}

.banner .swiper-button-next::after,
.banner .swiper-button-prev::after {
  font-size: 1vw !important;
  border: 0.11vw solid #ffffff;
  border-radius: 4vw;
  color: #ffffff !important;
  padding: 0.6vw 0.8vw;
  opacity: 1 !important;
}

@media screen and (max-width: 991px) {

  .banner .swiper-button-next::after,
  .banner .swiper-button-prev::after {
    font-size: 3.5vw !important;
    border: 0.4vw solid #ffffff;
    border-radius: 8vw;
    padding: 2.8vw 3.8vw;
    opacity: 1 !important;
  }
}

@media screen and (min-width: 768px) and (max-width: 996px) {

  .banner .swiper-button-next::after,
  .banner .swiper-button-prev::after {
    font-size: 2vw !important;
    border: 0.28vw solid #ffffff;
    border-radius: 8vw;
    padding: 2vw 2.6vw;
  }
}

.banner .swiper-button-next {
  right: 96px !important;
}

@media screen and (max-width: 991px) {
  .banner .swiper-button-next {
    right: 28px !important;
  }
}

.banner .swiper-button-prev {
  left: 96px !important;
}

@media screen and (max-width: 991px) {
  .banner .swiper-button-prev {
    left: 28px !important;
  }
}

/*  _____________ banner Styles _____________  */
/* ====================================== _____________ Home Page Styles _____________ ====================================== */
/* ====================================== _____________ About Page Styles _____________ ====================================== */
/* ====================================== _____________ About Page Styles _____________ ====================================== */
/* ====================================== _____________ support Styles _____________ ====================================== */
/*  _____________ banner Styles _____________  */
.supportBanner {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-top: 64px;
}

.supportBanner_content {
  position: absolute;
  text-align: center;
}

@media (max-width: 991px) {
  .supportBanner_content {
    width: 85%;
  }
}

.supportBanner_content_title {
  font-size: 3.5rem;
  line-height: 1.375;
  font-weight: 600;
  color: white;
}

@media (max-width: 991px) {
  .supportBanner_content_title {
    font-size: 10.133333vw;
  }
}

.supportBanner_content_desc {
  color: white;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.375;
  margin-top: 16px;
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .supportBanner_content_desc {
    font-size: 4.266667vw;
  }
}

/*  _____________ banner Styles _____________  */
/*  _____________ support Styles _____________  */
.support {
  width: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  margin: 64px auto 0;
  justify-content: space-between;
  padding: 0 10.604167vw 100px !important;
  background-image: linear-gradient(#fff, #F3F3F3);
}

@media (max-width: 991px) {
  .support {
    margin: 0 auto;
  }
}

.support_item {
  width: 30.208333vw;
  height: 41.666667vw;
  position: relative;
  margin-top: 1.875vw;
  overflow: hidden;
  border-radius: 8px;
}

@media (max-width: 991px) {
  .support_item {
    width: 100%;
    margin-top: 11.111111vw;
    height: 119.861111vw;
  }
}

.support_item_text {
  position: absolute;
  width: 90%;
  font-size: 2.5rem;
  line-height: 1.375;
  font-weight: 600;
  text-align: center;
  left: 50%;
  transform: translateX(-50%);
  top: 78px;
  z-index: 22;
  color: white;
}

@media (max-width: 1466px) {
  .support_item_text {
    font-size: 32px;
    top: 30px;
    height: 270px;
  }
}

@media (max-width: 991px) {
  .support_item_text {
    font-size: 6.666667vw;
    top: 13.888889vw;
    height: 55.555556vw;
  }
}

.support_item_img {
  width: 100%;
  height: 100%;
  transition: all 0.3s ease-in-out;
  object-fit: cover;
}

.support_item_img:hover {
  transform: scale(1.08);
}

.support_item_button {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
}

@media (max-width: 1466px) {
  .support_item_button {
    bottom: 30px;
  }
}

@media (max-width: 991px) {
  .support_item_button {
    bottom: 11.111111vw;
    min-width: 38.888889vw;
    max-width: 72.222222vw;
    text-overflow: ellipsis;
    overflow: hidden;
    padding: 1.8vw 3vw;
    width: auto;
  }
}

.support_item_button a {
  margin: 0;
  text-align: center;
  text-transform: capitalize;
}

@media (max-width: 991px) {
  .support_item_button a {
    font-size: 4.444444vw;
    font-weight: 400;
  }
}

/*  _____________ support Styles _____________  */
/* ====================================== _____________ support Styles _____________ ====================================== */
/*  _____________ visit dealer Styles _____________  */
/* ====================================== _____________ visit dealer Styles _____________ ====================================== */
.form-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

.form-popup {
  background-color: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  position: relative;
  width: 90%;
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
}

.form-popup2 {
  background-color: white;
  border-radius: 8px;
  position: relative;
  max-width: 450px;
  margin: 25px auto;
}

.form-popup h2,
.form-popup2 h2 {
  margin-top: 0;
  margin-bottom: 20px;
  color: #333;
  text-align: center;
}

.form-popup label,
.form-popup2 label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
  color: #555;
}

.form-popup input[type=text],
.form-popup input[type=tel],
.form-popup input[type=email],
.form-popup select,
.form-popup textarea {
  width: calc(100% - 20px);
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
}

.form-popup2 input[type=text],
.form-popup2 input[type=tel],
.form-popup2 input[type=email],
.form-popup2 select,
.form-popup2 textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
  display: block;
  width: 100%;
  line-height: 50px;
  background: #FFFFFF;
  border: 1px solid #a2a3a5;
  padding: 0 1.458333vw;
  font-size: 16px;
  border-radius: 0px;
  cursor: pointer;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  min-width: 200px;
  height: 52px;
}

.form-popup textarea,
.form-popup2 textarea {
  resize: vertical;
  min-height: 100px;
}

.form-popup button,
.form-popup2 button {
  background-color: #000000;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
  width: 100%;
  margin-top: 10px;
}

.form-popup button:hover,
.form-popup2 button:hover {
  background-color: #0056b3;
}

.form-popup .close-button {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 24px;
  cursor: pointer;
  color: #aaa;
}

.form-popup .close-button:hover {
  color: #666;
}

.checkbox-container {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.checkbox-container input[type=checkbox] {
  margin-right: 10px;
  width: auto;
  margin-bottom: 0;
}

#test-drive-model-group {
  display: none;
  margin-top: 10px;
}

.banner_section {
  height: 100%;
  width: 100%;
  min-height: 747px;
  position: relative;
  padding-top: 90px;
  background-image: url("../img/visitDealer/home_background.jpg");
  background-size: cover;
  background-position: center;
  text-align: center;
  display: flex;
  flex-direction: column;
  padding-top: 20px;
  padding-bottom: 20px;
}

@media (max-width: 978px) {
  .banner_section {
    min-height: 500px;
  }
}

.banner_button_left,
.banner_button_right {
  display: inline-block;
  padding: 12px 28px;
  text-align: center;
  text-decoration: none;
  border-radius: 5px;
  white-space: nowrap;
  border: 3px solid #fff;
  float: none !important;
  position: static !important;
  font-size: 1.25rem;
}

.banner_buttons_wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  margin-top: 220px;
  width: 100%;
}

.banner_buttons_wrapper .banner_button_left,
.banner_buttons_wrapper .banner_button_right {
  width: 90%;
  max-width: 350px;
  margin: 0 auto;
}

.banner_section .banner_title {
  margin-bottom: 20px;
  background: transparent;
  padding: 20px 30px;
  font-size: 56px;
  font-weight: 600;
  color: #fff !important;
  text-align: center;
}

@media (min-width: 768px) {
  .banner_section {
    min-height: 100vh;
    padding-top: 50px;
    padding-bottom: 150px;
  }

  .banner_buttons_wrapper {
    flex-direction: row;
    justify-content: center;
    gap: 30px;
    margin-top: auto;
  }

  .banner_buttons_wrapper .banner_button_left,
  .banner_buttons_wrapper .banner_button_right {
    width: auto;
    max-width: none;
    margin: 0 !important;
    min-width: auto;
  }
}

@media (max-width: 767px) {
  .copyright {
    font-size: 9px;
    /* Taille de police pour le bloc de copyright sur mobile */
  }

  .copyright .copy {
    font-size: 9px;
    /* Assure que les éléments spécifiques de copyright ont aussi cette taille sur mobile */
  }
}

.visitDealerFooter .footer_copyright {
  font-weight: 600;
  letter-spacing: 0.1px;
  border: none;
}

@media (max-width: 978px) {
  .banner_title {
    font-size: 40px !important;
    width: 90% !important;
    margin: 0 auto;
  }

  .banner_buttons_wrapper .banner_button_left,
  .banner_buttons_wrapper .banner_button_right {
    font-size: 12px;
  }
}

@media (max-width: 768px) {

  .banner_buttons_wrapper .banner_button_left,
  .banner_buttons_wrapper .banner_button_right {
    margin: auto !important;
  }
}

/*  _____________ visit dealer Styles _____________  */
/* ====================================== _____________ visit dealer Styles _____________ ====================================== */


/* User Requested Adjustments */
.p04-product-card-info-new .des-container {
  padding: 3.33333333337vw 0;
}

.rich-text-area {
  margin-bottom: 50px;
}

.byd-page .super-content-main {
  width: 66vw;
  max-width: 1300px;
  margin: auto;
}

img[style*="border-radius"],
img[class*="border-radius"],
img {
  border-radius: 0 !important;
}

.p3-product-banner.section-interior-style {
  padding-bottom: 0 !important;
}

/* Sticky button styles */
.sticky-bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  padding: 15px;
  display: flex;
  justify-content: center;
  gap: 15px;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

.sticky-btn {
  padding: 12px 30px;
  border: 2px solid #000;
  background: #fff;
  color: #000;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.sticky-btn:hover {
  background: #000 !important;
  color: #fff !important;
  border-color: #000 !important;
}

.p2-interior-1 {
  padding-top: 50px;
}

.p7-product-banner {
  padding-top: 50px;
}

/* Homepage Banner Alignment Fix */
.byd-kvBanner-containe-new .top-container {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  text-align: left !important;
}

.byd-kvBanner-containe-new .top-container .text {
  text-align: left !important;
  margin-left: 0 !important;
}

.byd-kvBanner-containe-new .learn-more-button-pc {
  margin-left: 0 !important;
  align-self: flex-start !important;
}

/* Model Swiper Visibility Fix */
.model-swiper .swiper {
  overflow: hidden !important;
  display: block !important;
  min-height: 400px;
  /* Fallback height if content is missing */
}

.model-swiper .cards-wrapper {
  display: flex !important;
}

.model-swiper {
  opacity: 1 !important;
  visibility: visible !important;
}

/* Product Appointment Mobile Fix */
@media (max-width: 991px) {
  .product-appointment.aem-GridColumn {
    width: 100% !important;
    margin: 40px auto !important;
  }

  .p06-product-appointment .product-last-img .product-last-img-contant {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .p06-product-appointment .byd-product-detail-page-btns {
    width: 100%;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 15px !important;
  }

  .p06-product-appointment .byd-product-detail-page-btns a {
    width: 90% !important;
    max-width: 300px;
    margin: 0 !important;
    font-size: 14px !important;
  }
}

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