html {
    scroll-behavior: auto !important;
}

html.has-modal-x6 {
    overflow: hidden;
}

html.has-modal-x6 body,
html.has-modal-x6 #localnav {
    padding-inline-end: var(--modal-scrollbar-buffer);
}

body {
    font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
}

.html-text-component {
    overflow: inherit;
}

.has-localnav .header-component nav {
    position: absolute;
    transform: none !important;
    border-bottom: 0 !important;
    background-color: transparent !important;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
}

#localnav {
    position: fixed;
    z-index: 999;
    top: 0;
    right: 0;
    left: 0;
    overflow: hidden;
    width: 100%;
    max-height: 50px;
    line-height: 50px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), max-height 0.6s cubic-bezier(0.52, 0.16, 0.24, 1);
    transform: translateY(-100%);
    background-color: rgba(0, 0, 0, 0.8);
}

@supports ((-webkit-backdrop-filter: none) or (backdrop-filter: none)) {
    #localnav {
        background-color: rgba(0, 0, 0, 0.75);
        -webkit-backdrop-filter: saturate(150%) blur(20px);
        backdrop-filter: saturate(150%) blur(20px);
    }
}

.localnav-show #localnav {
    transform: translateY(0%);
}

#localnav .ln-content {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
    height: 50px;
}

#localnav .ln-content::before,
#localnav .ln-content::after {
    position: absolute;
    right: 0;
    left: 0;
    height: 1px;
    content: "";
    background-color: #414141;
}

#localnav .ln-content::before {
    top: 50px;
}

#localnav .ln-content::after {
    bottom: 0;
}

#localnav .ln-title {
    flex-grow: 1;
    height: 50px;
    padding-left: 160px;
}

#localnav .ln-title .ln-link {
    display: inline-block;
    padding: 0;
    font-size: 16px;
    font-weight: bold;
}

#localnav button {
    overflow: visible;
    margin: 0;
    padding: 0;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    text-align: center;
    vertical-align: inherit;
    color: inherit;
    border: 0;
    outline: 0;
    background: transparent;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

#localnav svg {
    display: block;
}

#localnav .ln-menu-trigger {
    display: none;
    width: 40px;
    padding: 16px 8px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

#localnav .ln-menu {
    display: flex;
    margin-left: 12px;
}

#localnav .ln-menu-list {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

#localnav .ln-link {
    position: relative;
    display: block;
    padding: 0 20px;
    font-size: 14px;
    line-height: 50px;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    color: #fff;
}

#localnav .ln-action {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 50px;
    margin-left: 20px;
    padding-right: 160px;
}

#localnav .ln-button {
    display: inline-block;
    padding-right: 19px;
    padding-left: 19px;
    font-size: 12px;
    font-weight: bold;
    line-height: 28px;
    transition: all 0.3s ease-out;
    white-space: nowrap;
    color: #fff;
    border: 1px solid #fff;
    border-radius: 4px;
}

#localnav .ln-button:hover {
    border-color: rgba(255, 255, 255, 0.7);
    background-color: rgba(255, 255, 255, 0.2);
}

.localnav-collapse #localnav {
    max-height: 56px;
    line-height: 56px;
}

.localnav-collapse #localnav .ln-content {
    height: 100%;
}

.localnav-collapse #localnav .ln-content::before {
    top: 56px;
}

.localnav-collapse #localnav .ln-title {
    display: flex;
    flex-grow: 0;
    height: 56px;
    padding-left: 24px;
}

.localnav-collapse #localnav .ln-menu {
    position: relative;
    overflow-x: auto;
    overflow-y: hidden;
    width: 100%;
    height: auto;
    margin-left: 0;
    padding-right: 16px;
    padding-left: 16px;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
}

.localnav-collapse #localnav .ln-menu::-webkit-scrollbar {
    display: none;
}

.localnav-collapse #localnav .ln-link {
    height: 56px;
    line-height: 56px;
}

.localnav-collapse #localnav .ln-action {
    position: absolute;
    top: 0;
    right: 0;
    width: auto;
    height: 56px;
    margin-left: 0;
    padding-right: 24px;
}

.localnav-collapse #localnav .ln-button {
    padding-right: 15px;
    padding-left: 15px;
}

.localnav-collapse #localnav .ln-menu-item {
    transition: opacity 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
    opacity: 0;
}

.localnav-collapse #localnav .ln-menu-item .ln-link {
    padding: 0 8px;
}

.localnav-collapse #localnav .ln-menu-trigger {
    display: block;
}

#localnav.ln-expanded {
    max-height: 100%;
}

#localnav.ln-expanded .ln-menu-trigger {
    transform: rotate(180deg);
}

#localnav.ln-expanded .ln-menu {
    visibility: visible;
    transition-delay: 0s;
}

#localnav.ln-expanded .ln-menu-item {
    opacity: 1;
}

@media only screen and (min-width: 1200.01px) {
    #localnav .ln-link::after {
        position: absolute;
        right: 20px;
        bottom: 1px;
        left: 20px;
        height: 2px;
        content: "";
        transition: transform 0.55s cubic-bezier(0.165, 0.84, 0.44, 1);
        transform: scaleX(0);
        transform-origin: center;
        background-color: #fff;
    }

    #localnav .ln-link:hover::after {
        transform: scaleX(1);
    }

    #localnav .ln-title .ln-link::after {
        display: none;
    }
}

@media only screen and (max-width: 1919px) {
    #localnav .ln-title {
        padding-left: 80px;
    }

    #localnav .ln-action {
        padding-right: 80px;
    }
}

@media only screen and (max-width: 1200px) {
    #localnav .ln-title {
        padding-left: 32px;
    }

    #localnav .ln-menu {
        margin-left: 20px;
    }

    #localnav .ln-link {
        padding: 0 12px;
    }

    #localnav .ln-link.current::after {
        right: 12px;
        left: 12px;
    }

    #localnav .ln-action {
        margin-left: 12px;
        padding-right: 32px;
    }

    #localnav .ln-menu-trigger {
        left: 0;
    }
}

#modal-player {
    position: fixed;
    z-index: 99999 !important;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    background: rgba(0, 0, 0, 0.8) !important;
}

#modal-player.modal-player-open {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: modal-player-fadein 0.3s forwards;
}

#modal-player video {
    width: auto !important;
    max-width: 90%;
    max-height: 90vh;
    outline: 0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

#modal-player-close {
    position: absolute;
    z-index: 1;
    top: 1.25vw;
    right: 1.25vw;
    width: 2.083333vw;
    height: 2.083333vw;
    padding: 0;
    transition: opacity 0.2s;
    opacity: 0.8;
}

@media (max-aspect-ratio: 11/10) {
    #modal-player-close {
        top: 24.444444vw;
        right: 6.666667vw;
        width: 8.333333vw;
        height: 8.333333vw;
    }
}

@media (min-aspect-ratio: 4/5) and (max-aspect-ratio: 11/10) {
    #modal-player-close {
        top: 10%;
        right: 5%;
    }
}

@keyframes modal-player-fadein {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

#s800 section {
    position: relative;
}

#s800 picture,
#s800 img,
#s800 svg,
#s800 canvas,
#s800 video {
    display: block;
    width: 100%;
}

#s800 sup {
    top: auto;
    font-size: 0.6em;
    vertical-align: super;
}

#s800 sup.sm {
    position: relative;
    top: -0.36em;
    font-size: 0.4em;
}

#s800 sup a {
    color: inherit;
}

#s800 button {
    overflow: visible;
    margin: 0;
    padding: 0;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    text-align: center;
    vertical-align: inherit;
    color: inherit;
    border: 0;
    outline: 0;
    background: transparent;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

#s800 .nowrap {
    display: inline-block;
    white-space: nowrap;
}

#s800 .sticky {
    position: sticky;
    top: 0;
    overflow: hidden;
    width: 100%;
}

#s800 .aspect-ratio {
    position: relative;
}

#s800 .aspect-ratio::before {
    display: block;
    content: "";
}

#s800 .aspect-ratio img,
#s800 .aspect-ratio video {
    position: absolute;
    top: 0;
    left: 0;
}

#s800 .covered-picture {
    position: relative;
    overflow: hidden;
    height: 100%;
}

#s800 .covered-picture img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

#s800 .covered-video {
    position: relative;
    overflow: hidden;
    height: 100%;
}

#s800 .covered-video video {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

#s800 .blur-up {
    transition: filter 400ms;
    filter: blur(10px);
}

#s800 .blur-up.lazyloaded {
    filter: blur(0);
}

#s800 .text-gradient {
    display: inline-block;
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
}

#s800 .relative {
    position: relative;
}

#s800 .absolute {
    position: absolute;
}

#s800 .overflow-hidden {
    overflow: hidden;
}

#s800 .overflow-visible {
    overflow: visible;
}

@media (max-aspect-ratio: 11/10) {
    #s800 .xs\:overflow-hidden {
        overflow: hidden;
    }

    #s800 .xs\:overflow-visible {
        overflow: visible;
    }
}

#s800 .block {
    display: block;
}

#s800 .inline-block {
    display: inline-block;
}

#s800 .inline {
    display: inline;
}

#s800 .flex {
    display: flex;
}

#s800 .inline-flex {
    display: inline-flex;
}

#s800 .hidden {
    display: none;
}

@media (max-aspect-ratio: 11/10) {
    #s800 .xs\:block {
        display: block;
    }

    #s800 .xs\:inline-block {
        display: inline-block;
    }

    #s800 .xs\:inline {
        display: inline;
    }

    #s800 .xs\:flex {
        display: flex;
    }

    #s800 .xs\:inline-flex {
        display: inline-flex;
    }

    #s800 .xs\:hidden {
        display: none;
    }
}

#s800 br.lg {
    display: block;
}

#s800 br.xs {
    display: none;
}

#s800 .sm {
    display: none;
}

@media (max-aspect-ratio: 11/10) {
    #s800 br.lg {
        display: none;
    }

    #s800 .unsm {
        display: none;
    }

    #s800 .sm {
        display: block;
    }
}

@media (max-aspect-ratio: 7/10) {
    #s800 br.xs {
        display: block;
    }

    #s800 .sm {
        display: none;
    }

    #s800 .unsm {
        display: block;
    }
}

#s800 .text-center {
    text-align: center;
}

#s800 .text-align {
    text-align: center;
}

@media (max-aspect-ratio: 11/10) {
    #s800 .text-align {
        text-align: left;
    }
}

#s800 .fadeup,
#s800 .lg-fadeup {
    transform: translate3d(0, 40px, 0);
    opacity: 0;
}

@media (max-aspect-ratio: 11/10) {

    #s800 .fadeup,
    #s800 .xs-fadeup {
        transform: translate3d(0, 40px, 0);
    }

    #s800 .lg-fadeup {
        transition: none;
        transform: none;
        opacity: 1;
    }

    #s800 .xs-fadeup {
        transition: opacity 0.8s ease-in, transform 0.8s cubic-bezier(0.26, 0.67, 0.48, 0.91);
        opacity: 0;
    }
}

#s800 .fadeup.animated,
#s800 .lg-fadeup.animated,
#s800 .xs-fadeup.animated {
    transition: opacity 0.8s ease-in, transform 0.8s cubic-bezier(0.26, 0.67, 0.48, 0.91);
    transform: translate3d(0, 0, 0);
    opacity: 1;
}

#s800 .w-1560 {
    width: 81.25vw;
}

#s800 .w-1300 {
    width: 67.708333vw;
}

#s800 .w-520 {
    width: 27.083333vw;
}

@media (max-aspect-ratio: 11/10) {
    #s800 .xs\:w-full {
        width: 100%;
    }

    #s800 .xs\:w-650 {
        width: 85.7142857vw;
    }

    #s800 .xs\:w-640 {
        width: 45.7142857vw;
    }

    #s800 .xs\:w-568 {
        width: 40.57142857vw;
    }

    #s800 .w-520,
    #s800 .xs\:w-520 {
        width: 37.142857vw;
    }
}

@media (max-aspect-ratio: 7/10) {
    #s800 .xs\:w-full {
        width: 100%;
    }

    #s800 .xs\:w-650 {
        width: 90.277778vw;
    }

    #s800 .xs\:w-640 {
        width: 88.888889vw;
    }

    #s800 .xs\:w-568 {
        width: 78.888889vw;
    }

    #s800 .w-520,
    #s800 .xs\:w-520 {
        width: 72.222222vw;
    }
}

#s800 .mx-auto {
    margin-right: auto;
    margin-left: auto;
}

#s800 .mt-16,
#s800 .lg\:mt-16 {
    margin-top: 0.833333vw;
}

#s800 .mt-24,
#s800 .lg\:mt-24 {
    margin-top: 1.25vw;
}

#s800 .ml-24,
#s800 .lg\:ml-24 {
    margin-left: 1.25vw;
}

#s800 .mt-32,
#s800 .lg\:mt-32 {
    margin-top: 1.666667vw;
}

#s800 .mt-40,
#s800 .lg\:mt-40 {
    margin-top: 2.083333vw;
}

#s800 .mt-48,
#s800 .lg\:mt-48 {
    margin-top: 2.5vw;
}

#s800 .mt-56,
#s800 .lg\:mt-56 {
    margin-top: 2.916667vw;
}

#s800 .mt-64,
#s800 .lg\:mt-64 {
    margin-top: 3.333333vw;
}

#s800 .mt-72,
#s800 .lg\:mt-72 {
    margin-top: 3.75vw;
}

#s800 .mt-80,
#s800 .lg\:mt-80 {
    margin-top: 4.166667vw;
}

#s800 .mt-100,
#s800 .lg\:mt-100 {
    margin-top: 5.208333vw;
}

#s800 .mt-120,
#s800 .lg\:mt-120 {
    margin-top: 6.25vw;
}

#s800 .mt-160,
#s800 .lg\:mt-160 {
    margin-top: 8.333333vw;
}

@media (max-aspect-ratio: 11/10) {
    #s800 .xs\:mx-auto {
        margin-right: auto;
        margin-left: auto;
    }

    #s800 .xs\:mt-0 {
        margin-top: 0;
    }

    #s800 .mt-16,
    #s800 .xs\:mt-16 {
        margin-top: 1.142857vw;
    }

    #s800 .mt-24,
    #s800 .xs\:mt-24 {
        margin-top: 1.7142857vw;
    }

    #s800 .ml-24,
    #s800 .xs\:ml-24 {
        margin-left: 1.7142857vw;
    }

    #s800 .mt-32,
    #s800 .xs\:mt-32 {
        margin-top: 2.2857vw;
    }

    #s800 .mt-40,
    #s800 .xs\:mt-40 {
        margin-top: 2.857vw;
    }

    #s800 .mt-48,
    #s800 .xs\:mt-48 {
        margin-top: 3.42857vw;
    }

    #s800 .mt-56,
    #s800 .xs\:mt-56 {
        margin-top: 5.7142857vw;
    }

    #s800 .mt-64,
    #s800 .xs\:mt-64 {
        margin-top: 4.571428vw;
    }

    #s800 .mt-72,
    #s800 .xs\:mt-72 {
        margin-top: 5.142857vw;
    }

    #s800 .mt-80,
    #s800 .xs\:mt-80 {
        margin-top: 5.7142857vw;
    }

    #s800 .xs\:ml-80 {
        margin-left: 5.7142857vw;
    }

    #s800 .mt-100,
    #s800 .xs\:mt-100 {
        margin-top: 7.142857vw;
    }

    #s800 .mt-120,
    #s800 .xs\:mt-120 {
        margin-top: 8.57142857vw;
    }

    #s800 .mt-160,
    #s800 .xs\:mt-160 {
        margin-top: 11.42857vw;
    }
}

@media (max-aspect-ratio: 7/10) {

    #s800 .mt-16,
    #s800 .xs\:mt-16 {
        margin-top: 2.222222vw;
    }

    #s800 .mt-24,
    #s800 .xs\:mt-24 {
        margin-top: 3.333333vw;
    }

    #s800 .ml-24,
    #s800 .xs\:ml-24 {
        margin-left: 3.333333vw;
    }

    #s800 .mt-32,
    #s800 .xs\:mt-32 {
        margin-top: 4.444444vw;
    }

    #s800 .mt-40,
    #s800 .xs\:mt-40 {
        margin-top: 5.555556vw;
    }

    #s800 .mt-48,
    #s800 .xs\:mt-48 {
        margin-top: 6.666667vw;
    }

    #s800 .mt-56,
    #s800 .xs\:mt-56 {
        margin-top: 7.777778vw !important;
    }

    #s800 .mt-64,
    #s800 .xs\:mt-64 {
        margin-top: 8.888889vw;
    }

    #s800 .mt-72,
    #s800 .xs\:mt-72 {
        margin-top: 10vw;
    }

    #s800 .mt-80,
    #s800 .xs\:mt-80 {
        margin-top: 11.111111vw !important;
    }

    #s800 .xs\:ml-80 {
        margin-left: 11.111111vw;
    }

    #s800 .mt-100,
    #s800 .xs\:mt-100 {
        margin-top: 13.888889vw;
    }

    #s800 .mt-120,
    #s800 .xs\:mt-120 {
        margin-top: 16.666667vw;
    }

    #s800 .mt-160,
    #s800 .xs\:mt-160 {
        margin-top: 22.222222vw;
    }
}

#s800 .pt-200,
#s800 .lg\:pt-200 {
    padding-top: 10.416667vw;
}

#s800 .pb-200,
#s800 .lg\:pb-200 {
    padding-bottom: 10.416667vw;
}

#s800 .py-200,
#s800 .lg\:py-200 {
    padding-top: 10.416667vw;
    padding-bottom: 10.416667vw;
}

#s800 .pt-160,
#s800 .lg\:pt-160 {
    padding-top: 8.333333vw;
}

#s800 .pb-160,
#s800 .lg\:pb-160 {
    padding-bottom: 8.333333vw;
}

#s800 .py-160,
#s800 .lg\:py-160 {
    padding-top: 8.333333vw;
    padding-bottom: 8.333333vw;
}

#s800 .pt-120,
#s800 .lg\:pt-120 {
    padding-top: 6.25vw;
}

@media (max-aspect-ratio: 11/10) {

    #s800 .pt-200,
    #s800 .xs\:pt-200 {
        padding-top: 14.2857vw;
    }

    #s800 .pb-200,
    #s800 .xs\:pb-200 {
        padding-bottom: 14.2857vw;
    }

    #s800 .py-200,
    #s800 .xs\:py-200 {
        padding-top: 14.2857vw;
        padding-bottom: 14.2857vw;
    }

    #s800 .pt-160,
    #s800 .xs\:pt-160 {
        padding-top: 11.42857vw;
    }

    #s800 .pb-160,
    #s800 .xs\:pb-160 {
        padding-bottom: 11.42857vw;
    }

    #s800 .py-160,
    #s800 .xs\:py-160 {
        padding-top: 11.42857vw;
        padding-bottom: 11.42857vw;
    }

    #s800 .pt-120,
    #s800 .xs\:pt-120 {
        padding-top: 8.57142857vw;
    }

    #s800 .xs\:pt-0 {
        padding-top: 0;
    }
}

@media (max-aspect-ratio: 7/10) {

    #s800 .pt-200,
    #s800 .xs\:pt-200 {
        padding-top: 27.777778vw;
    }

    #s800 .pb-200,
    #s800 .xs\:pb-200 {
        padding-bottom: 27.777778vw;
    }

    #s800 .py-200,
    #s800 .xs\:py-200 {
        padding-top: 27.777778vw;
        padding-bottom: 27.777778vw;
    }

    #s800 .pt-160,
    #s800 .xs\:pt-160 {
        padding-top: 22.222222vw;
    }

    #s800 .pb-160,
    #s800 .xs\:pb-160 {
        padding-bottom: 22.222222vw;
    }

    #s800 .py-160,
    #s800 .xs\:py-160 {
        padding-top: 22.222222vw;
        padding-bottom: 22.222222vw;
    }

    #s800 .pt-120,
    #s800 .xs\:pt-120 {
        padding-top: 16.666667vw;
    }
    #s800 .xs\:pt-0 {
        padding-top: 0;
    }
}

#s800 h2,
#s800 h3 {
    font-weight: 400;
    line-height: 1.25;
    color: #edcead;
}

#s800 h2 {
    font-size: 2.5vw;
}

#s800 h3 {
    font-size: 1.041667vw;
}

#s800 h3.title {
    font-size: 1.041667vw;
    color: #b4afab;
}

@media (max-aspect-ratio: 11/10) {
    #s800 h2 {
        font-size: 4.5714vw;
    }

    #s800 h3 {
        font-size: 2.2857vw;
    }

    #s800 h3.title {
        font-size: 2.2857vw;
    }
}

@media (max-aspect-ratio: 7/10) {
    #s800 h2 {
        font-size: 8.888889vw;
    }

    #s800 h3 {
        font-size: 4.444444vw;
    }

    #s800 h3.title {
        font-size: 4.444444vw;
    }
}

#s800 strong {
    font-weight: 700;
    color: #f0e0c1;
}

@media (min-aspect-ratio: 11/10) {
    #s800 .lg\:color-lighter {
        color: #e6d2c4;
    }
}

#s800 .gradient-headline {
    display: inline-block;
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(30deg, #e6b38f, #ead1bd 25%, #937157);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
}

#s800 .video-container {
    position: relative;
}

#s800 .video-container .play-trigger {
    position: absolute;
    top: 80%;
}

#s800 .video-container .end-frame {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.8s linear;
}

#s800 .video-container.ended .end-frame {
    opacity: 1;
}

#s800 .modal-open-button.modal-open {
    pointer-events: none;
}

#s800 .section-modal {
    position: fixed;
    z-index: -1;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: hidden;
    width: 100vw;
    transform: translate3d(100%, 0, 0);
    opacity: 0;
    outline: 0;
    background-color: #000;
    will-change: transform, opacity;
}

#s800 .section-modal.modal-open {
    z-index: 999;
    transition: transform 0.8s cubic-bezier(0.65, 0.05, 0.36, 1);
    transform: translate3d(0, 0, 0);
    opacity: 1;
}

#s800 .section-modal.modal-open .modal-close-button {
    pointer-events: auto;
}

#s800 .section-modal.modal-will-close {
    z-index: 999;
    transition: opacity 0.2s;
    transform: translate3d(0, 0, 0);
}

#s800 .section-modal .modal-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

#s800 .section-modal .modal-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    pointer-events: auto;
}

#s800 .section-modal .modal-close-container {
    position: absolute;
    top: 3.125vw;
    right: 3.125vw;
    width: 2.5vw;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

#s800 .section-modal .modal-close-button {
    position: sticky;
    z-index: 10;
    top: 2.083333vw;
    cursor: pointer;
    pointer-events: none;
}

@media (max-aspect-ratio: 11/10) {
    #s800 .section-modal {
        overflow: auto;
        transform: translate3d(0, 100%, 0);
    }

    #s800 .section-modal.modal-open {
        transition: transform 0.5s cubic-bezier(0.65, 0.05, 0.36, 1);
    }

    #s800 .section-modal .modal-container {
        display: block;
        height: auto;
    }

    #s800 .section-modal .modal-wrapper {
        height: auto;
    }

    #s800 .section-modal .modal-close-container {
        top: 0;
        right: 0;
        bottom: 0;
        width: 11.111111vw;
        width: 100%;
    }

    #s800 .section-modal .modal-close-container::before {
        position: sticky;
        z-index: 2;
        top: 0;
        left: 0;
        display: block;
        width: 100%;
        height: 20.833333vw;
        margin-bottom: -20.833333vw;
        content: "";
        pointer-events: none;
        background-image: linear-gradient(180deg, #000, transparent);
    }

    #s800 .section-modal .modal-close-button {
        top: 5.555556vw;
        width: 11.111111vw;
        margin-right: 5.555556vw;
        margin-left: auto;
    }
}

#s800 .modal-swiper {
    height: 100%;
}

#s800 .modal-swiper .swiper-slide {
    overflow: hidden;
    height: 100vh;
}

#s800 .modal-swiper .slide-item,
#s800 .modal-swiper .slide-picture {
    flex-shrink: 0;
}

#s800 .modal-swiper .slide-title {
    font-size: 1.666667vw;
    background-image: linear-gradient(96deg, #f8d2b7, #ead1bd 25%, #937157);
}

#s800 .modal-swiper .slide-intro {
    font-size: 0.833333vw;
    color: #ac9f96;
}

#s800 .modal-swiper .slide-style-1 {
    display: flex;
    align-items: center;
}

#s800 .modal-swiper .slide-style-1 .slide-picture {
    width: 72.916667vw;
}

#s800 .modal-swiper .slide-style-1 .slide-content {
    margin-left: 4.166667vw;
}

#s800 .modal-swiper .slide-style-2 {
    display: flex;
    align-items: center;
    justify-content: center;
}

#s800 .modal-swiper .slide-style-2 .slide-items {
    display: flex;
}

#s800 .modal-swiper .slide-style-2 .slide-item-2 {
    margin-left: 3.125vw;
}

#s800 .modal-swiper .slide-style-2 .slide-picture {
    width: 41.5625vw;
    height: 64.8148145vh;
}

#s800 .modal-swiper .slide-style-3 {
    display: flex;
    align-items: center;
    justify-content: center;
}

#s800 .modal-swiper .slide-style-3 .slide-items {
    display: flex;
}

#s800 .modal-swiper .slide-style-3 .slide-item-group {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-left: 3.125vw;
}

#s800 .modal-swiper .slide-style-3 .slide-item {
    width: 35.416667vw;
}

#s800 .modal-swiper .slide-style-3 .slide-picture-1 {
    height: 75.462963vh;
}

#s800 .modal-swiper .slide-style-3 .slide-picture-2,
#s800 .modal-swiper .slide-style-3 .slide-picture-3 {
    height: 27.962963vh;
}

#s800 .modal-swiper .slide-style-4 {
    display: flex;
    align-items: center;
    justify-content: center;
}

#s800 .modal-swiper .slide-style-4 .slide-items {
    display: flex;
}

#s800 .modal-swiper .slide-style-4 .slide-item-2 {
    margin-left: 1.354167vw;
}

#s800 .modal-swiper .slide-style-4 .slide-item-3 {
    margin-left: 1.354167vw;
}

#s800 .modal-swiper .slide-style-4 .slide-picture {
    width: 28.385417vw;
    height: 50.37037vh;
}

#s800 .modal-swiper .slide-style-5 {
    display: flex;
    align-items: center;
    justify-content: center;
}

#s800 .modal-swiper .slide-style-5 .lg\:b-32 {
    margin-bottom: 1.666667vw;
}

#s800 .modal-swiper .slide-style-5 .slide-items {
    display: flex;
}

#s800 .modal-swiper .slide-style-5 .slide-item-2 {
    margin-left: 4.166667vw;
}

#s800 .modal-swiper .slide-style-5 .slide-item {
    width: 41.822917vw;
}

#s800 .modal-swiper .slide-style-5 .slide-picture {
    height: 56.851852vh;
}

#s800 .modal-swiper .position-knob {
    -o-object-position: 50% 100%;
    object-position: 50% 100%;
}

#s800 .modal-swiper .position-wireless-charge {
    -o-object-position: 50% 0%;
    object-position: 50% 0%;
}

@media (max-aspect-ratio: 11/10) {
    #s800 .modal-swiper {
        height: auto;
    }

    #s800 .modal-swiper .swiper-wrapper {
        display: block;
        box-sizing: border-box;
        height: auto;
        padding-bottom: 13.888889vw;
    }

    #s800 .modal-swiper .swiper-slide {
        height: auto;
    }

    #s800 .modal-swiper .slide-title {
        font-size: 8.888889vw;
    }

    #s800 .modal-swiper .slide-intro {
        font-size: 3.888889vw;
    }

    #s800 .modal-swiper .swiper-slide .slide-content {
        margin-left: 6.666667vw;
    }

    #s800 .modal-swiper .slide-style-1 {
        display: block;
    }

    #s800 .modal-swiper .slide-style-1 .slide-picture {
        width: 100%;
    }

    #s800 .modal-swiper .slide-style-2 {
        display: block;
    }

    #s800 .modal-swiper .slide-style-2 .slide-items {
        display: block;
    }

    #s800 .modal-swiper .slide-style-2 .slide-item-2 {
        margin-left: 0;
    }

    #s800 .modal-swiper .slide-style-2 .slide-picture {
        width: 100%;
        height: auto;
    }

    #s800 .modal-swiper .slide-style-3 {
        display: block;
    }

    #s800 .modal-swiper .slide-style-3 .slide-items {
        display: block;
    }

    #s800 .modal-swiper .slide-style-3 .slide-item-group {
        position: relative;
        display: block;
        margin-left: 0;
    }

    #s800 .modal-swiper .slide-style-3 .slide-item {
        width: 100%;
    }

    #s800 .modal-swiper .slide-style-3 .slide-item-3 {
        position: static;
    }

    #s800 .modal-swiper .slide-style-3 .slide-picture {
        height: auto;
    }

    #s800 .modal-swiper .slide-style-4 .slide-items {
        display: block;
    }

    #s800 .modal-swiper .slide-style-4 .slide-item-2 {
        margin-left: 0;
    }

    #s800 .modal-swiper .slide-style-4 .slide-item-3 {
        margin-left: 0;
    }

    #s800 .modal-swiper .slide-style-4 .slide-picture {
        width: 100%;
        height: auto;
    }

    #s800 .modal-swiper .slide-style-5 {
        display: block;
    }

    #s800 .modal-swiper .slide-style-5 .lg\:b-32 {
        margin-bottom: 0;
    }

    #s800 .modal-swiper .slide-style-5 .slide-items {
        display: block;
    }

    #s800 .modal-swiper .slide-style-5 .slide-item-2 {
        display: flex;
        flex-wrap: wrap;
        margin-left: 0;
    }

    #s800 .modal-swiper .slide-style-5 .slide-item-2 .slide-content {
        order: 2;
    }

    #s800 .modal-swiper .slide-style-5 .slide-item {
        width: 100%;
    }

    #s800 .modal-swiper .slide-style-5 .slide-picture {
        width: 100%;
        height: auto;
    }
}

@media (max-aspect-ratio: 7/10) {
    #s800 .modal-swiper .slide-style-4 {
        display: block;
    }
}


#s800 .modal-arrownav-list {
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

#s800 .modal-arrownav-list .arrownav-item {
    position: absolute;
    z-index: 10;
    bottom: 3.125vw;
    flex-shrink: 0;
    width: 2.083333vw;
    cursor: pointer;
    transition: transform 0.8s, opacity 0.8s;
}

#s800 .modal-arrownav-list .arrownav-prev {
    left: 3.125vw;
}

#s800 .modal-arrownav-list .arrownav-prev:not(.arrownav-disabled):hover {
    transform: translateX(-0.520833vw);
}

#s800 .modal-arrownav-list .arrownav-next {
    right: 3.125vw;
}

#s800 .modal-arrownav-list .arrownav-next:not(.arrownav-disabled):hover {
    transform: translateX(0.520833vw);
}

#s800 .modal-arrownav-list .arrownav-disabled {
    cursor: default;
    opacity: 0;
}

@media (max-aspect-ratio: 11/10) {
    #s800 .modal-arrownav-list {
        display: none;
    }
}

#s800 .autoplay-trigger {
    position: absolute;
    top: 80%;
}

@media (max-aspect-ratio: 11/10) {

    #s800 .section-space,
    #s800 .section-driving,
    #s800 .section-safety {
        margin-top: -96px;
        padding-top: 96px;
    }
}

#s800 .section-header {
    position: relative;
}

#s800 .section-header .title {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9375vw;
    color: #ac9f96;
}

#s800 .section-header .line {
    display: block;
    width: 1.5625vw;
    height: 1px;
    margin-right: 0.520833vw;
    margin-left: 0.520833vw;
    background-color: #ac9f96;
}

#s800 .section-header .headline {
    font-size: 4.166667vw;
    background-image: radial-gradient(closest-side, #fffeef, #efceb6 25%, #b49782);
}

@media (max-aspect-ratio: 11/10) {
    #s800 .section-header .title {
        font-size: 1.57142857vw;
    }

    #s800 .section-header .line {
        width: 2.083333vw;
        margin-right: 1.388889vw;
        margin-left: 1.388889vw;
        background-color: #707070;
    }

    #s800 .section-header .headline {
        font-size: 5.7142857vw;
    }
}

@media (max-aspect-ratio: 7/10) {
    #s800 .section-header .title {
        font-size: 3.055556vw;
    }

    #s800 .section-header .headline {
        font-size: 11.111111vw;
    }
}

#s800 .animated .title .line {
    width: 2.760417vw;
    transition: width 0.8s cubic-bezier(0.26, 0.67, 0.48, 0.91);
}

@media (max-aspect-ratio: 11/10) {
    #s800 .animated .title .line {
        width: 4.166667vw;
    }
}

#s800 .tabnav-content {
    display: flex;
    align-items: center;
    flex-direction: column;
}

#s800 .tabnav-container {
    position: relative;
}

#s800 .tabnav-list {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

#s800 .tabnav-item {
    padding-bottom: 1.041667vw;
    font-size: 1.041667vw;
    cursor: pointer;
    transition: opacity 800ms;
    white-space: nowrap;
    opacity: 0.5;
    color: #edcead;
    outline: 0;
}

#s800 .tabnav-item+.tabnav-item {
    margin-left: 2.083333vw;
}

#s800 .tabnav-item.current {
    opacity: 1;
}

#s800 .tabnav-indicator {
    position: relative;
    width: 100%;
    height: 2px;
}

#s800 .tabnav-indicator::before {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    content: "";
    background-color: rgba(112, 112, 112, 0.6);
}

#s800 .tabnav-indicator::after {
    display: block;
    width: var(--indicator-width, 0);
    height: 100%;
    content: "";
    transition: width 800ms cubic-bezier(0.65, 0.05, 0.36, 1), transform 800ms cubic-bezier(0.65, 0.05, 0.36, 1);
    transform: translateX(var(--indicator-offset, 0));
    background-color: #edcead;
}

#s800 .stack-list {
    display: flex;
}

#s800 .tabnav-swiper .stack-list {
    text-align: center;
}

#s800 .stack-item {
    position: relative;
    width: 100%;
    transition: opacity 600ms cubic-bezier(0.65, 0.05, 0.36, 1);
    opacity: 0;
}

#s800 .stack-item+.stack-item {
    margin-left: -100%;
}

#s800 .stack-item.current {
    z-index: 1;
    transition-delay: 200ms;
    opacity: 1;
}

#s800 .stack-item .note {
    position: absolute;
    left: 0;
    display: block;
    width: 100%;
    font-size: 0.729167vw;
    opacity: 0.5;
}

@media (max-aspect-ratio: 11/10) {
    #s800 .stack-item .note {
        position: relative;
        width: auto;
        font-size: 1.7142857vw;
    }
}
@media (max-aspect-ratio: 7/10) {
    #s800 .stack-item .note {
        font-size: 2.777778vw;
    }
}
@media (max-aspect-ratio: 11/10) {
    #s800 .tabnav-content {
        position: relative;
        overflow: hidden;
        width: 100%;
    }

    #s800 .tabnav-container {
        position: relative;
        display: flex;
        line-height: 0;
        white-space: nowrap;
    }

    #s800 .tabnav-container.is-scroll {
        overflow-x: auto;
        overflow-y: hidden;
        justify-content: flex-start;
        -webkit-overflow-scrolling: touch;
    }

    #s800 .tabnav-container.is-scroll::-webkit-scrollbar {
        display: none;
    }

    #s800 .tabnav-wrapper {
        padding-right: 11.111111vw;
        padding-left: 11.111111vw;
    }

    #s800 .tabnav-list {
        position: relative;
        display: flex;
    }

    #s800 .tabnav-item {
        padding-bottom: 1.17857vw;
        font-size: 2.2857vw;
    }

    #s800 .tabnav-item+.tabnav-item {
        margin-left: 4.2857vw;
    }

}

@media (max-aspect-ratio: 7/10) {
    #s800 .tabnav-swiper .tabnav-content::before {
        left: 0;
        background-image: linear-gradient(90deg, #000 40%, transparent);
    }
    #s800 .tabnav-swiper .tabnav-content::before,
    #s800 .tabnav-swiper .tabnav-content::after {
        position: absolute;
        z-index: 1;
        top: -1.388889vw;
        width: 11.111111vw;
        height: 11.111111vw;
        content: "";
        pointer-events: none;
    }

    #s800 .tabnav-swiper .tabnav-content::after {
        right: 0;
        background-image: linear-gradient(90deg, transparent, #000 60%);
    }
    #s800 .tabnav-content {
        display: block;
    }

    #s800 .tabnav-item {
        padding-bottom: 3.333333vw;
        font-size: 4.444444vw;
    }

    #s800 .tabnav-item+.tabnav-item {
        margin-left: 8.333333vw;
    }

    #s800 .tabnav-swiper .stack-list {
        text-align: left;
    }
}

#s800 .background-swiper {
    padding-top: 10.208333vw;
    padding-bottom: 4.166667vw;
}

#s800 .background-swiper .gallery-background-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: opacity 800ms cubic-bezier(0.65, 0.05, 0.36, 1);
    opacity: 0;
}

#s800 .background-swiper .gallery-background-slide.current {
    opacity: 1;
}

#s800 .background-swiper .gallery {
    -webkit-clip-path: inset(0 0 2px 0);
    clip-path: inset(0 0 2px 0);
}

@media (max-aspect-ratio: 11/10) {
    #s800 .background-swiper {
        padding-bottom: 0;
    }

    #s800 .background-swiper.background-style-1 {
        padding-top: 7.142857vw;
    }

    #s800 .background-swiper.background-style-1 .gallery-background {
        height: 60.7142857vw;
    }

    #s800 .background-swiper.background-style-1 .tabnav-content {
        margin-top: 11.0714vw;
    }

    #s800 .background-swiper.background-style-2 {
        padding-top: 7.142857vw;
    }

    #s800 .background-swiper.background-style-2 .gallery-background {
        height: 60.7142857vw;
    }

    #s800 .background-swiper.background-style-2 .tabnav-content {
        margin-top: 28.611111vw;
    }

    #s800 .background-swiper.background-style-3 {
        padding-top: 7.142857vw;
    }

    #s800 .background-swiper.background-style-3 .gallery-background {
        height: 60.7142857vw;
    }

    #s800 .background-swiper.background-style-3 .tabnav-content {
        margin-top: 11.92857vw;
    }

    #s800 .section-configuration {
        overflow: hidden;
    }
}

@media (max-aspect-ratio: 11/10) and (min-aspect-ratio: 7/10) {
    #s800 .subsection-safety-5 .tabnav-swiper .stack-list {
        width: 49.2857vw;
        margin: 2.857vw auto 0;
    }
}

@media (max-aspect-ratio: 7/10) {
    #s800 .background-swiper.background-style-1 {
        padding-top: 13.888889vw;
    }

    #s800 .background-swiper.background-style-1 .gallery-background {
        height: 118.055556vw;
    }

    #s800 .background-swiper.background-style-1 .tabnav-content {
        margin-top: 21.666667vw;
    }

    #s800 .background-swiper.background-style-2 {
        padding-top: 20.833333vw;
    }

    #s800 .background-swiper.background-style-2 .gallery-background {
        height: 111.111111vw;
    }

    #s800 .background-swiper.background-style-3 .gallery-background {
        height: 118.055556vw;
    }

    #s800 .background-swiper.background-style-3 {
        padding-top: 20.833333vw;
    }

    #s800 .background-swiper.background-style-3 .tabnav-content {
        margin-top: 28.611111vw;
    }
}

#s800 .gallery-container {
    position: relative;
    overflow: hidden;
}

#s800 .gallery-container .gallery-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#s800 .gallery-container .gallery {
    position: relative;
}

#s800 .gallery-container .gallery-wrapper {
    display: flex;
}

#s800 .gallery-container .gallery-slide {
    position: relative;
    width: 100%;
}

#s800 .gallery-container .gallery-slide+.gallery-slide {
    margin-left: -100%;
}

#s800 .gallery-container .clip-item {
    position: relative;
    transition: -webkit-clip-path 0s 800ms;
    transition: clip-path 0s 800ms;
    transition: clip-path 0s 800ms, -webkit-clip-path 0s 800ms;
}

#s800 .gallery-container .clip-item img,
#s800 .gallery-container .clip-item video {
    transition: transform 0s 800ms;
    transform: scale(1.2);
}

#s800 .gallery-container .current .clip-item {
    z-index: 1;
    transition: -webkit-clip-path 800ms cubic-bezier(0.65, 0.05, 0.36, 1);
    transition: clip-path 800ms cubic-bezier(0.65, 0.05, 0.36, 1);
    transition: clip-path 800ms cubic-bezier(0.65, 0.05, 0.36, 1), -webkit-clip-path 800ms cubic-bezier(0.65, 0.05, 0.36, 1);
}

#s800 .gallery-container .current img,
#s800 .gallery-container .current video {
    transition: transform 800ms;
    transform: scale(1);
}

#s800 .gallery-container .current .clip-item {
    -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}

#s800 .gallery-container .left .clip-item {
    -webkit-clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
    clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
}

#s800 .gallery-container .right .clip-item {
    -webkit-clip-path: polygon(100% 0%, 100% 0%, 100% 100%, 100% 100%);
    clip-path: polygon(100% 0%, 100% 0%, 100% 100%, 100% 100%);
}

#s800 .gallery-container .swiper {
    position: absolute;
    z-index: 9;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#s800 .tabnav-layout-1 .tabnav-content {
    position: absolute;
    z-index: 10;
    right: 0;
    bottom: 5.208333vw;
    left: 0;
}

@media (max-aspect-ratio: 11/10) {
    #s800 .tabnav-layout-1 .tabnav-content {
        position: relative;
        right: auto;
        bottom: auto;
        left: auto;
    }

    #s800 .subsection-space-6 .tabnav-layout-1 .tabnav-content .stack-list {
        width: 100%;
        margin: 2.857vw 0 0;
        text-align: center;
    }

    #s800 .subsection-space-6 .tabnav-layout-1 .tabnav-content {
        display: block;
    }
}

@media (max-aspect-ratio: 7/10) {
    #s800 .subsection-space-6 .tabnav-layout-1 .tabnav-content .stack-list {
        margin: 2.857vw 0 0 11.111111vw;
        text-align: left;
    }
}

#s800 .color-selection {
    position: relative;
    overflow: hidden;
}

@media (max-aspect-ratio: 11/10) {
    #s800 .color-selection .autoplay-trigger {
        top: 90%;
    }
}
@media (max-aspect-ratio: 11/10) and (min-aspect-ratio: 7/10) {
    #s800 .tabnav-layout-1 .tabnav-content .stack-list {
        width: 51vw;
        margin: 2.857vw auto 0
    }
}
#s800 .colournav-container {
    position: absolute;
    z-index: 10;
    right: 0;
    bottom: 5.208333vw;
    left: 0;
    display: flex;
    align-items: center;
    flex-direction: column;
}

#s800 .colournav-container .label-list {
    position: relative;
    display: flex;
    width: 100%;
    text-align: center;
}

#s800 .colournav-container .label-item {
    width: 100%;
    font-size: 1.666667vw;
    line-height: 1.25;
    transition: opacity 600ms cubic-bezier(0.65, 0.05, 0.36, 1);
    opacity: 0;
}

#s800 .colournav-container .label-item+.label-item {
    position: absolute;
    top: 0;
    right: 0;
}

#s800 .colournav-container .label-item.current {
    z-index: 1;
    transition-delay: 200ms;
    opacity: 1;
}

#s800 .colournav-container .colournav-list {
    display: flex;
}

#s800 .colournav-container .colournav-item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.614583vw;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    transition: opacity 800ms cubic-bezier(0.65, 0.05, 0.36, 1);
    opacity: 0.5;
}

#s800 .colournav-container .colournav-item+.colournav-item {
    margin-left: 1.5625vw;
}

#s800 .colournav-container .colournav-item.current {
    cursor: default;
    opacity: 1;
}

#s800 .colournav-container .colournav-item.current .colour-swatch-indicator {
    opacity: 1;
}

#s800 .colournav-container .colour-swatch-indicator {
    position: absolute;
    transition: opacity 800ms cubic-bezier(0.65, 0.05, 0.36, 1);
    pointer-events: none;
    opacity: 0;
}

#s800 .colournav-container .colour-swatch {
    width: 100%;
    pointer-events: none;
}

@media (max-aspect-ratio: 11/10) {
    #s800 .colournav-container {
        position: relative;
        bottom: auto;
    }

    #s800 .colournav-container .label-item {
        font-size: 3.42857vw;
    }

    #s800 .colournav-container .colournav-item {
        width: 3.5vw;
    }

    #s800 .colournav-container .colournav-item+.colournav-item {
        margin-left: 2.857vw;
    }
}

@media (max-aspect-ratio: 7/10) {
    #s800 .colournav-container .label-item {
        font-size: 6.666667vw;
    }

    #s800 .colournav-container .colournav-item {
        width: 6.944444vw;
    }

    #s800 .colournav-container .colournav-item+.colournav-item {
        margin-left: 6.944444vw;
    }
}

#s800 .carousel-swiper {
    text-align: center;
}

#s800 .carousel-swiper .arrownav-list {
    position: absolute;
    z-index: 3;
    top: 41.145833vw;
    right: 0;
    display: flex;
    justify-content: space-between;
    width: 5.416667vw;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

@media (max-aspect-ratio: 11/10) {
    #s800 .carousel-swiper .arrownav-list {
        display: none;
    }
}

#s800 .carousel-swiper .arrownav-list .picture-button-container {
    width: 2.083333vw;
    height: 2.447917vw;
}

#s800 .carousel-swiper .swiper-wrapper,
#s800 .carousel-swiper .slide-media,
#s800 .carousel-swiper .slide-copy-container,
#s800 .carousel-swiper .slide-copy {
    transition-timing-function: cubic-bezier(0.65, 0.05, 0.36, 1);
}

#s800 .carousel-swiper .slide-copy-container {
    transition: opacity 0.4s;
    opacity: 0;
}

#s800 .carousel-swiper .swiper-slide-active .slide-copy-container {
    transition: opacity 0.4s 0.4s;
    opacity: 1;
}

@media (max-aspect-ratio: 11/10) {
    #s800 .carousel-swiper {
        text-align: left;
    }

    #s800 .carousel-swiper .slide-copy-container {
        transition: none !important;
        opacity: 1 !important;
    }

    #s800 .carousel-swiper .arrownav-list {
        display: none;
    }

    #s800 .carousel-swiper .xs-scrollbar {
        position: relative;
        overflow: hidden;
        width: 25vw;
        height: 2px;
        margin-top: 7.777778vw;
        background-color: rgba(112, 112, 112, 0.6);
    }

    #s800 .carousel-swiper .swiper-scrollbar-drag {
        background-color: #edcead;
    }
}

#s800 .lg-text-mask {
    position: relative;
}

#s800 .lg-text-mask::before,
#s800 .lg-text-mask::after {
    position: absolute;
    z-index: 2;
    left: 0;
    width: 100%;
    content: "";
    pointer-events: none;
}

@media (max-aspect-ratio: 11/10) {

    #s800 .lg-text-mask::before,
    #s800 .lg-text-mask::after {
        display: none;
    }
}

#s800 .lg-text-mask::before {
    top: 0;
    height: 17.708333vw;
    background-image: linear-gradient(0deg, transparent, #000);
}

#s800 .lg-text-mask::after {
    bottom: 0;
    height: 26.041667vw;
    background-image: linear-gradient(180deg, transparent, #000);
}

@media (max-aspect-ratio: 11/10) {
    #s800 .xs-line-mask {
        position: relative;
        overflow: hidden;
    }

    #s800 .xs-line-mask::before,
    #s800 .xs-line-mask::after {
        position: absolute;
        z-index: 2;
        left: 0;
        width: 100%;
        height: 2px;
        content: "";
        pointer-events: none;
        background-color: #000;
    }

    #s800 .xs-line-mask::before {
        top: -1px;
    }

    #s800 .xs-line-mask::after {
        bottom: -1px;
    }
}

#s800 .intro-line {
    width: 3.125vw;
    height: 1px;
    background-color: rgba(165, 142, 126, 0.7);
}

@media (max-aspect-ratio: 11/10) {
    #s800 .intro-line {
        width: 3.2142vw;
    }
}

@media (max-aspect-ratio: 7/10) {
    #s800 .intro-line {
        width: 8.333333vw;
    }
}

#s800 .stat-list {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
    white-space: nowrap;
}

#s800 .stat-list>.stat-item {
    position: relative;
}

#s800 .stat-list .stat-line {
    flex-shrink: 0;
    width: 1px;
    height: 3.4375vw;
    margin-right: 2.083333vw;
    margin-left: 2.083333vw;
    background-color: rgba(165, 142, 126, 0.7);
}

#s800 .stat-list .stat-content {
    font-size: 0.885417vw;
}

#s800 .stat-list .stat-content span {
    display: inline-block;
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
}

#s800 .stat-list .stat-content .stat-caption {
    display: block;
    margin-bottom: 0.416667vw;
    background-image: linear-gradient(180deg, #e0c69f, #e7d2ae);
}

#s800 .stat-list .stat-content .stat-value {
    font-size: 2.604167vw;
    line-height: 1.25;
    background-image: linear-gradient(180deg, #ead6b5, #b6a496);
}

#s800 .stat-list .stat-content .stat-unit {
    background-image: linear-gradient(180deg, #dfceb4, #c2b09f);
}

#s800 .stat-list.list-style-3 {
    align-items: center;
}

#s800 .stat-list.list-style-3 .stat-group {
    display: flex;
    align-items: flex-end;
}

#s800 .stat-list.list-style-3 .stat-title {
    margin-bottom: 1.041667vw;
    font-size: 0.885417vw;
}

#s800 .stat-list.list-style-3 .stat-item {
    position: relative;
    margin-left: 0.520833vw;
}

#s800 .stat-list.list-style-3 .stat-item+.stat-item {
    margin-left: 2.083333vw;
}

#s800 .stat-list.list-style-3 .stat-line {
    margin-right: 2.5vw;
    margin-left: 2.5vw;
}

@media (max-aspect-ratio: 11/10) {
    #s800 .stat-list {
        margin-top: 2.5714vw;
    }

    #s800 .stat-list .stat-content {
        font-size: 1.7142857vw;
    }

    #s800 .stat-list .stat-content .stat-unit {
        font-size: 1.7142857vw;
    }

    #s800 .subsection-design-1 .stat-list .stat-content {
        font-size: 1.2857vw;
    }

    #s800 .subsection-design-1 .stat-list .stat-content .stat-unit {
        font-size: 1.42857vw;
    }

    #s800 .subsection-space-1 .stat-list .stat-content,
    #s800 .subsection-space-1 .stat-list .stat-content .stat-unit {
        font-size: 1.7142857vw;
    }

    #s800 .stat-list .stat-content .stat-caption {
        opacity: 0.7;
    }

    #s800 .stat-list .stat-content .stat-value {
        font-size: 3.5714vw;
    }

}

@media (max-aspect-ratio: 11/10) and (min-aspect-ratio: 7/10) {
    #s800 .video-container{
        margin-top: 0;
    }
    #s800 .subsection-design-1 .stat-list{
        align-items: end;
    }
    #s800 .subsection-design-1 .stat-list .stat-line{
        height: 4.5vw;
        margin-right: 3.2142857vw;
        margin-left: 3.2142857vw;
    }
    #s800 .section-modal .modal-close-button {
        width: 5.7142857vw;
    }

    #s800 .section-modal .modal-close-container::before {
        height: 10.833333vw;
    }

    #s800 .section-modal .modal-swiper .slide-item{
        display: flex;
        flex-direction: column;
    }

    #s800 .section-modal .modal-swiper .slide-item{
        display: flex;
        flex-direction: column;
    }


    #s800 .section-modal .modal-swiper .swiper-slide {
        display: flex;
        flex-direction: column;
    }

    #s800 .section-modal .modal-swiper .swiper-slide .slide-picture {
        order: 1;
    }

    #s800 .section-modal .modal-swiper .swiper-slide .slide-content {
        order: 0;
    }

    #s800 .section-modal .modal-swiper .slide-content {
        width: 45vw;
        margin: 0 auto 4.57142857vw;
        text-align: center;
    }

    #s800 .section-modal .modal-swiper .swiper-slide:first-child .slide-content {
        margin-top: 10.7142857vw;
    }

    #s800 .section-modal .modal-swiper .slide-content .slide-title {
        font-size: 4vw;
    }

    #s800 .section-modal .modal-swiper .slide-content .slide-intro {
        font-size: 2.2857vw;
    }
    
    #s800 .stat-list.list-style-2 .stat-line{
        margin-right: 3vw;
        margin-left: 3vw;
    }

    #s800 .section-modal .modal-wrapper {
        width: 90.857142857vw;
        margin: 11.7857vw auto 0;
    }

    #s800 .subsection-design-2 .intro-1 {
        width: 50.571428vw;
        margin: 0 auto;
    }

    #s800 .subsection-design-2 .intro-2 {
        width: 41.571428vw;
        margin: 0 auto;
    }

    #s800 .subsection-design-6 .intro {
        width: 47.571428vw;
        margin: 0 auto;
    }

    #s800 .subsection-space-1 .stat-list .stat-line {
        height: 6.2857vw;
    }

    #s800 .subsection-space-1 .intro {
        width: 49.571428vw;
        margin: 0 auto;
    }

    #s800 .subsection-space-2 .intro {
        width: 40.571428vw;
        margin: 0 auto;
    }

    #s800 .subsection-space-3 .intro {
        width: 49.571428vw;
        margin: 0 auto;
    }

    #s800 .subsection-space-5 .intro {
        width: 45.571428vw;
        margin: 0 auto;
    }

    #s800 .subsection-space-12 .intro {
        width: 100%;
        text-align: center;
        margin: 2.285714vw auto 0;
    }

    #s800 .subsection-safety-3 .tabnav-swiper .stack-list{
        width: 51.642857vw;
        margin: 2.857vw auto 0;
    }
}

@media (max-aspect-ratio: 7/10) {
    #s800 .stat-list {
        flex-wrap: wrap;
    }

    #s800 .stat-list .stat-content,
    #s800 .stat-list .stat-content .stat-unit {
        font-size: 3.333333vw !important;
    }

    #s800 .stat-list .stat-content .stat-value {
        font-size: 8.333333vw !important;
    }

    #s800 .stat-list.list-style-1 .stat-item {
        min-width: var(--item-max-width, none);
        padding-right: 8.333333vw;
        padding-left: 8.333333vw;
    }

    #s800 .stat-list.list-style-1 .stat-line {
        height: 8.333333vw;
        margin-right: 0;
        margin-left: 0;
    }

    #s800 .stat-list.list-style-1 .stat-space {
        width: 100%;
        height: 6.666667vw;
        background-color: transparent;
    }

    #s800 .stat-list.list-style-2 {
        align-items: flex-start;
        flex-direction: column;
        margin-left: 11.111111vw;
    }

    #s800 .stat-list.list-style-2 .stat-line {
        height: 1px !important;
        margin-top: 1.666667vw;
        margin-right: 0;
        margin-bottom: 3.333333vw;
        margin-left: 0;
    }

    #s800 .stat-list.list-style-3 {
        align-items: flex-start;
        flex-direction: column;
        margin-left: 11.111111vw;
    }

    #s800 .stat-list.list-style-3 .stat-group {
        align-items: flex-start;
        flex-direction: column;
    }

    #s800 .stat-list.list-style-3 .stat-title {
        font-size: 3.333333vw;
    }

    #s800 .stat-list.list-style-3 .stat-item {
        margin-top: 3.333333vw;
        margin-left: 0;
    }

    #s800 .stat-list.list-style-3 .stat-item+.stat-item {
        margin-top: 4.444444vw;
        margin-left: 0;
    }

    #s800 .stat-list.list-style-3 .stat-line {
        width: 28.055556vw;
        height: 1px;
        margin-top: 4.444444vw;
        margin-right: 0;
        margin-bottom: 8.888889vw;
        margin-left: 0;
    }
}

#s800 .copy-item {
    position: absolute;
    z-index: 11;
    right: 0;
    left: 0;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

#s800 .copy-item.copy-item-center {
    text-align: center;
}

#s800 .copy-item.t-80 {
    top: 4.166667vw;
}

#s800 .copy-item.t-110 {
    top: 5.729167vw;
}

#s800 .copy-item.t-140 {
    top: 7.291667vw;
}

#s800 .copy-item.t-210 {
    top: 10.9375vw;
}

#s800 .copy-item.b-100 {
    bottom: 5.208333vw;
}

@media (max-aspect-ratio: 11/10) {
    #s800 .copy-item {
        position: static;
        text-align: center;
    }

    #s800 .copy-item.sm {
        margin-top: 2.2857vw;
    }

    #s800 .copy-item.sm .intro-1 {
        font-size: 2vw;
    }

    #s800 .copy-item.copy-item-center {
        margin-left: 0;
    }
}

@media (max-aspect-ratio: 799/712) {
    #s800 .subsection-design-2 .copy-item.t-110{
        top: 10.729167vw;
    }
}
@media (max-aspect-ratio: 7/10) {
    #s800 .copy-item {
        margin-left: 11.111111vw;
        text-align: left;
    }
}

#s800 .picture-button-container {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

#s800 .picture-button-container.button-normal {
    width: 10.208333vw;
}

#s800 .picture-button-container.button-wide {
    width: 13.958333vw;
}

@media (hover: hover) {
    #s800 .picture-button-container:hover .button-before {
        opacity: 0;
    }

    #s800 .picture-button-container:hover:not(.arrownav-disabled) .button-after,
    #s800 .picture-button-container:hover:not(.arrownav-disabled) .button-x,
    #s800 .picture-button-container:hover:not(.arrownav-disabled) .button-arrownav {
        opacity: 1;
    }

    #s800 .picture-button-container:hover .button-arrow {
        transform: translateX(0.520833vw);
    }
}

#s800 .picture-button-container .button-wrapper {
    position: relative;
    pointer-events: none;
}

#s800 .picture-button-container .button-border {
    position: relative;
    z-index: 1;
}

#s800 .picture-button-container .button-picture {
    z-index: 2;
}

#s800 .picture-button-container .button-picture,
#s800 .picture-button-container .button-shine,
#s800 .picture-button-container .button-x,
#s800 .picture-button-container .button-arrownav {
    transition: opacity 0.8s;
}

#s800 .picture-button-container .button-after {
    opacity: 0;
}

#s800 .picture-button-container .button-link,
#s800 .picture-button-container .button-x,
#s800 .picture-button-container .button-picture,
#s800 .picture-button-container .button-shine,
#s800 .picture-button-container .button-arrownav {
    position: absolute;
    top: 0;
    left: 0;
}

#s800 .picture-button-container .button-link {
    z-index: 5;
    width: 100%;
    height: 100%;
}

#s800 .picture-button-container .button-shine {
    z-index: 3;
}

#s800 .picture-button-container .button-x,
#s800 .picture-button-container .button-arrownav {
    z-index: 4;
    opacity: 0.6;
}

#s800 .picture-button-container .button-arrownav {
    opacity: 0.4;
}

#s800 .picture-button-container.arrownav-disabled {
    cursor: default;
}

#s800 .picture-button-container.arrownav-disabled .button-before {
    opacity: 1;
}

#s800 .picture-button-container.arrownav-disabled .button-shine,
#s800 .picture-button-container.arrownav-disabled .button-after .button-background {
    opacity: 0;
}

#s800 .picture-button-container .button-content {
    position: absolute;
    z-index: 2;
    display: flex;
    align-items: center;
}

#s800 .picture-button-container .button-copy {
    font-size: 0.9375vw;
    white-space: nowrap;
    color: #fcecd5;
}

#s800 .picture-button-container .button-arrow {
    width: 1.041667vw;
    margin-left: 0.416667vw;
    transition: transform 0.8s;
}

@media (max-aspect-ratio: 11/10) {
    #s800 .picture-button-container.button-normal {
        width: 17.5714vw;
    }

    #s800 .picture-button-container.button-wide {
        width: 49.305556vw;
    }

    #s800 .subsection-space-13 .stat-list .stat-line {
        height: 7vw;
    }

    #s800 .subsection-space-13 .stat-list .stat-content .stat-value {
        font-size: 4.2142857vw;
    }

    #s800 .subsection-space-13 .stat-list .stat-content {
        font-size: 1.7142857vw;
    }

    #s800 .subsection-space-13 .stat-list .stat-content .stat-unit {
        font-size: 1.7142857vw;
    }

    #s800 .picture-button-container .button-copy {
        font-size: 1.85714vw;
    }

    #s800 .picture-button-container .button-arrow {
        display: none;
    }
}

@media (max-aspect-ratio: 11/10) and (min-aspect-ratio: 7/10) {
    #s800 .subsection-space-13 .video-container{
        margin-top: 5.7142857vw;
    }
    #s800 .subsection-space-13 .picture-button-container.button-wide {
        width: 25.357vw;
    }
    #s800 .subsection-space-1 .headline .xs {
        display: block;
    }

    #s800 .subsection-space-14 {
        text-align: center;
    }

    #s800 .subsection-space-14 .mx-auto {
        width: 74.57142857vw;
        margin-left: 10vw;
    }

    #s800 .subsection-space-14 .gradient-headline {
        margin-left: 0;
    }

    #s800 .subsection-space-14 .mx-auto .slide-copy {
        text-align: left;
    }

    #s800 .carousel-swiper .xs-scrollbar {
        margin-top: 5vw;
    }

    #s800 .subsection-driving-1 .headline .xs {
        display: block;
    }

    #s800 .subsection-driving-2 .copy-item .intro {
        width: 49.2857vw;
        margin: 0 auto;
    }

    #s800 .subsection-driving-3 .tabnav-layout-1 .tabnav-content .stack-list {
        width: 49vw;
    }

    #s800 .subsection-driving-4 .copy-item .intro {
        width: 52.2142857vw;
        margin: 0 auto;
    }

    #s800 .subsection-driving-4 .stat-list {
        margin-top: 7.7142857vw;
    }

    #s800 .subsection-driving-4 .stat-list .stat-line {
        position: relative;
        top: -1.7857vw;
        height: 12vw;
        margin: 0 5.7143vw;
    }

    #s800 .subsection-driving-4 .stat-list.list-style-3 .stat-item {
        margin-left: 0;
    }

    #s800 .subsection-driving-4 .stat-list .stat-group .stat-item:nth-of-type(1) .stat-content {
        margin-right: 6.7857vw;
    }

    #s800 .subsection-driving-4 .stat-list .stat-content {
        font-size: 1.7142857vw;
    }

    #s800 .subsection-driving-4 .stat-list .stat-content .stat-unit {
        font-size: 1.7142857vw;
    }

    #s800 .subsection-driving-4 .stat-list.list-style-3 .stat-title {
        position: absolute;
        top: -1.7857vw;
        font-size: 1.7142857vw;
    }

    #s800 .subsection-driving-5 .stat-list .stat-content {
        font-size: 1.7142857vw;
    }

    #s800 .subsection-driving-5 .stat-list .stat-content .stat-unit {
        font-size: 1.7142857vw;
    }

    #s800 .subsection-driving-5 .stat-list .stat-line {
        height: 6.642857vw;
    }

    #s800 .subsection-driving-5 .stat-list .stat-content .stat-value {
        font-size: 4.2857vw;
    }

    #s800 .subsection-driving-6 .mx-auto {
        text-align: center;
    }

    #s800 .subsection-driving-6 .gradient-headline {
        margin-left: 0;
    }

    #s800 .subsection-driving-6 .intro {
        width: 49.2857vw;
        text-align: center;
        margin: 4vw auto 0;
    }

    #s800 .subsection-safety-1 .headline .xs {
        display: block;
    }

    #s800 .subsection-safety-2 .stat-list .stat-line {
        height: 6.857142vw;
    }

    #s800 .subsection-safety-2 .stat-list .stat-content {
        font-size: 1.7142857vw;
    }

    #s800 .subsection-safety-2 .stat-list .stat-content .stat-value {
        font-size: 4.285714vw;
    }

    #s800 .subsection-safety-3 .background-swiper.background-style-2 .tabnav-content {
        margin-top: 11.142857vw;
    }

    #s800 .subsection-safety-4 {
        text-align: center;
    }

    #s800 .subsection-safety-4 .mx-auto {
        width: 74.57142857vw;
        margin-left: 8.57142857vw;
    }

    #s800 .subsection-safety-4 .gradient-headline {
        margin-left: 0;
    }

    #s800 .subsection-safety-4 .slide-copy {
        width: 57.142857vw;
        text-align: left;
    }

    #s800 .section-configuration .stat-list .stat-content .stat-value {
        font-size: 4.2857vw;
    }

    #s800 .section-configuration .stat-list.list-style-1 .stat-space {
        width: 100%;
        height: 5vw;
        background-color: transparent;
    }

    #s800 .section-configuration .stat-list .stat-line {
        height: 4.285714vw;
    }

    #s800 .section-configuration .stat-container p.mx-auto {
        font-size: 1.285714vw;
        margin-top: 4.285714vw;
        width: 39.7142857vw;
    }

    #s800 .section-footnote .footnote-container {
        width: 87vw;
        margin: 0 auto;
    }

    #s800 .section-footnote .footnote-container .footnote-list {
        font-size: 1.7142857vw;
    }
}


@media (max-aspect-ratio: 7/10) {
    #s800 .picture-button-container.button-normal {
        width: 34.166667vw;
    }

    #s800 .picture-button-container .button-copy {
        font-size: 3.611111vw;
    }
    #s800 .subsection-space-13{
        overflow: hidden;
    }
}

#s800 .sticky-clip {
    position: relative;
    min-height: 150vh;
}

#s800 .sticky-clip .clip-contianer {
    position: relative;
    width: 100%;
    height: 100%;
}

#s800 .sticky-clip .clip-item {
    position: relative;
    display: flex;
    overflow: hidden;
    justify-content: center;
    width: 100%;
    height: 100%;
}

#s800 .sticky-clip .clip-picture {
    flex-shrink: 0;
    max-width: none;
}

#s800 .sticky-clip .anim-trigger {
    position: absolute;
    top: 90vh;
}

#s800 .sticky-clip.sticky-clip-space .clip-contianer {
    background-image: linear-gradient(180deg, #271a0a, #160e0a);
}

#s800 .sticky-clip.sticky-clip-space .clip-item {
    -webkit-clip-path: inset(30% 8% 30% 8%);
    clip-path: inset(30% 8% 30% 8%);
}

#s800 .sticky-clip.sticky-clip-space .clip-picture {
    transform: scale(0.85);
}

#s800 .sticky-clip.sticky-clip-safety .clip-contianer {
    background-image: linear-gradient(180deg, #261d0a, #160e0a);
}

#s800 .sticky-clip.sticky-clip-safety .clip-item {
    -webkit-clip-path: inset(30% 8% 30% 8%);
    clip-path: inset(30% 8% 30% 8%);
}

#s800 .sticky-clip.sticky-clip-safety .clip-picture {
    transform: scale(0.85);
}

#s800 .sticky-clip.sticky-clip-driving .clip-contianer {
    background-image: linear-gradient(180deg, #3c2716, #160e0a);
}

#s800 .sticky-clip.sticky-clip-driving .clip-item {
    -webkit-clip-path: inset(30% 8% 30% 8%);
    clip-path: inset(30% 8% 30% 8%);
}

#s800 .sticky-clip.sticky-clip-driving .clip-picture {
    transform: scale(0.85);
}

#s800 .sticky-clip.animated .fadeup-item {
    transition: opacity 0.8s ease-in, transform 0.8s cubic-bezier(0.26, 0.67, 0.48, 0.91);
    transform: translate3d(0, 0, 0);
    opacity: 1;
}

#s800 .sticky-clip.animated .clip-item {
    transition: -webkit-clip-path 0.8s cubic-bezier(0.26, 0.67, 0.48, 0.91);
    transition: clip-path 0.8s cubic-bezier(0.26, 0.67, 0.48, 0.91);
    transition: clip-path 0.8s cubic-bezier(0.26, 0.67, 0.48, 0.91), -webkit-clip-path 0.8s cubic-bezier(0.26, 0.67, 0.48, 0.91);
    -webkit-clip-path: inset(0%);
    clip-path: inset(0%);
}

#s800 .sticky-clip.animated .clip-picture {
    transition: transform 0.8s cubic-bezier(0.26, 0.67, 0.48, 0.91);
    transform: scale(1);
}

#s800 .sticky-clip .fadeup {
    transform: translate3d(0, 40px, 0);
    opacity: 0;
}

#s800 .sticky-clip.animated .fadeup.animated {
    transform: translate3d(0, 0, 0);
    opacity: 1;
}

@media (max-aspect-ratio: 11/10) {
    #s800 .sticky-clip {
        height: auto;
        min-height: auto;
    }

    #s800 .sticky-clip .sticky {
        position: relative;
        overflow: visible;
        height: auto;
    }

    #s800 .sticky-clip .anim-trigger {
        top: 0;
    }

    #s800 .sticky-clip .clip-item {
        -webkit-clip-path: none !important;
        clip-path: none !important;
    }

    #s800 .sticky-clip .clip-item .clip-picture,
    #s800 .sticky-clip .clip-item .clip-image {
        width: 100%;
        transform: none;
    }

    #s800 .sticky-clip .animated .line {
        width: 4.444444vw;
    }
}

#s800 .back-to-top {
    position: fixed;
    z-index: 100;
    right: 3.125vw;
    bottom: 3.125vw;
    width: 2.5vw;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    transition: opacity 500ms;
    pointer-events: none;
    opacity: 0;
}

#s800 .back-to-top.show {
    pointer-events: auto;
    opacity: 1;
}

@media (max-aspect-ratio: 11/10) {
    #s800 .back-to-top {
        right: 8.333333vw;
        bottom: 8.333333vw;
        width: 9.305556vw;
    }
}

#s800 {
    font-size: 0.9375vw;
    font-weight: 400;
    line-height: 1.6;
    color: #ac9f96;
    background-color: #000;
}

@media (max-aspect-ratio: 11/10) {
    #s800 {
        font-size: 2vw;
    }
}

@media (max-aspect-ratio: 7/10) {
    #s800 {
        font-size: 3.888889vw;
    }
}

#s800 .section-welcome {
    z-index: 1;
    height: 200vh;
}

#s800 .section-welcome .sticky {
    height: 100vh;
}

#s800 .section-welcome .logo-video-container {
    position: absolute;
    z-index: 3;
    top: 0;
    left: 0;
    width: 100%;
    transition: transform 0.8s cubic-bezier(0.65, 0.05, 0.36, 1);
    background-color: #000;
}

#s800 .section-welcome .logo-video {
    transition: opacity 400ms;
    opacity: 0;
}

#s800 .section-welcome .logo-video.lazyloaded {
    opacity: 1;
}

#s800 .section-welcome.animated .logo-video-container {
    transform: translateY(-101%);
}

#s800 .section-welcome .content-container {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#s800 .section-welcome .slogan-container {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
}

#s800 .section-welcome .slogan {
    margin-left: 0.1em;
    font-size: 2.916667vw;
    letter-spacing: 0.1em;
    color: #fff;
    background-image: radial-gradient(#fffdf0, #d0c2a8);
}

#s800 .section-welcome .play-button-container {
    position: absolute;
    z-index: 2;
    right: 5.208333vw;
    bottom: 3.75vw;
    width: 2.5vw;
}

@media (max-aspect-ratio: 11/10) {
    #s800 .section-welcome {
        height: auto;
    }

    #s800 .section-welcome .sticky {
        position: relative;
        height: 100vh;
    }

    #s800 .section-welcome .slogan-container {
        transition: opacity 0.8s 0.8s;
        opacity: 0;
    }

    #s800 .section-welcome.animated .slogan-container {
        opacity: 1;
    }

    #s800 .section-welcome .slogan {
        font-size: 4.57142857vw;
    }

    #s800 .section-welcome .play-button-container {
        right: 8.333333vw;
        bottom: 8.333333vw;
        width: 8.055556vw;
    }
}
@media (max-aspect-ratio: 7/10) {
    #s800 .section-welcome .slogan {
        font-size: 7.777778vw;
    }
}
#s800 .section-hero {
    height: 220vh;
}

#s800 .section-hero .sticky {
    margin-top: -100vh;
}

#s800 .section-hero .hero-content {
    position: absolute;
    z-index: 10;
    top: 8.333333vw;
    right: 0;
    left: 0;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

#s800 .section-hero .logo {
    width: 38.020833vw;
}

#s800 .section-hero .hero-picture-container {
    position: relative;
    overflow: hidden;
}

#s800 .section-hero .hero-picture-thumb {
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#s800 .section-hero .hero-picture {
    position: relative;
    aspect-ratio: 1920/1080;
}

#s800 .section-hero .button-container {
    position: absolute;
    z-index: 10;
    right: 0;
    bottom: 3.333333vw;
    left: 0;
}

#s800 .section-hero .hero-note {
    position: absolute;
    z-index: 10;
    right: 3.333333vw;
    bottom: 3.333333vw;
    width: 18.541667vw;
}

@media (max-aspect-ratio: 11/10) {
    #s800 .section-hero {
        height: auto;
    }

    #s800 .section-hero .sticky {
        margin-top: 0;
    }

    #s800 .section-hero .hero-content {
        top: 8.571vw;
    }

    #s800 .section-hero .logo {
        width: 41.666667vw;
        transform: translate3d(0, 40px, 0);
        opacity: 0;
    }

    #s800 .section-hero .animated .logo {
        transition: opacity 0.8s ease-in, transform 0.8s cubic-bezier(0.26, 0.67, 0.48, 0.91);
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }

    #s800 .section-hero .hero-picture {
        aspect-ratio: auto;
    }

    #s800 .section-hero .button-container {
        bottom: 22.222222vw;
    }

    #s800 .section-hero .hero-note {
        right: 5.555556vw;
        bottom: 5.555556vw;
        width: 49.444444vw;
    }
}

@media (max-aspect-ratio: 7/10) {
    #s800 .section-hero .hero-picture {
        aspect-ratio: 720/1280;
    }

    #s800 .section-hero .hero-content {
        top: 22.222222vw;
    }
}

#s800 .subsection-design-1 .anim-trigger {
    position: absolute;
    top: 60%;
}

#s800 .subsection-design-1 .picture-maextro {
    position: relative;
    z-index: 2;
    width: 91.458333vw;
    transform: translateY(40px);
    opacity: 0.2;
}

#s800 .subsection-design-1 .section-header {
    position: relative;
    z-index: 3;
    margin-top: -3.125vw;
    transform: translateY(100px);
    opacity: 0;
}

#s800 .subsection-design-1.animated .picture-maextro,
#s800 .subsection-design-1.animated .section-header {
    transition: opacity 1.3s ease-in, transform 1.3s cubic-bezier(0.26, 0.67, 0.48, 0.91);
    transform: translateY(0);
    opacity: 1;
}

#s800 .subsection-design-1 .video-container {
    overflow: hidden;
    margin-top: -8.854167vw;
}

#s800 .subsection-design-1 .video-container::before,
#s800 .subsection-design-1 .video-container::after {
    position: absolute;
    z-index: 1;
    left: 0;
    width: 100%;
    height: 11.979167vw;
    content: "";
    pointer-events: none;
}

#s800 .subsection-design-1 .video-container::before {
    top: -2px;
    background-image: linear-gradient(180deg, #000 45%, transparent);
}

#s800 .subsection-design-1 .video-container::after {
    bottom: -2px;
    background-image: linear-gradient(0deg, #000 45%, transparent);
}

#s800 .subsection-design-1 .content-container {
    position: relative;
    z-index: 3;
    margin-top: -7.291667vw;
}

@media (max-aspect-ratio: 11/10) {
    #s800 .subsection-design-1 .anim-trigger {
        top: 50%;
    }
    #s800 .subsection-design-1 .video-container {
        margin-top: -5vw;
    }
    #s800 .subsection-design-1 .picture-maextro {
        width: 95vw;
    }

    #s800 .subsection-design-1 .section-header {
        margin-top: -5vw;
    }


    #s800 .subsection-design-1 .video-container::before,
    #s800 .subsection-design-1 .video-container::after {
        height: 11.111111vw;
    }

    #s800 .subsection-design-1 .content-container {
        margin-top: -9.291667vw;
    }
}

@media (max-aspect-ratio: 7/10) {
    #s800 .subsection-design-1 .video-container {
        margin-top: 5.555556vw;
    }
    #s800 .subsection-design-1 .section-header {
        margin-top: -5.555556vw;
    }

    #s800 .subsection-design-1 .content-container {
        margin-top: 7.777778vw;
    }
}

#s800 .subsection-design-2 {
    height: 300vh;
}

#s800 .subsection-design-2 .section-item {
    position: relative;
    height: 100vh;
}

#s800 .subsection-design-2 .section-item+.section-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

#s800 .subsection-design-2 .section-item::before,
#s800 .subsection-design-2 .section-item::after {
    position: absolute;
    z-index: 1;
    left: 0;
    width: 100%;
    height: 19.270833vw;
    content: "";
    pointer-events: none;
}

#s800 .subsection-design-2 .section-item::before {
    top: 0;
    background-image: linear-gradient(180deg, #000 10%, transparent);
}

#s800 .subsection-design-2 .section-item::after {
    bottom: 0;
    background-image: linear-gradient(0deg, #000 10%, transparent);
}

#s800 .subsection-design-2 .item-1 {
    z-index: 3;
}

#s800 .subsection-design-2 .item-2 {
    z-index: 2;
}

#s800 .subsection-design-2 .item-3 {
    z-index: 1;
}

#s800 .subsection-design-2 .item-content {
    position: relative;
    z-index: 11;
    width: 100%;
    height: 100%;
}

#s800 .subsection-design-2 .headline-3 {
    background-image: linear-gradient(30deg, #f0d3bf, #ead1bd 25%, #e3bea0);
}


@media (max-aspect-ratio: 11/10) {
    #s800 .subsection-design-2 {
        height: auto;
    }

    #s800 .subsection-design-2 .sticky {
        position: relative;
    }

    #s800 .subsection-design-2 .section-item {
        height: auto;
        transition: none;
    }

    #s800 .subsection-design-2 .section-item+.section-item {
        position: static;
    }

    #s800 .subsection-design-2 .section-item::before,
    #s800 .subsection-design-2 .section-item::after {
        display: none;
    }

    #s800 .subsection-design-2 .video-container,
    #s800 .subsection-design-2 .item-content {
        height: auto;
    }

    #s800 .subsection-design-2 .headline-3 {
        background-image: linear-gradient(30deg, #e6b38f, #ead1bd 25%, #937157);
    }
}

#s800 .subsection-design-3 .gradient-headline {
    background-image: linear-gradient(90deg, #030303, #25112f 26%, #27192d);
}

#s800 .subsection-design-3 .intro {
    color: #474471;
}

@media (max-aspect-ratio: 11/10) {
    #s800 .subsection-design-3 .gradient-headline {
        background-image: linear-gradient(30deg, #fff, #ffead9 25%, #d6b59e);
    }

    #s800 .subsection-design-3 .intro {
        color: #ac9f96;
    }
}

#s800 .subsection-design-4 {
    margin-top: -2px;
}

@media (max-aspect-ratio: 11/10) {
    #s800 .subsection-design-4 {
        margin-top: 0;
    }


}

#s800 .subsection-design-5 {
    margin-top: -2px;
}

#s800 .subsection-design-5 .caption-list-container {
    position: absolute;
    z-index: 10;
    bottom: 0;
    left: 14.583333vw;
    height: min(100%, 100vh);
    padding-top: 4.166667vw;
}

#s800 .subsection-design-5 .caption-list {
    position: relative;
    display: flex;
    width: 100%;
}

#s800 .subsection-design-5 .caption-item {
    display: flex;
    align-items: flex-end;
    flex-direction: column;
    font-size: 1.5625vw;
    line-height: 1.25;
    transition: opacity 600ms cubic-bezier(0.65, 0.05, 0.36, 1);
    white-space: nowrap;
    letter-spacing: 0.4em;
    opacity: 0;
    writing-mode: tb-lr;
    writing-mode: vertical-lr;
}

#s800 .subsection-design-5 .caption-item+.caption-item {
    position: absolute;
    top: 0;
    left: 0;
}

#s800 .subsection-design-5 .caption-item.current {
    z-index: 1;
    transition-delay: 200ms;
    opacity: 1;
}

#s800 .subsection-design-5 .caption-item span {
    display: block;
}

#s800 .subsection-design-5 .caption-item span+span {
    margin-bottom: -1em;
    margin-left: 0.5em;
}

#s800 .subsection-design-5 .caption-item .comma {
    display: none;
}

#s800 .subsection-design-5 .caption-gold-black {
    color: #f7f7df;
}

#s800 .subsection-design-5 .caption-sliver-purple {
    color: #32194b;
}

#s800 .subsection-design-5 .caption-black-white {
    color: #303c4d;
}

#s800 .subsection-design-5 .caption-brown-gold {
    color: #1f150b;
}

#s800 .subsection-design-5 .caption-gold {
    color: #000;
}

#s800 .subsection-design-5 .caption-black {
    color: #fff;
}

#s800 .subsection-design-5 .label-gold-black {
    color: #f7f7df;
}

#s800 .subsection-design-5 .label-sliver-purple {
    color: #ac81d6;
}

#s800 .subsection-design-5 .label-black-white {
    color: #cad4e3;
}

#s800 .subsection-design-5 .label-brown-gold {
    color: #d1ba9a;
}

#s800 .subsection-design-5 .label-gold {
    color: #efe2de;
}

#s800 .subsection-design-5 .label-black {
    color: #fff;
}

@media (max-aspect-ratio: 11/10) {
    #s800 .subsection-design-5 {
        margin-top: 0;
    }

    #s800 .subsection-design-5 .gallery-container {
        margin-top: 11.42857vw;
    }

    #s800 .subsection-design-5 .caption-list-container {
        top: 0;
        bottom: auto;
        left: 0;
        width: 100%;
        height: auto;
        padding: 0;
        text-align: center;
    }

    #s800 .subsection-design-5 .caption-item {
        display: inline-block;
        width: 100%;
        font-size: 4.166667vw;
        letter-spacing: 0;
        writing-mode: unset;
        writing-mode: unset;
    }

    #s800 .subsection-design-5 .caption-item span {
        display: inline-block;
    }

    #s800 .subsection-design-5 .caption-item span+span {
        margin-bottom: 0;
        margin-left: 0;
    }

    #s800 .subsection-design-5 .caption-item .comma {
        display: inline-block;
    }
}

@media (max-aspect-ratio: 11/10) and (min-aspect-ratio: 7/10) {
    #s800 .subsection-design-5 .caption-item {
        font-size: 4.57142857vw;
    }
    #s800 .subsection-design-5 .caption-gold-black {
        color: #F7F7DF;
    }

    #s800 .subsection-design-5 .caption-sliver-purple {
        color: #AC81D6;
    }

    #s800 .subsection-design-5 .caption-black-white {
        color: #CAD4E3;
    }

    #s800 .subsection-design-5 .caption-brown-gold {
        color: #D1BA9A;
    }

    #s800 .subsection-design-5 .caption-gold {
        color: #EFE2DE;
    }

    #s800 .subsection-design-5 .caption-black {
        color: #fff;
    }

    #s800 .subsection-design-5 .label-gold-black {
        color: #f7f7df;
    }

    #s800 .subsection-design-5 .label-sliver-purple {
        color: #ac81d6;
    }

    #s800 .subsection-design-5 .label-black-white {
        color: #cad4e3;
    }

    #s800 .subsection-design-5 .label-brown-gold {
        color: #d1ba9a;
    }

    #s800 .subsection-design-5 .label-gold {
        color: #efe2de;
    }

    #s800 .subsection-design-5 .label-black {
        color: #fff;
    }
}

@media (max-aspect-ratio: 7/10) {
    #s800 .subsection-design-5 .gallery-container {
        margin-top: 0;
    }

    #s800 .subsection-design-5 .caption-list-container {
        padding-top: 11.111111vw;
    }

    #s800 .subsection-design-5 .caption-gold-black {
        color: #f7f7df;
    }

    #s800 .subsection-design-5 .caption-sliver-purple {
        color: #32194b;
    }

    #s800 .subsection-design-5 .caption-black-white {
        color: #303c4d;
    }

    #s800 .subsection-design-5 .caption-brown-gold {
        color: #1f150b;
    }

    #s800 .subsection-design-5 .caption-gold {
        color: #000;
    }

    #s800 .subsection-design-5 .caption-black {
        color: #fff;
    }
}

#s800 .subsection-design-6 {
    z-index: 1;
    overflow: hidden;
    margin-top: -2px;
    background-color: #000;
}

#s800 .subsection-design-6 .copy-item {
    transform: translate3d(0, 40px, 0);
    opacity: 0;
}

#s800 .subsection-design-6 .picture-background {
    opacity: 0;
}

#s800 .subsection-design-6 .picture-car {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    opacity: 0.2;
}

#s800 .subsection-design-6.animated .picture {
    transition: opacity 0.8s;
    opacity: 1;
}

#s800 .subsection-design-6.animated .copy-item {
    transition: opacity 0.8s ease-in, transform 0.8s cubic-bezier(0.26, 0.67, 0.48, 0.91);
    transform: translate3d(0, 0, 0);
    opacity: 1;
}

#s800 .subsection-design-6 .anim-trigger {
    position: absolute;
    top: 80%;
}

@media (max-aspect-ratio: 11/10) {
    #s800 .subsection-design-6 {
        margin-top: 0;
    }

    #s800 .subsection-design-6 .copy-item.animated {
        transition: opacity 0.8s ease-in, transform 0.8s cubic-bezier(0.26, 0.67, 0.48, 0.91);
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }

    #s800 .subsection-design-6 .animated .picture {
        transition: opacity 0.8s;
        opacity: 1;
    }
}

#s800 .subsection-space-5::after {
    position: absolute;
    z-index: 2;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 26.041667vw;
    content: "";
    pointer-events: none;
    background-image: linear-gradient(180deg, transparent, #000);
}

@media (max-aspect-ratio: 11/10) {
    #s800 .subsection-space-5::after {
        display: none;
    }
}

@media (max-aspect-ratio: 11/10) and (min-aspect-ratio: 7/10) {
    #s800 .subsection-space-1 .section-intro .stat-list {
        margin-top: -17vw;
        margin-bottom: 8.92857vw;
    }
}

#s800 .subsection-space-11 {
    margin-top: -2px;
}

#s800 .subsection-space-11 .label-light-brown {
    color: #c5a194;
}

#s800 .subsection-space-11 .label-deep-brown {
    color: #aa8c89;
}

#s800 .subsection-space-11 .label-white-brown {
    color: #c9bcaf;
}

#s800 .subsection-space-11 .label-white-purple {
    color: #a85f9e;
}

#s800 .subsection-space-11 .label-white {
    color: #ebebeb;
}

@media (max-aspect-ratio: 11/10) {
    #s800 .subsection-space-11 {
        margin-top: 0;
    }
}

#s800 .subsection-space-12 .media-container {
    display: flex;
    justify-content: center;
}

#s800 .subsection-space-12 .video-container {
    position: absolute;
    top: 12.291667vw;
}

@media (max-aspect-ratio: 11/10) {
    #s800 .subsection-space-12 .video-container {
        position: static;
    }
}

@media (max-aspect-ratio: 11/10) {
    #s800 .subsection-space-13 {
        display: flex;
        flex-direction: column;
    }

    #s800 .subsection-space-13 .headline-container {
        order: 0;
        text-align: center;
    }

    #s800 .subsection-space-13 .headline-container .gradient-headline {
        margin-left: 0;
    }

    #s800 .subsection-space-13 .intro-container .intro {
        margin: 2.2857142857vw auto 0;
        text-align: center;
        width: 49.2857vw;
    }

    #s800 .subsection-space-13 .intro-container {
        order: 1;
    }

    #s800 .subsection-space-13 .video-container {
        order: 2;
    }

    #s800 .subsection-space-13 .section-group {
        order: 3;
    }

}

@media (max-aspect-ratio: 7/10) {
    #s800 .subsection-space-13 .headline-container .gradient-headline {
        margin-left: 5.7142857vw;
    }

    #s800 .subsection-space-13 .intro-container .intro {
        margin-left: 5.7142857vw;
        margin-top: 4vw;
        text-align: left;
        width: 100%;
    }

    #s800 .subsection-space-13 .headline-container {
        text-align: left;
    }

    #s800 .subsection-space-13 .video-container {
        order: 1;
    }

    #s800 .subsection-space-13 .intro-container {
        order: 2;
    }

    #s800 .subsection-space-13 .stat-line {
        width: 23.333333vw;
    }
}

#s800 .subsection-safety-2 .stat-item {
    display: flex;
    justify-content: flex-end;
    min-width: 8.958333vw;
}

@media (min-aspect-ratio: 11/10) {
    #s800 .subsection-safety-2 .stat-content .stat-caption {
        background-image: linear-gradient(180deg, #f3e3c8, #f2e2c5);
    }

    #s800 .subsection-safety-2 .stat-content .stat-value {
        background-image: linear-gradient(180deg, #f1e1c3, #f4dfc2);
    }
}

@media (max-aspect-ratio: 11/10) {
    #s800 .subsection-safety-2 .stat-item {
        display: block;
        min-width: none;
    }
}

@media (max-aspect-ratio: 7/10) {

    #s800 .subsection-safety-2 .stat-line {
        width: 33.888889vw;
    }
}

#s800 .subsection-driving-1 .title {
    color: #fcecd5;
}

#s800 .subsection-driving-1 .line {
    background-color: #fcecd5;
}

#s800 .subsection-driving-1 .headline {
    background-image: radial-gradient(closest-side, #fdf8ef, #fdefda 25%, #fdf2e2);
}

@media (max-aspect-ratio: 11/10) {
    #s800 .subsection-driving-1 .title {
        color: #ac9f96;
    }

    #s800 .subsection-driving-1 .line {
        background-color: #ac9f96;
    }

    #s800 .subsection-driving-1 .headline {
        background-image: radial-gradient(closest-side, #fffeef, #efceb6 25%, #b49782);
    }
}

#s800 .subsection-driving-2 .gradient-headline {
    background-image: linear-gradient(30deg, #faeee5, #fce8d8 25%, #fdf0e5);
}

@media (max-aspect-ratio: 11/10) {
    #s800 .subsection-driving-2 .gradient-headline {
        background-image: linear-gradient(30deg, #e6b38f, #ead1bd 25%, #937157);
    }
}

@media (min-aspect-ratio: 11/10) {
    #s800 .subsection-driving-4 .stat-title {
        color: #f1e1c3;
    }

    #s800 .subsection-driving-4 .stat-content .stat-caption {
        background-image: linear-gradient(180deg, #f3e3c8, #f2e2c5);
    }

    #s800 .subsection-driving-4 .stat-content .stat-value {
        background-image: linear-gradient(180deg, #f1e1c3, #f4dfc2);
    }

    #s800 .subsection-driving-4 .stat-content .stat-unit {
        background-image: linear-gradient(180deg, #f2dfc2, #f4dfc2);
    }
}

@media (max-aspect-ratio: 7/10) {
    #s800 .subsection-driving-5 .stat-line {
        width: 29.444444vw;
    }
}

#s800 .section-configuration .main-headline {
    font-size: 4.166667vw;
    background-image: linear-gradient(90deg, #6d596f);
}

#s800 .section-configuration .stat-title {
    font-size: 2.5vw;
    background-image: linear-gradient(30deg, #ffe8bc, #fceccd 25%, #faf0dd);
}

#s800 .section-configuration .stat-content .stat-caption {
    background-image: linear-gradient(180deg, #f3e3c8, #f2e2c5);
}

#s800 .section-configuration .stat-content .stat-value {
    background-image: linear-gradient(180deg, #f1e1c3, #f4dfc2);
}

#s800 .section-configuration .stat-content .stat-unit {
    background-image: linear-gradient(180deg, #f2dfc2, #f4dfc2);
}

#s800 .section-configuration .note {
    font-size: 0.833333vw;
    color: rgba(196, 185, 177, 0.8);
}

@media (max-aspect-ratio: 11/10) {
    #s800 .section-configuration .main-headline {
        font-size: 5.7142857vw;
        background-image: radial-gradient(closest-side, #fffeef, #efceb6 25%, #b49782);
    }

    #s800 .section-configuration .stat-container {
        width: 73.7142857vw;
        margin-top: 14.2857vw;
        margin-left: auto;
        padding-top: 7.57142857vw;
        padding-bottom: 7.57142857vw;
        border: 1px solid rgba(154, 132, 116, 0.3);
        background-color: rgba(20, 18, 17, 0.1);
    }

    #s800 .section-configuration .stat-title-container {
        display: flex;
        justify-content: center;
    }

    #s800 .section-configuration .stat-title-wrapper {
        position: relative;
        overflow: hidden;
        padding: 0.416667vw 1.07142857vw;
        line-height: 1;
        border-radius: 0.555556vw;
        background-image: linear-gradient(90deg, #937b69, #9a8474);
    }

    #s800 .section-configuration .stat-title {
        font-size: 2.285714vw;
        background-image: linear-gradient(30deg, #fff);
    }

    #s800 .section-configuration .stat-list .stat-item {
        padding: 0;
    }

    #s800 .section-configuration .stat-list .stat-line {
        margin-right: 3.2142857vw;
        margin-left: 3.2142857vw;
    }

    #s800 .section-configuration .note {
        font-size: 3.333333vw;
        color: #ac9f96;
    }

    #s800 .section-configuration .stat-list {
        flex-wrap: wrap;
        margin-top: 3.92857vw;
    }

    #s800 .section-configuration .stat-list.list-style-1 .stat-item {
        min-width: var(--item-max-width, none);
    }
}

@media (max-aspect-ratio: 7/10) {
    #s800 .section-configuration .stat-container {
        border: 1px solid rgba(154, 132, 116, 0.6);
        background-color: rgba(20, 18, 17, 0.6);
    }
    #s800 .section-configuration .stat-title-wrapper {
        padding: 0.416667vw 1.805556vw;
    }

    #s800 .section-configuration .main-headline {
        font-size: 11.111111vw;
    }

    #s800 .section-configuration .stat-container {
        width: 83.888889vw;
        margin-top: 16.666667vw;
        padding-top: 12.222222vw;
        padding-bottom: 6.666667vw;
    }

    #s800 .section-configuration .stat-title {
        font-size: 4.444444vw;
    }

    #s800 .section-configuration .stat-list .stat-line {
        margin-right: 5.555556vw;
        margin-left: 5.555556vw;
    }
}

#s800 .section-footnote .footnote-list {
    font-size: max(12px, 0.625vw);
}

@media (max-aspect-ratio: 11/10) {
    #s800 .section-footnote .footnote-list {
        font-size: 3.333333vw;
    }
}

#s800 .section-footnote ol {
    margin-top: 0;
    padding-left: 1.5em;
}

#s800 .section-footnote ul {
    margin-top: 1.041667vw;
}

@media (max-aspect-ratio: 11/10) {
    #s800 .section-footnote ul {
        margin-top: 13.888889vw;
    }
}

#s800 .section-footnote li {
    font-size: inherit;
    list-style-type: decimal;
    color: #ac9f96;
}

#s800 .section-footnote li+li {
    margin-top: 0.5em;
}

#s800 .section-footnote li.current {
    color: #fff;
}

#s800 .section-footnote .disclaimer {
    list-style-type: none;
}

#s800 .section-footnote a {
    color: #37f;
}

@media (max-aspect-ratio: 11/10) and (min-aspect-ratio: 7/10) {
    #s800 .back-to-top {
        width: 5.7142857vw;
    }
}