/*
  MAZDA 2025 Base Styles (BEM)
*/

/*@font-face {
	font-family: "MazdaType";
	src: url("../font/mazdatypeviet-regular.woff") format("woff");
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "MazdaType";
	src: url("../font/mazdatypeviet-medium.woff") format("woff");
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "MazdaType";
	src: url("../font/mazdatypeviet-bold.woff") format("woff");
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}*/

/* CSS Variables */
:root {
    --color-bg: #041429;
    --color-text-white: #ffffff;
    --color-text-black: #0a0a0a;
    --color-gray: #999999;
    --space-1: 4px;
    --space-2: 8px;
    --space-3: 12px;
    --space-4: 16px;
    --space-5: 20px;
    --space-6: 24px;
    --space-7: 32px;
    --space-8: 40px;
    --space-9: 48px;
    --space-10: 64px;
    --space-11: 80px;
    --space-12: 96px;
    --radius-2: 8px;
    --radius-3: 12px;
    --container: 1440px;
    /* Font size, line height */
    --fs-48: 48px; /* 48px (120%) */
    --lh-48-120: 120%;
    --fs-32: 32px; /* 32px (140%) */
    --lh-32-140: 140%;
    --fs-24: 24px; /* 24px (140%) */
    --lh-24-140: 140%;
    --fs-20: 20px; /* 20px (30px) */
    --lh-20-30: 30px;
    --fs-18: 18px; /* 18px (26px) */
    --lh-18-26: 26px;
    --fs-16: 16px; /* 16px (26px) */
    --lh-16-26: 26px;
    --fs-14: 14px; /* 14px (100% / 22px) */
    --lh-14-100: 100%;
    --lh-14-22: 22px;
    --fs-12: 12px; /* 12px */
    --lh-12-18: 18px;
    /* Font weight */
    --fw-regular: 400;
    --fw-medium: 500;



    --fw-semibold: 600;
    --fw-bold: 700;
}

/* Layout */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}

html,
body {
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
    background: #fff !important;
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--space-6);
    width: 100%;
    box-sizing: border-box;
}

/* Banner */
.banner {
    position: relative;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: transparent;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

    .header.header--scrolled {
        background-color: #fff !important;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

.header-global__inner-wrapper.header--scrolled {
    background-color: #fff !important;
    /*box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);*/
}

.header-global__inner-wrapper:hover {
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.header.header--menu-active {
    background-color: #fff !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

    .header.header--menu-active .header-global__inner-wrapper,
    .header.header--menu-active {
        background-color: #fff !important;
    }

        .header.header--menu-active .header__link,
        .header.header--menu-active .header__search {
            color: var(--color-text-black);
        }

            .header.header--menu-active .header__link::after {
                background: var(--color-text-black);
            }

        .header.header--menu-active .header__logo-img--desktop {
            filter: brightness(0);
            width: 35px;
            height: 35px;
        }


.header.header--scrolled .header__link {
    color: var(--color-text-black);
}

.header:hover .header__link {
    color: var(--color-text-black);
}

.header.header--scrolled .header__link::after {
    background: var(--color-text-black);
}

.header:hover .header__link::after {
    background: var(--color-text-black);
}

.header.header--scrolled .header__search {
    color: var(--color-text-black);
}

.header:hover .header__search {
    color: var(--color-text-black);
}

.header.header--scrolled .header__logo-img--desktop {
    filter: brightness(0);
    width: 35px;
    height: 35px;
}


@media (hover: hover) and (pointer: fine) {

    .header:hover {
        background-color: #fff;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

        .header:hover .header__link {
            color: var(--color-text-black);
        }

            .header:hover .header__link::after {
                background: var(--color-text-black);
            }

        .header:hover .header__search {
            color: var(--color-text-black);
        }

        .header:hover .header__logo-img--desktop {
            filter: brightness(0);
        }
}


.header,
.header__logo,
.header__link,
.header__search {
    cursor: pointer;
}

    .header:hover .header__logo-img--desktop {
        filter: brightness(0);
    }

.header__bar {
    height: 80px;
    display: grid;
    grid-template-columns: auto auto auto;
    align-items: center;
    color: var(--color-text-white);
    position: relative;
}

.header__menu-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: var(--space-2);
    z-index: 1001;
    justify-self: start;
    grid-column: 1;
    color: var(--color-text-white);
    transition: color 0.3s ease;
}

.header__menu-icon {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 24px;
    height: 18px;
}

    .header__menu-icon span {
        display: block;
        width: 100%;
        height: 2px;
        background: currentColor;
        transition: all 0.3s ease;
    }

.header__menu-toggle[aria-expanded="true"]
.header__menu-icon
span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.header__menu-toggle[aria-expanded="true"]
.header__menu-icon
span:nth-child(2) {
    opacity: 0;
}

.header__menu-toggle[aria-expanded="true"]
.header__menu-icon
span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.header.header--scrolled .header__menu-toggle,
.header.header--menu-active .header__menu-toggle {
    color: var(--color-text-black);
}

.header__group {
    display: flex;
    align-items: center;
    gap: var(--space-4);
}

.header__group--left {
    justify-self: start;
}

.header__group--right {
    justify-self: end;
    gap: var(--space-5);
}

.header__logo {
    display: flex;
    align-items: center;
    justify-content: center;
    justify-self: center;
}

.header__logo-img {
    display: block;
    transition: filter 0.3s ease, width 0.3s ease, height 0.3s ease;
}

.header__logo-img--desktop {
    width: 70px;
    height: 65px;
}

.header__logo-text {
    display: none;
    font-size: 24px;
    font-weight: var(--fw-bold);
    letter-spacing: 4px;
    color: var(--color-text-white);
    text-decoration: none;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.header.header--scrolled .header__logo-text {
    color: var(--color-text-black);
}

.header.header--menu-active .header__logo-text {
    color: var(--color-text-black);
}

.header__nav {
    display: flex;
    align-items: center;
    gap: 24px;
}

.header__nav--right {
    display: flex;
    gap: 24px;
}

.header__link {
    color: var(--color-text-white);
    text-decoration: none;
    font-size: var(--fs-16);
    line-height: var(--lh-14-22);
    position: relative;
    font-weight: var(--fw-semibold);
    transition: color 0.3s ease;
}

    .header__link::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -6px;
        width: 0;
        height: 2px;
        background: var(--color-text-white);
        transition: width 0.25s ease;
    }

    .header__link:hover::after {
        width: 100%;
    }

.header__search {
    /*display: inline-flex;*/
    display: none;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    border-radius: 50%;
    color: var(--color-text-white);
    cursor: pointer;
    transition: color 0.3s ease, background 0.3s ease;
}

    .header__search svg {
        width: 18px;
        height: 18px;
    }

    .header__search:hover {
        background: rgba(255, 255, 255, 0.1);
    }

.header__mobile-menu {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 997;
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    opacity: 0;
    pointer-events: none;
}

    .header__mobile-menu[aria-hidden="false"] {
        transform: translateX(0);
        opacity: 1;
        pointer-events: auto;
    }

.header__mobile-menu-inner {
    padding: var(--space-8) var(--space-4);
}

.header__mobile-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.header__mobile-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header__mobile-link {
    color: var(--color-text-white);
    text-decoration: none;
    font-size: var(--fs-18);
    font-weight: var(--fw-semibold);
    padding: var(--space-4) 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-2);
    width: 100%;
    background: none;
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    transition: opacity 0.3s ease;
}

    .header__mobile-link:hover {
        opacity: 0.7;
    }

.header__mobile-link--toggle {
    cursor: pointer;
}

.header__mobile-toggle-icon {
    position: relative;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

    .header__mobile-toggle-icon::before,
    .header__mobile-toggle-icon::after {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        width: 14px;
        height: 2px;
        background: currentColor;
        transform: translate(-50%, -50%);
        transition: transform 0.3s ease, opacity 0.3s ease;
    }

    .header__mobile-toggle-icon::after {
        transform: translate(-50%, -50%) rotate(90deg);
    }

.header__mobile-item--open .header__mobile-toggle-icon::after {
    opacity: 0;
}

.header__mobile-submenu {
    list-style: none;
    margin: 0;
    padding: 0 0 var(--space-4) var(--space-4);
    display: none;
    flex-direction: column;
    gap: var(--space-3);
}

    .header__mobile-submenu[data-open="true"] {
        display: flex;
    }

.header__mobile-sublink {
    color: var(--color-text-white);
    text-decoration: none;
    font-size: var(--fs-16);
    font-weight: var(--fw-regular);
    text-transform: uppercase;
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

    .header__mobile-sublink:hover {
        opacity: 1;
    }

.header__mobile-item--open .header__mobile-link {
    opacity: 1;
}

.banner {
    position: sticky;
    top: 0;
    z-index: 1;
    /*min-height: 100vh;*/
    /*height: 600px;*/
    width: 100%;
    height: calc(100vw / 3.2);
    overflow: hidden;
    background: #000;
    isolation: isolate;
}

    .banner::after {
        content: "";
        position: absolute;
        inset: 0;
        opacity: 0;
        transition: opacity 0.35s ease;
        z-index: 2;
        pointer-events: none;
    }

    .banner[data-covered="true"]::after {
        opacity: 1;
    }

.banner__slider {
    width: 100%;
    height: 100%;
}

.banner__inner {
    position: relative;
    /*min-height: 100vh;*/
     /*height: 600px;*/
      height: calc(100vw / 3.2);
    overflow: hidden;
}


.banner__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    /*object-fit: cover;*/
}

.banner__overlay {
    position: absolute;
    inset: 0;
    /*background: linear-gradient( 90deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.25) 55%, rgba(0, 0, 0, 0.65) 100% ), linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.65) 80%);*/
    z-index: 1;
}

.banner__content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-12) var(--space-6);
    color: var(--color-text-white);
    text-align: center;
}


.banner__content-inner {
    max-width: 760px;
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    align-items: center;
}

.banner__kicker {
    margin: 0;
    font-size: var(--fs-16);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: var(--fw-semibold);
    color: rgba(255, 255, 255, 0.8);
}

.banner__kicker {
    margin: 0;
    font-size: var(--fs-16);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: var(--fw-semibold);
    color: rgba(255, 255, 255, 0.8);
}


.banner__title {
    margin: 0;
    font-size: var(--fs-48);
    line-height: var(--lh-48-120);
    font-weight: var(--fw-semibold);
}



.banner__subtitle {
    margin: 0;
    font-size: var(--fs-18);
    line-height: var(--lh-18-26);
    max-width: 540px;
    color: rgba(255, 255, 255, 0.9);
}

.banner__nav {
    position: absolute;
    top: 50%;
    width: 56px;
    height: 56px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(4, 20, 41, 0.4);
    color: var(--color-text-white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    cursor: pointer;
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

    .banner__nav::before {
        content: "";
        width: 14px;
        height: 14px;
        border-top: 2px solid currentColor;
        border-right: 2px solid currentColor;
        transform: rotate(45deg);
    }

.banner__nav--prev {
    left: var(--space-7);
    transform: translateY(-50%);
}

    .banner__nav--prev::before {
        transform: rotate(-135deg);
    }

.banner__nav--next {
    right: var(--space-4);
    transform: translateY(-50%);
}

.banner__nav:hover {
    background: rgba(4, 20, 41, 0.75);
    border-color: rgba(255, 255, 255, 0.7);
    transform: translateY(-50%) scale(1.05);
}

.banner__pagination {
    position: absolute;
    bottom: var(--space-6);
    left: 50%;
    z-index: 5;
}

    .banner__pagination .swiper-pagination-bullet {
        width: 12px;
        height: 12px;
        background: rgba(255, 255, 255, 0.4);
        opacity: 1;
        margin: 0 var(--space-1) !important;
        transition: width 0.3s ease, background 0.3s ease;
    }

    .banner__pagination .swiper-pagination-bullet-active {
        width: 36px;
        border-radius: 999px;
        background: #fff;
    }

/* Quick action */
/*.banner__quick {
    position: absolute;
    left: 0;
    right: 0;
    bottom: var(--space-6);
    display: flex;
    justify-content: center;
    padding: 0 var(--space-6);
}

.banner__quick-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-1);
    width: 100%;
}

.banner__quick-item {
    display: grid;
    place-items: center;
    gap: var(--space-4);
    min-height: 145px;
    background: rgba(69, 92, 112, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--color-text-white);
    text-align: center;
    padding: var(--space-5) 0;
}

    .banner__quick-item + .banner__quick-item {
        border-left: 0;
    }

.banner__quick-icon {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.banner__quick-text {
    font-size: var(--fs-14);
    line-height: var(--lh-14-22);
    letter-spacing: 0.02em;
}
*/

/* Banner CTA Button */
.banner__cta-wrapper {
    position: absolute;
    bottom: var(--space-10);
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner__cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-4) var(--space-9);
    background: rgba(255, 255, 255, 0.95);
    color: var(--color-text-black);
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 2.6px;
    text-transform: uppercase;
    font-weight: var(--fw-semibold);
    border-radius: 3px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
}

    .banner__cta-button:hover {
        background: #ffffff;
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    }

    .banner__cta-button:active {
        transform: translateY(0);
    }

/* Quick actions */
.quick-actions {
    position: relative;
    margin-top: 0;
    padding: var(--space-11) var(--space-6) var(--space-12);
    z-index: 5;
    background: #fff;
    transition: margin-top 0.3s ease, padding-top 0.3s ease, background 0.3s ease;
}


.quick-actions__panel {
    position: relative;
    width: min(var(--container), calc(100% - 32px));
    margin: 0 auto;
    padding: var(--space-6);
    border-radius: 36px;
    /*border: 1px solid rgba(10, 10, 10, 0.08);*/
    /*box-shadow: 0 30px 80px rgba(4, 20, 41, 0.15);*/
    background: rgba(255, 255, 255, 0.98);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 2;
}

.quick-actions__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 36px;
}

.quick-actions__item {
    display: grid;
    place-items: center;
    gap: var(--space-4);
    min-height: 145px;
    background: #f5f5f5;
    border: 1px solid rgba(4, 20, 41, 0.08);
    color: var(--color-text-black);
    text-align: center;
    padding: var(--space-5) 0;
    text-decoration: none;
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

    .quick-actions__item:hover {
        background: #040404;
        border-color: #040404;
        color: #fff;
        transform: translateY(-4px);
    }

.quick-actions__icon {
    width: 48px;
    height: 48px;
    filter: brightness(0);
    object-fit: contain;
    transition: filter 0.3s ease, opacity 0.3s ease;
}

.quick-actions__item:hover .quick-actions__icon {
    filter: brightness(0) invert(1);
}

.quick-actions__text {
    font-size: var(--fs-14);
    line-height: var(--lh-14-22);
    letter-spacing: 0.02em;
    font-weight: var(--fw-semibold);
    transition: color 0.3s ease;
}

.quick-actions__item:hover .quick-actions__text {
    color: #fff;
}

@media (max-width: 1024px) {
    .quick-actions {
        margin-top: 0;
        padding: var(--space-11) var(--space-4) var(--space-10);
    }

    .quick-actions__panel {
        width: calc(100% - 32px);
    }

    .quick-actions__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .quick-actions {
        padding: var(--space-8) var(--space-4) var(--space-8);
    }

    .quick-actions__grid {
        grid-template-columns: 1fr;
    }
}


/* Scroll Indicator */
.banner__scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 90%;
    transform: translateX(-50%);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-white);
    cursor: pointer;
    opacity: 1;
    transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), background 0.3s ease;
    z-index: 5;
    pointer-events: auto;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    backdrop-filter: blur(10px);
}


    .banner__scroll-indicator[data-visible="false"] {
        opacity: 0;
        transform: translateX(-50%) translateY(-10px);
        pointer-events: none;
    }

    .banner__scroll-indicator svg {
        width: 100%;
        height: 100%;
    }

        .banner__scroll-indicator svg path {
            animation: scrollSlideDown 2s ease-in-out infinite;
            transform-origin: center;
        }

@keyframes scrollSlideDown {
  0% {
    opacity: 0;
    transform: translateY(-8px); 
  }
  25% {
    opacity: 1;
    transform: translateY(0);   
  }
  75% {
    opacity: 1;
    transform: translateY(0);     
  }
  100% {
    opacity: 0;
    transform: translateY(8px); 
  }
}

.banner__scroll-indicator:hover {
    opacity: 1;
    transform: translateX(-50%) scale(1.15);
    background: rgba(255, 255, 255, 0.2);
}

.banner__scroll-indicator:active {
    transform: translateX(-50%) scale(0.95);
}

.banner__scroll-indicator--clicked {
    animation: scrollIndicatorClick 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes scrollIndicatorClick {
    0% {
        transform: translateX(-50%) scale(1);
        background: rgba(255, 255, 255, 0.1);
    }

    50% {
        transform: translateX(-50%) scale(0.85);
        background: rgba(255, 255, 255, 0.3);
    }

    100% {
        transform: translateX(-50%) scale(1);
        background: rgba(255, 255, 255, 0.1);
    }
}
/* Mirai Base */
.mirai {
    background: #fff;
}

.mirai__inner {
    display: flex;
    flex-direction: column;
    gap: var(--space-8);
    padding: var(--space-12) 0;
}

.mirai__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: var(--space-6);
    padding: 0 20px;
}

.mirai__titles {
    max-width: 680px;
}

.mirai__title {
    font-size: var(--fs-32);
    line-height: var(--lh-32-140);
    font-weight: var(--fw-medium);
    color: var(--color-text-black);
    margin: 0 0 var(--space-2);
}

.mirai__subtitle {
    margin: 0;
    font-size: var(--fs-16);
    line-height: var(--lh-16-26);
    color: var(--color-gray);
    font-weight: var(--fw-regular);
}

.mirai__header-actions {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    flex-shrink: 0;
}

.mirai__controls {
    display: flex;
    justify-content: center;
    margin-top: var(--space-6);
}

.mirai__cta {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: 10px 20px;
    border-radius: 999px;
    border: 1px solid var(--color-text-black);
    color: var(--color-text-black);
    font-size: var(--fs-14);
    line-height: var(--lh-16-26);
    font-weight: var(--fw-medium);
    text-decoration: none;
    transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    white-space: nowrap;
}

    .mirai__cta:hover {
        background: var(--color-text-black);
        color: var(--color-text-white);
    }

.mirai__cta-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    color: var(--color-text-black);
    transition: background 0.3s ease;
}

.mirai__cta:hover .mirai__cta-icon {
    background: transparent;
    color: currentColor;
}

.mirai__swiper-wrapper {
    position: relative;
    overflow: hidden;
}

.mirai__swiper {
    overflow: hidden;
}

.mirai__slide {
    height: auto;
}

.mirai__card {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    width: 100%;
    max-width: 417px;
    height: 440px;
    margin: 0 auto;
}

.mirai__image-link {
    display: block;
    overflow: hidden;
    width: 100%;
    max-width: 417px;
    margin: 0 auto;
}

.mirai__image {
    width: 100%;
    height: 320px;
    max-width: 417px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.mirai__image-link:hover .mirai__image {
    transform: scale(1.05);
}

.mirai__card-title {
    margin: 0;
    font-size: var(--fs-24);
    line-height: var(--lh-18-26);
    color: var(--color-text-black);
    font-weight: var(--fw-medium);
    min-height: 104px;
}

.mirai__navigation {
    display: flex;
    gap: var(--space-2);
    justify-content: center;
    position: relative;
    z-index: 10;
}

.mirai__nav-btn {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #e0e0e0;
    border-radius: 50%;
    color: var(--color-text-black);
    cursor: pointer;
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    visibility: visible !important;
    opacity: 1 !important;
}

    .mirai__nav-btn:hover {
        background: #0a0a0a;
        color: var(--color-text-white);
        border-color: #0a0a0a;
        transform: scale(1.1);
    }

.mirai__nav-btn--disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.mirai__nav-btn svg {
    width: 20px;
    height: 20px;
}

/* Showroom */
.showroom {
    position: relative;
    color: var(--color-text-black);
}

.showroom__inner {
    position: relative;
    /* height: 900px; */
}

.showroom__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.showroom__overlay {
    position: absolute;
    inset: 0;
}

.showroom__header {
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    max-width: 600px;
}

.showroom__title {
    font-size: var(--fs-32);
    line-height: var(--lh-32-140);
    font-weight: var(--fw-medium);
    margin-bottom: var(--space-4);
}

.showroom__subtitle {
    font-size: var(--fs-18);
    line-height: var(--lh-16-26);
    font-weight: var(--fw-regular);
}

.showroom__cta {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 60px;
}

.showroom__btn {
    display: inline-flex;
    padding: 11px 16px;
    background: #00142a;
    color: #fff;
    text-decoration: none;
    font-size: var(--fs-18);
    border-radius: 999px;
    gap: var(--space-2);
    transition: all 0.3s ease;
    align-items: center;
}

    .showroom__btn + span {
        margin-left: 8px;
    }

.showroom__cta-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    color: var(--color-text-white);
    transition: background 0.3s ease;
}

.showroom__btn:hover {
    background: rgba(79, 91, 105, 1);
}

/* Car Lineup */
.carlineup {
    background: rgba(0, 20, 42, 1);
    overflow-x: hidden;
    width: 100%;
}

.carlineup__inner {
    padding: var(--space-12) var(--space-6);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.carlineup__title {
    font-size: var(--fs-32);
    line-height: var(--lh-32-140);
    font-weight: var(--fw-medium);
    color: var(--color-text-white);
    text-align: center;
    margin: 64px 0 56px;
}

.carlineup__filters {
    display: flex;
    justify-content: center;
    gap: var(--space-8);
    margin: 0 0 var(--space-6);
    padding: 0 0 var(--space-4);
    list-style: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

    .carlineup__filters li {
        margin: 0;
        padding: 0;
    }

.carlineup__filter {
    display: block;
    background: none;
    border: none;
    font-size: var(--fs-16);
    font-weight: var(--fw-semibold);
    color: var(--color-text-white);
    text-decoration: none;
    cursor: pointer;
    padding: var(--space-2) 0;
    position: relative;
    transition: all 0.3s ease;
    font-family: inherit;
}

    .carlineup__filter::after {
        content: "";
        position: absolute;
        bottom: -4px;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--color-text-white);
        transition: width 0.3s ease;
    }

    .carlineup__filter[data-active="true"]::after {
        width: 100%;
    }

    .carlineup__filter:hover {
        opacity: 0.7;
    }

.carlineup__swiper-wrapper {
    position: relative;
    overflow: hidden;
    margin-left: calc(-1 * var(--space-6));
    margin-right: calc(-1 * var(--space-6));
    padding-left: var(--space-6);
    padding-right: var(--space-6);
    width: calc(100% + 2 * var(--space-6));
    max-width: 100vw;
    box-sizing: border-box;
}

.carlineup__swiper {
    overflow: hidden;
    padding-bottom: var(--space-6);
    padding-left: 0;
    padding-right: 0;
    width: 100%;
    margin: 0;
}

    .carlineup__swiper .swiper-wrapper {
        margin-right: 0 !important;
        padding-right: 0 !important;
        display: flex;
        align-items: stretch;
    }

        .carlineup__swiper .swiper-wrapper::after {
            display: none !important;
            content: none !important;
        }

        .carlineup__swiper .swiper-wrapper::before {
            display: none !important;
            content: none !important;
        }

/* .carlineup__swiper .swiper-slide {
  height: auto;
  flex-shrink: 0;
  box-sizing: border-box;
} */

.carlineup__slide {
    height: auto;
    width: 100%;
    max-width: 420px;
    flex-shrink: 0;
    box-sizing: border-box;
}

.carlineup__card {
    position: relative;
    overflow: hidden;
}

.carlineup__image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 135.78%;
    overflow: hidden;
    background: #f5f5f5;
}

.carlineup__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.4s ease;
}

.carlineup__image--hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.carlineup__card:hover .carlineup__image--default {
    opacity: 0;
}

.carlineup__card:hover .carlineup__image--hover {
    opacity: 1;
}

.carlineup__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: var(--space-6) var(--space-5);
    z-index: 10;
    pointer-events: none;
    box-sizing: border-box;
}

.carlineup__overlay-top {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.carlineup__subtitle-overlay {
    font-size: var(--fs-16);
    line-height: var(--lh-14-22);
    color: var(--color-text-white);
    margin-top: 6px;
    font-weight: var(--fw-regular);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.carlineup__name-overlay {
    font-size: var(--fs-20);
    line-height: var(--lh-24-140);
    font-weight: var(--fw-semibold);
    color: var(--color-text-white);
    margin: 0;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.carlineup__overlay-bottom {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    align-self: flex-end;
}

.carlineup__divider {
    width: 100%;
    height: 1px;
    background: var(--color-text-white);
    opacity: 1;
    margin-bottom: var(--space-2);
}

.carlineup__actions-overlay {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: var(--space-4);
    flex-wrap: wrap;
    position: relative;
    z-index: 11;
}

.carlineup__link-overlay {
    color: var(--color-text-white) !important;
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-thickness: 1px;
    font-size: var(--fs-14);
    line-height: var(--lh-14-22);
    font-weight: var(--fw-medium);
    pointer-events: auto;
    cursor: pointer;
    transition: opacity 0.3s ease;
    white-space: nowrap;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    display: inline-block;
    visibility: visible;
    opacity: 1;
}

    .carlineup__link-overlay:hover {
        opacity: 0.8;
    }

.carlineup__navigation {
    display: flex;
    justify-content: flex-end;
    gap: var(--space-2);
    margin-top: var(--space-6);
}

.carlineup__nav-btn {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 1);
    border: none;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border-radius: 1px;
}

.carlineup__empty {
    color: var(--color-text-white);
    margin: 0 auto;
}

.carlineup__nav-btn svg {
    width: 16px;
    height: 16px;
    color: rgba(0, 20, 42, 1);
}

/* Local */
.local {
    background: #fff;
}

.local__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    padding: var(--space-12) 0;
}

.local__content {
    max-width: 383px;
}

.local__title {
    font-size: var(--fs-24);
    line-height: var(--lh-24-140);
    font-weight: var(--fw-medium);
    margin: 0 0 var(--space-4);
}

.local__text {
    font-size: var(--fs-16);
    line-height: var(--lh-16-26);
    margin-bottom: var(--space-6);
}

.local__link {
    display: inline-block;
    font-size: var(--fs-16);
    line-height: var(--lh-14-22);
    color: var(--color-text-black);
    text-decoration: none;
    border-bottom: 1px solid var(--color-text-black);
    padding-bottom: 2px;
    font-weight: var(--fw-medium);
}

.local__image {
    width: 100%;
    max-width: 585px;
    height: auto;
    display: block;
}

/* Special Offers */
.offers {
    background: #fff;
    margin: 64px 0 56px;
}

.offers__inner {
    display: flex;
    flex-direction: column;
}

.offers__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 var(--space-6);
    margin-bottom: var(--space-4);
}

.offers__title {
    font-size: var(--fs-32);
    line-height: var(--lh-32-140);
    font-weight: var(--fw-medium);
    color: var(--color-text-black);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.offers__pagination {
    display: flex;
    align-items: center;
    gap: 2px;
    font-size: var(--fs-24);
    font-weight: var(--fw-medium);
    color: var(--color-text-black);
}

.offers__pagination-separator {
    margin: 0 4px;
}

.offers__swiper-wrapper {
    position: relative;
    width: 100%;
    padding: 0 var(--space-6);
}

.offers__swiper {
    overflow: hidden;
    width: 100%;
}

.offers__slide {
    width: 100%;
    height: auto;
}

.offers__card {
    overflow: hidden;
    background: #fff;
    width: 100%;
}

.offers__banner {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.offers__banner-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.offers__banner-image {
    width: 100%;
    /*height: 600px;*/
    /*object-fit: cover;*/
    object-position: center;
    display: block;
}

.offers__actions {
    margin-top: 40px;
    background: #fff;
}

.offers__actions-text {
    font-size: var(--fs-24);
    line-height: var(--lh-24-140);
    color: var(--color-text-black);
    margin-bottom: 40px;
    font-weight: var(--fw-semibold);
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.offers__buttons {
    display: flex;
    gap: var(--space-4);
    justify-content: flex-start;
    flex-wrap: wrap;
    align-items: center;
}

.offers__btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 999px;
    text-decoration: none;
    font-size: var(--fs-16);
    line-height: var(--lh-16-26);
    font-weight: var(--fw-medium);
    transition: all 0.3s ease;
    white-space: nowrap;
    text-align: center;
    min-width: 200px;
}

.offers__btn--primary {
    background: #0a0a0a;
    color: var(--color-text-white);
    border: none;
}

    .offers__btn--primary:hover {
        background: #1a1a1a;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    }

.offers__btn--secondary {
    background: #fff;
    color: var(--color-text-black);
    border: 1px solid var(--color-text-black);
}

    .offers__btn--secondary:hover {
        background: #f5f5f5;
        border-color: var(--color-text-black);
    }

.offers__navigation {
    display: flex;
    justify-content: center;
    gap: var(--space-2);
    margin-right: var(--space-6);
}

.offers__nav-btn {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #e0e0e0;
    border-radius: 50%;
    color: var(--color-text-black);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

    .offers__nav-btn:hover {
        background: #0a0a0a;
        color: var(--color-text-white);
        border-color: #0a0a0a;
        transform: scale(1.1);
    }

.offers__nav-btn--disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.offers__nav-btn svg {
    width: 20px;
    height: 20px;
}

/* Ownership Header */
.ownership-header {
    background: #fff;
}

.ownership-header__inner {
    padding: var(--space-12) var(--space-6);
    max-width: 1200px;
    margin: 0 auto;
}

.ownership-header__title {
    font-size: var(--fs-32);
    line-height: var(--lh-32-140);
    font-weight: var(--fw-medium);
    color: var(--color-text-black);
    margin-bottom: 16px;
}

.ownership-header__text {
    font-size: var(--fs-16);
    line-height: var(--lh-16-26);
    color: var(--color-text-black);
    margin: 0;
    font-weight: var(--fw-regular);
    max-width: 757px;
}

/* Ownership Content */

.ownership-content__inner {
    width: 100%;
    max-width: none;
    padding: 0;
    margin: 0;
}

.ownership-content__blocks {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    width: 100%;
}

.ownership-content__block {
    background: #fff;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.ownership-content.container {
    max-width: calc(2 * 744px + 12px + var(--space-6) * 2);
}

.ownership-content__image-block {
    width: 100%;
    height: 500px;
    overflow: hidden;
    flex-shrink: 0;
}

.ownership-content__image {
    width: 100%;
    height: 420px;
    display: block;
    object-fit: cover;
    object-position: top;
    transition: transform 0.5s ease;
}

.ownership-content__block:hover .ownership-content__image {
    transform: scale(1.05);
}

.ownership-content__text-block {
    padding: 35px 60px;
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    flex: 1;
}

.ownership-content__cta-title {
    font-size: var(--fs-24);
    line-height: var(--lh-24-140);
    font-weight: var(--fw-semibold);
    color: var(--color-text-black);
    margin: 0;
}

.ownership-content__cta-text {
    font-size: var(--fs-16);
    line-height: var(--lh-16-26);
    color: var(--color-text-black);
    margin: 0;
    font-weight: var(--fw-regular);
    flex: 1;
}

.ownership-content__cta-link {
    display: inline-block;
    padding: 14px 32px;
    border: 1px solid var(--color-text-black);
    border-radius: 999px;
    font-size: var(--fs-16);
    line-height: var(--lh-16-26);
    color: var(--color-text-black);
    background: #fff;
    text-decoration: none;
    font-weight: var(--fw-semibold);
    margin-top: var(--space-4);
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    align-self: flex-start;
    width: auto;
}

    .ownership-content__cta-link:hover {
        background: #f5f5f5;
        border-color: var(--color-text-black);
    }

/* Footer */
.footer {
    background: #4a5662;
    color: var(--color-text-white);
}

.footer__inner {
    padding: 80px 100px 48px 100px;
}

.footer__layout {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 160px;
}

.footer__about {
    flex: 1.4;
    max-width: 368px;
}

.footer__links {
    flex: 1.6;
}

.footer__links-grid {
    display: flex;
    gap: var(--space-8);
}

    .footer__links-grid .footer__col {
        flex: 0 0 240px;
        width: 240px;
    }

.footer__heading {
    font-size: var(--fs-16);
    line-height: var(--lh-16-26);
    font-weight: var(--fw-bold);
    margin: 0 0 var(--space-3);
}

.footer__heading--spaced {
    margin-top: var(--space-6);
}

.footer__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer__list--text li {
    font-size: var(--fs-14);
    line-height: var(--lh-16-26);
    opacity: 0.9;
    display: flex;
    align-items: center;
    gap: 8px;
}

    .footer__list--text li img {
        width: 18px;
        height: 18px;
    }

.footer__list--text .footer__bct img {
    width: 150px !important;
    height: 94px !important;
}

.footer__list--text li img[src*="phone-solid-full"],
.footer__list--text li img[src*="envelope-solid-full"] {
    filter: brightness(0) saturate(100%) invert(60%);
    opacity: 1;
}

.footer__social {
    display: flex;
    float: left;
    gap: var(--space-4);
    margin-top: var(--space-6);
    align-items: center;
}

.footer__social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: transform 0.3s ease, opacity 0.3s ease;
    overflow: hidden;
    box-sizing: border-box;
    position: relative;
    text-decoration: none;
}

.footer__social-link img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

    .footer__social-link:hover {
        transform: scale(1.1);
        opacity: 0.9;
    }

    /*.footer__social-link img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        display: block;
        filter: brightness(0) invert(1);
    }*/

    /* Facebook - Blue */
    /*.footer__social-link[aria-label="Facebook"] {
        background-color: #1877f2;
    }*/

    /* YouTube - Red */
    /*.footer__social-link[aria-label="YouTube"] {
        background-color: #ff0000;
    }*/

    /* Instagram - Gradient */
    /*.footer__social-link[aria-label="Instagram"] {
        background: linear-gradient(45deg, #f58529 0%, #dd2a7b 50%, #8134af 100%);
    }*/

    /* TikTok - Black with gradient effect */
    /*.footer__social-link[aria-label="TikTok"] {
        background-color: #000000;
        position: relative;
    }

        .footer__social-link[aria-label="TikTok"]::before {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient( 135deg, rgba(0, 242, 234, 0.3) 0%, rgba(255, 0, 80, 0.3) 100% );
            border-radius: 50%;
            pointer-events: none;
        }*/

.footer__link {
    color: #e7ecf1;
    text-decoration: none;
    font-size: var(--fs-14);
    line-height: var(--lh-16-26);
}

    .footer__link:hover {
        text-decoration: underline;
    }

.footer__brand--text {
    text-align: center;
    margin-top: 0;
    font-size: 28px;
    letter-spacing: 10px;
}

.footer__brand img {
    width: 120px;
    height: auto;
    display: none;
}

.footer__copyright {
    text-align: right;
    margin-top: 0;
    font-size: var(--fs-14);
    opacity: 0.9;
}

.footer__bottom {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: var(--space-8);
    padding-top: 12px;
}

    .footer__bottom .footer__copyright {
        position: absolute;
        right: 0;
    }

/* Back To Top */
.backtotop {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 44px;
    height: 44px;
    border: none;
    border-radius: var(--radius-2);
    background: rgba(0, 0, 0, 0.85);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(8px) scale(0.9);
    pointer-events: none;
    z-index: 1000;
}

    .backtotop:hover {
        background: rgba(0, 0, 0, 0.95);
        transform: translateY(0) scale(1.1);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    }

    .backtotop:active {
        transform: translateY(0) scale(0.95);
    }

    .backtotop[data-visible="true"] {
        opacity: 1;
        transform: translateY(0) scale(1);
        pointer-events: auto;
    }

.backtotop--clicked {
    animation: backToTopClick 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes backToTopClick {
    0% {
        transform: translateY(0) scale(1);
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
    }

    50% {
        transform: translateY(0) scale(0.8);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    }

    100% {
        transform: translateY(0) scale(1);
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
    }
}

/* Responsive  */

/* Tablet (768px - 1024px) */
@media (max-width: 1024px) {
    .container {
        padding: 0 var(--space-4);
    }

    /* Header */
    .header__menu-toggle {
        display: block;
        color: var(--color-text-white);
    }

    .header.header--scrolled .header__menu-toggle {
        color: var(--color-text-black);
    }

    .header__bar {
        grid-template-columns: auto 1fr auto;
        gap: var(--space-4);
    }

    .header__logo {
        grid-column: 2;
        justify-self: center;
    }

    .header__group--left .header__nav--left,
    .header__group--right .header__nav--right {
        display: none;
    }

    .header__group--right {
        justify-self: end;
    }

    .header__logo-img--desktop {
        display: none;
    }

    .header__logo-text {
        display: block;
        font-size: 22px;
    }

    .header__mobile-menu {
        display: block;
    }

    /* Banner */
    .banner__title {
        font-size: 36px;
    }

    .banner__content {
        padding: var(--space-10) var(--space-5);
        text-align: center;
        align-items: center;
    }

    .banner__content-inner {
        align-items: center;
        text-align: center;
    }

    .banner__subtitle {
        max-width: 100%;
    }



    .banner__pagination {
        bottom: var(--space-5);
    }

    .quick-actions {
        padding: var(--space-9) var(--space-4) var(--space-10);
    }

    .quick-actions__panel {
        padding: var(--space-5);
    }

    .quick-actions__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .quick-actions__item {
        min-height: 130px;
    }

    /* Mirai */
    
    .mirai__cta {
        justify-content: center;
        padding: var(--space-3) var(--space-4);
        width: 100%;
    }
    
    
    .mirai__inner {
        padding: var(--space-8) var(--space-4);
        gap: var(--space-6);
    }

    .mirai__header {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-3);
    }

    .mirai__header-actions {
        flex-direction: column;
        width: 100%;
        gap: var(--space-3);
    }

    .mirai__cta {
        margin-top: 0;
    }

    .mirai__card {
        height: auto;
        max-width: 100%;
    }

    .mirai__image-link {
        max-width: 100%;
    }

    .mirai__image {
        height: auto;
    }

    .mirai__card-title {
        font-size: var(--fs-20);
        min-height: 0;
    }

    /* About */
    .about__inner {
        flex-direction: column;
        align-items: center;
        gap: var(--space-8);
        padding: var(--space-8) var(--space-4);
    }

    .about__image {
        width: 100%;
        max-width: 586px;
    }

    .about__content {
        width: 100%;
        max-width: 470px;
    }

    /* Showroom */
    /* .showroom__inner {
    height: 600px;
  } */
    .showroom__title {
        font-size: var(--fs-24);
    }

    .showroom__subtitle {
        font-size: var(--fs-16);
    }

    .showroom__cta {
        bottom: 25px;
    }

    /* Car Lineup - Tablet */
    .carlineup__swiper-wrapper {
        margin-left: 0;
        margin-right: 0;
        padding-left: 0;
        padding-right: 0;
        width: 100%;
        max-width: 100%;
    }
    
    .carlineup__inner {
        padding: var(--space-4);
    }

    .carlineup__swiper {
        width: 100%;
    }

    .carlineup__slide {
        max-width: 100%;
    }

    /* Local */
    .local__inner {
        flex-direction: column;
        gap: var(--space-8);
        padding: var(--space-8) var(--space-4);
    }

    .local__content {
        max-width: 100%;
        text-align: center;
    }

    .local__image {
        max-width: 100%;
    }

    /* Offers */
    .offers {
        padding: var(--space-8) 0;
    }

    .offers__inner {
        gap: var(--space-6);
    }

    .offers__header {
        padding: 0 var(--space-4);
    }

    .offers__title {
        font-size: var(--fs-24);
    }

    .offers__swiper-wrapper {
        padding: 0 var(--space-4);
    }

    .offers__actions {
        padding: var(--space-6) var(--space-4);
    }

    .offers__actions-text {
        font-size: var(--fs-20);
        margin-bottom: var(--space-4);
    }

    .offers__buttons {
        flex-direction: column;
        align-items: stretch;
        gap: var(--space-3);
    }

    .offers__btn {
        width: 100%;
        min-width: auto;
        padding: 12px 24px;
    }

    /* Ownership */
    .ownership-content__blocks {
        grid-template-columns: 1fr;
        gap: var(--space-4);
    }

    .ownership-content__text-block {
        padding: var(--space-6) var(--space-5);
    }

    /* Footer */
    .footer__inner {
        padding: var(--space-8) var(--space-4);
    }

    .footer__layout {
        flex-direction: column;
        gap: var(--space-8);
    }

    .footer__brand--text {
        display: none;
    }

    .footer__brand img {
        display: block;
    }

    .footer__about {
        max-width: 100%;
    }

    .footer__links-grid {
        flex-wrap: wrap;
        gap: var(--space-6);
    }

        .footer__links-grid .footer__col {
            flex: 0 0 calc(50% - var(--space-3));
            width: calc(50% - var(--space-3));
        }

    .footer__bottom {
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        align-items: center;
        gap: var(--space-4);
        position: relative;
        align-items: end;
    }

    .footer__brand {
        grid-column: 3;
        justify-self: end;
    }

    .footer__brand--text {
        text-align: center;
        font-size: 36px;
        letter-spacing: 12px;
        margin: 0;
        grid-column: 2;
        justify-self: center;
    }

    .footer__copyright {
        text-align: left;
        position: static;
        margin: 0;
        grid-column: 1;
        justify-self: start;
        left: 0;
    }
}

/* Desktop - Fix whitespace */
@media (min-width: 1025px) {
    .carlineup__swiper-wrapper {
        margin-left: calc(-1 * var(--space-6));
        margin-right: calc(-1 * var(--space-6));
        padding-left: var(--space-6);
        padding-right: var(--space-6);
        width: calc(100% + 2 * var(--space-6));
        max-width: 100vw;
        overflow: hidden;
    }

    .carlineup__swiper {
        overflow: hidden;
    }

        .carlineup__swiper .swiper-wrapper {
            will-change: transform;
        }

    .banner__quick-item {
        min-height: 145px;
        width: auto;
        flex: none;
    }

    .banner__quick-grid {
        grid-template-columns: repeat(4, 1fr);
        width: 100%;
    }
}

/* Mobile (< 768px) */
@media (max-width: 768px) {
    .container {
        padding: 0 var(--space-4);
    }

    /* Header */
    .header__bar {
        height: 64px;
        padding: 0 var(--space-4);
        grid-template-columns: auto 1fr auto;
    }
    
    .header__search {
        display: inline-flex;
    }
    .header__menu-toggle {
        display: block;
        color: var(--color-text-white);
    }

    .header.header--scrolled .header__menu-toggle {
        color: var(--color-text-black);
    }

    .header__logo-img--desktop {
        display: none;
    }

    .header__logo-text {
        display: block;
        font-size: 20px;
    }

    .header__group--left .header__nav--left,
    .header__group--right .header__nav--right {
        display: none;
    }

    .header__logo {
        justify-self: center;
    }

    .header__group--left {
        justify-self: start;
    }

    .header__group--right {
        justify-self: end;
    }

    .header__mobile-menu {
        display: block;
        top: 64px;
    }

    /* Banner */
    .banner__content {
        position: relative;
        inset: auto;
        padding: var(--space-4) var(--space-4) var(--space-5);
        display: flex;
        flex-direction: column;
        gap: var(--space-4);
        align-items: center;
        text-align: center;
        background: linear-gradient( 180deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.75) 60%, rgba(0, 0, 0, 0.85) 100% );
        z-index: 1;
    }

    .banner__content-inner {
        margin-top: 0;
    }

    .banner__title {
        font-size: 28px;
        line-height: 1.2;
    }
    
    .banner__nav {
        /* display: none; */
        width: 30px;
        height: 30px;
    }
      .banner__nav::before {
        width: 10px;
        height: 10px;
      }
  
    .banner__cta-button {
        padding: 10px 20px;
    }
    
    .quick-actions {
        padding: var(--space-8) var(--space-4) var(--space-9);
    }

    .quick-actions__panel {
        padding: var(--space-4);
    }

    .quick-actions__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-2);
    }

    .quick-actions__item {
        padding: var(--space-4) var(--space-2);
        min-height: auto;
    }

    .quick-actions__icon {
        width: 36px;
        height: 36px;
    }

 

    .banner__scroll-indicator {
        bottom: 24px;
        width: 40px;
        height: 40px;
    }

    /* About */
    .about__inner {
        padding: var(--space-6) var(--space-4);
    }

    .about__title {
        font-size: var(--fs-24);
    }

    .about__text {
        font-size: var(--fs-14);
    }

    /* Showroom */
    /* .showroom__inner {
    height: 400px;
  } */
    .showroom__header {
        padding: 0 var(--space-4);
        max-width: 100%;
        top: 30px;
    }

    .showroom__title {
        font-size: var(--fs-20);
    }

    .showroom__subtitle {
        font-size: var(--fs-14);
    }

    .showroom__cta {
        bottom: var(--space-6);
    }

    /* Car Lineup */

    .carlineup__title {
        font-size: var(--fs-24);
    }

    .carlineup__filters {
        flex-wrap: wrap;
        gap: var(--space-4);
        justify-content: center;
    }

    .carlineup__inner {
        padding: var(--space-4);
    }
    
    .carlineup__swiper-wrapper {
        margin-left: 0;
        margin-right: 0;
        padding-left: 0;
        padding-right: 0;
        width: 100%;
        max-width: 100%;
    }

    .carlineup__swiper {
        width: 100%;
    }

    .carlineup__slide {
        width: 100%;
    }

    /* Local */
    .local__inner {
        padding: var(--space-6) var(--space-4);
    }

    .local__title {
        font-size: var(--fs-20);
    }

    .local__text {
        font-size: var(--fs-14);
    }

    /* Offers */
    .offers {
        padding: var(--space-6) 0;
    }

    .offers__inner {
        gap: var(--space-4);
    }

    .offers__header {
        padding: 0 var(--space-4);
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-2);
        margin-bottom: var(--space-3);
    }

    .offers__title {
        font-size: var(--fs-20);
    }

    .offers__swiper-wrapper {
        padding: 0 var(--space-4);
    }

    .offers__actions {
        padding: var(--space-5) var(--space-4);
    }

    .offers__actions-text {
        font-size: var(--fs-16);
        margin-bottom: var(--space-4);
    }

    .offers__buttons {
        flex-direction: column;
        gap: var(--space-3);
    }
    /*.offers__banner-image {*/
    /*    height: 230px;*/
    /*}*/
    .offers__btn {
        font-size: var(--fs-14);
        padding: 12px 20px;
        min-width: auto;
    }

    /*.offers__navigation {*/
    /*    margin-top: var(--space-4);*/
    /*}*/

    .offers__nav-btn {
        width: 36px;
        height: 36px;
    }

        .offers__nav-btn svg {
            width: 18px;
            height: 18px;
        }

    /* Ownership */
    .ownership-header__inner {
        padding: var(--space-8) var(--space-4);
    }

    .ownership-header__title {
        font-size: var(--fs-24);
    }

    .ownership-header__text {
        font-size: var(--fs-14);
    }

    .ownership-content__image-block {
        height: 300px;
    }

    .ownership-content__image {
        height: 300px;
    }

    .ownership-content__text-block {
        padding: var(--space-5) var(--space-4);
    }

    .ownership-content__cta-title {
        font-size: var(--fs-20);
    }

    .ownership-content__cta-text {
        font-size: var(--fs-14);
    }

    .ownership-content__cta-link {
        padding: 12px 24px;
        font-size: var(--fs-14);
    }

    /* Footer */

    .footer__inner {
        padding: var(--space-6) var(--space-4);
    }

    .footer__links-grid {
        flex-direction: column;
    }

        .footer__links-grid .footer__col {
            flex: 1 1 100%;
            width: 100%;
        }

    .footer__brand--text {
        display: none;
    }

    .footer__brand img {
        height: 54px;
        width: 66px;
        display: block;
    }

    .footer__copyright {
        font-size: var(--fs-12);
    }

    .footer__social {
        margin-top: var(--space-4);
        gap: var(--space-3);
    }

    .footer__social-link {
        width: 36px;
        height: 36px;
    }

    /* Back To Top */
    .backtotop {
        right: var(--space-4);
        bottom: var(--space-4);
        width: 40px;
        height: 40px;
    }

    /* Responsive Mirai */
    .mirai__inner {
        padding: var(--space-8) var(--space-4);
        gap: var(--space-6);
    }

    .mirai__header {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-3);
    }

    .mirai__header-actions {
        flex-direction: column;
        width: 100%;
        gap: var(--space-3);
    }



    .mirai__card {
        height: auto;
        max-width: 100%;
    }

    .mirai__image-link {
        max-width: 100%;
    }

    .mirai__image {
        height: auto;
    }

    .mirai__card-title {
        font-size: var(--fs-16);
        line-height: var(--lh-16-26);
        min-height: 0;
    }
}

@media (max-width: 480px) {
    .showroom__inner {
        height: 520px;
    }

    .showroom__cta {
        left: 50%;
        transform: translateX(-50%);
        bottom: var(--space-4);
    }

    .showroom__btn {
        width: 100%;
        display: flex;
        justify-content: center;
        text-align: center;
        white-space: normal;
        padding: 14px var(--space-4);
    }

        .showroom__btn span {
            text-align: center;
        }

    .footer__brand img {
        height: 54px;
        width: 66px;
        display: block;
    }
}

/*Code cu*/
.header .header-global__flyout {
    background: #fff;
    overflow: hidden;
    width: 100%;
}

    .header .header-global__flyout .header-global__flyout__item {
        width: 100%;
        border-bottom: 1px solid #c4c4c4;
        border-top: 1px solid #c4c4c4;
        box-shadow: 0 6px 6px rgba(0, 0, 0, 0.1);
        position: absolute;
        top: 70px;
        left: 0;
        z-index: 998;
        background: #fff;
        -webkit-transform: translateY(-110%);
        transform: translateY(-110%);
        visibility: hidden;
        transition: visibility 0.35s ease-in-out 0s, -webkit-transform 0.35s ease-in-out 0s;
        transition: transform 0.35s ease-in-out 0s, visibility 0.35s ease-in-out 0s;
        transition: transform 0.35s ease-in-out 0s, visibility 0.35s ease-in-out 0s, -webkit-transform 0.35s ease-in-out 0s;
    }

        .header .header-global__flyout .header-global__flyout__item.menu--open {
            transform: translateY(0);
            -webkit-transform: translateY(0);
            transition-timing-function: ease-out;
            visibility: visible;
        }

.header-global__flyout__item-container {
    max-width: 1200px;
    width: 100%;
    margin: 0px auto;
    display: flex;
    flex-direction: row;
    padding: 30px 0;
}

.header .header-global__flyout__grid-container {
    display: flex;
    width: 83.3333333%;
    margin: 0 auto;
    flex-direction: row;
}

    .header .header-global__flyout__grid-container:hover .header-global__flyout__tout__link {
        opacity: 0.4;
    }

        .header .header-global__flyout__grid-container:hover .header-global__flyout__tout__link:hover {
            opacity: 1;
        }

    .header .header-global__flyout__grid-container .header-global__flyout__grid-col {
        flex: 1;
    }

    .header .header-global__flyout__grid-container .header-global__flyout__grid-col--spacer {
        height: 100%;
        width: 1px;
        background: #e7e7e7;
        margin: 0 40px;
    }

.header .header-global__flyout__title {
    text-transform: uppercase;
    margin-bottom: 15px;
    font-weight: 700;
}

.header .header-global__flyout__text {
    margin-bottom: 10px;
}

.header .header-global__flyout__list-item {
    float: left;
    width: 48%;
    margin-right: 2%;
    margin-bottom: 8px;
}

    .header .header-global__flyout__list-item:last-child {
        margin-right: 0;
    }

.header .header-global__flyout__list-link {
    text-transform: capitalize;
    color: #101010;
    text-decoration: none;
    font-size: 100%;
    font-size: 1rem;
    font-weight: 400;
}

    .header .header-global__flyout__list-link:hover {
        color: #d5d5d5;
    }

.header .header-global__flyout__list--inline .header-global__flyout__list-item {
    width: auto;
    border-right: 1px solid #999999;
    margin-right: 0;
    margin-bottom: 0;
    padding: 0 10px;
}

    .header .header-global__flyout__list--inline .header-global__flyout__list-item:first-child {
        padding-left: 0;
    }

    .header .header-global__flyout__list--inline .header-global__flyout__list-item:last-child {
        border-right: 0;
        padding-right: 0;
    }

.header .header-global__flyout__item.vehicles .vehicle-selection {
    background-color: transparent;
    padding: 0;
    align-items: flex-start;
}

.header .header-global__flyout__item.mobile-menu .accordion {
    text-align: center;
}

.header .header-global__flyout__item.mobile-menu .accordion__item-title {
    padding: 38px 0;
    text-align: center;
}

    .header .header-global__flyout__item.mobile-menu .accordion__item-title:before {
        content: "";
        display: none;
    }

.header .header-global__flyout__item.mobile-menu .accordion__item-content__title {
    text-transform: uppercase;
    color: #101010;
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    font-weight: 700;
}

.header .header-global__flyout__item.mobile-menu .accordion__item-content__list {
    margin: 15px 0 30px 0;
}

.header .header-global__flyout__item.mobile-menu .accordion__item-content__list-item {
    margin-bottom: 22px;
}

.header .header-global__flyout__item.mobile-menu .accordion__item-content__list-link {
    text-decoration: none;
    color: #101010;
}

    .header .header-global__flyout__item.mobile-menu .accordion__item-content__list-link:hover {
        color: #999999;
    }

.header .header-global__other-links {
    padding: 30px 0 15px 0;
    /*    min-height: 300px;*/
}

.header .header-global__other-links__title {
    text-align: center;
    text-transform: uppercase;
    color: #999999;
    margin-bottom: 20px;
    font-size: 82%;
    font-size: 0.8125rem;
}

.header .header-global__other-links__list {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-bottom: 20px;
}

    .header .header-global__other-links__list:before, .header .header-global__other-links__list:after {
        content: "";
        display: block;
    }

.header .header-global__other-links__list--lang {
    display: flex;
    justify-content: center;
    width: 100%;
}

    .header .header-global__other-links__list--lang .header-global__other-links__list-item {
        padding: 0 8px;
        position: relative;
    }

        .header .header-global__other-links__list--lang .header-global__other-links__list-item:first-child {
            padding-left: 0;
        }

        .header .header-global__other-links__list--lang .header-global__other-links__list-item:last-child {
            position: relative;
            padding-right: 0;
        }

            .header .header-global__other-links__list--lang .header-global__other-links__list-item:last-child:after {
                background-color: transparent;
                content: "";
                height: 0;
                right: 0;
                top: 0;
                width: 0;
            }

        .header .header-global__other-links__list--lang .header-global__other-links__list-item:after {
            background-color: #999999;
            content: "";
            height: 10px;
            position: absolute;
            right: 0;
            top: 50%;
            -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
            width: 1px;
        }

    .header .header-global__other-links__list--lang .header-global__other-links__list-link {
        text-transform: uppercase;
        text-decoration: none;
        color: #999999;
    }

        .header .header-global__other-links__list--lang .header-global__other-links__list-link.active {
            color: #101010;
        }

.header .header-global__other-links__list-item {
    flex-direction: row;
    padding: 0 15px;
}

.header .header-global__other-links__list-link {
    text-transform: uppercase;
    text-decoration: none;
    color: #999999;
    font-size: 82%;
    font-size: 0.8125rem;
}

@media (max-width: 1024px) {
    .header-global__inner-wrapper:hover {
        background-color: transparent !important;
        box-shadow: none !important;
    }

    .header .header-global__menu__upper,
    .header .header-global__nav {
        display: none;
    }

    .header .header-global__menu__upper--mobile,
    .header .header-global__nav--mobile {
        display: flex;
    }

    .header .header-global__menu__lower .header-global__nav__list .header-global__nav__list-item:last-child {
        padding-right: 0;
        position: relative;
        top: -1px;
    }

    .header-global__nav__list-item-link.mobile-menu-link {
        position: relative;
    }

        .header-global__nav__list-item-link.mobile-menu-link:before {
            content: "";
            position: absolute;
            top: 5px;
            left: -17px;
            height: 20px;
            width: 1px;
            background: #606060;
        }

        .header-global__nav__list-item-link.mobile-menu-link:after {
            width: 63%;
        }

        .header-global__nav__list-item-link.mobile-menu-link .header-global__nav__mobile-menu-icon {
            display: inline-block;
            position: relative;
            height: 19px;
            width: 17px;
            pointer-events: none;
        }

            .header-global__nav__list-item-link.mobile-menu-link .header-global__nav__mobile-menu-icon li {
                background-color: #999999;
                display: block;
                height: 2px;
                margin: 0 0 2px;
                position: absolute;
                transition: top 100ms ease-out 100ms, opacity 100ms ease-out 100ms, -webkit-transform 100ms ease-in 0ms;
                transition: top 100ms ease-out 100ms, transform 100ms ease-in 0ms, opacity 100ms ease-out 100ms;
                transition: top 100ms ease-out 100ms, transform 100ms ease-in 0ms, opacity 100ms ease-out 100ms, -webkit-transform 100ms ease-in 0ms;
                width: 17px;
                margin: 8px 0 5px;
            }

                .header-global__nav__list-item-link.mobile-menu-link .header-global__nav__mobile-menu-icon li:nth-child(1) {
                    top: 0;
                }

                .header-global__nav__list-item-link.mobile-menu-link .header-global__nav__mobile-menu-icon li:nth-child(2) {
                    top: 5px;
                }

                .header-global__nav__list-item-link.mobile-menu-link .header-global__nav__mobile-menu-icon li:nth-child(3) {
                    top: 10px;
                }

        .header-global__nav__list-item-link.mobile-menu-link.menu--active .header-global__nav__mobile-menu-icon li:nth-child(1) {
            top: 5px;
            -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
        }

        .header-global__nav__list-item-link.mobile-menu-link.menu--active .header-global__nav__mobile-menu-icon li:nth-child(2) {
            opacity: 0;
        }

        .header-global__nav__list-item-link.mobile-menu-link.menu--active .header-global__nav__mobile-menu-icon li:nth-child(3) {
            top: 5px;
            -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
        }

    .header .header-global__flyout__item.mobile-menu .accordion .accordion__item--closed__item-title:hover {
        color: #999999;
    }

    .header .header-global__flyout__item.mobile-menu .accordion .accordion__item--open__item-title:hover {
        color: #101010;
    }

    .header .header-global__logo-link .header-global__logo {
        width: 50px;
        height: 45px;
    }

    .header-global__spacer {
        height: 75px;
    }

    .header-global__inner-wrapper {
        height: 75px;
        padding: 0 15px;
    }

    .header__inner-wrapper {
        height: 75px;
        padding: 0 15px;
    }

    .header-global__inner-wrapper {
        display: flex;
        position: absolute;
        width: 100%;
        height: 75px;
        top: 0;
        left: 0;
        z-index: 999;
        background-color: transparent;
        padding: 0 15px;
    }

    .header-global__inner-container {
        padding: 0;
    }

    .header-global__menu__lower {
        margin-top: 0;
    }

    .header .header-global__flyout .header-global__flyout__item {
        top: 75px;
        height: 100vh;
        /*overflow: auto;*/
    }

    .header .header-global__flyout__item-container {
        max-width: 100%;
        overflow: auto;
        flex-direction: column;
        padding: 15px;
    }
}

.header .header-global__flyout {
    background: #fff;
    overflow: hidden;
    width: 100%;
}

    .header .header-global__flyout .header-global__flyout__item {
        width: 100%;
        border-bottom: 1px solid #c4c4c4;
        border-top: 1px solid #c4c4c4;
        box-shadow: 0 6px 6px rgba(0, 0, 0, 0.1);
        position: absolute;
        top: 70px;
        left: 0;
        z-index: 998;
        background: #fff;
        -webkit-transform: translateY(-110%);
        transform: translateY(-110%);
        visibility: hidden;
        transition: visibility 0.35s ease-in-out 0s, -webkit-transform 0.35s ease-in-out 0s;
        transition: transform 0.35s ease-in-out 0s, visibility 0.35s ease-in-out 0s;
        transition: transform 0.35s ease-in-out 0s, visibility 0.35s ease-in-out 0s, -webkit-transform 0.35s ease-in-out 0s;
    }

        .header .header-global__flyout .header-global__flyout__item.menu--open {
            transform: translateY(0);
            -webkit-transform: translateY(0);
            transition-timing-function: ease-out;
            visibility: visible;
        }

.header-global__flyout__item-container {
    max-width: 1200px;
    width: 100%;
    margin: 0px auto;
    display: flex;
    flex-direction: row;
    padding: 30px 0;
}

.header .header-global__flyout__grid-container {
    display: flex;
    width: 83.3333333%;
    margin: 0 auto;
    flex-direction: row;
}

    .header .header-global__flyout__grid-container:hover .header-global__flyout__tout__link {
        opacity: 0.4;
    }

        .header .header-global__flyout__grid-container:hover .header-global__flyout__tout__link:hover {
            opacity: 1;
        }

    .header .header-global__flyout__grid-container .header-global__flyout__grid-col {
        flex: 1;
    }

    .header .header-global__flyout__grid-container .header-global__flyout__grid-col--spacer {
        height: 100%;
        width: 1px;
        background: #e7e7e7;
        margin: 0 40px;
    }

.header .header-global__flyout__title {
    text-transform: uppercase;
    margin-bottom: 15px;
    font-weight: 700;
}

.header .header-global__flyout__text {
    margin-bottom: 10px;
}

.header .header-global__flyout__list-item {
    float: left;
    width: 48%;
    margin-right: 2%;
    margin-bottom: 8px;
}

    .header .header-global__flyout__list-item:last-child {
        margin-right: 0;
    }

.header .header-global__flyout__list-link {
    text-transform: capitalize;
    color: #101010;
    text-decoration: none;
    font-size: 100%;
    font-size: 1rem;
    font-weight: 400;
}

    .header .header-global__flyout__list-link:hover {
        color: #d5d5d5;
    }

.header .header-global__flyout__list--inline .header-global__flyout__list-item {
    width: auto;
    border-right: 1px solid #999999;
    margin-right: 0;
    margin-bottom: 0;
    padding: 0 10px;
}

    .header .header-global__flyout__list--inline .header-global__flyout__list-item:first-child {
        padding-left: 0;
    }

    .header .header-global__flyout__list--inline .header-global__flyout__list-item:last-child {
        border-right: 0;
        padding-right: 0;
    }

.header .header-global__flyout__item.vehicles .vehicle-selection {
    background-color: transparent;
    padding: 0;
    align-items: flex-start;
}

.header .header-global__flyout__item.mobile-menu .accordion {
    text-align: center;
}

.header .header-global__flyout__item.mobile-menu .accordion__item-title {
    padding: 38px 0;
    text-align: center;
}

    .header .header-global__flyout__item.mobile-menu .accordion__item-title:before {
        content: "";
        display: none;
    }

.header .header-global__flyout__item.mobile-menu .accordion__item-content__title {
    text-transform: uppercase;
    color: #101010;
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    font-weight: 700;
}

.header .header-global__flyout__item.mobile-menu .accordion__item-content__list {
    margin: 15px 0 30px 0;
}

.header .header-global__flyout__item.mobile-menu .accordion__item-content__list-item {
    margin-bottom: 22px;
}

.header .header-global__flyout__item.mobile-menu .accordion__item-content__list-link {
    text-decoration: none;
    color: #101010;
}

    .header .header-global__flyout__item.mobile-menu .accordion__item-content__list-link:hover {
        color: #999999;
    }

.header .header-global__other-links {
    padding: 30px 0 15px 0;
    /*    min-height: 300px;*/
}

.header .header-global__other-links__title {
    text-align: center;
    text-transform: uppercase;
    color: #999999;
    margin-bottom: 20px;
    font-size: 82%;
    font-size: 0.8125rem;
}

.header .header-global__other-links__list {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-bottom: 20px;
}

    .header .header-global__other-links__list:before, .header .header-global__other-links__list:after {
        content: "";
        display: block;
    }

.header .header-global__other-links__list--lang {
    display: flex;
    justify-content: center;
    width: 100%;
}

    .header .header-global__other-links__list--lang .header-global__other-links__list-item {
        padding: 0 8px;
        position: relative;
    }

        .header .header-global__other-links__list--lang .header-global__other-links__list-item:first-child {
            padding-left: 0;
        }

        .header .header-global__other-links__list--lang .header-global__other-links__list-item:last-child {
            position: relative;
            padding-right: 0;
        }

            .header .header-global__other-links__list--lang .header-global__other-links__list-item:last-child:after {
                background-color: transparent;
                content: "";
                height: 0;
                right: 0;
                top: 0;
                width: 0;
            }

        .header .header-global__other-links__list--lang .header-global__other-links__list-item:after {
            background-color: #999999;
            content: "";
            height: 10px;
            position: absolute;
            right: 0;
            top: 50%;
            -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
            width: 1px;
        }

    .header .header-global__other-links__list--lang .header-global__other-links__list-link {
        text-transform: uppercase;
        text-decoration: none;
        color: #999999;
    }

        .header .header-global__other-links__list--lang .header-global__other-links__list-link.active {
            color: #101010;
        }

.header .header-global__other-links__list-item {
    flex-direction: row;
    padding: 0 15px;
}

.header .header-global__other-links__list-link {
    text-transform: uppercase;
    text-decoration: none;
    color: #999999;
    font-size: 82%;
    font-size: 0.8125rem;
}

@media (max-width: 1024px) {
    .header .header-global__menu__upper,
    .header .header-global__nav {
        display: none;
    }

    .header .header-global__menu__upper--mobile,
    .header .header-global__nav--mobile {
        display: flex;
    }

    .header .header-global__menu__lower .header-global__nav__list .header-global__nav__list-item:last-child {
        padding-right: 0;
        position: relative;
        top: -1px;
    }

    .header-global__nav__list-item-link.mobile-menu-link {
        position: relative;
    }

        .header-global__nav__list-item-link.mobile-menu-link:before {
            content: "";
            position: absolute;
            top: 5px;
            left: -17px;
            height: 20px;
            width: 1px;
            background: #606060;
        }

        .header-global__nav__list-item-link.mobile-menu-link:after {
            width: 63%;
        }

        .header-global__nav__list-item-link.mobile-menu-link .header-global__nav__mobile-menu-icon {
            display: inline-block;
            position: relative;
            height: 19px;
            width: 17px;
            pointer-events: none;
        }

            .header-global__nav__list-item-link.mobile-menu-link .header-global__nav__mobile-menu-icon li {
                background-color: #999999;
                display: block;
                height: 2px;
                margin: 0 0 2px;
                position: absolute;
                transition: top 100ms ease-out 100ms, opacity 100ms ease-out 100ms, -webkit-transform 100ms ease-in 0ms;
                transition: top 100ms ease-out 100ms, transform 100ms ease-in 0ms, opacity 100ms ease-out 100ms;
                transition: top 100ms ease-out 100ms, transform 100ms ease-in 0ms, opacity 100ms ease-out 100ms, -webkit-transform 100ms ease-in 0ms;
                width: 17px;
                margin: 8px 0 5px;
            }

                .header-global__nav__list-item-link.mobile-menu-link .header-global__nav__mobile-menu-icon li:nth-child(1) {
                    top: 0;
                }

                .header-global__nav__list-item-link.mobile-menu-link .header-global__nav__mobile-menu-icon li:nth-child(2) {
                    top: 5px;
                }

                .header-global__nav__list-item-link.mobile-menu-link .header-global__nav__mobile-menu-icon li:nth-child(3) {
                    top: 10px;
                }

        .header-global__nav__list-item-link.mobile-menu-link.menu--active .header-global__nav__mobile-menu-icon li:nth-child(1) {
            top: 5px;
            -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
        }

        .header-global__nav__list-item-link.mobile-menu-link.menu--active .header-global__nav__mobile-menu-icon li:nth-child(2) {
            opacity: 0;
        }

        .header-global__nav__list-item-link.mobile-menu-link.menu--active .header-global__nav__mobile-menu-icon li:nth-child(3) {
            top: 5px;
            -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
        }

    .header .header-global__flyout__item.mobile-menu .accordion .accordion__item--closed__item-title:hover {
        color: #999999;
    }

    .header .header-global__flyout__item.mobile-menu .accordion .accordion__item--open__item-title:hover {
        color: #101010;
    }

    .header .header-global__logo-link .header-global__logo {
        width: 50px;
        height: 45px;
    }

    .header-global__spacer {
        height: 75px;
    }

    .header-global__inner-wrapper {
        height: 75px;
        padding: 0 15px;
    }

    .header__inner-wrapper {
        height: 75px;
        padding: 0 15px;
    }

    .header-global__inner-container {
        padding: 0;
    }

    .header-global__menu__lower {
        margin-top: 0;
    }

    .header .header-global__flyout .header-global__flyout__item {
        top: 75px;
        height: 100vh;
        /*overflow: auto;*/
    }

    .header .header-global__flyout__item-container {
        max-width: 100%;
        overflow: auto;
        flex-direction: column;
        padding: 15px;
    }
}

.menu-secondary--sticky .menu-secondary__container {
    top: 74px !important;
}

.menu-secondary--sticky .menu-secondary__spacer {
    display: none !important;
}