#crumbs, #crumbs a
{
  color:#fff;
}
.header_contact_det {
    background: rgba(0, 0, 0, 0.6);
    padding: 20px;
    border-radius: 6px;
}
.ex2-detail-intro {
    padding: 32px 20px 36px;
  text-align: center;
}

.ex2-detail-intro__inner {
  max-width: 1500px;
  margin: 0 auto;
}

.ex2-detail-intro__title {
  margin: 0 0 28px;
  font-size: 28px;
  line-height: 1.05;
  font-weight: 700;
  text-transform: uppercase;
  color: #000;
}

.ex2-detail-intro__text {
  max-width: 1450px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.6;
  font-weight: 400;
  color: #222;
}

@media (max-width: 1200px) {
  .ex2-detail-intro__title {
    font-size: 42px;
  }

  .ex2-detail-intro__text {
    font-size: 17px;
  }
}

@media (max-width: 768px) {
  .ex2-detail-intro {
    padding: 28px 16px 30px;
  }

  .ex2-detail-intro__title {
    margin-bottom: 18px;
    font-size: 30px;
  }

  .ex2-detail-intro__text {
    font-size: 16px;
    line-height: 1.5;
  }
}
@media (max-width: 650px) {
 .ex2-detail-intro__title {
    font-size: 17px;
  }
}
/**********/
.scroll-story{
  position: relative;
  margin: 0;
}

.scroll-story .story-block{
  position: sticky;
  top: 0;
  height: 100vh;
  min-height: 100vh;
  display: block;
  padding: 0;
  margin: 0;
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.scroll-story .story-block:not(:last-child){
  margin-bottom: 100vh;
}

.scroll-story::after{
  content: "";
  display: block;
  height: 100vh;
}

.scroll-story .story-overlay{
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    to top,
    rgba(0,0,0,.55) 0%,
    rgba(0,0,0,.25) 40%,
    rgba(0,0,0,0) 100%
  );
}

.scroll-story .story-content{
  position: absolute;
  left: 8vw;
  right: 8vw;
  bottom: 7vh;
  margin: 0;
  padding: 0;
  z-index: 5;
  color: #fff;
  opacity: 0;
  visibility: hidden;
  transform: translateY(80px);
  transition: opacity .9s ease, transform .9s ease, visibility .9s ease;
  will-change: opacity, transform;
}

.scroll-story .story-content.is-visible{
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-story .story-content h2{
  margin: 0 0 12px;
  color: #fff;
  font-size: 24px;
  line-height: 1.1;
}

.scroll-story .story-content p{
  margin: 0;
  color: #fff;
  font-size: 18px;
  line-height: 1.5;
}

@media (max-width: 767px){
  .scroll-story .story-content{
    left: 24px;
    right: 24px;
    bottom: 48px;
    max-width: none;
  }

  .scroll-story .story-content h2{
    font-size: 30px;
  }

  .scroll-story .story-content p{
    font-size: 16px;
  }
}
/***/
/* ===== SECTION BASE ===== */
.ex2-interior-cabin {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: #000;
}

/* ===== SLIDER WRAPPER ===== */
.ex2-interior-cabin__slider {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

/* ===== TRACK (moves horizontally) ===== */
.ex2-interior-cabin__track {
  display: flex;
  height: 100%;
  width: 100%;
  transition: transform 0.7s ease;
  will-change: transform;
}

/* ===== SLIDES ===== */
.ex2-interior-cabin__slide {
  flex: 0 0 100%;
  min-width: 100%;
  height: 100%;
  position: relative;
}

/* ===== IMAGE ===== */
.ex2-interior-cabin__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ===== OVERLAY ===== */
.ex2-interior-cabin__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: rgba(0, 0, 0, 0.12);
  pointer-events: none;
}

/* ===== CONTENT (BOTTOM TEXT) ===== */
.ex2-interior-cabin__content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 48px;
  z-index: 3;
display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 80px;
padding: 0 40px;
}

/* ===== CLICKABLE ITEMS ===== */
.ex2-interior-cabin__item {
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  border: 0;
  padding: 0;
  margin: 0;

  text-align: left;
  cursor: pointer;
  width: 380px;

  color: #fff;
}

/* ===== LINE ===== */
.ex2-interior-cabin__line {
  display: block;
  width: 100%;
  height: 1px;
  margin-bottom: 12px;

  background: rgba(255, 255, 255, 0.6);

  transition: transform 0.3s ease, background 0.3s ease;
  transform-origin: left center;
}

/* ===== TEXT ===== */
.ex2-interior-cabin__item p {
  margin: 0;
  font-size: 14px;
  line-height: 1.4;

  color: rgba(255, 255, 255, 0.7);

  transition: color 0.3s ease, opacity 0.3s ease;
}

/* ===== ACTIVE STATE ===== */
.ex2-interior-cabin__item.is-active .ex2-interior-cabin__line {
  background: #fff;
  transform: scaleX(1.05);
}

.ex2-interior-cabin__item.is-active p {
  color: #fff;
  opacity: 1;
}

/* ===== HOVER (DESKTOP ONLY) ===== */
@media (hover: hover) {
  .ex2-interior-cabin__item:hover .ex2-interior-cabin__line {
    background: #fff;
    transform: scaleX(1.05);
  }

  .ex2-interior-cabin__item:hover p {
    color: #fff;
  }
}

/* ===== TABLET ===== */
@media (max-width: 1024px) {
  .ex2-interior-cabin__content {
    gap: 40px;
    padding: 0 24px;
    bottom: 32px;
  }

  .ex2-interior-cabin__item {
    width: 160px;
  }

  .ex2-interior-cabin__item p {
    font-size: 13px;
  }
}

/* ===== MOBILE ===== */
@media (max-width: 767px) {
  .ex2-interior-cabin {
    min-height: 700px;
  }

  .ex2-interior-cabin__content {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;

    gap: 16px;
    padding: 0 16px 24px;
    bottom: 0;
  }

  .ex2-interior-cabin__item {
    width: 100%;
    max-width: 240px;
  }

  .ex2-interior-cabin__item p {
    font-size: 13px;
    line-height: 1.4;
  }
}
/***/
.ex2-space-section{
  width:100%;
  background:#f3f3f3;
  padding:90px 0 80px;
  text-align:center;
}

.ex2-space-section__inner{
  /* max-width:760px;
  margin:0 auto; */
  padding:20px;
}

.ex2-space-section__title{
  margin:0 0 22px;
  font-size:32px;
  line-height:38px;
  font-weight:600;
  letter-spacing:0.04em;
  color:#111;
}

.ex2-space-section__text{
  margin:0;
  font-size:16px;
  line-height:1.6;
  color:#444;
}

@media (max-width:768px){

.ex2-space-section{
padding:30px 0;
}
.ex2-space-section__title{
  font-size:24px;
  margin-bottom:16px;
}

.ex2-space-section__text{
  font-size:15px;
}

}
/*******************************/
:root{
  --sticky-header-height:0px;
  --slider-offset-top:0px;
  --slider-safe-gap:0px;
}

.ex2-storage-slider{
  width:100%;
  position:relative;
  overflow:hidden;
  background:#f3f3f3;
}

.ex2-storage-slider__track{
  width:100%;
  position:relative;
}

.ex2-storage-slide{
  display:none;
  width:100%;
}

.ex2-storage-slide.is-active{
  display:grid;
  grid-template-columns:65% 35%;
  height:calc(100dvh - var(--sticky-header-height) - var(--slider-offset-top) - var(--slider-safe-gap));
  min-height:calc(100dvh - var(--sticky-header-height) - var(--slider-offset-top) - var(--slider-safe-gap));
}

.ex2-storage-slide__media{
  height:calc(100dvh - var(--sticky-header-height) - var(--slider-offset-top) - var(--slider-safe-gap));
  min-height:calc(100dvh - var(--sticky-header-height) - var(--slider-offset-top) - var(--slider-safe-gap));
  overflow:hidden;
}

.ex2-storage-slide__media img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.ex2-storage-slide__content{
  position:relative;
  background:#f3f3f3;
  height:calc(100dvh - var(--sticky-header-height) - var(--slider-offset-top) - var(--slider-safe-gap));
  min-height:calc(100dvh - var(--sticky-header-height) - var(--slider-offset-top) - var(--slider-safe-gap));
  padding:28px 40px 24px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  box-sizing:border-box;
  overflow:hidden;
}

.ex2-storage-slide__text{
  max-width:430px;
     padding: 110px 0 40px 55px;
}

.ex2-storage-slide__text h3{
  margin:0 0 16px;
  font-size:22px;
  line-height:1.1;
  font-weight:700;
  color:#111;
}

.ex2-storage-slide__text p{
  margin:0;
  font-size:14px;
  line-height:1.45;
  color:#2f2f2f;
}

.ex2-storage-slide__nav{
  position:absolute;
  left:40px;
  right:40px;
  bottom:24px;
  display:flex;
  align-items:center;
  gap:16px;
  z-index:5;
}

.ex2-storage-slide__count{
  font-size:18px;
  line-height:1;
  color:#111;
  white-space:nowrap;
}

.ex2-storage-slider__arrow{
  background:none;
  border:none;
  padding:0;
  width:28px;
  height:28px;
  cursor:pointer;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  color:#111;
}

.ex2-storage-slider__arrow svg{
  width:22px;
  height:22px;
  display:block;
}

.ex2-storage-slider__arrow:disabled{
  opacity:.35;
  cursor:default;
}

@media (max-width:1024px){
  .ex2-storage-slide.is-active{
    grid-template-columns:1fr;
    height:auto;
    min-height:auto;
  }

  .ex2-storage-slide__media{
    height:48dvh;
    min-height:320px;
  }

  .ex2-storage-slide__content{
    height:auto;
    min-height:auto;
    padding:28px 20px 22px;
  }

  .ex2-storage-slide__text{
    max-width:none;
    padding:40px;
  }

  .ex2-storage-slide__nav{
    position:relative;
    left:auto;
    right:auto;
    bottom:auto;
    margin-top:28px;
    justify-content:center;
  }
}

@media (max-width:600px){
  .ex2-storage-slide__media{
    height:380px;
    min-height:380px;
  }

  .ex2-storage-slide__text h3{
    font-size:20px;
  }
  .ex2-storage-slide__text{
    padding:20px;
  }

  .ex2-storage-slide__text p{
    font-size:16px;
  }
}
/*******************/
.ex2-driving-section{
  width:100%;
  background:#f3f3f3;
  padding:70px 0px 70px;
  text-align:center;
}

.ex2-driving-container{
  /* max-width:900px;
  margin:0 auto; */
  padding:20px;
}

.ex2-driving-title{
  font-size:28px;
  line-height: 32px;
  font-weight:700;
  letter-spacing:1px;
  margin:0 0 18px;
  text-transform:uppercase;
  color:#111;
}

.ex2-driving-text{
  font-size:15px;
  line-height:1.6;
  color:#333;
  margin:0;
}

/* responsive */

@media (max-width:768px){

.ex2-driving-section{
  padding:55px 0px 45px;
}

.ex2-driving-title{
  font-size:22px;
}

.ex2-driving-text{
  font-size:15px;
}

}
/**************/
.ex2-performance{
  width:100%;
  height:95vh;
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
  position:relative;
  display:flex;
  align-items:flex-start;
  justify-content:center;
}

.ex2-performance__stats{
  width:100%;
  max-width:1400px;
  display:flex;
  justify-content:space-between;
  padding:80px 80px 0;
}

.ex2-performance__item{
  text-align:center;
}

.ex2-performance__number{
  font-size:80px;
  font-weight:400;
  line-height:1;
  color:#000;
}

.ex2-performance__number span{
  font-size:18px;
  margin-left:6px;
}

.ex2-performance__label{
  margin-top:8px;
  font-size:13px;
  color:#000;
}

/* responsive */

@media (max-width:1024px){

.ex2-performance{
  height:560px;
}

.ex2-performance__stats{
  padding:60px 30px 0;
}

.ex2-performance__number{
  font-size:46px;
}

}

@media (max-width:768px){

.ex2-performance{
  height:520px;
}

.ex2-performance__stats{
  flex-direction:column;
  gap:28px;
  align-items:center;
}

}
/***************/
.e-adaptive-media{
  padding:120px 120px 0;
  background:#f3f3f3;
}
.e-adaptive-media.no-top-padd
{
padding:0px 120px 0;
}
@media (max-width:768px){

.e-adaptive-media.no-top-padd{
    padding: 0px 30px 0;
}
}
/* ROW LAYOUT */

.e-adaptive-media__row{
  width:100%;
  display:grid;
  grid-template-columns: minmax(0,1fr) minmax(0,1fr);
  gap:100px;
  align-items:center;
  margin-bottom:120px;
}
.e-adaptive-media__row:last-child{
  margin-bottom:0;
}
.e-adaptive-media__row.reverse .e-adaptive-media__text{
  order:2;
}

.e-adaptive-media__row.reverse .e-adaptive-media__image{
  order:1;
}
.e-adaptive-media__cover{
        width: calc(50vw - 120px);
        height: calc(28.125vw - 67.5px);
}

/* ensure child fills parent */
.e-adaptive-media__cover .e-adaptive-media__image {
    width: 100%;
    height: 100%;

    background-repeat: no-repeat;
    background-position: center;
    background-size: cover; /* keeps full image visible */
}
/* IMAGE */

.e-adaptive-media__image{
   width:100%;
    height:620px;
    border-radius:10px;

    background-size:cover;
    background-repeat:no-repeat;
    background-position:center;

    box-sizing:border-box;
        
}

/* TEXT */

.e-adaptive-media__text h3{
  font-size:20px;
  font-weight:700;
  letter-spacing:.4px;
}

/* LINE */

.e-adaptive-media__line{
  width:100%;
  height:3px;
  background:-webkit-gradient(linear,left top,right top,from(#17cda7),to(#3a7ff8));
  background:linear-gradient(90deg,#17cda7,#3a7ff8);
  margin-top:14px;
  margin-bottom:18px;
}

.e-adaptive-media__text p{
  font-size:15px;
  line-height:1.5;
  color:#555;
  /*max-width:420px;*/
}

/* ANIMATION */

.fade-down{
  opacity:0;
  transform:translateY(-40px);
  transition:all .8s ease;
}

.fade-down.visible{
  opacity:1;
  transform:translateY(0);
}

/* TABLET */

@media (max-width:1200px){

.e-adaptive-media{
  padding:100px 60px;
}

.e-adaptive-media__row{
  gap:60px;
}

}

/* MOBILE */

@media (max-width:768px){

.e-adaptive-media{
  padding:80px 30px;
}

.e-adaptive-media__row{
  grid-template-columns:1fr;
  gap:40px;
  margin-bottom:40px;
}
/* reverse order */
.e-adaptive-media__row > *:nth-child(1) {
    order: 2;
}

.e-adaptive-media__row > *:nth-child(2) {
    order: 1;
}
.e-adaptive-media__row.reverse > *:nth-child(2) {
    order: 1;
}

.e-adaptive-media__row.reverse > *:nth-child(1) {
    order: 2;
}
  .e-adaptive-media__cover {
         width: 100%;
        height: 220px; /* adjust */
    }
.e-adaptive-media__row.reverse .e-adaptive-media__text{
  order:2;
}

.e-adaptive-media__row.reverse .e-adaptive-media__image{
  order:2;
}

.e-adaptive-media__text{
  text-align:center;
}

.e-adaptive-media__text p{
  margin:0 auto;
}

.e-adaptive-media__image{
  height:320px;
}

}
/***************/
.ex2-adas{
  width:100%;
  background:#f3f3f3;
      padding: 270px 0px 100px;
}

.ex2-adas__inner{
  /* max-width:900px;
  margin:0 auto; */
  text-align:center;
  padding:0 120px;
}

.ex2-adas__title{
  font-size:28px;
  font-weight:700;
  letter-spacing:.6px;
  margin-bottom:18px;
      margin-bottom: 32px;
}

.ex2-adas__subtitle{
  font-size:14px;
  line-height:1.6;
  color:#555;
  /* max-width:620px;
  margin:0 auto; */
}


/* TABLET */

@media (max-width:1200px){

.ex2-adas{
  padding:100px 60px;
}

.ex2-adas__title{
  font-size:24px;
}

}


/* MOBILE */

@media (max-width:768px){

.ex2-adas{
  padding:80px 0px;
}
.ex2-adas__inner{
  padding:0 30px;
}
.ex2-adas__title{
  font-size:20px;
}

.ex2-adas__subtitle{
  font-size:13px;
}

}
/**************************/
.ex2-battery{
  width:100%;
  height:90vh;

  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;

  display:flex;
  align-items:flex-end;
  justify-content:center;

  padding:80px 120px;
  box-sizing:border-box;
}

.ex2-battery__content{
  text-align:center;
  color:#fff;
  max-width:620px;
}

/* title */

.ex2-battery__content h3{
  font-size:22px;
  font-weight:700;
  letter-spacing:.5px;
  margin-bottom:12px;
}

/* paragraph */

.ex2-battery__content p{
  font-size:13px;
  line-height:1.5;
  opacity:.9;
  color:#fff;
}

/* fade animation */

.fade-up{
  opacity:0;
  transform:translateY(60px);
  transition:all .9s ease;
}

.fade-up.visible{
  opacity:1;
  transform:translateY(0);
}


/* mobile */

@media (max-width:768px){

.ex2-battery{
  padding:60px 30px;
  height:70vh;
}

.ex2-battery__content h3{
  font-size:18px;
}

}
/*********/
.ex2-disclaimer{
  width:100%;
  background:#f3f3f3;
  padding:28px 120px 24px;
  box-sizing:border-box;
}

.ex2-disclaimer__inner{
  max-width:1400px;
  margin:0 37px;
}

.ex2-disclaimer__title{
  margin:0 0 10px;
  font-size:14px;
  line-height:1.2;
  font-weight:700;
  color:#111;
}

.ex2-disclaimer__text{
  margin:0;
  font-size:12px;
  line-height:1.5;
  color:#444;
  max-width:1200px;
}

@media (max-width:1200px){
  .ex2-disclaimer{
    padding:24px 60px 20px;
  }
}

@media (max-width:768px){
  .ex2-disclaimer{
    padding:20px 30px 18px;
  }

  .ex2-disclaimer__title{
    font-size:13px;
    margin-bottom:8px;
  }

  .ex2-disclaimer__text{
    font-size:11px;
  }
}
/*************/
.ex2-safety-intro {
  background: #efefef;
  padding: 80px 20px;
  text-align: center;

}

.ex2-safety-intro__inner {
  /* max-width: 1200px;
  margin: 0 auto; */
}

.ex2-safety-intro__title {
  margin: 0 0 24px;
  font-size: 34px;
  line-height: 1.1;
  font-weight: 700;
  text-transform: uppercase;
  color: #000;
}

.ex2-safety-intro__text {
  /* max-width: 980px;
  margin: 0 auto; */
  font-size: 18px;
  line-height: 1.6;
  font-weight: 400;
  color: #2b2b2b;
}

@media (max-width: 991px) {
  .ex2-safety-intro__title {
    font-size: 28px;
    margin-bottom: 18px;
  }

  .ex2-safety-intro__text {
    font-size: 16px;
    line-height: 1.5;
  }
}

@media (max-width: 767px) {
  .ex2-safety-intro {
    padding: 28px 16px 30px;
  }

  .ex2-safety-intro__title {
    font-size: 24px;
  }

  .ex2-safety-intro__text {
    font-size: 15px;
  }
}
/******************/
.ex2-battery-hero {
  position: relative;
  min-height: 980px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 60px 20px 90px;
  overflow: hidden;
}

.ex2-battery-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.18) 0%, rgba(0,0,0,0.02) 35%, rgba(0,0,0,0) 100%);
  pointer-events: none;
}

.ex2-battery-hero__content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  text-align: center;
  color: #fff;
}

.ex2-battery-hero__title {
  margin: 0 0 16px;
  font-size: 28px;
  line-height: 1.05;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
}

.ex2-battery-hero__text {
  margin: 0 auto;
  max-width: 720px;
  font-size: 20px;
  line-height: 1.55;
  font-weight: 400;
  color: #fff;
}

/* fade up */
.fade-up-on-scroll {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.9s ease, transform 0.9s ease;
  will-change: opacity, transform;
}

.fade-up-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1200px) {
  .ex2-battery-hero {
    min-height: 760px;
  }

  .ex2-battery-hero__title {
    font-size: 42px;
  }

  .ex2-battery-hero__text {
    font-size: 18px;
  }
}

@media (max-width: 767px) {
  .ex2-battery-hero {
    min-height: 540px;
    padding: 40px 16px 50px;
    background-position: center center;
  }

  .ex2-battery-hero__title {
    margin-bottom: 12px;
    font-size: 28px;
  }

  .ex2-battery-hero__text {
    font-size: 15px;
    line-height: 1.5;
  }
}
/*******************/
.ex2-showroom{
  width:100%;
  padding:110px 120px 120px;
  box-sizing:border-box;
}

.ex2-showroom__inner{
  max-width:900px;
  margin:0 auto;
  text-align:center;
}

.ex2-showroom__title{
  margin:0 0 34px;
  font-size:28px;
  line-height:1.1;
  font-weight:700;
  color:#111;
}

.ex2-showroom__text{
  margin:0 0 56px;
  font-size:16px;
  line-height:1.6;
  color:#2f2f2f;
}

.ex2-showroom__button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:118px;
  height:30px;
  padding:0 14px;
  background:#000;
  color:#fff;
  text-decoration:none;
  font-size:12px;
  line-height:1;
  font-weight:600;
}

@media (max-width:1200px){
  .ex2-showroom{
    padding:90px 60px 100px;
  }
}

@media (max-width:768px){
  .ex2-showroom{
    padding:70px 30px 80px;
  }

  .ex2-showroom__title{
    font-size:22px;
    margin-bottom:24px;
  }

  .ex2-showroom__text{
    font-size:15px;
    margin-bottom:40px;
  }
}