html.has-modal-l body {
  overflow: hidden;
  background-color: #000;
}
html.has-modal-l body, html.fancybox-margin body {
  padding-inline-end: var(--modal-scrollbar-buffer, 0);
}

#candy {
  font-size: 1.145833vw;
  font-weight: 500;
  line-height: 1.6;
  color: #6D6F72;
  color-scheme: light;
}
@media (max-aspect-ratio: 11/10) {
  #candy {
    font-size: 4.444444vw;
  }
}
#candy.no-inline-video .play-pause-button {
  display: none;
}
#candy .headline-color {
  color: #D2EF09;
}
@supports (-webkit-background-clip: text) or (background-clip: text) {
  #candy .gradient-text {
    display: inline-block;
    -webkit-text-fill-color: transparent;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
  }
}
#candy .normal-navigation-container {
  width: 6.25vw;
  display: flex;
  justify-content: space-between;
}
#candy .normal-navigation-container .arrownav-item {
  width: 2.5vw;
  cursor: pointer;
  outline: none;
  border-radius: 50%;
  overflow: hidden;
  background: #F2F3F5;
  position: relative;
  transition: opacity 300ms ease-out;
}
#candy .normal-navigation-container .arrownav-item img {
  position: relative;
  z-index: 3;
}
#candy .normal-navigation-container .arrownav-item::after {
  content: "";
  position: absolute;
  width: 70%;
  height: 70%;
  z-index: 2;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  overflow: hidden;
  background-image: radial-gradient(circle, #D2EF09, #D2EF09 50%, #F2F3F5 90%, #F2F3F5 100%);
  filter: blur(0.416667vw);
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 300ms ease-out;
  will-change: transform;
}
@media (hover: hover) and (pointer: fine) {
  #candy .normal-navigation-container .arrownav-item:hover::after {
    opacity: 1;
  }
}
#candy .normal-navigation-container .arrownav-disabled {
  cursor: default;
  opacity: 0.3;
}
#candy .normal-navigation-container .arrownav-disabled::after {
  opacity: 0 !important;
}
@media (max-aspect-ratio: 11/10) {
  #candy .normal-navigation-container {
    width: 27.777778vw;
  }
  #candy .normal-navigation-container .arrownav-item {
    width: 11.111111vw;
  }
}
#candy .fade-up {
  transition: opacity 700ms cubic-bezier(0.46, 0.03, 0.52, 0.96), transform 900ms cubic-bezier(0.46, 0.03, 0.52, 0.96);
  transform: translateY(1.5625vw);
  opacity: 0;
}
@media (max-aspect-ratio: 11/10) {
  #candy .fade-up,
  #candy .xs-fade-up {
    transition: opacity 700ms cubic-bezier(0.46, 0.03, 0.52, 0.96), transform 900ms cubic-bezier(0.46, 0.03, 0.52, 0.96);
    transform: translateY(4.166667vw);
    opacity: 0;
  }
}
#candy .fade-up.actived,
#candy .xs-fade-up.actived {
  transform: translateY(0);
  opacity: 1;
}

#candy *, #candy *::before, #candy *::after {
  box-sizing: border-box;
}
#candy section {
  position: relative;
}
#candy img, #candy picture, #candy video, #candy canvas, #candy svg {
  display: block;
  width: 100%;
}
#candy svg {
  overflow: visible;
}
#candy button {
  background-color: transparent;
  border: 0;
}
#candy .sticky-content {
  position: sticky;
  top: 0;
}
#candy .object-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
}
#candy .object-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#candy .backdrop-filter {
  background-color: rgba(0, 0, 0, 0.8);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);
}
#candy .blur-up {
  transition: filter 400ms;
  filter: blur(20px);
}
#candy .blur-up.lazyloaded {
  filter: blur(0);
}
#candy br.md, #candy br.xs {
  display: none;
}
#candy br.lg {
  display: block;
}
@media (max-aspect-ratio: 11/10) {
  #candy br.lg, #candy br.md {
    display: none;
  }
  #candy br.xs {
    display: block;
  }
}
#candy .absolute {
  position: absolute;
}
#candy .relative {
  position: relative;
}
#candy .sticky {
  position: sticky;
  top: 0;
}
#candy .z-1 {
  z-index: 1;
}
#candy .z-2 {
  z-index: 2;
}
#candy .z-3 {
  z-index: 3;
}
#candy .overflow-hidden {
  overflow: hidden;
}
#candy .overflow-visible {
  overflow: visible;
}
@media (max-aspect-ratio: 11/10) {
  #candy .xs\:overflow-hidden {
    overflow: hidden;
  }
  #candy .xs\:overflow-visible {
    overflow: visible;
  }
}
#candy .block {
  display: block;
}
#candy .inline-block {
  display: inline-block;
}
#candy .inline {
  display: inline;
}
#candy .flex {
  display: flex;
}
#candy .inline-flex {
  display: inline-flex;
}
#candy .hidden {
  display: none;
}
@media (max-aspect-ratio: 11/10) {
  #candy .xs\:block {
    display: block;
  }
  #candy .xs\:inline-block {
    display: inline-block;
  }
  #candy .xs\:inline {
    display: inline;
  }
  #candy .xs\:flex {
    display: flex;
  }
  #candy .xs\:inline-flex {
    display: inline-flex;
  }
  #candy .xs\:hidden {
    display: none;
  }
}
#candy .row {
  display: flex;
  flex-flow: row wrap;
  width: 100%;
}
#candy .flex-row {
  flex-direction: row;
}
#candy .flex-row-reverse {
  flex-direction: row-reverse;
}
#candy .flex-col {
  flex-direction: column;
}
#candy .flex-col-reverse {
  flex-direction: column-reverse;
}
#candy .flex-wrap {
  flex-wrap: wrap;
}
#candy .flex-nowrap {
  flex-wrap: nowrap;
}
#candy .justify-start {
  justify-content: flex-start;
}
#candy .justify-end {
  justify-content: flex-end;
}
#candy .justify-center {
  justify-content: center;
}
#candy .justify-between {
  justify-content: space-between;
}
#candy .items-start {
  align-items: flex-start;
}
#candy .items-end {
  align-items: flex-end;
}
#candy .items-center {
  align-items: center;
}
#candy .shrink-0 {
  flex-shrink: 0;
}
#candy .order-1 {
  order: 1;
}
#candy .order-2 {
  order: 2;
}
#candy .order-3 {
  order: 3;
}
#candy .order-4 {
  order: 4;
}
#candy .order-5 {
  order: 5;
}
#candy .order-6 {
  order: 6;
}
@media (max-aspect-ratio: 11/10) {
  #candy .xs\:flex-row {
    flex-direction: row;
  }
  #candy .xs\:flex-row-reverse {
    flex-direction: row-reverse;
  }
  #candy .xs\:flex-col {
    flex-direction: column;
  }
  #candy .xs\:flex-col-reverse {
    flex-direction: column-reverse;
  }
  #candy .xs\:justify-start {
    justify-content: flex-start;
  }
  #candy .xs\:justify-end {
    justify-content: flex-end;
  }
  #candy .xs\:justify-center {
    justify-content: center;
  }
  #candy .xs\:justify-between {
    justify-content: space-between;
  }
  #candy .xs\:items-start {
    align-items: flex-start;
  }
  #candy .xs\:items-end {
    align-items: flex-end;
  }
  #candy .xs\:items-center {
    align-items: center;
  }
  #candy .xs\:order-1 {
    order: 1;
  }
  #candy .xs\:order-2 {
    order: 2;
  }
  #candy .xs\:order-3 {
    order: 3;
  }
  #candy .xs\:order-4 {
    order: 4;
  }
  #candy .xs\:order-5 {
    order: 5;
  }
  #candy .xs\:order-6 {
    order: 6;
  }
}
#candy .rounded, #candy .lg\:rounded {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 0.833333vw;
}
#candy .rounded-left {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-top-left-radius: 0.833333vw;
  border-bottom-left-radius: 0.833333vw;
}
#candy .rounded-right {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-top-right-radius: 0.833333vw;
  border-bottom-right-radius: 0.833333vw;
}
@media (max-aspect-ratio: 11/10) {
  #candy .md\:rounded {
    border-radius: 0;
  }
  #candy .rounded, #candy .xs\:rounded {
    border-radius: 2.222222vw;
  }
  #candy .rounded-left, #candy .xs\:rounded-left {
    border-top-left-radius: 2.222222vw;
    border-bottom-left-radius: 2.222222vw;
  }
  #candy .rounded-right, #candy .xs\:rounded-right {
    border-top-right-radius: 2.222222vw;
    border-bottom-right-radius: 2.222222vw;
  }
}
#candy .effect-slide .swiper-wrapper, #candy .effect-slide [data-swiper-parallax-x], #candy .effect-slide [data-swiper-parallax-y], #candy .effect-slide [data-swiper-parallax-opacity] {
  transition-timing-function: cubic-bezier(0.65, 0.05, 0.36, 1);
}
#candy .swiper-fade .swiper-slide {
  transition-timing-function: cubic-bezier(0.65, 0.05, 0.36, 1);
}
#candy .swiper-touch-move .swiper-wrapper, #candy .swiper-touch-move [data-swiper-parallax-x], #candy .swiper-touch-move [data-swiper-parallax-y], #candy .swiper-touch-move [data-swiper-parallax-opacity] {
  transition-timing-function: ease;
}
#candy .swiper-slide-to-clicked-slide .swiper-slide {
  cursor: pointer;
}
#candy .swiper-slide-to-clicked-slide .swiper-slide-active, #candy .swiper-slide-to-clicked-slide .swiper-slide-active ~ .swiper-slide-visible {
  cursor: auto;
}
#candy .stack-list {
  display: flex;
  text-align: center;
}
#candy .stack-item {
  position: relative;
  width: 100%;
  transition: opacity 360ms cubic-bezier(0.22, 0.61, 0.36, 1);
  opacity: 0;
}
#candy .stack-item:nth-child(n+2) {
  margin-left: -100%;
}
#candy .stack-item.current {
  z-index: 1;
  transition-delay: 240ms;
  opacity: 1;
}
@media (max-aspect-ratio: 11/10) {
  #candy .stack-item {
    transition-duration: 240ms;
  }
  #candy .stack-item.current {
    transition-delay: 160ms;
  }
}
#candy .effect-slide .stack-item {
  transition-duration: 480ms;
}
#candy .effect-slide .stack-item.current {
  transition-delay: 320ms;
}
@media (max-aspect-ratio: 11/10) {
  #candy .effect-slide .stack-item {
    transition-duration: 360ms;
  }
  #candy .effect-slide .stack-item.current {
    transition-delay: 240ms;
  }
}
#candy .fadeup, #candy .lg-fadeup {
  transition: opacity 500ms ease-in, transform 500ms cubic-bezier(0.26, 0.67, 0.48, 0.91);
  transform: translateY(4.166667vw);
  opacity: 0;
}
@media (max-aspect-ratio: 11/10) {
  #candy .fadeup, #candy .xs-fadeup {
    transform: translateY(11.111111vw);
  }
  #candy .lg-fadeup {
    transition: none;
    transform: none;
    opacity: 1;
  }
  #candy .xs-fadeup {
    transition: opacity 500ms ease-in, transform 500ms cubic-bezier(0.26, 0.67, 0.48, 0.91);
    opacity: 0;
  }
}
#candy .fadeup.animated, #candy .lg-fadeup.animated, #candy .xs-fadeup.animated {
  transform: translateY(0);
  opacity: 1;
}
#candy .w-1560 {
  width: 81.25vw;
}
#candy .w-1296 {
  width: 67.5vw;
}
#candy .w-1280 {
  width: 66.666667vw;
}
#candy .w-1080 {
  width: 56.25vw;
}
#candy .w-1068 {
  width: 55.625vw;
}
@media (max-aspect-ratio: 11/10) {
  #candy .xs\:w-full {
    width: 100%;
  }
  #candy .xs\:w-688 {
    width: 95.555556vw;
  }
  #candy .xs\:w-656 {
    width: 91.111111vw;
  }
  #candy .xs\:w-640 {
    width: 88.888889vw;
  }
  #candy .xs\:w-624 {
    width: 86.666667vw;
  }
  #candy .xs\:w-600 {
    width: 83.333333vw;
  }
  #candy .xs\:w-592 {
    width: 82.222222vw;
  }
  #candy .xs\:w-560 {
    width: 77.777778vw;
  }
}
#candy .mt-1\.25 {
  margin-top: 1.25em;
}
#candy .mt-1\.6 {
  margin-top: 1.6em;
}
#candy .mx-auto {
  margin-right: auto;
  margin-left: auto;
}
#candy .mt-8, #candy .lg\:mt-8 {
  margin-top: 0.416667vw;
}
#candy .mt-16, #candy .lg\:mt-16 {
  margin-top: 0.833333vw;
}
#candy .mt-24, #candy .lg\:mt-24 {
  margin-top: 1.25vw;
}
#candy .mt-32, #candy .lg\:mt-32 {
  margin-top: 1.666667vw;
}
#candy .mt-36, #candy .lg\:mt-36 {
  margin-top: 1.875vw;
}
#candy .mt-40, #candy .lg\:mt-40 {
  margin-top: 2.083333vw;
}
#candy .mt-48, #candy .lg\:mt-48 {
  margin-top: 2.5vw;
}
#candy .mt-56, #candy .lg\:mt-56 {
  margin-top: 2.916667vw;
}
#candy .mt-64, #candy .lg\:mt-64 {
  margin-top: 3.333333vw;
}
#candy .mt-72, #candy .lg\:mt-72 {
  margin-top: 3.75vw;
}
#candy .mt-80, #candy .lg\:mt-80 {
  margin-top: 4.166667vw;
}
#candy .mt-96, #candy .lg\:mt-96 {
  margin-top: 5vw;
}
#candy .mt-104, #candy .lg\:mt-104 {
  margin-top: 5.416667vw;
}
#candy .mt-112, #candy .lg\:mt-112 {
  margin-top: 5.833333vw;
}
#candy .mt-120, #candy .lg\:mt-120 {
  margin-top: 6.25vw;
}
#candy .mt-144, #candy .lg\:mt-144 {
  margin-top: 7.5vw;
}
#candy .mt-160, #candy .lg\:mt-160 {
  margin-top: 8.333333vw;
}
#candy .mt-200, #candy .lg\:mt-200 {
  margin-top: 10.416667vw;
}
@media (max-aspect-ratio: 11/10) {
  #candy .xs\:mx-auto {
    margin-right: auto;
    margin-left: auto;
  }
  #candy .mt-8, #candy .md\:mt-8, #candy .xs\:mt-8 {
    margin-top: 1.111111vw;
  }
  #candy .mt-16, #candy .md\:mt-16, #candy .xs\:mt-16 {
    margin-top: 2.222222vw;
  }
  #candy .mt-20, #candy .md\:mt-20, #candy .xs\:mt-20 {
    margin-top: 2.777778vw;
  }
  #candy .mt-24, #candy .md\:mt-24, #candy .xs\:mt-24 {
    margin-top: 3.333333vw;
  }
  #candy .mt-32, #candy .md\:mt-32, #candy .xs\:mt-32 {
    margin-top: 4.444444vw;
  }
  #candy .mt-40, #candy .md\:mt-40, #candy .xs\:mt-40 {
    margin-top: 5.555556vw;
  }
  #candy .mt-48, #candy .md\:mt-48, #candy .xs\:mt-48 {
    margin-top: 6.666667vw;
  }
  #candy .mt-56, #candy .md\:mt-56, #candy .xs\:mt-56 {
    margin-top: 7.777778vw;
  }
  #candy .mt-64, #candy .md\:mt-64, #candy .xs\:mt-64 {
    margin-top: 8.888889vw;
  }
  #candy .mt-72, #candy .md\:mt-72, #candy .xs\:mt-72 {
    margin-top: 10vw;
  }
  #candy .mt-80, #candy .md\:mt-80, #candy .xs\:mt-80 {
    margin-top: 11.111111vw;
  }
  #candy .mt-96, #candy .md\:mt-96, #candy .xs\:mt-96 {
    margin-top: 13.333333vw;
  }
  #candy .mt-104, #candy .md\:mt-104, #candy .xs\:mt-104 {
    margin-top: 14.444444vw;
  }
  #candy .mt-112, #candy .md\:mt-112, #candy .xs\:mt-112 {
    margin-top: 15.555556vw;
  }
  #candy .mt-120, #candy .md\:mt-120, #candy .xs\:mt-120 {
    margin-top: 16.666667vw;
  }
  #candy .mt-144, #candy .md\:mt-144, #candy .xs\:mt-144 {
    margin-top: 20vw;
  }
  #candy .mt-160, #candy .md\:mt-160, #candy .xs\:mt-160 {
    margin-top: 22.222222vw;
  }
  #candy .mt-200, #candy .md\:mt-200, #candy .xs\:mt-200 {
    margin-top: 27.777778vw;
  }
  #candy .xs\:mt-0 {
    margin-top: 0;
  }
}
#candy .pt-200, #candy .lg\:pt-200 {
  padding-top: 10.416667vw;
}
#candy .pb-200, #candy .lg\:pb-200 {
  padding-bottom: 10.416667vw;
}
#candy .py-200, #candy .lg\:py-200 {
  padding-top: 10.416667vw;
  padding-bottom: 10.416667vw;
}
#candy .pt-160, #candy .lg\:pt-160 {
  padding-top: 8.333333vw;
}
#candy .pb-160, #candy .lg\:pb-160 {
  padding-bottom: 8.333333vw;
}
#candy .py-160, #candy .lg\:py-160 {
  padding-top: 8.333333vw;
  padding-bottom: 8.333333vw;
}
#candy .pt-120, #candy .lg\:pt-120 {
  padding-top: 6.25vw;
}
#candy .px-16 {
  padding-left: 0.833333vw;
  padding-right: 0.833333vw;
}
@media (max-aspect-ratio: 11/10) {
  #candy .pt-200, #candy .xs\:pt-200 {
    padding-top: 27.777778vw;
  }
  #candy .pb-200, #candy .xs\:pb-200 {
    padding-bottom: 27.777778vw;
  }
  #candy .py-200, #candy .xs\:py-200 {
    padding-top: 27.777778vw;
    padding-bottom: 27.777778vw;
  }
  #candy .pt-160, #candy .xs\:pt-160 {
    padding-top: 22.222222vw;
  }
  #candy .pb-160, #candy .xs\:pb-160 {
    padding-bottom: 22.222222vw;
  }
  #candy .py-160, #candy .xs\:py-160 {
    padding-top: 22.222222vw;
    padding-bottom: 22.222222vw;
  }
  #candy .pt-120, #candy .xs\:pt-120 {
    padding-top: 16.666667vw;
  }
  #candy .px-16, #candy .xs\:px-16 {
    padding-left: 2.222222vw;
    padding-right: 2.222222vw;
  }
}
#candy .h2, #candy .h3, #candy .h4 {
  font-weight: 500;
  line-height: 1.25;
  color: #000;
}
#candy .h2 {
  font-size: 3.333333vw;
}
#candy .h3 {
  font-size: 1.666667vw;
}
@media (max-aspect-ratio: 11/10) {
  #candy .h2 {
    font-size: 8.888889vw;
  }
  #candy .h3 {
    font-size: 4.444444vw;
  }
}
#candy strong {
  font-weight: 700;
  color: #000;
}
#candy .note {
  display: flex;
  font-size: max(8px, 0.625vw);
  color: rgba(109, 109, 115, 0.6);
}
@media (hover: hover) and (pointer: fine) {
  #candy .note {
    font-size: max(12px, 0.625vw);
  }
}
@media (max-aspect-ratio: 11/10) {
  #candy .note {
    font-size: 3.333333vw;
  }
}
#candy [data-footnote] {
  font-size: 0.6em;
  cursor: pointer;
}
#candy .nowrap {
  display: inline-block;
  white-space: nowrap;
}
#candy .text-gradient {
  display: inline-block;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
#candy .text-left {
  text-align: left;
}
#candy .text-center {
  text-align: center;
}
#candy .text-right {
  text-align: right;
}
@media (max-aspect-ratio: 11/10) {
  #candy .xs\:text-left {
    text-align: left;
  }
  #candy .xs\:text-center {
    text-align: center;
  }
  #candy .xs\:text-right {
    text-align: right;
  }
}
#candy .text-align {
  text-align: center;
}
@media (max-aspect-ratio: 11/10) {
  #candy .text-align {
    text-align: left;
  }
  html[dir=rtl] #candy .text-align {
    text-align: right;
  }
}
#candy .font-extralight {
  font-weight: 200;
}
#candy .font-light {
  font-weight: 300;
}
#candy .font-normal {
  font-weight: 400;
}
#candy .font-medium {
  font-weight: 500;
}
#candy .font-semibold {
  font-weight: 600;
}
#candy .font-bold {
  font-weight: 700;
}
#candy .font-extrabold {
  font-weight: 800;
}
#candy .leading-100 {
  line-height: 1;
}
#candy .leading-125 {
  line-height: 1.25;
}
#candy .leading-160 {
  line-height: 1.6;
}
#candy a, #candy a * {
  text-decoration: none;
}
#candy .permalink {
  line-height: inherit;
  color: inherit;
  transition: opacity 300ms ease-out;
}
#candy .permalink span {
  margin-top: -0.05em;
  font-size: 1.4em;
  line-height: 0;
}
#candy .permalink.global-style-hide {
  display: inline-flex;
  align-items: center;
}
@media (hover: hover) and (pointer: fine) {
  #candy .permalink.global-style-hide span {
    transition: transform 300ms ease-out;
  }
  #candy .permalink.global-style-hide:hover {
    opacity: 0.6;
  }
  #candy .permalink.global-style-hide:hover span {
    transform: translateX(4px);
  }
  [dir=rtl] #candy .permalink.global-style-hide:hover span {
    transform: translateX(-4px);
  }
}
#candy .effect-slide:not(.swiper-carousel) .play-pause-button {
  transition: opacity 100ms;
  opacity: 0;
}
#candy .effect-slide:not(.swiper-carousel) .swiper-slide-active .play-pause-button {
  transition-delay: 800ms;
  opacity: 1;
}
@media (max-aspect-ratio: 11/10) {
  #candy .effect-slide:not(.swiper-carousel) .swiper-slide-active .play-pause-button {
    transition-delay: 600ms;
  }
}
#candy .effect-fade .play-pause-button {
  transition: opacity 100ms;
  opacity: 0;
}
#candy .effect-fade .swiper-slide-active .play-pause-button {
  transition-delay: 600ms;
  opacity: 1;
}
@media (max-aspect-ratio: 11/10) {
  #candy .effect-fade .swiper-slide-active .play-pause-button {
    transition-delay: 400ms;
  }
}
#candy .video-container {
  position: relative;
}
#candy .video-container video {
  pointer-events: none;
}
#candy .video-container .play-pause-button {
  position: absolute;
  z-index: 2;
  right: 1.25vw;
  bottom: 1.25vw;
  overflow: hidden;
  width: 2.083333vw;
  height: 2.083333vw;
  cursor: pointer;
  transform: translateZ(0);
  border-radius: 50%;
  user-select: none;
}
#candy .video-container .play-pause-button::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  transition: opacity 300ms ease-out;
  background-image: radial-gradient(closest-side, rgba(0, 0, 0, 0.94), rgba(14, 14, 16, 0.75) 42%, rgba(70, 64, 88, 0.75) 89%, rgba(87, 75, 108, 0.75));
}
@media (hover: hover) and (pointer: fine) {
  #candy .video-container .play-pause-button:hover::before {
    opacity: 0.6;
  }
}
@media (max-aspect-ratio: 11/10) {
  #candy .video-container .play-pause-button {
    right: 4.444444vw;
    bottom: 4.444444vw;
    width: 8.888889vw;
    height: 8.888889vw;
  }
}
#candy .video-container .button-icon {
  position: absolute;
  top: 0;
  left: 0;
  display: none;
}
#candy .video-container.playing .icon-pause, #candy .video-container.paused .icon-play, #candy .video-container.ended .icon-replay {
  display: block;
}
#candy .video-container .replay-button {
  opacity: 0;
  transition: opacity 300ms;
  pointer-events: none;
  cursor: default;
}
#candy .video-container.ended .replay-button {
  cursor: pointer;
  pointer-events: all;
  opacity: 1;
}
#candy .modal-button-container .modal-button {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  height: 100%;
  padding-right: 0.833333vw;
  padding-left: 1.666667vw;
  cursor: pointer;
}
#candy .modal-button-container .button-copy {
  font-size: 0.9375vw;
  font-weight: 500;
  color: #e6d3ff;
}
#candy .modal-button-container .button-icon {
  width: 1.666667vw;
  margin-left: 0.833333vw;
}
@media (max-aspect-ratio: 11/10) {
  #candy .modal-button-container .modal-button {
    padding-right: 1.714286vw;
    padding-left: 3.428571vw;
  }
  #candy .modal-button-container .button-copy {
    font-size: 2vw;
  }
  #candy .modal-button-container .button-icon {
    width: 3.428571vw;
    margin-left: 1.714286vw;
  }
}
@media (max-aspect-ratio: 7/10) {
  #candy .modal-button-container .modal-button {
    padding-right: 3.333333vw;
    padding-left: 6.666667vw;
  }
  #candy .modal-button-container .button-copy {
    font-size: 3.888889vw;
  }
  #candy .modal-button-container .button-icon {
    width: 6.666667vw;
    margin-left: 3.333333vw;
  }
}
#candy .section-modal {
  position: fixed;
  z-index: -1;
  top: 0;
  left: 0;
  overflow: hidden;
  width: 100%;
  height: 100%;
  transition-timing-function: cubic-bezier(0.65, 0.05, 0.36, 1);
  transition-duration: 600ms;
  transition-property: -webkit-backdrop-filter, backdrop-filter, background-color;
  transform: translateZ(0);
  outline: 0;
  background-color: rgba(25, 25, 26, 0);
  -webkit-backdrop-filter: blur(0px) brightness(100%);
  backdrop-filter: blur(0px) brightness(100%);
}
#candy .section-modal.modal-scrollable {
  padding-inline-end: var(--modal-scrollbar-buffer);
}
#candy .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%);
}
#candy .section-modal.modal-open .modal-container {
  transition: transform 800ms cubic-bezier(0.65, 0.05, 0.36, 1), opacity 200ms ease-in;
  opacity: 1;
}
.has-modal-l #candy .section-modal.modal-open, .has-modal-l #candy .section-modal.modal-focus {
  z-index: 200;
}
.has-modal-l #candy .section-modal .modal-container {
  transform: translate3d(0, 0, 0);
}
#candy .section-modal.modal-focus {
  overflow: auto !important;
  padding-inline-end: 0;
}
#candy .section-modal.modal-focus .modal-container {
  transition: opacity 600ms;
}
#candy .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;
}
#candy .section-modal .modal-wrapper {
  position: relative;
  width: 81.25vw;
}
#candy .section-modal .modal-content {
  position: relative;
  z-index: 1;
  overflow: hidden;
  flex-shrink: 0;
  padding-bottom: 4.166667vw;
  border-radius: 0.833333vw;
  background-color: #000;
}
#candy .section-modal .modal-close-container {
  position: absolute;
  top: 1.666667vw;
  right: 1.666667vw;
  bottom: 0;
  width: 2.083333vw;
}
#candy .section-modal .modal-close-button {
  position: sticky;
  z-index: 10;
  top: 2.083333vw;
  width: 100%;
  cursor: pointer;
  user-select: none;
  transition: background-color 300ms ease-out;
  border-radius: 100%;
  background-color: rgba(128, 128, 128, 0.6);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
@media (hover: hover) and (pointer: fine) {
  #candy .section-modal .modal-close-button:hover {
    background-color: rgba(128, 128, 128, 0.5);
  }
}
#candy .section-modal .modal-close-icon {
  position: relative;
  z-index: 1;
  pointer-events: none;
}
@media (max-aspect-ratio: 11/10) {
  #candy .section-modal .modal-container {
    padding-top: 5.714286vw;
    padding-bottom: 5.714286vw;
  }
  #candy .section-modal .modal-wrapper {
    width: 90.857143vw;
  }
  #candy .section-modal .modal-content {
    padding-bottom: 8.571429vw;
    border-radius: 1.714286vw;
  }
  #candy .section-modal .modal-close-container {
    top: 2.857143vw;
    right: 2.857143vw;
    width: 5.714286vw;
  }
  #candy .section-modal .modal-close-button {
    top: 2.857143vw;
    opacity: 1;
  }
}
@media (max-aspect-ratio: 7/10) {
  #candy .section-modal .modal-container {
    padding-top: 8.888889vw;
    padding-bottom: 8.888889vw;
  }
  #candy .section-modal .modal-wrapper {
    width: 95.555556vw;
  }
  #candy .section-modal .modal-content {
    padding-bottom: 19.444444vw;
    border-radius: 2.222222vw;
  }
  #candy .section-modal .modal-close-container {
    top: 3.333333vw;
    right: 3.333333vw;
    width: 11.111111vw;
  }
  #candy .section-modal .modal-close-button {
    top: 3.333333vw;
  }
}
#candy .hero-sku {
  margin-top: 4.166667vw;
  font-size: 0;
  text-align: center;
}
#candy .hero-sku .pricing {
  font-size: 1.458333vw;
  line-height: 1.25;
  color: #000;
}
#candy .hero-sku .from {
  font-size: 0.677083vw;
}
#candy .hero-sku [data-footnote] {
  font-size: 1em;
  vertical-align: inherit;
}
#candy .hero-sku .buy-cta {
  display: inline-block;
  margin-top: 24px;
  padding: 8px 22px;
  font-size: 13px;
  font-weight: 500;
  line-height: 24px;
  transition: opacity 300ms ease-out;
  color: #fff;
  border-radius: 6px;
  background-color: #000;
}
@media (hover: hover) and (pointer: fine) {
  #candy .hero-sku .buy-cta:hover {
    opacity: 0.8;
  }
}
#candy .hero-sku.sku-light .pricing {
  color: #fff;
}
#candy .hero-sku.sku-light .buy-cta {
  color: #000;
  background-color: #fff;
}
@media (max-aspect-ratio: 11/10) {
  #candy .hero-sku {
    margin-top: 10vw;
  }
  #candy .hero-sku .pricing {
    font-size: 5.555556vw;
  }
  #candy .hero-sku .from {
    font-size: 3.611111vw;
  }
}
#candy .section-highlights .swiper-slide {
  overflow: hidden;
}
#candy .section-highlights .swiper-slide:not(.swiper-slide-active) {
  cursor: pointer;
}
#candy .section-highlights .video-container::after {
  content: "";
  display: block;
  background-size: 100%;
  position: absolute;
  z-index: 12;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  will-change: opacity;
  pointer-events: none;
  background: var(--mask-poster) center/100% no-repeat;
}
#candy .section-highlights .video-container.show::after {
  opacity: 1;
  transition: opacity 600ms 200ms linear;
  will-change: opacity;
}
#candy .section-highlights .caption-container {
  position: absolute;
  z-index: 12;
  top: 0;
  left: 0;
  margin: 2.291667vw 2.5vw;
  font-size: 1.666667vw;
}
#candy .section-highlights .caption {
  font-size: 1.666667vw;
}
#candy .section-highlights .caption-1 {
  color: #fff;
}
#candy .section-highlights .navigation-container {
  display: flex;
  justify-content: center;
}
#candy .section-highlights .navigation-wrapper {
  display: flex;
  align-items: center;
  height: 3.333333vw;
  padding-right: 1.041667vw;
  padding-left: 1.041667vw;
  border-radius: 999px;
  background: #F2F3F5;
}
#candy .section-highlights .arrownav-item {
  flex-shrink: 0;
  width: 2.083333vw;
  cursor: pointer;
  transition: opacity 300ms ease-out;
  outline: 0;
  position: relative;
}
#candy .section-highlights .arrownav-item picture {
  z-index: 2;
  position: relative;
}
#candy .section-highlights .arrownav-item::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  background-image: radial-gradient(circle, #D2EF09, #D2EF09 50%, #F2F3F5 90%, #F2F3F5 100%);
  border-radius: 50%;
  overflow: hidden;
  filter: blur(0.416667vw);
  opacity: 0;
  transition: opacity 300ms ease-out;
  will-change: transform;
}
@media (hover: hover) and (pointer: fine) {
  #candy .section-highlights .arrownav-item:not(.arrownav-disabled):hover::after {
    opacity: 1;
  }
}
#candy .section-highlights .arrownav-disabled {
  cursor: default;
  opacity: 0.3;
}
#candy .section-highlights .dotnav-list {
  display: flex;
  margin-right: 0.677083vw;
  margin-left: 0.677083vw;
}
#candy .section-highlights .dotnav-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 0.520833vw;
  height: 0.520833vw;
  margin-right: 0.260417vw;
  margin-left: 0.260417vw;
  cursor: pointer;
  border-radius: 100%;
  outline: 0;
}
#candy .section-highlights .dotnav-item::before {
  position: absolute;
  box-sizing: content-box;
  width: 100%;
  height: 100%;
  padding: 0.260417vw;
  content: "";
  background-image: radial-gradient(circle, #D2EF09, #D2EF09 50%, #F2F3F5 90%, #F2F3F5 100%);
  filter: blur(0.104167vw);
  transition: opacity 300ms ease-out;
  opacity: 0;
  will-change: transform;
}
#candy .section-highlights .dotnav-item::after {
  position: absolute;
  box-sizing: content-box;
  width: 100%;
  height: 100%;
  content: "";
  background-color: #000000;
  z-index: 2;
  border-radius: 50%;
  overflow: hidden;
  opacity: 0.2;
  transition: opacity 300ms ease-out;
}
@media (hover: hover) and (pointer: fine) {
  #candy .section-highlights .dotnav-item:hover::after {
    opacity: 0.6;
  }
  #candy .section-highlights .dotnav-item:hover::before {
    opacity: 1;
  }
}
#candy .section-highlights .dotnav-item.current {
  cursor: default;
}
#candy .section-highlights .dotnav-item.current::after {
  opacity: 0.8;
}
@media (max-aspect-ratio: 11/10) {
  #candy .section-highlights .video-container.show::after {
    transition: opacity 400ms 200ms linear;
  }
  #candy .section-highlights .caption-container {
    position: relative;
    top: auto;
    left: auto;
    margin: 6.111111vw 2.222222vw 0;
    text-align: center;
  }
  #candy .section-highlights .caption {
    font-size: 5.555556vw;
  }
  #candy .section-highlights .caption-1 {
    color: #fff;
  }
  #candy .section-highlights .navigation-wrapper {
    height: 13.333333vw;
    padding-right: 1.666667vw;
    padding-left: 1.666667vw;
  }
  #candy .section-highlights .arrownav-item {
    width: 13.333333vw;
  }
  #candy .section-highlights .dotnav-list {
    margin-right: -0.555556vw;
    margin-left: -0.555556vw;
  }
  #candy .section-highlights .dotnav-item {
    width: 2.222222vw;
    height: 2.222222vw;
    margin-right: 1.666667vw;
    margin-left: 1.666667vw;
  }
  #candy .section-highlights .dotnav-item::before {
    padding: 1.666667vw;
  }
}
#candy .shine-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 4.166667vw;
}
#candy .shine-wrapper {
  position: relative;
  overflow: hidden;
  height: 100%;
  padding: 0.416667vw;
  border-radius: 999px;
  background-color: #181726;
}
#candy .shine-body {
  position: relative;
  display: flex;
  overflow: hidden;
  align-items: center;
  height: 100%;
  border-radius: 999px;
}
#candy .shine-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 6.25vw;
  height: 6.25vw;
  pointer-events: none;
  will-change: transform, opacity;
}
#candy .shine-item::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
}
#candy .shine-foreground {
  z-index: 10;
}
#candy .shine-foreground::after {
  background-image: radial-gradient(closest-side, #fff, rgba(224, 211, 253, 0.67) 14%, rgba(214, 193, 253, 0.38) 39%, rgba(199, 169, 240, 0));
  filter: blur(17px);
}
#candy .shine-border {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  width: 100%;
  height: 100%;
  padding: 2px;
  pointer-events: none;
  border-radius: 999px;
  background-color: #000;
}
#candy .shine-border::before, #candy .shine-border::after {
  display: block;
  overflow: hidden;
  content: "";
  border-radius: 999px;
}
#candy .shine-border::before {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: translateZ(0);
  -webkit-box-shadow: inset 0 0 2.604167vw #625477;
  box-shadow: inset 0 0 2.604167vw #625477;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
#candy .shine-border::after {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-color: #000;
}
#candy .shine-background {
  position: absolute;
  z-index: 3;
  top: 0.260417vw;
  right: 0.260417vw;
  bottom: 0.260417vw;
  left: 0.260417vw;
  opacity: 0.85;
  border-radius: 999px;
  background-image: linear-gradient(90deg, #1f1136, #31204d, #1f1136);
  filter: blur(9px);
}
#candy .shine-inset::after {
  background-image: radial-gradient(closest-side, #fff, rgba(235, 211, 255, 0.85) 20%, rgba(230, 211, 255, 0.25) 60%, transparent);
}
#candy .shine-cursor .shine-item {
  transition: opacity 300ms;
  transform: translate3d(calc(var(--shine-x, 0) - 50%), calc(var(--shine-y, 0) - 50%), 0);
  opacity: 0;
}
#candy .shine-cursor .shine-item::after {
  transition: transform 300ms;
  transform: scale(0);
}
#candy .shining .shine-item {
  opacity: 1;
}
#candy .shining .shine-item::after {
  transform: scale(1);
}
#candy .shine-content {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
}
@media (max-aspect-ratio: 11/10) {
  #candy .shine-container {
    height: 8vw;
  }
  #candy .shine-wrapper {
    padding: 0.571429vw;
  }
  #candy .shine-cursor .shine-item {
    left: auto;
    transform: none;
    opacity: 1;
  }
  #candy .shine-cursor .shine-item::after {
    transform: scale(1);
  }
  #candy .shine-cursor .shine-foreground {
    top: -1.571429vw;
    right: -5vw;
  }
  #candy .shine-cursor .shine-inset {
    top: -1.571429vw;
    right: -5vw;
  }
  #candy .shine-item {
    width: 10vw;
    height: 10vw;
  }
  #candy .shine-border::before {
    -webkit-box-shadow: inset 0 0 3.571429vw #8671a5;
    box-shadow: inset 0 0 3.571429vw #8671a5;
  }
  #candy .shine-background {
    top: 0.285714vw;
    right: 0.285714vw;
    bottom: 0.285714vw;
    left: 0.285714vw;
  }
}
@media (max-aspect-ratio: 7/10) {
  #candy .shine-container {
    height: 15.555556vw;
  }
  #candy .shine-wrapper {
    padding: 1.111111vw;
  }
  #candy .shine-cursor .shine-foreground {
    top: -3.055556vw;
    right: -9.722222vw;
  }
  #candy .shine-cursor .shine-inset {
    top: -3.055556vw;
    right: -9.722222vw;
  }
  #candy .shine-item {
    width: 19.444444vw;
    height: 19.444444vw;
  }
  #candy .shine-background {
    top: 0.555556vw;
    right: 0.555556vw;
    bottom: 0.555556vw;
    left: 0.555556vw;
  }
  #candy .shine-border::before {
    -webkit-box-shadow: inset 0 0 6.944444vw #8671a5;
    box-shadow: inset 0 0 6.944444vw #8671a5;
  }
}
#candy .shine-circle {
  border-radius: 100%;
  background-color: #282138;
}
#candy .shine-circle .shine-item {
  transition: opacity 300ms;
  opacity: 0;
}
@media (hover: hover) and (pointer: fine) {
  #candy .shine-circle:hover .shine-item {
    opacity: 1;
  }
}
#candy .shine-circle .shine-foreground {
  width: 125%;
  height: 125%;
}
#candy .shine-circle .shine-foreground::after {
  filter: blur(10px);
}
#candy .shine-circle .shine-border {
  padding: 1px;
  background-color: transparent;
}
#candy .shine-circle .shine-border::before {
  border: 1px solid #282138;
  -webkit-box-shadow: none;
  box-shadow: none;
}
#candy .shine-circle .shine-border::after {
  z-index: 4;
  background-color: #211a2e;
}
#candy .shine-circle .shine-inset {
  z-index: 3;
  width: 100%;
  height: 100%;
}
@media (max-aspect-ratio: 11/10) {
  #candy .shine-circle .shine-item {
    opacity: 1;
  }
}
#candy .arrownav-list {
  display: flex;
}
#candy .arrownav-list .shine-border {
  padding: 1px;
}
#candy .arrownav-list .arrownav-item {
  position: relative;
  width: 2.5vw;
  height: 2.5vw;
  cursor: pointer;
}
#candy .arrownav-list .arrownav-disabled {
  cursor: default;
}
#candy .arrownav-list .arrownav-disabled .shine-item {
  opacity: 0 !important;
}
#candy .arrownav-list .arrownav-disabled .icon-arrow {
  opacity: 0.3;
}
#candy .arrownav-list .arrownav-prev .shine-foreground {
  transform: translate(-50%, -10%);
}
#candy .arrownav-list .arrownav-prev .shine-inset::after {
  background-image: linear-gradient(90deg, rgb(237, 231, 244), rgba(190, 167, 214, 0.16) 23%, rgba(91, 71, 137, 0));
}
#candy .arrownav-list .arrownav-next {
  margin-left: 1.25vw;
}
#candy .arrownav-list .arrownav-next .shine-foreground {
  transform: translate(30%, -10%);
}
#candy .arrownav-list .arrownav-next .shine-inset::after {
  background-image: linear-gradient(-90deg, rgb(237, 231, 244), rgba(190, 167, 214, 0.16) 23%, rgba(91, 71, 137, 0));
}
#candy .arrownav-list .icon-arrow {
  transition: opacity 300ms;
}
@media (max-aspect-ratio: 11/10) {
  #candy .arrownav-list .arrownav-item {
    width: 5.714286vw;
    height: 5.714286vw;
  }
  #candy .arrownav-list .arrownav-next {
    margin-left: 2.857143vw;
  }
}
@media (max-aspect-ratio: 7/10) {
  #candy .arrownav-list .arrownav-item {
    width: 11.111111vw;
    height: 11.111111vw;
  }
  #candy .arrownav-list .arrownav-next {
    margin-left: 4.444444vw;
  }
}
#candy .player-cta {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  transition: opacity 0.3s ease-out;
}
#candy .player-cta .icon-copy {
  font-size: 1.041667vw;
  line-height: 1.25;
  color: #9583ac;
}
#candy .player-cta .shine-circle {
  width: 1.666667vw;
  margin-left: 0.416667vw;
}
#candy .player-cta .shine-foreground {
  transform: translate(-10%, 40%);
}
#candy .player-cta .shine-inset::after {
  background-image: linear-gradient(0deg, rgb(237, 231, 244), rgba(190, 167, 214, 0.16) 23%, rgba(91, 71, 137, 0));
}
@media (hover: hover) and (pointer: fine) {
  #candy .player-cta:hover .shine-item {
    opacity: 1;
  }
  #candy .player-cta:hover .button-radial-gradient::before {
    opacity: 0.6;
  }
}
@media (max-aspect-ratio: 11/10) {
  #candy .player-cta .shine-item {
    opacity: 1;
  }
  #candy .player-cta .shine-border::before, #candy .player-cta .shine-border::after {
    -webkit-box-shadow: none;
    box-shadow: none;
  }
  #candy .player-cta .icon-copy {
    font-size: 2vw;
  }
  #candy .player-cta .shine-circle {
    width: 3.428571vw;
    margin-left: 1.142857vw;
  }
}
@media (max-aspect-ratio: 7/10) {
  #candy .player-cta .icon-copy {
    font-size: 3.888889vw;
  }
  #candy .player-cta .shine-circle {
    width: 6.666667vw;
    margin-left: 2.222222vw;
  }
}
#candy .section-header {
  position: relative;
  z-index: 10;
}
#candy .glow-headline {
  position: relative;
  z-index: 1;
  font-size: 5vw;
  font-weight: 700;
  text-align: center;
}
#candy .glow-headline span {
  background-color: transparent;
}
#candy .glow-headline .glow-container {
  position: relative;
  display: inline-flex;
  overflow: visible;
  justify-content: center;
}
#candy .glow-headline .glow-gradient::before {
  z-index: 5;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(180deg, #564172, #ad97c9);
  -webkit-background-clip: text;
  background-clip: text;
}
#candy .glow-headline .glow-blur {
  position: absolute;
  display: inline-flex;
  overflow: visible;
  justify-content: center;
  width: 100%;
}
#candy .glow-headline .glow-blur::before, #candy .glow-headline .glow-blur::after {
  position: absolute;
  top: 0;
  display: inline-block;
  content: attr(data-text);
  transform: translateZ(0);
  opacity: 0;
}
#candy .glow-headline .glow-blur-1::before {
  z-index: 1;
  color: #b06cff;
  filter: blur(18px);
  -webkit-filter: blur(18px);
}
#candy .glow-headline .glow-blur-1::after {
  z-index: 2;
  color: #c16cff;
  filter: blur(9px);
  -webkit-filter: blur(9px);
}
#candy .glow-headline .glow-blur-2::before {
  z-index: 3;
  color: #d0a2ff;
  filter: blur(5px);
  -webkit-filter: blur(5px);
}
#candy .glow-headline .glow-blur-2::after {
  display: none;
}
#candy .glow-headline .glow-white {
  position: relative;
  z-index: 4;
  opacity: 0.8;
  color: #fff;
}
#candy .glow-headline .glow-purple {
  background-image: linear-gradient(180deg, #564172, #ad97c9 25%, #9583ac 50%);
  background-position-y: 100%;
  background-size: 100% 300%;
}
#candy .glow-headline.animated .glow-blur::before, #candy .glow-headline.animated .glow-blur::after, #candy .glow-headline.animated .glow-white {
  transition: opacity 1.2s;
  opacity: 1;
}
#candy .glow-headline.animated .glow-purple {
  transition: opacity 1.2s, background-position-y 0.6s;
  opacity: 1;
  background-position-y: 0;
}
@media (max-aspect-ratio: 11/10) {
  #candy .glow-headline {
    font-size: 6.857143vw;
  }
}
@media (max-aspect-ratio: 7/10) {
  #candy .glow-headline {
    font-size: 13.333333vw;
  }
}
#candy .button-radial-gradient {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border-radius: 50%;
}
#candy .button-radial-gradient::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  transition: opacity 300ms ease-out;
  background-image: radial-gradient(circle at center, rgba(0, 0, 0, 0.94), rgba(14, 14, 16, 0.75) 42%, rgba(70, 64, 88, 0.75) 89%, rgba(87, 75, 108, 0.75));
}
@media (hover: hover) and (pointer: fine) {
  #candy .button-radial-gradient:hover::before {
    opacity: 0.6;
  }
}
#candy .button-radial-gradient .button-icon, #candy .button-radial-gradient .icon-play {
  position: relative;
  z-index: 1;
}
#candy .modal-button-more {
  position: absolute;
  z-index: 1;
  right: 2.083333vw;
  bottom: 2.083333vw;
  display: flex;
  align-items: center;
  cursor: pointer;
}
#candy .modal-button-more .button-copy {
  font-size: 0.9375vw;
  color: #fff;
}
#candy .modal-button-more .button-radial-gradient {
  width: 2.083333vw;
  margin-left: 0.833333vw;
}
@media (hover: hover) and (pointer: fine) {
  #candy .modal-button-more:hover .button-radial-gradient::before {
    opacity: 0.6;
  }
}
#candy .tabnav-section .tabnav-container {
  position: relative;
}
#candy .tabnav-section .tabnav-item {
  flex-shrink: 0;
  font-size: 1.25vw;
  white-space: nowrap;
  outline: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
#candy .tabnav-section.tabnav-line-horizontal .tabnav-content, #candy .tabnav-section.tabnav-pill .tabnav-content {
  position: relative;
  width: 100%;
}
#candy .tabnav-section.tabnav-line-horizontal .tabnav-container, #candy .tabnav-section.tabnav-pill .tabnav-container {
  position: relative;
  display: flex;
  justify-content: center;
  white-space: nowrap;
}
#candy .tabnav-section.tabnav-line-horizontal .tabnav-item, #candy .tabnav-section.tabnav-pill .tabnav-item {
  cursor: pointer;
  user-select: none;
  transition-timing-function: ease-out;
  transition-duration: 240ms;
  transform: translateZ(0);
}
#candy .tabnav-section.tabnav-line-horizontal .tabnav-item.current, #candy .tabnav-section.tabnav-pill .tabnav-item.current {
  cursor: default;
  transition-timing-function: ease;
  transition-duration: 600ms;
}
#candy .tabnav-section.tabnav-line-horizontal .tabnav-list, #candy .tabnav-section.tabnav-pill .tabnav-list {
  position: relative;
  z-index: 1;
  display: flex;
}
#candy .tabnav-section.tabnav-line-horizontal .tabnav-item {
  padding-bottom: 0.833333vw;
  transition-property: opacity;
  opacity: 0.4;
  color: #fff;
  will-change: opacity;
}
#candy .tabnav-section.tabnav-line-horizontal .tabnav-item:nth-child(n+2) {
  margin-left: 2.916667vw;
}
@media (hover: hover) and (pointer: fine) {
  #candy .tabnav-section.tabnav-line-horizontal .tabnav-item:hover {
    opacity: 0.6;
  }
}
#candy .tabnav-section.tabnav-line-horizontal .tabnav-item.current {
  opacity: 1;
}
#candy .tabnav-section.tabnav-line-horizontal .tabnav-indicator {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0.208333vw;
  border-radius: 999px;
}
#candy .tabnav-section.tabnav-line-horizontal .tabnav-indicator::before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  content: "";
  background-color: #1d1d1d;
}
#candy .tabnav-section.tabnav-line-horizontal .tabnav-indicator::after {
  position: relative;
  display: block;
  overflow: hidden;
  width: var(--tabnav-width, 0);
  height: 100%;
  content: "";
  transition-timing-function: ease-out;
  transition-duration: 600ms;
  transition-duration: 360ms;
  transition-property: width, transform;
  transform: translateX(var(--tabnav-left, 0));
  border-radius: 999px;
  background-color: #774a95;
}
#candy .tabnav-section.tabnav-line-vertical .tabnav-list {
  position: relative;
  display: flex;
  flex-direction: column;
  padding-left: 2.083333vw;
}
#candy .tabnav-section.tabnav-line-vertical .tabnav-item {
  white-space: inherit;
}
#candy .tabnav-section.tabnav-line-vertical .tabnav-item:nth-child(n+2) {
  margin-top: 2.083333vw;
}
#candy .tabnav-section.tabnav-line-vertical .tabnav-title {
  cursor: pointer;
  user-select: none;
  transition-timing-function: ease-out;
  transition-duration: 240ms;
  transition-property: opacity;
  transform: translateZ(0);
  opacity: 0.4;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  will-change: opacity;
}
@media (hover: hover) and (pointer: fine) {
  #candy .tabnav-section.tabnav-line-vertical .tabnav-title:hover {
    opacity: 0.6;
  }
}
#candy .tabnav-section.tabnav-line-vertical .tabnav-caption {
  padding-top: 0.833333vw;
  font-size: 1.041667vw;
  transition: opacity 600ms;
  opacity: 0;
}
#candy .tabnav-section.tabnav-line-vertical .current .tabnav-title, #candy .tabnav-section.tabnav-line-vertical .current .tabnav-caption {
  opacity: 1;
}
#candy .tabnav-section.tabnav-line-vertical .current .tabnav-title {
  cursor: default;
  transition-timing-function: ease;
  transition-duration: 600ms;
}
#candy .tabnav-section.tabnav-line-vertical .collapsed .tabnav-collapse {
  overflow: hidden;
  height: 0;
}
#candy .tabnav-section.tabnav-line-vertical .animating .tabnav-collapse {
  overflow: hidden;
  height: 0;
  transition: height 600ms;
}
#candy .tabnav-section.tabnav-line-vertical .tabnav-indicator {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  width: 0.208333vw;
  height: 100%;
  border-radius: 999px;
}
#candy .tabnav-section.tabnav-line-vertical .tabnav-indicator::before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  content: "";
  background-color: #1d1d1d;
}
#candy .tabnav-section.tabnav-line-vertical .tabnav-indicator::after {
  position: relative;
  display: block;
  overflow: hidden;
  width: 100%;
  height: var(--tabnav-height, 0);
  content: "";
  transition-duration: 600ms;
  transition-property: height, transform;
  transform: translateY(var(--tabnav-top, 0));
  border-radius: 999px;
  background-color: #774a95;
}
#candy .tabnav-section.tabnav-pill .tabnav-list {
  padding-right: 0.208333vw;
  padding-left: 0.208333vw;
}
#candy .tabnav-section.tabnav-pill .tabnav-item {
  padding: 0 1.666667vw;
  font-size: 0.9375vw;
  transition-property: 600ms;
  color: rgba(255, 255, 255, 0.6);
}
@media (hover: hover) and (pointer: fine) {
  #candy .tabnav-section.tabnav-pill .tabnav-item:hover {
    color: rgba(255, 255, 255, 0.8);
  }
}
#candy .tabnav-section.tabnav-pill .tabnav-item.current {
  transition-delay: 200ms;
  transition-duration: 400ms;
  color: #000;
}
#candy .tabnav-section.tabnav-pill .tabnav-indicator {
  position: absolute;
  left: 0;
  overflow: hidden;
  width: calc(var(--tabnav-width, 0));
  height: 2.5vw;
  transition-duration: 600ms;
  transition-property: width, transform;
  transform: translateX(calc(var(--tabnav-left, 0)));
  border-radius: 999px;
  background-image: linear-gradient(160deg, #ece0fc, #c0a9e0);
}
#candy .tabnav-section.tabnav-pill .stack-list {
  text-align: center;
}
@media (max-aspect-ratio: 11/10) {
  #candy .tabnav-section .tabnav-content {
    overflow: hidden;
  }
  #candy .tabnav-section .tabnav-content:not(.force-center) .tabnav-wrapper {
    padding-right: 4.571429vw;
    padding-left: 4.571429vw;
  }
  #candy .tabnav-section .tabnav-container {
    display: flex;
    justify-content: center;
    white-space: nowrap;
  }
  #candy .tabnav-section .tabnav-container.tabnav-scrollable {
    overflow-x: auto;
    overflow-y: hidden;
    justify-content: flex-start;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  #candy .tabnav-section .tabnav-container.tabnav-scrollable::-webkit-scrollbar {
    display: none;
  }
  #candy .tabnav-section .tabnav-container.tabnav-scrollable .tabnav-wrapper {
    padding-right: 4.571429vw;
    padding-left: 4.571429vw;
  }
  #candy .tabnav-section .tabnav-item {
    font-size: 2.857143vw;
  }
  #candy .tabnav-section.tabnav-line-horizontal .tabnav-item, #candy .tabnav-section.tabnav-line-vertical .tabnav-item {
    padding-bottom: 1.714286vw;
  }
  #candy .tabnav-section.tabnav-line-horizontal .tabnav-item:nth-child(n+2), #candy .tabnav-section.tabnav-line-vertical .tabnav-item:nth-child(n+2) {
    margin-left: 5.714286vw;
  }
  #candy .tabnav-section.tabnav-line-horizontal .tabnav-indicator, #candy .tabnav-section.tabnav-line-vertical .tabnav-indicator {
    height: 0.142857vw;
  }
  #candy .tabnav-section.tabnav-line-horizontal .tabnav-indicator::after, #candy .tabnav-section.tabnav-line-vertical .tabnav-indicator::after {
    transition-duration: 400ms;
  }
  #candy .tabnav-section.tabnav-line-vertical .tabnav-container {
    margin-left: 0;
  }
  #candy .tabnav-section.tabnav-line-vertical .tabnav-list {
    flex-direction: row;
    padding-left: 0;
  }
  #candy .tabnav-section.tabnav-line-vertical .tabnav-item:nth-child(n+2) {
    margin-top: 0;
  }
  #candy .tabnav-section.tabnav-line-vertical .tabnav-title {
    font-size: inherit;
    cursor: pointer;
    transition-timing-function: ease-out;
    transition-duration: 240ms;
    transition-property: opacity;
    transform: translateZ(0);
    white-space: nowrap;
    opacity: 0.4;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    will-change: opacity;
  }
}
@media (max-aspect-ratio: 11/10) and (hover: hover) and (pointer: fine) {
  #candy .tabnav-section.tabnav-line-vertical .tabnav-title:hover {
    opacity: 0.6;
  }
}
@media (max-aspect-ratio: 11/10) {
  #candy .tabnav-section.tabnav-line-vertical .tabnav-collapse {
    display: none;
  }
  #candy .tabnav-section.tabnav-line-vertical .tabnav-caption-list {
    display: flex;
    text-align: center;
  }
  #candy .tabnav-section.tabnav-line-vertical .tabnav-caption {
    position: relative;
    width: 100%;
    padding-top: 0;
    font-size: inherit;
    transition: opacity 240ms;
    opacity: 0;
  }
  #candy .tabnav-section.tabnav-line-vertical .tabnav-caption:nth-child(n+2) {
    margin-left: -100%;
  }
  #candy .tabnav-section.tabnav-line-vertical .tabnav-caption.current {
    z-index: 1;
    transition-delay: 160ms;
    opacity: 1;
  }
  #candy .tabnav-section.tabnav-line-vertical .tabnav-indicator {
    position: relative;
    width: 100%;
  }
  #candy .tabnav-section.tabnav-line-vertical .tabnav-indicator::after {
    width: var(--tabnav-width, 0);
    height: 100%;
    content: "";
    transition-property: width, transform;
    transform: translateX(var(--tabnav-left, 0));
  }
  #candy .tabnav-section.tabnav-pill .tabnav-list {
    padding-right: 0.571429vw;
    padding-left: 0.571429vw;
  }
  #candy .tabnav-section.tabnav-pill .tabnav-item {
    padding: 0 2.857143vw;
    font-size: 2vw;
    transition-duration: 400ms;
  }
  #candy .tabnav-section.tabnav-pill .tabnav-item:nth-child(n+2) {
    margin-left: 0;
  }
  #candy .tabnav-section.tabnav-pill .tabnav-item.current {
    transition-delay: 100ms;
    transition-duration: 300ms;
  }
  #candy .tabnav-section.tabnav-pill .tabnav-indicator {
    width: calc(var(--tabnav-width, 0));
    height: 5.714286vw;
    transition-duration: 400ms;
    transform: translateX(calc(var(--tabnav-left, 0)));
  }
}
@media (max-aspect-ratio: 7/10) {
  #candy .tabnav-section .tabnav-wrapper:not(.force-center) {
    padding-right: 8.888889vw;
    padding-left: 8.888889vw;
  }
  #candy .tabnav-section .tabnav-item {
    font-size: 5.555556vw;
  }
  #candy .tabnav-section.tabnav-line-horizontal .tabnav-item, #candy .tabnav-section.tabnav-line-vertical .tabnav-item {
    padding-bottom: 3.333333vw;
  }
  #candy .tabnav-section.tabnav-line-horizontal .tabnav-item:nth-child(n+2), #candy .tabnav-section.tabnav-line-vertical .tabnav-item:nth-child(n+2) {
    margin-left: 8.888889vw;
  }
  #candy .tabnav-section.tabnav-line-horizontal .tabnav-indicator, #candy .tabnav-section.tabnav-line-vertical .tabnav-indicator {
    height: 0.277778vw;
  }
  #candy .tabnav-section.tabnav-pill .tabnav-list {
    padding-right: 1.111111vw;
    padding-left: 1.111111vw;
  }
  #candy .tabnav-section.tabnav-pill .tabnav-item {
    padding: 0 5.555556vw;
    font-size: 3.888889vw;
  }
  #candy .tabnav-section.tabnav-pill .tabnav-indicator {
    height: 11.111111vw;
  }
}
#candy .card-border {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 1px 1px 0;
  pointer-events: none;
  background-image: linear-gradient(180deg, #3b3343, rgba(29, 25, 33, 0.5), #000);
}
#candy .card-border-mask {
  width: 100%;
  height: 100%;
  background-image: linear-gradient(180deg, #211e2b, #0e0c15);
}
#candy .section-fold .sticky::after {
  position: absolute;
  z-index: 1;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  content: "";
  background-color: #000;
}
#candy .section-fold .fold-container {
  position: relative;
  z-index: 1;
  user-select: none;
}
#candy .section-fold .fold-wrapper {
  position: relative;
  transform: translate3d(0, 0, 0) rotateX(45deg);
  backface-visibility: hidden;
  perspective: 260.416667vw;
  transform-style: preserve-3d;
}
#candy .section-fold .fold-item {
  display: flex;
  width: 100%;
  background-color: #000;
  backface-visibility: hidden;
}
#candy .section-fold .fold-item::after {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  pointer-events: none;
}
#candy .section-fold .fold-left {
  transform: translate3d(0, 0, 0) rotateY(15deg);
  clip-path: inset(0 calc(50% - 1px) 0 0);
}
#candy .section-fold .fold-left::after {
  background-image: linear-gradient(90deg, rgba(30, 30, 30, 0.3), rgba(255, 255, 255, 0.15));
}
#candy .section-fold .fold-right {
  position: absolute;
  top: 0;
  right: 0;
  transform: translate3d(0, 0, 0) rotateY(-15deg);
  clip-path: inset(0 0 0 calc(50% - 1px));
}
#candy .section-fold .fold-right::after {
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.1));
}
#candy .section-fold.animated .fold-container {
  transition: background-color 0.8s 0.2s;
  background-color: #000;
  user-select: auto;
}
#candy .section-fold.animated .fold-wrapper {
  transition: transform 1s;
  transform: translate3d(0, 0, 0) rotateY(0deg);
}
#candy .section-fold.animated .fold-item::after {
  transition: opacity 1s;
  opacity: 0;
}
#candy .section-fold.animated .fold-left {
  transition: transform 1s, clip-path 0s 1s;
  transform: translate3d(0, 0, 0) rotateY(0deg);
  clip-path: inset(0 0 0 0);
}
#candy .section-fold.animated .fold-right {
  transition: visibility 0s 1s, transform 1s;
  transform: translate3d(0, 0, 0) rotateY(0deg);
  visibility: hidden;
}
#candy .section-hero {
  z-index: 1;
}
#candy .section-hero .hero-content {
  position: absolute;
  z-index: 10;
  top: 0;
  right: 1.875vw;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  width: 40.78125vw;
  height: 100%;
  font-weight: 400;
  color: #000;
}
#candy .section-hero .hero-content picture {
  width: 25.677083vw;
  margin: 0 auto 1.666667vw;
}
#candy .section-hero .hero-content .hero-intro {
  font-size: 0.885417vw;
  white-space: nowrap;
}
@media (max-aspect-ratio: 11/10) {
  #candy .section-hero .hero-content {
    position: relative;
    right: 0;
    height: fit-content;
    width: 90.555556vw;
    margin: 20vw auto 0;
  }
  #candy .section-hero .hero-content picture {
    width: 55.833333vw;
    margin: 0 auto 3.333333vw;
  }
  #candy .section-hero .hero-content .hero-intro {
    font-size: 2.5vw;
  }
}
#candy .section-highlights .center-content {
  position: absolute;
  z-index: 3;
  top: 9.375vw;
  left: 9.375vw;
}
#candy .section-highlights .center-content .slide-intro {
  font-size: 1.041667vw;
}
#candy .section-highlights .center-content .gradient-headline {
  font-size: 4.166667vw;
  background-image: linear-gradient(to bottom, #A5C32B 0%, #A5C32B 20.5%, #124400 79.5%, #124400 100%);
  font-weight: bold;
}
#candy .section-highlights .center-content .gradient-headline span {
  font-size: 1.666667vw;
  background-image: linear-gradient(to bottom, #A5C32B 0%, #A5C32B 20.5%, #124400 79.5%, #124400 100%);
  margin-left: 0.416667vw;
}
@media (max-aspect-ratio: 11/10) {
  #candy .section-highlights .caption-1 {
    color: #000;
  }
  #candy .section-highlights .center-content {
    top: 19.444444vw;
    left: 6.666667vw;
  }
  #candy .section-highlights .center-content .slide-intro {
    font-size: 3.333333vw;
  }
  #candy .section-highlights .center-content .gradient-headline {
    font-size: 11.111111vw;
  }
  #candy .section-highlights .center-content .gradient-headline span {
    font-size: 4.444444vw;
    margin-left: 1.111111vw;
  }
}
#candy .section-id {
  padding-top: 9.375vw;
}
@media (max-aspect-ratio: 11/10) {
  #candy .section-id {
    padding-top: 27.777778vw;
  }
}
#candy .section-display {
  overflow: hidden;
  background-image: linear-gradient(to bottom, #FFFFFF 0%, rgba(197, 255, 0, 0.2) 100%);
  padding-bottom: 10.416667vw;
  padding-top: 1.041667vw;
}
#candy .section-display .text-content {
  margin-bottom: -1.666667vw;
  position: relative;
  z-index: 5;
}
#candy .section-display .text-content .headline-shine {
  display: inline-block;
  position: relative;
  font-size: inherit;
  line-height: 1.25;
}
#candy .section-display .text-content .headline-shine span {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  background-image: radial-gradient(circle, #D2EF09, #D2EF09 40%, #F2F3F5 70%, #F2F3F5 100%);
  border-radius: 50%;
  overflow: hidden;
  filter: blur(0.78125vw);
  z-index: -1;
  opacity: 0;
  will-change: transform, opacity;
}
@media (max-aspect-ratio: 11/10) {
  #candy .section-display .text-content .headline-shine span {
    filter: blur(2.083333vw);
  }
}
#candy .section-display .intro {
  position: relative;
  z-index: 5;
  margin-top: -1.666667vw;
}
#candy .section-display .section-container {
  position: relative;
}
#candy .section-display .section-container .display-icon {
  position: absolute;
}
#candy .section-display .section-container .display-icon .light-icon {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 2;
  opacity: 0;
  top: 0;
  left: 0;
}
#candy .section-display .section-container .display-icon-1 {
  top: 9.947917vw;
  left: 56.302083vw;
  width: 19.84375vw;
  opacity: 0;
  transition: 0.1s all ease;
  will-change: opacity, transform;
}
#candy .section-display .section-container .display-icon-2 {
  top: 24.322917vw;
  left: 18.90625vw;
  width: 37.34375vw;
  opacity: 0;
  transition: 0.1s all ease;
  will-change: opacity, transform;
}
#candy .section-display .section-container .display-background {
  width: 100%;
  transform: scale(0.6817567);
  transform-origin: 50% 50%;
  opacity: 0;
  transition: 0.1s all ease;
  will-change: opacity, transform;
  position: relative;
  z-index: 3;
}
@media (max-aspect-ratio: 11/10) {
  #candy .section-display {
    padding-bottom: 27.777778vw;
  }
  #candy .section-display .text-content {
    margin-bottom: 6.666667vw;
  }
  #candy .section-display .intro {
    margin-top: 3.333333vw;
  }
  #candy .section-display .section-container .display-icon-1 {
    top: 8.333333vw;
    left: 56.527778vw;
    width: 28.472222vw;
  }
  #candy .section-display .section-container .display-icon-2 {
    top: 30.416667vw;
    left: 1.388889vw;
    width: 53.472222vw;
  }
  #candy .section-display .section-container .display-background {
    width: 133.333333vw;
    transform: scale(0.64384);
    position: relative;
    left: -16.666667vw;
  }
  #candy .section-display .intro {
    margin-top: 0;
  }
}
#candy .section-thin-and-color {
  position: relative;
  height: fit-content;
}
#candy .section-thin-and-color .section-watch-sticky {
  width: 100%;
  display: flex;
  justify-content: center;
  height: 36.458333vw;
  position: sticky;
  top: calc((100vh + 54px - 36.458333vw) / 2);
  left: 0;
  z-index: 3;
  pointer-events: none;
}
#candy .section-thin-and-color .section-watch-sticky .mid-watch {
  width: 28.854167vw;
  opacity: 0;
}
#candy .section-thin-and-color .section-watch-sticky .mid-watch img {
  transform: translateX(-0.520833vw);
}
@media (max-aspect-ratio: 11/10) {
  #candy .section-thin-and-color .section-watch-sticky {
    position: static;
    display: none;
  }
}
#candy .section-thin-and-color .section-thin {
  width: 100%;
  position: relative;
  height: 160vh;
  margin-top: -36.458333vw;
  background-image: linear-gradient(to top, #FFFFFF 0%, rgba(197, 255, 0, 0.2) 100%);
}
#candy .section-thin-and-color .section-thin .section-sticky {
  width: 100%;
  height: 36.458333vw;
  position: sticky;
  top: calc((100vh + 54px - 36.458333vw) / 2);
  left: 0;
  display: flex;
  justify-content: center;
}
#candy .section-thin-and-color .section-thin .section-sticky .section-container {
  width: 28.854167vw;
  transform: scale(0.7) rotate(45deg);
  transform-origin: 50% 50%;
  position: relative;
  will-change: transform;
}
#candy .section-thin-and-color .section-thin .section-sticky .section-container .container-bg {
  width: 28.854167vw;
  z-index: 1;
  transform: translateX(-0.520833vw);
}
#candy .section-thin-and-color .section-thin .section-sticky .section-container .front {
  position: absolute;
  width: 15vw;
  top: 0;
  left: 0;
  z-index: 3;
}
#candy .section-thin-and-color .section-thin .section-sticky .section-container .text-content {
  width: 19.791667vw;
  position: absolute;
  top: 11.614583vw;
  left: -8.291667vw;
  opacity: 0;
}
#candy .section-thin-and-color .section-thin .section-sticky .section-container .headline-change {
  display: inline-block;
  position: relative;
}
#candy .section-thin-and-color .section-thin .section-sticky .section-container .headline-change .headline-change-word {
  display: inline-block;
  position: relative;
  z-index: 2;
  will-change: transform;
  transform-style: preserve-3d;
  perspective: 30.25vw;
}
#candy .section-thin-and-color .section-thin .section-sticky .section-container .headline-change .headline-change-shadow {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 3.333333vw;
  -webkit-text-stroke: 1px #D2EF09;
  mask-image: linear-gradient(180deg, #fff 0%, #fff 100%);
  width: fit-content;
  position: absolute;
  color: transparent;
  z-index: 1;
  will-change: transform;
  transform-style: preserve-3d;
  perspective: 30.25vw;
}
#candy .section-thin-and-color .section-thin .section-sticky .section-container .container-text {
  width: 25.15625vw;
  position: absolute;
  top: 14.541667vw;
  left: 0;
  opacity: 0;
}
@media (max-aspect-ratio: 11/10) {
  #candy .section-thin-and-color .section-thin {
    margin-top: 0;
    height: fit-content;
  }
  #candy .section-thin-and-color .section-thin .section-sticky {
    position: relative;
    top: 0;
    height: fit-content;
  }
  #candy .section-thin-and-color .section-thin .section-sticky .section-container {
    width: 76.388889vw;
    transform: scale(1);
    display: flex;
    flex-wrap: wrap;
  }
  #candy .section-thin-and-color .section-thin .section-sticky .section-container .container-bg {
    width: 76.388889vw;
    margin: 0 auto;
    order: 3;
    opacity: 0;
    transform: translate(0, 4.166667vw);
  }
  #candy .section-thin-and-color .section-thin .section-sticky .section-container .container-bg.actived {
    opacity: 1;
    transform: translate(0, 0);
  }
  #candy .section-thin-and-color .section-thin .section-sticky .section-container .front {
    display: none;
  }
  #candy .section-thin-and-color .section-thin .section-sticky .section-container .text-content {
    width: 100%;
    position: static;
    opacity: 1;
    text-align: center;
    order: 1;
  }
  #candy .section-thin-and-color .section-thin .section-sticky .section-container .text-content .headline-change .headline-change-word {
    perspective: 50vw;
  }
  #candy .section-thin-and-color .section-thin .section-sticky .section-container .text-content .headline-change .headline-change-shadow {
    top: 0;
    left: 0;
    font-size: 8.888889vw;
    -webkit-text-stroke: 1px #D2EF09;
    perspective: 50vw;
  }
  #candy .section-thin-and-color .section-thin .section-sticky .section-container .container-text {
    width: 66.388889vw;
    position: static;
    margin: 8.888889vw auto 4.444444vw;
    order: 2;
    transform-origin: 0% 25%;
    opacity: 0;
    transform: translate(0, 4.166667vw);
  }
  #candy .section-thin-and-color .section-thin .section-sticky .section-container .container-text.actived {
    opacity: 1;
    transform: translate(0, 0);
  }
  #candy .section-thin-and-color .section-thin.xs-actived .headline .headline-change .headline-change-word {
    transform: translateY(-11%) rotateX(-5deg) rotateY(-30deg) scaleY(1.1);
    transition: 0.7s transform ease;
    will-change: transform;
  }
  #candy .section-thin-and-color .section-thin.xs-actived .headline .headline-change .headline-change-shadow {
    transform: translate3d(0.694444vw, -5.5%, -2vw) rotateX(-5deg) rotateY(-30deg) scaleY(1.1);
    transition: 0.7s transform ease;
    will-change: transform;
  }
  #candy .section-thin-and-color .section-thin.xs-actived .section-sticky .section-container .container-bg {
    opacity: 1;
    transform: translate(0, 0);
    transition: opacity 700ms cubic-bezier(0.46, 0.03, 0.52, 0.96), transform 900ms cubic-bezier(0.46, 0.03, 0.52, 0.96);
  }
}
#candy .section-thin-and-color .section-color {
  width: 100%;
  overflow: hidden;
  padding-top: calc((100vh - 36.197917vw) / 2);
  margin-top: calc(200px - (100vh - 36.197917vw) / 2);
}
@media (min-aspect-ratio: 11/10) {
  #candy .section-thin-and-color .section-color .color-xs-swiper .swiper-wrapper {
    justify-content: space-between;
  }
  #candy .section-thin-and-color .section-color .color-xs-swiper .swiper-slide {
    width: 33.125vw;
    height: 39.583333vw;
  }
  #candy .section-thin-and-color .section-color .color-xs-swiper .swiper-slide .slide-bg {
    border-radius: 0.833333vw;
    overflow: hidden;
    width: 100%;
    height: 100%;
    position: relative;
  }
  #candy .section-thin-and-color .section-color .color-xs-swiper .swiper-slide-1 .slide-bg {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #F8F8F8;
  }
  #candy .section-thin-and-color .section-color .color-xs-swiper .swiper-slide-1 .slide-bg picture {
    width: 13.854167vw;
  }
}
#candy .section-thin-and-color .section-color .color-bottom-container {
  display: flex;
  justify-content: space-between;
  transform: translateY(-2.5vw);
  opacity: 0;
  padding-right: 0.416667vw;
}
#candy .section-thin-and-color .section-color .color-bottom-container .page-conatiner {
  position: relative;
  margin-left: 0.833333vw;
}
#candy .section-thin-and-color .section-color .color-bottom-container .page-conatiner .intro {
  opacity: 0;
  pointer-events: none;
  transition: 0.3s opacity ease;
  white-space: nowrap;
}
#candy .section-thin-and-color .section-color .color-bottom-container .page-conatiner .intro:not(:first-child) {
  position: absolute;
  top: 0;
  left: 0;
}
#candy .section-thin-and-color .section-color .color-bottom-container .navigation-container {
  display: flex;
  align-items: center;
  --progress: 0%;
}
#candy .section-thin-and-color .section-color .color-bottom-container .navigation-page {
  position: relative;
  margin-right: 1.302083vw;
}
#candy .section-thin-and-color .section-color .color-bottom-container .navigation-page .navigation-intro {
  opacity: 0;
  pointer-events: none;
  transition: 0.3s opacity ease;
  color: #000;
  font-size: 1.666667vw;
  will-change: opacity;
  white-space: nowrap;
}
#candy .section-thin-and-color .section-color .color-bottom-container .navigation-page .navigation-intro:not(:first-child) {
  position: absolute;
  top: 0;
  right: 0;
}
#candy .section-thin-and-color .section-color .color-bottom-container .navigation-button-list {
  display: flex;
  justify-content: space-between;
}
#candy .section-thin-and-color .section-color .color-bottom-container .navigation-button-list .navigation-button-item {
  cursor: pointer;
  outline: none;
}
#candy .section-thin-and-color .section-color .color-bottom-container .navigation-button-list .navigation-button-item:not(:last-child) {
  margin-right: 0.833333vw;
}
#candy .section-thin-and-color .section-color .color-bottom-container .navigation-button-list .progress-circle {
  width: 2.291667vw;
  height: 2.291667vw;
  border-radius: 50%;
  position: relative;
}
#candy .section-thin-and-color .section-color .color-bottom-container .navigation-button-list .progress-circle .item-out {
  content: "";
  position: absolute;
  border-radius: 50%;
  width: 100%;
  height: 100%;
  background: conic-gradient(#fff 100%, transparent 0%);
  top: 0;
  left: 0;
  transform: rotateY(180deg);
  z-index: 3;
}
#candy .section-thin-and-color .section-color .color-bottom-container .navigation-button-list .progress-circle .item-out.active {
  --progress: 100%;
  background: conic-gradient(#fff var(--progress), transparent 0%);
}
#candy .section-thin-and-color .section-color .color-bottom-container .navigation-button-list .progress-circle .item-round {
  opacity: 0;
  will-change: opacity;
}
#candy .section-thin-and-color .section-color .color-bottom-container .navigation-button-list .progress-circle .item-round img {
  will-change: opacity;
  opacity: 0;
}
#candy .section-thin-and-color .section-color .color-bottom-container .navigation-button-list .progress-circle .item-inside {
  position: absolute;
  width: 1.25vw;
  height: 1.25vw;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}
#candy .section-thin-and-color .section-color .color-bottom-container .navigation-button-list .progress-circle.active .item-round img {
  opacity: 1;
}
#candy .section-thin-and-color .section-color .color-bottom-container[data-active="0"] .page-conatiner :nth-child(1) {
  opacity: 1;
  pointer-events: all;
  transition: 0.3s opacity 0.3s ease;
}
#candy .section-thin-and-color .section-color .color-bottom-container[data-active="0"] .navigation-page :nth-child(1) {
  opacity: 1;
  pointer-events: all;
  transition: 0.3s opacity 0.3s ease;
}
#candy .section-thin-and-color .section-color .color-bottom-container[data-active="1"] .page-conatiner :nth-child(2) {
  opacity: 1;
  pointer-events: all;
  transition: 0.3s opacity 0.3s ease;
}
#candy .section-thin-and-color .section-color .color-bottom-container[data-active="1"] .navigation-page :nth-child(2) {
  opacity: 1;
  pointer-events: all;
  transition: 0.3s opacity 0.3s ease;
}
#candy .section-thin-and-color .section-color .color-bottom-container[data-active="2"] .page-conatiner :nth-child(3) {
  opacity: 1;
  pointer-events: all;
  transition: 0.3s opacity 0.3s ease;
}
#candy .section-thin-and-color .section-color .color-bottom-container[data-active="2"] .navigation-page :nth-child(3) {
  opacity: 1;
  pointer-events: all;
  transition: 0.3s opacity 0.3s ease;
}
#candy .section-thin-and-color .section-color .color-lg-slide-1 .color-xs-swiper .swiper-slide-1 .slide-bg img {
  opacity: 0;
}
#candy .section-thin-and-color .section-color .color-lg-slide-1 .color-xs-swiper .swiper-slide-2 .slide-bg {
  transform: translateX(-1.5625vw);
  opacity: 0;
}
#candy .section-thin-and-color .section-color.ended {
  pointer-events: all;
}
#candy .section-thin-and-color .section-color .normal-navigation-container {
  display: none;
}
@media (max-aspect-ratio: 11/10) {
  #candy .section-thin-and-color .section-color {
    padding-top: 0;
    margin-top: 27.777778vw;
  }
  #candy .section-thin-and-color .section-color .swiper {
    overflow: visible;
  }
  #candy .section-thin-and-color .section-color .color-xs-swiper .slide-bg {
    border-radius: 2.222222vw;
    overflow: hidden;
  }
  #candy .section-thin-and-color .section-color .normal-navigation-container {
    display: flex;
    margin: 10vw auto 6.666667vw;
  }
  #candy .section-thin-and-color .section-color .color-bottom-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    transform: translateY(4.166667vw);
    opacity: 0;
    padding-right: 0;
  }
  #candy .section-thin-and-color .section-color .color-bottom-container .page-conatiner {
    width: 77.777778vw;
    position: relative;
    margin: 0 auto;
    text-align: center;
  }
  #candy .section-thin-and-color .section-color .color-bottom-container .page-conatiner .intro {
    width: 100%;
    white-space: normal;
  }
  #candy .section-thin-and-color .section-color .color-bottom-container .navigation-container {
    width: 100%;
    justify-content: center;
  }
  #candy .section-thin-and-color .section-color .color-bottom-container .navigation-page {
    position: relative;
    margin-right: 4.166667vw;
  }
  #candy .section-thin-and-color .section-color .color-bottom-container .navigation-page .navigation-intro {
    font-size: 5.555556vw;
  }
  #candy .section-thin-and-color .section-color .color-bottom-container .navigation-page .navigation-intro:not(:first-child) {
    width: 100%;
    text-align: center;
  }
  #candy .section-thin-and-color .section-color .color-bottom-container .navigation-button-list .navigation-button-item:not(:last-child) {
    margin-right: 2.222222vw;
  }
  #candy .section-thin-and-color .section-color .color-bottom-container .navigation-button-list .progress-circle {
    width: 8.888889vw;
    height: 8.888889vw;
    border-radius: 50%;
    position: relative;
  }
  #candy .section-thin-and-color .section-color .color-bottom-container .navigation-button-list .progress-circle .item-inside {
    width: 5.555556vw;
    height: 5.555556vw;
  }
  #candy .section-thin-and-color .section-color .color-bottom-container.actived {
    transform: translateY(0);
    opacity: 1;
  }
  #candy .section-thin-and-color .section-color .color-lg-slide-1 .color-xs-swiper .swiper-slide-1 .slide-bg img {
    opacity: 1;
  }
  #candy .section-thin-and-color .section-color .color-lg-slide-1 .color-xs-swiper .swiper-slide-2 .slide-bg {
    transform: translateX(0);
    opacity: 1;
  }
}
#candy .section-thin-and-color.active .section-watch-sticky .mid-watch {
  display: none;
}
#candy .section-thin-and-color.active .section-thin .section-sticky .container-bg {
  opacity: 1 !important;
}
#candy .section-thin-and-color.active .section-color .color-lg-slide-1 .color-xs-swiper .swiper-slide-1 .slide-bg img {
  opacity: 1;
  transition: 0.8s opacity ease-in;
}
#candy .section-thin-and-color.active .section-color .color-lg-slide-1 .color-xs-swiper .swiper-slide-2 .slide-bg {
  transform: translateX(0);
  opacity: 1;
  transition: 0.8s opacity ease-in, 0.8s transform ease-in;
}
#candy .section-thin-and-color.active .section-color .color-bottom-container {
  transform: translateY(0);
  opacity: 1;
  transition: 0.8s opacity ease-in, 0.8s transform ease-in;
}
#candy .section-dials {
  overflow: hidden;
  position: relative;
}
#candy .section-dials .text-content .headline {
  --font-size:3.333333vw;
  font-size: var(--font-size);
}
#candy .section-dials .text-content .headline-animated-container {
  display: inline-block;
}
#candy .section-dials .text-content .headline-animated-container .headline-content {
  display: flex;
  overflow: hidden;
  height: 1em;
}
#candy .section-dials .text-content .headline-animated-container .headline-move {
  display: flex;
  flex-flow: column;
  width: 3.541667vw;
  text-align: center;
  will-change: transform;
}
@media (max-aspect-ratio: 11/10) {
  #candy .section-dials .text-content .headline-animated-container .headline-move {
    width: 9.444444vw;
  }
}
#candy .section-dials .text-content .headline-animated-container .headline-move span {
  height: 1em;
  line-height: 1;
  -webkit-text-stroke: 0.104167vw transparent;
  -webkit-background-clip: text;
  background-clip: text;
}
@media (max-aspect-ratio: 11/10) {
  #candy .section-dials .text-content .headline-animated-container .headline-move span {
    -webkit-text-stroke: 0.277778vw transparent;
  }
}
#candy .section-dials .text-content .headline-animated-container .headline-move span.gradient-type-1 {
  color: #000;
  background-color: #D2EF09;
}
#candy .section-dials .text-content .headline-animated-container .headline-move span.gradient-type-2 {
  color: #D2EF09;
  background-color: #000;
}
#candy .section-dials .text-content .headline-animated-container .headline-move span.gradient-type-3 {
  color: #D5F7C8;
  background-color: #7BC46E;
}
#candy .section-dials .text-content .headline-animated-container .headline-move span.gradient-type-4 {
  color: #CAEBFF;
  background-color: #0E9EFF;
}
#candy .section-dials .text-content .headline-animated-container .headline-move span.gradient-type-5 {
  color: #88BFFF;
  background-color: #0DAAFF;
}
#candy .section-dials .text-content .headline-animated-container .headline-move span.gradient-type-6 {
  color: #DDE3FF;
  background-color: #88AFFA;
}
#candy .section-dials .text-content .headline-animated-container .headline-move span.gradient-type-7 {
  color: #BBB4FF;
  background-color: #613DA3;
}
#candy .section-dials .text-content .headline-animated-container .headline-move span.gradient-type-8 {
  color: #FB6D10;
  background-color: #000000;
}
#candy .section-dials .text-content .headline-animated-container .headline-move span.gradient-type-9 {
  color: #FF9C76;
  background-color: #D7513D;
}
#candy .section-dials .text-content .headline-animated-container .headline-move span.gradient-type-10 {
  color: #FFD8B9;
  background-color: #F27338;
}
#candy .section-dials .dials-swiper {
  width: 12.5vw;
  margin: 0 auto;
  overflow: visible;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
}
#candy .section-dials .section-container {
  position: relative;
}
#candy .section-dials .watch {
  position: relative;
  width: 13.854167vw;
  height: 33.333333vw;
  margin: 0 auto;
  transform: translateX(0.15625vw);
  pointer-events: none;
  z-index: 5;
}
#candy .section-dials .watch picture:nth-child(1) {
  position: relative;
  z-index: 3;
}
#candy .section-dials .watch picture:nth-child(2) {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
#candy .section-dials .watch-bg {
  position: absolute;
  width: 13.854167vw;
  height: 33.333333vw;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}
#candy .section-dials .watch-bg img {
  transform: translateX(0.15625vw);
}
#candy .section-dials .dials-border-highlight {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  pointer-events: none;
  z-index: 6;
}
#candy .section-dials .dials-border-highlight picture {
  width: 13.854167vw;
  height: 33.333333vw;
  margin: 0 auto;
  transform: translateX(0.15625vw);
}
#candy .section-dials .swiper-slide {
  transform-style: preserve-3d;
  perspective: 50.25vw;
}
#candy .section-dials .swiper-slide .slide-picture {
  will-change: transform;
}
#candy .section-dials .animated-slide img {
  opacity: 0;
}
#candy .section-dials .animated-slide-1 img {
  transform: translateX(8vw);
}
#candy .section-dials .animated-slide-2 img {
  transform: translateX(6vw);
}
#candy .section-dials .animated-slide-3 img {
  transform: translateX(4vw);
}
#candy .section-dials .animated-slide-4 img {
  transform: translateX(2vw);
}
#candy .section-dials .animated-slide-center img {
  opacity: 0;
}
#candy .section-dials .animated-slide-6 img {
  transform: translateX(-2vw);
}
#candy .section-dials .animated-slide-7 img {
  transform: translateX(-4vw);
}
#candy .section-dials .animated-slide-8 img {
  transform: translateX(-6vw);
}
#candy .section-dials .animated-slide-9 img {
  transform: translateX(-8vw);
}
#candy .section-dials .change-content {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 10.729167vw;
  overflow: hidden;
  z-index: 2;
  pointer-events: none;
  border-radius: 2.083333vw;
  z-index: 4;
}
#candy .section-dials .change-content img {
  width: auto;
  height: 17.708333vw;
}
#candy .section-dials .normal-navigation-container {
  opacity: 0;
  pointer-events: none;
}
#candy .section-dials.animated .text-content .headline-animated-container .headline-move {
  transform: translateY(-2000%);
  transition: 1.5s transform cubic-bezier(0, 0.55, 0.45, 1);
}
#candy .section-dials.animated .change-content {
  opacity: 0;
  transition: 0s opacity 1.5s;
}
#candy .section-dials.animated .change-content img {
  transform: translateX(-92.5vw);
  transition: 1.5s transform cubic-bezier(0, 0.55, 0.45, 1);
}
#candy .section-dials.animated .animated-slide img {
  opacity: 1;
  transform: translate(0, 0);
  transition: 0.8s opacity 1.5s ease-in, 0.8s transform 1.5s ease-in;
}
#candy .section-dials.animated .animated-slide-center img {
  opacity: 1;
  transition: 0.01s opacity 1.4s ease-in;
}
#candy .section-dials.animated .normal-navigation-container {
  opacity: 1;
  pointer-events: all;
  transition: 0.8s opacity 1.5s ease-in;
}
@media (max-aspect-ratio: 11/10) {
  #candy .section-dials .dials-swiper {
    width: 33.333333vw;
  }
  #candy .section-dials .watch {
    width: 36.944444vw;
    height: 88.888889vw;
    transform: translateX(0.416667vw);
  }
  #candy .section-dials .watch-bg {
    position: absolute;
    width: 36.944444vw;
    height: 88.888889vw;
  }
  #candy .section-dials .watch-bg img {
    transform: translateX(0.416667vw);
  }
  #candy .section-dials .dials-border-highlight picture {
    width: 36.944444vw;
    height: 88.888889vw;
    transform: translateX(0.416667vw);
  }
  #candy .section-dials .swiper-slide {
    perspective: 134vw;
  }
  #candy .section-dials .change-content {
    width: 28.611111vw;
    border-radius: 5.555556vw;
  }
  #candy .section-dials .change-content img {
    height: 47.222222vw;
  }
  #candy .section-dials.animated .change-content img {
    transform: translateX(-246.666667vw);
  }
}
#candy .section-sports {
  width: 100%;
  overflow: hidden;
}
#candy .section-draw {
  position: relative;
}
#candy .section-draw .text-content {
  position: absolute;
  width: 62.5vw;
  top: 15.625vw;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
}
#candy .section-draw .text-content .headline {
  font-size: 5vw;
  color: #fff;
}
#candy .section-draw .text-content .intro {
  width: 41.666667vw;
  color: rgba(255, 255, 255, 0.6);
}
#candy .section-draw .show-top {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 3;
}
#candy .section-draw .sports-line {
  position: absolute;
  z-index: 2;
  top: -1.666667vw;
  width: 68.385417vw;
  left: 2.229167vw;
}
#candy .section-draw .sports-line #sports-line-path-1 {
  stroke-dasharray: 3245;
  stroke-dashoffset: 3245;
}
#candy .section-draw .sports-animate-icon {
  width: 5.15625vw;
  bottom: 10.16875vw;
  left: 47.395833vw;
  position: absolute;
  z-index: 3;
}
#candy .section-draw .sports-animate-icon img {
  transform: scale(0.2);
  transform-origin: 50% 100%;
  opacity: 0;
  transition: 0.3s opacity ease-in, 0.3s transform ease-in;
}
#candy .section-draw.active .sports-animate-icon {
  animation: iconJump 1s infinite 0.3s linear;
}
#candy .section-draw.active .sports-animate-icon img {
  transform: scale(1);
  opacity: 1;
}
@media (max-aspect-ratio: 11/10) {
  #candy .section-draw .text-content {
    width: 100%;
    top: 20.833333vw;
  }
  #candy .section-draw .text-content .headline {
    font-size: 13.333333vw;
    width: 97.222222vw;
    margin-left: auto;
    margin-right: auto;
  }
  #candy .section-draw .text-content .intro {
    width: 77.777778vw;
    margin-left: auto;
    margin-right: auto;
  }
  #candy .section-draw .sports-animate-icon {
    width: 13.611111vw;
    bottom: auto;
    left: 43.055556vw;
    top: 109.444444vw;
  }
}
#candy .section-running {
  position: relative;
  z-index: 2;
}
#candy .section-running .section-bg {
  position: relative;
}
#candy .section-running .section-top-level {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  z-index: 6;
}
#candy .section-running .text-content {
  position: absolute;
  bottom: 6.770833vw;
  left: 16.25vw;
  z-index: 7;
  width: 55%;
}
#candy .section-running .text-content .sub-headline {
  font-size: 1.041667vw;
  font-weight: bold;
  color: #D2EF09;
}
#candy .section-running .text-content .headline {
  color: #fff;
}
#candy .section-running .sports-line-2 {
  width: 55.9375vw;
  position: absolute;
  bottom: -7.6vw;
  left: -4.7vw;
  z-index: 5;
}
#candy .section-running .sports-line-2 #sports-line-path-2 {
  stroke-dasharray: 1825;
  stroke-dashoffset: 1825;
}
#candy .section-running .sports-animate-icon {
  width: 3.645833vw;
  bottom: 2.96875vw;
  left: 11.195833vw;
  position: absolute;
  z-index: 7;
}
#candy .section-running .sports-animate-icon img {
  transform: scale(0.2);
  transform-origin: 50% 100%;
  opacity: 0;
  transition: 0.3s opacity ease-in, 0.3s transform ease-in;
}
#candy .section-running.active .sports-animate-icon {
  animation: iconJump 1s infinite 0.3s linear;
}
#candy .section-running.active .sports-animate-icon img {
  transform: scale(1);
  opacity: 1;
}
@media (max-aspect-ratio: 11/10) {
  #candy .section-running {
    margin-top: 11.111111vw;
  }
  #candy .section-running .section-bg {
    width: 100%;
  }
  #candy .section-running .section-bg::after {
    display: none;
  }
  #candy .section-running .text-content {
    position: absolute;
    bottom: 40.972222vw;
    left: 11.111111vw;
    z-index: 5;
    width: 75%;
  }
  #candy .section-running .text-content .sub-headline {
    font-size: 3.333333vw;
  }
  #candy .section-running .sports-animate-icon {
    width: 9.722222vw;
    bottom: auto;
    left: 11.111111vw;
    top: 88.472222vw;
  }
}
#candy .section-riding {
  position: relative;
  z-index: 2;
}
#candy .section-riding .section-bg {
  position: relative;
}
#candy .section-riding .section-top-level {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  z-index: 6;
}
#candy .section-riding .text-content {
  position: absolute;
  bottom: 6.770833vw;
  right: 16.25vw;
  z-index: 7;
  text-align: right;
  width: 55%;
}
#candy .section-riding .text-content .sub-headline {
  font-size: 1.041667vw;
  font-weight: bold;
  color: #D2EF09;
}
#candy .section-riding .text-content .headline {
  color: #fff;
}
#candy .section-riding .sports-line-3 {
  width: 110.572917vw;
  position: absolute;
  z-index: 5;
  bottom: -8.9vw;
  left: -3.8vw;
}
#candy .section-riding .sports-line-3 #sports-line-path-3 {
  stroke-dasharray: 3340;
  stroke-dashoffset: 3340;
}
#candy .section-riding .sports-animate-icon {
  width: 3.645833vw;
  bottom: 2.96875vw;
  right: 11.195833vw;
  position: absolute;
  z-index: 7;
}
#candy .section-riding .sports-animate-icon img {
  transform: scale(0.2);
  transform-origin: 50% 100%;
  opacity: 0;
  transition: 0.3s opacity ease-in, 0.3s transform ease-in;
}
#candy .section-riding.active .sports-animate-icon {
  animation: iconJump 1s infinite 0.3s linear;
}
#candy .section-riding.active .sports-animate-icon img {
  transform: scale(1);
  opacity: 1;
}
@media (max-aspect-ratio: 11/10) {
  #candy .section-riding .section-bg {
    width: 100%;
    border-radius: 0;
  }
  #candy .section-riding .section-bg::after {
    display: none;
  }
  #candy .section-riding .text-content {
    position: absolute;
    bottom: 40.416667vw;
    right: 11.111111vw;
    z-index: 5;
    width: 75%;
  }
  #candy .section-riding .text-content .sub-headline {
    font-size: 3.333333vw;
  }
  #candy .section-riding .sports-animate-icon {
    width: 9.722222vw;
    bottom: auto;
    right: 11.111111vw;
    top: 88.472222vw;
  }
}
@keyframes iconJump {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-1vw);
  }
  100% {
    transform: translateY(0);
  }
}
#candy .section-riding-card .center-content {
  position: absolute;
  top: 2.916667vw;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: 2;
  width: 27.291667vw;
}
#candy .section-riding-card .center-content .icon-content {
  position: relative;
}
#candy .section-riding-card .center-content .icon-content .shine-icon {
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  opacity: 0;
  z-index: 2;
  transition: 0.5s opacity ease-in;
}
#candy .section-riding-card .center-content .top-content {
  width: 18.229167vw;
  margin: 0 auto 0.833333vw;
}
#candy .section-riding-card .center-content .bottom-content {
  display: flex;
  justify-content: space-between;
}
#candy .section-riding-card .center-content .bottom-content .icon-content {
  width: 6.25vw;
}
@media (min-aspect-ratio: 11/10) {
  #candy .section-riding-card .swiper-slide-next .top-content .shine-icon {
    opacity: 1;
    transition: 0.3s opacity 1.2s linear;
  }
  #candy .section-riding-card .swiper-slide-next .bottom-content .icon-content:nth-child(1) .shine-icon {
    opacity: 1;
    transition: 0.3s opacity 0.9s linear;
  }
  #candy .section-riding-card .swiper-slide-next .bottom-content .icon-content:nth-child(2) .shine-icon {
    opacity: 1;
    transition: 0.3s opacity 0.6s linear;
  }
  #candy .section-riding-card .swiper-slide-next .bottom-content .icon-content:nth-child(3) .shine-icon {
    opacity: 1;
    transition: 0.3s opacity 0.3s linear;
  }
  #candy .section-riding-card .swiper-slide-next .bottom-content .icon-content:nth-child(4) .shine-icon {
    opacity: 1;
    transition: 0.3s opacity linear;
  }
}
#candy .section-riding-card .swiper-slide-fully-visible .top-content .shine-icon,
#candy .section-riding-card .swiper-slide-active .top-content .shine-icon {
  opacity: 1;
  transition: 0.3s opacity 1.2s linear;
}
#candy .section-riding-card .swiper-slide-fully-visible .bottom-content .icon-content:nth-child(1) .shine-icon,
#candy .section-riding-card .swiper-slide-active .bottom-content .icon-content:nth-child(1) .shine-icon {
  opacity: 1;
  transition: 0.3s opacity 0.9s linear;
}
#candy .section-riding-card .swiper-slide-fully-visible .bottom-content .icon-content:nth-child(2) .shine-icon,
#candy .section-riding-card .swiper-slide-active .bottom-content .icon-content:nth-child(2) .shine-icon {
  opacity: 1;
  transition: 0.3s opacity 0.6s linear;
}
#candy .section-riding-card .swiper-slide-fully-visible .bottom-content .icon-content:nth-child(3) .shine-icon,
#candy .section-riding-card .swiper-slide-active .bottom-content .icon-content:nth-child(3) .shine-icon {
  opacity: 1;
  transition: 0.3s opacity 0.3s linear;
}
#candy .section-riding-card .swiper-slide-fully-visible .bottom-content .icon-content:nth-child(4) .shine-icon,
#candy .section-riding-card .swiper-slide-active .bottom-content .icon-content:nth-child(4) .shine-icon {
  opacity: 1;
  transition: 0.3s opacity linear;
}
@media (max-aspect-ratio: 11/10) {
  #candy .section-riding-card {
    padding-top: 12.777778vw;
  }
  #candy .section-riding-card .center-content {
    top: 14.722222vw;
    width: 72.777778vw;
  }
  #candy .section-riding-card .center-content .top-content {
    width: 48.611111vw;
    margin: 0 auto 2.222222vw;
  }
  #candy .section-riding-card .center-content .bottom-content .icon-content {
    width: 16.666667vw;
  }
}
@media (max-aspect-ratio: 11/10) {
  #candy .section-running-card {
    padding-top: 11.111111vw;
  }
  #candy .section-running-card .swiper-slide {
    transform: translateY(0) !important;
    opacity: 1 !important;
  }
  #candy .section-running-card .xs-bg {
    display: block;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
  }
}
#candy .section-workouts .section-container {
  position: relative;
}
#candy .section-workouts .text-content {
  position: absolute;
  bottom: 6.666667vw;
  left: 16.25vw;
  width: 30.208333vw;
  z-index: 2;
}
#candy .section-workouts .text-content .h2 {
  color: #fff;
}
#candy .section-workouts .text-content .intro {
  color: rgba(255, 255, 255, 0.6);
}
#candy .section-workouts .animate-contaner {
  position: absolute;
  width: 20.729167vw;
  top: 1.875vw;
  right: 2.083333vw;
  z-index: 2;
}
#candy .section-workouts .animate-contaner .count-content {
  width: 12.083333vw;
  position: absolute;
  z-index: 3;
  top: 16.895833vw;
  right: 1.458333vw;
  opacity: 0;
}
#candy .section-workouts .animate-contaner .icon-content {
  position: relative;
}
#candy .section-workouts .animate-contaner .icon-content .icon-animated {
  opacity: 0;
}
#candy .section-workouts .animate-contaner .icon-content .icon-animated:not(:first-child) {
  position: absolute;
  top: 0;
  left: 0;
}
#candy .section-workouts .animate-contaner .stat-list {
  position: absolute;
  top: 14.895833vw;
  right: 2.1875vw;
}
#candy .section-workouts.animated .count-content {
  opacity: 1;
  transition: opacity 0.5s 1.3s ease-in;
}
#candy .section-workouts.animated .animate-contaner .icon-animated-5 {
  opacity: 1;
  transition: opacity 1.3s 0.2s ease-in;
}
#candy .section-workouts.animated .animate-contaner .icon-animated-4 {
  opacity: 0.6;
  transition: opacity 1.1s 0.4s ease-in;
}
#candy .section-workouts.animated .animate-contaner .icon-animated-3 {
  opacity: 0.4;
  transition: opacity 0.9s 0.6s ease-in;
}
#candy .section-workouts.animated .animate-contaner .icon-animated-2 {
  opacity: 0.3;
  transition: opacity 0.7s 0.8s ease-in;
}
#candy .section-workouts.animated .animate-contaner .icon-animated-1 {
  opacity: 0.2;
  transition: opacity 0.5s 1s ease-in;
}
@media (max-aspect-ratio: 11/10) {
  #candy .section-workouts .text-content {
    position: static;
    width: 77.777778vw;
    z-index: 2;
    margin: 0 auto 8.888889vw;
    text-align: center;
  }
  #candy .section-workouts .text-content .h2 {
    color: #000;
  }
  #candy .section-workouts .text-content .intro {
    color: #6D6F72;
    opacity: 1;
  }
  #candy .section-workouts .animate-contaner {
    position: absolute;
    width: 47.222222vw;
    top: 5.138889vw;
    right: auto;
    left: 5.555556vw;
  }
  #candy .section-workouts .animate-contaner .count-content {
    width: 31.666667vw;
    top: 43.722222vw;
    left: 1.388889vw;
    right: auto;
  }
}
#candy .section-health {
  position: relative;
}
#candy .section-health .text-content {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
#candy .section-health .text-content .h2 {
  font-size: 5vw;
  color: #Fff;
}
@media (max-aspect-ratio: 11/10) {
  #candy .section-health .text-content {
    width: 97.222222vw;
  }
  #candy .section-health .text-content .h2 {
    font-size: 13.333333vw;
  }
}
#candy .section-cooperation {
  background: #F8F8F8;
  margin-bottom: 10.416667vw;
  padding: 2.083333vw 0 3.333333vw;
}
#candy .section-cooperation .headline {
  font-size: 1.666667vw;
  margin-bottom: 3.333333vw;
}
#candy .section-cooperation .section-main {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
#candy .section-cooperation .section-main .icon-item {
  display: flex;
  align-items: center;
}
#candy .section-cooperation .section-main .icon-item img {
  width: 4.166667vw;
  margin-right: 1.25vw;
}
#candy .section-cooperation .section-main .icon-item:nth-child(1), #candy .section-cooperation .section-main .icon-item:nth-child(2), #candy .section-cooperation .section-main .icon-item:nth-child(4) {
  margin-right: 5.833333vw;
}
#candy .section-cooperation .section-main .icon-item .intro {
  font-size: 1.041667vw;
}
#candy .section-cooperation .section-main .icon-item .intro span {
  color: #000;
}
@media (max-aspect-ratio: 11/10) {
  #candy .section-cooperation {
    margin-bottom: 27.777778vw;
    padding: 10.416667vw 0 11.111111vw;
  }
  #candy .section-cooperation .headline {
    font-size: 5.555556vw;
    margin-bottom: 8.888889vw;
  }
  #candy .section-cooperation .section-main .icon-item {
    width: 100%;
    padding-left: 6.666667vw;
  }
  #candy .section-cooperation .section-main .icon-item img {
    width: 13.888889vw;
    margin-right: 3.333333vw;
  }
  #candy .section-cooperation .section-main .icon-item .intro {
    font-size: 3.888889vw;
  }
  #candy .section-cooperation .section-main .icon-item:nth-child(1), #candy .section-cooperation .section-main .icon-item:nth-child(2), #candy .section-cooperation .section-main .icon-item:nth-child(4) {
    margin-right: 0;
  }
}
#candy .section-themes {
  position: relative;
  height: 360vh;
}
#candy .section-themes .section-sticky {
  position: sticky;
  top: 54px;
  left: 0;
  height: calc(100vh - 54px);
  overflow: hidden;
}
#candy .section-themes .section-sticky .themes-container {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}
@media (max-width: 1600px) and (min-width: 1470px) and (max-height: 740px) and (min-height: 680px) {
  #candy .section-themes .section-sticky .themes-container {
    transform: scale(0.95);
    transform-origin: 50% 50%;
  }
}
@media (max-width: 1380px) and (min-width: 1340px) and (max-height: 640px) and (min-height: 580px) {
  #candy .section-themes .section-sticky .themes-container {
    transform: scale(0.9);
    transform-origin: 50% 50%;
  }
}
#candy .section-themes .mid-animated-bg {
  width: 38.75vw;
  height: 41.770833vw;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  transform-origin: 50% 50%;
  pointer-events: none;
}
#candy .section-themes .text-content .h3 {
  margin-bottom: 0.833333vw;
}
@media (min-aspect-ratio: 11/10) {
  #candy .section-themes .themes-content-1 {
    width: 100%;
    opacity: 0;
  }
  #candy .section-themes .themes-content-1 .themes-swiper {
    overflow: visible;
    padding-top: 2.7vw;
  }
  #candy .section-themes .themes-content-1 .themes-swiper .swiper-wrapper {
    justify-content: center;
  }
  #candy .section-themes .themes-content-1 .themes-swiper .swiper-slide {
    width: 10.15625vw;
    position: absolute;
  }
  #candy .section-themes .themes-content-1 .themes-swiper .swiper-slide .slide-bg {
    position: relative;
    z-index: 3;
  }
  #candy .section-themes .themes-content-1 .themes-swiper .swiper-slide .themes-border {
    position: relative;
    z-index: 3;
    transform: translate(1%, 0.05%);
  }
  #candy .section-themes .themes-content-1 .themes-swiper .swiper-slide .themes-border-highlights {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 2;
    transform: translate(1%, 0.05%);
  }
  #candy .section-themes .themes-content-1 .themes-swiper .swiper-slide .video-container {
    width: 7.96875vw;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -49.95%);
  }
  #candy .section-themes .themes-content-1 .themes-swiper .swiper-slide .slide-icon {
    position: absolute;
    top: 0;
  }
  #candy .section-themes .themes-content-1 .themes-swiper .swiper-slide-1 {
    width: 11.770833vw;
    height: 27.776562vw;
    position: relative;
    z-index: 5;
  }
  #candy .section-themes .themes-content-1 .themes-swiper .swiper-slide-1 .video-container {
    width: 9.166667vw;
    position: absolute;
  }
  #candy .section-themes .themes-content-1 .themes-swiper .swiper-slide-1 .slide-bg-2 {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    opacity: 0;
    z-index: 4;
  }
  #candy .section-themes .themes-content-1 .themes-swiper .swiper-slide-1 .slide-icon-1 {
    width: 14.0625vw;
    opacity: 0;
    transform: translate(-11.6vw, -2vw) scale(0.6);
  }
  #candy .section-themes .themes-content-1 .themes-swiper .swiper-slide-1 .slide-icon-2 {
    width: 8.229167vw;
    opacity: 0;
    transform: translate(9.7vw, -3vw) scale(0.6);
  }
  #candy .section-themes .themes-content-1 .themes-swiper .swiper-slide-2 .slide-bg {
    opacity: 0;
  }
  #candy .section-themes .themes-content-1 .themes-swiper .swiper-slide-2 .slide-icon-1 {
    width: 7.34375vw;
    opacity: 0;
    transform: translate(18.4vw, 0vw) scale(0.6);
  }
  #candy .section-themes .themes-content-1 .themes-swiper .swiper-slide-2 .slide-icon-2 {
    width: 10.104167vw;
    opacity: 0;
    transform: translate(30vw, 13.3vw) scale(0.6);
  }
  #candy .section-themes .themes-content-1 .themes-swiper .swiper-slide-3 .slide-bg {
    opacity: 0;
  }
  #candy .section-themes .themes-content-1 .themes-swiper .swiper-slide-3 .slide-icon-1 {
    width: 14.583333vw;
    opacity: 0;
    transform: translate(-32.3vw, 10.8vw) scale(0.6);
  }
  #candy .section-themes .themes-content-1 .themes-swiper .swiper-slide-3 .slide-icon-2 {
    width: 6.5625vw;
    opacity: 0;
    transform: translate(-20.8vw, 0.4vw) scale(0.6);
  }
  #candy .section-themes .themes-content-1 .text-content {
    margin-top: 4.375vw;
    opacity: 0;
    transform: translateY(1.5vw);
  }
}
#candy .section-themes .themes-content-2 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  pointer-events: none;
}
#candy .section-themes .themes-content-2 .text-content {
  margin-top: 1.875vw;
}
@media (max-aspect-ratio: 11/10) {
  #candy .section-themes {
    height: fit-content;
  }
  #candy .section-themes .mid-animated-bg {
    display: none;
  }
  #candy .section-themes .section-sticky {
    position: static;
    height: fit-content;
  }
  #candy .section-themes .section-sticky .themes-container {
    height: fit-content;
    display: block;
  }
  #candy .section-themes .slide-bg-2 {
    display: none;
  }
  #candy .section-themes .themes-content-1 {
    width: 91.111111vw;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
  }
  #candy .section-themes .themes-content-1 .watch-content {
    width: 100%;
    order: 2;
  }
  #candy .section-themes .themes-content-1 .swiper {
    overflow: visible;
  }
  #candy .section-themes .themes-content-1 .swiper .swiper-slide .slide-bg {
    width: 37.777778vw;
    position: relative;
    margin: 0 auto;
  }
  #candy .section-themes .themes-content-1 .swiper .swiper-slide .slide-bg .themes-border {
    position: relative;
    z-index: 2;
  }
  #candy .section-themes .themes-content-1 .swiper .swiper-slide .slide-bg .video-container {
    position: absolute;
    width: 29.444444vw;
    top: 50%;
    left: 50%;
    transform: translate(-51.35%, -49.9%);
  }
  #candy .section-themes .themes-content-1 .swiper .swiper-slide .slide-bg .themes-border-highlights {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 2;
  }
  #candy .section-themes .themes-content-1 .swiper .swiper-slide .slide-icon {
    position: absolute;
    transition: 0s transform 0.6s, 0s opacity 0.6s;
  }
  #candy .section-themes .themes-content-1 .swiper .swiper-slide-1 .slide-icon-1 {
    width: 37.5vw;
    left: -6.527778vw;
    top: 13.888889vw;
    transform: translate(15vw, 10vw) scale(0.6);
    opacity: 0;
  }
  #candy .section-themes .themes-content-1 .swiper .swiper-slide-1 .slide-icon-2 {
    width: 21.111111vw;
    top: 43.75vw;
    right: 1.388889vw;
    transform: translate(-15vw, -10vw) scale(0.6);
    opacity: 0;
  }
  #candy .section-themes .themes-content-1 .swiper .swiper-slide-2 .slide-icon-1 {
    width: 19.583333vw;
    top: 19.722222vw;
    left: 0;
    transform: translate(15vw, 10vw) scale(0.6);
    opacity: 0;
  }
  #candy .section-themes .themes-content-1 .swiper .swiper-slide-2 .slide-icon-2 {
    width: 26.944444vw;
    top: 40.277778vw;
    right: 0;
    transform: translate(-15vw, -10vw) scale(0.6);
    opacity: 0;
  }
  #candy .section-themes .themes-content-1 .swiper .swiper-slide-3 .slide-icon-1 {
    width: 36.527778vw;
    top: 12.916667vw;
    left: -6.527778vw;
    transform: translate(15vw, 10vw) scale(0.6);
    opacity: 0;
  }
  #candy .section-themes .themes-content-1 .swiper .swiper-slide-3 .slide-icon-2 {
    width: 17.5vw;
    top: 41.666667vw;
    right: 3.888889vw;
    transform: translate(-15vw, -10vw) scale(0.6);
    opacity: 0;
  }
  #candy .section-themes .themes-content-1 .swiper .swiper-slide-active .slide-icon {
    transform: translate(0, 0) scale(1);
    opacity: 1;
    transition: 0.6s transform 0s ease-in, 0.6s opacity 0.2s linear;
  }
  #candy .section-themes .themes-content-1 .text-content {
    width: 77.777778vw;
    margin-top: 0;
    order: 1;
    margin-bottom: 8.888889vw;
  }
  #candy .section-themes .themes-content-1 .text-content .h3 {
    margin-bottom: 2.777778vw;
    font-size: 5.555556vw;
  }
  #candy .section-themes .themes-content-1 .normal-navigation-container {
    display: flex;
    margin-top: 11.111111vw;
    order: 3;
  }
  #candy .section-themes .themes-content-2 {
    position: relative;
    top: 0;
    left: 0;
    transform: translate(0, 0);
    opacity: 1;
    pointer-events: all;
    width: 91.111111vw;
    margin: 27.777778vw auto 0;
  }
  #candy .section-themes .themes-content-2 .text-content {
    width: 77.777778vw;
    margin-top: 6.666667vw;
  }
  #candy .section-themes .themes-content-2 .text-content .h3 {
    margin-bottom: 2.777778vw;
    font-size: 5.555556vw;
  }
}
#candy .section-video-card {
  overflow: hidden;
}
#candy .section-video-card .swiper-slide {
  width: 33.125vw;
  opacity: 0;
}

#candy .section-video-card .text-content {
  width: 90%;
  cursor: auto;
}
#candy .section-video-card .text-content .intro {
  font-size: 1.041667vw;
}
#candy .section-video-card .normal-navigation-container {
  margin-right: 0;
  margin-left: auto;
}
#candy .section-video-card .swiper-slide:nth-child(1) {
  transform: translateY(4.166667vw);
}
#candy .section-video-card .swiper-slide:nth-child(2) {
  transform: translateY(8.333333vw);
}
#candy .section-video-card .swiper-slide:nth-child(3) {
  transform: translateY(12.5vw);
}
#candy .section-video-card .normal-navigation-container {
  opacity: 0;
}
#candy .section-video-card.animated .swiper-slide {
  opacity: 1;
  transform: translateY(0);
  transition: 1.4s transform cubic-bezier(0.65, 0, 0.35, 1), 1.4s opacity cubic-bezier(0.65, 0, 0.35, 1);
}
#candy .section-video-card.animated .normal-navigation-container {
  opacity: 1;
  transition: 0.4s opacity 1s cubic-bezier(0.65, 0, 0.35, 1);
}
#candy .section-video-card.no-move {
  pointer-events: none;
}
@media (max-aspect-ratio: 11/10) {
  #candy .section-video-card .swiper-slide {
    width: 100%;
  }
  #candy .section-video-card .swiper-slide picture {
    transform: scale(0.99);
  }
  #candy .section-video-card .swiper-slide:nth-child(1) {
    transform: translateY(11.111111vw);
  }
  #candy .section-video-card .swiper-slide:nth-child(2) {
    transform: translateY(22.222222vw);
  }
  #candy .section-video-card .swiper-slide:nth-child(3) {
    transform: translateY(0);
  }
  #candy .section-video-card .mx-auto {
    margin-left: 4.444444vw;
    margin-right: auto;
  }
  #candy .section-video-card .text-content {
    width: 80vw;
    padding-left: 6.666667vw;
    padding-right: 0;
    cursor: auto;
  }
  #candy .section-video-card .text-content .h3 {
    font-size: 5.555556vw;
  }
  #candy .section-video-card .text-content .intro {
    font-size: 4.444444vw;
  }
  #candy .section-video-card.animated .swiper-slide {
    opacity: 1;
    transform: translateY(0);
    transition: 1.4s transform cubic-bezier(0.65, 0, 0.35, 1), 1.4s opacity cubic-bezier(0.65, 0, 0.35, 1);
  }
  #candy .section-video-card.animated .normal-navigation-container {
    opacity: 1;
    transition: 0.4s opacity 1s cubic-bezier(0.65, 0, 0.35, 1);
  }
}
#candy .section-analysis {
  position: relative;
}
#candy .section-analysis .swiper-slide {
  width: 100%;
}
#candy .section-analysis .swiper-slide .slide-bg {
  position: relative;
}
#candy .section-analysis .swiper-slide .slide-bg picture {
  transform: scale(1);
}
#candy .section-analysis .swiper-slide .mid-img {
  position: absolute;
  width: 23.4375vw;
  z-index: 2;
  right: 4.166667vw;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-aspect-ratio: 11/10) {
  #candy .section-analysis {
    margin-top: 27.777778vw;
  }
  #candy .section-analysis .swiper-slide .slide-bg {
    background: #F8F8F8;
    min-height: 215.416667vw;
  }
  #candy .section-analysis .swiper-slide .mid-img {
    position: relative;
    width: 73.333333vw;
    z-index: 2;
    right: 0;
    top: 0;
    transform: translateY(0);
    padding: 10.277778vw 0 10.555556vw;
    margin: 0 auto;
  }
  #candy .section-analysis .swiper-slide .mid-img.hidden {
    display: block;
  }
}
#candy .living-card-title .h2 {
  width: 81.25vw;
  font-size: 5vw;
}
@media (max-aspect-ratio: 11/10) {
  #candy .living-card-title .h2 {
    font-size: 13.333333vw;
    width: 97.222222vw;
    margin-left: auto;
  }
}
#candy .section-living-card .text-content {
  width: 21.458333vw;
}
#candy .section-living-card .swiper-slide-4 .text-content {
  width: 26.666667vw;
}
#candy .section-living-card .bottom-img {
  width: 8.4375vw;
  position: absolute;
  top: 19.166667vw;
  right: 1.666667vw;
  z-index: 3;
}
@media (max-aspect-ratio: 11/10) {
  #candy .section-living-card .text-content {
    width: 80vw;
    margin-top: 6.666667vw;
  }
  #candy .section-living-card .swiper-slide-4 .text-content {
    width: 80vw;
  }
  #candy .section-living-card .bottom-img {
    width: 25.277778vw;
    top: 50.833333vw;
    right: 5.555556vw;
    z-index: 3;
  }
}
#candy .section-Performance .section-container {
  display: flex;
  justify-content: space-between;
}
#candy .section-Performance .flex-content {
  width: 33.125vw;
  background-color: #F8F8F8;
  padding-top: 2.291667vw;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  opacity: 0;
}
#candy .section-Performance .flex-content .text-content {
  margin-bottom: 1.666667vw;
  width: 28.125vw;
}
#candy .section-Performance .flex-content .text-content .intro {
  font-size: 1.041667vw;
}
#candy .section-Performance .flex-content .bg-content {
  position: relative;
  width: 100%;
}
#candy .section-Performance .center-content {
  position: absolute;
  z-index: 3;
  top: 4.129167vw;
  left: 2.5vw;
  width: 10vw;
}
#candy .section-Performance .center-content .slide-intro {
  font-size: 1.041667vw;
}
#candy .section-Performance .center-content .gradient-headline {
  font-size: 4.166667vw;
  background-image: linear-gradient(to bottom, #A5C32B 0%, #A5C32B 20.5%, #124400 79.5%, #124400 100%);
  font-weight: bold;
}
#candy .section-Performance .center-content .gradient-headline span {
  font-size: 1.666667vw;
  background-image: linear-gradient(to bottom, #A5C32B 0%, #A5C32B 20.5%, #124400 79.5%, #124400 100%);
  margin-left: 0.416667vw;
  transform: translateY(-10%);
}
#candy .section-Performance .page-des {
  font-size: 0.729167vw;
  color: #6D6F72;
  position: absolute;
  bottom: 2.5vw;
  left: 2.5vw;
  z-index: 2;
}
@media (hover: hover) and (pointer: fine) {
  #candy .section-Performance .page-des {
    font-size: max(12px, 0.729167vw);
  }
}
@media (min-aspect-ratio: 11/10) {
  #candy .section-Performance .flex-content:nth-child(1) {
    transform: translateY(4.166667vw);
  }
  #candy .section-Performance .flex-content:nth-child(2) {
    transform: translateY(8.333333vw);
  }
  #candy .section-Performance.animated .flex-content {
    opacity: 1;
    transform: translateY(0);
    transition: 1.4s transform cubic-bezier(0.65, 0, 0.35, 1), 1.4s opacity cubic-bezier(0.65, 0, 0.35, 1);
  }
}
@media (max-aspect-ratio: 11/10) {
  #candy .section-Performance .section-container {
    display: block;
  }
  #candy .section-Performance .flex-content {
    width: 100%;
    padding-top: 5.555556vw;
    display: block;
    opacity: 1;
  }
  #candy .section-Performance .flex-content .text-content {
    margin: 0 auto;
    margin-bottom: 3.611111vw;
    width: 77.777778vw;
  }
  #candy .section-Performance .flex-content .text-content .h3 {
    font-size: 5.555556vw;
  }
  #candy .section-Performance .flex-content .text-content .intro {
    font-size: 4.444444vw;
    margin-top: 2.777778vw;
  }
  #candy .section-Performance .flex-content-2 {
    margin-top: 13.888889vw;
  }
  #candy .section-Performance .flex-content-2 .text-content {
    margin-bottom: 10.416667vw;
  }
  #candy .section-Performance .center-content {
    top: 16.833333vw;
    left: 6.666667vw;
    width: 30vw;
  }
  #candy .section-Performance .center-content .slide-intro {
    font-size: 3.333333vw;
  }
  #candy .section-Performance .center-content .gradient-headline {
    font-size: 11.111111vw;
  }
  #candy .section-Performance .center-content .gradient-headline span {
    font-size: 4.444444vw;
    margin-left: 1.111111vw;
  }
  #candy .section-Performance .page-des {
    font-size: 3.333333vw;
    left: 6.666667vw;
    bottom: 6.666667vw;
  }
}
#candy .section-footnote {
  font-size: 12px;
  padding-bottom: 80px;
}
#candy .section-footnote i {
  position: absolute;
  bottom: 0;
  display: none;
  width: 16px;
  height: 16px;
  cursor: pointer;
  transform: translateY(-4.2px);
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Ccircle cx='8' cy='8' r='8' fill='%23e7e7e8'/%3E%3Cpath d='M3.239,8.986,3.233,8.98a.688.688,0,0,1-.014-.972L5.942,5.28H.689A.685.685,0,0,1,.2,5.089l-.009-.01A.689.689,0,0,1,0,4.6V4.589a.7.7,0,0,1,.188-.48L.194,4.1a.681.681,0,0,1,.494-.213H5.911L3.225,1.178a.694.694,0,0,1,0-.979l0,0A.669.669,0,0,1,3.7,0a.772.772,0,0,1,.473.171l.021.017L7.838,3.845a1.151,1.151,0,0,1,.222.331l.008.019V4.2a1.036,1.036,0,0,1,.076.39v0a1.082,1.082,0,0,1-.312.76L4.212,8.976a.683.683,0,0,1-.487.2.715.715,0,0,1-.486-.194' transform='translate(3.411 12.076) rotate(-90)' fill='%23000'/%3E%3C/svg%3E") center/100% no-repeat;
}
@media (min-width: 1920px) {
  #candy .section-footnote {
    font-size: 0.625vw;
  }
  #candy .section-footnote i {
    width: 0.833333vw;
    height: 0.833333vw;
    transform: translateY(calc(-0.0833335vw - 1px));
  }
}
@media (max-aspect-ratio: 11/10) {
  #candy .section-footnote {
    font-size: 3.333333vw;
  }
  #candy .section-footnote i {
    width: 4.722222vw;
    height: 4.722222vw;
    transform: translateY(calc(-0.3055554vw - 1px));
  }
}
#candy .section-footnote ul,
#candy .section-footnote ol {
  font-size: inherit;
  padding-inline-start: 1.5em;
}
#candy .section-footnote li {
  position: relative;
  margin-top: 0.5em;
  margin-bottom: 0.5em;
  font-size: inherit;
  color: #85858a;
}
#candy .section-footnote li.current {
  color: #2A2A2C;
}
#candy .section-footnote li.current i {
  display: inline-block;
}
#candy .section-footnote li.asterisk {
  list-style-type: "*";
}
#candy .section-footnote li.disclaimer {
  list-style-type: none;
}
#candy .section-footnote ol li {
  list-style-type: decimal;
}
#candy .section-footnote a {
  font-size: inherit;
  text-decoration: underline;
  color: inherit;
  word-break: break-all;
}
#candy .section-footnote #footnote-pricing {
  margin-bottom: 0;
}
html[lang=zh-CN] #candy .section-footnote {
  font-size: 14px;
}
@media (max-aspect-ratio: 11/10) {
  html[lang=zh-CN] #candy .section-footnote {
    font-size: 3.333333vw;
  }
}
html[lang=zh-CN] #candy .section-footnote li {
  color: #000;
}
html[lang=zh-CN] #candy .section-footnote li.current {
  font-weight: 800;
  color: #000;
}/*# sourceMappingURL=main.css.map */