.blocker {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  z-index: 1;
  padding: 20px;
  box-sizing: border-box;
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.75);
  text-align: center;
}
.blocker:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: -0.05em;
}
.blocker.behind {
  background-color: transparent;
}
.modal {
  display: none;
  vertical-align: middle;
  position: relative;
  z-index: 2;
  max-width: 500px;
  box-sizing: border-box;
  width: 90%;
  background: #fff;
  padding: 15px 30px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -o-border-radius: 8px;
  -ms-border-radius: 8px;
  border-radius: 8px;
  -webkit-box-shadow: 0 0 10px #000;
  -moz-box-shadow: 0 0 10px #000;
  -o-box-shadow: 0 0 10px #000;
  -ms-box-shadow: 0 0 10px #000;
  box-shadow: 0 0 10px #000;
  text-align: left;
}
.modal a.close-modal {
  position: absolute;
  top: -12.5px;
  right: -12.5px;
  display: block;
  width: 30px;
  height: 30px;
  text-indent: -9999px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADwAAAA8CAYAAAA6/NlyAAAAAXNSR0IArs4c6QAAA3hJREFUaAXlm8+K00Acx7MiCIJH/yw+gA9g25O49SL4AO3Bp1jw5NvktC+wF88qevK4BU97EmzxUBCEolK/n5gp3W6TTJPfpNPNF37MNsl85/vN/DaTmU6PknC4K+pniqeKJ3k8UnkvDxXJzzy+q/yaxxeVHxW/FNHjgRSeKt4rFoplzaAuHHDBGR2eS9G54reirsmienDCTRt7xwsp+KAoEmt9nLaGitZxrBbPFNaGfPloGw2t4JVamSt8xYW6Dg1oCYo3Yv+rCGViV160oMkcd8SYKnYV1Nb1aEOjCe6L5ZOiLfF120EjWhuBu3YIZt1NQmujnk5F4MgOpURzLfAwOBSTmzp3fpDxuI/pabxpqOoz2r2HLAb0GMbZKlNV5/Hg9XJypguryA7lPF5KMdTZQzHjqxNPhWhzIuAruOl1eNqKEx1tSh5rfbxdw7mOxCq4qS68ZTjKS1YVvilu559vWvFHhh4rZrdyZ69Vmpgdj8fJbDZLJpNJ0uv1cnr/gjrUhQMuI+ANjyuwftQ0bbL6Erp0mM/ny8Fg4M3LtdRxgMtKl3jwmIHVxYXChFy94/Rmpa/pTbNUhstKV+4Rr8lLQ9KlUvJKLyG8yvQ2s9SBy1Jb7jV5a0yapfF6apaZLjLLcWtd4sNrmJUMHyM+1xibTjH82Zh01TNlhsrOhdKTe00uAzZQmN6+KW+sDa/JD2PSVQ873m29yf+1Q9VDzfEYlHi1G5LKBBWZbtEsHbFwb1oYDwr1ZiF/2bnCSg1OBE/pfr9/bWx26UxJL3ONPISOLKUvQza0LZUxSKyjpdTGa/vDEr25rddbMM0Q3O6Lx3rqFvU+x6UrRKQY7tyrZecmD9FODy8uLizTmilwNj0kraNcAJhOp5aGVwsAGD5VmJBrWWbJSgWT9zrzWepQF47RaGSiKfeGx6Szi3gzmX/HHbihwBser4B9UJYpFBNX4R6vTn3VQnez0SymnrHQMsRYGTr1dSk34ljRqS/EMd2pLQ8YBp3a1PLfcqCpo8gtHkZFHKkTX6fs3MY0blKnth66rKCnU0VRGu37ONrQaA4eZDFtWAu2fXj9zjFkxTBOo8F7t926gTp/83Kyzzcy2kZD6xiqxTYnHLRFm3vHiRSwNSjkz3hoIzo8lCKWUlg/YtGs7tObunDAZfpDLbfEI15zsEIY3U/x/gHHc/G1zltnAgAAAABJRU5ErkJggg==);
}
.modal-spinner {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  padding: 12px 16px;
  border-radius: 5px;
  background-color: #111;
  height: 20px;
}
.modal-spinner > div {
  border-radius: 100px;
  background-color: #fff;
  height: 20px;
  width: 2px;
  margin: 0 1px;
  display: inline-block;
  -webkit-animation: sk-stretchdelay 1.2s infinite ease-in-out;
  animation: sk-stretchdelay 1.2s infinite ease-in-out;
}
.modal-spinner .rect2 {
  -webkit-animation-delay: -1.1s;
  animation-delay: -1.1s;
}
.modal-spinner .rect3 {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
.modal-spinner .rect4 {
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
}
@-webkit-keyframes sk-stretchdelay {
  0%,
  100%,
  40% {
    -webkit-transform: scaleY(0.5);
  }
  20% {
    -webkit-transform: scaleY(1);
  }
}
@keyframes sk-stretchdelay {
  0%,
  100%,
  40% {
    transform: scaleY(0.5);
    -webkit-transform: scaleY(0.5);
  }
  20% {
    transform: scaleY(1);
    -webkit-transform: scaleY(1);
  }
}
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  position: relative;
  z-index: 1;
}
.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
  touch-action: manipulation;
  -moz-backface-visibility: hidden;
}
.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  -webkit-transform: translate3d(0, 0, 0);
}
.owl-carousel .owl-item,
.owl-carousel .owl-wrapper {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}
.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}
.owl-carousel .owl-item img {
  display: block;
  width: 100%;
}
.owl-carousel .owl-dots.disabled,
.owl-carousel .owl-nav.disabled {
  display: none;
}
.owl-carousel .owl-dot,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-nav .owl-prev {
  cursor: pointer;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel button.owl-dot {
  background: 0 0;
  color: inherit;
  border: none;
  padding: 0 !important;
  font: inherit;
}
.owl-carousel.owl-loaded {
  display: block;
}
.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}
.owl-carousel.owl-hidden {
  opacity: 0;
}
.owl-carousel.owl-refresh .owl-item {
  visibility: hidden;
}
.owl-carousel.owl-drag .owl-item {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.owl-carousel.owl-grab {
  cursor: move;
  cursor: grab;
}
.owl-carousel.owl-rtl {
  direction: rtl;
}
.owl-carousel.owl-rtl .owl-item {
  float: right;
}
.no-js .owl-carousel {
  display: block;
}
.owl-carousel .animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}
.owl-carousel .owl-animated-in {
  z-index: 0;
}
.owl-carousel .owl-animated-out {
  z-index: 1;
}
.owl-carousel .fadeOut {
  animation-name: fadeOut;
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.owl-height {
  transition: height 0.5s ease-in-out;
}
.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  transition: opacity 0.4s ease;
}
.owl-carousel .owl-item .owl-lazy:not([src]),
.owl-carousel .owl-item .owl-lazy[src^=""] {
  max-height: 0;
}
.owl-carousel .owl-item img.owl-lazy {
  transform-style: preserve-3d;
}
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}
.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url(/default/img/owl.video.play.png) no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: transform 0.1s ease;
}
.owl-carousel .owl-video-play-icon:hover {
  -ms-transform: scale(1.3, 1.3);
  transform: scale(1.3, 1.3);
}
.owl-carousel .owl-video-playing .owl-video-play-icon,
.owl-carousel .owl-video-playing .owl-video-tn {
  display: none;
}
.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity 0.4s ease;
}
.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
}
.owl-theme .owl-nav {
  margin-top: 10px;
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}
.owl-theme .owl-nav [class*="owl-"] {
  color: #fff;
  font-size: 14px;
  margin: 5px;
  padding: 4px 7px;
  background: #d6d6d6;
  display: inline-block;
  cursor: pointer;
  border-radius: 3px;
}
.owl-theme .owl-nav .disabled {
  opacity: 0.5;
  cursor: default;
}
.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 10px;
}
.owl-theme .owl-dots {
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}
.owl-theme .owl-dots .owl-dot {
  display: inline-block;
  zoom: 1;
}
.owl-theme .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 5px 7px;
  background: #a9f0f7;
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity 0.2s ease;
  border-radius: 30px;
}
.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: #0eb4c3;
}
.flipdown.flipdown__theme-dark {
  font-family: sans-serif;
  font-weight: 700;
}
.flipdown.flipdown__theme-dark .rotor-group-heading:before {
  color: #000;
}
.flipdown.flipdown__theme-dark
  .rotor-group:nth-child(n + 2):nth-child(-n + 3):after,
.flipdown.flipdown__theme-dark
  .rotor-group:nth-child(n + 2):nth-child(-n + 3):before {
  background-color: #151515;
}
.flipdown.flipdown__theme-dark .rotor,
.flipdown.flipdown__theme-dark .rotor-leaf-front,
.flipdown.flipdown__theme-dark .rotor-top {
  color: #fff;
  background-color: #151515;
}
.flipdown.flipdown__theme-dark .rotor-bottom,
.flipdown.flipdown__theme-dark .rotor-leaf-rear {
  color: #efefef;
  background-color: #202020;
}
.flipdown.flipdown__theme-dark .rotor:after {
  border-top: solid 1px #151515;
}
.flipdown.flipdown__theme-light {
  font-family: sans-serif;
  font-weight: 700;
}
.flipdown.flipdown__theme-light .rotor-group-heading:before {
  color: #eee;
}
.flipdown.flipdown__theme-light
  .rotor-group:nth-child(n + 2):nth-child(-n + 3):after,
.flipdown.flipdown__theme-light
  .rotor-group:nth-child(n + 2):nth-child(-n + 3):before {
  background-color: #ddd;
}
.flipdown.flipdown__theme-light .rotor,
.flipdown.flipdown__theme-light .rotor-leaf-front,
.flipdown.flipdown__theme-light .rotor-top {
  color: #222;
  background-color: #ddd;
}
.flipdown.flipdown__theme-light .rotor-bottom,
.flipdown.flipdown__theme-light .rotor-leaf-rear {
  color: #333;
  background-color: #eee;
}
.flipdown.flipdown__theme-light .rotor:after {
  border-top: solid 1px #222;
}
.flipdown {
  overflow: visible;
  width: 510px;
  height: 110px;
}
.flipdown .rotor-group {
  position: relative;
  float: left;
  padding-right: 30px;
}
.flipdown .rotor-group:last-child {
  padding-right: 0;
}
.flipdown .rotor-group-heading:before {
  display: block;
  height: 30px;
  line-height: 30px;
  text-align: center;
}
.flipdown .rotor-group:nth-child(1) .rotor-group-heading:before {
  content: attr(data-before);
}
.flipdown .rotor-group:nth-child(2) .rotor-group-heading:before {
  content: attr(data-before);
}
.flipdown .rotor-group:nth-child(3) .rotor-group-heading:before {
  content: attr(data-before);
}
.flipdown .rotor-group:nth-child(4) .rotor-group-heading:before {
  content: attr(data-before);
}
.flipdown .rotor-group:nth-child(n + 2):nth-child(-n + 3):before {
  content: "";
  position: absolute;
  bottom: 20px;
  left: 115px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.flipdown .rotor-group:nth-child(n + 2):nth-child(-n + 3):after {
  content: "";
  position: absolute;
  bottom: 50px;
  left: 115px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.flipdown .rotor {
  position: relative;
  float: left;
  width: 50px;
  height: 80px;
  margin: 0 5px 0 0;
  border-radius: 4px;
  font-size: 4rem;
  text-align: center;
  perspective: 200px;
}
.flipdown .rotor:last-child {
  margin-right: 0;
}
.flipdown .rotor-bottom,
.flipdown .rotor-top {
  overflow: hidden;
  position: absolute;
  width: 50px;
  height: 40px;
}
.flipdown .rotor-leaf {
  z-index: 1;
  position: absolute;
  width: 50px;
  height: 80px;
  transform-style: preserve-3d;
  transition: transform 0s;
}
.flipdown .rotor-leaf.flipped {
  transform: rotateX(-180deg);
  transition: all 0.5s ease-in-out;
}
.flipdown .rotor-leaf-front,
.flipdown .rotor-leaf-rear {
  overflow: hidden;
  position: absolute;
  width: 50px;
  height: 40px;
  margin: 0;
  transform: rotateX(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.flipdown .rotor-leaf-front {
  line-height: 80px;
  border-radius: 4px 4px 0 0;
}
.flipdown .rotor-leaf-rear {
  line-height: 0;
  border-radius: 0 0 4px 4px;
  transform: rotateX(-180deg);
}
.flipdown .rotor-top {
  line-height: 80px;
  border-radius: 4px 4px 0 0;
}
.flipdown .rotor-bottom {
  bottom: 0;
  line-height: 0;
  border-radius: 0 0 4px 4px;
}
.flipdown .rotor:after {
  content: "";
  z-index: 2;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 40px;
  border-radius: 0 0 4px 4px;
}
@media (max-width: 550px) {
  .flipdown {
    width: 312px;
    height: 70px;
  }
  .flipdown .rotor {
    font-size: 2.2rem;
    margin-right: 3px;
  }
  .flipdown .rotor,
  .flipdown .rotor-bottom,
  .flipdown .rotor-leaf,
  .flipdown .rotor-leaf-front,
  .flipdown .rotor-leaf-rear,
  .flipdown .rotor-top,
  .flipdown .rotor:after {
    width: 30px;
  }
  .flipdown .rotor-group {
    padding-right: 20px;
  }
  .flipdown .rotor-group:last-child {
    padding-right: 0;
  }
  .flipdown .rotor-group-heading:before {
    font-size: 0.8rem;
    height: 20px;
    line-height: 20px;
  }
  .flipdown .rotor-group:nth-child(n + 2):nth-child(-n + 3):after,
  .flipdown .rotor-group:nth-child(n + 2):nth-child(-n + 3):before {
    left: 69px;
  }
  .flipdown .rotor-group:nth-child(n + 2):nth-child(-n + 3):before {
    bottom: 13px;
    height: 8px;
    width: 8px;
  }
  .flipdown .rotor-group:nth-child(n + 2):nth-child(-n + 3):after {
    bottom: 29px;
    height: 8px;
    width: 8px;
  }
  .flipdown .rotor-leaf-front,
  .flipdown .rotor-top {
    line-height: 50px;
  }
  .flipdown .rotor,
  .flipdown .rotor-leaf {
    height: 50px;
  }
  .flipdown .rotor-bottom,
  .flipdown .rotor-leaf-front,
  .flipdown .rotor-leaf-rear,
  .flipdown .rotor-top,
  .flipdown .rotor:after {
    height: 25px;
  }
}
html {
  height: 100%;
  scroll-behavior: smooth;
  font-size: 15px;
}
body,
html {
  font-family: "Noto Sans HK", GothamRndBook, -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding: 0;
  line-height: 1.5rem;
  box-sizing: border-box;
  color: #fff;
  text-align: center;
  min-height: 100%;
  background: #0370c3;
  font-weight: 600;
}
body input,
html input {
  font-family: "Noto Sans HK", GothamRndBook, -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}
body input:lang(zh-CN),
html input:lang(zh-CN) {
  font-family: "Noto Sans SC", ar-yuangbstd, GothamRndBook, -apple-system,
    BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}
body input:lang(en-US),
html input:lang(en-US) {
  font-family: "Noto Sans", ar-yuangbstd, GothamRndBook, -apple-system,
    BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}
body:lang(zh-HK),
html:lang(zh-HK) {
  font-family: "Noto Sans HK", ar-yuanb5std, GothamRndBook, -apple-system,
    BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}
body:lang(zh-CN),
html:lang(zh-CN) {
  font-family: "Noto Sans SC", ar-yuangbstd, GothamRndBook, -apple-system,
    BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}
body:lang(en-US),
html:lang(en-US) {
  font-family: "Noto Sans", ar-yuangbstd, GothamRndBook, -apple-system,
    BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}
body .bold,
body h1,
body h2,
body h3,
body h4,
body h5,
html .bold,
html h1,
html h2,
html h3,
html h4,
html h5 {
  font-weight: 700;
}
body .medium,
html .medium {
  font-weight: 400;
}
body .regular,
html .regular {
  font-weight: 400;
}
body a,
body a:active,
body a:hover,
body a:link,
body a:visited,
html a,
html a:active,
html a:hover,
html a:link,
html a:visited {
  color: #fff;
  text-decoration: none;
}
:focus {
  outline: 0;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
  user-select: none;
}
a,
a:focus,
input,
input:focus,
label,
label:focus,
textarea,
textarea:focus {
  border: 0;
  -webkit-user-select: text;
  -khtml-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
  -webkit-tap-highlight-color: transparent;
}
input {
  border-radius: 0;
  -webkit-appearance: none;
}
input[type="hidden"] {
  display: none;
}
a:focus {
  outline: 0;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
  user-select: none;
}
button:disabled,
button[disabled] {
  opacity: 0.5;
}
h1,
h2,
h3,
h4,
h5,
p,
ul {
  margin: 0;
  padding: 0;
}
h1,
h2,
h3,
h4,
h5 {
  font-weight: 900;
}
p {
  margin: 0;
  padding: 0;
}
.clearfix .left {
  float: left;
}
.clearfix .right {
  float: right;
}
.clearfix::after {
  content: "";
  clear: both;
  display: table;
}
.hidden {
  display: none !important;
}
.clickable {
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
  user-select: none;
}
.clickable:focus {
  outline: 0;
}
a {
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
  user-select: none;
}
a:focus {
  outline: 0;
}
img {
  display: block;
  margin: 0 auto;
  width: 100%;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
}
.desktop {
  display: block;
}
.mobile {
  display: none;
}
.blocker {
  z-index: 10;
  padding: 0;
  background-color: rgba(0, 0, 0, 0.8);
}
.blocker .modal {
  box-shadow: 0 0 3px #fff;
  padding: 30px 0;
}
body {
  touch-action: none;
}
body #desktop-check,
body #landscape-check {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 9999;
}
body #landscape-check {
  background: #fff;
}
@media only screen and (max-width: 767px) {
  .desktop {
    display: none;
  }
  .mobile {
    display: block;
  }
}
@media screen and (orientation: landscape) and (min-width: 500px) {
  .is-mobile section#landscape-check {
    display: block;
  }
}
@media screen and (min-aspect-ratio: 1.44444444) {
  .is-mobile .main {
    display: none;
  }
  .is-mobile section#landscape-check {
    display: block;
  }
}
body.privacy-page,
body.terms-page {
  font-size: 15px;
  line-height: 24px;
  word-break: break-word;
  text-align: left;
}
body.privacy-page #app,
body.terms-page #app {
  padding: 40px 20px;
  box-sizing: border-box;
  font-weight: 400;
}
body.privacy-page #app h1,
body.terms-page #app h1 {
  text-align: center;
  padding-bottom: 30px;
}
body.privacy-page #app p,
body.terms-page #app p {
  padding-bottom: 20px;
}
body.privacy-page #app ul,
body.terms-page #app ul {
  margin-left: 20px;
  padding-bottom: 20px;
}
body.privacy-page #app .table-wrapper,
body.terms-page #app .table-wrapper {
  overflow: scroll;
}
body.index-page .fade-animation {
  opacity: 0;
}
body.index-page .fade-animation.fade-show {
  animation: elefadeIn 0.75s 1 ease-in-out forwards;
}
body.index-page .desktop {
  display: none;
}
body.index-page .mobile {
  display: block;
}
body.index-page .container {
  width: 100%;
  padding-left: 5%;
  padding-right: 5%;
  box-sizing: border-box;
}
body.index-page .absolute-center {
  margin: 0 auto;
  left: 0;
  right: 0;
  position: absolute;
}
body.index-page #modal-news {
  width: calc(100% - 40px);
  padding: 0;
  max-width: 600px;
}
body.index-page #modal-news img {
  width: 100%;
  max-width: 600px;
}
body.index-page #modal-e1 .owl-item.active {
  transform: scale(1.01);
}
body.index-page a,
body.index-page a:active,
body.index-page a:hover,
body.index-page a:link,
body.index-page a:visited {
  color: #fff;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
  user-select: none;
}
body.index-page a:active:focus,
body.index-page a:focus,
body.index-page a:hover:focus,
body.index-page a:link:focus,
body.index-page a:visited:focus {
  outline: 0;
}
body.index-page #app {
  overflow-x: hidden;
}
body.index-page .blocker {
  z-index: 800;
  background-color: rgba(5, 58, 114, 0.82);
}
body.index-page .modal {
  border-radius: 0;
  padding: 50px 20px;
  background-color: transparent;
  box-shadow: none;
}
body.index-page .modal .owl-theme .owl-nav {
  margin-top: 0;
}
body.index-page .modal .owl-theme .owl-nav button {
  border-radius: 0;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
  user-select: none;
  margin: 0;
  position: absolute;
  top: 48%;
  transform: translateY(-50%);
  width: 41px;
  height: 41px;
}
body.index-page .modal .owl-theme .owl-nav button:focus {
  outline: 0;
}
body.index-page .modal .owl-theme .owl-nav button span {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: url(../img/icon-arrow2.png) no-repeat center center/50%;
  font-size: 0;
}
body.index-page .modal .owl-theme .owl-nav button.owl-prev {
  left: 0;
}
body.index-page .modal .owl-theme .owl-nav button.owl-prev span {
  transform: rotate(90deg);
}
body.index-page .modal .owl-theme .owl-nav button.owl-next {
  right: 0;
}
body.index-page .modal .owl-theme .owl-nav button.owl-next span {
  transform: rotate(270deg);
}
body.index-page .modal .owl-theme .owl-dots {
  position: relative;
  top: 5px;
}
body.index-page .modal .owl-theme .owl-dots .owl-dot {
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
  user-select: none;
}
body.index-page .modal .owl-theme .owl-dots .owl-dot:focus {
  outline: 0;
}
body.index-page .modal .owl-theme .owl-dots .owl-dot span {
  margin: 5px;
  width: 8px;
  height: 8px;
  background: 0 0;
  border: 1px solid #fff;
  border-radius: 50%;
}
body.index-page .modal .owl-theme .owl-dots .owl-dot.active span,
body.index-page .modal .owl-theme .owl-dots .owl-dot:hover span {
  background: #fff;
}
body.index-page .modal .events-details {
  font-size: 0.8rem;
  line-height: 1.4rem;
  font-weight: 400;
}
body.index-page .modal .events-details h5 {
  font-size: 1.2rem;
  line-height: 1.8rem;
  padding-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 800;
}
body.index-page .modal .events-details .content {
  padding: 20px 0 0;
}
body.index-page .modal .events-details p.bold {
  font-size: 1.2rem;
  line-height: 1.8rem;
  padding-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 800;
}
body.index-page .modal .events-details p.remark {
  padding-bottom: 20px;
}
body.index-page .modal .events-details p.remark sup {
  vertical-align: middle;
  position: relative;
  top: -0.1rem;
}
body.index-page .modal .events-details p.pd20 {
  padding-bottom: 20px;
}
body.index-page .modal .events-details ul {
  margin-left: 20px;
  padding-bottom: 20px;
}
body.index-page .modal .events-details ul li {
  padding-bottom: 10px;
}
body.index-page .modal .events-details p.remark2 {
  text-align: center;
  margin-top: 10px;
}
body.index-page .modal .events-details p.remark2 a.btn {
  background: 0 0;
  text-decoration: underline;
  line-height: 1.3rem;
  width: fit-content;
  margin: 20px auto 3px;
}
body.index-page .modal .events-details .btn-full,
body.index-page .modal .events-details a.btn {
  font-size: 1.1rem;
  line-height: 3rem;
  background: #ea9cbf;
  border-radius: 2rem;
  max-width: 300px;
  display: block;
  margin: 0 auto;
  transition: all 0.4s ease;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: default;
}
body.index-page .modal .events-details .btn-full:lang(zh-CN),
body.index-page .modal .events-details .btn-full:lang(zh-HK),
body.index-page .modal .events-details a.btn:lang(zh-CN),
body.index-page .modal .events-details a.btn:lang(zh-HK) {
  padding-bottom: 1px;
}
body.index-page .modal .events-details .btn-full:lang(en-US),
body.index-page .modal .events-details a.btn:lang(en-US) {
  letter-spacing: 1px;
}
body.index-page .modal .events-details .btn-full:hover,
body.index-page .modal .events-details a.btn:hover {
  background: #e16f9a;
}
body.index-page .modal .events-details a.btn {
  cursor: pointer;
}
body.index-page .modal .close-modal {
  width: 23px;
  height: 23px;
  top: 15px;
  right: 15px;
  background: url(../img/common/close.png) no-repeat center center/contain;
}
body.index-page header {
  width: 100%;
  padding-left: 5%;
  padding-right: 5%;
  box-sizing: border-box;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 101;
  height: 70px;
}
body.index-page header #toggle {
  right: 5%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
  user-select: none;
  cursor: pointer;
  z-index: 2;
}
body.index-page header #toggle:focus {
  outline: 0;
}
body.index-page header #toggle span {
  width: 100%;
  height: 3px;
  background: #fff;
  margin: 8px 0;
  transition: all 0.4s ease;
  border-radius: 4px;
  display: block;
}
body.index-page header #toggle.opened span {
  background: #0370c3;
}
body.index-page header #toggle.opened span:nth-child(1) {
  transform: translate(0, 6px) rotate(-45deg);
}
body.index-page header #toggle.opened span:nth-child(2) {
  transform: translate(0, -5px) rotate(45deg);
}
body.index-page header #toggle.opened ~ #menu {
  right: 0;
}
body.index-page header #menu {
  width: 100%;
  height: 100%;
  background: #fff;
  position: fixed;
  right: -100%;
  transition: 0.4s ease;
  z-index: 1;
  overflow: scroll;
}
body.index-page header #menu .bottom {
  position: absolute;
  left: 5%;
  bottom: 20px;
}
body.index-page header #menu .bottom .langs a {
  font-size: 1.2rem;
  line-height: 2rem;
  opacity: 0.4;
  color: #0370c3;
  font-weight: 400;
  transition: all 0.4s ease;
  letter-spacing: 2px;
}
body.index-page header #menu .bottom .langs a:lang(en-US) {
  letter-spacing: 1px;
}
body.index-page header #menu .bottom .langs a.active,
body.index-page header #menu .bottom .langs a:hover {
  font-weight: 800;
  text-decoration: underline;
  opacity: 1;
}
body.index-page header #menu .bottom .langs a:first-child {
  margin-right: 15px;
}
body.index-page header #menu .bottom .langs a:last-child {
  margin-left: 15px;
}
body.index-page header #menu .bottom .sms {
  padding-top: 20px;
  text-align: left;
}
body.index-page header #menu .bottom .sms a.ig {
  display: inline-block;
  width: 21px;
  height: 21px;
  background: url(../img/icon-ig2.png) no-repeat center center/contain;
  margin-right: 10px;
}
body.index-page header #menu .bottom .sms a.fb {
  display: inline-block;
  width: 21px;
  height: 21px;
  background: url(../img/icon-fb2.png) no-repeat center center/contain;
  margin-right: 10px;
}
body.index-page header #menu .bottom .sms a.xiaohongshu {
  display: inline-block;
  width: 21px;
  height: 21px;
  background: url(../img/icon-xiaohongshu2.png) no-repeat center center/contain;
}
body.index-page header #menu .inner {
  width: 100%;
  padding-left: 5%;
  padding-right: 5%;
  color: #0370c3;
  text-align: left;
  padding-right: 0;
  padding-top: 20px;
  box-sizing: border-box;
}
body.index-page header #menu .inner .dora {
  display: block;
  width: 81px;
  height: 60px;
  background: url(../img/logo.png) no-repeat center center/contain;
  position: relative;
  margin-bottom: 20px;
}
body.index-page header #menu .inner p {
  font-size: 0.9375rem;
  opacity: 0.5;
  padding: 30px 0 10px;
}
body.index-page header #menu .inner ul {
  padding: 0 0 30px;
  list-style: none;
  overflow: scroll;
  height: calc(100vh - 220px);
  letter-spacing: 2px;
}
body.index-page header #menu .inner ul:lang(en-US) {
  letter-spacing: 1px;
  font-weight: 800;
}
body.index-page header #menu .inner ul li {
  padding-bottom: 10px;
}
body.index-page header #menu .inner ul li:last-child {
  padding-bottom: 0;
}
body.index-page header #menu .inner ul li.underline a {
  text-decoration: underline;
}
body.index-page header #menu .inner ul li.sub {
  padding-left: 25px;
  box-sizing: border-box;
  padding-bottom: 0;
  height: 0;
  transition: height 0.4s linear;
  overflow: hidden;
}
body.index-page header #menu .inner ul li.sub.s2 {
  height: 78px;
}
body.index-page header #menu .inner ul li.sub.s2 a {
  display: inline-block;
}
body.index-page header #menu .inner ul li.sub.s2 a:last-child {
  padding-bottom: 0;
}
body.index-page header #menu .inner ul li.sub.moving a {
  display: inline-block;
}
body.index-page header #menu .inner ul li.sub a {
  display: none;
  font-size: 1.2rem;
  line-height: 2rem;
  padding-bottom: 10px;
  position: relative;
}
body.index-page header #menu .inner ul li.sub a::after {
  content: "";
  position: absolute;
  width: 1.4rem;
  height: 1.4rem;
  opacity: 0;
  top: 0.4rem;
  left: -25px;
  background: url(../img/icon-arrow.png) no-repeat center center/40%;
}
body.index-page header #menu .inner ul li.sub a:focus::after,
body.index-page header #menu .inner ul li.sub a:hover::after {
  opacity: 1;
}
body.index-page header #menu .inner ul li a {
  font-size: 1.2rem;
  line-height: 2rem;
}
body.index-page header #menu .inner ul li .toggle {
  display: inline-block;
  width: 1.2rem;
  height: 1.2rem;
  margin-top: -1rem;
  margin-left: 2px;
  position: relative;
  top: 0.2rem;
  cursor: pointer;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
  user-select: none;
}
body.index-page header #menu .inner ul li .toggle:focus {
  outline: 0;
}
body.index-page header #menu .inner ul li .toggle.clicked:after {
  transform: translate3d(-50%, -50%, 0) scale(0.5) rotate(180deg);
}
body.index-page header #menu .inner ul li .toggle:after {
  transition: transform 0.4s ease;
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0) scale(0.5) rotate(0);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 1rem 0.7rem 0 0.7rem;
  border-color: #0370c3 transparent transparent transparent;
}
body.index-page header #menu .inner a,
body.index-page header #menu .inner a:active,
body.index-page header #menu .inner a:hover,
body.index-page header #menu .inner a:link,
body.index-page header #menu .inner a:visited {
  color: #0370c3;
}
body.index-page footer {
  width: 100%;
  padding-left: 5%;
  padding-right: 5%;
  box-sizing: border-box;
  padding-top: 50px;
  padding-bottom: 50px;
  font-size: 0.8rem;
}
body.index-page footer .row .left {
  float: left;
}
body.index-page footer .row .right {
  float: right;
}
body.index-page footer .row::after {
  content: "";
  clear: both;
  display: table;
}
body.index-page footer .row .left {
  float: left;
  position: relative;
  padding-left: 5px;
}
body.index-page footer .row .left span {
  padding-right: 2px;
}
body.index-page footer .row .right {
  float: right;
}
body.index-page footer .row a:hover {
  text-decoration: underline;
}
body.index-page footer .row a:first-child {
  margin-right: 10px;
}
body.index-page #shop-now {
  width: 50px;
  height: 100px;
  background: #ea9cbf url(../img/points-to-note-tc.png) no-repeat right 11px
    center/17px;
  position: fixed;
  right: 0;
  top: 80px;
  border-radius: 50px 0 0 50px;
  transition: all 0.4s ease;
  z-index: 100;
}
body.index-page #shop-now:lang(zh-CN) {
  background: #ea9cbf url(../img/points-to-note-sc.png) no-repeat right 11px
    center/17px;
}
body.index-page #shop-now:lang(en-US) {
  background: #ea9cbf url(../img/points-to-note-en.png) no-repeat right -3px center/47px;
}
body.index-page #shop-now:hover {
  background-color: #e16f9a;
}
body.index-page #create-now {
  width: 50px;
  height: 100px;
  background: #ffd701 url(../img/btn-create-tc.png) no-repeat right 12px
    center/15px;
  position: fixed;
  right: 0;
  top: 80px;
  border-radius: 50px 0 0 50px;
  transition: all 0.4s ease;
  z-index: 100;
}
body.index-page #create-now:lang(zh-CN) {
  background: #ffd701 url(../img/btn-create-sc.png) no-repeat right 12px
    center/15px;
}
body.index-page #create-now:lang(en-US) {
  background: #ffd701 url(../img/btn-create-en.png) no-repeat right -1px center/48px;
}
body.index-page #create-now:hover {
  background-color: #fff;
}
body.index-page section {
  position: relative;
  padding: 50px 0;
  width: 100%;
  padding-left: 5%;
  padding-right: 5%;
  box-sizing: border-box;
}
body.index-page section h2 {
  color: #fff;
  font-size: 2rem;
  line-height: 2.5rem;
  padding-bottom: 25px;
  font-weight: 800;
  letter-spacing: 2px;
}
body.index-page section h3 {
  color: #0370c3;
  font-size: 1.25rem;
  line-height: 2rem;
  padding-bottom: 5px;
}
body.index-page section h5 {
  color: #fff;
  font-size: 1.5rem;
  line-height: 2rem;
  padding-bottom: 25px;
  font-weight: 800;
}
body.index-page section a.btn {
  width: 100%;
  font-size: 0.9375rem;
  line-height: 1.45rem;
  text-align: center;
  padding: 10px 0 10px;
  display: block;
  border: 1px solid #fff;
  border-radius: 5px;
  box-sizing: border-box;
  text-transform: uppercase;
}
body.index-page section a.btn.disabled {
  background: #f2f2f2;
  border: 1px solid #f2f2f2;
  color: #d1d1d1;
}
body.index-page section .owl-theme .owl-nav {
  margin-top: 0;
}
body.index-page section .owl-theme .owl-nav button {
  border-radius: 0;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
  user-select: none;
  margin: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 41px;
  height: 41px;
}
body.index-page section .owl-theme .owl-nav button:focus {
  outline: 0;
}
body.index-page section .owl-theme .owl-nav button span {
  display: block;
  width: 100%;
  height: 100%;
  background: #0370c3;
  border: 1px solid #fff;
  border-radius: 50%;
}
body.index-page section .owl-theme .owl-nav button.owl-prev {
  left: -20px;
}
body.index-page section .owl-theme .owl-nav button.owl-next {
  right: -20px;
}
body.index-page section .owl-theme .owl-nav button.owl-next span {
  transform: rotate(180deg);
}
body.index-page section .owl-theme .owl-dots {
  position: absolute;
  bottom: 0;
  right: 10px;
}
body.index-page section .owl-theme .owl-dots .owl-dot {
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
  user-select: none;
}
body.index-page section .owl-theme .owl-dots .owl-dot:focus {
  outline: 0;
}
body.index-page section .owl-theme .owl-dots .owl-dot span {
  margin: 5px;
  width: 12px;
  height: 11px;
  background: #0370c3;
  border: 1px solid #fff;
  border-radius: 50%;
}
body.index-page section .owl-theme .owl-dots .owl-dot.active span,
body.index-page section .owl-theme .owl-dots .owl-dot:hover span {
  background: #fff;
}
body.index-page section#home {
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 0;
  padding-top: 35px;
}
body.index-page section#home .logo {
  width: 18vw;
  height: 13.14110429vw;
  max-width: 105.95px;
  max-height: 77.35px;
  z-index: 10;
  background: url(../img/logo.png) no-repeat center center/contain;
  position: absolute;
  top: 20px;
  left: 5%;
}
body.index-page section#home .mobile .kv {
  margin-top: 65px;
  width: 95%;
  margin-bottom: 10px;
}
body.index-page section#home .tagline {
  width: 50%;
  max-width: 240px;
  position: relative;
  top: 50px;
}
body.index-page section#home .kv {
  max-width: 463px;
  margin: 0 auto;
  margin-top: 5%;
  position: relative;
}
body.index-page section#home .kv::after {
  display: none;
  content: "";
  position: absolute;
  width: 80px;
  height: 80px;
  top: 0;
  left: 10px;
  z-index: 10;
  opacity: 0;
  animation: popup1a 0.4s 1s ease 1 forwards,
    popup1b 1s 1.4s linear infinite forwards;
}
body.index-page section#home .kv:lang(zh-HK)::after {
  background: url(../img/popup-icon-tc.png) no-repeat center center/contain;
}
body.index-page section#home .kv:lang(zh-CN)::after {
  background: url(../img/popup-icon-sc.png) no-repeat center center/contain;
}
body.index-page section#home .kv:lang(en-US)::after {
  background: url(../img/popup-icon-en.png) no-repeat center center/contain;
}
body.index-page section#home .kv .btn-points-to-note {
  width: 20%;
  height: 32%;
  position: absolute;
  top: 18%;
  right: -6%;
  z-index: 5;
  opacity: 0;
  animation: popup1a 0.4s 1.2s ease 1 forwards;
}
body.index-page section#home .kv .btn-points-to-note.m {
  top: -26%;
  right: 2%;
  width: 25%;
  height: 34%;
}
body.index-page section#home .kv .btn-points-to-note:lang(zh-HK) {
  background: url(../img/icon-points-to-note-tc.png) no-repeat center
    center/contain;
}
body.index-page section#home .kv .btn-points-to-note:lang(zh-CN) {
  background: url(../img/icon-points-to-note-sc.png) no-repeat center
    center/contain;
}
body.index-page section#home .kv .btn-points-to-note:lang(en-US) {
  background: url(../img/icon-points-to-note-en.png) no-repeat center
    center/contain;
}
body.index-page section#home .kv img {
  opacity: 0;
  animation: kv 0.6s 0.2s 1 ease forwards;
  animation-delay: 0s;
  width: 80%;
}
body.index-page section#home .kv img:not(.kv1) {
  position: absolute;
  top: 0;
  left: 0;
}
body.index-page section#home .kv .kv1 {
  animation-delay: 0s;
  position: relative;
  z-index: 1;
}
body.index-page section#home .kv .kv2 {
  animation-delay: 0.3s;
}
body.index-page section#home .kv .kv3 {
  animation-delay: 0.5s;
}
body.index-page section#home .kv .kv4 {
  animation-delay: 0.7s;
  z-index: 2;
}
body.index-page section#home .kv .kv5 {
  animation-delay: 0.9s;
  z-index: 2;
}
body.index-page section#home .kv-desktop {
  max-width: 919px;
  width: 80%;
}
body.index-page section#home .kv-desktop.kv-tagline {
  position: relative;
  z-index: 2;
  max-width: 808px;
  padding-top: 20px;
}
body.index-page section#home .kv-tagline2 {
  position: relative;
  z-index: 2;
  width: 60%;
  max-width: 594px;
  padding-top: 35px;
}
body.index-page section#home .kv-tagline2:lang(en-US) {
  max-width: 1055px;
}
body.index-page section#home h2 {
  color: #00c1ff;
  padding-bottom: 0;
  position: relative;
  top: -10px;
  margin-top: -13px;
}
body.index-page section#home .announcement {
  background: url(../img/announcement.png) no-repeat center center/contain;
  padding-top: 28px;
  margin-top: 17px;
  margin-left: 5%;
  margin-right: 5%;
}
body.index-page section#home .flipdown {
  width: 330px;
  padding-top: 40px;
  font-family: inherit;
  margin: 0 auto;
  transform: scale(0.7);
  transform-origin: left;
  position: relative;
  top: -6px;
  left: 0;
}
body.index-page
  section#home
  .flipdown.flipdown__theme-dark
  .rotor-group:nth-child(1) {
  display: none;
}
body.index-page
  section#home
  .flipdown.flipdown__theme-dark
  .rotor-group:nth-child(n + 2):nth-child(-n + 3):after,
body.index-page
  section#home
  .flipdown.flipdown__theme-dark
  .rotor-group:nth-child(n + 2):nth-child(-n + 3):before {
  background: #fff;
  left: 67px;
}
body.index-page section#home .flipdown.flipdown__theme-dark .rotor {
  background: 0 0;
  padding-bottom: 5px;
  padding-left: 5px;
  width: 25px;
  margin-right: 0;
  font-size: 2.7rem;
}
body.index-page section#home .flipdown.flipdown__theme-dark .rotor::after {
  display: none;
}
body.index-page section#home .flipdown.flipdown__theme-dark .rotor:last-child {
  padding-right: 5px;
  padding-left: 0;
}
body.index-page section#home .flipdown.flipdown__theme-dark .rotor-leaf {
  display: none;
}
body.index-page section#home .flipdown.flipdown__theme-dark .rotor-top {
  display: none;
}
body.index-page section#home .flipdown.flipdown__theme-dark .rotor-bottom {
  height: 100%;
  line-height: 50px;
  background: 0 0;
  width: 25px;
}
body.index-page section#home .flipdown .rotor-group-heading {
  position: relative;
  top: -3px;
  display: none;
}
body.index-page section#home .flipdown .rotor-group {
  border-radius: 10px;
  border: 1px solid #fff;
  padding-right: 0;
  margin-right: 20px;
}
body.index-page section#next {
  padding-bottom: 30px;
}
body.index-page section#next .wrapper {
  width: 70%;
  max-width: 811px;
  margin: 0 auto;
  position: relative;
}
body.index-page section#next .wrapper::after {
  position: absolute;
  content: "";
  width: 20%;
  height: 32%;
  top: 56%;
  transform: translateY(-50%) scale(0.4);
  left: 0;
  right: 0;
  margin: 0 auto;
  background: url(../img/next-dora.png) no-repeat center center/contain;
  transition: all 2s ease-in-out;
}
body.index-page section#next .wrapper.fade-show::after {
  transform: translateY(-50%) scale(1.2);
}
body.index-page section#tickets {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0;
  margin-top: -5px;
}
body.index-page section#tickets .btn-early {
  font-size: 1.1rem;
  line-height: 3rem;
  border-radius: 2rem;
  width: fit-content;
  max-width: 400px;
  display: block;
  margin: 0 auto;
  transition: all 0.4s ease;
  border: 1px solid #fff;
  position: relative;
  z-index: 1;
  letter-spacing: 2px;
  padding: 0 30px;
}
body.index-page section#tickets .btn-early:lang(zh-CN),
body.index-page section#tickets .btn-early:lang(zh-HK) {
  padding-bottom: 1px;
}
body.index-page section#tickets .btn-early:lang(en-US) {
  width: 90%;
  box-sizing: border-box;
  max-width: 370px;
  letter-spacing: 1px;
}
body.index-page section#tickets .btn-early:hover {
  background: #fff;
  color: #0370c3;
}
body.index-page section#tickets p {
  font-size: 0.8rem;
  line-height: 1.4rem;
  font-weight: 400;
  padding-top: 25px;
  padding-bottom: 50px;
  position: relative;
  z-index: 1;
  width: 90%;
  margin: 0 auto;
}
body.index-page section#tickets p.extra {
  font-size: 0.8rem;
  line-height: 1.4rem;
  padding: 5px 0 40px 0;
}
body.index-page section#tickets .slidesshow-wrapper {
  padding-bottom: 50px;
  padding-top: 20px;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
}
body.index-page section#tickets #animated-thumbnails {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
  align-items: center;
  width: 100%;
  overflow: hidden;
}
body.index-page section#tickets #animated-thumbnails .gallery-item {
  width: 50%;
  display: block;
  position: relative;
}
body.index-page section#tickets #animated-thumbnails .gallery-item:first-child {
  width: 100%;
}
body.index-page section#tickets .gallery-item {
  margin: 0 auto;
  box-sizing: border-box;
}
body.index-page section#tickets .gallery-item.hide {
  display: none;
}
body.index-page section#tickets .top {
  position: relative;
  z-index: 2;
  padding-top: 20px;
}
body.index-page section#tickets .top h5 {
  padding-bottom: 12px;
}
body.index-page section#tickets .top .h5 {
  width: 50%;
  max-width: 461px;
  padding-bottom: 14px;
  margin: 0 auto;
}
body.index-page section#tickets .top .h5:lang(en-US) {
  max-width: 629px;
}
body.index-page section#tickets .top .h5.mobile {
  max-width: 240px;
}
body.index-page section#tickets .top .h5.mobile:lang(en-US) {
  max-width: 217px;
}
body.index-page section#tickets .top .h5.update {
  width: 240px;
}
body.index-page section#tickets .top .h5.update:lang(en-US) {
  width: 240px;
  max-width: 240px;
}
body.index-page section#tickets .top .drone-details .h5 {
  width: 85%;
  max-width: 615px;
  padding-top: 10px;
  padding-bottom: 50px;
}
body.index-page section#tickets .top .drone-details .h5:lang(en-US) {
  max-width: 791px;
}
body.index-page section#tickets .top .drone-details .h5b {
  width: 77%;
  max-width: 685px;
  padding-top: 10px;
}
body.index-page section#tickets .top .drone-details .h5b:lang(en-US) {
  max-width: 690px;
}
body.index-page section#tickets .top .drone-details .map {
  width: 95%;
  margin: 0 auto;
  max-width: 884px;
}
body.index-page section#tickets .top .drone-details .p1 {
  max-width: 800px;
  font-size: 0.8rem;
  line-height: 1.4rem;
  font-weight: 400;
  padding-bottom: 50px;
  position: relative;
  padding-top: 10px;
  width: 90%;
  margin: 0 auto;
}
body.index-page section#tickets .top .drone-details .p2 {
  max-width: 860px;
  font-size: 0.8rem;
  line-height: 1.4rem;
  font-weight: 400;
  padding-bottom: 60px;
  position: relative;
  padding-top: 10px;
  width: 90%;
  margin: 0 auto;
}
body.index-page section#tickets .top .btn-buy {
  font-size: 1.1rem;
  line-height: 3rem;
  background: #ea9cbf;
  border-radius: 2rem;
  width: 80%;
  max-width: 300px;
  display: block;
  margin: 0 auto;
  transition: all 0.4s ease;
  font-weight: 800;
  letter-spacing: 2px;
}
body.index-page section#tickets .top .btn-buy:lang(zh-CN),
body.index-page section#tickets .top .btn-buy:lang(zh-HK) {
  padding-bottom: 1px;
}
body.index-page section#tickets .top .btn-buy:lang(en-US) {
  letter-spacing: 1px;
  max-width: 400px;
  min-width: 295px;
}
body.index-page section#tickets .top .btn-buy:hover {
  background: #e16f9a;
}
body.index-page section#tickets .top .ticket-types {
  padding: 30px 0;
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: flex-start;
  width: 75%;
}
body.index-page section#tickets .top .ticket-types .ticket-type {
  width: 50%;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  padding: 0 5px;
  box-sizing: border-box;
  position: relative;
}
body.index-page section#tickets .top .ticket-types .ticket-type:lang(en-US) {
  padding: 0;
}
body.index-page
  section#tickets
  .top
  .ticket-types
  .ticket-type:lang(en-US):first-child
  .type-name {
  padding-top: 20px;
  padding-bottom: 19px;
}
body.index-page section#tickets .top .ticket-types .ticket-type:first-child {
  left: -20px;
}
body.index-page
  section#tickets
  .top
  .ticket-types
  .ticket-type:first-child::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  background: #fff;
  top: 0;
  right: -20px;
}
body.index-page section#tickets .top .ticket-types .ticket-type:last-child {
  right: -20px;
}
body.index-page section#tickets .top .ticket-types .ticket-type .type-image {
  width: 50%;
}
body.index-page section#tickets .top .ticket-types .ticket-type .type-name {
  font-size: 1.2rem;
  line-height: 2rem;
  padding: 12px 0 6px;
  letter-spacing: 2px;
  position: relative;
}
body.index-page
  section#tickets
  .top
  .ticket-types
  .ticket-type
  .type-name
  .blue {
  color: #05c0f3;
  position: absolute;
  top: -18px;
  left: 0;
  right: 0;
  margin: 0 auto;
}
body.index-page
  section#tickets
  .top
  .ticket-types
  .ticket-type
  .type-name:lang(en-US) {
  line-height: 1.4rem;
}
body.index-page
  section#tickets
  .top
  .ticket-types
  .ticket-type
  .type-name:lang(en-US)
  .blue {
  top: -12px;
}
body.index-page section#tickets .top .ticket-types .ticket-type .type-desc {
  font-size: 0.7rem;
  line-height: 1rem;
  font-weight: 400;
}
body.index-page section#tickets .tickets-owl .owl-dots {
  right: 0;
  left: 0;
  margin: 0 auto;
  bottom: -45px;
}
body.index-page section#tickets .tickets-owl .owl-item.active .item .details {
  opacity: 1;
}
body.index-page section#tickets .tickets-owl .item {
  position: relative;
  margin-right: 20px;
  text-align: left;
}
body.index-page section#tickets .tickets-owl .item .type-name {
  font-size: 1.2rem;
  line-height: 2rem;
  padding: 10px 0 5px;
  padding-left: 20px;
  box-sizing: border-box;
}
body.index-page section#tickets .tickets-owl .item ul {
  font-size: 0.6rem;
  line-height: 1rem;
  font-weight: 400;
  margin-left: 20px;
  padding-right: 90px;
  box-sizing: border-box;
  padding-left: 20px;
}
body.index-page section#tickets .tickets-owl .item .type-price {
  position: absolute;
  right: 0;
  bottom: 0;
  font-size: 1.2rem;
  line-height: 2rem;
}
body.index-page section#tickets .tickets-owl .item .details {
  padding-top: 5px;
  opacity: 0;
  transition: 0.4s all ease;
}
body.index-page section#partners img {
  width: 80%;
  max-width: 250px;
  position: relative;
}
body.index-page section#partners h2 {
  position: relative;
}
body.index-page section#event-sh img {
  max-width: 315px;
  width: 80%;
  padding-bottom: 10px;
  position: relative;
}
body.index-page section#event-sh .h2 {
  width: 90%;
  max-width: 500px;
  padding-bottom: 0;
}
body.index-page section#event-sh .h2:lang(en-US) {
  max-width: 500px;
}
body.index-page section#event-sh h2 {
  font-size: 2.1rem;
  position: relative;
}
body.index-page section#event-sh h2 .mark {
  position: relative;
  top: 2px;
  display: inline-block;
  width: 1rem;
  height: 1.8rem;
  margin-left: 2px;
  background: url(../img/icon-exclaimation-mark.png) no-repeat center
    center/contain;
}
body.index-page section#event-sh h2 .subline {
  display: block;
  font-size: 1.5rem;
  line-height: 2.5rem;
}
body.index-page section#event-sh .expand-wrapper.expanded p.extra {
  max-height: 800px;
  padding-bottom: 25px;
}
body.index-page section#event-sh .expand-wrapper.expanded p.extra:lang(en-US) {
  max-height: 1350px;
}
body.index-page section#event-sh .expand-wrapper.expanded .btn-learn-more {
  display: none;
}
body.index-page section#event-sh p {
  font-size: 0.8rem;
  line-height: 1.4rem;
  font-weight: 400;
  padding-bottom: 25px;
  position: relative;
  padding-top: 25px;
  width: 90%;
  margin: 0 auto;
}
body.index-page section#event-sh p.extra {
  padding-top: 0;
  max-height: 0;
  transition: max-height 0.4s ease;
  overflow: hidden;
  padding-bottom: 0;
}
body.index-page section#event-sh p.extra b {
  display: block;
  padding-bottom: 25px;
  text-transform: uppercase;
  font-size: 1rem;
  line-height: 1.5rem;
}
body.index-page section#event-sh p.extra .close-expand {
  width: 21px;
  height: 12px;
  background: url(../img/icon-arrow2.png) no-repeat center center/contain;
  margin: 25px auto 0;
  display: block;
  cursor: pointer;
  transition: all 0.4s ease;
  transform: scale(1) rotate(180deg);
}
body.index-page section#event-sh p.extra .close-expand:hover {
  transform: scale(1.05) rotate(180deg);
}
body.index-page section#event-sh a {
  font-size: 1.1rem;
  line-height: 1.8rem;
  position: relative;
  text-decoration: underline;
  transition: all 0.4s ease;
  transform: scale(1);
  display: inline-block;
  padding-top: 30px;
  background: url(../img/icon-arrow2.png) no-repeat top center/21px;
  letter-spacing: 2px;
}
body.index-page section#event-sh a:hover {
  text-decoration: none;
  transform: scale(1.05);
}
body.index-page section#collections {
  padding-bottom: 80px;
}
body.index-page section#collections .h2 {
  width: 70%;
  max-width: 251px;
  position: relative;
  z-index: 1;
  padding-bottom: 30px;
}
body.index-page section#collections .h2:lang(en-US) {
  max-width: 357px;
  width: 80%;
}
body.index-page section#collections h2 {
  font-size: 2.7rem;
  line-height: 3.4rem;
  position: relative;
  z-index: 1;
}
body.index-page section#collections h2 span {
  font-size: 1.5rem;
  line-height: 2.5rem;
  display: block;
}
body.index-page section#collections p {
  font-size: 0.8rem;
  line-height: 1.4rem;
  font-weight: 400;
  padding-top: 25px;
  padding-bottom: 50px;
  position: relative;
  z-index: 1;
  width: 90%;
  margin: 0 auto;
}
body.index-page section#collections .btn-reg {
  font-size: 1.1rem;
  line-height: 3rem;
  border-radius: 2rem;
  width: 80%;
  max-width: 300px;
  display: block;
  margin: 0 auto;
  transition: all 0.4s ease;
  border: 1px solid #fff;
  position: relative;
  z-index: 1;
  letter-spacing: 2px;
}
body.index-page section#collections .btn-reg:lang(zh-CN),
body.index-page section#collections .btn-reg:lang(zh-HK) {
  padding-bottom: 1px;
}
body.index-page section#collections .btn-reg:lang(en-US) {
  min-width: 300px;
  width: 100%;
  max-width: 370px;
  letter-spacing: 1px;
}
body.index-page section#collections .btn-reg:hover {
  background: #fff;
  color: #0370c3;
}
body.index-page section#collections p.extra {
  font-size: 0.8rem;
  line-height: 1.4rem;
  padding: 5px 0 0 0;
}
body.index-page section#collections img {
  position: relative;
  z-index: 1;
}
body.index-page section#events {
  padding-top: 0;
  padding-left: 0;
  padding-right: 0;
}
body.index-page section#events .events-list .event-block {
  position: relative;
}
body.index-page section#events .events-list .event-block .wrapper {
  position: absolute;
  bottom: 20px;
  left: 25px;
  width: calc(100% - 40px);
}
body.index-page section#events .events-list .event-block .wrapper p {
  text-align: left;
  font-size: 0.8rem;
  text-transform: uppercase;
}
body.index-page section#events .events-list .event-block .wrapper p.icon {
  padding-top: 28px;
  background: url(../img/logo2.png?v-sh1) no-repeat top left/57px;
}
body.index-page section#events .events-list .event-block .wrapper h5 {
  font-size: 1.4rem;
  line-height: 1.8rem;
  padding-bottom: 14px;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 2px;
}
body.index-page section#events .events-list .event-block .wrapper a {
  font-size: 0.8rem;
  line-height: 1.7rem;
  width: 130px;
  margin: 0;
  border: 1px solid #fff;
  border-radius: 20px;
  display: block;
  transition: all 0.4s ease;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.05);
  letter-spacing: 2px;
  font-weight: 800;
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.8));
}
body.index-page section#events .events-list .event-block .wrapper a:lang(zh-CN),
body.index-page
  section#events
  .events-list
  .event-block
  .wrapper
  a:lang(zh-HK) {
  padding-bottom: 1px;
}
body.index-page
  section#events
  .events-list
  .event-block
  .wrapper
  a:lang(en-US) {
  letter-spacing: 1px;
}
body.index-page section#events .events-list .event-block .wrapper a:hover {
  background: #fff;
  border: 1px solid #fff;
  color: #0370c3;
}
body.index-page section#dora-id img {
  max-width: 398px;
  width: 90%;
  padding-bottom: 20px;
}
body.index-page section#dora-id .h2 {
  max-width: 391px;
  width: 90%;
  margin: 0 auto;
  padding-bottom: 10px;
}
body.index-page section#dora-id h2 {
  font-size: 1.4rem;
  line-height: 2rem;
  padding-bottom: 10px;
}
body.index-page section#dora-id p {
  font-size: 0.8rem;
  line-height: 1.4rem;
  font-weight: 400;
  padding-top: 25px;
  width: 90%;
  margin: 0 auto;
}
body.index-page section#dora-id p b {
  display: block;
  font-size: 1rem;
  line-height: 1.5rem;
  padding-bottom: 5px;
}
body.index-page section#dora-id .btn-create {
  font-size: 1.35rem;
  line-height: 3.5rem;
  background: #ea9cbf;
  border-radius: 2rem;
  width: 80%;
  max-width: 300px;
  display: block;
  margin: 0 auto;
  transition: all 0.4s ease;
  min-width: 275px;
  margin-top: 20px;
}
body.index-page section#dora-id .btn-create:lang(en-US) {
  width: 100%;
  max-width: 330px;
}
body.index-page section#dora-id .btn-create:hover {
  background: #e16f9a;
}
body.index-page section#event h2 span {
  position: relative;
  top: 0.3rem;
  margin: 0 5px;
  width: 2rem;
  height: 2rem;
  display: inline-block;
  background: url(../img/logo2.png?v-sh1) no-repeat center center/contain;
}
body.index-page section#event img {
  padding-bottom: 15px;
}
body.index-page section#event h5 {
  padding-bottom: 15px;
}
body.index-page section#event h5 span {
  position: relative;
  height: 1rem;
  top: -1px;
  width: 3px;
  display: inline-block;
  background: #fff;
  margin: 0 6px;
}
body.index-page section#event p {
  font-weight: 200;
  font-size: 0.8rem;
  line-height: 1.4rem;
}
body.index-page section#follow-us h2 {
  padding-bottom: 10px;
}
body.index-page section#follow-us .links {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: center;
  align-items: center;
  padding-bottom: 20px;
}
body.index-page section#follow-us .links a {
  width: 36px;
  height: 36px;
  margin: 0 6px;
}
body.index-page section#follow-us .links .fb {
  background: url(../img/icon-fb.png) no-repeat center center/contain;
}
body.index-page section#follow-us .links .ig {
  background: url(../img/icon-ig.png) no-repeat center center/contain;
}
body.index-page section#follow-us .links .xiaohongshu {
  background: url(../img/icon-xiaohongshu.png) no-repeat center center/contain;
}
body.index-page section#subscription h2 {
  padding-bottom: 5px;
}
body.index-page section#subscription input {
  width: 100%;
  display: block;
  margin: 20px auto;
  text-align: center;
  font-size: 1rem;
  line-height: 2.2rem;
  padding: 5px 0;
  border: 1px solid #fff;
  background: #0370c3;
  color: #fff;
}
body.index-page section#subscription input::placeholder {
  color: rgba(213, 213, 213, 0.21);
  opacity: 1;
}
body.index-page section#subscription input:-ms-input-placeholder {
  color: rgba(213, 213, 213, 0.21);
}
body.index-page section#subscription input::-ms-input-placeholder {
  color: rgba(213, 213, 213, 0.21);
}
body.index-page section#subscription img {
  padding-top: 50px;
  max-width: 156px;
  width: 50%;
  margin: 0 auto;
}
body.index-page section#subscription #submit {
  font-size: 1.2rem;
  width: initial;
  border: none;
  padding: 0;
  display: initial;
  text-decoration: underline;
  transition: all 0.4s ease;
  transform: scale(1);
  display: inline-block;
  margin-top: 30px;
  letter-spacing: 2px;
}
body.index-page section#subscription #submit:lang(en-US) {
  letter-spacing: 0.5px;
}
body.index-page section#subscription #submit:hover {
  text-decoration: none;
  transform: scale(1.05);
}
body.index-page section#organizers .wrapper {
  margin: 0 auto;
  max-width: 333px;
  width: 80%;
}
html._map {
  background: #0c4175;
}
body._map {
  background: #0c4175;
}
#app.map-wrapper {
  background: #0c4175;
}
#app.map-wrapper .langs {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 1;
}
#app.map-wrapper .langs a {
  margin-left: 10px;
  opacity: 0.5;
  transition: all 0.4s ease;
}
#app.map-wrapper .langs a.active,
#app.map-wrapper .langs a:hover {
  opacity: 1;
  text-decoration: underline;
}
#app.map-wrapper .langs a.active {
  display: none;
}
#app.map-wrapper section#home {
  padding-top: 0;
  padding-bottom: 0;
}
#app.map-wrapper section#home .maps {
  position: relative;
  width: 95%;
  max-width: 800px;
  margin: 0 auto;
}
#app.map-wrapper section#home .maps[data-lang="tc"] [data-lang="tc"] {
  display: block;
}
#app.map-wrapper section#home .maps[data-lang="sc"] [data-lang="sc"] {
  display: block;
}
#app.map-wrapper section#home .maps[data-lang="en"] [data-lang="en"] {
  display: block;
}
#app.map-wrapper section#home .maps .link1 {
  position: absolute;
  width: 30%;
  height: 0.5%;
  top: 40.7%;
  left: 0;
  right: 0;
  margin: 0 auto;
}
#app.map-wrapper section#home .maps .link1[data-lang="en"] {
  width: 42%;
  top: 40.7%;
}
#app.map-wrapper section#home .maps .link2 {
  position: absolute;
  width: 86%;
  height: 1.2%;
  bottom: 15.2%;
  left: 7%;
  display: none !important;
}
#app.map-wrapper section#home .maps .link2[data-lang="en"] {
  bottom: 15.9%;
}
#app.map-wrapper section#home .maps .link3 {
  position: absolute;
  width: 10%;
  height: 0.4%;
  bottom: 1.35%;
  right: 21%;
}
#app.map-wrapper section#home .maps .link3[data-lang="en"] {
  bottom: 1.15%;
  width: 20%;
  right: 23%;
}
#app.map-wrapper section#home .maps .link4 {
  position: absolute;
  width: 11%;
  height: 0.4%;
  bottom: 1.35%;
  right: 8%;
}
#app.map-wrapper section#home .maps .link4[data-lang="en"] {
  bottom: 1.15%;
  width: 14%;
  right: 8%;
}
#app.map-wrapper section#home .maps .link5 {
  position: absolute;
  width: 25%;
  height: 0.4%;
  bottom: 3.45%;
  right: 33%;
}
#app.map-wrapper section#home .maps .link5[data-lang="en"] {
  bottom: 3%;
  width: 25%;
  left: 43%;
}
#app.map-wrapper section#home .maps .link6 {
  position: absolute;
  width: 23%;
  height: 0.4%;
  bottom: 14.7%;
  left: 40%;
}
#app.map-wrapper section#home .maps .link6[data-lang="en"] {
  bottom: 14.6%;
  width: 42%;
  left: 0;
  right: 0;
  margin: 0 auto;
  height: 0.3%;
}
#app.map-wrapper section#home .maps img.map {
  display: none;
}
#app.map-wrapper section#home .maps a {
  display: none;
}
#app.map-wrapper section#home .logo {
  z-index: 11;
  background: url(../img/logo-return.png) no-repeat center center/contain;
  width: 23px;
  height: 21px;
}
@media only screen and (min-width: 769px) {
  body.index-page #modal-news img {
    height: 80dvh;
    display: flex;
    flex-direction: row;
    max-width: initial;
    width: auto;
  }
  #app.map-wrapper .langs {
    right: 40px;
    top: 40px;
  }
  #app.map-wrapper section#home .logo {
    width: 43px;
    height: 41px;
    top: 40px;
  }
}
@media only screen and (max-width: 767px) {
  body.index-page section#collections .btn-reg,
  body.index-page section#tickets .top .btn-buy,
  body.index-page section#tickets .top .ticket-types .ticket-type .type-name {
    font-weight: 800;
  }
}
@media only screen and (max-width: 413px) {
  body.index-page section#collections .btn-reg:lang(en-US) {
    font-size: 1rem;
  }
  body.index-page
    section#tickets
    .top
    .ticket-types
    .ticket-type
    .type-name:lang(en-US) {
    font-size: 1rem;
  }
}
@media only screen and (max-width: 320px) {
  body.index-page .modal {
    padding: 50px 5px;
  }
  body.index-page section#home .flipdown {
    transform: scale(0.6);
  }
  body.index-page section#home {
    padding-bottom: 20px;
  }
  body.index-page section#events .events-list .event-block .wrapper h5 {
    font-size: 1.4rem;
  }
  body.index-page
    section#tickets
    .top
    .ticket-types
    .ticket-type:lang(en-US):first-child
    .type-name {
    padding-top: 10px;
  }
  body.index-page section#collections .btn-reg:lang(en-US) {
    width: 100%;
    font-size: 0.8rem;
    min-width: auto;
  }
}
@media only screen and (min-width: 768px) {
  body.index-page .modal .events-details .btn-full:lang(en-US) {
    min-width: 400px;
  }
  html {
    font-size: 20px;
  }
  body.privacy-page,
  body.terms-page {
    font-size: 16px;
  }
  body.privacy-page #app,
  body.terms-page #app {
    padding: 50px 30px;
  }
  body.index-page .blocker {
    background-color: rgba(5, 58, 114, 0.82);
  }
  body.index-page .modal {
    max-width: 500px;
    padding: 50px 40px;
    background-color: transparent;
  }
  body.index-page .desktop {
    display: block;
  }
  body.index-page .mobile {
    display: none;
  }
  body.index-page header {
    padding-left: 40px;
    padding-right: 40px;
  }
  body.index-page header #toggle {
    right: 40px;
  }
  body.index-page header #menu {
    width: 500px;
  }
  body.index-page header #menu .bottom {
    left: 40px;
    bottom: 40px;
  }
  body.index-page header #menu .bottom .sms {
    padding-top: 20px;
  }
  body.index-page header #menu .bottom .sms a.fb,
  body.index-page header #menu .bottom .sms a.ig,
  body.index-page header #menu .bottom .sms a.xiaohongshu {
    width: 42px;
    height: 42px;
  }
  body.index-page header #menu .bottom .sms a.fb,
  body.index-page header #menu .bottom .sms a.ig {
    margin-right: 20px;
  }
  body.index-page header #menu .inner {
    padding-left: 40px;
  }
  body.index-page header #menu .inner a:hover {
    text-decoration: underline;
  }
  body.index-page header #menu .inner ul {
    height: calc(100vh - 290px);
  }
  body.index-page header #menu .inner ul li.sub.s2 {
    height: 105px;
  }
  body.index-page header #menu .inner ul li.sub a::after {
    left: -30px;
  }
  body.index-page #shop-now {
    transform: scale(1.5);
    transform-origin: right center;
    right: 0;
    top: 130px;
  }
  body.index-page #create-now {
    transform: scale(1.5);
    transform-origin: right center;
    right: 0;
    top: 130px;
  }
  body.index-page section h5 {
    font-weight: 700;
  }
  #app {
    margin: 0 auto;
  }
  body.index-page section:not(#contact-us)::before {
    width: 100%;
  }
  body.index-page section#home h2 {
    top: 0;
    margin-top: 1rem;
  }
  body.index-page section#home .announcement {
    transform: scale(1);
    transform-origin: top;
    margin-bottom: 40px;
  }
  body.index-page section#home .logo {
    left: 40px;
  }
  body.index-page section#home .kv::after {
    top: 200px;
    width: 150px;
    height: 150px;
    left: -50px;
  }
  body.index-page section#home .kv-tagline2 {
    padding-top: 50px;
    width: 50%;
  }
  body.index-page section#next .wrapper::after {
    width: 15%;
  }
  body.index-page section#tickets {
    margin-top: 0;
  }
  body.index-page section#tickets .top {
    padding-top: 30px;
  }
  body.index-page section#tickets p {
    width: 90%;
    max-width: 800px;
    margin: 0 auto;
  }
  body.index-page section#tickets .btn-reg {
    max-width: 500px;
  }
  body.index-page section#tickets .btn-reg:lang(en-US) {
    max-width: 500px;
  }
  body.index-page section#tickets .slidesshow-wrapper {
    padding-bottom: 100px;
  }
  body.index-page section#tickets .top .drone-details .h5 {
    width: 50%;
    padding-top: 50px;
    padding-bottom: 100px;
  }
  body.index-page section#tickets .top .drone-details .h5b {
    padding-bottom: 20px;
  }
  body.index-page section#tickets .top .drone-details .p1 {
    padding-bottom: 100px;
  }
  body.index-page section#tickets .top .drone-details .p2 {
    padding-top: 20px;
    padding-bottom: 100px;
  }
  body.index-page section#tickets .top h5 {
    padding-bottom: 20px;
  }
  body.index-page section#tickets .top .h5 {
    width: 30%;
    padding-bottom: 20px;
    max-width: 487.2px;
  }
  body.index-page section#tickets .top .h5:lang(en-US) {
    max-width: 564px;
  }
  body.index-page section#tickets .top .h5.update {
    width: 384px;
  }
  body.index-page section#tickets .top .h5.update:lang(en-US) {
    width: 384px;
    max-width: 384px;
  }
  body.index-page section#tickets .top .ticket-types {
    padding: 50px 0;
  }
  body.index-page section#tickets .top .ticket-types .ticket-type {
    padding: 0 20px;
  }
  body.index-page section#tickets .top .ticket-types .ticket-type .type-image {
    width: 140px;
  }
  body.index-page
    section#tickets
    .top
    .ticket-types
    .ticket-type
    .type-name
    .blue {
    top: -25px;
  }
  body.index-page
    section#tickets
    .top
    .ticket-types
    .ticket-type
    .type-name:lang(en-US)
    .blue {
    top: -18px;
  }
  body.index-page
    section#tickets
    .top
    .ticket-types
    .ticket-type:lang(en-US):first-child
    .type-name {
    padding-bottom: 23px;
  }
  body.index-page section#tickets #bell1 {
    position: absolute;
    width: 900px;
    height: 500px;
    left: -450px;
    transform: rotate(-21deg);
  }
  body.index-page section#tickets #bell1 div {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: url(../img/ribbon.png) no-repeat center center/contain;
  }
  body.index-page section#tickets .tickets-owl .item .type-name {
    padding-left: 0;
    padding-top: 20px;
  }
  body.index-page section#tickets .tickets-owl .item ul {
    padding-left: 0;
  }
  body.index-page section#tickets .tickets-owl .item .type-price {
    position: relative;
    right: initial;
    bottom: initial;
    padding-top: 10px;
  }
  body.index-page section#tickets .tickets-owl .owl-stage {
    width: 50%;
    max-width: 800px;
    margin: 0 auto;
  }
  body.index-page section#tickets .tickets-owl .owl-stage .owl-item {
    width: 50% !important;
    left: 10px;
    padding: 0 0;
  }
  body.index-page section#tickets .btn-early:lang(en-US) {
    min-width: 300px;
    max-width: 450px;
  }
  body.index-page section#partners #bell2 {
    position: absolute;
    width: 800px;
    height: 400px;
    background: url(../img/ribbon.png) no-repeat center center/contain;
    top: 6px;
    right: -400px;
    transform: rotate(13deg);
  }
  body.index-page section#partners img {
    max-width: 327px;
  }
  body.index-page section#event-sh #bell3 {
    content: "";
    position: absolute;
    width: 500px;
    height: 300px;
    background: url(../img/ribbon.png) no-repeat center center/contain;
    top: 6px;
    left: -500px;
    right: 0;
    margin: 0 auto;
    transform: rotate(0);
  }
  body.index-page section#event-sh p {
    width: 90%;
    max-width: 800px;
    margin: 0 auto;
  }
  body.index-page section#event-sh .h2 {
    width: 55%;
  }
  body.index-page section#collections #bell4 {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    background: url(../img/ribbon.png) no-repeat center center/contain;
    top: 6px;
    left: -900px;
    right: 0;
    margin: 0 auto;
    transform: rotate(-10deg);
  }
  body.index-page section#collections #bell5 {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    background: url(../img/ribbon.png) no-repeat center center/contain;
    bottom: -300px;
    right: -200px;
    margin: 0 auto;
    transform: rotate(10deg);
  }
  body.index-page section#collections .h2 {
    max-width: 351.4px;
  }
  body.index-page section#collections img {
    width: 406px;
  }
  body.index-page section#collections p {
    width: 90%;
    max-width: 800px;
    margin: 0 auto;
  }
  body.index-page section#collections .btn-reg {
    max-width: 500px;
  }
  body.index-page section#collections .btn-reg:lang(en-US) {
    max-width: 500px;
  }
  body.index-page section#dora-id img {
    padding-bottom: 40px;
  }
  body.index-page section#dora-id p {
    width: 90%;
    max-width: 800px;
    margin: 0 auto;
  }
  body.index-page section#dora-id .btn-create {
    margin-top: 33px;
    max-width: 500px;
  }
  body.index-page section#dora-id .btn-create:lang(en-US) {
    max-width: 500px;
  }
  body.index-page section#event {
    padding-left: 0;
    padding-right: 0;
  }
  body.index-page section#subscription input {
    width: 500px;
  }
  body.index-page section#events .events-list .event-block .wrapper {
    width: calc(100% - 50px * 2);
    left: 50px;
    bottom: 40px;
  }
  body.index-page section#events .events-list .event-block .wrapper h5 {
    padding-bottom: 0;
    padding-right: 150px;
    box-sizing: border-box;
  }
  body.index-page section#events .events-list .event-block .wrapper a {
    position: absolute;
    right: 0;
    bottom: 0;
  }
  body.index-page footer {
    padding-left: 40px;
    padding-right: 40px;
    padding-bottom: 40px;
  }
}
@media only screen and (min-width: 551px) {
  body.index-page section#home .announcement {
    margin-top: 25px;
  }
  body.index-page section#home .flipdown {
    width: 500px;
    left: 28px;
    top: 2px;
    transform: scale(0.6);
    left: 46px;
  }
  .flipdown .rotor {
    font-size: 60px;
  }
  body.index-page section#home .flipdown.flipdown__theme-dark .rotor {
    width: 40px;
    font-size: 60px;
  }
  body.index-page section#home .flipdown.flipdown__theme-dark .rotor-bottom {
    width: 45px;
    line-height: 77px;
  }
  body.index-page
    section#home
    .flipdown.flipdown__theme-dark
    .rotor-group:nth-child(n + 2):nth-child(-n + 3):after,
  body.index-page
    section#home
    .flipdown.flipdown__theme-dark
    .rotor-group:nth-child(n + 2):nth-child(-n + 3):before {
    left: 95px;
  }
  body.index-page
    section#home
    .flipdown.flipdown__theme-dark
    .rotor:last-child {
    text-indent: -8px;
  }
}
@media only screen and (min-width: 769px) and (min-height: 1051px) {
  body.index-page section#home .kv {
    margin-top: -80px;
  }
}
@media only screen and (min-width: 1124px) {
  body.index-page section {
    padding-left: 0;
    padding-right: 0;
  }
}
@media only screen and (max-width: 320px) {
  body.index-page section#home .kv::after {
    left: 0;
    top: 15px;
  }
}
@media only screen and (max-width: 360px) {
  body.index-page section#dora-id .btn-create:lang(en-US) {
    font-size: 1.2rem;
    min-width: 288px;
  }
}
@keyframes fadeOut {
  90% {
    opacity: 0;
  }
  100% {
    opacity: 0;
    max-height: 0;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes kv {
  0% {
    opacity: 0;
    transform: scale(0.5);
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes shopnow {
  0%,
  100% {
    transform: rotate(0);
  }
  25% {
    transform: rotate(3deg);
  }
  75% {
    transform: rotate(-3deg);
  }
}
@keyframes elefadeIn {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes popup1a {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes popup1b {
  0% {
    transform: scale(1);
  }
  25% {
    transform: scale(1.03);
  }
  50% {
    transform: scale(1);
  }
  75% {
    transform: scale(0.97);
  }
  100% {
    transform: scale(1);
  }
}
