html {
  scroll-behavior: auto !important;
}

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;
  }
}

#h5 section {
  position: relative;
}

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

#h5 sup {
  top: auto;
  font-size: .6em;
  vertical-align: super;
}

#h5 [data-footnote] {
  font-size: 0.6em;
  cursor: pointer;
}

#h5 sup.sm {
  position: relative;
  top: -.36em;
  font-size: .4em;
}

#h5 sup a {
  color: inherit;
}

#h5 br.pad {
  display: none;
}

#h5 bold{
  font-weight: 500;
  color: black;
}

#h5 bold.light{
  color: white;
}

#h5.no-inline-video .play-pause-button {
  display: none;
}

#h5 .effect-slide .play-pause-button {
  transition: opacity 100ms;
  opacity: 0;
}
#h5 .effect-slide .swiper-slide-active .play-pause-button {
  transition-delay: 800ms;
  opacity: 1;
}
@media (max-aspect-ratio: 11/10) {
  #h5 .effect-slide .swiper-slide-active .play-pause-button {
    transition-delay: 600ms;
  }
}
#h5 .effect-fade .play-pause-button {
  transition: opacity 100ms;
  opacity: 0;
}
#h5 .effect-fade .swiper-slide-active .play-pause-button {
  transition-delay: 600ms;
  opacity: 1;
}
@media (max-aspect-ratio: 11/10) {
  #h5 .effect-fade .swiper-slide-active .play-pause-button {
    transition-delay: 400ms;
  }
}
#h5 .slide-inner {
  position: relative;
}
#h5 .slide-inner .play-pause-button {
  position: absolute;
  z-index: 2;
  right: 1.25vw;
  bottom: 1.25vw;
  overflow: hidden;
  width: 2.083333vw;
  height: 2.083333vw;
  cursor: pointer;
  transform: translateZ(0);
  border-radius: 50%;
}

@media (max-aspect-ratio: 7/10) {
     #h5 .slide-inner .play-pause-button {
      width: 8.888889vw;
      height: 8.888889vw;
      right: 4.444444vw;
      bottom: 4.444444vw;
   }
}

@media (max-aspect-ratio: 11/10) and (min-aspect-ratio: 7/10) {
   #h5 .slide-inner .play-pause-button {
      width: 4.571429vw;
      height: 4.571429vw;
      right: 2.285714vw;
      bottom: 2.285714vw;
   }
}
#h5 .slide-inner .play-pause-button::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  transition: background-color 300ms ease-out;
  backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background-color: rgba(128, 128, 128, 0.2);
    border-radius: 50%;
    overflow: hidden;
}
@media (hover: hover) {
  #h5 .slide-inner .play-pause-button:hover::before {
    background-color: rgba(128, 128, 128, 0.1);
  }
}

#h5 .slide-inner .button-icon {
  position: absolute;
  top: 0;
  left: 0;
  display: none;
  will-change: transform;
}
#h5 .slide-inner.playing .icon-pause, #h5 .slide-inner.paused .icon-play, #h5 .slide-inner.ended .icon-replay {
  display: block;
}
#h5 .slide-inner .replay-button {
  opacity: 0;
  transition: opacity 300ms;
  pointer-events: none;
  cursor: default;
}
#h5 .slide-inner.ended .replay-button {
  cursor: pointer;
  pointer-events: all;
  opacity: 1;
}

#h5 .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;
}

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

#h5 .sticky-content {
  position: sticky;
  top: 0;
  overflow: hidden;
  width: 100%;
  height: 56.25vw;
}

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

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

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

#h5 .gallery-slide {
  position: relative;
  overflow: hidden;
  height: 100%;
}

#h5 .gallery-slide img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

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

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

#h5 .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;
}

#h5 .relative {
  position: relative;
}

#h5 .absolute {
  position: absolute;
}

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

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

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

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

#h5 .block {
  display: block;
}

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

#h5 .inline {
  display: inline;
}

#h5 .flex {
  display: flex;
}

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

#h5 .hidden {
  display: none;
}

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

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

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

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

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

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

#h5 br.lg {
  display: block;
}

#h5 br.xs {
  display: none;
}

#h5 span.only-xs{
  display: none;
}

#h5 span.hidden-lg{
  display: none;
}

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

  #h5 span.hidden-lg{
  display: inline-block;
 }

}

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

  #h5 span.only-xs{
  display: inline-block;
 }
}

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

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

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

#h5 .w-1760 {
  width: 91.666667vw;
}

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

#h5 .w-1500 {
  width: 78.125vw;
}

#h5 .w-1364 {
  width: 71.041667vw;
}

#h5 .w-1296 {
  width: 67.5vw;
}

#h5 .w-720 {
  width: 37.5vw;
}

#h5 .w-640 {
  width: 33.333333vw;
}

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

  #h5 .xs\:w-680 {
    width: 94.444444vw;
  }

  #h5 .xs\:w-656 {
    width: 91.111111vw;
  }

  #h5 .xs\:w-596 {
    width: 82.777778vw;
  }

  #h5 .xs\:w-592 {
    width: 82.222222vw;
  }

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

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

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


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

#h5 .mt-20,
#h5 .lg\:mt-20 {
  margin-top: 1.041667vw;
}


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

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

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

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

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

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

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

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

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

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

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

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

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

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

  #h5 .mt-20,
  #h5 .xs\:mt-20 {
    margin-top: 2.777778vw;
  }

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

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

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

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

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

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

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

  #h5 .mt-60,
  #h5 .xs\:mt-60 {
    margin-top: 8.333333vw;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#h5 h2 {
  font-weight: 500;
  line-height: 1.25;
  color: #000;
}

#h5 h3 {
  font-weight: 700;
  line-height: 1.25;
  color: #000;
}

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

#h5 h3 {
  font-size: 1.25vw;
}

#h5 h3.title {
  font-size: 1.041667vw;
  color: #fff;
}

#h5 strong {
  font-weight: 700;
  color: #000;
}

#h5 .dark-frame {
  background: black;
  margin-top: -1px;
}

#h5 .dark-frame h2,
#h5 .dark-frame h3 {
  color: #fff;
}

#h5 .dark-frame strong {
  color: #fff;
}

#h5 .dark-frame .pagination-item {
  color: #fff;
}

#h5 .dark-frame .arrownav-list .icon-path {
  stroke: #fff;
}

#h5 .dark-frame .tabnav-item {
  color: #8E8E8E;
}

#h5 .dark-frame .tabnav-item.current {
  color: #fff;
}

#h5 .dark-frame .tabnav-indicator::before {
  background: rgba(255, 255, 255, 0.2);
}

#h5 .dark-frame .tabnav-indicator::after {
  background: rgba(255, 255, 255, 1);
}

#h5 .dark-frame .pagination-line {
  background: rgba(255, 255, 255, 0.4);
}

#h5 .dark-frame .pagination-line::before {
  background: #fff;
}

#h5 .note {
  font-size: 0.833333vw;
  color: rgba(121, 124, 128, 0.5);
  display: block;
}

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

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

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

  #h5 .note {
    font-size: 3.333333vw;
  }
}

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

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

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

#h5 .button-container {
  display: flex;
  justify-content: center;
}

#h5 .button-container .button-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 10.572917vw;
}

#h5 .button-container .button-link:hover .button-background {
  opacity: 0.7;
}

#h5 .button-container .button-background {
  transition: opacity 0.3s;
}

#h5 .button-container .button-copy {
  position: absolute;
  z-index: 1;
  font-size: 0.9375vw;
  font-weight: 700;
  white-space: nowrap;
  color: #18191a;
}

@media (max-aspect-ratio: 11/10) {
  #h5 .button-container .button-link {
    width: 39.027778vw;
  }

  #h5 .button-container .button-background {
    opacity: 1 !important;
  }

  #h5 .button-container .button-copy {
    font-size: 3.611111vw;
  }
}

#h5 .pagination-item {
  display: flex;
  overflow: hidden;
  align-items: center;
  width: auto;
  font-size: var(--pagination-font-size, 1.041667vw);
  font-weight: 800;
  line-height: 1;
  color: #18191a;
}

#h5 .pagination-item.swiper-pagination-lock {
  display: none;
}

#h5 .pagination-current {
  display: flex;
  flex-direction: column;
  height: 1em;
  transition: transform 800ms cubic-bezier(0.65, 0.05, 0.36, 1);
  transform: translate3d(0, var(--pagination-y, 0), 0);
  text-align: right;
}

#h5 .pagination-line {
  position: relative;
  overflow: hidden;
  width: 6.25vw;
  height: 2px;
  margin-right: 0.833333vw;
  margin-left: 0.833333vw;
  background-color: #e5e5e5;
}

#h5 .pagination-line::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  transition: transform 0.6s linear;
  transform: scaleX(0);
  transform-origin: left;
  background-color: #000;
}

#h5 .autoplay-animating .pagination-line::before {
  transition-duration: 3.8s;
  transform: scaleX(1);
}

#h5 .autoplay-animating .autoplay-3s .pagination-line::before {
  transition-duration: 2.8s;
  transform: scaleX(1);
}

#h5 .autoplay-animating .autoplay-6s .pagination-line::before {
  transition-duration: 5.8s;
  transform: scaleX(1);
}

#h5 .autoplay-animating .autoplay-7s .pagination-line::before {
  transition-duration: 6.8s;
  transform: scaleX(1);
}

#h5.no-inline-video .autoplay-animating .autoplay-6s .pagination-line::before,
#h5.no-inline-video .autoplay-animating .autoplay-7s .pagination-line::before {
  transition-duration: 2.8s;
  transform: scaleX(1);
}

#h5 .pagination-total {
  opacity: 0.2;
}

@media (max-aspect-ratio: 11/10) {
  #h5 .pagination-item {
    font-size: var(--pagination-font-size, 3.888889vw);
  }

  #h5 .pagination-line {
    width: 20.555556vw;
    height: 0.416667vw;
    margin-right: 3.333333vw;
    margin-left: 3.333333vw;
  }
}

#h5 .arrownav-list {
  display: flex;
}

#h5 .arrownav-list .arrownav-item {
  width: 2.604167vw;
  cursor: pointer;
  outline: 0;
}

#h5 .arrownav-list .arrownav-item:not(.arrownav-disabled):hover .path-outline-anim {
  stroke-dasharray: 157, 0;
}

#h5 .arrownav-list .icon-path {
  fill: none;
  stroke: #18191a;
  stroke-width: 2px;
}

#h5 .arrownav-list .path-outline {
  opacity: 0.2;
}

#h5 .arrownav-list .path-arrow {
  transition: opacity 800ms;
  stroke-linecap: round;
  stroke-linejoin: round;
}

#h5 .arrownav-list .path-outline-anim {
  transition: stroke-dasharray 800ms;
  stroke-dasharray: 0, 157;
  stroke-dashoffset: 50;
}

#h5 .arrownav-list .arrownav-disabled {
  cursor: default;
}

#h5 .arrownav-list .arrownav-disabled .path-arrow {
  opacity: 0.2;
}

#h5 .arrownav-list .arrownav-next {
  margin-left: 0.833333vw;
}

@media (max-aspect-ratio: 11/10) {
  #h5 .arrownav-list .arrownav-item {
    width: 10.694444vw;
  }

  #h5 .arrownav-list .arrownav-item:not(.arrownav-disabled):hover {
    opacity: 1;
  }

  #h5 .arrownav-list .icon-path {
    stroke-width: 3px;
  }

  #h5 .arrownav-list .path-outline-anim {
    display: none;
  }

  #h5 .arrownav-list .arrownav-next {
    margin-left: 3.333333vw;
  }
}

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

#h5 .section-header .text-content {
  position: absolute;
  z-index: 1;
  top: 6.25vw;
  right: 0;
  left: 0;
  text-align: center;
  color: #fff;
}

#h5 .section-header h2 {
  font-size: 3.333333vw;
  color: inherit;
}

#h5 .section-header h3 {
  font-size: 1.25vw;
  color: inherit;
}

#h5 .section-header p {
  color: inherit;
}

#h5 .section-header .xs-intro {
  display: none;
}

@media (max-aspect-ratio: 7/10) {
  #h5 .section-header .text-content {
    position: relative;
    top: 0;
    color: #000;
  }

  #h5 .dark-frame .section-header .text-content {
    color: #fff;
  }

  #h5 .section-header h2 {
    font-size: 11.111111vw;
  }

  #h5 .section-header h3 {
    font-size: 4.444444vw;
  }

  #h5 .section-header .lg-intro {
    display: none;
  }

  #h5 .section-header .xs-intro {
    display: block;
    text-align: center;
  }
}

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

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

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

#h5 .tabnav-item {
  padding-bottom: 0.833333vw;
  font-size: 1.041667vw;
  cursor: pointer;
  transition: color 0.8s;
  white-space: nowrap;
  color: #797c80;
  outline: 0;
}

#h5 .tabnav-item+.tabnav-item {
  margin-left: 4.166667vw;
}

#h5 .tabnav-item.current {
  color: #18191a;
}

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

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

#h5 .tabnav-indicator::after {
  display: block;
  width: var(--indicator-width, 0);
  height: 100%;
  content: "";
  transition: width 0.8s, transform 0.8s;
  transform: translateX(var(--indicator-offset, 0));
  background-color: #18191a;
}

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

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

#h5 .tabnav-swiper .gallery-slide.current .clip-item {
  -webkit-clip-path: inset(0 0 0 0);
  clip-path: inset(0 0 0 0);
  transform: scale(1);

}

#h5 .tabnav-swiper .gallery-slide.left .clip-item {
  -webkit-clip-path: inset(0 100% 0 0);
  clip-path: inset(0 100% 0 0);
  transform: scale(1.2);
}

#h5 .tabnav-swiper .gallery-slide.right .clip-item {
  -webkit-clip-path: inset(0 0 0 100%);
  clip-path: inset(0 0 0 100%);
  transform: scale(1.2);
}

#h5 .stack-item {
  position: relative;
  width: 100%;
  font-size: 1.041667vw;
  transition: opacity 0.5s cubic-bezier(0.65, 0.05, 0.36, 1);
  opacity: 0;
}

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

#h5 .stack-item.current {
  z-index: 1;
  opacity: 1;
}

@media (max-aspect-ratio: 11/10) {
  #h5 .tabnav-content {
    position: relative;
    display: block;
    overflow: hidden;
    width: 100%;
  }

  #h5 .tabnav-swiper .tabnav-content::before,
  #h5 .tabnav-swiper .tabnav-content::after {
    position: absolute;
    z-index: 1;
    top: -1.388889vw;
    width: 8.888889vw;
    height: 8.888889vw;
    content: "";
    pointer-events: none;
  }

  #h5 .tabnav-swiper .tabnav-content::before {
    left: 0;
    background-image: linear-gradient(90deg, #fff 40%, transparent);
  }

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

  #h5 .dark-frame .tabnav-swiper .tabnav-content::before {
    left: 0;
    background-image: linear-gradient(90deg, #000 40%, transparent);
  }

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

  #h5 .tabnav-container {
    position: relative;
    display: flex;
    justify-content: center;
    line-height: 0;
    white-space: nowrap;
  }

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

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

  #h5 .tabnav-wrapper {
    padding-right: 8.888889vw;
    padding-left: 8.888889vw;
  }

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

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

  #h5 .tabnav-item+.tabnav-item {
    margin-left: 7.777778vw;
  }

  #h5 .tabnav-indicator {
    height: 0.416667vw;
  }

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

  #h5 .stack-item {
    font-size: 4.444444vw;
  }
}

@media (max-aspect-ratio: 7/10) {
  #h5 .tabnav-container {
    justify-content: left;
  }
}

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

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

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

#h5 .gallery-container .gallery-slide {
  position: relative;
  width: 100%;
  overflow: hidden;
}

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

#h5 .gallery-container .clip-item {
  position: relative;
  transition: -webkit-clip-path 0s 800ms, transform 0s 800ms;
  transition: clip-path 0s 800ms, transform 0s 800ms;
  transition: clip-path 0s 800ms, -webkit-clip-path 0s 800ms, transform 0s 800ms;
  transform-origin: 50% 50%;
}

#h5 .gallery-container .current .clip-item {
  z-index: 1;
  transition: -webkit-clip-path 800ms cubic-bezier(0.65, 0.05, 0.36, 1), transform 800ms cubic-bezier(0.65, 0.05, 0.36, 1);
  transition: clip-path 800ms cubic-bezier(0.65, 0.05, 0.36, 1), transform 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), transform 800ms cubic-bezier(0.65, 0.05, 0.36, 1);
}

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

#h5 .swiper-style-1 .gallery-container {
  display: flex;
  overflow: hidden;
}

#h5 .swiper-style-1 .gallery {
  z-index: 3;
  flex-shrink: 0;
  width: 62.5vw;
}

#h5 .swiper-style-1 .gallery-slide.current .clip-item {
  -webkit-clip-path: polygon(0% 0%, 162% 0%, 100.2% 100.2%, -62% 100.2%);
  clip-path: polygon(0% 0%, 162% 0%, 100.2% 100.2%, -62% 100.2%);
}

#h5 .swiper-style-1 .gallery-slide.left .clip-item {
  -webkit-clip-path: polygon(162% 0%, 100.2% 0%, 100.2% 100.2%, 100.2% 100.2%);
  clip-path: polygon(162% 0%, 100.2% 0%, 100.2% 100.2%, 100.2% 100.2%);
}

#h5 .swiper-style-1 .gallery-slide.right .clip-item {
  -webkit-clip-path: polygon(0% 0%, 0% 0%, -62% 100.2%, 0% 100.2%);
  clip-path: polygon(0% 0%, 0% 0%, -62% 100.2%, 0% 100.2%);
}

#h5 .swiper-style-1 .zoom-in-transition {
  transition: transform 800ms;
  transform-origin: left;
}

#h5 .swiper-style-1 .zoom-in-slide {
  transform: scale(1.3);
}

#h5 .swiper-style-1 .content-container {
  padding: 3.333333vw 2.5vw;
  background-color: #f5f6f7;
}

#h5 .swiper-style-1 .content-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

#h5 .swiper-style-1 .stack-list {
  order: 2;
}

#h5 .swiper-style-1 .pagination-item {
  order: 1;
}

#h5 .swiper-style-1 .arrownav-list {
  order: 3;
}

@media (max-aspect-ratio: 11/10) {
  #h5 .swiper-style-1 .gallery-container {
    display: block;
  }

  #h5 .swiper-style-1 .gallery {
    width: 100%;
  }

  #h5 .swiper-style-1 .gallery-slide.current .clip-item {
    -webkit-clip-path: polygon(0% 0%, 216% 0%, 100.2% 100.2%, -116% 100.2%);
    clip-path: polygon(0% 0%, 216% 0%, 100.2% 100.2%, -116% 100.2%);
  }

  #h5 .swiper-style-1 .gallery-slide.left .clip-item {
    -webkit-clip-path: polygon(216% 0%, 100.2% 0%, 100.2% 100.2%, 100.2% 100.2%);
    clip-path: polygon(216% 0%, 100.2% 0%, 100.2% 100.2%, 100.2% 100.2%);
  }

  #h5 .swiper-style-1 .gallery-slide.right .clip-item {
    -webkit-clip-path: polygon(0% 0%, 0% 0%, -116% 100.2%, 0% 100.2%);
    clip-path: polygon(0% 0%, 0% 0%, -116% 100.2%, 0% 100.2%);
  }

  #h5 .swiper-style-1 .zoom-in-slide {
    transition: none;
    transform: none;
  }

  #h5 .swiper-style-1 .content-container {
    padding: 10vw 0 16.666667vw;
  }

  #h5 .swiper-style-1 .content-wrapper {
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    height: auto;
  }

  #h5 .swiper-style-1 .stack-list {
    order: 1;
    margin-bottom: 4.444444vw;
  }

  #h5 .swiper-style-1 .pagination-item {
    order: 2;
  }

  #h5 .swiper-style-1 h3 {
    font-size: 5.555556vw;
  }
}

#h5 .swiper-style-2 .text-content {
  width: 51.666667vw;
  padding-left: 13.020833vw;
}

#h5 .swiper-style-2 .xs-gallery {
  display: none;
}

#h5 .swiper-style-2 .lg-gallery-slide {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

#h5 .swiper-style-2 .clip-item-1 {
  width: 51.666667vw;
}

#h5 .swiper-style-2 .clip-item-2 {
  width: 27.5vw;
  margin-top: -9.114583vw;
}

#h5 .swiper-style-2 .gallery-slide.current .clip-item-1 {
  -webkit-clip-path: polygon(0% 0%, 171% 0%, 100.2% 100.2%, -71% 100.2%);
  clip-path: polygon(0% 0%, 171% 0%, 100.2% 100.2%, -71% 100.2%);
}

#h5 .swiper-style-2 .gallery-slide.current .clip-item-2 {
  -webkit-clip-path: polygon(0% 0%, 233% 0%, 100.2% 100.2%, -133% 100.2%);
  clip-path: polygon(0% 0%, 233% 0%, 100.2% 100.2%, -133% 100.2%);
}

#h5 .swiper-style-2 .gallery-slide.left .clip-item-1 {
  -webkit-clip-path: polygon(171% 0%, 100.2% 0%, 100.2% 100.2%, 100.2% 100.2%);
  clip-path: polygon(171% 0%, 100.2% 0%, 100.2% 100.2%, 100.2% 100.2%);
}

#h5 .swiper-style-2 .gallery-slide.left .clip-item-2 {
  -webkit-clip-path: polygon(233% 0%, 100.2% 0%, 100.2% 100.2%, 100.2% 100.2%);
  clip-path: polygon(233% 0%, 100.2% 0%, 100.2% 100.2%, 100.2% 100.2%);
}

#h5 .swiper-style-2 .gallery-slide.right .clip-item-1 {
  -webkit-clip-path: polygon(0% 0%, 0% 0%, -71% 100.2%, 0% 100.2%);
  clip-path: polygon(0% 0%, 0% 0%, -71% 100.2%, 0% 100.2%);
}

#h5 .swiper-style-2 .gallery-slide.right .clip-item-2 {
  -webkit-clip-path: polygon(0% 0%, 0% 0%, -133% 100.2%, 0% 100.2%);
  clip-path: polygon(0% 0%, 0% 0%, -133% 100.2%, 0% 100.2%);
}

#h5 .swiper-style-2 .caption-container {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  left: 0;
  margin: 1.666667vw;
  font-size: 1.041667vw;
}

#h5 .swiper-style-2 .caption-title {
  font-size: inherit;
  color: #fff;
}

#h5 .swiper-style-2 .caption-copy {
  font-size: inherit;
  color: rgba(255, 255, 255, 0.6);
}

#h5 .swiper-style-2 .swiper {
  height: 55%;
}

#h5 .swiper-style-2 .content-container {
  position: absolute;
  z-index: 10;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: flex-end;
}

#h5 .swiper-style-2 .content-wrapper {
  display: flex;
  align-items: center;
}

#h5 .swiper-style-2 .arrownav-list {
  margin-left: 2.083333vw;
}

@media (max-aspect-ratio: 11/10) {
  #h5 .swiper-style-2 .text-content {
    width: 72.222222vw;
    padding-left: 0;
  }

  #h5 .swiper-style-2 .lg-gallery {
    display: none;
  }

  #h5 .swiper-style-2 .xs-gallery {
    display: block;
  }

  #h5 .swiper-style-2 .gallery-slide.current .clip-item {
    -webkit-clip-path: polygon(0% 0%, 233% 0%, 100.2% 100.2%, -133% 100.2%);
    clip-path: polygon(0% 0%, 233% 0%, 100.2% 100.2%, -133% 100.2%);
  }

  #h5 .swiper-style-2 .gallery-slide.left .clip-item {
    -webkit-clip-path: polygon(233% 0%, 100.2% 0%, 100.2% 100.2%, 100.2% 100.2%);
    clip-path: polygon(233% 0%, 100.2% 0%, 100.2% 100.2%, 100.2% 100.2%);
  }

  #h5 .swiper-style-2 .gallery-slide.right .clip-item {
    -webkit-clip-path: polygon(0% 0%, 0% 0%, -133% 100.2%, 0% 100.2%);
    clip-path: polygon(0% 0%, 0% 0%, -133% 100.2%, 0% 100.2%);
  }

  #h5 .swiper-style-2 .caption-container {
    margin: 4.444444vw 11.111111vw;
    font-size: 3.888889vw;
    text-align: center;
  }

  #h5 .swiper-style-2 .caption-title {
    font-size: 4.722222vw;
  }

  #h5 .swiper-style-2 .swiper {
    height: 70%;
  }

  #h5 .swiper-style-2 .content-container {
    position: static;
    justify-content: center;
  }

  #h5 .swiper-style-2 .content-wrapper {
    justify-content: space-between;
    width: 72.222222vw;
  }

  #h5 .swiper-style-2 .arrownav-list {
    margin-left: 0;
  }
}

#h5 .swiper-style-3 .gallery-slide.current .clip-item {
  -webkit-clip-path: inset(0 0 0 0);
  clip-path: inset(0 0 0 0);
  transform: scale(1);

}

#h5 .swiper-style-3 .gallery-slide.left .clip-item {
  -webkit-clip-path: inset(0 100% 0 0);
  clip-path: inset(0 100% 0 0);
  transform: scale(1.2);
}

#h5 .swiper-style-3 .gallery-slide.right .clip-item {
  -webkit-clip-path: inset(0 0 0 100%);
  clip-path: inset(0 0 0 100%);
  transform: scale(1.2);
}

#h5 .swiper-style-3 .content-container {
  padding: 2.5vw 0 0;
}

#h5 .swiper-style-3 .content-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  height: 100%;
}

#h5 .swiper-style-3 .stack-list {
  flex-shrink: 0;
  order: 2;
}

#h5 .swiper-style-3 .stack-item .headline {
  font-size: 1.145833vw;
}

#h5 .swiper-style-3 .stack-item .intro {
  font-size: 1.041667vw;
}

#h5 .swiper-style-3 .pagination-container {
  display: flex;
  align-items: center;
  order: 1;
  width: 12.5vw;
  height: 2.916667vw;
  margin-top: 1.25vw;
}

#h5 .swiper-style-3 .arrownav-list {
  justify-content: flex-end;
  order: 3;
  width: 12.5vw;
  margin-top: 1.25vw;
}

@media (max-aspect-ratio: 11/10) {
  #h5 .swiper-style-3 .gallery-slide.current .clip-item {
    /* -webkit-clip-path: polygon(0% 0%, 216% 0%, 100.2% 100.2%, -116% 100.2%);
            clip-path: polygon(0% 0%, 216% 0%, 100.2% 100.2%, -116% 100.2%); */
  }

  #h5 .swiper-style-3 .gallery-slide.left .clip-item {
    /* -webkit-clip-path: polygon(216% 0%, 100.2% 0%, 100.2% 100.2%, 100.2% 100.2%);
            clip-path: polygon(216% 0%, 100.2% 0%, 100.2% 100.2%, 100.2% 100.2%); */
  }

  #h5 .swiper-style-3 .gallery-slide.right .clip-item {
    /* -webkit-clip-path: polygon(0% 0%, 0% 0%, -116% 100.2%, 0% 100.2%);
            clip-path: polygon(0% 0%, 0% 0%, -116% 100.2%, 0% 100.2%); */
  }

  #h5 .swiper-style-3 .zoom-in-slide {
    transition: none;
    transform: none;
  }

  #h5 .swiper-style-3 .content-container {
    padding: 11.111111vw 0 0;
  }

  #h5 .swiper-style-3 .content-wrapper {
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    height: auto;
  }

  #h5 .swiper-style-3 .stack-list {
    order: 1;
    margin-bottom: 8.333333vw;
  }

  #h5 .swiper-style-3 .stack-item .headline {
    font-size: 5vw;
    text-align: center;
  }

  #h5 .swiper-style-3 .stack-item .intro {
    font-size: 4.444444vw;
    text-align: center;
  }

  #h5 .swiper-style-3 .pagination-container {
    order: 2;
    width: auto;
    height: auto;
    margin-top: 0;
    margin-left: 5vw;
  }

  #h5 .swiper-style-3 .arrownav-list {
    width: auto;
    margin-top: 0;
    margin-right: 5vw;
  }
}

#h5 .colournav-container {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
}

#h5 .colournav-container .label-list {
  position: relative;
  display: flex;
}

#h5 .colournav-container .label-item {
  font-size: 1.041667vw;
  font-weight: 700;
  opacity: 0;
  color: #18191a;
}

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

#h5 .colournav-container .label-item.current {
  z-index: 1;
  opacity: 1;
}

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

#h5 .colournav-container .colournav-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.1875vw;
  cursor: pointer;
}

#h5 .colournav-container .colournav-item+.colournav-item {
  margin-left: 0.208333vw;
}

#h5 .colournav-container .colournav-item.current {
  cursor: default;
}

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

#h5 .colournav-container .colour-swatch-indicator {
  position: absolute;
  transition: opacity 800ms;
  pointer-events: none;
  opacity: 0;
}

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

@media (max-aspect-ratio: 11/10) {
  #h5 .colournav-container .label-item {
    font-size: 4.444444vw;
  }

  #h5 .colournav-container .colournav-item {
    width: 10vw;
  }

  #h5 .colournav-container .colournav-item+.colournav-item {
    margin-left: 1.944444vw;
  }
}

#h5 {
  font-size: 1.041667vw;
  line-height: 1.6;
  color: #8E8E8E;
}

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

#h5 .section-highlights {
  overflow: hidden;
}

#h5 .section-highlights .swiper-wrapper {
  transition-timing-function: cubic-bezier(0.65, 0.05, 0.36, 1);
}

#h5 .section-highlights .swiper-slide:not(.swiper-slide-active) {
  cursor: pointer;
}

#h5 .section-highlights .swiper-wrapper .swiper-slide {
  overflow: hidden;
}

#h5 .section-highlights .slide-inner {
  transition-timing-function: cubic-bezier(0.65, 0.05, 0.36, 1);
}

/* #h5 .section-highlights .slide-inner picture {
  aspect-ratio: 1560/730;
} */
#h5 .section-highlights .caption {
  position: absolute;
  z-index: 5;
  top: 0;
  right: 0;
  left: 0;
  margin: 2.291667vw 2.5vw;
  font-size: 1.666667vw;
  text-align: center;
  color: #F2F2FF;
  font-weight: 500;
  will-change: transform;
}

#h5 .controls-container .pagination-line{
  background-color: rgba(0, 0, 0, 0.2);
}

#h5 .controls-container.light .pagination-line{
  background-color: rgba(255, 255, 255, 0.4);
}

#h5 .section-highlights .controls-container {
  display: flex;
  justify-content: center;
}

#h5 .section-highlights .controls-wrapper {
  display: flex;
  align-items: center;
}

#h5 .section-highlights .arrownav-list {
  margin-left: 2.083333vw;
}

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

  /* #h5 .section-highlights .slide-inner picture {
    aspect-ratio: 688/918;
  } */
  #h5 .section-highlights .caption {
    margin: 10vw 3.333333vw;
    font-size: 5.555556vw;
    color: #fff;
  }

  #h5 .section-highlights .controls-wrapper {
    justify-content: space-between;
    width: 72.222222vw;
  }

  #h5 .section-highlights .arrownav-list {
    margin-left: 0;
  }
}

#h5 .section-footnote .footnote-container {
  /* padding-top: 2.083333vw; */
  /* border-top: 1px solid #e5e5e5; */
}

@media (max-aspect-ratio: 11/10) {
  #h5 .section-footnote .footnote-container {
    /* padding-top: 8.888889vw; */
  }
}

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

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

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

#h5 .section-footnote li {
  font-size: inherit;
  list-style-type: decimal;
  /* color: #797c80; */
  color: #85858A;
}

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

#h5 .section-footnote li.current {
  /* color: #18191a; */
  color: #2A2A2C;
}

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

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


/* 暂定demo 0828 */

#h5 .section-hero {
  width: 100%;
  /* overflow: hidden; */
  height: 250vh;
}

#h5 .section-hero .section-sticky {
  width: 100%;
  height: 100vh;
  position: sticky;
  top: 0;
  left: 0;
  overflow: hidden;
}

#h5 .section-hero .section-sticky .change-container {
  position: relative;
  width: 100%;
  height: 100%;
}

#h5 .section-hero .section-sticky .sticky-bg {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
}

#h5 .section-hero .section-sticky .sticky-bg .kv-title {
  position: absolute;
  top: 7.8125vw;
  width: 100%;
  font-weight: 400;
  z-index: 2;
}

#h5 .section-hero .section-sticky .sticky-bg .kv-title img {
  width: 13.958333vw;
  margin: 0 auto;
}

#h5 .section-hero .section-sticky .sticky-bg .intro {
  font-size: 1.041667vw;
  color: white;
}

#h5 .section-hero .section-sticky .sticky-bg .kv-title .headline {
  font-size: 1.770833vw;
  color: white;
  letter-spacing: 2vw;
  transform: translateX(1vw);
  margin: .833333vw auto;
}

#h5 .section-hero .section-sticky .sticky-bg .kv-title .modal-player-cta{
  width: fit-content;
  display: flex;
  align-items: center;
  margin: 2.083333vw auto 0;
}

#h5 .section-hero .section-sticky .sticky-bg .kv-title .modal-player-cta span{
   font-size: 1.041667vw;
   color: #fff;
}

#h5 .section-hero .section-sticky .sticky-bg .kv-title .modal-player-cta img{
   width: 1.770833vw;
   margin-left: .416667vw;
}

#h5 .section-hero .section-sticky .video-container {
  width: 100%;
  height: 100%;
}

#h5 .section-hero .section-sticky .sticky-video picture {
  height: 100%;
}

#h5 .section-hero .section-sticky .sticky-video video,
#h5 .section-hero .section-sticky .sticky-video img {
  object-fit: cover;
  height: 100%;
}

#h5 .section-hero .section-sticky .sticky-video .button-container {
  position: absolute;
  bottom: 3.333333vw;
  left: 50%;
  transform: translateX(-50%);
}

#h5 .section-hero .section-sticky .sticky-bg .hero-picture {
  height: 100%;
}

#h5 .section-hero .section-sticky .sticky-bg img {
  object-fit: cover;
  height: 110%;
  transform: translateY(-3%);
}
#h5 .section-hero .section-sticky .sticky-bg .color-content{
  background-color: #7F76A3; 
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 3;
  opacity: 0;
  pointer-events: none;
}
#h5 .section-hero .section-sticky .page-content {
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 100%;
  background: white;
  color: #000;
  mix-blend-mode: lighten;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  pointer-events: none;
    overflow: hidden;
}

#h5 .section-hero .section-sticky .page-title {
  font-size: 4.166667vw;
  transform: scale(370);
  /* transform-origin: 44% 45.5%; */
  transform-origin: 42.15% 41.3%;
  line-height: 1.25;
}

@media (max-width:1100px){
  #h5 .section-hero .section-sticky .page-title {
    transform: scale(390);
    transform-origin: 42.15% 42.5%;
 }
}



#h5 .section-hero .section-sticky .page-slogan {
  font-size: 2.291667vw;
  margin-top: .729167vw;
  line-height: 1.25;
  /* width: 17.142857vw; */
  letter-spacing: 0.2vw;
  transform: translateX(0.1vw);
  white-space: nowrap;
  opacity: 0;
  color: #7F76A3;
}

#h5 .section-hero .section-sticky .sticky-video {
  position: absolute;
  z-index: 3;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  clip-path: inset(50% 50% 50% 50%);
  opacity: 1;
  /* transition: clip-path 0.2s cubic-bezier(0, 0, 0.2, 1);
  will-change: clip-path; */
 
}

#h5 .section-highlights .slide-inner {
  /* width: 110%; */
  width: 100%;
  /* height: 38.020833vw; */
  will-change: transform;
}

#h5 .section-highlights .slide-inner picture {
  /* transform: translateX(-5%); */
}

#h5 .section-highlights.swiper-touch-move .swiper-wrapper,
#h5 .section-highlights.swiper-touch-move [data-swiper-parallax-x],
#h5 .section-highlights.swiper-touch-move [data-swiper-parallax-y],
#h5 .section-highlights.swiper-touch-move [data-swiper-parallax-opacity] {
  transition-timing-function: ease;
}

#h5 .section-design h2 {
  color: #fff;
}

#h5 .subsection-design-1 {
  position: relative;
  width: 100%;
  height: 300vh;
}

#h5 .subsection-design-1 .subsection-sticky {
  position: sticky;
  height: 100vh;
  width: 100%;
  top: 0;
  overflow: hidden;
}

#h5 .subsection-design-1 .subsection-sticky picture {
  height: 100%;
}

#h5 .subsection-design-1 .subsection-sticky img {
  object-fit: cover;
  height: 100%;
  transform-origin: 50% 50%;
}

#h5 .subsection-design-1 .title-content {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 4;
  transform-style: preserve-3d;
  perspective: 50vw;

}

#h5 .subsection-design-1 .title-content .headline {
  width: fit-content;
  color: #000;
  transform: rotateY(0);
}

#h5 .subsection-design-1 .title-content .headline h2 {
  color: inherit;
  font-size: 3.333333vw;
}

#h5 .subsection-design-1 .clip-container {
  -webkit-clip-path: inset(0% 50% 0% 50%);
  clip-path: inset(0% 50% 0% 50%);
  will-change: clip-path, opacity;
  opacity: 0;
  height: 100%;
  z-index: 3;
  position: relative;

}

#h5 .subsection-design-1 .clip-container img {
  transform: scale(1.2);
}

#h5 .subsection-design-1 .clip-container .clip-title {
  position: absolute;
  top: 6.25vw;
  z-index: 2;
  font-size: 2.5vw;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  opacity: 0;
  font-weight: 500;
}

#h5 .subsection-design-1 .clip-container .clip-bottom-container {
  position: absolute;
  z-index: 3;
  width: 50.625vw;
  bottom: 2.5vw;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  opacity: 0;
}

#h5 .subsection-design-1 .clip-container .clip-bottom-container .bottom-flex-container{
  width: 100%;
  display: flex;
  justify-content: space-between;
}

#h5 .subsection-design-1 .clip-container .clip-bottom-container .bottom-des{
    color: white;
    font-size: .625vw;
    margin-top: 2.083333vw;
    text-align: center;
}

@media (min-width: 1366px) {
    #h5 .subsection-design-1 .clip-container .clip-bottom-container .bottom-des{
        font-size: max(12px, .625vw);
    }
}

#h5 .subsection-design-1 .clip-container .clip-bottom-container h4 {
  color: inherit;
  font-size: 1.041667vw;
  font-weight: 500;
}

#h5 .subsection-design-1 .clip-container .clip-bottom-container h3 {
  font-size: 2.5vw;
  color: inherit;
  line-height: 1.25;
  font-weight: 500;
  margin-top: .208333vw;
}

#h5 .subsection-design-1 .clip-container .clip-bottom-container h3 span {
  font-size: 1.041667vw;
  color: inherit;
  font-weight: 500;
}

#h5 .subsection-design-1 .move-container {
  position: absolute;
  z-index: 3;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -webkit-clip-path: inset(100% 0% 0% 0%);
  clip-path: inset(100% 0% 0% 0%);
  /* opacity: 0; */
  /* transform: translateY(100vh); */
}

#h5 .subsection-design-1 .move-container .move-container-title {
  position: absolute;
  top: 7.291667vw;
  width: 34.895833vw;
  display: flex;
  justify-content: space-between;
  z-index: 3;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  opacity: 1;
  /* align-items: center; */
}

#h5 .subsection-design-1 .move-container .move-container-title h2 {
  color: inherit;
}

#h5 .subsection-design-1 .move-container .move-container-title p {
  width: 17.1875vw;
  color: inherit;
  opacity: 0.8;
}

#h5 .subsection-design-5 {
  position: relative;
}

#h5 .subsection-design-5 .text-content {
  position: absolute;
  top: 6.25vw;
  width: 34.895833vw;
  display: flex;
  justify-content: space-between;
  z-index: 3;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  align-items: center;
}

#h5 .subsection-design-5 .text-content h2 {
  color: inherit;
}

#h5 .subsection-design-5 .text-content p {
  width: 16.666667vw;
  color: inherit;
  opacity: 0.8;
}

#h5 .subsection-design-4 {
  position: relative;
  overflow: hidden;
}

#h5 .subsection-design-4 .headline {
  position: absolute;
  top: 6.25vw;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
}

#h5 .swiper-style-4 {
  overflow: hidden;
  position: relative;
}

#h5 .swiper-style-4 .swiper-wrapper {
  transition-timing-function: cubic-bezier(0.65, 0.05, 0.36, 1);
}

#h5 .swiper-style-4 .swiper-slide:not(.swiper-slide-active) {
  cursor: pointer;
}

#h5 .swiper-style-4 .swiper-wrapper .swiper-slide {
  overflow: hidden;
  position: relative;
}

#h5 .swiper-style-4  .slide-des{
  color: #8E8E8E;
  font-size: .625vw;
  margin-top: 1.041667vw;
}

@media (min-width:1366px){
  #h5 .swiper-style-4 .slide-des{
      font-size: max(12px,.625vw);
  }
}


#h5 .swiper-style-4 .slide-inner {
  transition-timing-function: cubic-bezier(0.65, 0.05, 0.36, 1);
}

/* #h5 .swiper-style-4 .slide-inner picture {
  aspect-ratio: 1560/730;
} */

#h5 .swiper-style-4 .controls-container {
  display: flex;
  /* justify-content: center; */
}

#h5 .swiper-style-4 .controls-wrapper {
  display: flex;
  align-items: flex-start;
  width: 100%;
}
#h5 .swiper-style-4 .pagination-item {
  margin-top: 0.85vw;
}

#h5 .swiper-style-4 .controls-wrapper .stack-list {
  margin-right: 15vw;
}

#h5 .swiper-style-4 .stack-item {
  transition: opacity 0.8s cubic-bezier(0.65, 0.05, 0.36, 1);
}

#h5 .swiper-style-4 .controls-wrapper .stack-item {
  text-align: left;
}

#h5 .swiper-style-4 .controls-wrapper .stack-item .xs-title{
  font-weight: bold;
  color: white;
}

#h5 .swiper-style-4 .controls-wrapper.light .stack-item .xs-title{
  color: black;
}

#h5 .swiper-style-4 .arrownav-list {
  margin-left: 2.083333vw;
}



#h5 .swiper-style-5 {
  overflow: hidden;
  position: relative;
}

#h5 .swiper-style-5 .swiper {
  margin-left: 14.479167vw;
}

#h5 .swiper-style-5 .swiper-wrapper {
  transition-timing-function: cubic-bezier(0.65, 0.05, 0.36, 1);
}

/* #h5 .swiper-style-5 .swiper-slide:not(.swiper-slide-active) {
  cursor: pointer;
} */
#h5 .swiper-style-5 .swiper-wrapper .swiper-slide {
  overflow: hidden;
  width: 33.125vw;
}

#h5 .swiper-style-5 .slide-inner {
  transition-timing-function: cubic-bezier(0.65, 0.05, 0.36, 1);
}

#h5 .swiper-style-5 .bottom-content{
  padding-left: .833333vw;
  margin-top: 2.083333vw;
}

#h5 .swiper-style-5 .bottom-content h4{
  font-size: 1.25vw;
  color: #fff;
  font-weight: 500;
  line-height: 1.25;
}

#h5 .swiper-style-5 .bottom-content p{
  font-size: 1.041667vw;
  margin-top: .625vw;
}

#h5 .swiper-style-5 .controls-container {
  display: flex;
  /* justify-content: center; */
  width: 67.5vw;
  justify-content: flex-end;
  /* padding-right: 17.40875vw; */
  margin-left: 14.479167vw;
}



#h5 .subsection-design-3 .video-container {
  transform: scale(0.675);
  transform-origin: 50% 0%;
  transition: transform 0.4s cubic-bezier(0, 0, 0.2, 1);
  will-change: transform;
}
@media (max-aspect-ratio: 7/10) {
  #h5 .subsection-design-3 .video-container {
    transform: scale(0.82222);
  }
}

@media (max-aspect-ratio: 11/10) and (min-aspect-ratio: 7/10) {
  #h5 .subsection-design-3 .video-container {
    transform: scale(0.833333);
  }
}



#h5 .select-swiper {
  height: auto;
}

#h5 .select-swiper .swiper-container {
  height: 100%;
}

#h5 .select-swiper .tablist {
  justify-content: center;
  border-bottom: 0;
}

#h5 .select-swiper .tabnav {
  width: 50%;
  margin-left: 0;
  padding-bottom: 1.5625vw;
  font-size: 1.25vw;
  color: rgba(255, 255, 255, 0.6);
}

#h5 .select-swiper .tabnav.active {
  color: #fff;
}

#h5 .select-swiper .swiper-wrapper {
  z-index: 5;
}

#h5 .select-swiper .picture-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#h5 .select-swiper .gallery-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

#h5 .select-swiper .gallery-slide.current {
  z-index: 2;
}

#h5 .select-swiper .gallery-slide .covered-picture {
  height: 100%;
  transform: scale(1.2);
  transition: -webkit-clip-path 0s 800ms, transform 0s 800ms;
  transition: clip-path 0s 800ms, transform 0s 800ms;
  transition: clip-path 0s 800ms, -webkit-clip-path 0s 800ms, transform 0s 800ms;
  transform-origin: 50% 50%;
}

#h5 .select-swiper .gallery-slide.current .covered-picture {
  transition: -webkit-clip-path 800ms cubic-bezier(0.65, 0.05, 0.36, 1), transform 800ms cubic-bezier(0.65, 0.05, 0.36, 1);
  transition: clip-path 800ms cubic-bezier(0.65, 0.05, 0.36, 1), transform 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), transform 800ms cubic-bezier(0.65, 0.05, 0.36, 1);
}

#h5 .select-swiper .gallery-slide.current .covered-picture {
  -webkit-clip-path: inset(0 0 0 0);
  clip-path: inset(0 0 0 0);
  transform: scale(1);

}

#h5 .select-swiper .gallery-slide.left .covered-picture {
  -webkit-clip-path: inset(0 100% 0 0);
  clip-path: inset(0 100% 0 0);
  transform: scale(1.2);
}

#h5 .select-swiper .gallery-slide.right .covered-picture {
  -webkit-clip-path: inset(0 0 0 100%);
  clip-path: inset(0 0 0 100%);
  transform: scale(1.2);
}

#h5 .select-swiper .colornav-wrapper {
  position: absolute;
  z-index: 20;
  right: 0;
  bottom: 3.333333vw;
  left: 0;
  display: flex;
  justify-content: center;
  transition: transform .3s, opacity .3s;
  /* transform: translate3d(0, 5.20833vw, 0); */
  /* opacity: 0; */
}

#h5 .select-swiper .colornav-wrapper .list-content {
  width: 100%;
  display: flex;
  justify-content: center;
}

#h5 .subsection-space-8.select-swiper .colornav-wrapper{
  bottom: 2.5vw;
}

#h5 .select-swiper .colornav {
  position: relative;
  margin-right: .104167vw;
  margin-left: .104167vw;
  text-align: center;
}

#h5 .select-swiper .color-swatch {
  display: block;
  width: 2.1875vw;
  height: 2.5vw;
  cursor: pointer;
  outline: 0;
  position: relative;
}

#h5 .select-swiper .color-swatch .color-swatch-border {
  position: absolute;
  width: 100%;
  /* height: 100%; */
  left: 0;
  top: 0;
  opacity: 0;
  transition: opacity .8s;
}

#h5 .select-swiper .color-name-list {
  position: absolute;
  bottom: 3.125vw;
}

#h5 .select-swiper .color-label {
  position: absolute;
  top: 0;
  left: 50%;
  display: block;
  font-size: 1.041667vw;
  line-height: 1.25;
  transition: opacity .8s;
  transform: translateX(-50%);
  white-space: nowrap;
  opacity: 0;
  color: #fff;
  font-weight: bold;
  text-align: center;
  pointer-events: none;
}

#h5 .select-swiper .color-label:first-child {
  position: relative;
}

#h5 .select-swiper .animated .colornav-wrapper {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

#h5 .select-swiper[data-active='1'] .colornav:nth-child(1) .color-swatch-border {
  opacity: 1;
}

#h5 .select-swiper[data-active='1'] .color-label:nth-child(1) {
  opacity: 1;
  pointer-events: all;
}

#h5 .select-swiper[data-active='2'] .colornav:nth-child(2) .color-swatch-border {
  opacity: 1;
}

#h5 .select-swiper[data-active='2'] .color-label:nth-child(2) {
  opacity: 1;
  pointer-events: all;
}

#h5 .select-swiper[data-active='3'] .colornav:nth-child(3) .color-swatch-border {
  opacity: 1;
}

#h5 .select-swiper[data-active='3'] .color-label:nth-child(3) {
  opacity: 1;
  pointer-events: all;
}

#h5 .select-swiper[data-active='4'] .colornav:nth-child(4) .color-swatch-border {
  opacity: 1;
}

#h5 .select-swiper[data-active='4'] .color-label:nth-child(4) {
  opacity: 1;
  pointer-events: all;
}

#h5 .select-swiper[data-active='5'] .colornav:nth-child(5) .color-swatch-border {
  opacity: 1;
}

#h5 .select-swiper[data-active='5'] .color-label:nth-child(5) {
  opacity: 1;
  pointer-events: all;
}

#h5 .select-swiper[data-active='6'] .colornav:nth-child(6) .color-swatch-border {
  opacity: 1;
}

#h5 .select-swiper[data-active='6'] .color-label:nth-child(6) {
  opacity: 1;
  pointer-events: all;
}

#h5 .select-swiper .swiper-wrapper .swiper-wrapper,
#h5 .subsection-design-8 .swiper-wrapper .swiper-wrapper {
  z-index: 5;
}

#h5 .subsection-first-container {
  width: 100%;
  overflow: hidden;
}

#h5 .subsection-first-container .text-content {
  width: fit-content;
  top: 18.75vw;
  left: 50%;
  transform: translate(-50%, -11.458333vw);
  transform-style: preserve-3d;
  perspective: 50vw;
  /* transform: rotateY(56deg); */
 
}

#h5 .subsection-first-container .text-content .headline {
  transform: rotateY(0deg);
 
}

#h5 .subsection-first-container .section-header .change-bg {
  transform: translate3d(0, 0, 0) scale(1);
  transform-style: preserve-3d;
  perspective: 100vw;
 
}

#h5 .subsection-first-container .section-header .change-bg picture {
  transform: translate3d(0, 0, 0) rotateY(0deg);
  transform-origin: 0% 50%;
}

#h5 .subsection-space-4 .text-content {
  margin-left: 18.385417vw;
}

#h5 .subsection-space-7 .text-content {
  display: flex;
  justify-content: space-between;
  /* align-items: center; */
  width: 41.666667vw;
  margin: 0 auto;
}

#h5 .subsection-space-7 .text-content p {
  width: 21.5vw;
  text-align: left;
}

#h5 .subsection-space-7 .bottom-container {
  width: 38.90625vw;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: space-between;
}

#h5 .subsection-space-7 .bottom-container .bottom-item {
  color: white;
}

#h5 .subsection-space-7 .bottom-container .bottom-item h4 {
  font-size: 1.041667vw;
  font-weight: 500;
  line-height: 1.25;
  color: inherit;
}

#h5 .subsection-space-7 .bottom-container .bottom-item h3 {
  font-size: 2.5vw;
  font-weight: 400;
  color: inherit;
  margin-top: .208333vw;
}

#h5 .subsection-driving-2 .content {
  width: 65.104167vw;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  /* align-items: center; */
}

#h5 .subsection-driving-2 .content .intro {
  width: 34.854167vw;
}

#h5 .subsection-driving-3 .bottom-container {
  width: 100%;
  padding: 3.333333vw 4.6875vw;
  background: #f7f7f7;
  display: flex;
  justify-content: space-between;
}

#h5 .subsection-driving-3 .bottom-container .page-item {
  width: 15.104167vw;
}

#h5 .subsection-driving-3 .bg-content {
  position: relative;
}

#h5 .subsection-driving-3 .modal-player-cta {
  position: absolute;
  display: flex;
  align-items: center;
  bottom: 2.083333vw;
  right: 2.083333vw;
}

#h5 .subsection-driving-3 .modal-player-cta p {
  font-size: 1.25vw;
  color: #fff;
}

#h5 .subsection-driving-3 .modal-player-cta img {
  width: 2.916667vw;
  height: 2.916667vw;
  margin-left: .833333vw;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background-color: rgba(128, 128, 128, 0.2);
  border-radius: 50%;
  overflow: hidden;
}

@media (hover: hover) {
  #h5 .subsection-driving-3 .modal-player-cta img:hover {
    background-color: rgba(128, 128, 128, 0.1);
    transition: 0.3s ease;
  }
}

#h5 .subsection-space-9 .mid-content {
  position: relative;
}

#h5 .subsection-space-9 .modal-player-cta {
  position: absolute;
  display: flex;
  align-items: center;
  bottom: 1.666667vw;
  right: 1.666667vw;
}

#h5 .subsection-space-9 .modal-player-cta p {
  font-size: 1.25vw;
  color: #fff;
}

#h5 .subsection-space-9 .modal-player-cta img {
  width: 2.916667vw;
  height: 2.916667vw;
  margin-left: .833333vw;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background-color: rgba(128, 128, 128, 0.2);
  border-radius: 50%;
  overflow: hidden;
}

@media (hover: hover) {
  #h5 .subsection-space-9 .modal-player-cta img:hover {
    background-color: rgba(128, 128, 128, 0.1);
    transition: 0.3s ease;
  }
}

#h5 .subsection-driving-6 .mid-content {
  width: 59.375vw;
  position: absolute;
  left: 50%;
  bottom: 5.208333vw;
  transform: translateX(-50%);
  display: flex;
  justify-content: space-between;
}

#h5 .subsection-driving-6 .mid-content h4 {
  font-size: .9375vw;
  color: #FFFFFF;
  font-weight: 500;
  line-height: 1.25;
  margin-bottom: .208333vw;
}

#h5 .subsection-driving-6 .mid-content h3 {
  font-size: 2.5vw;
  color: #FFFFFF;
  font-weight: 400;
  line-height: 1.25;
}

#h5 .subsection-safety-4 .content {
  width: 58.854167vw;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  /* align-items: center; */
}

#h5 .subsection-safety-4 .content .intro {
  width: 29.6875vw;
}


#h5 .subsection-safety-5 .mid-container {
  display: flex;
  justify-content: space-between;
}

#h5 .subsection-safety-5 .mid-container .item-content {
  width: 38.541667vw;
  padding: 0 0 2.5vw;
}

#h5 .subsection-safety-5 .mid-container .item-content {
  background: #F8F8F8;
}

#h5 .subsection-safety-5 .mid-container .item-content picture {
  width: 100%;
  /* margin: 0 auto; */
}

#h5 .subsection-safety-5 .mid-container .item-content .item-page {
  width: 33.854167vw;
  margin-left: 2.5vw;
  margin-top: 0;
}

#h5 .subsection-safety-5 .mid-container .item-content .item-page h3 {
  font-size: 1.666667vw;
  font-weight: 500;
}

#h5 .subsection-safety-5 .mid-container .item-content .item-page .line {
  width: 100%;
  height: 1px;
  background: #707070;
  opacity: 0.32;
}
#h5 .subsection-safety-5 .mid-container .item-content .item-page p{
  font-size: .9375vw;
}
#h5 .seciton-overview {
  overflow: hidden;
}

#h5 .seciton-overview .swiper2.no-touch{
  pointer-events: none;
}

#h5 .seciton-overview .main-container {
  position: relative;
  width: 100.1%;

}

#h5 .seciton-overview .gallery-slide.current .clip-item {
  -webkit-clip-path: inset(0 0 0 0);
  clip-path: inset(0 0 0 0);
  transform: scale(1);

}

#h5 .seciton-overview .gallery-slide.left .clip-item {
  -webkit-clip-path: inset(0 100% 0 0);
  clip-path: inset(0 100% 0 0);
  transform: scale(1.2);
}

#h5 .seciton-overview .gallery-slide.right .clip-item {
  -webkit-clip-path: inset(0 0 0 100%);
  clip-path: inset(0 0 0 100%);
  transform: scale(1.2);
}

#h5 .seciton-overview .main-container .swiper2 {
  width: 36.052083vw;
  position: absolute;
  bottom: 1.145833vw;
  right: 0;
  z-index: 10;
  padding: 0 .520833vw;
}

#h5 .seciton-overview .main-container .controls-container {
  position: absolute;
  bottom: 1.822917vw;
  z-index: 3;
  left: 50%;
  transform: translateX(-50%);
}

#h5 .seciton-overview .main-container .pagination-item {

  color: #fff;
}

#h5 .seciton-overview .main-container .pagination-line {
  /* width: 1.666667vw; */
  background: rgba(255, 255, 255, 0.4);
  /* margin-left: .625vw;
  margin-right: .625vw; */
}

#h5 .seciton-overview .main-container .pagination-line::before {
  background: #fff;
}

#h5 .seciton-overview .main-container .swiper2 .swiper-slide {
  width: 4.166667vw;
  border: .104167vw solid rgba(255, 255, 255, 0);
  cursor: pointer;
}


#h5 .seciton-overview .main-container .swiper2 .swiper-wrapper {
  width: fit-content;
}

#h5 .seciton-overview .main-container .swiper2 .swiper-slide.swiper-slide-thumb-active {
  border: .104167vw solid rgba(255, 255, 255, 1);
}

#h5 .sub-change-intro .xs-intro {
  display: none;
}

#h5 .subsection-design-3 {
  position: relative;
}

@media (max-aspect-ratio: 7/10) {
  #h5 .text-content {
    text-align: left;
  }

  #h5 .sub-change-intro .xs-intro {
    display: block;
  }

  #h5 .sub-change-intro .lg-intro {
    display: none;
  }

  #h5 .section-hero {
    height: auto;
  }

  #h5 .section-hero .section-sticky {
    position: relative;
    height: auto;
  }

  #h5 .section-hero .section-sticky .sticky-bg {
    position: relative;
    height: auto;
  }

  #h5 .section-hero .section-sticky .sticky-bg .hero-picture {
    height: auto;
  }

  #h5 .section-hero .section-sticky .sticky-bg img {
    height: auto;
    width: 100%;
    transform: translateY(0);
  }

  #h5 .section-hero .section-sticky .sticky-bg .kv-title {
    top: 27.777778vw;
  }

  #h5 .section-hero .section-sticky .sticky-bg .kv-title .modal-player-cta{
  margin: 6.666667vw auto 0;
 } 

#h5 .section-hero .section-sticky .sticky-bg .kv-title .modal-player-cta span{
   font-size: 3.888889vw;
}

#h5 .section-hero .section-sticky .sticky-bg .kv-title .modal-player-cta img{
   width: 6.944444vw;
   margin-left: 2.222222vw;
}

  #h5 .section-hero .section-sticky .sticky-bg .kv-title img {
    width: 36.666667vw;
  }

  #h5 .section-hero .section-sticky .sticky-bg .kv-title .headline {
    font-size: 5.555556vw;
    letter-spacing: 5vw;
    transform: translateX(2.5vw);
    margin: 2.222222vw auto;
  }

  #h5 .section-hero .section-sticky .sticky-bg .intro {
    font-size: 3.888889vw;
    white-space: nowrap;
  }

  #h5 .section-hero .section-sticky .page-content {
    position: relative;
  }

  #h5 .section-hero .section-sticky .page-content {
    position: relative;
    height: auto;
    background: white;
    mix-blend-mode: unset;
    display: block;
    pointer-events: all;
    margin: 27.777778vw auto 11.111111vw;
  }

  #h5 .section-hero .section-sticky .page-title {
    font-size: 8.888889vw;
    transform: scale(1);
    width: fit-content;
    margin: 0 auto;
    color: #7F76A3;
  }

  #h5 .section-hero .section-sticky .page-slogan {
    font-size: 5.555556vw;
    margin: 1.388889vw auto 0;
    width: fit-content;
    letter-spacing: 0.3vw;
    transform: translateX(0.15vw);
    opacity: 1;
    color: #7F76A3;
  }

  #h5 .section-hero .section-sticky .sticky-video {
    position: relative;
    width: 100%;
    height: auto;
    clip-path: inset(0 0 0 0);
    opacity: 1;
    width: 91.111111vw;
    margin: 0 auto;
  }

  #h5 .section-hero .section-sticky .sticky-video .button-container {
    bottom: 8.888889vw;
  }

  #h5 .section-highlights .slide-inner {
    width: 100%;
    /* height: 127.5vw; */
  }

  /* #h5 .section-design {
    background: #000;
  } */

  /* #h5 .section-highlights {
    background: #fff;
    padding-bottom: 27.777778vw;
  } */

  #h5 .subsection-design-1 {
    height: auto;
    padding-top: 27.777778vw;
  }

  #h5 .subsection-design-1 .subsection-sticky {
    position: relative;
    height: auto;
  }

  #h5 .subsection-design-1 .title-content {
    position: relative;
    transform: translate(-50%, -11.111111vw);
    top: 11.111111vw;
    width: fit-content;
  }

  /* #h5 .subsection-design-1 .title-content .headline {
    color: #fff;
  } */

  #h5 .subsection-design-1 .title-content .headline h2 {
    font-size: 11.111111vw;
  }

  #h5 .subsection-design-1 .clip-container {
    -webkit-clip-path: unset;
    clip-path: unset;
    opacity: 1;
    position: relative;
    margin-top: 11.111111vw;
    transform-style: preserve-3d;
    perspective: 100vw;
    top: 11.111111vw;
    transform: translate(0%, -11.111111vw) scale(1);
    height: auto;
  }

  #h5 .subsection-design-1 .subsection-sticky picture {
    height: auto;
  }

  #h5 .subsection-design-1 .subsection-sticky img {
    height: auto;
  }

  #h5 .subsection-design-1 .clip-container .clip-title {
    opacity: 0;
    font-size: 6.666667vw;
    top: 16.666667vw;
  }

  #h5 .subsection-design-1 .clip-container picture {
    transform: rotateY(0deg);
    transform-origin: 0% 50%;
  }

  #h5 .subsection-design-1 .clip-container img {
    transform: scale(1);
  }

  #h5 .subsection-design-1 .clip-container .clip-bottom-container {
    opacity: 1;
    position: static;
    transform: translate(0, 0);
    width: 77.777778vw;
    margin: 11.111111vw auto 0 8.888889vw;
  }

  #h5 .subsection-design-1 .clip-container .clip-bottom-container .bottom-flex-container{
      flex-wrap: wrap;
  }

  #h5 .subsection-design-1 .clip-container .clip-bottom-container h4 {
    font-size: 3.888889vw;
  }

  #h5 .subsection-design-1 .clip-container .clip-bottom-container h3 {
    font-size: 8.888889vw;
  }

  #h5 .subsection-design-1 .clip-container .clip-bottom-container h3 span {
    font-size: 3.888889vw;
  }

  #h5 .subsection-design-1 .move-container {
    position: relative;
    height: auto;
    transform: translate(0, 0);
    margin-top: 27.777778vw;
    opacity: 1;
    -webkit-clip-path: inset(0% 0% 0% 0%);
   clip-path: inset(0% 0% 0% 0%);
  }

  #h5 .subsection-design-1 .move-container .move-container-title {
    position: static;
    transform: translate(0, 0);
    opacity: 1;
    display: block;
    width: 82.222222vw;
  }

  #h5 .subsection-design-1 .clip-container .clip-bottom-container .bottom-des{
    font-size: 3.333333vw;
    margin-top: 11.111111vw;
    text-align: left;
    color: #8E8E8E;
}

  /* #h5 .subsection-design-3 .slide-inner {
    transform: scale(1);
  } */

  #h5 .subsection-design-4 .headline {
    position: static;
    transform: translateX(0);
  }

  #h5 .sticky-content {
    height: auto;
  }

  #h5 .subsection-design-5 {
    padding-top: 27.777778vw;
  }

  #h5 .subsection-design-5 .text-content {
    position: static;
    transform: translate(0, 0);
    display: block;
    width: 82.222222vw;
  }

  #h5 .select-swiper .swiper-container {
    height: 113.888889vw;
    position: relative;
  }

  #h5 .select-swiper .gallery-slide {
    height: 100%;
  }

  #h5 .select-swiper .colornav-wrapper {
    position: relative;
    bottom: 0;
    flex-wrap: wrap;
    margin: 8.888889vw auto 0;
  }

  #h5 .subsection-space-8.select-swiper .colornav-wrapper{
    bottom: 0;
  }

  #h5 .select-swiper .color-label {
    font-size: 3.888889vw;
  }

  #h5 .select-swiper .color-name-list {
    position: relative;
    bottom: 0;
    width: 100%;
  }

  #h5 .select-swiper .colornav-wrapper .colornav-list {
    order: 2;
    margin-top: 3.333333vw;
  }


  #h5 .select-swiper .colornav {
    margin-left: .972222vw;
    margin-right: .972222vw;
  }

  #h5 .select-swiper .color-swatch {
    width: 10.138889vw;
    height: 11.527778vw;
  }

  #h5 .subsection-space-4 .text-content {
    margin: 0 auto;
  }

  #h5 .subsection-space-7 .text-content {
    width: 82.222222vw;
  }

  #h5 .subsection-space-7 .bottom-container {
    width: 73.5vw;
    flex-wrap: wrap;
    margin-left: 8.888889vw;
  }

  #h5 .subsection-space-7 .bottom-container .bottom-item {
    width: 40%;
  }

  #h5 .subsection-space-7 .bottom-container .bottom-item h4 {
    font-size: 3.888889vw;
  }

  #h5 .subsection-space-7 .bottom-container .bottom-item h3 {
    font-size: 8.888889vw;
    margin-top: 0.5vw;
  }

  #h5 .swiper-style-5 .swiper {
    margin-left: 2.777778vw;
  }

  #h5 .swiper-style-5 .swiper-wrapper .swiper-slide-1 {
    width: 88.333333vw;
  }

  #h5 .swiper-style-5 .swiper-wrapper .swiper-slide-2 {
    width: 86.666667vw;
  }

  #h5 .swiper-style-5 .swiper-wrapper .swiper-slide-3 {
    width: 86.666667vw;
  }

  #h5 .swiper-style-5 .bottom-content{
  padding-left: 6.666667vw;
  margin-top: 8.333333vw;
}

#h5 .swiper-style-5 .bottom-content h4{
  font-size: 5.555556vw;
}

#h5 .swiper-style-5 .bottom-content p{
  font-size: 3.888889vw;
  margin-top: 2.777778vw;
}

  #h5 .swiper-style-5 .controls-container {
    width: 82.222222vw;
    margin-left: auto;
    margin-right: auto;
  }

  #h5 .swiper-style-4 .controls-wrapper {
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
  }

  #h5 .swiper-style-4 .pagination-item {
  margin-top: 0;
  }

  #h5 .swiper-style-4 .controls-wrapper .stack-list {
    margin-right: 0;
    margin-bottom: 8.333333vw;

  }

  #h5 .swiper-style-4 .controls-wrapper .stack-item {
    text-align: center;
  }

  #h5 .swiper-style-4 .controls-wrapper .stack-item .xs-title{
      display: block;
      margin-bottom: 3.333333vw;
      font-size: 5vw;
      line-height: 1.25;
  }

  #h5 .swiper-style-4 .controls-wrapper .stack-item .intro{
     font-size: 3.888889vw;
  }

  #h5 .swiper-style-4 .arrownav-list {
    margin-left: 0;
    margin-right: 5vw;
  }

  #h5 .swiper-style-4 .pagination-item {
    margin-left: 5vw;
  }

  #h5 .swiper-style-4  .slide-des{
    font-size: 3.333333vw;
    margin-top: 3.333333vw;
    text-align: center;
  }

  #h5 .subsection-driving-2 .content {
    width: 82.222222vw;
    display: block;
  }

  #h5 .subsection-first-container .text-content {
    top: 11.111111vw;
    transform: translate(-50%, -11.111111vw);
  }

  #h5 .subsection-space-10 {
    padding-bottom: 22.222222vw;
  }

  #h5 .subsection-driving-1 {
    padding-top: 22.222222vw;
  }

  #h5 .subsection-safety-4 .content {
    width: 82.222222vw;
    display: block;
  }


  #h5 .subsection-safety-2.swiper-style-3 .stack-item .intro{
    font-size: 3.888889vw;
  }
  #h5 .subsection-driving-3 .bottom-container {
    padding: 11.111111vw 0;
    flex-wrap: wrap;
    background: #F8F8F8;
  }

  #h5 .subsection-driving-3 .bottom-container .page-item {
    width: 73.611111vw;
    margin-left: 6.111111vw;
  }

  #h5 .subsection-driving-3 .bottom-container .page-item h3 {
    font-size: 4.722222vw;
  }

  #h5 .subsection-driving-3 .bottom-container .page-item p {
    font-size: 3.888889vw;
  }

  #h5 .subsection-driving-3 .bottom-container .page-item+.page-item {
    margin-top: 8.888889vw;
  }

  #h5 .subsection-driving-6 .mid-content {
    position: static;
    margin: 11.111111vw auto 0 8.888889vw;
    transform: translate(0, 0);
    flex-direction: column;
  }

  #h5 .subsection-driving-6 .mid-content h4 {
    font-size: 3.888889vw;
    color: #000;
    margin-bottom: 0.5vw;
  }

  #h5 .subsection-driving-6 .mid-content h3 {
    font-size: 8.888889vw;
    color: #000;
  }

  #h5 .subsection-safety-5 .mid-container {
    display: block;
  }

  #h5 .subsection-safety-5 .mid-container .item-content {
    width: 100%;
    padding: 8.333333vw 0 8.888889vw;
  }

  #h5 .subsection-safety-5 .mid-container .item-content picture {
    width: 91.111111vw;
    margin: 0 auto;
  }

  #h5 .subsection-safety-5 .mid-container .item-content .item-page {
    width: 82.222222vw;
    margin-left: 6.111111vw;
    margin-top: 7.777778vw;
  }

  #h5 .subsection-safety-5 .mid-container .item-content .item-page h3 {
    font-size: 5vw;
    font-weight: 700;
  }

  #h5 .subsection-safety-5 .mid-container .item-content .item-page p {
    font-size: 3.888889vw;
  }

  #h5 .subsection-safety-5 .mid-container .item-content:last-child {
    margin-top: 16.666667vw;
  }

  #h5 .seciton-overview .main-container .swiper2 {
    position: relative;
    bottom: 0;
    right: 0;
    width: 100%;
    margin-top: 5.555556vw;
    overflow: visible;
    padding-left: 33.333333vw;
    padding-right: 8.888889vw;
  }

  #h5 .seciton-overview .main-container .swiper2 .swiper-slide {
    width: 19.166667vw;
    border: 0px;
  }

  #h5 .seciton-overview .main-container .swiper2 .swiper-slide img {
    opacity: 0.4;
    transition: opacity 0.8s;
  }

  #h5 .seciton-overview .main-container .swiper2 .swiper-slide.swiper-slide-thumb-active {
    border: 0px;
  }

  #h5 .seciton-overview .main-container .swiper2 .swiper-slide.swiper-slide-thumb-active img {
    opacity: 1;
  }

  #h5 .seciton-overview .main-container .controls-container {
    bottom: auto;
    top: 66.666667vw;
    margin-top: 0;
  }

  /* #h5 .seciton-overview .main-container .pagination-line {
    width: 6.111111vw;
    margin-left: 2.222222vw;
    margin-right: 2.222222vw;
  } */

  #h5 .seciton-overview .main-container::before {
    content: '';
    display: block;
    pointer-events: none;
    position: absolute;
    width: 8.888889vw;
    height: 19.055556vw;
    background-image: linear-gradient(to right, #ffffff 0%, #ffffff00 100%);
    left: 0;
    bottom: 0;
    z-index: 15;
  }

  #h5 .seciton-overview .main-container::after {
    content: '';
    display: block;
    pointer-events: none;
    position: absolute;
    width: 8.888889vw;
    height: 19.055556vw;
    background-image: linear-gradient(to right, #ffffff00 0%, #ffffff 100%);
    right: 0;
    bottom: 0;
    z-index: 15;
  }

  #h5 .subsection-driving-3 .modal-player-cta {
    bottom: 4.444444vw;
    right: 4.444444vw;
  }

  #h5 .subsection-driving-3 .modal-player-cta p {
    font-size: 4.444444vw;
  }

  #h5 .subsection-driving-3 .modal-player-cta img {
    width: 8.888889vw;
    height: 8.888889vw;
    margin-left: 3.333333vw;
  }

   #h5 .subsection-space-9 .modal-player-cta {
    bottom: 4.444444vw;
    right: 4.444444vw;
  }

  #h5 .subsection-space-9 .modal-player-cta p {
    font-size: 4.444444vw;
  }

  #h5 .subsection-space-9 .modal-player-cta img {
    width: 8.888889vw;
    height: 8.888889vw;
    margin-left: 3.333333vw;
  }

 

}

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

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

  #h5 .mt-20,
  #h5 .xs\:mt-20 {
    margin-top: 1.428571vw;
  }

  #h5 .mt-24,
  #h5 .xs\:mt-24 ,
  #h5 .pad\:mt-24{
    margin-top: 1.714286vw;
  }

  #h5 .ml-24,
  #h5 .xs\:ml-24{
    margin-left: 1.714286vw;
  }

  #h5 .mt-32,
  #h5 .xs\:mt-32,
  #h5 .pad\:mt-32 {
    margin-top: 2.285714vw;
  }

  #h5 .mt-40,
  #h5 .xs\:mt-40 {
    margin-top: 2.857143vw;
  }

  #h5 .mt-48,
  #h5 .xs\:mt-48 {
    margin-top: 3.428571vw;
  }

  #h5 .mt-56,
  #h5 .xs\:mt-56 {
    margin-top: 4vw;
  }

  #h5 .mt-64,
  #h5 .pad\:mt-64,
  #h5 .xs\:mt-64 {
    margin-top: 4.571429vw;
  }

  #h5 .mt-60,
  #h5 .xs\:mt-60 {
    margin-top: 4.285714vw;
  }

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

  #h5 .mt-80,
  #h5 .pad\:mt-80,
  #h5 .xs\:mt-80 {
    margin-top: 5.714286vw;
  }

  #h5 .pt-200,
  #h5 .xs\:pt-200 {
    padding-top: 14.285714vw;
  }

  #h5 .pb-200,
  #h5 .xs\:pb-200 {
    padding-bottom: 14.285714vw;
  }

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

  #h5 .pad\:w-1272 {
    width: 90.857143vw;
  }

  #h5 .mt-0,
  #h5 .pad\:mt-0 {
    margin-top: 0;
  }

  #h5 {
    font-size: 2.285714vw;
  }

  #h5 h2 {
    font-size: 4.571429vw;
  }

  #h5 .section-hero {
    height: auto;
  }

  #h5 br.pad-hidden {
    display: none;
  }

  #h5 br.pad {
    display: block;
  }

  #h5 .pad-center {
    text-align: center;
  }

  #h5 .section-hero .section-sticky {
    position: relative;
    height: auto;
  }

  #h5 .section-hero .section-sticky .sticky-bg {
    position: relative;
    height: auto;
  }

  #h5 .section-hero .section-sticky .sticky-bg .hero-picture {
    height: auto;
  }

  #h5 .section-hero .section-sticky .sticky-bg img {
    height: auto;
    width: 100%;
    transform: translateY(0);
  }

  #h5 .section-hero .section-sticky .sticky-bg .kv-title {
    top: 15.714286vw;
  }

  #h5 .section-hero .section-sticky .sticky-bg .kv-title img {
    width: 23vw;
  }

  #h5 .section-hero .section-sticky .sticky-bg .kv-title .headline {
    font-size: 3.428571vw;
    letter-spacing: 3vw;
    transform: translateX(1.5vw);
    margin: 1vw auto;
  }

  #h5 .section-hero .section-sticky .sticky-bg .kv-title .modal-player-cta{
  margin: 2.857143vw auto 0;
}

#h5 .section-hero .section-sticky .sticky-bg .kv-title .modal-player-cta span{
   font-size: 2vw;
}

#h5 .section-hero .section-sticky .sticky-bg .kv-title .modal-player-cta img{
   width: 3.428571vw;
   margin-left: 1.142857vw;
}

  #h5 .section-hero .section-sticky .sticky-bg .intro {
    font-size: 2.285714vw;
    white-space: nowrap;
  }

  #h5 .section-hero .section-sticky .page-content {
    position: relative;
  }

  #h5 .section-hero .section-sticky .page-content {
    position: relative;
    height: auto;
    background: white;
    mix-blend-mode: unset;
    display: block;
    pointer-events: all;
    margin: 14.285714vw auto 5.714286vw;
  }

  #h5 .section-hero .section-sticky .page-title {
    font-size: 5.714286vw;
    transform: scale(1);
    width: fit-content;
    margin: 0 auto;
    color: #7F76A3;
  }

  #h5 .section-hero .section-sticky .page-slogan {
    font-size: 3.428571vw;
    margin: 1.714286vw auto 0;
    width: fit-content;
    letter-spacing: 0.4vw;
    transform: translateX(0.2vw);
    opacity: 1;
    color: #7F76A3;
  }

  #h5 .section-hero .section-sticky .sticky-video {
    position: relative;
    width: 100%;
    height: auto;
    clip-path: inset(0 0 0 0);
    opacity: 1;
    width: 90.857143vw;
    margin: 0 auto;
  }

  #h5 .section-hero .section-sticky .sticky-video .button-container {
    bottom: 4.571429vw;
  }

  #h5 .button-container .button-copy{
    font-size: 1.857143vw;
  }

  #h5 .button-container .button-link{
    width: 20.071429vw;
  }

  #h5 .section-highlights .slide-inner {
    /* height: 71.428571vw; */
  }

  #h5 .arrownav-list .arrownav-item {
    width: 5.857143vw;
  }

  #h5 .arrownav-list .arrownav-next {
    margin-left: 1.857143vw;
  }

  #h5 .pagination-item {
    font-size: 2.285714vw;
  }

  #h5 .pagination-line {
    width: 10.5vw;
    height: .214286vw;
    margin-left: 1.714286vw;
    margin-right: 1.714286vw;
  }

  #h5 .section-highlights .controls-wrapper {
    width: 38.285714vw;
  }

  /* #h5 .section-highlights .swiper-wrapper .swiper-slide {
    border-radius: 2.285714vw;
  } */

  #h5 .section-highlights .caption {
    margin: 4.285714vw 3.333333vw;
    font-size: 3.428571vw;
    color: #fff;
  }

  /* #h5 .section-design {
    background: #000;
  }

  #h5 .section-highlights {
    background: #fff;
    padding-bottom: 11.428571vw;
  } */

  #h5 .subsection-design-1 {
    height: auto;
    padding-top: 14.285714vw;
  }

  #h5 .subsection-design-1 .subsection-sticky {
    position: relative;
    height: auto;
  }

  #h5 .subsection-design-1 .title-content {
    /* position: relative; */
    top: 22.857143vw;
    transform: translate(-50%, -15.714286vw);
    width: fit-content;
  }

  /* #h5 .subsection-design-1 .title-content .headline {
    color: #fff;
  } */

  #h5 .subsection-design-1 .title-content .headline h2 {
    font-size: 5.714286vw;
  }

  #h5 .subsection-design-1 .clip-container {
    -webkit-clip-path: unset;
    clip-path: unset;
    opacity: 1;
    position: relative;
    margin-top: 0;
    transform-style: preserve-3d;
    perspective: 100vw;
    top: 0;
    /* transform: translate(0%, -5.714286vw) scale(1); */
    transform: translate3d(0, 0, 0) scale(1);
    height: auto;
  }

  #h5 .subsection-design-1 .subsection-sticky picture {
    height: auto;
  }

  #h5 .subsection-design-1 .subsection-sticky img {
    height: auto;
  }

  #h5 .subsection-design-1 .clip-container .clip-title {
    opacity: 0;
    font-size: 4.571429vw;
    top: 8.571429vw;
  }

  #h5 .subsection-design-1 .clip-container picture {
    transform: rotateY(0deg);
    transform-origin: 0% 50%;
  }

  #h5 .subsection-design-1 .clip-container img {
    transform: scale(1);
  }

  #h5 .subsection-design-1 .clip-container .clip-bottom-container {
    opacity: 1;
    position: static;
    transform: translate(0, 0);
    width: 75.785714vw;
    margin: 5.714286vw auto 0;
  }

  #h5 .subsection-design-1 .clip-container .clip-bottom-container h4 {
    font-size: 2vw;
  }

  #h5 .subsection-design-1 .clip-container .clip-bottom-container h3 {
    font-size: 4.571429vw;
    margin-top: 1vw;
  }

  #h5 .subsection-design-1 .clip-container .clip-bottom-container h3 span {
    font-size: 2vw;
  }

  #h5 .subsection-design-1 .move-container {
    position: relative;
    height: auto;
    transform: translate(0, 0);
    margin-top: 14.285714vw;
    opacity: 1;
    -webkit-clip-path: inset(0% 0% 0% 0%);
   clip-path: inset(0% 0% 0% 0%);
  }

  #h5 .subsection-design-1 .move-container .move-container-title {
    position: static;
    transform: translate(0, 0);
    opacity: 1;
    width: 72.857143vw;
    margin-left: 12.142857vw;
    align-items: flex-start;
  }

  #h5 .subsection-design-1 .move-container .move-container-title p {
    width: 39vw;
    color: #8E8E8E;
    opacity: 1;
  }

  /* #h5 .subsection-design-3 .slide-inner {
    transform: scale(1);
  } */

  #h5 .subsection-design-5 {
    padding-top: 14.285714vw;
  }

  #h5 .subsection-design-5 .text-content {
    position: static;
    transform: translate(0, 0);
    display: block;
    width: 41.428571vw;
    margin-left: 12.285714vw;
  }

  #h5 .subsection-design-5 .text-content p {
    width: 100%;
    margin-top: 2.285714vw;
    color: #8E8E8E;
    opacity: 1;
  }

  #h5 .subsection-design-4 .headline {
    position: static;
    transform: translate(0, 0);
    text-align: center;
  }

  #h5 .select-swiper .swiper-container {
    height: 57.142857vw;
    position: relative;
  }

  #h5 .sticky-content {
    height: auto;
  }

  #h5 .select-swiper .gallery-slide {
    height: 100%;
  }

  #h5 .select-swiper .colornav-wrapper {
    position: relative;
    bottom: 0;
    flex-wrap: wrap;
    margin: 5.714286vw auto 0;
  }

    #h5 .subsection-space-8.select-swiper .colornav-wrapper{
    bottom: 0;
  }

  #h5 .select-swiper .color-label {
    font-size: 2.285714vw;
  }

  #h5 .select-swiper .color-name-list {
    position: relative;
    bottom: 0;
    width: 100%;
  }

  #h5 .select-swiper .colornav-wrapper .colornav-list {
    order: 2;
    margin-top: 1.714286vw;
  }

  #h5 .select-swiper .colornav {
    margin-left: .571429vw;
    margin-right: .571429vw;
  }

  #h5 .select-swiper .color-swatch {
    width: 6.071429vw;
    height: 6.857143vw;
  }

  #h5 .section-header h2 {
    font-size: 5.714286vw;
  }

  #h5 .subsection-first-container .text-content {
    top: 22.857143vw;
    transform: translate(-50%, -15.714286vw);
  }

  #h5 .swiper-style-3 .content-container {
    padding: 5.714286vw 0 0;
  }

  #h5 .swiper-style-3 .content-wrapper {
    width: 59vw;
  }

  #h5 .swiper-style-3 .stack-item .headline {
    font-size: 2.857143vw;
  }

  #h5 .swiper-style-3 .stack-item .intro {
    font-size: 2.285714vw;
    margin-top: 2.285714vw;
  }

  #h5 .swiper-style-3 .stack-list {
    margin-bottom: 4.285714vw;
  }

  #h5 .tabnav-item+.tabnav-item {
    margin-left: 4vw;
  }

  #h5 .tabnav-item {
    font-size: 2.285714vw;
    padding-bottom: 1.714286vw;
  }

  #h5 .stack-item {
    font-size: 2.285714vw;
  }

  #h5 .subsection-space-4 .text-content {
    margin-left: 12.285714vw;
  }

  #h5 .swiper-style-5 .swiper {
    margin-left: 4.571429vw;
  }

  #h5 .swiper-style-5 .swiper-wrapper .swiper-slide-1 {
    width: 45.428571vw;
  }

  #h5 .swiper-style-5 .swiper-wrapper .swiper-slide-2 {
    width: 44.571429vw;
  }

  #h5 .swiper-style-5 .swiper-wrapper .swiper-slide-3 {
    width: 44.571429vw;
  }

  #h5 .swiper-style-5 .bottom-content{
  padding-left: 1.428571vw;
  margin-top: 4.285714vw;
}

#h5 .swiper-style-5 .bottom-content h4{
  font-size: 2.857143vw;
}

#h5 .swiper-style-5 .bottom-content p{
  font-size: 2vw;
  margin-top: 1.428571vw;
}

  #h5 .swiper-style-5 .controls-container {
    width: 90.857143vw;
    margin-left: auto;
    margin-right: auto;
  }

  #h5 .swiper-style-4 .controls-wrapper {
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }

  #h5 .swiper-style-4 .pagination-item {
  margin-top: 0;
  }

  #h5 .swiper-style-4 .controls-wrapper .stack-list {
    margin-right: 0;
    margin-bottom: 4.285714vw;
  }

  #h5 .swiper-style-4 .controls-wrapper .stack-item {
    text-align: center;
  }

  #h5 .swiper-style-4 .controls-wrapper .stack-item .xs-title{
      display: block;
      margin-bottom: 1.714286vw;
      font-size: 2.857143vw;
      line-height: 1.25;
  }

  #h5 .swiper-style-4 .arrownav-list {
    margin-left: 4.571429vw;
    margin-right: 0;
  }

  #h5 .swiper-style-4 .pagination-item {
    margin-left: 0;
  }

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

  #h5 .subsection-space-7 .text-content {
    width: 70vw;
    align-items: flex-start;
  }

  #h5 .subsection-space-7 .text-content p {
    width: 40vw;
  }

  #h5 .subsection-space-7 .bottom-container {
    width: 67.857143vw;
    margin-top: 5.714286vw;
  }

  #h5 .subsection-space-7 .bottom-container .bottom-item h4 {
    font-size: 2vw;
  }

  #h5 .subsection-space-7 .bottom-container .bottom-item h3 {
    font-size: 4.571429vw;
    margin-top: 1vw;
  }

  #h5 .subsection-space-9 .text-content {
    width: 65vw;
    margin-left: 12.285714vw;
    text-align: left;
  }

  #h5 .subsection-driving-2 .content {
    width: 58.928571vw;
    display: block;
    margin-left: 7.714286vw;
  }

  #h5 .subsection-driving-2 .content .intro {
    width: 100%;
    margin-top: 2.285714vw;
  }

  #h5 .subsection-driving-3 .bottom-container {
    flex-wrap: wrap;
    padding: 5.714286vw 18.571429vw 5.714286vw 7.714286vw;
  }

  #h5 .subsection-driving-3 .bottom-container .page-item {
    width: 44%;
  }

  #h5 .subsection-driving-3 .bottom-container .page-item h3 {
    font-size: 2.428571vw;
  }

  #h5 .subsection-driving-3 .bottom-container .page-item p {
    font-size: 2vw;
    margin-top: 1.428571vw;
  }

  #h5 .subsection-driving-6 .mid-content {
    position: static;
    transform: translate(0, 0);
    margin: 5.714286vw auto 0;
    width: 61.428571vw;
    flex-wrap: wrap;
  }

  #h5 .subsection-driving-6 .mid-content .page-item {
    width: 39.5%;
  }

  #h5 .subsection-driving-6 .mid-content h4 {
    font-size: 2vw;
    color: #000;
    margin-bottom: 0;
  }

  #h5 .subsection-driving-6 .mid-content h3 {
    font-size: 4.571429vw;
    margin-top: 1vw;
    color: #000;
  }

  #h5 .subsection-safety-3 .text-content {
    width: 59.285714vw;
    text-align: left;
    margin-left: 12.285714vw;
  }

  #h5 .subsection-safety-4 .content {
    width: 77.142857vw;
    margin-left: 7.714286vw;
    align-items: flex-start;
  }

  #h5 .subsection-safety-4 .content .intro {
    width: 49.285714vw;
  }

  #h5 .subsection-safety-5 .mid-container .item-content {
    width: 44.714286vw;
    padding: 4.285714vw 0 5.714286vw;
  }

  #h5 .subsection-safety-5 .mid-container .item-content .item-page {
    width: 36.428571vw;
    margin-left: 3.142857vw;
    margin-top: 4vw;
  }

  #h5 .subsection-safety-5 .mid-container .item-content .item-page h3 {
    font-size: 2.571429vw;
  }

  #h5 .subsection-safety-5 .mid-container .item-content .item-page p {
    font-size: 2vw;
  }

  #h5 .seciton-overview .main-container .swiper2 {
    position: relative;
    bottom: 0;
     right: 0;
    width: 100%;
    margin-top: 2.857143vw;
    overflow: visible;
    padding-left: 42.857143vw;
    padding-right: 4.571429vw;
  }

  #h5 .seciton-overview .main-container .swiper2 .swiper-slide {
    width: 9.857143vw;
    border: 0px;
  }

  #h5 .seciton-overview .main-container .swiper2 .swiper-slide img {
    opacity: 0.4;
    transition: opacity 0.8s;
  }

  #h5 .seciton-overview .main-container .swiper2 .swiper-slide.swiper-slide-thumb-active {
    border: 0px;
  }

  #h5 .seciton-overview .main-container .swiper2 .swiper-slide.swiper-slide-thumb-active img {
    opacity: 1;
  }

  #h5 .seciton-overview .main-container .controls-container {
    bottom: auto;
    top: 51.428571vw;
    margin-top: 0;
  }

  /* #h5 .seciton-overview .main-container .pagination-line {
    width: 3.142857vw;
    margin-left: 1.142857vw;
    margin-right: 1.142857vw;
  } */

  #h5 .seciton-overview .main-container::before {
    content: '';
    display: block;
    pointer-events: none;
    position: absolute;
    width: 4.571429vw;
    height: 8.571429vw;
    background-image: linear-gradient(to right, #ffffff 0%, #ffffff00 100%);
    left: 0;
    bottom: 0;
    z-index: 15;
  }

  #h5 .seciton-overview .main-container::after {
    content: '';
    display: block;
    pointer-events: none;
    position: absolute;
    width: 4.571429vw;
    height: 8.571429vw;
    background-image: linear-gradient(to right, #ffffff00 0%, #ffffff 100%);
    right: 0;
    bottom: 0;
    z-index: 15;
  }

  #h5 .section-footnote .footnote-list {
    font-size: 1.714286vw;
  }

  #h5 .subsection-driving-3 .modal-player-cta {
    bottom: 2.285714vw;
    right: 2.285714vw;
  }

  #h5 .subsection-driving-3 .modal-player-cta p {
    font-size: 2.285714vw;
  }

  #h5 .subsection-driving-3 .modal-player-cta img {
    width: 4.571429vw;
    height: 4.571429vw;
    margin-left: 1.714286vw;
  }

    #h5 .subsection-space-9 .modal-player-cta {
    bottom: 2.285714vw;
    right: 2.285714vw;
  }

  #h5 .subsection-space-9 .modal-player-cta p {
    font-size: 2.285714vw;
  }

  #h5 .subsection-space-9 .modal-player-cta img {
    width: 4.571429vw;
    height: 4.571429vw;
    margin-left: 1.714286vw;
  }

  #h5 .swiper-style-4 .slide-des{
     font-size: 1.714286vw;
     text-align: center;
     margin-top: 1.142857vw;
  }

  #h5 .subsection-design-1 .clip-container .clip-bottom-container .bottom-des{
     color: #8E8E8E;
     font-size: 1.714286vw;
     margin-top: 4.571429vw;
  }
  

}

#h5 .fadeup,
#h5 .lg-fadeup {
  transition: opacity 0.5s ease-in, transform 0.5s cubic-bezier(0.26, 0.67, 0.48, 0.91);
  transform: translate(0, 60px) !important;
  opacity: .001 !important;
}

@media (max-aspect-ratio: 11 / 10) {
  #h5 .lg-fadeup {
    transform: none !important;
    opacity: 1 !important;
  }

  #h5 .pad-fadeup {
    transition: opacity 0.5s ease-in, transform 0.5s cubic-bezier(0.26, 0.67, 0.48, 0.91);
    transform: translate(0, 60px) !important;
    opacity: .001 !important;
  }
}

@media (max-aspect-ratio: 7 / 10) {
  #h5 .pad-fadeup {
    transform: none !important;
    opacity: 1 !important;
  }

  #h5 .xs-fadeup {
    transition: opacity 0.5s ease-in, transform 0.5s cubic-bezier(0.26, 0.67, 0.48, 0.91);
    transform: translate(0, 60px) !important;
    opacity: .001 !important;
  }
}

#h5 .fadeup.animated,
#h5 .lg-fadeup.animated,
#h5 .pad-fadeup.animated,
#h5 .xs-fadeup.animated {
  transform: translate(0, 0) !important;
  opacity: .999 !important;
}

#localnav .ln-button{
  color: white;
}