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-show #localnav {
  transform: translateY(0%);
}

#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 .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 .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 .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.ln-wrap {
  max-height: 56px;
  line-height: 56px;
}

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

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

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

#localnav.ln-wrap .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.ln-wrap .ln-menu::-webkit-scrollbar {
  display: none;
}

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

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

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

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

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

#localnav.ln-wrap .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: 9999 !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;
  -webkit-animation: modalFadeIn .3s forwards;
  animation: modalFadeIn .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;
  transition: opacity .2s;
  opacity: .8;
}

#modal-player-close:hover {
  opacity: 1;
}

@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 modalFadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

#s7 {
  line-height: 1.6;
}

#s7 section {
  position: relative;
}

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

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

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

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

#s7 sup a {
  color: inherit;
}

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

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

#s7 .nospace {
  position: absolute;
}

#s7 .sticky-wrapper {
  position: relative;
  z-index: 1;
}

#s7 .sticky-content {
  position: sticky;
  top: 50px;
  overflow: hidden;
  width: 100%;
  height: calc(56.25vw - 50px);
}

@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
  #s7 .sticky-wrapper {
    height: auto !important;
  }

  #s7 .sticky-content {
    position: relative !important;
    top: 0 !important;
    height: auto !important;
  }
}

#s7.no-sticky .sticky-wrapper {
  height: auto !important;
}

#s7.no-sticky .sticky-content {
  position: relative !important;
  top: 0 !important;
  height: auto !important;
}

#s7 .row {
  display: flex;
  flex-flow: row wrap;
}

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

#s7 .covered-picture img {
  object-position: 100% 18%;
  height: 100%;
  object-fit: cover;
}

#s7 .covered-picture.color-cyan img {
  object-position: 100% 50%;
}

#s7 .covered-picture.color-purple img {
  object-position: 100% 90%;
}

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

#s7 .aspect-ratio::before {
  display: block;
  content: '';
}

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

#s7 .inline-media {
  position: relative;
  overflow: hidden;
}

#s7 .inline-media .icon-play {
  position: static;
}

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

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

@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
  #s7 .blur-up {
    transition: opacity .3s;
    opacity: .001;
  }

  #s7 .blur-up.lazyloaded {
    opacity: 1;
  }
}

#s7 .block {
  display: block;
}

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

#s7 .inline {
  display: inline;
}

#s7 .flex {
  display: flex;
}

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

#s7 .hidden {
  display: none;
}

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

  #s7 .xs-inline-block {
    display: inline-block;
  }

  #s7 .xs-inline {
    display: inline;
  }

  #s7 .xs-flex {
    display: flex;
  }

  #s7 .xs-inline-flex {
    display: inline-flex;
  }

  #s7 .xs-hidden {
    display: none;
  }
}

#s7 br.lg {
  display: block;
}

#s7 br.xs {
  display: none;
}

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

  #s7 br.xs {
    display: block;
  }
}

#s7 .theme-dark {
  color: #fff;
  background-color: #161826;
  box-shadow: 0 2px #161826;
}

#s7 .theme-dark h2,
#s7 .theme-dark h3,
#s7 .theme-dark h4,
#s7 .theme-dark .signpost {
  color: #fff;
}

#s7 .theme-dark p {
  color: #797C80;
}

#s7 .space-t {
  padding-top: 10.416667vw;
}

#s7 .space-y {
  padding-top: 10.416667vw;
  padding-bottom: 10.416667vw;
}

#s7 .section-content {
  width: 73.333333vw;
  margin-right: auto;
  margin-left: auto;
}

#s7 .section-new-content {
  width: 81.25vw;
  margin-right: auto;
  margin-left: auto;
}



@media (max-aspect-ratio: 11 / 10) {
  #s7 .space-t {
    padding-top: 27.777778vw;
  }

  #s7 .space-y {
    padding-top: 27.777778vw;
    padding-bottom: 27.777778vw;
  }

  #s7 .section-content {
    width: 95.555556vw;
  }

  #s7 .section-new-content {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
  }

}

#s7 h2,
#s7 h3,
#s7 h4 {
  font-weight: bold;
  line-height: 1.25;
  color: #000;
}

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

#s7 h3 {
  font-size: 1.666667vw;
}

#s7 h4 {
  font-size: 2.083333vw;
}

#s7 .signpost {
  color: #000;
}

#s7 .bold {
  font-weight: 700;
}

#s7 p {
  font-size: 1.041667vw;
  color: #797C80;
}

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

#s7 .note {
  font-size: .625vw;
}


@media (min-width: 1921px) {
  #s7 .note {
    font-size: .625vw;
  }
}

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

  #s7 h2.xs\:elevated {
    font-size: 6.666667vw;
  }

  #s7 h3 {
    font-size: 5.555556vw;
  }

  #s7 h4 {
    font-size: 8.888889vw;
  }

  #s7 p {
    font-size: 4.444444vw;
  }

  #s7 .note {
    font-size: 2.222222vw;
  }

  #s7 .xs-text-left {
    text-align: left;
  }

}

#s7 .lg\:1920\/1080::before {
  padding-bottom: calc(100% / (1920 / 1080));
}

#s7 .lg\:1920\/900::before {
  padding-bottom: calc(100% / (1920 / 900));
}

#s7 .lg\:1920\/720::before {
  padding-bottom: calc(100% / (1920 / 720));
}

#s7 .lg\:1408\/800::before {
  padding-bottom: calc(100% / (1408 / 800));
}

#s7 .r\:1408\/720::before,
#s7 .lg\:1408\/720::before {
  padding-bottom: calc(100% / (1408 / 720));
}

#s7 .r\:1408\/780::before,
#s7 .lg\:1408\/780::before {
  padding-bottom: calc(100% / (1408 / 780));
}

#s7 .r\:1560\/780::before,
#s7 .lg\:1560\/780::before {
  padding-bottom: calc(100% / (1560 / 780));
}

#s7 .r\:1560\/878::before,
#s7 .lg\:1560\/878::before {
  padding-bottom: calc(100% / (1560 / 878));
}

#s7 .lg\:1084\/478::before {
  padding-bottom: calc(100% / (1084 / 478));
}

#s7 .lg\:1437\/809::before {
  padding-bottom: calc(100% / (1437 / 809));
}

#s7 .lg\:820\/475::before {
  padding-bottom: calc(100% / (820 / 475));
}

#s7 .lg\:688\/534::before {
  padding-bottom: calc(100% / (688 / 534));
}

#s7 .lg\:688\/400::before {
  padding-bottom: calc(100% / (688 / 400));
}

#s7 .lg\:527\/421::before {
  padding-bottom: calc(100% / (527 / 421));
}

#s7 .lg\:504\/500::before {
  padding-bottom: calc(100% / (504 / 500));
}

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

@media (max-aspect-ratio: 11 / 10) {
  .no-inline-media #s7 .xsnoim\:1\/1::before {
    padding-bottom: 100%;
  }

  #s7 .xs\:1\/1::before {
    padding-bottom: 100%;
  }

  #s7 .xs\:w-688 {
    width: 95.555556vw;
  }


  #s7 .xs\:720\/1240::before {
    padding-bottom: calc(100% / (720 / 1240));
  }

  #s7 .xs\:720\/1080::before {
    padding-bottom: calc(100% / (720 / 1080));
  }

  #s7 .xs\:720\/1280::before {
    padding-bottom: calc(100% / (720 / 1280));
  }

  #s7 .xs\:720\/500::before {
    padding-bottom: calc(100% / (720 / 500));
  }

  #s7 .xs\:720\/688::before {
    padding-bottom: calc(100% / (720 / 688));
  }

  #s7 .xs\:688\/800::before {
    padding-bottom: calc(100% / (688 / 800));
  }

  #s7 .xs\:640\/372::before {
    padding-bottom: calc(100% / (640 / 372));
  }

  #s7 .xs\:640\/360::before {
    padding-bottom: calc(100% / (640 / 360));
  }

  #s7 .xs\:640\/334::before {
    padding-bottom: calc(100% / (640 / 334));
  }
}

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

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

#s7 .mt-30,
#s7 .lg\:mt-30 {
  margin-top: 1.5625vw;
}

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

#s7 .mt-60,
#s7 .lg\:mt-60 {
  margin-top: 3.125vw;
}

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

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



@media (max-aspect-ratio: 11 / 10) {
  #s7 .xs\:mt-0 {
    margin-top: 0;
  }

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

  #s7 .mt-30,
  #s7 .xs\:mt-30 {
    margin-top: 4.166667vw;
  }

  #s7 .mt-40 {
    margin-top: 5.555556vw;
  }

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

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

  #s7 .xs\:mt-140 {
    margin-top: 19.444444vw;
  }

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

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

#s7 .fade-effect {
  overflow: hidden;
}

@media (max-aspect-ratio: 11 / 10) {
  #s7 .fade-effect.section-content {
    width: 100%;
  }

  #s7 .fade-effect .swiper-container {
    width: 100%;
  }
}

#s7 .slide-effect {
  width: 100%;
}

#s7 .slide-effect .swiper-wrapper {
  transition: transform 1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

#s7 .slide-effect .swiper-slide {
  width: 73.333333vw;
  background-color: #000;
}

#s7 .slide-effect .swiper-slide picture {
  transition: opacity 1s cubic-bezier(0.645, 0.045, 0.355, 1);
  opacity: .3;
}

#s7 .slide-effect .picture-wrapper {
  background-color: #000;
}

#s7 .slide-effect .swiper-slide-active picture,
#s7 .slide-effect .swiper-slide-duplicate-active picture {
  opacity: 1;
}

#s7 .slide-effect .nav-arrow {
  position: absolute;
  z-index: 1;
  top: 17.5vw;
  width: 2.5vw;
  cursor: pointer;
  transition: .3s;
  opacity: .5;
  outline: 0;
}

#s7 .slide-effect .nav-arrow:hover {
  opacity: 1;
}

#s7 .slide-effect .arrow-prev {
  left: 8.75vw;
}

#s7 .slide-effect .arrow-next {
  right: 8.75vw;
}

#s7 .slide-effect .dotnav-list {
  position: absolute;
  z-index: 1;
  bottom: 1.5625vw;
  display: flex;
  justify-content: center;
}

#s7 .slide-effect .dotnav {
  width: .416667vw;
  height: .416667vw;
  margin: 0 .208333vw;
  cursor: pointer;
  transition: width 1s;
  border-radius: .416667vw;
  outline: 0;
  background-color: rgba(255, 255, 255, 0.6);
}

#s7 .slide-effect .dotnav.active {
  width: .833333vw;
}

#s7 .slide-effect .stack-item {
  transition: opacity .5s .5s;
}

@media (max-aspect-ratio: 11 / 10) {
  #s7 .slide-effect {
    width: 88.888889vw;
  }

  #s7 .slide-effect .swiper-wrapper {
    transition: transform .5s ease;
  }

  #s7 .slide-effect .swiper-slide {
    width: 100%;
  }

  #s7 .slide-effect .swiper-slide picture {
    opacity: 1;
  }

  #s7 .slide-effect .nav-arrow {
    display: none;
  }

  #s7 .slide-effect .dotnav-list {
    bottom: 4.166667vw;
  }

  #s7 .slide-effect .dotnav {
    width: 2.777778vw;
    height: 2.777778vw;
    margin: 0 1.388889vw;
    transition: width .5s, opacity .5s;
    border-radius: 2.777778vw;
  }

  #s7 .slide-effect .dotnav.active {
    width: 5.555556vw;
  }

  #s7 .slide-effect .stack-item {
    transition: opacity .25s .25s;
  }
}

#s7 [data-active='1'] .tabnav:nth-of-type(1) {
  color: #000;
}

#s7 [data-active='1'] .stack-item:nth-of-type(1) {
  z-index: 1;
  opacity: 1;
}

#s7 [data-active='2'] .tabnav:nth-of-type(2) {
  color: #000;
}

#s7 [data-active='2'] .stack-item:nth-of-type(2) {
  z-index: 1;
  opacity: 1;
}

#s7 [data-active='3'] .tabnav:nth-of-type(3) {
  color: #000;
}

#s7 [data-active='3'] .stack-item:nth-of-type(3) {
  z-index: 1;
  opacity: 1;
}

#s7 [data-active='4'] .tabnav:nth-of-type(4) {
  color: #000;
}

#s7 [data-active='4'] .stack-item:nth-of-type(4) {
  z-index: 1;
  opacity: 1;
}

#s7 [data-active='5'] .tabnav:nth-of-type(5) {
  color: #000;
}

#s7 [data-active='5'] .stack-item:nth-of-type(5) {
  z-index: 1;
  opacity: 1;
}

#s7 [data-active='6'] .tabnav:nth-of-type(6) {
  color: #000;
}

#s7 [data-active='6'] .stack-item:nth-of-type(6) {
  z-index: 1;
  opacity: 1;
}

#s7 .theme-dark [data-active='1'] .tabnav:nth-of-type(1) {
  color: #fff;
}

#s7 .theme-dark [data-active='2'] .tabnav:nth-of-type(2) {
  color: #fff;
}

#s7 .theme-dark [data-active='3'] .tabnav:nth-of-type(3) {
  color: #fff;
}

#s7 .theme-dark [data-active='4'] .tabnav:nth-of-type(4) {
  color: #fff;
}

#s7 .theme-dark [data-active='5'] .tabnav:nth-of-type(5) {
  color: #fff;
}

#s7 .theme-dark [data-active='6'] .tabnav:nth-of-type(6) {
  color: #fff;
}

#s7 .theme-dark .tabnav {
  color: #5a5a5a;
}

#s7 .theme-dark .tabnav-scrollbar {
  background-color: #5a5a5a;
}

@media (max-aspect-ratio: 11 / 10) {
  #s7 .theme-dark .tablist::after {
    background-color: #5a5a5a;
  }
}

#s7 .swiper-content {
  display: flex;
  align-items: center;
  flex-direction: column;
}

#s7 .tablist-wrapper {
  position: relative;
  margin: 0 auto;
  padding-top: 2.083333vw;
}

#s7 .tablist {
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

#s7 .tabnav {
  padding-bottom: 1.041667vw;
  font-size: 1.25vw;
  cursor: pointer;
  transition: color .3s;
  white-space: nowrap;
  color: #797C80;
  border-radius: 0;
  outline: 0;
  background: none;
}

#s7 .tabnav+.tabnav {
  margin-left: 3.125vw;
}

#s7 .tabnav-scrollbar {
  width: 100%;
  height: .208333vw;
  background-color:rgba(24,25,26,0.2);
}

#s7 .swiper-scrollbar-drag {
  width: 0;
  transition: transform .5s, width .5s;
  border-radius: 0;
  background-color: #18191A;
}

#s7 .colornav-list {
  display: flex;
  align-items: center;
  justify-content: center;
}

#s7 .stack-list {
  display: flex;
  text-align: center;
}

#s7 .stack-item {
  position: relative;
  width: 100%;
  transition: opacity .3s;
  opacity: 0;
}


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

@media (max-aspect-ratio: 11 / 10) {
  #s7 .swiper-content {
    display: block;
    width: 100%;
    position: relative;
    margin-top: 11.111111vw;
  }

  #s7 .swiper-content::before {
    content: '';
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    width: 11.111111vw;
    height: 13.111111vw;
    background-image: linear-gradient(to left, rgba(0, 0, 0, 0), #FFFFFF 60%, #ffffff 100%);
    z-index: 4;
    pointer-events: none;
  }

  #s7 .swiper-content::after {
    content: '';
    display: flex;
    position: absolute;
    top: 0;
    right: 0;
    width: 11.111111vw;
    height: 13.111111vw;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0), #FFFFFF 60%, #ffffff 100%);
    z-index: 4;
    pointer-events: none;
  }


  #s7 .tablist-wrapper {
    position: relative;
    overflow-x: auto;
    overflow-y: hidden;
    padding-top: 0;
    line-height: 0;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
  }

  #s7 .tablist-wrapper::-webkit-scrollbar {
    display: none;
  }

  #s7 .xs-center {
    display: flex;
    overflow: hidden;
    justify-content: center;
  }

  #s7 .tablist {
    position: relative;
    display: inline-block;
    padding: 0 11.111111vw;
  }

  #s7 .tablist::after {
    position: absolute;
    right: 11.111111vw;
    bottom: -.833333vw;
    left: auto;
    height: .833333vw;
    content: '';
    background-color: #e0e0e0;
    width: calc(100% - 22.222222vw);

  }

  #s7 .tabnav {
    display: inline-block;
    padding-bottom: 4.166667vw;
    font-size: 4.444444vw;
    text-align: center;
  }

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

  #s7 .tabnav .footnote {
    pointer-events: none;
  }

  #s7 .stack-list {
    width: 88.888889vw;
    margin-right: auto;
    margin-left: auto;
  }

  #s7 .colornav-list {
    margin-top: 2.777778vw;
  }

  #s7 .tabnav-scrollbar {
    width: 0;
    height: .416667vw;
    margin: 0 ;
  }
}

#s7 .new-section h3 {
  font-size: 2.083333vw;
}

#s7 .new-section .arrownav-list {
  display: flex;
}

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

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

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

#s7 .new-section .arrownav-list .path-outline {
  opacity: 0.2;
}

#s7 .new-section .arrownav-list .path-arrow {
  transition: opacity 0.8s;
  stroke-linecap: round;
  stroke-linejoin: round;
}

#s7 .new-section .arrownav-list .path-outline-anim {
  transition: stroke-dasharray 0.8s;
  stroke-dasharray: 0, 157;
  stroke-dashoffset: 50;
}

#s7 .new-section .arrownav-list .arrownav-disabled {
  cursor: default;
}

#s7 .new-section .arrownav-list .arrownav-disabled .path-arrow {
  opacity: 0.2;
}

#s7 .new-section .arrownav-list .arrownav-next {
  margin-left: 0.833333vw;
}

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

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

  #s7 .new-section .arrownav-list .icon-path {
    stroke-width: 3px;
  }

  #s7 .new-section .arrownav-list .path-outline-anim {
    display: none;
  }

  #s7 .new-section .arrownav-list .arrownav-next {
    margin-left: 3.333333vw;
  }
}

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

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

#s7 .new-section .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;
}

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

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

#s7 .new-section .pagination-total {
  opacity: 0.2;
}

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

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

#s7 .new-section .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;
}

#s7 .new-section .stack-item+.stack-item {
  margin-left: -100%;
}

#s7 .new-section .stack-item.current {
  z-index: 1;
  opacity: 1;
}

#s7 .new-section .stack-item h3 {
  font-size: 1.25vw;
}

#s7 .new-section .stack-item p {
  font-size: 1.041667vw;
  color: #797C80;
}

#s7 .new-section .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;
}

#s7 .new-section .pagination-item.swiper-pagination-lock {
  display: none;
}

#s7 .new-section .gallery-container {
  position: relative;
}

#s7 .new-section .gallery-container .gallery {
  position: relative;
}

#s7 .new-section .gallery-container .gallery-wrapper {
  display: flex;
}

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

#s7 .new-section .gallery-container .gallery-slide+.gallery-slide {
  margin-left: -100%;
}

#s7 .new-section .gallery-container .clip-item {
  position: relative;
  transform: scale(1.3);
  transform-origin: 50% 50%;
  transition: -webkit-clip-path 0s 0.8s, transform 0s 0.8s;
  transition: clip-path 0s 0.8s, transform 0s 0.8s;
  transition: clip-path 0s 0.8s, -webkit-clip-path 0s 0.8s, transform 0s 0.8s;
}

#s7 .new-section .gallery-container .current .clip-item {
  z-index: 1;
  transform: scale(1);
  transition: -webkit-clip-path 0.8s cubic-bezier(0.65, 0.05, 0.36, 1), transform 0.8s cubic-bezier(0.65, 0.05, 0.36, 1);
  transition: clip-path 0.8s cubic-bezier(0.65, 0.05, 0.36, 1), transform 0.8s cubic-bezier(0.65, 0.05, 0.36, 1);
  transition: clip-path 0.8s cubic-bezier(0.65, 0.05, 0.36, 1), -webkit-clip-path 0.8s cubic-bezier(0.65, 0.05, 0.36, 1), transform 0.8s cubic-bezier(0.65, 0.05, 0.36, 1);
  will-change: transform;
}

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

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

#s7 .new-section.swiper-style-1 .gallery {
  z-index: 3;
  flex-shrink: 0;
  width: 60.625vw;
  height: 38.541667vw;
}

#s7 .new-section.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%); */
  clip-path: inset(0 0 0 0);
}

#s7 .new-section.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%); */
  /* clip-path: inset(0 0 0 100%); */
  clip-path: inset(0 100% 0 0);
}

#s7 .new-section.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%); */
  clip-path: inset(0 100% 0 0);
}

#s7 .new-section.swiper-style-1 .zoom-in-transition {
  transition: transform 0.8s;
  transform-origin: left;
}

#s7 .new-section.swiper-style-1 .zoom-in-slide {
  transform: scale(1.35);
}

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

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

#s7 .new-section.swiper-style-1 .stack-list {
  order: 2;
  text-align: left;
}

#s7 .new-section.swiper-style-1 .pagination-item {
  order: 1;
}

#s7 .new-section.swiper-style-1 .arrownav-list {
  order: 3;
}

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

  #s7 .new-section.swiper-style-1 .gallery-container {
    width: 95.555556vw;
    margin-left: auto;
    margin-right: auto;
  }

  #s7 .new-section.swiper-style-1 .gallery {
    width: 100%;
    height: 95.555556vw;

  }

  #s7 .new-section.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%); */
    clip-path: inset(0 0 0 0);

  }

  #s7 .new-section.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%); */
    clip-path: inset(0 100% 0 0);
  }

  #s7 .new-section.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%); */
    /* clip-path: inset(0 0 0 100%); */
    clip-path: inset(0 100% 0 0);
  }

  #s7 .new-section.swiper-style-1 .zoom-in-slide {
    /* transition: none;
    transform: none; */
  }

  #s7 .new-section.swiper-style-1 .content-container {
    padding: 11.111111vw 0 8.888889vw;
  }

  #s7 .new-section.swiper-style-1 .content-wrapper {
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    height: auto;
    width: 77.777778vw;
    margin: 0 auto;
  }

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

  #s7 .new-section.swiper-style-1 .pagination-item {
    order: 2;
    font-size: 3.888889vw;
  }

  #s7 .new-section.swiper-style-1 h3 {
    font-size: 5.555556vw;
  }

  #s7 .new-section .stack-item p {
    font-size: 4.444444vw;
    margin-top: 2.777778vw;
  }
}

#s7 .new-section.swiper-style-3 .gallery-slide.current .clip-item {
  /* -webkit-clip-path: polygon(0% 0%, 156% 0%, 100.2% 100.2%, -56% 100.2%);
  clip-path: polygon(0% 0%, 156% 0%, 100.2% 100.2%, -56% 100.2%); */
  clip-path: inset(0 0 0 0);
}

#s7 .new-section.swiper-style-3 .gallery-slide.left .clip-item {
  /* -webkit-clip-path: polygon(156% 0%, 100.2% 0%, 100.2% 100.2%, 100.2% 100.2%);
  clip-path: polygon(156% 0%, 100.2% 0%, 100.2% 100.2%, 100.2% 100.2%); */
  clip-path: inset(0 100% 0 0);
}

#s7 .new-section.swiper-style-3 .gallery-slide.right .clip-item {
  /* -webkit-clip-path: polygon(0% 0%, 0% 0%, -56% 100.2%, 0% 100.2%);
  clip-path: polygon(0% 0%, 0% 0%, -56% 100.2%, 0% 100.2%); */
  /* clip-path: inset(0 0 0 100%); */
  clip-path: inset(0 100% 0 0);
}

#s7 .new-section.swiper-style-3 .content-container {
  padding: 2.5vw 4.166667vw 0;
}

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

#s7 .new-section.swiper-style-3 .stack-list {
  flex-shrink: 0;
  order: 2;
  width: 37.5vw;
}

#s7 .new-section.swiper-style-3 .stack-item .headline{
  font-size: 1.25vw;
}
#s7 .new-section.swiper-style-3 .stack-item .intro {
  font-size: 1.041667vw;
}

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

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

@media (max-aspect-ratio: 11/10) {
  /* #s7 .new-section.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%);
  }

  #s7 .new-section.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%);
  }

  #s7 .new-section.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%);
  } */

  #s7 .new-section.swiper-style-3 .zoom-in-slide {
    /* transition: none;
    transform: none; */
  }

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

  #s7 .new-section.swiper-style-3 .content-wrapper {
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    height: auto;
    width: 77.777778vw;
    margin: 0 auto;
  }

  #s7 .new-section.swiper-style-3 .stack-list {
    order: 1;
    margin-bottom: 4.444444vw;
    width: 100%;
    text-align: left;
  }

  #s7 .new-section.swiper-style-3 .stack-item .headline {
    font-size: 5.555556vw;
  }

  #s7 .new-section.swiper-style-3 .stack-item .intro {
    font-size: 4.444444vw;
  }

  #s7 .new-section.swiper-style-3 .pagination-container {
    order: 2;
    width: auto;
    height: auto;
    margin-top: 0;
  }

  #s7 .new-section.swiper-style-3 .arrownav-list {
    width: auto;
    margin-top: 0;
  }

  #s7 .new-section .pagination-item {
    font-size: 3.888889vw;
  }

  #s7 .new-section.swiper-style-1 .zoom-in-slide,#s7 .new-section.swiper-style-3 .zoom-in-slide{
       transform: scale(1) !important;
  }
}

#s7 .section-hero {
  height: 56.25vw;
}

#s7 .section-hero .hero-content {
  position: absolute;
  top: 10.416667vw;
  left: 50%;
  transform: translateX(-50%);
}

#s7 .section-hero .logo {
  width: 19.53125vw;
  margin-bottom: 1.041667vw;
  margin-left: auto;
  margin-right: auto;
}

#s7 .section-hero .slogan {
  font-size: 2.083333vw;
  font-weight: 500;
  line-height: 1.25;
  color: #fff;
  text-align: center;
  text-align: justify;
  width: 19.170833vw;
  height: 2.5vw;
  margin-left: auto;
  margin-right: auto;
}

#s7 .section-hero .slogan::after {
  content: '';
  display: inline-block;
  width: 100%;
}

#s7 .section-hero .ksp {
  margin: 1.041667vw auto 0;
  font-size: .833333vw;
  font-size: max(.833333vw ,12px);
  color: #fff;
  /* letter-spacing: .19vw; */
  height: 1.3vw;
  /* text-align: justify; */
  width: 36.6875vw;
  text-align: center;
}

@media (max-width:1200px){
  #s7 .section-hero .ksp { 
  font-size: .833333vw;
  width: 40vw;
 }
}

#s7 .section-hero .ksp span{
  display: inline-block;
  margin: 0 .78125vw;
}

#s7 .section-hero .ksp::after {
  content: '';
  display: inline-block;
  width: 100%;
}

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

  #s7 .section-hero .hero-picture {
    position: relative;
    height: auto;
  }

  #s7 .section-hero .hero-picture::before {
    display: block;
    padding-bottom: calc(100% / (720 / 1280));
    content: '';
  }

  #s7 .section-hero .hero-picture img {
    position: absolute;
    top: 0;
    left: 0;
    height: auto;
  }

  #s7 .section-hero .hero-content {
    top: 27.777778vw;
    left: 50%;
  }

  #s7 .section-hero .logo {
    width: 72.5vw;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 1.388889vw;
  }

  #s7 .section-hero .slogan {
    margin-top: 0;
    font-size: 5.555556vw;
    font-weight: normal;
    width: 69.444444vw;
    margin-left: auto;
    margin-right: auto;
    height: 7.666667vw;
  }

  #s7 .section-hero .ksp {
    margin-top: 4.166667vw;
    font-size: 2.777778vw;
    width: 90.777778vw;
    margin-left: auto;
    margin-right: auto;
    height: 7.666667vw;
  }
}


#s7 .fadeup,
#s7 .lg-fadeup {
  transition: opacity 0.5s ease-in, transform 0.5s cubic-bezier(0.26, 0.67, 0.48, 0.91);
  transform: translateY(120px);
  opacity: .001;
}

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

  #s7 .xs-fadeup {
    transition: opacity 0.5s ease-in, transform 0.5s cubic-bezier(0.26, 0.67, 0.48, 0.91);
    transform: translateY(120px);
    opacity: .001;
  }
}

#s7 .fadeup.animated,
#s7 .lg-fadeup.animated,
#s7 .xs-fadeup.animated {
  transform: translateY(0);
  opacity: .999;
}

#s7 .section-header {
  padding-top: 10.416667vw;
  padding-bottom: 3.125vw;
}

#s7 .section-header .section-title {
  display: inline-block;
  font-size: 1.666667vw;
  transform: scale(2.5);
  transform-origin: left top;
  color: #e5b900;
  backface-visibility: hidden;
}

#s7 .section-header .section-headline {
  font-size: 4.166667vw;
  transform: translateY(120px);
  opacity: 0;
}

@media (max-aspect-ratio: 11 / 10) {
  #s7 .section-header {
    padding-top: 22.222222vw;
    padding-bottom: 8.333333vw;
  }

  #s7 .section-header .section-title {
    font-size: 6.666667vw;
    transform: scale(1.67);
  }

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

#s7 .layout-1 {
  display: flex;
  margin-left: 21.510417vw;
}

#s7 .layout-1 .headline {
  width: 25.3125vw;
}

#s7 .layout-2 {
  display: flex;
  margin-left: 30.052083vw;
}

#s7 .layout-2 .headline {
  width: 16.666667vw;
}

#s7 .layout-3 {
  margin-left: 21.510417vw;
}

#s7 .layout-5 {
  display: flex;
  justify-content: space-between;
}

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

  #s7 .layout-1,
  #s7 .layout-2,
  #s7 .layout-3,
  #s7 .layout-5 {
    display: block;
    width: 88.888889vw;
    margin-right: auto;
    margin-left: auto;
  }

  #s7 .layout-1 .headline,
  #s7 .layout-2 .headline,
  #s7 .layout-3 .headline {
    width: 100%;
  }

  #s7 .layout-4 {
    width: 100%;
  }

  #s7 .layout-4 .content {
    width: 88.888889vw;
    margin-right: auto;
    margin-left: auto;
  }
}



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

#s7 .statistics {
  display: flex;
  line-height: 1.25;
}

#s7 .xs-statistics {
  display: none;
}

#s7 .stat-number {
  font-size: 3.333333vw;
  font-weight: bold;
  color: #e5b900;
}

#s7 .xs-order-7 .stat-number {
  letter-spacing: -.2vw;
}

#s7 .stat-caption,
#s7 .stat-unit {
  font-size: 1.041667vw;
}

#s7 .theme-dark .stat-caption {
  color: #bababa;
}

@media (max-aspect-ratio: 11 / 10) {
  #s7 .xs-order-7 .stat-number {
    letter-spacing: -.2vw;
  }

  #s7 .xs-order-2 .stat-number {
    letter-spacing: -.2vw;
  }

  #s7 .statistics {
    justify-content: space-between;
    margin-top: 0 !important;
    margin-left: 0 !important;
  }

  #s7 .stat-caption {
    margin-top: 8.333333vw;
    margin-left: 0 !important;
    font-size: 3.888889vw;
  }

  #s7 .stat-number {
    font-size: 11.111111vw;
  }

  #s7 .stat-unit {
    font-size: 3.888889vw;
  }
}

#s7 .section-first-container{
  overflow: hidden;
}

#s7 .section-first-container picture {
  overflow: hidden;
}

#s7 .section-first-container .content {
  position: absolute;
  top: 8.072917vw;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  text-align: center;
}

#s7 .section-first-container .content .intro {
  color: white;
  font-size: 1.458333vw;
  font-weight: bold;
  transform: translateX(-20.833333vw);
  opacity: 0;
  line-height: 1.25;
}

#s7 .section-first-container .headline {
  position: relative;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  transform: translateX(-20.833333vw);
}

#s7 .section-first-container .content h3 {
  color: white;
  font-size: 3.333333vw;
  position: absolute;
  left: 0;
  top: 0;

}

#s7 .section-first-container .content h3:first-child {
  position: relative;
}

#s7 .section-first-container .content h3:nth-child(2) {
  transform: translateX(-1.041667vw);
  opacity: 0.17;
  filter: blur(1px);
}

#s7 .section-first-container .content h3:nth-child(3) {
  transform: translateX(-2.083333vw);
  opacity: 0.17;
  filter: blur(2px);
}

#s7 .section-first-container .content h3:nth-child(4) {
  transform: translateX(-3.125vw);
  opacity: 0.17;
  filter: blur(3px);
}

#s7 .section-first-container .content h3:nth-child(5) {
  transform: translateX(-4.166667vw);
  opacity: 0.17;
  filter: blur(4px);
}

#s7 .section-first-container .content h3:nth-child(6) {
  transform: translateX(-5.208333vw);
  opacity: 0.17;
  filter: blur(5px);
}

#s7 .section-first-container .content h3:nth-child(7) {
  transform: translateX(-6.25vw);
  opacity: 0.17;
  filter: blur(6px);
}

#s7 .section-first-container .content h3:nth-child(8) {
  transform: translateX(-7.291667vw);
  opacity: 0.17;
  filter: blur(7px);
}

#s7 .section-first-container .content h3:nth-child(9) {
  transform: translateX(-8.333333vw);
  opacity: 0.17;
  filter: blur(8px);
}

#s7 .section-first-container .content .page {
  font-size: 1.041667vw;
  margin-top: 1.666667vw;
  color: rgba(255, 255, 255, 0.7);
  width: 44.791667vw;
  /* opacity: 0.7; */
  opacity: 0;
}

#s7 .section-first-container img {
    transform: scale(1.2);
    transform-origin: 50% 50%;
}

#s7 .section-first-container  .white{
   color: #fff;
}

#s7 .section-first-container.animated .content .page {
  opacity: 1;
  transition: 0.3s opacity 1s;
}

#s7 .section-first-container.animated img{
  transform: scale(1);
  transition: 1.5s transform;
}

#s7 .section-first-container.animated .content h3:not(:first-child) {
  transform: translate(0);
  opacity: 0;
  transition: 1s transform, opacity 0.3s 0.7s;
}

#s7 .section-first-container.animated .content .intro {
  transform: translate(0);
  opacity: 1;
  transition: 1s transform, opacity 0.7s;
}

#s7 .section-first-container.animated .content .headline {
  transform: translate(0);
  transition: 1s transform;
}

#s7 .subsection-design-1 .content {
  top: 5.989583vw;
}

br.only-xs{
  display: none;
}

/* #s7 .subsection-drive-1.section-first-container .content .page{
      margin-top: 25.416667vw;
} */

@media (max-aspect-ratio: 7 / 10) {
  #s7 .section-first-container .content {
    top: 16.666667vw;
  }

  /* #s7 .subsection-drive-1.section-first-container .content{
      top: 111.388889vw;
} */

  br.only-xs{
  display: block;
}

  #s7 .section-first-container .content .intro {
    font-size: 4.444444vw;
    /* transform: translateX(0); */
    /* opacity: 1; */
    transform: translateX(-41.666667vw);
  }

  #s7 .section-first-container .headline {
    /* transform: translateX(0); */
    width: 100%;
    transform: translateX(-41.666667vw);
  }

  #s7 .section-first-container .content h3 {
    width: 99vw;
    font-size: 8.888889vw;
    /* position: relative; */
    text-align: center;
    /* white-space: nowrap; */
  }

  #s7 .section-first-container img{
    /* transform: scale(1); */
  }

  /* #s7 .section-first-container .content h3:not(:first-child) {
    display: none;
  } */

  #s7 .section-first-container .content h3:nth-child(2) {
  transform: translateX(-4.166667vw);
  opacity: 0.17;
  filter: blur(1px);
}

#s7 .section-first-container .content h3:nth-child(3) {
  transform: translateX(-8.333333vw);
  opacity: 0.17;
  filter: blur(2px);
}

#s7 .section-first-container .content h3:nth-child(4) {
  transform: translateX(-12.5vw);
  opacity: 0.17;
  filter: blur(3px);
}

#s7 .section-first-container .content h3:nth-child(5) {
  transform: translateX(-16.666667vw);
  opacity: 0.17;
  filter: blur(4px);
}

#s7 .section-first-container .content h3:nth-child(6) {
  transform: translateX(-20.833333vw);
  opacity: 0.17;
  filter: blur(5px);
}

#s7 .section-first-container .content h3:nth-child(7) {
  transform: translateX(-25vw);
  opacity: 0.17;
  filter: blur(6px);
}

#s7 .section-first-container .content h3:nth-child(8) {
  transform: translateX(-29.166667vw);
  opacity: 0.17;
  filter: blur(7px);
}

#s7 .section-first-container .content h3:nth-child(9) {
  transform: translateX(-33.333333vw);
  opacity: 0.17;
  filter: blur(8px);
}

  #s7 .section-first-container .xs-block {
    font-size: 4.444444vw;
    margin-top: 11.111111vw;
    text-align: center;
  }

}

#s7 .gallery-list .gallery-item {
  display: flex;
  align-items: center;
  width: 100%;
}

#s7 .gallery-list .item-2 {
  flex-direction: row-reverse;
}

#s7 .gallery-list .picture {
  width: 42.708333vw;
}

#s7 .gallery-list .content-1 {
  margin-left: 2.083333vw;
}

#s7 .gallery-list .content-2 {
  margin-right: 2.083333vw;
}

@media (max-aspect-ratio: 11 / 10) {
  #s7 .gallery-list .gallery-item {
    display: block;
  }

  #s7 .gallery-list .content {
    margin: 8.333333vw 0 0;
  }

  #s7 .gallery-list .picture {
    width: 100%;
  }

  #s7 .gallery-list.xs-scroll-snap {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    align-items: flex-start;
    flex-wrap: nowrap;
    width: 100%;
    padding-right: 6.944444vw;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: auto;
    perspective: 1px;
    scroll-snap-type: x mandatory;
    transform-style: preserve-3d;
  }

  #s7 .gallery-list.xs-scroll-snap::-webkit-scrollbar {
    display: none;
  }

  #s7 .gallery-list.xs-scroll-snap .gallery-item {
    position: relative;
    flex-shrink: 0;
    width: 77.083333vw;
    padding-left: 5.555556vw;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  #s7 .gallery-list.xs-scroll-snap .gallery-item+.gallery-item {
    margin-left: -1.388889vw;
  }
}


#s7 .subsection-design-4 {
  height: auto;
  /* box-shadow: 0 2px #000; */
}

#s7 .subsection-design-4 .swiper-container {
  height: 100%;
}

#s7 .subsection-design-4 .tablist-wrapper {
  position: absolute;
  z-index: 20;
  top: 6.25vw;
  right: 0;
  left: 0;
  width: 22.083333vw;
  padding-top: 0;
  transition: transform .3s, opacity .3s;
  transform: translate3d(0, 5.20833vw, 0);
  text-align: center;
  opacity: 0;
}

#s7 .subsection-design-4 .tablist-wrapper .color-page-item {
  position: absolute;
  top: 0;
  left: 50%;
  display: block;
  font-size: 2.083333vw;
  line-height: 1.25;
  transition: opacity .8s;
  transform: translateX(-50%);
  white-space: nowrap;
  opacity: 0;
  color: #fff;
  font-weight: bold;
}

#s7 .subsection-design-4 .tablist-wrapper .color-page-item:first-child {
  position: relative;
}

#s7 .subsection-design-4 .tablist {
  justify-content: center;
  border-bottom: 0;
}

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

#s7 .subsection-design-4 .tabnav.active {
  color: #fff;
}

#s7 .subsection-design-4 .picture-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#s7 .subsection-design-4 .covered-picture {
  position: absolute;
  top: 0;
  left: 0;
  height: 101%;
  transform: scale(1.2);
  transition: -webkit-clip-path 0s 0.8s, transform 0s 0.8s;
  transition: clip-path 0s 0.8s, transform 0s 0.8s;
  transition: clip-path 0s 0.8s, -webkit-clip-path 0s 0.8s, transform 0s 0.8s;
  /* -webkit-clip-path: polygon(0% 0%, 0% 0%, -30% 100%, 0% 100%);
  clip-path: polygon(-1% -1%, -1% -1%, -30% 100%, -1% 100%); */
  -webkit-clip-path: inset(0 100% 0 0);
  clip-path: inset(0 100% 0 0);
}

#s7 .subsection-design-4 .colornav-wrapper {
  position: absolute;
  z-index: 20;
  right: 0;
  bottom: 6.208333vw;
  left: 0;
  display: flex;
  justify-content: center;
  transition: transform .3s, opacity .3s;
  transform: translate3d(0, 5.20833vw, 0);
  opacity: 0;
}

#s7 .subsection-design-4 .colornav-wrapper .list-content {
  width: 100%;
  display: flex;
  justify-content: center;
}

#s7 .subsection-design-4 .colornav {
  position: relative;
  margin-right: .104167vw;
  margin-left: .104167vw;
  text-align: center;
}

#s7 .subsection-design-4 .color-swatch {
  display: block;
  width: 2.1875vw;
  height: 2.5vw;
  cursor: pointer;
  outline: 0;
  position: relative;
}

#s7 .subsection-design-4 .color-swatch .color-swatch-border {
  position: absolute;
  width: 100%;
  /* height: 100%; */
  left: 0;
  top: 0;
  opacity: 0;
  transition: opacity .8s;
}

#s7 .subsection-design-4 .color-name-list {
  position: absolute;
  top: 3.125vw;
}

#s7 .subsection-design-4 .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;
}

#s7 .subsection-design-4 .color-label:first-child {
  position: relative;
}

#s7 .subsection-design-4 .animated .tablist-wrapper,
#s7 .subsection-design-4 .animated .colornav-wrapper {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

#s7 .subsection-design-4[data-active='1'] .covered-picture:nth-child(1) {
  z-index: 2;
  transition: transform .8s, clip-path .8s;
  transform: scale(1);
  /* -webkit-clip-path: polygon(0% 0%, 130% 0%, 100% 100%, 0% 100%);
  clip-path: polygon(-1% -1%, 130% -1%, 100% 100%, -1% 100%); */
  -webkit-clip-path: inset(0 0 0 0);
  clip-path: inset(0 0 0 0);
}

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

#s7 .subsection-design-4[data-active='1'] .color-label:nth-child(1) {
  opacity: 1;
}

#s7 .subsection-design-4[data-active='1'] .color-page-item:nth-child(1) {
  opacity: 1;
}

#s7 .subsection-design-4[data-active='2'] .covered-picture:nth-child(2) {
  z-index: 2;
  transition: transform .8s, clip-path .8s;
  transform: scale(1);
  /* -webkit-clip-path: polygon(0% 0%, 130% 0%, 100% 100%, 0% 100%);
  clip-path: polygon(-1% -1%, 130% -1%, 100% 100%, -1% 100%); */
  -webkit-clip-path: inset(0 0 0 0);
  clip-path: inset(0 0 0 0);
}

#s7 .subsection-design-4[data-active='2'] .colornav:nth-child(2) .color-swatch-border {
  opacity: 1;
}

#s7 .subsection-design-4[data-active='2'] .color-label:nth-child(2) {
  opacity: 1;
}

#s7 .subsection-design-4[data-active='2'] .color-page-item:nth-child(2) {
  opacity: 1;
}

#s7 .subsection-design-4[data-active='3'] .covered-picture:nth-child(3) {
  z-index: 2;
  transition: transform .8s, clip-path .8s;
  transform: scale(1);
  /* -webkit-clip-path: polygon(0% 0%, 130% 0%, 100% 100%, 0% 100%);
  clip-path: polygon(-1% -1%, 130% -1%, 100% 100%, -1% 100%); */
  -webkit-clip-path: inset(0 0 0 0);
  clip-path: inset(0 0 0 0);
}

#s7 .subsection-design-4[data-active='3'] .colornav:nth-child(3) .color-swatch-border {
  opacity: 1;
}

#s7 .subsection-design-4[data-active='3'] .color-label:nth-child(3) {
  opacity: 1;
}

#s7 .subsection-design-4[data-active='3'] .color-page-item:nth-child(3) {
  opacity: 1;
}

#s7 .subsection-design-4[data-active='4'] .covered-picture:nth-child(4) {
  z-index: 2;
  transition: transform .8s, clip-path .8s;
  transform: scale(1);
  /* -webkit-clip-path: polygon(0% 0%, 130% 0%, 100% 100%, 0% 100%);
  clip-path: polygon(-1% -1%, 130% -1%, 100% 100%, -1% 100%); */
  -webkit-clip-path: inset(0 0 0 0);
  clip-path: inset(0 0 0 0);
}

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

#s7 .subsection-design-4[data-active='4'] .color-label:nth-child(4) {
  opacity: 1;
}

#s7 .subsection-design-4[data-active='4'] .color-page-item:nth-child(4) {
  opacity: 1;
}

#s7 .subsection-design-4[data-active='5'] .covered-picture:nth-child(5) {
  z-index: 2;
  transition: transform .8s, clip-path .8s;
  transform: scale(1);
  /* -webkit-clip-path: polygon(0% 0%, 130% 0%, 100% 100%, 0% 100%);
  clip-path: polygon(-1% -1%, 130% -1%, 100% 100%, -1% 100%); */
  -webkit-clip-path: inset(0 0 0 0);
  clip-path: inset(0 0 0 0);
}

#s7 .subsection-design-4[data-active='5'] .colornav:nth-child(5) .color-swatch-border {
  opacity: 1;
}

#s7 .subsection-design-4[data-active='5'] .color-label:nth-child(5) {
  opacity: 1;
}

#s7 .subsection-design-4[data-active='5'] .color-page-item:nth-child(5) {
  opacity: 1;
}

#s7 .subsection-design-4[data-active='6'] .covered-picture:nth-child(6) {
  z-index: 2;
  transition: transform .8s, clip-path .8s;
  transform: scale(1);
  /* -webkit-clip-path: polygon(0% 0%, 130% 0%, 100% 100%, 0% 100%);
  clip-path: polygon(-1% -1%, 130% -1%, 100% 100%, -1% 100%); */
  -webkit-clip-path: inset(0 0 0 0);
  clip-path: inset(0 0 0 0);
}

#s7 .subsection-design-4[data-active='6'] .colornav:nth-child(6) .color-swatch-border {
  opacity: 1;
}

#s7 .subsection-design-4[data-active='6'] .color-label:nth-child(6) {
  opacity: 1;
}

#s7 .subsection-design-4[data-active='6'] .color-page-item:nth-child(6) {
  opacity: 1;
}

#s7 .subsection-design-4[data-active='7'] .covered-picture:nth-child(7) {
  z-index: 2;
  transition: transform .8s, clip-path .8s;
  transform: scale(1);
  /* -webkit-clip-path: polygon(0% 0%, 130% 0%, 100% 100%, 0% 100%);
  clip-path: polygon(-1% -1%, 130% -1%, 100% 100%, -1% 100%); */
  -webkit-clip-path: inset(0 0 0 0);
  clip-path: inset(0 0 0 0);
}

#s7 .subsection-design-4[data-active='7'] .colornav:nth-child(7) .color-swatch-border {
  opacity: 1;
}

#s7 .subsection-design-4[data-active='7'] .color-label:nth-child(7) {
  opacity: 1;
}

#s7 .subsection-design-4[data-active='7'] .color-page-item:nth-child(7) {
  opacity: 1;
}

#s7 .subsection-design-4[data-active='8'] .covered-picture:nth-child(8) {
  z-index: 2;
  transition: transform .8s, clip-path .8s;
  transform: scale(1);
  /* -webkit-clip-path: polygon(0% 0%, 130% 0%, 100% 100%, 0% 100%);
  clip-path: polygon(-1% -1%, 130% -1%, 100% 100%, -1% 100%); */
  -webkit-clip-path: inset(0 0 0 0);
  clip-path: inset(0 0 0 0);
}

#s7 .subsection-design-4[data-active='8'] .colornav:nth-child(8) .color-swatch-border {
  opacity: 1;
}

#s7 .subsection-design-4[data-active='8'] .color-label:nth-child(8) {
  opacity: 1;
}

#s7 .subsection-design-4[data-active='8'] .color-page-item:nth-child(8) {
  opacity: 1;
}

#s7 .subsection-design-4[data-active='9'] .covered-picture:nth-child(9) {
  z-index: 2;
  transition: transform .8s, clip-path .8s;
  transform: scale(1);
  /* -webkit-clip-path: polygon(0% 0%, 130% 0%, 100% 100%, 0% 100%);
  clip-path: polygon(-1% -1%, 130% -1%, 100% 100%, -1% 100%); */
  -webkit-clip-path: inset(0 0 0 0);
  clip-path: inset(0 0 0 0);
}

#s7 .subsection-design-4[data-active='9'] .colornav:nth-child(9) .color-swatch-border {
  opacity: 1;
}

#s7 .subsection-design-4[data-active='9'] .color-label:nth-child(9) {
  opacity: 1;
}

#s7 .subsection-design-4[data-active='9'] .color-page-item:nth-child(9) {
  opacity: 1;
}
#s7 .subsection-design-4 .swiper-wrapper .swiper-wrapper,
#s7 .subsection-design-8 .swiper-wrapper .swiper-wrapper{
      z-index: 5;
}

@media (min-aspect-ratio: 11 / 10) {
  #s7 .subsection-design-4.is-visible .main-swiper {
    will-change: transform;
  }

  #s7 .subsection-design-4.is-visible .covered-picture {
    will-change: transform, clip-path;
  }
}

@media (max-aspect-ratio: 7 / 10) {
  #s7 .subsection-design-4 {
    height: auto;
  }

  #s7 .subsection-design-4 .sticky-content {
    height: auto;
  }

  #s7 .subsection-design-4 .swiper-container {
    width: 100%;
    height: auto;
    margin-bottom: 0;
  }

  #s7 .subsection-design-4 .tablist-wrapper {
    top: 19.444444vw;
    width: 73.333333vw;
    opacity: 1;
  }

  #s7 .subsection-design-4 .tablist-wrapper .color-page-item {
    font-size: 6.666667vw;
  }

  #s7 .subsection-design-4 .tablist {
    display: flex;
    margin: 0;
  }

  #s7 .subsection-design-4 .tablist::after {
    display: none;
  }

  #s7 .subsection-design-4 .tabnav {
    padding-bottom: 2.777778vw;
    font-size: 5.833333vw;
    color: #bbbbbe;
  }

  #s7 .subsection-design-4 .tabnav.active {
    color: #000;
  }

  #s7 .subsection-design-4 .swiper-wrapper .swiper-wrapper {
    height: 111.111111vw;
  }

  #s7 .subsection-design-4 .swiper-slide {
    /* padding-bottom: 32.222222vw; */
    /* background-color: #fff; */
  }

  #s7 .subsection-design-4 .colornav-wrapper {
    position: relative;
    flex-wrap: wrap;
  }

  #s7 .subsection-design-4 .covered-picture {
    height: 100%;
  }

  #s7 .subsection-design-4 .colornav-list {
    margin-top: 0;
    margin-bottom: 4.166667vw;
    width: 100%;
    overflow-x: scroll;
    overflow-y: hidden;
    justify-content: unset;
    position: relative;
  }

  #s7 .subsection-design-4 .colornav-list::-webkit-scrollbar {
    display: none;
  }

  #s7 .subsection-design-4 .colornav-list .list-content {
    width: 100%;
    padding: 0 11.111111vw;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  /* #s7 .subsection-design-4 .colornav-wrapper::before{
        content: '';
        display: flex;
        position: absolute;
        top: 0;
        left: 0;
        width: 11.111111vw;
        height: 13.111111vw;
        background-image: linear-gradient(to left,rgba(0,0,0,0),#FFFFFF 60% , #ffffff 100%);
        z-index: 4;
        pointer-events: none;
   }

   #s7 .subsection-design-4 .colornav-wrapper::after{
        content: '';
        display: flex;
        position: absolute;
        top: 0;
        right: 0;
        width: 11.111111vw;
        height: 13.111111vw;
        background-image: linear-gradient(to right,rgba(0,0,0,0),#FFFFFF 60% , #ffffff 100%);
        z-index: 4;
        pointer-events: none;
   } */


  #s7 .subsection-design-4 .colornav {
    margin-right: .972222vw;
    margin-left: .972222vw;
  }

  #s7 .subsection-design-4 .color-swatch {
    width: 10.138889vw;
    height: 11.388889vw;
    box-shadow: none;
  }

  #s7 .subsection-design-4 .color-label {
    font-size: 4.444444vw;
    color: #000;
  }

  #s7 .subsection-design-4 .colornav-wrapper {
    transform: none;
    bottom: 0;
    opacity: 1;
    margin-top: 11.111111vw;
  }

  #s7 .subsection-design-4 .color-name-list {
    position: relative;
    top: 0;
    width: 100%;
    order: 2;
  }

  #s7 .subsection-design-4 .tabnav-scrollbar {
    width: 100%;
    margin: 0;
    background-color: #bbbbbe;
  }

}

@media (min-aspect-ratio: 11 / 10) and (max-width:1450px){
       #s7 .section-hero .ksp{
        width: 40vw;
       }
}

@media (min-aspect-ratio: 11 / 10) {
  #s7 .subsection-design-5 .s5-bottom-content .swiper-wrapper {
    display: flex;
    justify-content: space-between;
  }

  #s7 .subsection-design-5 .s5-bottom-content .swiper-slide {
    width: 26.25vw;
  }

  #s7 .subsection-design-5 .s5-bottom-content .tablist-wrapper {
    width: 100%;
  }

  #s7 .subsection-design-5 .s5-bottom-content .tablist-wrapper .tablist {
    justify-content: space-between;
  }

  #s7 .subsection-design-5 .s5-bottom-content .tablist-wrapper .tablist .tabnav {
    width: 26.25vw;
    margin-left: 0;
    padding-left: .833333vw;
    color: #000;
    padding-bottom: 0;
    font-size: 1.25vw;
    cursor: auto;
  }

  #s7 .subsection-design-5 .s5-bottom-content .tabnav-scrollbar {
    display: none;
  }

  #s7 .subsection-design-5 .s5-bottom-content .stack-list {
    display: flex;
    justify-content: space-between;
    width: 100%;
  }

  #s7 .subsection-design-5 .s5-bottom-content .stack-list .stack-item {
    width: 26.25vw;
    margin-left: 0;
    opacity: 1;
    padding-left: .833333vw;
    text-align: left;
    font-size: 1.041667vw;

  }
}

#s7 .subsection-design-8 {
  width: 81.25vw;
  height: auto;
  margin: 0 auto;
}

#s7 .subsection-design-8 .swiper-container {
  height: 100%;
}

#s7 .subsection-design-8 .sticky-content {
  position: relative;
  top: 0;
  height: auto;
}

#s7 .subsection-design-8 .sticky-content .exterior-swiper {
  height: 40.625vw;
}

#s7 .subsection-design-8 .tablist-wrapper {
  position: absolute;
  z-index: 20;
  top: 8.072917vw;
  right: 0;
  left: 0;
  width: 22.083333vw;
  padding-top: 0;
  transition: transform .3s, opacity .3s;
  transform: translate3d(0, -5.20833vw, 0);
  text-align: center;
  opacity: 0;
}

#s7 .subsection-design-8 .tablist-wrapper .color-page-item {
  position: absolute;
  top: 0;
  left: 50%;
  display: block;
  font-size: 2.083333vw;
  line-height: 1.25;
  transition: opacity .8s;
  transform: translateX(-50%);
  white-space: nowrap;
  opacity: 0;
  color: #fff;
  font-weight: bold;
}

#s7 .subsection-design-8 .tablist {
  justify-content: center;
  border-bottom: 0;
}

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

#s7 .subsection-design-8 .tabnav.active {
  color: #fff;
}

#s7 .subsection-design-8 .picture-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 40.625vw;
  overflow: hidden;
}

#s7 .subsection-design-8 .covered-picture {
  position: absolute;
  top: 0;
  left: 0;
  height: 101%;
  /* transition-delay: .8s; */
  transform: scale(1.2);
  transition: -webkit-clip-path 0s 0.8s, transform 0s 0.8s;
  transition: clip-path 0s 0.8s, transform 0s 0.8s;
  transition: clip-path 0s 0.8s, -webkit-clip-path 0s 0.8s, transform 0s 0.8s;
  /* -webkit-clip-path: polygon(0% 0%, 0% 0%, -30% 100%, 0% 100%);
  clip-path: polygon(-1% -1%, -1% -1%, -30% 100%, -1% 100%); */
  -webkit-clip-path: inset(0 100% 0 0);
  clip-path: inset(0 100% 0 0);
}

#s7 .subsection-design-8 .colornav-wrapper {
  width: 100%;
  position: relative;
  z-index: 20;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  transition: transform .3s, opacity .3s;
  transform: translate3d(0, 0, 0);
  opacity: 0;
  padding: 0 3.333333vw;
  margin-top: 2.5vw;
  align-items: center;
}

#s7 .subsection-design-8 .colornav-left {
  position: relative;
}

#s7 .subsection-design-8 .colornav-left .color-page-item {
  position: relative;
  font-size: 1.354167vw;
  font-weight: bold;
  color: #000;
  opacity: 0;
  transition: opacity 0.8s;
  line-height: 1.25;
}

#s7 .subsection-design-8 .colornav-left .color-page-item:not(:first-child) {
  position: absolute;
  top: 0;
  left: 0;
}

#s7 .subsection-design-8 .colornav-right {
  display: flex;
  align-items: center;
}

#s7 .subsection-design-8 .colornav {
  position: relative;
  margin-right: .104167vw;
  margin-left: .104167vw;
  text-align: center;
  margin-left: .208333vw;
}

#s7 .subsection-design-8 .colornav:first-child{
  margin-left: .833333vw;
}

#s7 .subsection-design-8 .color-swatch {
  display: block;
  width: 2.217708vw;
  height: 2.5vw;
  cursor: pointer;
  outline: 0;
  position: relative;
}

#s7 .subsection-design-8 .color-swatch .color-swatch-border {
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  opacity: 0;
  transition: opacity .8s;
}

#s7 .subsection-design-8 .color-name-list {
  position: relative;
  top: 0;
}

#s7 .subsection-design-8 .color-label {
  position: relative;
  opacity: 0;
  font-size: 1.041667vw;
  line-height: 1.25;
  transition: opacity .8s;
  display: block;
  white-space: nowrap;
  font-weight: bold;
}

#s7 .subsection-design-8 .color-label:not(:first-child) {
  position: absolute;
  top: 0;
  right: 0;
}

#s7 .subsection-design-8 .tablist-wrapper,
#s7 .subsection-design-8 .colornav-wrapper {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

#s7 .subsection-design-8[data-active='1'] .covered-picture:nth-child(1) {
  z-index: 2;
  /* transition: transform .8s, clip-path .8s; */
  transition: clip-path 0.8s, -webkit-clip-path 0.8s, transform 0.8s;
  transform: scale(1);
  /* -webkit-clip-path: polygon(0% 0%, 130% 0%, 100% 100%, 0% 100%);
  clip-path: polygon(-1% -1%, 130% -1%, 100% 100%, -1% 100%); */
  -webkit-clip-path: inset(0 0 0 0);
  clip-path: inset(0 0 0 0);
}

#s7 .subsection-design-8[data-active='1'] .colornav:nth-child(1) .color-swatch-border {
  opacity: 1;
}

#s7 .subsection-design-8[data-active='1'] .color-label:nth-child(1) {
  opacity: 1;
}

#s7 .subsection-design-8[data-active='1'] .color-page-item:nth-child(1) {
  opacity: 1;
}

#s7 .subsection-design-8[data-active='2'] .covered-picture:nth-child(2) {
  z-index: 2;
  /* transition: transform .8s, clip-path .8s; */
  transition: clip-path 0.8s, -webkit-clip-path 0.8s, transform 0.8s;
  transform: scale(1);
  /* -webkit-clip-path: polygon(0% 0%, 130% 0%, 100% 100%, 0% 100%);
  clip-path: polygon(-1% -1%, 130% -1%, 100% 100%, -1% 100%); */
  -webkit-clip-path: inset(0 0 0 0);
  clip-path: inset(0 0 0 0);
}

#s7 .subsection-design-8[data-active='2'] .colornav:nth-child(2) .color-swatch-border {
  opacity: 1;
}

#s7 .subsection-design-8[data-active='2'] .color-label:nth-child(2) {
  opacity: 1;
}

#s7 .subsection-design-8[data-active='2'] .color-page-item:nth-child(2) {
  opacity: 1;
}

#s7 .subsection-design-8[data-active='3'] .covered-picture:nth-child(3) {
  z-index: 2;
  /* transition: transform .8s, clip-path .8s; */
  transition: clip-path 0.8s, -webkit-clip-path 0.8s, transform 0.8s;
  transform: scale(1);
  /* -webkit-clip-path: polygon(0% 0%, 130% 0%, 100% 100%, 0% 100%);
  clip-path: polygon(-1% -1%, 130% -1%, 100% 100%, -1% 100%); */
  -webkit-clip-path: inset(0 0 0 0);
  clip-path: inset(0 0 0 0);
}

#s7 .subsection-design-8[data-active='3'] .colornav:nth-child(3) .color-swatch-border {
  opacity: 1;
}

#s7 .subsection-design-8[data-active='3'] .color-label:nth-child(3) {
  opacity: 1;
}

#s7 .subsection-design-8[data-active='3'] .color-page-item:nth-child(3) {
  opacity: 1;
}

#s7 .subsection-design-8[data-active='4'] .covered-picture:nth-child(4) {
  z-index: 2;
  /* transition: transform .8s, clip-path .8s; */
  transition: clip-path 0.8s, -webkit-clip-path 0.8s, transform 0.8s;
  transform: scale(1);
  /* -webkit-clip-path: polygon(0% 0%, 130% 0%, 100% 100%, 0% 100%);
  clip-path: polygon(-1% -1%, 130% -1%, 100% 100%, -1% 100%); */
  -webkit-clip-path: inset(0 0 0 0);
  clip-path: inset(0 0 0 0);
}

#s7 .subsection-design-8[data-active='4'] .colornav:nth-child(4) .color-swatch-border {
  opacity: 1;
}

#s7 .subsection-design-8[data-active='4'] .color-label:nth-child(4) {
  opacity: 1;
}

#s7 .subsection-design-8[data-active='4'] .color-page-item:nth-child(4) {
  opacity: 1;
}

@media (min-aspect-ratio: 11 / 10) {
  #s7 .subsection-design-8.is-visible .main-swiper {
    will-change: transform;
  }

  #s7 .subsection-design-8.is-visible .covered-picture {
    will-change: transform, clip-path;
  }
}

@media (max-aspect-ratio: 7 / 10) {
  #s7 .subsection-design-8 {
    height: auto;
    width: 100%;
  }

  #s7 .subsection-design-8 .sticky-content {
    height: auto;
  }

  #s7 .subsection-design-8 .sticky-content .exterior-swiper {
    width: 100%;
    height: auto;
  }

  #s7 .subsection-design-8 .picture-wrapper {
    height: 111.111111vw;
    width: 95.555556vw;
    /* margin: 0 auto; */
    left: 50%;
    transform: translateX(-50%);
  }

  #s7 .subsection-design-8 .tablist-wrapper {
    position: relative;
    top: 0;
    width: 73.333333vw;
    margin-bottom: 8.333333vw;
  }

  #s7 .subsection-design-8 .tablist {
    display: flex;
    margin: 0;
  }

  #s7 .subsection-design-8 .tablist::after {
    display: none;
  }

  #s7 .subsection-design-8 .tabnav {
    padding-bottom: 2.777778vw;
    font-size: 5.833333vw;
    color: #bbbbbe;
  }

  #s7 .subsection-design-8 .tabnav.active {
    color: #000;
  }

  #s7 .subsection-design-8 .swiper-wrapper .swiper-wrapper {
    height: 111.111111vw;
  }

  #s7 .subsection-design-8 .swiper-slide {
    /* padding-bottom: 32.222222vw; */
    /* background-color: #fff; */
  }

  #s7 .subsection-design-8 .colornav-wrapper {
    position: relative;
    align-items: unset;
  }

  #s7 .subsection-design-8 .covered-picture {
    height: 100%;
  }

  #s7 .subsection-design-8 .colornav-list {
    margin: 6.666667vw auto 4.166667vw;
  }

  #s7 .subsection-design-8 .colornav {
    margin-right: .972222vw;
    margin-left: .972222vw;
  }

  #s7 .subsection-design-8 .color-swatch {
    width: 10.138889vw;
    height: 11.388889vw;
    box-shadow: none;
  }


  #s7 .subsection-design-8 .colornav-left {
    position: relative;
    width: 100%;
  }

  #s7 .subsection-design-8 .colornav-left .color-page-item {
    width: 100%;
    text-align: center;
    font-size: 5.555556vw;
  }

  #s7 .subsection-design-8 .color-name-list {
    position: relative;
    top: 0;
    width: 100%;
    order: 2;
  }

  #s7 .subsection-design-8 .colornav-right {
    display: flex;
    align-items: unset;
    flex-wrap: wrap;
  }

  #s7 .subsection-design-8 .color-label {
    font-size: 4.444444vw;
    color: #000;
    width: 100%;
    text-align: center;

  }

  #s7 .subsection-design-8 .tablist-wrapper,
  #s7 .subsection-design-8 .colornav-wrapper {
    transform: none;
    opacity: 1;
    justify-content: center;
    flex-wrap: wrap;
    margin: 8.333333vw auto 0;
  }

  #s7 .subsection-design-8 .colornav-wrapper{
    margin: 11.111111vw auto 0;
  }

}

#s7 .subsection-performance-2.new-section.swiper-style-1 .content-container {
  background-color: #313340;
}

#s7 .subsection-performance-2.new-section.swiper-style-1 .pagination-item {
  color: white;
}

#s7 .subsection-performance-2.new-section.swiper-style-1 .pagination-line {
  background-color: rgba(255, 255, 255, 0.2);
}

#s7 .subsection-performance-2.new-section.swiper-style-1 .pagination-line::before {
  background: white;
}


#s7 .subsection-performance-2.new-section.swiper-style-1 .arrownav-list .icon-path {
  stroke: #fff;
}

#s7 .subsection-performance-3 .bottom-flex-container {
  width: 58.333333vw;
  display: flex;
  flex-wrap: wrap;
  margin: 4.166667vw auto 0;
  justify-content: space-between;
}

#s7 .subsection-performance-3 .bottom-flex-container .bottom-page-content {
  width: 25vw;
  margin-bottom: 3.333333vw;
}

#s7 .subsection-performance-3 .bottom-flex-container .bottom-page-content h3 {
  font-size: 1.25vw;
  color: #FFFFFF;
}

#s7 .subsection-performance-3 .bottom-flex-container .bottom-page-content .page-line {
  width: 100%;
  background: #313340;
  height: .104167vw;
  margin: 1.25vw 0;
}

#s7 .subsection-performance-3 .bottom-flex-container .bottom-page-content p {
  font-size: 1.041667vw;
  color: #797C80;
}

#s7 .subsection-performance-3 .bottom-flex-container .bottom-page-content:nth-last-child(1),
#s7 .subsection-performance-3 .bottom-flex-container .bottom-page-content:nth-last-child(2) {
  margin-bottom: 0;
}

#s7 .txt-items {
  display: flex;
}

#s7 .txt-item:not(:first-child) {
  margin-left: 5.208333vw; 
}

#s7 .items3 .txt-item {
  flex: 1 1 33.33%;
}

#s7 .items4 .txt-item {
  flex: 1 1 25%;
  letter-spacing: -.04vw;
}

@media (max-aspect-ratio: 11 / 10) {
  #s7 .items4 .txt-item {
    letter-spacing: 0;
  }

  #s7 .txt-items {
    flex-direction: column;
    width: 88.888889vw;
    margin-right: auto;
    margin-left: auto;
  }

  #s7 .txt-item:not(:first-child) {
    margin-left: 0;
  }
}

#s7 .colornav-exterior .color-1 {
  background-color: #000;
  background-color: #1c1b23;
}

#s7 .colornav-exterior .color-2 {
  background-color: #eff0f5;
  background-color: #efedee;
}

#s7 .colornav-exterior .color-3 {
  background-color: #b7babd;
  background-color: #ae9a82;
}

#s7 .colornav-exterior .color-4 {
  background-color: #c6dcea;
  background-color: #69a4b4;
}

#s7 .colornav-exterior .color-5 {
  background-color: #e2d7cf;
  background-color: #594a6b;
}

#s7 .colornav-exterior .color-6 {
  background-color: #92acc7;
}

#s7 .colornav-exterior .color-7 {
  background-color: #9f3636;
  background-color: #c4000c;
}

#s7 .colornav-interior .color-1 {
  background-color: #e5dcd2;
  background-color: #afaaa6;
}

#s7 .colornav-interior .color-2 {
  background-color: #d5d5d5;
  background-color: #303342;
}

#s7 .colornav-interior .color-3 {
  background-color: #b44148;
  background-color: #843f44;
}

#s7 .colornav-exterior .color-8 {
  background-color: #B7BABD;
}

#s7.no-sticky .subsection-design-4 {
  height: auto;
}

#s7.no-sticky .subsection-design-4 .swiper-slide .swiper-slide::before {
  display: block;
  padding-bottom: 46.875%;
  content: '';
}

#s7.no-sticky .subsection-design-4 .covered-picture {
  transition: opacity .6s .6s, transform .6s .6s;
  opacity: 0;
  clip-path: none;
}

#s7.no-sticky .subsection-design-4[data-active='1'] .covered-picture:nth-child(1) {
  transition: opacity .6s, transform .6s;
  opacity: 1;
  clip-path: none;
}

#s7.no-sticky .subsection-design-4[data-active='2'] .covered-picture:nth-child(2) {
  transition: opacity .6s, transform .6s;
  opacity: 1;
  clip-path: none;
}

#s7.no-sticky .subsection-design-4[data-active='3'] .covered-picture:nth-child(3) {
  transition: opacity .6s, transform .6s;
  opacity: 1;
  clip-path: none;
}

#s7.no-sticky .subsection-design-4[data-active='4'] .covered-picture:nth-child(4) {
  transition: opacity .6s, transform .6s;
  opacity: 1;
  clip-path: none;
}

#s7.no-sticky .subsection-design-4[data-active='5'] .covered-picture:nth-child(5) {
  transition: opacity .6s, transform .6s;
  opacity: 1;
  clip-path: none;
}

#s7.no-sticky .subsection-design-4[data-active='6'] .covered-picture:nth-child(6) {
  transition: opacity .6s, transform .6s;
  opacity: 1;
  clip-path: none;
}

#s7.no-sticky .subsection-design-4[data-active='7'] .covered-picture:nth-child(7) {
  transition: opacity .6s, transform .6s;
  opacity: 1;
  clip-path: none;
}

#s7.no-sticky .subsection-design-4 .tablist-wrapper,
#s7.no-sticky .subsection-design-4 .colornav-wrapper {
  transition: none;
  transform: none;
  opacity: 1;
}

#s7 .subsection-performance-5 {
  overflow: hidden;
}

#s7 .subsection-performance-5 .performance-5-swiper {
  width: 81.25vw;
  margin: 3.125vw auto 2.5vw;
  overflow: visible;
}

#s7 .subsection-performance-5 .performance-5-swiper .swiper-slide {
  width: 15.625vw;
}

#s7 .subsection-performance-5 .performance-5-swiper .slide-content {
  width: 100%;
  height: 15.625vw;
  background: #313340;
  padding: 2.5vw 0 0 2.083333vw;
}

#s7 .subsection-performance-5 .performance-5-swiper .slide-content img {
  width: 4.166667vw;
  height: 4.166667vw;
  margin-bottom: 2.083333vw;
}

#s7 .subsection-performance-5 .performance-5-swiper .slide-content p {
  font-size: 1.041667vw;
  color: white;
  margin-bottom: .416667vw;
}

#s7 .subsection-performance-5 .performance-5-swiper .slide-content h3 {
  font-size: 2.916667vw;
  font-weight: 500;
  color: white;
}

#s7 .subsection-performance-5 .performance-5-swiper .slide-content h3 span {
  font-size: 1.145833vw;
  color: white;
}

#s7 .subsection-performance-5 .bottom-des {
  font-size: .833333vw;
  font-size: max(.833333vw ,12px);
  color: #797C80;
  margin-left: 9.375vw;
  margin-bottom: 3.333333vw;
  opacity: 0.7;
}

@media (max-width:1200px){
  #s7 .subsection-performance-5 .bottom-des {
    font-size: .833333vw;
  }
}

#s7 .subsection-performance-5 .performance-5-scrollbar {
  position: relative;
  width: 14.583333vw;
  height: 2.916667vw;
  margin: 0 auto;
  background-color: unset;
}

#s7 .subsection-performance-5 .performance-5-scrollbar::before {
  content: '';
  display: block;
  position: absolute;
  width: 95%;
  height: .520833vw;
  border-radius: .260417vw;
  background-color: #313340;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#s7 .subsection-performance-5 .performance-5-scrollbar .swiper-scrollbar-drag {
  width: 2.916667vw;
  height: 2.916667vw;
  background-color: unset;
  background-image: url(../images/performance/zhijie-s7-new-performance-5-arrow.svg);
  background-size: 100% 100%;
  cursor: pointer;
  z-index: 3;
}


#s7 .subsection-battery-2 .content {
  width: 100%;
  padding: 0 2.083333vw;
}

#s7 .subsection-battery-2 .content .row {
  justify-content: space-between;
}

#s7 .subsection-battery-2 .content .right-page-content p {
  font-size: 1.041667vw;
  color: #797C80;
}

#s7 .subsection-battery-2 .content .right-page-content h3 {
  font-size: 3.333333vw;
  color: #000000;
  font-weight: 500;
}

#s7 .subsection-battery-2 .content .right-page-content h3 span {
  font-size: 1.354167vw;
  color: #000000;
}

#s7 .subsection-battery-2 .content .page-line {
  width: 1px;
  height: 5.416667vw;
  background: rgba(0, 0, 0, 0.2);
  margin: 0 4.166667vw;
}

#s7 .subsection-drive-3 .txt-items {
  padding: 0 1.666667vw;
}

#s7 .subsection-drive-3 .txt-items h3 {
  font-size: 1.25vw;
}

#s7 .subsection-drive-3 .txt-items p {
  font-size: 1.041667vw;
}

#s7 .section-configuration .section-top-content {
  position: absolute;
  top: 8.072917vw;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  text-align: center;
}

#s7 .section-configuration .section-content {
  position: absolute;
  top: 8.072917vw;
  left: 0;
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 100%;
  padding-bottom: 3.333333vw;
  color: #fff;
}

#s7 .section-configuration .headline {
  font-size: 2.5vw;
  color: inherit;
  
}

#s7 .section-configuration .subhead {
  margin-top: .520833vw;
  font-size: 1.25vw;
  color: inherit;
  text-align: center;
}

#s7 .section-configuration .stats {
  margin: 3.125vw 0 26.041667vw 2.604167vw;
  white-space: nowrap;
}

#s7 .section-configuration .separator {
  width: 1px;
  height: 5.5vw;
  margin: 0 4.166667vw;
  background-color: rgba(255, 255, 255, 0.8);

}

#s7 .section-configuration .stat-caption {
  width: fit-content;
  font-size: 1.145833vw;
  line-height: 1.25;
  color: inherit;
  background-color: rgba(255, 255, 255, 0.7);
  color: #000;
  height: 1.875vw;
  display: flex;
  align-items: center;
  padding: 0 .520833vw;

}

#s7 .section-configuration .stat-value {
  margin-top: 1.041667vw;
  font-size: 2.5vw;
  line-height: 1.25;
  color: inherit;
  font-weight: 500;
}

#s7 .section-configuration .stat-value span{
  font-size: 1.666667vw;
}

#s7 .section-configuration .button-cta {
  display: flex;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  width: 8.75vw;
  height: 2.916667vw;
  font-weight: bold;
  transition: all .3s ease-out;
  position: relative;
}

#s7 .section-configuration .button-cta picture {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#s7 .section-configuration .button-cta p {
  font-size: .9375vw;
  z-index: 2;
  color: #000000;
}

@media (hover: hover) {
  #s7 .section-configuration .button-cta:hover {
    opacity: 0.7;
    ;
  }

}

#s7 .section-configuration .note {
  position: absolute;
  right: 2.5vw;
  bottom: 3.333333vw;
  padding-left: .5em;
  color: #fff;
  text-align: right;
  font-size: .833333vw;
}

#s7 .section-configuration .note::before {
  position: absolute;
  left: 0;
  content: '*';
}

#s7 .section-footnote .footnote-list {
  font-size: .625vw;
}

@media (max-width: 1920px) and (min-aspect-ratio: 11 / 10) {
  #s7 .section-footnote .footnote-list {
    font-size: 12px;
  }
}

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

#s7 .section-footnote ol {
  padding-left: 1.5em;
}

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

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

#s7 .section-footnote li {
  font-size: inherit;
  list-style-type: decimal;
  color: #85858A;
}

#s7 .section-footnote li+li {
  margin-top: .5em;
}

#s7 .section-footnote li.current {
  color: #2A2A2C;
}

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

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


html.has-modal-l {
  overflow: hidden;
  /* background-color: #000; */
}

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



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

#s7 .modal-button-container .modal-button-wrapper {
  position: relative;
  overflow: hidden;
  width: 10.208333vw;
  height: 2.916667vw;
  transition: opacity 300ms ease-out;
  border-radius: 999px;
}

@media (hover: hover) {
  #s7 .modal-button-container .modal-button-wrapper:hover .button-copy {
    letter-spacing: 0.15vw;
  }

  #s7 .modal-button-container .modal-button-wrapper:hover .button-icon {
    transform: translateX(.260417vw);
  }
}

#s7 .modal-button-container .modal-button {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  height: 100%;
  cursor: pointer;
}

#s7 .modal-button-container .modal-button-inside {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}

#s7 .modal-button-container .button-copy {
  font-size: 0.9375vw;
  font-weight: 500;
  transition: all 0.3s ease;
}

#s7 .modal-button-container .button-icon {
  width: .885417vw;
  margin-left: .416667vw;
  transition: transform 0.3s ease;
}

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

  #s7 .modal-button-container .modal-button-wrapper {
    width: 26.666667vw;
    height: 11.111111vw;
  }

  #s7 .modal-button-container .modal-button {
    padding: 0;
  }

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

  #s7 .modal-button-container .button-icon {
    display: none;
  }
}

#s7 .section-modal {
  position: fixed;
  z-index: -1;
  top: 0;
  left: 0;
  overflow: hidden;
  width: 100%;
  height: 100%;
  transition: -webkit-backdrop-filter 0.6s cubic-bezier(0.65, 0.05, 0.36, 1), backdrop-filter 0.6s cubic-bezier(0.65, 0.05, 0.36, 1), background-color 0.6s cubic-bezier(0.65, 0.05, 0.36, 1);
  outline: 0;
  background-color: rgba(25, 25, 26, 0);
  -webkit-backdrop-filter: blur(0px) brightness(100%);
  backdrop-filter: blur(0px) brightness(100%);
}

#s7 .section-modal.modal-scrollable {
  padding-inline-end: var(--modal-scrollbar-buffer);
}

#s7 .section-modal.modal-open {
  background-color: rgba(25, 25, 26, 0.8);
  -webkit-backdrop-filter: blur(50px) brightness(120%);
  backdrop-filter: blur(50px) brightness(120%);
}

#s7 .section-modal.modal-open .modal-container {
  transition: transform 0.8s cubic-bezier(0.65, 0.05, 0.36, 1), opacity 0.2s ease-in;
  opacity: 1;
}

#s7 .section-modal.light.modal-open {
  background-color: rgba(237, 238, 242, 0.8);
}

.has-modal-l #s7 .section-modal.modal-open,
.has-modal-l #s7 .section-modal.modal-will-close {
  z-index: 1000;
}

.has-modal-l #s7 .section-modal .modal-container {
  transform: translate3d(0, 0, 0);
}

#s7 .section-modal.modal-will-close {
  overflow: auto !important;
  padding-inline-end: 0;
}

#s7 .section-modal.modal-will-close .modal-container {
  transition: opacity 0.6s;
}

#s7 .section-modal .modal-container {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100%;
  padding-top: 3.333333vw;
  padding-bottom: 3.333333vw;
  transform: translate3d(0, 100vh, 0);
  opacity: 0;
  will-change: transform, opacity;
}

#s7 .section-modal .modal-wrapper {
  position: relative;
  width: 81.25vw;
}

#s7 .section-modal .modal-content {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-bottom: 6.25vw;
  border-radius: 1.25vw;
  background-color: #fff;
}

#s7 .section-modal .modal-content .modal-des {
  position: absolute;
  bottom: 4.166667vw;
  left: 6.875vw;
  font-size: .833333vw;
  font-size: max(.833333vw ,12px);
  text-align: right;
  opacity: 0.7;
}

@media (max-width:1200px){
  #s7 .section-modal .modal-content .modal-des {
    font-size: .833333vw;
  }
}

#s7 .section-modal .modal-close-container {
  position: absolute;
  top: 1.666667vw;
  right: 1.666667vw;
  bottom: 0;
  width: 2.083333vw;
}

#s7 .section-modal .modal-close-button {
  position: sticky;
  z-index: 10;
  top: 2.083333vw;
  width: 100%;
  cursor: pointer;
  /* border-radius: 100%; */
  /* background-color: rgba(128, 128, 128, 0.35); */
  /* -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px); */
  
}

#s7 .section-modal .modal-close-button path{
   fill: rgba(128, 128, 128, 0.35);
   transition: all 300ms ease-out;
}

#s7 .section-modal .modal-content .headline {
  font-size: 2.083333vw;
}

#s7 .section-modal .modal-content .subsection {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

#s7 .section-modal .modal-content .subsection .flex-content {

  transition: 0.1s transform 0.6s cubic-bezier(0.65, 0.05, 0.36, 1);
}

#s7 .section-modal.modal-open .modal-content .subsection .flex-content:nth-child(odd) {
  transform: translateY(0);
  transition: 0.8s transform 0.4s ease;
}

#s7 .section-modal.modal-open .modal-content .subsection .flex-content:nth-child(even) {
  transform: translateY(0);
  transition: 0.8s transform 0.6s ease;
}


#s7 .section-modal .modal-content .subsection .flex-content p {
  font-size: 1.25vw;
  margin-top: 2.5vw;
  line-height: 1.25;
  font-weight: bold;
  color: #000;
}

#s7 .section-modal .modal-content .subsection .flex-content:nth-child(odd) {
  width: 31.041667vw;
  transform: translateY(3vw);
}

#s7 .section-modal .modal-content .subsection .flex-content:nth-child(even) {
  width: 32.291667vw;
  transform: translateY(3vw)
}

#s7 .section-modal .modal-content .subsection .flex-content:nth-child(1),
#s7 .section-modal .modal-content .subsection .flex-content:nth-child(2) {
  margin-bottom: 6.25vw;
}

#s7 .section-modal .modal-content .subsection .flex-content:nth-child(3) {
  margin-top: -11.875vw;
}

@media (hover: hover) {
  #s7 .section-modal .modal-close-button:hover path{
    fill: rgba(128, 128, 128, 0.25);
  }
}

#s7 .section-modal .modal-close-icon {
  pointer-events: none;
}

@media (max-aspect-ratio: 11/10) {
  #s7 .section-modal .modal-container {
    padding-top: 8.888889vw;
    padding-bottom: 8.888889vw;
  }

  #s7 .section-modal .modal-wrapper {
    width: 95.555556vw;
  }

  #s7 .section-modal .modal-content {
    padding-bottom: 11.111111vw;
    border-radius: 4.444444vw;
  }

  #s7 .section-modal .modal-close-container {
    top: 3.333333vw;
    right: 3.333333vw;
    width: 9.444444vw;
  }

  #s7 .section-modal .modal-close-button {
    top: 3.333333vw;
  }
}

/* #s7 .subsection-harmonyos-2.new-section.swiper-style-3 .content-container{
    background-color: #313340;
} */

#s7 .subsection-harmonyos-2.new-section.swiper-style-3 .pagination-item {
  color: white;
}

#s7 .subsection-harmonyos-2.new-section.swiper-style-3 .pagination-line {
  background-color: rgba(255, 255, 255, 0.2);
}

#s7 .subsection-harmonyos-2.new-section.swiper-style-3 .pagination-line::before {
  background: white;
}

#s7 .subsection-harmonyos-2.new-section.swiper-style-3 .stack-item p {
  color: rgba(255, 255, 255, 0.7);
}

#s7 .subsection-harmonyos-2.new-section.swiper-style-3 .arrownav-list .icon-path {
  stroke: #fff;
}

#s7 .subsection-harmonyos-2.new-section.swiper-style-3 .gallery {
  height: 45.729167vw;
  overflow: hidden;
}

#s7 .subsection-harmonyos-3 .content {
  width: 100%;
  padding: 0 2.083333vw;
}

#s7 .subsection-harmonyos-3 .aspect-ratio {
  margin-bottom: 3.125vw;
}

#s7 .subsection-harmonyos-3 .content .row {
  justify-content: space-between;
  flex-wrap: nowrap;
}

#s7 .subsection-harmonyos-3 .content .right-page-content p {
  font-size: 1.041667vw;
  /* color: rgba(255, 255, 255, 0.7); */
}

#s7 .subsection-harmonyos-3 .content .right-page-content h3 {
  font-size: 3.333333vw;
  color: #fff;
  font-weight: 500;
}

#s7 .subsection-harmonyos-3 .content .right-page-content h3 span {
  font-size: 1.354167vw;
  color: #fff;
}

#s7 .subsection-harmonyos-3 .content .page-line {
  width: 1px;
  height: 5.416667vw;
  background: rgba(255, 255, 255, 0.2);
  margin: 0 3.333333vw;
}


#s7 .subsection-security-2 .bottom-flex-container {
  width: 58.333333vw;
  display: flex;
  flex-wrap: wrap;
  margin: 4.166667vw auto 0;
  justify-content: space-between;
}

#s7 .subsection-security-2 .bottom-flex-container .bottom-page-content {
  width: 25vw;
  margin-bottom: 3.333333vw;
}

#s7 .subsection-security-2 .bottom-flex-container .bottom-page-content h3 {
  font-size: 1.25vw;
  color: #000;
}

#s7 .subsection-security-2 .bottom-flex-container .bottom-page-content .page-line {
  width: 100%;
  background: #E5E5E5;
  height: .104167vw;
  margin: 1.25vw 0;
}

#s7 .subsection-security-2 .bottom-flex-container .bottom-page-content p {
  font-size: 1.041667vw;
  color: #797C80;
}

#s7 .subsection-security-2 .bottom-flex-container .bottom-page-content:nth-last-child(1),
#s7 .subsection-security-2 .bottom-flex-container .bottom-page-content:nth-last-child(2) {
  margin-bottom: 0;
}


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

  #s7 .subsection-security-3 .s3-bottom-content .swiper-wrapper {
    display: flex;
    justify-content: space-between;
  }

  #s7 .subsection-security-3 .s3-bottom-content .swiper-slide {
    width: 26.25vw;
  }

  #s7 .subsection-security-3 .s3-bottom-content .tablist-wrapper {
    width: 100%;
  }

  #s7 .subsection-security-3 .s3-bottom-content .tablist-wrapper .tablist {
    justify-content: space-between;
  }

  #s7 .subsection-security-3 .s3-bottom-content .tablist-wrapper .tablist .tabnav {
    width: 26.25vw;
    margin-left: 0;
    padding-left: .833333vw;
    color: #000;
    padding-bottom: 0;
    font-size: 1.25vw;
    cursor: auto;
  }

  #s7 .subsection-security-3 .s3-bottom-content .tabnav-scrollbar {
    display: none;
  }

  #s7 .subsection-security-3 .s3-bottom-content .stack-list {
    display: flex;
    justify-content: space-between;
    width: 100%;
  }

  #s7 .subsection-security-3 .s3-bottom-content .stack-list .stack-item {
    width: 26.25vw;
    margin-left: 0;
    opacity: 1;
    padding-left: .833333vw;
    text-align: left;
    font-size: 1.041667vw;
    padding-right: 2.5vw;

  }
}

#s7 .subsection-security-3 .modal-player-cta {
  position: absolute;
  right: 1.25vw;
  bottom: 1.25vw;
  width: 2.083333vw;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background-color: rgba(128, 128, 128, 0.35);
  border-radius: 50%;
  overflow: hidden;
}

@media (hover: hover) {
  #s7 .subsection-security-3 .modal-player-cta:hover {
    background-color: rgba(128, 128, 128, 0.2);
    transition: 0.3s ease;
  }
}



#s7 .subsection-harmonyos-2 .modal-player-cta {
  position: absolute;
  right: 2.083333vw;
  bottom: 2.083333vw;
  width: 2.5vw;
}



@media (max-aspect-ratio: 11 / 10) {
  #s7 .xs-w560 {
    width: 77.777778vw;
    margin-left: auto;
    margin-right: auto;
  }

  #s7 .subsection-security-3 .modal-player-cta {
    right: 4.444444vw;
    bottom: 4.444444vw;
    width: 8.888889vw;
  }

  #s7 .subsection-security-3 .tablist-wrapper{
      width: fit-content;
  }

  #s7 .subsection-design-2 .section-new-content {
    display: flex;
    flex-wrap: wrap;
  }

  #s7 .subsection-design-2 {
    width: 95.555556vw;
    margin-left: auto;
    margin-right: auto;
  }

  #s7 .subsection-design-4 .picture-wrapper {
    height: 111.111111vw;
    overflow: hidden;
  }

  #s7 .subsection-design-5 .section-new-content {
    width: 95.555556vw;
    margin-left: auto;
    margin-right: auto;
  }

  #s7 .subsection-performance-3 .aspect-ratio {
    width: 95.555556vw;
    margin: 0 auto;
  }

  #s7 .subsection-performance-3 .bottom-flex-container {
    width: 77.777778vw;
    flex-wrap: wrap;
    margin-top: 11.111111vw;
  }

  #s7 .subsection-performance-3 .bottom-flex-container .bottom-page-content {
    width: 100%;
    margin-bottom: 8.333333vw;
  }

  #s7 .subsection-performance-3 .bottom-flex-container .bottom-page-content:nth-last-child(2) {
    margin-bottom: 8.333333vw;
  }

  #s7 .subsection-performance-3 .bottom-flex-container .bottom-page-content:last-child {
    margin-bottom: 0;
  }

  #s7 .subsection-performance-3 .bottom-flex-container .bottom-page-content h3 {
    font-size: 4.444444vw;
  }

  #s7 .subsection-performance-3 .bottom-flex-container .bottom-page-content p {
    font-size: 4.444444vw;
  }

  #s7 .subsection-performance-3 .bottom-flex-container .bottom-page-content .page-line {
    margin: 3.333333vw 0;
  }

  #s7 .subsection-performance-5 .performance-5-swiper {
    width: 77.777778vw;
    margin: 8.333333vw auto 0;
  }

  #s7 .subsection-performance-5 .performance-5-swiper .swiper-slide {
    width: 41.666667vw;
  }

  #s7 .subsection-performance-5 .performance-5-swiper .slide-content {
    height: 41.666667vw;
    padding: 6.666667vw 0 0 5.555556vw;
  }

  #s7 .subsection-performance-5 .performance-5-swiper .slide-content img {
    width: 11.111111vw;
    height: 11.111111vw;
    margin-bottom: 4.166667vw;
  }

  #s7 .subsection-performance-5 .performance-5-swiper .slide-content p {
    font-size: 3.333333vw;
    margin-bottom: 2.222222vw;
  }

  #s7 .subsection-performance-5 .performance-5-swiper .slide-content h3 {
    font-size: 7.777778vw;
  }

  #s7 .subsection-performance-5 .performance-5-swiper .slide-content h3 span {
    font-size: 3.333333vw;
  }

  #s7 .subsection-performance-5 .bottom-des {
    margin: 8.888889vw 0 11.111111vw 11.111111vw;
    font-size: 3.333333vw;
  }

  #s7 .subsection-performance-5 .performance-5-scrollbar {
    width: 48.611111vw;
    height: 12.222222vw;
  }

  #s7 .subsection-performance-5 .performance-5-scrollbar .swiper-scrollbar-drag {
    height: 12.222222vw;
  }

  #s7 .subsection-performance-5 .performance-5-scrollbar::before {
    height: 2.222222vw;
    border-radius: 1.388889vw;
  }

  #s7 .subsection-design-6 {
    width: 95.555556vw;
    margin-left: auto;
    margin-right: auto;
  }

  #s7 .subsection-battery-2 .aspect-ratio {
    width: 95.555556vw;
    margin: 8.333333vw auto 0;
  }

  #s7 .subsection-battery-2 .content .statistics {
    display: none;
  }

  #s7 .subsection-battery-2 .xs-statistics {
    width: 77.777778vw;
    margin: 11.111111vw auto 0 !important;
    display: flex;
    flex-wrap: wrap;
  }

  #s7 .subsection-battery-2 .xs-statistics .right-page-content {
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding-bottom: 2.777778vw;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    align-items: baseline;
  }

  #s7 .subsection-battery-2 .xs-statistics .right-page-content h3 {
    font-size: 8.888889vw;
    font-weight: 500;
  }

  #s7 .subsection-battery-2 .xs-statistics .right-page-content h3 span {
    font-size: 3.888889vw;
  }

  #s7 .subsection-battery-2 .xs-statistics .right-page-content p {
    font-size: 3.888889vw;
    color: #797C80;
  }

  #s7 .subsection-battery-2 .xs-statistics .right-page-content:first-child {
    margin-bottom: 5.555556vw;
  }

  #s7 .subsection-drive-3 .aspect-ratio {
    width: 95.555556vw;
    margin: 0 auto 0;
  }

  #s7 .subsection-drive-3 .txt-items {
    width: 77.777778vw;
    padding: 0;
  }

  #s7 .subsection-drive-3 .txt-items .txt-item .headline {
    font-size: 4.444444vw;
    padding-bottom: 3.333333vw;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  }

  #s7 .subsection-drive-3 .txt-items .txt-item .intro {
    font-size: 4.444444vw;
    margin-top: 3.333333vw;
  }

  #s7 .subsection-harmonyos-2.new-section.swiper-style-3 .gallery {
    height: 53.611111vw;
  }

  #s7 .subsection-harmonyos-2 {
    margin-left: auto;
    margin-right: auto;
  }

  #s7 .subsection-harmonyos-3 .content .statistics {
    display: none;
  }

  #s7 .subsection-harmonyos-3 .section-new-content {
    display: flex;
    flex-wrap: wrap;
  }

  #s7 .subsection-harmonyos-3 .aspect-ratio {
    width: 95.555556vw;
    margin: 8.333333vw auto 0;
    order: 2;
  }

  #s7 .subsection-battery-2 .content{
    margin-top: 0;
  }

  #s7 .subsection-harmonyos-3 .content {
    order: 1;
    margin-top: 0;
  }

  #s7 .subsection-harmonyos-3 .xs-statistics {
    width: 77.777778vw;
    margin: 11.111111vw auto 0 !important;
    display: flex;
    flex-wrap: wrap;
    order: 3;
  }

  #s7 .subsection-harmonyos-3 .xs-statistics .right-page-content {
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding-bottom: 2.777778vw;
    border-bottom: 1px solid #808080;
    align-items: baseline;
  }

  #s7 .subsection-harmonyos-3 .xs-statistics .right-page-content h3 {
    font-size: 8.888889vw;
    font-weight: 500;
  }

  #s7 .subsection-harmonyos-3 .xs-statistics .right-page-content h3 span {
    font-size: 3.888889vw;
  }

  #s7 .subsection-harmonyos-3 .xs-statistics .right-page-content p {
    font-size: 3.888889vw;
    color: #fff;
  }

  #s7 .subsection-harmonyos-3 .xs-statistics .right-page-content:not(:last-child) {
    margin-bottom: 5.555556vw;
  }

  #s7 .subsection-security-2 .bottom-flex-container {
    width: 77.777778vw;
    flex-wrap: wrap;
    margin-top: 11.111111vw;
  }

  #s7 .subsection-security-2 .bottom-flex-container .bottom-page-content {
    width: 100%;
    margin-bottom: 8.333333vw;
  }

  #s7 .subsection-security-2 .bottom-flex-container .bottom-page-content:nth-last-child(2) {
    margin-bottom: 8.333333vw;
  }

  #s7 .subsection-security-2 .bottom-flex-container .bottom-page-content:last-child {
    margin-bottom: 0;
  }

  #s7 .subsection-security-2 .bottom-flex-container .bottom-page-content h3 {
    font-size: 4.444444vw;
  }

  #s7 .subsection-security-2 .bottom-flex-container .bottom-page-content p {
    font-size: 4.444444vw;
  }

  #s7 .subsection-security-2 .bottom-flex-container .bottom-page-content .page-line {
    margin: 3.333333vw 0;
  }

  #s7 .section-configuration {
    background-color: #161826;
  }

}

@media (max-aspect-ratio: 7 / 10) {
  #s7 .section-configuration .section-content {
    position: static;
    align-items: center;
    color: #FFFFFF;
    width: 91.666667vw;
    margin: 11.111111vw auto 0;
    padding-bottom: 11.111111vw;
  }

  #s7 .section-configuration .headline {
    font-size: 6.666667vw;
  }

  #s7 .section-configuration .subhead {
    margin-top: 2.222222vw;
    font-size: 3.333333vw;
  }

  #s7 .section-configuration .stats {
    align-items: center;
    justify-content: flex-start;
    width: 72.222222vw;
    margin: 10.416667vw auto 22.222222vw;
    order: 2;
  }

  #s7 .section-configuration .stats .stat-item {
    padding-bottom: 2.777778vw;
    border-bottom: 1px solid #808080;
    width: 100%;
    margin-bottom: 8.333333vw;
  }

  #s7 .section-configuration .stats .stat-item:last-child {
    margin-bottom: 0;
  }

  #s7 .section-configuration .separator {
    height: 11.111111vw;
    margin: 0;
    background-color: #707070;
    display: none;
  }

  #s7 .section-configuration .xs-breaker {
    width: 100%;
    height: 0;
    margin: 2.777778vw 0;
  }

  #s7 .section-configuration .stat-caption {
    margin-top: 0;
    font-size: 3.888889vw;
    padding: 0 1.388889vw;
    margin-bottom: 2.777778vw;
    height: 7.361111vw;
  }

  #s7 .section-configuration .head-title {
    order: 1;
    text-align: center;
  }

  #s7 .section-configuration .head-title h3 {
    font-size: 6.666667vw;
  }

  #s7 .section-configuration .head-title p {
    font-size: 3.333333vw;
    margin-top: 4.444444vw;
  }

  #s7 .section-configuration .stat-value {
    margin-top: 1.388889vw;
    font-size: 8.888889vw;
  }

    #s7 .section-configuration .stat-value span{
      font-size: 3.888889vw;
    }

  #s7 .section-configuration .button-cta {
    width: 33.333333vw;
    height: 11.666667vw;
    font-size: 3.333333vw;
    order: 3;
  }

  #s7 .section-configuration .button-cta p {
    font-size: 3.611111vw;
  }


  #s7 .section-configuration .note {
    position: relative;
    right: 0;
    bottom: 0;
    margin-top: 0;
    text-align: right;
    color: rgba(255, 255, 255, 0.7);
    width: 83.333333vw;
    margin-left: auto;
    margin-right: 0;
    font-size: 3.333333vw;
    margin-bottom: 12.5vw;
  }

  #s7 .section-modal .modal-content {
    padding-bottom: 33.333333vw;
  }

  #s7 .section-modal .modal-content .section-content {
    margin-top: 16.666667vw;
  }

  #s7 .section-modal .modal-content .headline {
    font-size: 8.888889vw;
    width: 83.333333vw;
    margin: 0 auto;
    text-align: left;
  }

  #s7 .section-modal .modal-content .subsection {
    width: 83.333333vw;
    margin: 11.111111vw auto 0;
    display: block;
  }

  #s7 .section-modal .modal-content .subsection .flex-content {
    width: 100% !important;
    transform: translateY(0) !important;
    margin-top: 0 !important;
    margin-bottom: 11.111111vw !important;
  }

  #s7 .section-modal .modal-content .subsection .flex-content:last-child {
    margin-bottom: 0 !important;
  }

  #s7 .section-modal .modal-content .subsection .flex-content p {
    font-size: 5.555556vw;
    margin-top: 5.555556vw;
  }

  #s7 .section-modal .modal-content .modal-des {
    bottom: 19.444444vw;
    left: 6.111111vw;
    font-size: 3.333333vw;
  }


  br.no-xs {
    display: none;
  }

  #s7 .section-modal .modal-content{
    border-radius: 0;
  }
}

#s7 .tab-show {
  display: none;
}

@media (max-aspect-ratio: 13 / 10) and (min-aspect-ratio: 11.1 / 10){
  #s7 .section-hero .hero-content{
    top: 9vw;
  }

   #s7 .section-hero .ksp{
    width: 43vw;
   }

   #s7 .subsection-design-4{
    height: auto;
   }

   #s7 .sticky-content{
    height: 56.25vw ;
   }
}

@media (max-aspect-ratio: 11 / 10) and (min-aspect-ratio: 7 / 10) {
  #s7 .pad\:1400\/1450::before {
    padding-bottom: calc(100% / (1400 / 1450));
  }

  #s7 .pad\:1400\/1180::before {
    padding-bottom: calc(100% / (1400 / 1180));
  }

  #s7 .pad\:1056\/720::before {
    padding-bottom: calc(100% / (1056 / 720));
  }

  #s7 .pad\:1056\/800::before {
    padding-bottom: calc(100% / (1056 / 800));
  }

  #s7 .pad\:1056\/600::before {
    padding-bottom: calc(100% / (1056 / 600));
  }

  #s7 .section-hero .hero-picture::before {
    display: block;
    padding-bottom: calc(100% / (1400 / 1450));
    content: '';
  }

  #s7 .pad\:mt-30 {
    margin-top: 2.142857vw;
  }

  #s7 .pad\:mt-60 {
    margin-top: 4.285714vw;
  }

  #s7 .pad\:mt-70 {
    margin-top: 5vw;
  }
  #s7 .mt-80,
  #s7 .pad\:mt-80 {
    margin-top: 5.714286vw;
  }

   #s7 .mt-120,
  #s7 .pad\:mt-120 {
    margin-top: 8.571429vw;
  }


  #s7 .pad-w950 {
    width: 67.857143vw;
  }

  #s7 .space-t {
    padding-top: 14.285714vw;
  }

  #s7 .space-y {
    padding-top: 14.285714vw;
    padding-bottom: 14.285714vw;
  }

  #s7 .tab-show {
    display: block;
  }

  #s7 .xs-text-left {
    text-align: center;
  }

  #s7 br.xs {
    display: none;
  }

  #s7 h4 {
    font-size: 4.571429vw;
  }

  #s7 p {
    font-size: 2.285714vw;
  }

  #s7 .section-hero .hero-content {
    top: 14.285714vw;
  }

  #s7 .section-hero .logo {
    width: 37.5vw;
    margin-bottom: 1.428571vw;
  }

  #s7 .section-hero .slogan {
    font-size: 2.785714vw;
    height: 3.357143vw;
    width: 36.5vw;
  }

  #s7 .section-hero .ksp {
    width: 75.142857vw;
    font-size: 2.285714vw;
    height: 3.071429vw;
    margin-top: 2.571429vw;
  }

  #s7 .section-first-container .content {
    top: 8.571429vw;
    width: 67.857143vw;
  }

  #s7 .section-first-container .xs-hidden {
    display: block;
  }

  #s7 .section-first-container .xs-block {
    display: none;
  }

  #s7 .section-first-container .content .page {
    font-size: 2.285714vw;
    margin-top: 2.857143vw;
    width: 67.714286vw;
  }

  #s7 .subsection-design-1.section-first-container .content {
    top: 8.571429vw;
  }

  #s7 .section-first-container .content .intro {
    font-size: 2.285714vw;
  }

  #s7 .section-first-container .content h3 {
    font-size: 5.714286vw;
    white-space: nowrap;
  }

  #s7 .section-first-container .headline {
    margin-top: 1.428571vw;
  }

  #s7 .subsection-design-2 .section-new-content {
    width: 75.428571vw;
  }

  #s7 .new-section.swiper-style-1 .gallery-container {
    width: 75.428571vw;
  }

  #s7 .new-section.swiper-style-1 .gallery {
    height: 57.142857vw;
  }

  #s7 .new-section.swiper-style-1 .content-container {
    padding: 5.714286vw 0;
  }

  #s7 .new-section.swiper-style-1 .content-wrapper {
    width: 64.285714vw;
  }

  #s7 .new-section.swiper-style-1 h3 {
    font-size: 2.857143vw;
  }

  #s7 .new-section .stack-item p {
    font-size: 2.285714vw;
    margin-top: 2.857143vw;
  }

  #s7 .new-section.swiper-style-1 .stack-list {
    margin-bottom: 5.714286vw;
  }

  #s7 .new-section .arrownav-list .arrownav-item {
    width: 5.5vw;
  }

  #s7 .new-section .arrownav-list .arrownav-next {
    margin-left: 1.785714vw;
  }

  #s7 .new-section.swiper-style-1 .pagination-item {
    font-size: 2vw;
  }

  #s7 .new-section .pagination-line {
    width: 10.5vw;
    margin-left: 2vw;
    margin-right: 2vw;
    height: .214286vw;
  }

  #s7 .modal-button-container .modal-button-wrapper {
    width: 21.785714vw;
    height: 5.714286vw;
  }

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

  #s7 .modal-button-container .button-icon {
    display: block;
    width: 1.785714vw;
    margin-left: 1.142857vw;
  }

  #s7 .subsection-design-4 {
    height: auto;
  }



  #s7 .subsection-design-4 .sticky-content {
    height: 84.285714vw;
  }

  #s7 .subsection-design-4 .picture-wrapper {
    height: 84.285714vw;
  }

  #s7 .subsection-design-4 .tablist-wrapper {
    opacity: 1;
    top: 10.714286vw;
    width: 60.083333vw;
  }

  #s7 .subsection-design-4 .tablist-wrapper .color-page-item {
    font-size: 4.571429vw;
  }

  #s7 .subsection-design-4 .colornav-wrapper {
    opacity: 1;
    bottom: 5.714286vw;
    transform: translateY(0);
    flex-wrap: wrap;
  }

  #s7 .colornav-list {
    margin-top: 0;
  }

  #s7 .subsection-design-4 .color-name-list {
    position: relative;
    top: 0;
    width: 100%;
    margin-top: 1.428571vw;
  }

  #s7 .subsection-design-4 .color-label {
    font-size: 2.285714vw;
  }

  #s7 .subsection-design-4 .colornav {
    margin-left: .5vw;
    margin-right: .5vw;
  }

  #s7 .subsection-design-4 .color-swatch {
    width: 5.214286vw;
    height: 5.857143vw;
  }

  #s7 .subsection-design-5 .section-new-content {
    width: 75.428571vw;
  }

  #s7 .subsection-design-6 .section-new-content {
    width: 75.428571vw;
  }

  #s7 .subsection-design-8 {
    width: 75.428571vw;
  }

  #s7 .subsection-design-8 .sticky-content .exterior-swiper {
    height: 57.142857vw;
  }

  #s7 .subsection-design-8 .picture-wrapper {
    height: 57.142857vw;
  }

  #s7 .subsection-design-8 .colornav-wrapper {
    padding: 0 1.428571vw;
    margin-top: 5.714286vw;
  }

  #s7 .subsection-design-8 .colornav-left .color-page-item {
    font-size: 2.857143vw;
  }

  #s7 .subsection-design-8 .color-label {
    font-size: 2.285714vw;
  }

  #s7 .subsection-design-8 .color-swatch {
    width: 5.214286vw;
    height: auto;
  }

  #s7 .subsection-design-8 .colornav {
    margin-left: 1vw;
  }

    #s7 .subsection-design-8 .colornav:first-child{
      margin-left: 1.714286vw;
    }

  #s7 .subsection-performance-3 .aspect-ratio {
    width: 75.428571vw;
  }

  #s7 .subsection-performance-3 .bottom-flex-container {
    width: 75.428571vw;
    margin-top: 5.714286vw;
  }

  #s7 .subsection-performance-3 .bottom-flex-container .bottom-page-content h3 {
    font-size: 2.857143vw;
  }

  #s7 .subsection-performance-3 .bottom-flex-container .bottom-page-content .page-line {
    margin: 1.714286vw 0;
  }

  #s7 .subsection-performance-3 .bottom-flex-container .bottom-page-content p {
    font-size: 2.285714vw;
  }

  #s7 .subsection-performance-3 .bottom-flex-container .bottom-page-content {
    margin-bottom: 5vw;
  }

  #s7 .subsection-performance-5 .performance-5-swiper {
    width: 75.428571vw;
    margin: 5.714286vw auto 0;
  }

  #s7 .subsection-performance-5 .performance-5-swiper .swiper-slide {
    width: 28.571429vw;
  }

  #s7 .subsection-performance-5 .performance-5-swiper .slide-content {
    height: 28.571429vw;
    padding: 4vw 0 0 4vw;
  }

  #s7 .subsection-performance-5 .performance-5-swiper .slide-content img {
    width: 7.142857vw;
    height: 7.142857vw;
    margin-bottom: 3.214286vw;
  }

  #s7 .subsection-performance-5 .performance-5-swiper .slide-content p {
    font-size: 2.285714vw;
    margin-bottom: 0;
  }

  #s7 .subsection-performance-5 .performance-5-swiper .slide-content h3 {
    font-size: 5.714286vw;
  }

  #s7 .subsection-performance-5 .performance-5-swiper .slide-content h3 span {
    font-size: 2vw;
  }

  #s7 .subsection-performance-5 .performance-5-scrollbar {
    width: 28.571429vw;
    height: 5.714286vw;
  }

  #s7 .subsection-performance-5 .performance-5-scrollbar .swiper-scrollbar-drag {
    height: 5.714286vw;
  }

  #s7 .subsection-performance-5 .performance-5-scrollbar::before {
    height: 1vw;
    border-radius: .5vw;
  }

  #s7 .subsection-performance-5 .bottom-des {
    font-size: 2vw;
    margin: 2.857143vw 0 7.142857vw 12.285714vw;
  }

  #s7 .subsection-battery-2 .content {
    text-align: center;
  }

  #s7 .subsection-battery-2 .aspect-ratio {
    width: 75.428571vw;
    margin: 5.714286vw auto 0;
  }

  #s7 .subsection-battery-2 .xs-statistics {
    width: 47.285714vw;
    flex-wrap: nowrap;
    margin: 5.714286vw auto 0 !important;
    align-items: center;
  }

  #s7 .subsection-battery-2 .xs-statistics .right-page-content {
    flex-wrap: wrap;
    padding-bottom: 0;
    border-bottom: 0px;
    width: fit-content;
    /* position: relative; */
  }


  #s7 .subsection-battery-2 .xs-statistics .right-page-content p {
    width: 100%;
    font-size: 2vw;
    margin-bottom: 1vw;
  }

  #s7 .subsection-battery-2 .xs-statistics .right-page-content h3 {
    order: 2;
    font-size: 4.571429vw;
  }

  #s7 .subsection-battery-2 .xs-statistics .right-page-content h3 span {
    font-size: 2vw;
  }

  #s7 .subsection-battery-2 .xs-statistics .right-page-content:first-child {
    margin-bottom: 0;
  }

  #s7 .subsection-battery-2 .xs-statistics .tab-show {
    display: block;
    width: 1px;
    height: 7.428571vw;
    background-color: rgba(0, 0, 0, 0.2);
    margin: 0 5.714286vw;
  }

  #s7 .subsection-drive-3 .aspect-ratio {
    width: 75.428571vw;
  }

  #s7 .subsection-drive-3 .txt-items {
    width: 75.428571vw;
  }

  #s7 .subsection-drive-3 .txt-items .txt-item .headline {
    font-size: 2.857143vw;
    padding-bottom: 1.714286vw;
  }


  #s7 .subsection-drive-3 .txt-items .txt-item .intro {
    font-size: 2.285714vw;
    margin-top: 1.714286vw;
  }

  #s7 .subsection-harmonyos-2 {
    width: 75.428571vw;
  }

  #s7 .subsection-harmonyos-2.new-section.swiper-style-3 .gallery {
    height: 42.857143vw;
  }

  #s7 .new-section.swiper-style-3 .content-wrapper {
    width: 64.285714vw;
  }

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

  #s7 .new-section.swiper-style-3 .stack-item .intro {
    font-size: 2.285714vw;
    margin-top: 2.857143vw;
  }

  #s7 .new-section.swiper-style-3 .stack-list {
    margin-bottom: 5.714286vw;
  }

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

  #s7 .new-section .pagination-item {
    font-size: 2vw;
  }

  #s7 .subsection-harmonyos-3 .content {
    text-align: center;
  }

  #s7 .subsection-harmonyos-3 .aspect-ratio {
    width: 75.428571vw;
    margin: 5.714286vw auto 0;
  }

  #s7 .subsection-harmonyos-3 .xs-statistics {
    width: 64.571429vw;
    margin: 5.714286vw auto 0 !important;
    flex-wrap: nowrap;
    align-items: center;
  }

  #s7 .subsection-harmonyos-3 .xs-statistics .right-page-content {
    flex-wrap: wrap;
    padding-bottom: 0;
    width: fit-content;
    border-bottom: 0;
  }

  #s7 .subsection-harmonyos-3 .xs-statistics .right-page-content:not(:last-child) {
    margin-bottom: 0;
  }

  #s7 .subsection-harmonyos-3 .xs-statistics .right-page-content p {
    width: 100%;
    font-size: 2vw;
    margin-bottom: 1vw;
    color: #797C80;
  }

  #s7 .subsection-harmonyos-3 .xs-statistics .right-page-content h3 {
    order: 2;
    font-size: 4.571429vw;
  }

  #s7 .subsection-harmonyos-3 .xs-statistics .right-page-content h3 span {
    font-size: 1.857143vw;
  }

  #s7 .subsection-harmonyos-3 .xs-statistics .tab-show {
    display: block;
    width: 1px;
    height: 7.428571vw;
    background-color: rgba(255, 255, 255, 0.2);
    margin: 0 4.571429vw;
  }

  #s7 .subsection-security-2 .bottom-flex-container {
    width: 75.428571vw;
    margin-top: 5.714286vw;
  }

  #s7 .subsection-security-2 .bottom-flex-container .bottom-page-content h3 {
    font-size: 2.857143vw;
  }

  #s7 .subsection-security-2 .bottom-flex-container .bottom-page-content .page-line {
    margin: 1.714286vw 0;
  }

  #s7 .subsection-security-2 .bottom-flex-container .bottom-page-content p {
    font-size: 2.285714vw;
  }

  #s7 .subsection-security-2 .bottom-flex-container .bottom-page-content {
    margin-bottom: 5vw;
  }

  #s7 .subsection-security-2 .bottom-flex-container .bottom-page-content:nth-last-child(2) {
    margin-bottom: 5vw;
  }

  #s7 .section-configuration .section-content {
    position: relative;
    display: flex;
    top: 0;
    margin-top: 8.571429vw;
    padding-bottom: 5.714286vw;
  }

  #s7 .section-configuration .note {
    position: relative;
    bottom: 0;
    right: 0;
    font-size: 1.714286vw;
    margin: 0 5.714286vw 7.857143vw auto;
    order: 1;
    opacity: 0.7;
  }

  #s7 .section-configuration .head-title {
    order: 2;
  }

  #s7 .section-configuration .headline {
    font-size: 4.571429vw;
  }

  #s7 .section-configuration .subhead {
    font-size: 2.285714vw;
    margin-top: 2.285714vw;
    text-align: center;
  }

  #s7 .section-configuration .stats {
    order: 3;
    margin: 5.714286vw auto;
  }

  #s7 .section-configuration .button-cta {
    order: 4;
    width: 18.857143vw;
    height: 5.714286vw;
  }

  #s7 .section-configuration .button-cta p {
    font-size: 1.857143vw;
  }

  #s7 .section-configuration .stat-caption {
    font-size: 2.285714vw;
    padding: 0 .714286vw;
    height: 4.142857vw;
  }

  #s7 .section-configuration .stat-value {
    margin-top: 1.428571vw;
    font-size: 4.571429vw;
  }

  #s7 .section-configuration .stat-value span {
    font-size: 2vw;
  }

  #s7 .section-configuration .separator {
    height: 10.671429vw;
    margin: 0 4.571429vw;
  }


  #s7 .section-footnote .footnote-list {
    font-size: 1.714286vw;
    width: 75.428571vw;
  }

  #s7 .stat-caption {
    margin-top: 0;
  }


  #s7 .section-modal .modal-close-container {
    width: 4.857143vw;
    top: 2.857143vw;
    right: 2.857143vw;
  }

  #s7 .section-modal .modal-wrapper {
    width: 88.571429vw;
    /* margin-top: 8.571429vw; */
  }

  #s7 .section-modal .modal-content {
    padding-bottom: 12.857143vw;
    border-radius: 2.285714vw;
  }

  #s7 .section-modal .modal-wrapper .section-content {
    width: 81.428571vw;
  }

  #s7 .section-modal .modal-content .headline {
    font-size: 2.285714vw;
  }

  #s7 .section-modal .modal-content .subsection {
    margin-top: 3.428571vw;
  }

  #s7 .section-modal .modal-content .subsection .flex-content:nth-child(1),
  #s7 .section-modal .modal-content .subsection .flex-content:nth-child(2) {
    margin-bottom: 8.571429vw;
  }

  #s7 .section-modal .modal-content .subsection .flex-content:nth-child(odd) {
    width: 40.357143vw;
  }

  #s7 .section-modal .modal-content .subsection .flex-content:nth-child(even) {
    width: 35.714286vw;
  }

  #s7 .section-modal .modal-content .subsection .flex-content:nth-child(3) {
    margin-top: -11.785714vw;
  }

  #s7 .section-modal .modal-content .subsection .flex-content p {
    font-size: 2vw;
    margin-top: 2.857143vw;
  }

  #s7 .section-modal .modal-content .modal-des {
    font-size: 1.714286vw;
    bottom: 8.571429vw;
    left: 3.571429vw;
  }

  #s7 .pad-w800{
    width: 57.142857vw;
  }

  #s7 .swiper-content{
      margin-top: 5.714286vw;
  }

  #s7 .tablist{
    padding: 0;
  }

  #s7 .tabnav-scrollbar{
    padding: 0 ;
  }

  #s7 .tablist-wrapper{
    width: fit-content;
    overflow: hidden;
  }

  #s7 .tabnav+.tabnav{
    margin-left: 4.571429vw;
  }

  #s7 .tabnav{
     font-size: 2.857143vw;
  }

  #s7 .swiper-content::before{
    /* width: 5.714286vw;
    height: 7.142857vw; */
    display: none;
  }

  #s7 .swiper-content::after{
    display: none;
  }

  #s7 .tabnav{
    padding-bottom: 1.714286vw;
  }

  #s7 .tabnav-scrollbar{
    height: .214286vw;
  }

  #s7 .subsection-security-3 .section-new-content{
    width: 75.428571vw;
  }

  #s7 .subsection-security-3 .tablist-wrapper{
    overflow: hidden;
    width: fit-content;
  }

  #s7 .tablist::after{
    right: 0;
    width: 100%;
  }

  #s7 .section-modal .modal-container{
    padding-top: 5.714286vw;
    padding-bottom: 5.714286vw;
  }

   #s7 .subsection-design-8 .color-label:first-child{
             text-align: center;
   }

  #s7 .subsection-design-8 .color-label:not(:first-child) {
    top: 50%;
    transform: translateY(-50%);
  }

  #s7 .subsection-security-3 .modal-player-cta {
    width: 4.571429vw;
    right: 1.714286vw;
    bottom: 1.714286vw;
  }

  /* #s7 .subsection-drive-1.section-first-container .content .page{
     margin-top: 34.285714vw;
  } */

  #s7 .subsection-performance-3 .bottom-flex-container .bottom-page-content:nth-last-child(2){
    margin-bottom: 5vw;
  }

 #s7 .subsection-harmonyos-1 .content{
    top: 50%;
    transform: translate(-50%, -50%);
 }

 #s7 .tabnav{
  font-size: 2.285714vw;
 }
}

@media (max-width:800px) and (min-wdith:650px) and (min-height:700px){
  #s7 .section-hero .hero-content{
    top: 12.458333vw;
  }
}
