.sec1 {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: #34D3A7;
    z-index: 99999;
    height: 100vh;
    width: 0%;
    transition: all 400ms;
}

.sec2:before {
    position: fixed;
    content: '';
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: #000;
    z-index: 99999;
    height: 100vh;
    width: 0%;
    transition: all 400ms;
}

.loaded-overlay .sec1 {
    transition: all 1s;
    animation-name: load_anim1;
    width: 100%;
}

.loaded-overlay1 .sec2:before {
    animation-name: load_anim2;
    width: 100%;
    transition: all 1s;
}

@-webkit-keyframes load_anim1 {
    0% {
        transform: translateX(-100%);
    }

    10% {
        transform: translateX(-50%);
    }

    80% {
        transform: translateX(100%);
    }

    85% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(100%);
    }
}

@-webkit-keyframes load_anim2 {
    0% {
        transform: translateX(-100%);
    }

    10% {
        transform: translateX(-50%);
    }

    80% {
        transform: translateX(100%);
    }

    85% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(100%);
    }
}

.sec2 svg {
    width: auto;
}

.sec2 svg {
    width: 200px;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    transform: translateY(50px);
    opacity: 0;
    transition-delay: 20s;
    z-index: 999999;
}

.hides .sec2,
.hides .sec2:before {
    right: 0;
    left: auto;
    width: 0;
}

.loaded-overlay2 .sec1 {
    right: 0;
    left: auto;
    width: 0;
}

.loaded-overlay2 .sec2 svg {
    transform: translateY(0px);
    opacity: 1;
    transition: all 400ms;
}

.load-complete {
    position: fixed;
    z-index: 999;
}

.load-complete:before {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    content: '';
    background: #000;
}

.hides:before {
    right: 0;
    left: auto;
}

.hides .sec2 svg {
    opacity: 0;
    visibility: hidden;
}


.hero-section::before {


    animation: move 3s infinite linear;

    transform: translate(15px);

    transition: all 400ms;

}



@-webkit-keyframes move {

    0% {
        transform: translate(0px);
    }

    50% {
        transform: translate(30px);
    }

    100% {
        transform: translate(0px);
    }

}

@-moz-keyframes move {

    0% {
        transform: translate(0px);
    }

    50% {
        transform: translate(30px);
    }

    100% {
        transform: translate(0px);
    }

}

@-o-keyframes move {

    0% {
        transform: translate(0px);
    }

    50% {
        transform: translate(30px);
    }

    100% {
        transform: translate(0px);
    }

}

@keyframes move {

    0% {
        transform: translate(0px);
    }

    50% {
        transform: translate(30px);
    }

    100% {
        transform: translate(0px);
    }

}








@keyframes shine {
    0% {
        left: -100px;
    }

    60% {
        left: 100%;
    }

    to {
        left: 100%;
    }
}


@keyframes steering-advanced {

    /* 0 → 180 */
    0% {
        transform: rotate(0deg);
    }

    12.5% {
        transform: rotate(180deg);
    }

    /* hold at 180 */
    25% {
        transform: rotate(180deg);
    }

    /* 180 → 0 */
    37.5% {
        transform: rotate(0deg);
    }

    /* hold at 0 */
    50% {
        transform: rotate(0deg);
    }

    /* 0 → -180 */
    62.5% {
        transform: rotate(-180deg);
    }

    /* hold at -180 */
    75% {
        transform: rotate(-180deg);
    }

    /* -180 → 0 */
    87.5% {
        transform: rotate(0deg);
    }

    /* hold at 0 */
    100% {
        transform: rotate(0deg);
    }
}




.swapa-concepts .sticky-parent .sticky .dim .detailed-cnt .des ul li figure:hover svg {
    animation: bounceIn 750ms linear infinite alternate;
    -moz-animation: bounceIn 750ms linear infinite alternate;
    /* -webkit-animation: bounceIn 750ms linear infinite alternate; */
    -o-animation: bounceIn 750ms linear infinite alternate;
}

@-webkit-keyframes bounceIn {

    0%,
    20%,
    40%,
    60%,
    80%,
    100% {
        -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }

    0% {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3);
    }

    20% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1);
    }

    40% {
        -webkit-transform: scale3d(.9, .9, .9);
        transform: scale3d(.9, .9, .9);
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(1.03, 1.03, 1.03);
        transform: scale3d(1.03, 1.03, 1.03);
    }

    80% {
        -webkit-transform: scale3d(.97, .97, .97);
        transform: scale3d(.97, .97, .97);
    }

    100% {
        opacity: 1;
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

@keyframes bounceIn {

    0%,
    20%,
    40%,
    60%,
    80%,
    100% {
        -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }

    0% {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        -ms-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3);
    }

    20% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        -ms-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1);
    }

    40% {
        -webkit-transform: scale3d(.9, .9, .9);
        -ms-transform: scale3d(.9, .9, .9);
        transform: scale3d(.9, .9, .9);
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(1.03, 1.03, 1.03);
        -ms-transform: scale3d(1.03, 1.03, 1.03);
        transform: scale3d(1.03, 1.03, 1.03);
    }

    80% {
        -webkit-transform: scale3d(.97, .97, .97);
        -ms-transform: scale3d(.97, .97, .97);
        transform: scale3d(.97, .97, .97);
    }

    100% {
        opacity: 1;
        -webkit-transform: scale3d(1, 1, 1);
        -ms-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

/* HEADER DROPDOWNS */
/* Desktop dropdown arrow + hover-to-open behavior */
.head-menu ul li.has-submenu {
    position: relative;
}

.head-menu ul li.has-submenu > a {
    position: relative;
    padding-right: 24px;
}

.head-menu ul li.has-submenu > a::after {
    position: absolute;
    content: '';
    right: -14px;
    top: 50%;
    width: 8px;
    height: 8px;
    border-right: 1.5px solid #fff;
    border-bottom: 1.5px solid #fff;
    transform: translateY(-70%) rotate(45deg);
    transition: transform 300ms ease;
    pointer-events: none;
}

.head-menu ul li.has-submenu:hover > a::after {
    transform: translateY(-30%) rotate(225deg);
}

/* The dropdown panel itself — hidden by default on desktop */
.head-menu ul li.has-submenu .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 50;
    display: flex;
    flex-direction: column;
    min-width: 14rem;
    margin: 20px 0 0;
    padding: 0.5rem 0;
    list-style: none;
    background: #1a4a4d;
    border-radius: 0.75rem;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 240ms ease, visibility 240ms ease, transform 240ms ease;
}

.head-menu ul li.has-submenu .sub-menu li {
    border-bottom: 0;
}

.head-menu ul li.has-submenu .sub-menu a {
    display: block;
    padding: 0.625rem 1.25rem;
    color: #fff;
    font-size: 14px;
    white-space: nowrap;
}

.head-menu ul li.has-submenu .sub-menu a::before {
    display: none;
}

.head-menu ul li.has-submenu .sub-menu a:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #34d3a7;
}

/* Show on hover (desktop) or keyboard focus (accessibility) */
.head-menu ul li.has-submenu:hover .sub-menu,
.head-menu ul li.has-submenu:focus-within .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Hide the mobile-only toggle button on desktop — it's for the off-canvas mobile menu instead */
.head-menu ul li.has-submenu .mobile-submenu-toggle {
    display: none;
}


/* 20-Jul-2026 */
.hero-section .container .banner-cnt p {
    font-weight: 400;
}

.who-we-are .content h3 {
    margin-bottom: 30px;
}

.who-we-are .content p {
    margin: 0 auto 42px;
    font-weight: 400;
}

.vision .left .content h3 {
    margin-bottom: 30px;
}

.vision .left .content p:nth-of-type(2) {
    margin-top: 40px;
}

.product-showcase__heading {
    margin-bottom: 30px;
    /* space between heading and the carousel track */
}

.product-showcase__heading span {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 25px;
    color: #fff;
}

.product-showcase__heading span .svg {
    width: 17px;
    height: 15px;
    flex-shrink: 0;
}

.product-showcase__heading h3 {
    font-size: 40px;
    color: #34d3a7;
    font-weight: 500;
    margin-top: 6px;
    margin-bottom: 0;
}

.product-card__specs li .product-card__spec-icon {
    filter: brightness(0) invert(1);
}

.site-footer .foot-right .form-box form .form-field.button button {
    color: #000;
}

.site-footer .foot-left .foot-top .follow-us {
    width: 15%;
}

.site-footer .foot-right .form-box form .form-field.textarea textarea {
    height: 100px;
}

.footer-address-det {
    width: 60%;
}

.exterior-specs__item svg path {
    fill: #34D3A7;
}

.exterior-details__copy p {
    font-size: 1.125rem;
}

.specs-table__row::before {
    background: #848484;
}

.interior-cockpit__actions a {
    font-weight: 400;
}

.academy-learn__heading img {
    width: 1.0625rem;
    height: auto;
}

.academy-program__grid {
    row-gap: 1.5rem;
}

.battery-network-showcase {
    padding: clamp(3.5rem, 7vw, 4.375rem) 0;
}

.academy-program__intro h2::after {
    display: block;
    width: min(100%, 10.0625rem);
    height: .5rem;
    margin-top: .25rem;
    content: "";
    background: url("images/title-under-line.svg") left center / 100% 100% no-repeat;
}

.academy-program__item h3::after {
    display: block;
    width: min(100%, 10.0625rem);
    height: .5rem;
    margin-top: .125rem;
    content: "";
    background: url("images/title-under-line.svg") left center / 100% 100% no-repeat;
}

.community-intro h2 {
    margin-bottom: 30px;
}

.community-intro .community-intro__content img {
    display: block;
    width: min(24rem, 100%);
    height: auto;
    margin: 0 auto 1.875rem;
}

/* .community-feature h2::after {
    display: block;
    width: min(100%, 15.0625rem);
    height: .5rem;
    margin-top: .25rem;
    content: "";
    background: url("images/title-under-line.svg") left center / 100% 100% no-repeat;
 } */

.community-feature h2 {
    display: inline-block;
    width: fit-content;
    max-width: 100%;
    /* safety so it never overflows the column on small screens */
}

.community-feature h2::after {
    display: block;
    width: 100%;
    height: .5rem;
    margin-top: .25rem;
    content: "";
    background: url("images/community-vector-underline.svg") left center / 100% 100% no-repeat;
}

.contact-hero__content h1 {
    font-size: clamp(2.25rem, 5vw, 4.0625rem);
}
.home-page-main-container {
    background-color: #000;
}


.community-showcase__wordmark{
	display: none;
}

.community-intro h2 {
    position: relative;
    display: inline-block;
    margin-bottom: 30px; /* space between heading and paragraphs, replacing the old img's role */
}

.community-intro h2::after {
    display: block;
    width: min(380px, 100%);
    height: 18px;
    margin: 0.75rem auto 0;
    content: "";
    background: url("images/title-under-line.svg") center center / 100% 100% no-repeat;
}

.site-footer .foot-right .form-box form .form-field input.wpcf7-submit {
	background: #34d3a7;
    color: #000;
    font-size: 16px;
    border: none;
    padding: 10px 30px;
    border-radius: 50px;
}

.site-footer .foot-right .form-box form .form-field input.wpcf7-submit:hover {
	background: #1a4a4d;
	transition: all 400ms;
}
.who-we-are .content p {
    margin: 0 auto 20px;
    font-weight: 400;
    text-align: justify;
    text-align-last: center;
    width: 73%;
}
.who-we-are .content p.last {
    margin-bottom: 50px;
}
.vision .left .content p {
    width: 80%;
    text-align: justify;
}
.vision .left {
    min-height: 615px;
    display: flex;
    align-items: center;
}
.vision .left .content {
    padding-top: 0;
}
.lifestyle .content .right .det span {
    display: none;
}
.site-footer .foot-right{
	display: flex;
    justify-content: end;
    align-items: flex-start;
}
.site-footer .foot-right .form-box {
    display: flex;
    justify-content: end;
    position: relative;
    flex-direction: column;
}
.site-footer .foot-right .form-box h6 {
    font-size: 16px;
color: #848484;
font-weight: 500;
letter-spacing: 1px;
margin-bottom: 20px;
width: 100%;
}
.academy-hero::after{
	display:none;
}
h1#academy-hero-title {
    display: none;
}
.modula-item {
    border: 1px solid #252222;
    padding: 10px;
}

.product-card__button {
    padding: .75rem 1rem;
}
#video .product-showcase__heading {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    z-index: 10;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 15px;
    text-align: center;
    background: transparent;
}

#video .product-showcase__heading h3 {
    color: #34d3a7;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
}

.second-video::after {
	content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
    pointer-events: none;
}




.specs-hero__content #specs-hero-title {
	font-size: 50px;
	max-width: 50.4375rem;
}

.manual-docs-page {
    overflow: hidden;
    background: #000;
}

.manual-docs {
    padding: 5.75rem 0;
    color: #fff;
    background: #000;
}

.manual-docs__inner {
    display: block;
    margin-top: 4rem;
}

.manual-docs__heading {
    margin-bottom: 3rem;
    text-align: center;
}

.manual-docs__heading h1 {
    margin: 0 0 0.75rem;
    color: #fff;
    font-size: clamp(1.75rem, 3vw, 2.1875rem);
    font-weight: 700;
    letter-spacing: -0.04375rem;
}

.manual-docs__heading p {
    margin: 0;
    color: #f4f5f5;
    font-size: 1rem;
    line-height: 1.6;
}

.manual-docs__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.manual-doc-card {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    padding: 1.75rem;
    color: #fff;
    background: #121212;
    border: 1px dashed #848484;
    border-radius: 1rem;
    transition: border-color 300ms ease-in-out;
}

.manual-doc-card:hover,
.manual-doc-card:focus-within {
    border-color: #34d3a7;
}

.manual-doc-card__icon {
    display: flex;
    width: 3rem;
    height: 3rem;
    align-items: center;
    justify-content: center;
    background: rgba(52, 211, 167, 0.12);
    border-radius: 0.625rem;
}

.manual-doc-card__icon img {
    width: 1.75rem;
    height: 1.75rem;
}

.manual-doc-card__body {
    flex: 1 1 auto;
}

.manual-doc-card__body h3 {
    margin: 0.375rem 0 0;
    color: #fff;
    font-size: 1.0625rem;
    font-weight: 600;
    line-height: 1.3;
}

.manual-doc-card__lang {
    display: block;
    color: #848484;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.manual-doc-card__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.75rem;
    padding: 0.625rem 1.5rem;
    color: #000;
    background: #34d3a7;
    border-radius: 100rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 300ms ease-in-out, transform 300ms ease-in-out;
}

.manual-doc-card__button:hover,
.manual-doc-card__button:focus-visible {
    color: #000;
    background: #fff;
    transform: translateY(-0.125rem);
}


.home-page .video-fixed, .home-page .who-we-are, .home-page .vision, .home-page .battery-swapping, .home-page .features, .home-page .product-showcase, .home-page .above-footer {
	background: #000;
}

.lazyblock-swapa-video-1aHtTO h2, .lazyblock-swapa-video-1aHtTO .icon {
	display: none;
}

.lazyblock-swapa-video-1aHtTO #video .product-showcase__heading {
	top: -50px;
	margin-top: 50px;
}

.lazyblock-swapa-video-1aHtTO #video .second-video {
	padding-top: 100px;
}

.additional_cnt h4 {
    margin: 0 0 15px;
    color: #060607;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.3;
    text-transform: capitalize;
}
.additional_cnt {
    padding-top: 50px;
}
.additional_cnt hr.wp-block-separator.has-alpha-channel-opacity {
    margin: 40px 0;
    border-top: 1px solid #34d3a7;
}
.additional_cnt h5.wp-block-heading {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #34d3a7;
}
.additional_cnt ul li:before {
    position: absolute;
    content: '';
    left: 0;
    top: 12px;
    background: #34d3a7;
    width: 8px;
    height: 8px;
    border-radius: 50px;
}
.additional_cnt ul li {
    padding-left: 17px;
    position: relative;
}
.additional_cnt ul {
    margin: 0 0 30px;
    padding: 0;
}

.scroll-top-btn {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 50%;
    background: #34D3A7;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    transition: opacity 300ms ease, visibility 300ms ease, transform 300ms ease, background 300ms ease;
    z-index: 9999;
}

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

.scroll-top-btn:hover,
.scroll-top-btn:focus {
    background: #000;
    outline: none;
}

.scroll-top-btn span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 13px;
    height: 13px;
    border-top: 3px solid #fff;
    border-left: 3px solid #fff;
    transform: translate(-50%, -35%) rotate(45deg);
}


/* ===== Responsive ===== */
@media (min-width: 48rem) {
    .manual-docs__inner {
        margin-top: 5rem;
    }

    .manual-docs__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (min-width: 48rem) and (max-width: 61.9375rem) {
    .manual-docs__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 62rem) {
    .manual-docs__inner {
        margin-top: 6rem;
    }
}
@media (min-width: 87.5rem) {
    .manual-docs__inner {
        margin-top: 7.5rem;
    }

    .manual-docs__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}
@media (max-width: 1820px) and (min-width: 1601px) {

    /* HEADER */
    header .head-menu {
        gap: 30px;
    }

    header .head-menu ul {
        gap: 0 24px;
    }

    header .head-menu ul li a {
        font-size: 14px;
        white-space: nowrap;
    }

    header .head-right {
        gap: 0.75rem;
    }

    header .head-right .language-switcher {
        margin-right: 24px;
    }

    header .head-right .cnt-btn .head-btn a {
        padding: 11px 16px;
        font-size: 13px;
        gap: 6px;
        white-space: nowrap;
    }
     .site-footer {
        padding-top: clamp(100px, 8vw, 150px);
    }

    .site-footer .foot-left .foot-top {
        margin-bottom: clamp(70px, 6vw, 120px);
    }

    .site-footer .foot-left .foot-top .left-cnt p {
        width: clamp(85%, 95vw, 55%);
    }

    .site-footer .foot-left .foot-top .follow-us ul {
        gap: clamp(12px, 1vw, 20px);
    }

    .site-footer .foot-left .foot-top .follow-us ul li {
        width: clamp(46px, 3vw, 57px);
        height: clamp(46px, 3vw, 57px);
    }

    /* Two-column form grid, now applied across the whole 1820-1200 range */
    .site-footer .foot-right .form-box form {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: clamp(14px, 1vw, 20px);
        width: clamp(90%, 100%, 76%);
    }

    .site-footer .foot-right .form-box form h6 {
        grid-column: 1 / -1;
    }

    .site-footer .foot-right .form-box .form-field {
        width: 100%;
        margin-bottom: 0;
    }

    .site-footer .foot-right .form-box .form-field input {
        width: 100%;
    }

    .site-footer .foot-right .form-box .form-field.textarea,
    .site-footer .foot-right .form-box .form-field.button {
        grid-column: 1 / -1;
    }

    .site-footer .foot-right .form-box .form-field.textarea textarea {
        width: 100%;
    }

    .site-footer .foot-right .form-box:after {
        width: clamp(55%, 60vw, 80%);
        height: clamp(60px, 5vw, 90px);
        bottom: clamp(70px, 6vw, 96px);
    }

    .site-footer .foot-left .foot-btm {
        margin-bottom: clamp(70px, 6vw, 120px);
        gap: clamp(1rem, 3vw, 2rem);
        flex-wrap: wrap;
    }

    .site-footer .foot-left .foot-btm .list .det p {
        font-size: clamp(14px, 1vw, 17px);
    }

    .site-footer .foot-left .foot-btm .list .det p a {
        font-size: clamp(16px, 1.1vw, 20px);
    }
      :is(.interior-page, .exterior-page, .academy-page, .specifications-page, .smart-parking-page, .user-manual-page, .community-page, .single-product-page) .above-footer .det-outer {
        width: 100%;
    }
    .battery-swapping__inner {
        grid-template-columns: minmax(0, 44%) minmax(0, 56%);
        gap: 5.5rem;
        max-width: 110rem;
        padding-inline: 100px;
        margin: 0;
    }

    .battery-swapping__content h2 {
        font-size: 2.25rem;
    }

    .battery-swapping__content p {
        font-size: 1rem;
        line-height: 1.8;
    }
}
@media (max-width: 1800px) and (min-width: 1601px) {
    .hero-section .container {
        padding-right: 3.5rem;
        padding-left: 3.5rem;
    }

    .hero-section .container .banner-cnt {
        width: 38rem;
        padding-right: 2.5rem;
    }

    .hero-section .container .banner-cnt h1 {
        font-size: 3.375rem;
        line-height: 1.15;
    }

    .hero-section .container .banner-cnt p {
        font-size: 1.375rem;
    }

    .hero-section .container figure img {
        width: 85%;
    }

    .moving-car .car {
        top: 90px;
        padding-bottom: 120px;
    }

    .moving-car .car img {
        width: min(100%, 460px);
    }
       .academy-features__card {
        height: 100%;
    }
    .features {
        padding: 85px 0;
    }

    .features .feature-outer {
        gap: 32px;
    }

    .features .feature-outer .single {
        gap: 32px;
    }

    .features .feature-outer .single .des {
        right: 70px;
        bottom: 24px;
    }

    .features .feature-outer .single .des h6 span {
        font-size: 52px;
    }

    .features .feature-outer .single .des p {
        font-size: 21px;
    }

    .features .feature-outer .single .box.right .des {
        left: 30px;
    }

    .manual-innovation,
    .manual-innovation__content {
        min-height: 0;
    }
     .product-card__specs li .product-card__spec-icon {
        display: none;
    }

    .home-page .above-footer .container .det-outer {
        width: 100%
    }

    .product-showcase__inner {
        padding-inline: 100px;
        margin: 0;
    }
     .lifestyle {
        position: relative;
        min-height: 100vh;
        padding-bottom: 4rem;
        overflow: hidden;
    }

    .lifestyle .full-bg-sec,
    .lifestyle .car-view {
        position: absolute;
        inset: 0;
    }

    .lifestyle .content {
        position: relative;
        inset: auto;
        z-index: 9;
    }

    .lifestyle .content .row {
        min-height: 100vh;
    }

    .lifestyle .content .right {
        height: auto;
        min-height: 100vh;
        padding: 4rem 0;
    }

    .lifestyle .content .right .det {
        padding-left: 100px;
    }

    .lifestyle .content .right .det span {
        font-size: 22px;
    }

    .lifestyle .content .right .det h3 {
        font-size: 34px;
        margin-bottom: 24px;
    }

    .lifestyle .content .right .det p {
        width: 100%;
        font-size: 15px;
    }

    .lifestyle .content .left .det {
        position: absolute;
        top: 15%;
        left: 6%;
    }

    .lifestyle .content .left .det .icon {
        margin-top: 90px;
    }

    .lifestyle .content .left .det h5 {
        font-size: 18px;
    }

    .lifestyle .car-view:before {
        right: 20px;
        bottom: -280px;
        width: 500px;
        height: 620px;
        background-size: contain;
    }

    .lifestyle .car-view:after {
        right: -100px;
        bottom: 30%;
        width: 340px;
        height: 420px;
        background-size: contain;
    }
    .vision {
        min-height: auto;
        padding: 80px 0 60px;
    }

    .vision .row {
        display: flex;
        align-items: stretch;
    }

    .vision .left {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .vision .right {
        flex: 0 0 50%;
        max-width: 50%;
        position: relative;
    }

    .vision .left .content {
        padding-top: 0;
        padding-right: 2.5rem;
    }

    .vision .left .content h3 {
        font-size: 34px;
    }

    .vision .left .content p {
        width: 100%;
    }

    .vision .right figure {
        position: relative;
        inset: auto;
        right: auto;
        bottom: auto;
        width: 100%;
        height: 100%;
        min-height: 24rem;
        border-radius: 20px 0 0 0;
    }

    .vision .right figure img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}
@media(min-width: 1200px) and (max-width: 1600px) {

    .container,
    .battery-swapping__inner,
    .product-showcase__inner {
        padding-inline: 80px;
    }
     /* HEADER */
    header .head-menu {
        gap: 20px;
    }

    header .head-menu ul {
        gap: 0 16px;
    }

    header .head-menu ul li a {
        font-size: 13px;
        white-space: nowrap;
    }

    header .head-right {
        gap: 0.5rem;
    }

    header .head-right .language-switcher {
        margin-right: 16px;
    }

    header .head-right .cnt-btn .head-btn a {
        padding: 10px 15px;
        font-size: 12px;
        gap: 0;
        white-space: nowrap;
    }
    .hero-section .container {
        padding-right: 3rem;
        padding-left: 3rem;
        padding-bottom: 40px;
    }

    .hero-section .container .banner-cnt {
        width: 32rem;
        padding-right: 1.5rem;
    }

    .hero-section .container .banner-cnt h1 {
        font-size: 2.875rem;
        line-height: 1.15;
    }

    .hero-section .container .banner-cnt p {
        font-size: 1.1875rem;
    }

    .hero-section .container figure img {
        width: 75%;
    }

    .moving-car .car {
        top: 70px;
        padding-bottom: 100px;
    }

    .moving-car .car img {
        width: min(100%, 400px);
    }
     .features {
        padding: 78px 0;
    }

    .features .feature-outer {
        gap: 28px;
    }

    .features .feature-outer .single {
        gap: 28px;
    }

    .features .feature-outer .single .des {
        right: 45px;
        bottom: 22px;
    }

    .features .feature-outer .single .des h6 span {
        font-size: 48px;
    }

    .features .feature-outer .single .des p {
        font-size: 19px;
    }

    .features .feature-outer .single .box.right .des {
        left: 30px;
    }

    .manual-innovation,
    .manual-innovation__content {
        min-height: 20rem;
    }
}
@media (max-width: 1440px) and (min-width: 1200px) {

    /* ===================== Header ===================== */
    .head-right .cnt-btn .head-btn a span img {
        display: none;
    }

    header .head-center {
        justify-content: flex-start;
    }

    header .head-center .head-menu {
        gap: 30px;
    }

    header .head-center .head-menu ul {
        gap: 0 35px;
    }

    header .head-center .head-menu ul li a {
        font-size: 14px;
    }

    header .head-right .language-switcher {
        margin-right: 24px;
    }

    header .head-right .cnt-btn .head-btn a {
        font-size: 12px;
        padding: 10px 15px;
        gap: 0;
    }

    /* ===================== Hero Section ===================== */
    .hero-section .container {
        padding-bottom: 40px;
    }

    .hero-section .container .banner-cnt {
        width: 540px;
        padding-right: 30px;
    }

    .hero-section .container .banner-cnt h1 {
        font-size: 50px;
        line-height: 56px;
    }

    .hero-section .container .banner-cnt p {
        font-size: 20px;
    }

    .hero-section .container figure img {
        width: 80%;
    }

    /* ===================== Moving Car ===================== */
    .moving-car .car {
        top: 80px;
        padding-bottom: 100px;
    }

    .moving-car .car img {
        width: min(100%, 420px);
        height: auto;
    }

    /* ===================== Video Fixed ===================== */
    .video-fixed h2 {
        font-size: 55px;
        line-height: 55px;
        width: 55%;
        bottom: 70px;
    }

    .video-fixed .icon {
        right: 60px;
        top: 180px;
    }

    /* ===================== Who We Are ===================== */
    .who-we-are {
        padding-top: 150px;
        padding-bottom: 50px;
    }

    .who-we-are .content h3 {
        font-size: 32px;
    }

    .who-we-are .content p {
        width: 70%;
    }

    /* ===================== Vision ===================== */
    .vision {
        min-height: auto;
        padding: 60px 0;
    }

    .vision .left .content {
        padding-top: 0;
    }

    .vision .left .content h3 {
        font-size: 32px;
    }

    .vision .left .content p {
        width: 100%;
    }

    .vision .right figure {
        width: 45%;
    }

    .vision .right figure img {
        width: 100%;
        height: auto;
    }

    .vision .right figure {
        right: max(1.5rem, calc((100vw - var(--site-container-max)) / 2));
    }

    /* ===================== Lifestyle ===================== */
    .lifestyle .car-view:before {
        right: 20px;
        bottom: -280px;
        width: 500px;
        height: 620px;
        background-size: contain;
    }

    .lifestyle .car-view:after {
        right: -100px;
        bottom: 30%;
        width: 340px;
        height: 420px;
        background-size: contain;
    }

    .lifestyle .content .left .det {
        top: 15%;
        left: 6%;
    }

    .lifestyle .content .left .det .icon {
        margin-top: 90px;
    }

    .lifestyle .content .left .det h5 {
        font-size: 17px;
    }

    .lifestyle .content .right {
        align-items: flex-start;
        padding-top: 50px;
    }

    .lifestyle .content .right .det {
        padding-left: 60px;
    }

    .lifestyle .content .right .det span {
        font-size: 20px;
    }

    .lifestyle .content .right .det h3 {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .lifestyle .content .right .det p {
        width: 100%;
        font-size: 15px;
    }

    /* ===================== Swapa Concepts ===================== */
    .swapa-concepts .sticky-parent .sticky .dim .detailed-cnt .des {
        padding: 0 50px;
    }

    .swapa-concepts .sticky-parent .sticky .dim .detailed-cnt .des h3 {
        font-size: 32px;
    }

    .swapa-concepts .sticky-parent .sticky .dim .detailed-cnt .des p {
        width: 100%;
    }

    .swapa-concepts .sticky-parent .sticky .dim .detailed-cnt .des ul li figure {
        width: 80px;
        height: 80px;
    }

    /* ===================== Features ===================== */
    .features {
        padding: 70px 0;
    }

    .features .feature-outer {
        gap: 24px;
    }

    .features .feature-outer .single {
        gap: 24px;
    }

    .features .feature-outer .single .des {
        right: 30px;
        bottom: 20px;
    }

    .features .feature-outer .single .des h6 span {
        font-size: 45px;
    }

    .features .feature-outer .single .des p {
        font-size: 18px;
    }

    .features .feature-outer .single .box.right .des {
        left: 30px;
    }

    /* ===================== Products / Product Showcase ===================== */
    .products .top {
        margin-bottom: 40px;
    }

    .products .top h3 {
        font-size: 32px;
    }

    .product-showcase {
        padding: 70px 0;
    }

    .product-card__image {
        height: 30rem;
    }

    .product-card__body {
        padding: 1.5rem 2rem 2rem;
    }

    .product-card__actions {
        gap: 2rem;
    }

    .product-card__specs li .product-card__spec-icon {
        display: none;
    }

    /* ===================== Battery Swapping ===================== */
    .battery-swapping {
        padding: 4.5rem 0;
    }

    .battery-swapping__inner {
        gap: 3.5rem;
    }

    .battery-swapping__content h2 {
        font-size: 1.875rem;
    }

    .battery-swapping__content p {
        font-size: 0.9375rem;
        line-height: 1.75;
    }

    /* ===================== Above Footer ===================== */
    .above-footer {
        padding: 70px 0;
    }

    .above-footer .container .det-outer {
        width: 85%;
    }

    .above-footer .container .det-outer .box-cnt a {
        padding: 24px;
    }

    /* ===================== Footer ===================== */
    .site-footer {
        padding-top: 100px;
    }

    .site-footer .foot-left .foot-top .left-cnt p {
        width: 70%;
    }

    .site-footer .foot-left .foot-top .follow-us {
        width: 30%;
    }

    .site-footer .foot-btm .list figure .svg {
        display: none;
    }

    .site-footer .foot-right .form-box form .form-field.textarea textarea {
        height: 80px;
    }

    /* new code */
    .site-footer .foot-right .form-box form {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        width: 100%;
    }

    .site-footer .foot-right .form-box form h6 {
        grid-column: 1 / -1;
    }

    .site-footer .foot-right .form-box .form-field {
        width: 100%;
        margin-bottom: 0;
    }

    .site-footer .foot-right .form-box .form-field input {
        width: 100%;
        padding-bottom: 8px;
    }

    .site-footer .foot-right .form-box .form-field.textarea,
    .site-footer .foot-right .form-box .form-field.button {
        grid-column: 1 / -1;
    }

    .site-footer .foot-right .form-box .form-field.textarea textarea {
        width: 100%;
    }

    .site-footer .foot-right .form-box .form-field.button {
        display: flex;
        justify-content: flex-start;
    }

    :root {
        --site-container-max: 1320px;
        /* set this to your actual bootstrap .container max-width — check devtools on any .container element at desktop width and confirm */
        --site-container-pad: 1.5rem;
    }

    .battery-swapping__inner,
    .product-showcase__inner {
        max-width: var(--site-container-max);
        padding-right: var(--site-container-pad);
        padding-left: var(--site-container-pad);
        margin-right: auto;
        margin-left: auto;
    }

    /* ACADEMY PAGE */
    .academy-features__card h2 {
        font-size: 20px;
    }

    .interior-hero__content h1 {
        font-size: 2.5rem;
    }

    .interior-hero__content p {
        font-size: 1.125rem;
        max-width: 30.25rem;
    }
     .features {
        padding: 70px 0;
    }

    .features .feature-outer {
        gap: 24px;
    }

    .features .feature-outer .single {
        gap: 24px;
    }

    .features .feature-outer .single .des {
        right: 30px;
        bottom: 20px;
    }

    .features .feature-outer .single .des h6 span {
        font-size: 45px;
    }

    .features .feature-outer .single .des p {
        font-size: 18px;
    }

    .features .feature-outer .single .box.right .des {
        left: 30px;
    }

    .manual-innovation,
    .manual-innovation__content {
        min-height: 20rem;
    }
    .battery-swapping__inner {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 4rem;
        max-width: 110rem;
        padding-inline: 100px;
    }

    .battery-swapping__content h2 {
        font-size: 2rem;
    }

    .battery-swapping__content p {
        font-size: 0.9375rem;
        line-height: 1.75;
    }
	.vision .left {
    min-height: auto;
}
	.exterior-intro {
    padding: 6.25rem 0 0;
}
	.exterior-video {
    padding: 6.25rem 0 0;
}
}
@media (max-width: 1320px) and (min-width: 1200px) {
    header .head-menu {
        gap: 14px;
    }

    header .head-menu ul {
        gap: 0 12px;
    }

    header .head-menu ul li a {
        font-size: 12px;
        white-space: nowrap;
    }

    header .head-right {
        gap: 0.4rem;
    }

    header .head-right .language-switcher {
        margin-right: 12px;
    }

    header .head-right .language-switcher .select-selected {
        font-size: 14px;
    }

    header .head-right .cnt-btn .head-btn a {
        padding: 8px 12px;
        font-size: 11px;
        gap: 0;
        white-space: nowrap;
        flex-shrink: 0;
    }

    header .head-right .cnt-btn {
        flex-shrink: 0;
    }

    header .head-right .cnt-btn .head-btn a span img {
        display: none;
    }
}
@media(max-width: 1199px) {
    .contact-hero__content {
        position: relative;
        z-index: 2;
        display: flex;
        align-items: center;
        min-height: 24rem;
    }

    .exterior-intro,
    .exterior-video,
    .exterior-specs,
    .exterior-details {
        padding: 4rem 0;
    }

    .interior-hero__content {
        padding-top: 70px;
    }

    .interior-hero__content h1 {
        font-size: 40px;
    }

    .interior-hero__content p {
        font-size: 20px;
    }

    .zip-overview__specs img {
        display: none;
    }

    .parking-hero__content {
        align-items: center;
        padding-top: 0;
        padding-bottom: 0;
    }
     .home-page .features .feature-outer {
        gap: 1.5rem;
    }

    .home-page .features .feature-outer .single {
        gap: 1.5rem;
    }

    .home-page .features .feature-outer .single .des {
        right: 2rem;
    }

    .home-page .features .feature-outer .single .des h6 span {
        font-size: 3rem;
    }

    .home-page .features .feature-outer .single .des p {
        font-size: 1.25rem;
    }

    .home-page .features .feature-outer .single figure img {
        width: 100%;
    }

    .manual-innovation,
    .manual-innovation__content {
        min-height: 20rem;
    }

    .manual-innovation__content {
        display: flex;
        align-items: center;
    }

    .manual-guide {
        padding-bottom: 4rem;
    }

    header .head-center .head-menu {
        margin: 0;
        max-width: 100%;
    }
    
    .container {
        padding: 0 50px;
    }

    /* ===================== Hero: text left, full width over banner ===================== */
    .home-page .hero-section .container {
        align-items: flex-start;
    }

    .home-page .hero-section .container .banner-cnt {
        width: 70%;
        padding-right: 0;
        text-align: left;
    }

    .home-page .hero-section .container figure {
        display: none;
    }

    .home-page .moving-car {
        display: none;
    }

    .home-page .hero-section {
        position: relative;
        height: 100vh;
        min-height: 100vh;
    }

    .home-page .hero-section .container {
        height: 100vh;
        min-height: 100vh;
        justify-content: center;
        align-items: flex-start;
        padding-inline: 50px;
    }

    .home-page .hero-section .container .banner-cnt {
        width: 100%;
        padding-right: 0;
        text-align: left;
    }

    .home-page .hero-section .container figure {
        display: none;
    }

    .home-page .moving-car {
        display: none;
    }
	
	header .head-center {
		transform: none;
	}

    /* ===================== Vision of the Project: image + content full width, image on top ===================== */
    .vision .row {
        display: flex;
        flex-direction: column;
    }

    .vision .row>[class*="col-"] {
        flex: 0 0 100%;
        max-width: 100%;
        width: 100%;
    }

    .vision .row .right {
        order: -1;
        margin-bottom: 2rem;
    }

    .vision .row .left {
        order: 2;
    }

    .vision .left .content {
        width: 100%;
        /* padding: 0 2rem; */
    }

    .vision .left .content p {
        width: 100%;
    }

    .vision .right figure {
        position: relative;
        inset: auto;
        right: auto;
        bottom: auto;
        width: 100%;
        /* padding: 0 2rem; */
        border-radius: 1rem;
    }

    .vision .right figure img {
        display: block;
        width: 100%;
        height: auto;
        object-fit: cover;
        border-radius: 1rem;
    }

    .home-page .vision .right figure {
        width: 100%;
    }

    .home-page .vision .left .content p {
        width: 100%;
    }

    /* ===================== Explanation of the SWAPA Concept: image + content full width, image on top ===================== */
    /* Hide the shape/silhouette background image entirely */
    .lifestyle {
        padding-bottom: 50px;
    }

    .lifestyle .full-bg-sec {
        display: none;
    }

    /* Turn car-view from an absolutely-positioned background layer into a normal, full-width image on top */
    .lifestyle .car-view {
        display: block;
        position: relative;
        inset: auto;
        width: 100%;
        order: -1;
        margin-bottom: 0;
    }

    .lifestyle .car-view:before,
    .lifestyle .car-view:after {
        display: none;
    }

    .lifestyle .car-view img {
        display: block;
        width: 100%;
        height: auto;
        object-fit: cover;
        border-radius: 1rem;
    }

    .lifestyle .content {
        position: relative;
        inset: auto;
    }

    .lifestyle .content .row {
        display: flex;
        flex-direction: column;
    }

    .lifestyle .content .row>[class*="col-"] {
        flex: 0 0 100%;
        max-width: 100%;
        width: 100%;
    }

    .lifestyle .content .left .det {
        position: relative;
        top: auto;
        left: auto;
        margin-bottom: 1.5rem;
    }

    .lifestyle .content .left .det .icon {
        display: none;
    }

    .lifestyle .content .right .det {
        width: 100%;
        /* padding: 0 2rem; */
        padding-left: 0;
    }

    .lifestyle .content .right .det p {
        width: 100%;
    }

    .home-page .lifestyle .content .right .det {
        padding-left: 0;
    }

    .product-showcase {
        padding: 0;
    }

    .product-showcase__inner {
        padding: 0 50px;
    }

    .battery-swapping__inner {
        padding: 0 50px;
        grid-template-columns: 1fr;
    }

    .battery-swapping__visual img {
        border-radius: 1rem;
    }

    /* ===================== Footer: stack every block, centered, in exact order ===================== */
    .site-footer {
        padding-top: 80px;
    }

    .site-footer .row {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 1.5rem;
        padding: 0 2rem;
    }

    .site-footer .foot-left,
    .site-footer .foot-top,
    .site-footer .foot-btm,
    .site-footer .foot-right {
        display: contents !important;
    }

    /* Block 1: Logo + paragraph */
    .site-footer .left-cnt {
        order: 1 !important;
        width: 100%;
        /* max-width: 26rem; */
        margin-bottom: 1.5rem;
        padding-bottom: 1.5rem;
        text-align: center;
    }

    .site-footer .left-cnt figure {
        display: flex;
        justify-content: center;
    }

    .site-footer .left-cnt p {
        width: 100%;
        margin: 0 auto;
    }

    /* Block 2: Follow Us */
    .site-footer .foot-left .foot-top .follow-us {
        order: 2 !important;
        width: 100%;
        margin-bottom: 1.5rem;
        padding-bottom: 1.5rem;
        text-align: center;
    }

    .site-footer .follow-us ul {
        justify-content: center;
    }

    /* Block 3: Enquire Now form */
    .site-footer .form-box {
        order: 3 !important;
        display: flex !important;
        justify-content: center;
        width: 100%;
        margin-bottom: 1.5rem;
        padding-bottom: 1.5rem;
    }

    .site-footer .form-box:after {
        display: none;
    }

    .site-footer .form-box form {
        width: 100%;
        max-width: 26rem;
        /* text-align: center; */
    }

    .site-footer .form-box form h6 {
        text-align: center;
    }

    /* Blocks 4-6: E-mail, Address, Phone */
    .site-footer .foot-btm .list {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        margin-bottom: 1.5rem;
        padding-bottom: 1.5rem;
        text-align: center;
        gap: 0.5rem;
    }

    .site-footer .foot-btm .list:last-child {
        margin-bottom: 0;
        padding-bottom: 30px;
    }

    .site-footer .foot-btm .list:nth-of-type(1) {
        order: 4 !important;
    }

    .site-footer .foot-btm .list:nth-of-type(2) {
        order: 5 !important;
    }

    .site-footer .foot-btm .list:nth-of-type(3) {
        order: 6 !important;
    }

    .site-footer .foot-btm .list .det {
        text-align: center;
    }

    /* Copyright row */
    .site-footer .copyright .row {
        flex-direction: column;
        align-items: center;
        /* gap: 1rem; */
        text-align: center;
    }

    .site-footer .copyright .copyright-right {
        justify-content: center;
    }

    .site-footer .foot-left .foot-top .left-cnt p {
        width: 100%;
    }

    .site-footer .foot-right .form-box {
        justify-content: center;
    }

    .site-footer .left-cnt,
    .site-footer .follow-us,
    .site-footer .form-box,
    .site-footer .foot-btm .list {
        border-bottom: 1px solid #414141;
    }

    .site-footer .foot-btm .list:last-child {
        border-bottom: 0;
    }

    .site-footer .copyright .copyright-left {
        padding-top: 20px;
        padding-bottom: 0;
    }

    .features {
        padding: 50px 0;
    }

    .site-footer .foot-right .form-box form {
        /* justify-content: center; */
        display: block;
    }

    .site-footer .foot-right .form-box form .form-field input,
    .site-footer .foot-right .form-box form .form-field.textarea textarea {
        width: 100%;
    }

    .site-footer .foot-right .form-box form .form-field.textarea textarea {
        height: 70px;
    }
	
	    /* Reset desktop dropdown positioning — submenu becomes part of normal document flow */
    .head-menu ul li.has-submenu .sub-menu {
        position: relative;
        top: auto;
        left: auto;
        display: block;
        min-width: 0;
        margin: 0;
        padding-left: 1rem;
        background: transparent;
        border-radius: 0;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        transition: none;

        /* accordion collapse/expand */
        max-height: 0;
        overflow: hidden;
        transition: max-height 340ms ease, opacity 260ms ease;
        opacity: 0;
    }

    .head-menu ul li.has-submenu .sub-menu::before {
        display: none;
    }

    .head-menu ul li.is-expanded > .sub-menu {
        max-height: 36rem;
        opacity: 1;
    }

    /* Turn off desktop hover-to-open entirely on mobile */
    .head-menu ul li.has-submenu:hover .sub-menu,
    .head-menu ul li.has-submenu:focus-within .sub-menu {
        max-height: 0;
        opacity: 0;
    }
    .head-menu ul li.is-expanded:hover .sub-menu,
    .head-menu ul li.is-expanded:focus-within .sub-menu {
        max-height: 36rem;
        opacity: 1;
    }

    /* Remove the desktop chevron — mobile uses the .mobile-submenu-toggle button instead */
    .head-menu ul li.has-submenu > a {
        padding-right: 3rem;
    }
    .head-menu ul li.has-submenu > a::after {
        display: none;
    }

    /* Sub-menu link styling for mobile */
    .head-menu ul li.has-submenu .sub-menu li {
        border-bottom: 0;
    }
    .head-menu ul li.has-submenu .sub-menu a {
        display: block;
        padding: 0.75rem 0;
        color: rgba(255, 255, 255, 0.82);
        font-size: 0.9375rem;
    }
    .head-menu ul li.has-submenu .sub-menu a::before {
        display: none;
    }

    /* Show the mobile toggle button (hidden on desktop) */
    .head-menu ul li.has-submenu .mobile-submenu-toggle {
        display: inline-flex;
    }
     .site-footer .foot-right .form-box {
        justify-content: center;
        flex-direction: column;
    }
	
	.form-box h6 {
       color: #848484;
       text-align: center;
       margin-bottom: 20px;
	}
	.who-we-are .content p {
    width: 100%;
		text-align: center;
}
	.vision .left .content p {
    width: 100%;
    text-align: left;
}
	.vision .left {
    min-height: auto;
		text-align: left;
}
 #video .product-showcase__heading h3 {
        font-size: 2.25rem;
    }
	
	.product-showcase {
		padding-top: 50px;
	} 
	
	.home-page .lifestyle .content .left .det {
		left: 0;
	}
	
	#wpcf7-f39-o1 {
	display: flex;
	justify-content: center;
    }
	
	#wpcf7-f39-o1 .button {
		margin-top: 30px;
	}
}
@media(max-width: 1024px) {

    .academy-features,
    .academy-learn,
    .academy-program {
        padding: 2.5rem 0;
    }

    .academy-features__card {
        justify-content: flex-start;
        height: 100%;
        min-height: auto;
    }

    .academy-program .row {
        display: flex;
        flex-direction: column;
    }

    .academy-program .row>[class*="col-"] {
        flex: 0 0 100%;
        max-width: 100%;
        width: 100%;
    }

    .academy-program__intro {
        order: 1;
        margin-bottom: 1.5rem;
    }

    .academy-program__item--lead {
        order: 2;
    }

    .academy-program__grid {
        display: flex;
        flex-direction: column;
    }

    .academy-program__grid .col-md-6 {
        order: initial;
    }

    :is(.interior-page, .exterior-page, .academy-page, .specifications-page, .smart-parking-page, .user-manual-page, .community-page, .single-product-page) .above-footer .det-outer {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        flex-direction: column;
    }

    :is(.interior-page, .exterior-page, .academy-page, .specifications-page, .smart-parking-page, .user-manual-page, .community-page, .single-product-page) .above-footer .det-outer .box-cnt a {
        border-right: 0px;
        border-bottom: 1px dashed rgb(132, 132, 132);
    }

    /* BATTERY SWAPPING NETWORK */
    .battery-network-works {
        grid-template-columns: 1fr;
    }

    .battery-network-works__content p {
        max-width: 100%;
    }

    .battery-network-works__content {
        padding-inline: 50px;
    }

    .community-feature .row {
        display: flex;
        flex-direction: column;
    }

    .community-feature .row>[class*="col-"] {
        flex: 0 0 100%;
        max-width: 100%;
        width: 100%;
    }

    .community-feature__media-column {
        order: -1;
        margin-bottom: 1.5rem;
    }

    .community-feature__content-column {
        order: 2;
    }

    .community-feature__content {
        max-width: 100%;
    }

    /* CONTACT US PAGE */
    .contact-hero {
        position: relative;
        min-height: 24rem;
    }

    .contact-hero__image {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .contact-hero__shade {
        position: absolute;
        inset: 0;
        z-index: 1;
    }

    .contact-hero__content {
        position: relative;
        z-index: 2;
        display: flex;
        align-items: center;
        min-height: 24rem;
    }

    .contact-page .container {
        padding-right: 2rem;
        padding-left: 2rem;
    }

    .contact-hero,
    .contact-hero__content {
        min-height: 30rem;
    }

    .contact-details__grid {
        grid-template-columns: repeat(2, 1fr);
        align-items: start;
    }

    .contact-details__item {
        width: max-content;
        max-width: 100%;
        margin: 0;
    }

    .contact-details__item:nth-child(1) {
        justify-self: start;
    }

    .contact-details__item:nth-child(2) {
        justify-self: end;
    }

    .contact-details__item:nth-child(3) {
        grid-column: 1 / -1;
        justify-self: center;
    }

    .contact-form__grid {
        grid-template-columns: repeat(6, 1fr);
    }

    .contact-form__field {
        grid-column: span 2;
    }

    .contact-form__field--place,
    .contact-form__field--message {
        grid-column: span 3;
    }

    .contact-details__item:nth-child(3) {
        grid-column: 1 / -1;
        justify-self: start;
    }

    .exterior-intro,
    .exterior-video,
    .exterior-specs,
    .exterior-details {
        padding: 3rem 0;
    }

    .interior-hero__video {
        position: relative;
    }

    .interior-hero__content h1 {
        font-size: 3rem;
    }

    .interior-hero__content p {
        max-width: 100%;
        font-size: 1.25rem;
    }

    .interior-hero,
    .interior-hero__content {
        min-height: 0;
    }

    .interior-cockpit {
        padding: 3rem 0;
    }

    /* SMART PARKING */
    .parking-hero__content {
        align-items: center;
        padding-top: 0;
        padding-bottom: 0;
    }

    /* 2. Reorder: video on top, text/card below */
    .parking-intro .row {
        display: flex;
        flex-direction: column;
    }

    .parking-intro .col-lg-7 {
        order: 1;
        width: 100%;
        max-width: 100%;
        flex: 0 0 100%;
        /* video moves first */
    }

    .parking-intro .col-lg-5 {
        order: 2;
        width: 100%;
        max-width: 100%;
        flex: 0 0 100%;
        /* card/text moves second */
    }

    .parking-intro__copy {
        max-width: 100%;
    }

    .parking-intro {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    .specs-technical {
        padding: 3rem 0;
    }

    .technical-hero::after {
        position: absolute;
        inset: 0;
        content: "";
        background: rgba(0, 0, 0, 0.45);
        pointer-events: none;
        z-index: 0;
    }

    .technical-hero__inner {
        z-index: 1;
    }

    .technical-hero h1 span,
    .technical-hero h1 {
        font-size: 50px;
    }

    .technical-hero__content {
        justify-content: flex-start;
    }

    /* Technical feature blocks: image/video on top, content below, full width */
    .technical-feature {
        display: flex;
        flex-direction: column;
    }

    .technical-feature__media {
        order: 1;
        width: 100%;
    }

    .technical-feature__content {
        order: 2;
        width: 100%;
    }

    /* Reset the reverse variant so media still comes first */
    .technical-feature--reverse .technical-feature__media {
        order: 1;
    }

    .technical-feature--reverse .technical-feature__content {
        order: 2;
    }

    /* Smart parking assist block: media on top, card below, full width */
    .technical-assist {
        display: flex;
        flex-direction: column;
    }

    .technical-assist__media {
        order: 1;
        width: 100%;
    }

    .technical-assist__card {
        order: 2;
        width: 100%;
    }

    .technical-assist__card p {
        width: 100%;
    }

    .manual-innovation__content {
        align-items: center;
        padding-top: 0;
    }

    .manual-innovation,
    .manual-innovation__content {
        min-height: 20rem;
    }

    .manual-guide {
        padding-bottom: 3rem;
    }

    .community-hero__content {
        position: relative;
        z-index: 1;
        display: flex;
        align-items: center;
        height: 100%;
    }

    .contact-hero__shade {
        display: none;
    }
}
@media (max-width: 991.98px) {
    .home-page .features {
        padding: 4rem 0;
    }

    .home-page .features .feature-outer {
        display: grid;
        grid-template-columns: 1fr;
    }

    .home-page .features .feature-outer .single {
        min-width: 0;
    }

    .home-page .features .feature-outer .single:first-child {
        grid-row: span 2;
    }

    .manual-download__content {
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
    }
}
@media(max-width: 991px) {
    .exterior-details .row {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .exterior-details .col-md-4 {
        width: auto;
    }

    .exterior-details .col-md-4:nth-child(3) {
        grid-column: 1 / -1;
        justify-self: start;
        width: 50%;
    }

    .exterior-refined,
    .exterior-refined__image {
        min-height: 22rem;
    }

    .exterior-refined__content {
        min-height: 22rem;
        display: flex;
        justify-content: center;
    }

    .exterior-refined__feature {
        top: 3%;
        left: 4%;
    }

    .exterior-refined h2 {
        bottom: 8.375rem;
        left: 4%;
    }

    .exterior-refined__stats {
        left: 4%;
    }

    .zip-overview__specs img {
        display: block;
    }

    .zip-overview__content {
        max-width: 100%;
    }

    .zip-overview p {
        max-width: 100%;
    }

    .zip-overview {
        padding-top: 3rem;
    }

    .home-page .who-we-are {
        padding-bottom: 3rem;
    }

    .home-page .vision {
        padding: 4rem 0;
    }
	
	.interior-experience__summary {
		justify-content: initial;
		min-height: 0;
	}
	
	.manual-guide {
		padding: 3.75rem 0 3rem !important;
	}
      #video .product-showcase__heading {
        top: 40px;
    }

    #video .product-showcase__heading h3 {
        font-size: 2rem;
    }
}
@media(max-width: 768px) {
    .home-page .hero-section {
        height: 75vh;
        min-height: 75vh;
    }

    .home-page .hero-section .container {
        height: 75vh;
        min-height: 75vh;
    }

    .home-page .lifestyle .content .row {
        gap: 0;
    }

    .home-page .vision {
        padding-top: 0;
        padding-bottom: 50px;
    }

    .home-page .vision .row {
        gap: 1.5rem;
    }

    .home-page .features .feature-outer {
        grid-template-columns: 1fr;
    }

    .battery-swapping {
        padding-block: 3rem;
    }

    .home-page .above-footer {
        padding: 2rem 0;
    }


    .community-hero {
        position: relative;
        min-height: 20rem;
    }

    .community-page .container {
        min-height: 20rem;
    }

    .community-hero__image {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .community-hero__content {
        position: relative;
        z-index: 1;
        display: flex;
        align-items: center;
        height: 100%;
    }

    .community-intro {
        padding-block: 3rem;
    }

    .community-feature {
        margin-bottom: 3rem;
    }

    .community-benefits {
        padding-bottom: 3rem;
    }

    .community-showcase {
        padding-bottom: 0;
    }

    /* .community-showcase .container {
        min-height: 12rem;
    } */

    .exterior-refined__feature {
        top: 3%;
        left: 4%;
    }

    .exterior-refined h2 {
        bottom: 8.375rem;
        left: 4%;
    }

    .exterior-refined__stats {
        left: 4%;
    }

    .interior-intro {
        padding: 3rem 0;
    }

    .interior-gallery {
        padding: 3rem 0;
    }

    .interior-experience {
        padding: 3rem 0;
    }

    /* SINGLE PRODUCT */
    .zip-overview {
        padding-top: 3rem;
    }

    .zip-overview__content {
        max-width: 100%;
    }

    .zip-overview p {
        max-width: 100%;
    }

    .zip-overview__specs {
        margin: 0;
    }

    .technical-hero h1 span,
    .technical-hero h1 {
        font-size: 35px;
    }

    .manual-guide {
        padding-top: 3rem;
    }

    .above-footer {
        padding-top: 50px;
    }

    .academy-hero {
        min-height: 23rem;
    }

    .battery-network-showcase .container {
        min-height: 0;
    }

    .contact-details__item p {
        font-size: 18px;
    }

    .zip-colors__inner {
        width: 100%;
        max-width: 100%;
        padding-right: 0;
        padding-left: 0;
        margin: 0 auto;
        overflow: hidden;
    }

    .zip-colors__track {
        width: 100%;
    }

    .zip-colors__track .owl-stage-outer {
        width: 100%;
        overflow: hidden;
    }

    .zip-colors__slide {
        width: 100%;
        margin: 0 auto;
    }

    /* Override the 220%/translateX rule from the 47.998rem breakpoint */
    .zip-colors__image {
        width: 100% !important;
        max-width: 100% !important;
        transform: none !important;
        margin: 0 auto;
    }

    .zip-colors__controls {
        bottom: 1rem;
    }

    .zip-overview__content {
        padding-left: 10px;
    }

    .zip-overview__specs {
        padding: 0 0 1.125rem;
        margin: 0 0 1.125rem;
    }
     body:has(.interior-page) header .head-logo,
    body:has(.exterior-page) header .head-logo,
    body:has(.academy-page) header .head-logo,
    body:has(.specifications-page) header .head-logo,
    body:has(.smart-parking-page) header .head-logo,
    body:has(.user-manual-page) header .head-logo,
    body:has(.community-page) header .head-logo,
    body:has(.single-product-page) header .head-logo {
        text-align: start;
    }

    body:has(.interior-page) .site-footer .foot-right .form-box,
    body:has(.exterior-page) .site-footer .foot-right .form-box,
    body:has(.academy-page) .site-footer .foot-right .form-box,
    body:has(.specifications-page) .site-footer .foot-right .form-box,
    body:has(.smart-parking-page) .site-footer .foot-right .form-box,
    body:has(.user-manual-page) .site-footer .foot-right .form-box,
    body:has(.community-page) .site-footer .foot-right .form-box,
    body:has(.single-product-page) .site-footer .foot-right .form-box {
        justify-content: center;
    }

    body:has(.interior-page) .site-footer .foot-right .form-box,
    body:has(.exterior-page) .site-footer .foot-right .form-box,
    body:has(.academy-page) .site-footer .foot-right .form-box,
    body:has(.specifications-page) .site-footer .foot-right .form-box,
    body:has(.smart-parking-page) .site-footer .foot-right .form-box,
    body:has(.user-manual-page) .site-footer .foot-right .form-box,
    body:has(.community-page) .site-footer .foot-right .form-box,
    body:has(.single-product-page) .site-footer .foot-right .form-box {
        padding-top: 40px;
    }

    body:has(.interior-page) .site-footer .copyright-right,
    body:has(.exterior-page) .site-footer .copyright-right,
    body:has(.academy-page) .site-footer .copyright-right,
    body:has(.specifications-page) .site-footer .copyright-right,
    body:has(.smart-parking-page) .site-footer .copyright-right,
    body:has(.user-manual-page) .site-footer .copyright-right,
    body:has(.community-page) .site-footer .copyright-right,
    body:has(.single-product-page) .site-footer .copyright-right {
        justify-content: center;
    }

    body:has(.interior-page) .site-footer,
    body:has(.exterior-page) .site-footer,
    body:has(.academy-page) .site-footer,
    body:has(.specifications-page) .site-footer,
    body:has(.smart-parking-page) .site-footer,
    body:has(.user-manual-page) .site-footer,
    body:has(.community-page) .site-footer,
    body:has(.single-product-page) .site-footer {
        padding-top: 50px;
    }
     .community-hero__content {
        justify-content: center;
    }
    .home-page .features {
        padding: 3.5rem 0;
    }

    .home-page .features .feature-outer {
        grid-template-columns: 1fr;
    }

    .home-page .features .feature-outer .single:first-child {
        grid-row: auto;
    }

    .home-page .features .feature-outer .single .des,
    .home-page .features .feature-outer .single .box.right .des {
        right: auto;
        bottom: 1.25rem;
        left: 1.25rem;
    }

    .home-page .features .feature-outer .single .des h6,
    .home-page .features .feature-outer .single .box.right .des h6 {
        font-size: 1.125rem;
    }

    .home-page .features .feature-outer .single .des h6 span,
    .home-page .features .feature-outer .single .box.right .des h6 span {
        font-size: 2.25rem;
    }

    .home-page .features .feature-outer .single .des p,
    .home-page .features .feature-outer .single .box.right .des p {
        font-size: 1rem;
    }

    .home-page .who-we-are {
        padding-top: 6rem;
    }

    .manual-innovation,
    .manual-innovation__content {
        min-height: 15rem;
    }
      #video .product-showcase__heading {
        top: 24px;
        padding: 0 1.25rem;
    }

    #video .product-showcase__heading h3 {
        font-size: 1.5rem;
        line-height: 1.4;
    }

}
@media(min-width: 577px) and (max-width: 767px) {
	.interior-gallery__item--side  {
		display: none;
	}
}
@media(max-width: 576px) {
    .container {
        padding: 0 25px;
    }

    header .head-logo img {
        max-width: 5.25rem;
    }

    .home-page .hero-section {
        height: 50vh;
        min-height: 50vh;
    }

      .home-page .hero-section .container {
        height: 50vh;
        min-height: 50vh;
        padding-inline: 15px;
        justify-content: end;
    }

    .battery-swapping__inner,
    .product-showcase__inner {
        padding: 0 25px;
    }

    .home-page .features {
        padding-top: 1.5rem;
    }

    .home-page .who-we-are .content h3,
    .home-page .vision .left .content h3,
    .home-page .vision .left .content h3,
    .battery-swapping__content h2,
    .product-showcase__heading h3 {
        font-size: 25px;
    }

    .home-page .lifestyle .content .right .det span,
    .home-page .lifestyle .content .right .det span,
    .product-showcase__heading span {
        font-size: 18px;
    }

    .home-page .product-showcase {
        padding-top: 0;
    }

    .site-footer {
        padding-top: 40px;
    }

    .site-footer .foot-left .foot-top .left-cnt figure svg {
        width: 7.25rem;
        margin-bottom: 25px;
    }

    .site-footer .row {
        gap: 0;
    }

    .site-footer .foot-right .form-box form {
        width: 100%;
    }

    .site-footer .foot-right .form-box form {
        /* justify-content: center; */
        display: block;
    }

    .site-footer .foot-right .form-box form .form-field input,
    .site-footer .foot-right .form-box form .form-field.textarea textarea {
        width: 100%;
    }

    .site-footer .foot-right .form-box form .form-field.textarea textarea {
        height: 70px;
    }

    .above-footer {
        padding: 50px 0;
    }

    .academy-hero, .academy-hero__content {
        min-height: 13rem;
    }


    .academy-approach h2 {
        font-size: 25px;
    }

    .battery-network-works__content {
        padding-inline: 28px;
    }


    .battery-network-intro {
        padding-block: 2rem;
    }

    .battery-network-showcase {
        padding-block: 2rem;
    }

    .battery-network-intro h1 {
        font-size: 30px;
    }

    .battery-network-works__content h2 {
        font-size: 25px;
    }

    .battery-network-intro__subtitle {
        font-size: 20px;
    }

    .battery-network-hero {
        min-height: 18rem;
    }

    .contact-details__grid {
        grid-template-columns: 1fr;
    }

    .contact-details__grid {
        grid-template-columns: 1fr;
    }

    .contact-details__item:nth-child(1),
    .contact-details__item:nth-child(2),
    .contact-details__item:nth-child(3) {
        grid-column: auto;
        justify-self: center;
    }

    .contact-details__item {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .contact-form__heading {
        justify-content: center;
    }

    .contact-form__grid {
        grid-template-columns: 1fr;
    }

    .exterior-refined__content {
        justify-content: center;
    }

    .exterior-details .row {
        grid-template-columns: 1fr;
    }

    .exterior-details .col-md-4:nth-child(3) {
        width: 100%;
    }

    .interior-gallery__item--side {
        display: none;
    }

    .zip-colors__inner {
        width: 100%;
        max-width: 100%;
        padding-right: 0;
        padding-left: 0;
        margin: 0 auto;
        overflow: hidden;
    }

    .zip-colors__track {
        width: 100%;
    }

    .zip-colors__track .owl-stage-outer {
        width: 100%;
        overflow: hidden;
    }

    .zip-colors__slide {
        width: 100%;
        margin: 0 auto;
    }

    /* Override the 220%/translateX rule from the 47.998rem breakpoint */
    .zip-colors__image {
        width: 100% !important;
        max-width: 100% !important;
        transform: none !important;
        margin: 0 auto;
    }

    .zip-colors__controls {
        bottom: 1rem;
    }

    .zip-overview__content {
        padding-left: 10px;
    }

    .zip-overview__specs {
        padding: 0 0 1.125rem;
        margin: 0 0 1.125rem;
    }

    .parking-intro {
        padding-block: 2rem;
    }

    .specs-hero__content {
        align-items: flex-end;
        padding-bottom: 60px;
    }

    .specs-hero::after {
        top: auto;
        right: 0;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 70%;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.85) 40%, rgba(255, 255, 255, 0.97) 100%);
    }

    .technical-hero h1 span,
    .technical-hero h1 {
        font-size: 25px;
    }

    .manual-innovation,
    .manual-innovation__content {
        min-height: 10rem;
    }

    .community-page .container {
        min-height: 12rem;
    }

    .interior-hero__content h1 {
        font-size: 30px;
    }

    .interior-hero__content p {
        font-size: 18px;
        margin-top: 1.2rem;
    }

    .interior-cockpit__actions a {
        font-size: 14px;
    }

    .interior-cockpit__actions {
        left: 2.5rem;
    }
	
	.interior-gallery__item--side {
        display: none;
    }
	
	.manual-card {
		padding: 1.5rem;
	 min-height: auto;
	}
	
	.manual-card__content {
		        position: static;
        padding-top: 30px;
	}
	.manual-card__action {
    right: 25px;
    bottom: 25px;
}
	.manual-guide__grid {
		margin-top: 0 !important;
	}
	
	.manual-download {
		margin-top: 2.5rem;
	}
	
	.home-page .hero-section .container .banner-cnt {
		text-align: center;
	}
	
	.home-page .who-we-are {
		padding-top: 2rem !important;
	}
	
	.home-page .vision .row {
		gap: 0;
	}
	
	.home-page .vision .left .content p {
		text-align: center;
	}
	
	.vision .left .content p:nth-of-type(2) {
		margin-top: 20px;
		text-align: center;
	}
	
	.home-page .vision {
		padding-bottom: 25px !important;
	}
	
	.home-page .lifestyle {
		padding-top: 2rem;
		padding-bottom: 2rem;
	}
	
	.home-page .vision .left .content h3, .who-we-are .content h3, .lifestyle .content .right .det h3 {
		text-align: center;
		margin-bottom: 15px;
	}
	
	.home-page .who-we-are {
		padding-bottom: 2rem;
	}
	
	.home-page .lifestyle .content .left .det {
		display: flex;
		justify-content: center;
	}
	
	.home-page .lifestyle .content .right .det p {
		text-align: center;
	}
	
	.battery-swapping {
		padding-top: 2rem !important;
		padding-bottom: 2rem !important;
	}
	
	.battery-swapping__inner {
		gap: 2rem;
	}
	
	.battery-swapping__content {
		display: flex;
		flex-direction: column;
		align-items: center;
	}
	
	.battery-swapping__content p {
		text-align: center !important;
	}
	
	.home-page .features {
		padding: 2rem 0 !important;
	}
	
	#video .second-video {
		padding-top: 80px;
	}
	    .home-page .video-fixed {
        height: auto;
			        padding-top: 30px;
    }
	.second-video::after {
    display:none;
}
	.lazyblock-swapa-video-1aHtTO #video .product-showcase__heading {
    top: 0;
            margin-top: 40px;
}
	    #video .second-video {
        padding-top: 0;
    }
	    .home-page .video-fixed .video {
        height: 51vh;
    }
	    header .head-logo img {
        max-width: 150px;
    }
	.home-page .product-showcase {
		padding-top: 25px;
	}
	
	.home-page .product-showcase {
		padding-bottom: 0;
	}
	
	.who-we-are .content p.last {
		margin-bottom: 25px;
	}
	
	h1#interior-hero-title {
		text-align: center;
	}
	
	.interior-hero__content p {
		text-align: center;
	}
	
	.interior-intro {
		padding: 1.5rem 0;
	}
	
	.interior-intro h2 {
		margin-bottom: 1rem;
	}
	
	.interior-intro__copy p, .exterior-intro__copy p {
		margin-bottom: 1rem;
	}
	
	.interior-cockpit {
		padding: 1.5rem 0;
	}
	
	.interior-experience {
		padding-bottom: 0;
	}
	
	.product-showcase {
		padding-top: 1.5rem;
		padding-bottom: 50px;
	}
	
	#jtg-596 .modula-item .modula-item-content {
		width: 100%;
		height: auto;
	}
	
	.above-footer {
		padding-top: 25px;
	}
	
	.exterior-intro {
		padding: 2rem 0;
	}
	
	.exterior-intro h2, .exterior-details>.container>h2 {
		margin-bottom: 1rem;
	}
	
	.exterior-video, .exterior-specs {
		padding-top: 0;
		padding-bottom: 2rem;
	}
	
	.exterior-details {
		padding: 2rem 0;
	}
	
	.exterior-hero h1 {
		width: 100%;
		text-align: center;
		 font-size: 25px;
	}
	    .container {
        padding: 0 16px;
    }
	    .home-page .lifestyle .content .right .det h3 {
        font-size: 25px;
    }
	    .lifestyle .content .left .det {
        margin-bottom: 15px;
    }
	.battery-swapping__content h2
 {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
	    .battery-swapping__inner, .product-showcase__inner
 {
        padding: 0 16px;
    }
	    .home-page .features
 {
        padding: 0 0 !important;
    }
      .home-page .features {
        padding-top: 1.5rem;
    }
      .scroll-top-btn {
        right: 16px;
        bottom: 16px;
        width: 44px;
        height: 44px;
    }
	    .site-footer .row {
        padding: 0 1rem;
    }
	.product-showcase__heading {
    margin-bottom: 15px;
    text-align: center;
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: column;
}
.above-footer .container .det-outer .box-cnt a {
    padding: 15px;
}
	.interior-experience__summary h2 {
    font-size: 25px;
}
	.interior-experience__summary p {
    margin: 1rem 0 0;
}
	.interior-experience__details {
    padding: 20px;
    background: #fff;
}
	    .interior-intro h2 {
        font-size: 25px;
    }
	.exterior-details__card {
    height: auto;
}
	.exterior-electric {
    min-height: 24rem;
}
	.exterior-electric .container {
    justify-content: center;
}
	.modula-gallery.modula-gallery-initialized .modula-items .modula-item {
    width: 100% !important;
}
	.exterior-electric h2, .exterior-refined h2, .exterior-details__copy {
    text-align: center;
}
	    .exterior-refined__feature, .exterior-refined__stats {
        justify-content: center;
    }
	    .exterior-intro h2, .exterior-details>.container>h2 {
        text-align: center;
        font-size: 25px;
    }
	.technical-hero, .technical-hero__inner, .technical-hero__content {
    min-height: auto;
}
	    .technical-hero__content {
        text-align: center;
    }
	    .technical-feature__content {
        text-align: center;
    }
	.technical-feature__content h2, .technical-feature__content h2 span {
    font-size: 25px;
}
	.technical-feature__media--slider video {
    min-height: auto;
}
	.technical-feature__controls {
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 110px;
    text-align: center;
    gap: 10px;
}
	.manual-card__content h3 {
    font-size: 16px;
}
	    .manual-download__content {
        align-items: center;
        justify-content: center;
        text-align: center;
    }
	.user-manual-page .container {
    justify-content: center;
}
	    .community-hero {
        min-height: auto;
        padding: 50px 0;
    }
	    .community-page .container {
        min-height: auto;
    }
	.community-hero h1, .community-feature h2, .community-intro h2, .battery-network-intro h1, .battery-network-works__content h2 span, .battery-network-works__content h2 strong, .battery-network-intro h1 strong {
    font-size: 25px;
}
	.community-feature__controls {
    right: 0;
    justify-content: center;
}
	    .community-feature__content {
        text-align: center;
    }
	.community-showcase__media {
    padding-bottom: 40px;
}
	.community-showcase__media>img:first-child {
    aspect-ratio: initial;
}
	.battery-network-intro__content .left, .battery-network-intro__content .left p, .battery-network-works__content {
    text-align: center;
}
	    .battery-network-works__content {
        padding: 25px 15px;
        text-align: center;
    }
	.battery-network-intro__content .left p {
    text-align: center;
}
	.battery-network-intro p.battery-network-intro__subtitle {
    line-height: 20px;
}
	.battery-network-intro h2 {
    margin: 0;
}
	.battery-network-intro__content .left p, .parking-intro__card {
    text-align: center !important;
}
	.parking-hero, .parking-hero__content {
    min-height: 15rem;
}
	.parking-intro__heading {
    align-items: center;
    margin-bottom: 20px;
    flex-direction: column;
}
	.parking-intro__card {
    min-height: auto;
    padding: 25px 15px;
}
	    .academy-features__card {
        justify-content: center;
        align-items: center;
        text-align: center;
    }
	.academy-approach__content, .academy-program .row>[class*="col-"] {
    max-width: 100%;
    text-align: center;
}
	.academy-approach__content {
    max-width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
	.academy-approach__accent {
    float: left;
    width: auto;
    height: auto;
    margin: 10px 0 15px;
}
	.academy-approach__copy p {
    margin-bottom: 15px;
}
	.academy-learn__heading {
    flex-direction: column;
}
	.academy-learn__heading h2 {
    font-size: 25px;
}
	    .academy-program__intro {
        flex-direction: column;
        text-align: center;
    }
	.academy-program__intro h2::after, program__item  {
    width: 100%;
}
	.academy-program__grid {
    margin-top: 1rem;
}
	.academy-program__item h3::after {
    width: 100%;
}
	    .contact-hero, .contact-hero__content {
        min-height: 15rem;
    }
	.contact-form-section {
    padding: 50px 0;
}
	.contact-drive, .contact-drive__content {
    min-height: 300px;
}
	.contact-drive__content h2 {
    font-size: 25px;
}
	.contact-form__submit {
    text-align: center;
    flex-direction: column;
    display: flex;
}
	.manual-doc-card {
    justify-content: center;
    align-items: center;
    text-align: center;
}
	.manual-docs__heading h1 {
    font-size: 25px;
}
	.manual-docs {
    padding: 4rem 0;
}
	.contact-hero__content h1 {
    font-size: 25px;
}
	section.contact-hero.btn-pages, section.contact-hero.btn-pages .container.contact-hero__content {
    min-height: 300px;
}
	section.contact-hero.btn-pages .container.contact-hero__content {
    align-items: end;
    padding-bottom: 50px;
}
	.additional_cnt hr.wp-block-separator.has-alpha-channel-opacity {
    margin: 20px 0;
}
	.additional_cnt {
    padding-top: 0;
    text-align: center;
}
.additional_cnt ul li {
    padding-left: 0;
    border-bottom: 1px solid #eee;
    padding: 10px 0;
}
	.additional_cnt ul li:last-child{
		border:none;
		padding:0;
	}
	.additional_cnt ul li:before{
		display:none;
			
	}
	    .product-card__specs li {
        justify-content: center;
    }
	.product-card h2 {
    text-align: center;
		    padding-bottom: 15px;
}
}

@media(max-width: 425px) {
    .home-page .hero-section .container .banner-cnt h1 {
        font-size: 25px;
    }

    .product-card__specs {
        padding: 1.5rem 0;
    }

    .home-page .who-we-are {
        padding-bottom: 1.5rem;
    }

    .site-footer .foot-left .foot-btm .list .det p,
    .site-footer .foot-left .foot-btm .list .det p a,
    .site-footer .copyright .copyright-left p {
        font-size: 14px;
    }

   .battery-network-intro img {
        width: 100%;
    }

    .exterior-hero__content {
        padding-top: 60px;
    }

    .interior-cockpit__actions {
        left: 1rem;
        gap: 1.5rem;
    }
    .home-page .features .feature-outer .single .des h6 span {
        font-size: 1.75rem;
    }

    .home-page .features .feature-outer .single .des h6 {
        font-size: 1rem;
    }

    .home-page .features .feature-outer .single .des p {
        font-size: 0.875rem;
    }

       .home-page .features .feature-outer .single .des, .home-page .features .feature-outer .single .box.right .des {
        left: 0;
        bottom: 1rem;
        right: 0;
        text-align: center;
    }
	.site-footer .copyright .copyright-right ul {
    flex-direction: column;
    gap: 0;
}
	.site-footer .copyright .copyright-right ul li:after{
		display:none;
	}
	    .home-page .product-showcase {
        padding-bottom: 20px;
    }
}

.battery-network-hero {
    min-height: auto;
}
.battery-network-hero__image {
    position: static;
}
header .head-right .language-switcher, .manual-card__action {
    display: none;
}
section.community-hero.hero-video {
    position: relative;
    background: transparent;
    min-height: auto;
}
section.community-hero.hero-video:after {
    display:none;
}
section.community-hero.hero-video video {
    width:100%;
}
section.community-hero.hero-video .container.community-hero__content {
    position: absolute;
    right: 0;
    top: 0;
}
.container.manual-docs__inner {
    margin: 0;
}

.foogallery.fg-light.fg-shadow-outline .fg-item-inner
 {
    box-shadow: 0 0 0 1px #dddddd2b;
}
@media (max-width: 1199.98px) {
    .home-page .who-we-are {
        padding-bottom: 0rem;
    }
}
@media (max-width: 1199px) {
    .product-showcase {
        padding-bottom: 50px;
    }
}
@media(max-width:991px){
section.community-hero.hero-video .container.community-hero__content {
    position: absolute;
    right: 0;
    top: 0;
    left: 0;
    justify-content: center;
}
section.community-hero.hero-video .container.community-hero__content h1 {
    text-align: center;
}
}
@media(max-width:991px){
section.community-hero.hero-video {
    padding: 0;
}
	.specs-hero__content #specs-hero-title {
    font-size: 30px;
    max-width: 100%;
}
	.specs-hero h1 span {
    font-size: 18px;
}
	.specifications-page .container {
    justify-content: center;
    text-align: center;
    padding-bottom: 30px;
}
	.specs-table__row {
    text-align: left;
}
}
@media(max-width:767px){
.specs-table__row.specs-table__row--empty {
    display: none;
}
.site-footer .copyright .copyright-right ul
 {
    padding: 0;
}
}
