@charset "UTF-8";
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
#selectionDetail-description-innerWrapper p,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline; }

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
main {
  display: block; }

body {
  line-height: 1; }

ol,
ul,
li {
  list-style: none; }

a {
  list-style: none;
  text-decoration: none; }

button {
  -webkit-appearance: none;
  /* Safari 和 Chrome，常用於iOS下移除內建樣式 */
  -moz-appearance: none;
  /* FireFox */
  appearance: none; }

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  /* for Chrome Firefox Edge */ }
  select::-ms-expand {
    display: none;
    /* for IE11 */ }

textarea {
  -webkit-appearance: none; }

input,
button {
  border-radius: 0; }

input[type="number"] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: textfield; }
  input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    appearance: none; }

button {
  border: none;
  margin: 0;
  padding: 0;
  width: auto;
  overflow: visible;
  background: transparent;
  /* inherit font & color from ancestor */
  color: inherit;
  font: inherit;
  /* Normalize `line-height`. Cannot be changed from `normal` in Firefox 4+. */
  line-height: normal;
  /* Corrects font smoothing for webkit */
  -webkit-font-smoothing: inherit;
  -moz-osx-font-smoothing: inherit;
  /* Corrects inability to style clickable `input` types in iOS */
  -webkit-appearance: none; }

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

.fc_white {
  color: #FFF; }

a,
a:hover,
a:active,
a:focus {
  text-decoration: none; }

.container {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  max-width: 1440px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 24px;
  padding-left: 24px;
  position: relative;
  z-index: 10; }
  @media all and (max-width: 640px) {
    .container {
      padding: 0 15px; } }

.web_view {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important; }
  @media all and (max-width: 1280px) {
    .web_view {
      display: none !important; } }

.mob_view {
  display: none !important; }
  @media all and (max-width: 1280px) {
    .mob_view {
      display: -webkit-box !important;
      display: -ms-flexbox !important;
      display: flex !important; } }

body {
  background-color: #d2dcee;
  font-family: "Noto Sans TC", sans-serif;
  overflow-x: hidden;
  background: #111111;
  background-size: cover; }

.main-wrapper {
  position: relative;
  max-width: 100%;
  width: 1200px;
  margin: auto;
  z-index: 5; }

.main {
  position: relative;
  margin: auto; }

@media (max-width: 768px) {
  .main .main-wrapper {
    width: 100%; } }

.basic-btn-style {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  background: #EDCC94;
  overflow: hidden; }
  .basic-btn-style span {
    position: relative;
    z-index: 2;
    color: #000;
    display: block;
    line-height: 45px;
    font-size: 16px;
    font-weight: 500; }

header {
  max-width: 1128px;
  width: 90%;
  margin: auto;
  position: fixed;
  z-index: 99;
  top: 24px;
  left: 0;
  right: 0;
  border-radius: 40px;
  border: 2px solid #ceb071;
  background: rgba(17, 17, 17, 0.8);
  padding: 0 40px;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out; }
  @media (max-width: 1020px) {
    header {
      border-radius: 32px;
      top: 20px;
      padding: 0 20px;
      max-width: 400px; } }
  header .logo {
    width: 137px;
    float: left;
    margin: 20px auto; }
    @media (max-width: 1020px) {
      header .logo {
        width: 89px;
        margin: 12px auto; } }
    header .logo img {
      display: block;
      width: 100%; }
  header i.menu {
    display: none;
    width: 24px;
    float: right;
    margin: 12px 0;
    cursor: pointer; }
    @media (max-width: 1020px) {
      header i.menu {
        display: block; } }
    header i.menu img {
      display: block;
      width: 100%; }
    header i.menu.active {
      background: url(../images/menu-close.png) no-repeat;
      background-size: 100% 100%; }
      header i.menu.active img {
        opacity: 0; }
  header nav {
    float: right; }
    @media (max-width: 1020px) {
      header nav {
        max-height: 0;
        width: 100%;
        overflow: hidden;
        -webkit-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
        float: none;
        margin: 0 auto; } }
    header nav ul li {
      display: inline-block;
      vertical-align: middle;
      position: relative; }
      @media (max-width: 1020px) {
        header nav ul li {
          display: block;
          border-bottom: 1px solid #8c8c8c; } }
      header nav ul li a {
        display: block;
        line-height: 72px;
        padding: 0 28px;
        color: #fff;
        font-size: 20px;
        font-weight: 500;
        border-bottom: 4px solid transparent;
        text-align: center; }
        @media screen and (max-width: 1400px) {
          header nav ul li a {
            padding: 0 23px; } }
        @media (max-width: 1020px) {
          header nav ul li a {
            line-height: 24px;
            padding: 24px 0;
            font-size: 16px;
            border-bottom: 0; } }
      header nav ul li.active, header nav ul li:hover {
        background: url(../images/menu-hover.png) center no-repeat;
        background-size: cover; }
        @media (max-width: 1020px) {
          header nav ul li.active, header nav ul li:hover {
            border-bottom: 1px solid #ceb071; } }
        header nav ul li.active a, header nav ul li:hover a {
          border-bottom: 4px solid #ceb071; }
          @media (max-width: 1020px) {
            header nav ul li.active a, header nav ul li:hover a {
              border: 0;
              color: #ceb071; } }
      header nav ul li:after {
        content: '';
        width: 1px;
        height: 15px;
        background: #c4c4c4;
        position: absolute;
        right: 0;
        top: 0;
        bottom: 0;
        margin: auto; }
        @media (max-width: 1020px) {
          header nav ul li:after {
            display: none; } }
      header nav ul li:last-of-type::after {
        display: none; }
  header.active {
    background: #111; }
    header.active nav {
      max-height: 420px;
      margin: 24px auto; }

.side {
  position: fixed;
  z-index: 999;
  margin: auto;
  top: 0;
  right: 10px;
  width: 80px;
  height: 160px;
  bottom: -1px; }
  .side .web_view {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
    @media all and (max-width: 1280px) {
      .side .web_view {
        display: none; } }
  .side .mob_view {
    display: none; }
    @media all and (max-width: 1280px) {
      .side .mob_view {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex; } }
  .side a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background: #af955f;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 18px;
    letter-spacing: 0.1em;
    color: #ffffff;
    text-align: center;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 20px; }
    .side a p {
      font-size: 14px;
      line-height: 18px;
      letter-spacing: 0.1em; }
    .side a:first-child {
      background: #68492d; }
    .side a:hover {
      -webkit-box-shadow: none;
      box-shadow: none; }
    .side a img {
      width: 15px;
      height: 15px;
      position: relative;
      left: 10px;
      -webkit-animation: bounce2 2s infinite;
      animation: bounce2 2s infinite; }
    .side a p {
      font-weight: 500;
      font-size: 14px;
      line-height: 18px; }
  .side img {
    width: 100%; }
  @media all and (max-width: 1280px) {
    .side {
      top: unset;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      width: 100%;
      padding: 0px;
      height: 50px;
      right: 0; }
      .side a {
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
        width: 49%;
        right: 0;
        height: auto;
        margin-bottom: 0;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-shadow: none;
        box-shadow: none;
        border-radius: 0px; }
        .side a img {
          top: unset;
          left: 15px; } }

.footer-bg {
  position: relative;
  z-index: 1; }
  @media all and (max-width: 1280px) {
    .footer-bg {
      padding-bottom: 50px; } }

footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  z-index: 20;
  font-family: "Microsoft JhengHei";
  background-color: #000; }
  footer .selection1 {
    color: #fff;
    text-align: center;
    padding: 15px;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center; }
    footer .selection1 a {
      color: #fff; }
      footer .selection1 a:hover {
        text-decoration: underline; }
    footer .selection1 img.copyRight {
      width: 12px;
      margin-right: 10px;
      height: 12px; }
    footer .selection1 .logo {
      margin: 0 10px;
      margin-left: 15px;
      width: 22px;
      height: 22px; }
      footer .selection1 .logo img {
        width: 22px;
        height: 22px; }
    footer .selection1 p {
      color: #fff !important;
      display: inline-block; }
  footer .selection2 {
    width: 20%;
    padding: 15px; }
    footer .selection2 .logo {
      width: 113px;
      height: 30px; }

#footer {
  font-family: "Noto Sans TC";
  font-weight: 400;
  padding: 64px 0;
  background-color: #111111; }
  @media all and (max-width: 1279px) {
    #footer {
      padding: 50px 0 80px; } }
  @media all and (max-width: 768px) {
    #footer {
      padding-bottom: 100px;
      overflow: hidden; } }
  #footer.hasfooterNotice {
    padding: 32px 0 64px 0; }
    @media all and (max-width: 1279px) {
      #footer.hasfooterNotice {
        padding: 20px 0 80px; } }
    @media all and (max-width: 768px) {
      #footer.hasfooterNotice {
        padding-bottom: 100px;
        overflow: hidden; } }
  #footer .footerNotice {
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
    font-size: 15px;
    color: #ffffff;
    line-height: 1.5;
    padding: 0 2em 3em 3em;
    text-align: justify; }
  #footer .top-wrap {
    margin: 0 auto 64px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start; }
    @media all and (max-width: 1279px) {
      #footer .top-wrap {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        width: 680px; } }
    @media all and (max-width: 768px) {
      #footer .top-wrap {
        width: 320px; } }
    @media all and (max-width: 375px) {
      #footer .top-wrap {
        max-width: 320px;
        margin: 0 20px; } }
    #footer .top-wrap .logo {
      width: 137px;
      margin-right: 60px; }
      @media all and (max-width: 1279px) {
        #footer .top-wrap .logo {
          margin-right: 0;
          margin-bottom: 65px; } }
    #footer .top-wrap .list-wrap {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      color: #fff; }
      @media all and (max-width: 768px) {
        #footer .top-wrap .list-wrap {
          -ms-flex-wrap: wrap;
          flex-wrap: wrap; } }
      #footer .top-wrap .list-wrap ul {
        margin-right: 80px; }
        @media all and (max-width: 1279px) {
          #footer .top-wrap .list-wrap ul {
            margin-right: 60px; } }
        @media all and (max-width: 768px) {
          #footer .top-wrap .list-wrap ul {
            margin-right: 0;
            width: 50%; } }
        @media all and (max-width: 768px) {
          #footer .top-wrap .list-wrap ul:first-of-type {
            margin-bottom: 50px; } }
        #footer .top-wrap .list-wrap ul:last-of-type {
          margin-right: 0; }
        #footer .top-wrap .list-wrap ul li.title {
          font-size: 16px;
          font-weight: bold;
          margin-bottom: 20px;
          font-family: "Noto Sans TC";
          font-weight: 700; }
        #footer .top-wrap .list-wrap ul li.link {
          margin-bottom: 20px; }
          #footer .top-wrap .list-wrap ul li.link a {
            font-size: 14px;
            color: #fff; }
            #footer .top-wrap .list-wrap ul li.link a.contact-web {
              display: inline-block; }
              @media all and (max-width: 768px) {
                #footer .top-wrap .list-wrap ul li.link a.contact-web {
                  display: none; } }
            #footer .top-wrap .list-wrap ul li.link a.contact-mobile {
              display: none; }
              @media all and (max-width: 768px) {
                #footer .top-wrap .list-wrap ul li.link a.contact-mobile {
                  display: inline-block; } }
  #footer .bottom-wrap {
    width: 960px;
    margin: auto;
    border-top: 1px solid #4f4f4f;
    padding-top: 16px;
    color: #4f4f4f;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between; }
    @media all and (max-width: 1279px) {
      #footer .bottom-wrap {
        width: 680px; } }
    @media all and (max-width: 768px) {
      #footer .bottom-wrap {
        width: 320px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column; } }
    #footer .bottom-wrap a {
      color: #A3A3A3; }
    #footer .bottom-wrap .links-container {
      font-size: 14px; }
      @media all and (max-width: 768px) {
        #footer .bottom-wrap .links-container {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-align: center;
          -ms-flex-align: center;
          align-items: center;
          -webkit-box-orient: vertical;
          -webkit-box-direction: normal;
          -ms-flex-direction: column;
          flex-direction: column; } }
      #footer .bottom-wrap .links-container a {
        display: inline-block;
        margin-right: 30px;
        letter-spacing: 2px; }
        @media all and (max-width: 768px) {
          #footer .bottom-wrap .links-container a {
            margin-right: 0;
            margin-bottom: 12px; } }
        #footer .bottom-wrap .links-container a .link-img-bank {
          margin-right: 12px;
          position: relative;
          top: 2px;
          width: 16px; }
      @media all and (max-width: 768px) {
        #footer .bottom-wrap .links-container p span {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          text-align: center;
          margin: auto;
          -webkit-box-pack: center;
          -ms-flex-pack: center;
          justify-content: center;
          margin-bottom: 12px; } }
    #footer .bottom-wrap .copyright-desc {
      font-size: 14px;
      letter-spacing: 1px; }
      @media all and (max-width: 768px) {
        #footer .bottom-wrap .copyright-desc {
          text-align: center;
          margin-top: 20px; } }
  #footer .footer--flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: auto;
    margin-top: 40px;
    width: 100%;
    max-width: 960px;
    color: #fff; }
    @media all and (max-width: 1279px) {
      #footer .footer--flex {
        margin-top: 35px;
        max-width: 680px; } }
    @media all and (max-width: 768px) {
      #footer .footer--flex {
        display: block;
        max-width: 320px;
        margin-top: 30px; } }
    @media all and (max-width: 375px) {
      #footer .footer--flex {
        max-width: 280px;
        margin: 30px auto 0 auto; } }
  #footer .footer__title {
    font-size: 30px;
    font-weight: bold;
    text-align: center; }
    @media all and (max-width: 1279px) {
      #footer .footer__title {
        font-size: 22px; } }
    @media all and (max-width: 768px) {
      #footer .footer__title {
        margin: auto;
        margin-bottom: 15px; } }
  #footer .footer__text {
    font-size: 14px;
    line-height: 1.7; }
    @media all and (max-width: 1279px) {
      #footer .footer__text {
        width: 470px; } }
    @media all and (max-width: 768px) {
      #footer .footer__text {
        width: auto; } }
    #footer .footer__text a {
      text-decoration: underline; }

#foot {
  position: relative;
  width: 100%;
  padding: 50px;
  background: #000000; }
  @media all and (max-width: 1279px) {
    #foot {
      padding: 30px 40px; } }
  @media all and (max-width: 768px) {
    #foot {
      padding: 30px; } }
  #foot .footer--flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 40px; }
    @media all and (max-width: 1279px) {
      #foot .footer--flex {
        margin-bottom: 35px; } }
    @media all and (max-width: 768px) {
      #foot .footer--flex {
        display: block;
        margin-bottom: 30px; } }
  #foot .footer__title {
    font-size: 30px;
    font-weight: bold;
    text-align: center;
    margin-right: 60px; }
    @media all and (max-width: 1279px) {
      #foot .footer__title {
        font-size: 22px;
        margin-right: 30px; } }
    @media all and (max-width: 768px) {
      #foot .footer__title {
        margin: auto;
        margin-bottom: 15px; } }
  #foot .footer__text {
    width: 725px;
    font-size: 14px;
    line-height: 1.71; }
    @media all and (max-width: 1279px) {
      #foot .footer__text {
        width: 470px;
        font-size: 12px; } }
    @media all and (max-width: 768px) {
      #foot .footer__text {
        width: auto; } }
  #foot .footer_smart {
    letter-spacing: 1px;
    text-align: center;
    line-height: 1; }
    #foot .footer_smart span {
      display: inline-block; }
      #foot .footer_smart span::before {
        content: "";
        display: inline-block;
        width: 22px;
        height: 22px;
        margin-left: 7px;
        margin-right: 8px;
        background: url("../img/sinopac-logo.svg") no-repeat 0 0;
        position: relative;
        top: 5px; }
    #foot .footer_smart a {
      display: inline-block;
      letter-spacing: 0;
      margin: 10px 5px 0 5px;
      vertical-align: middle; }
    #foot .footer_smart #cdic {
      cursor: pointer;
      display: -webkit-inline-box;
      display: -ms-inline-flexbox;
      display: inline-flex;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      line-height: 1; }

.footer_ico {
  margin-right: 0.2em; }

@media all and (max-width: 1279px) {
  #download {
    display: block; } }

#footer_download {
  position: relative;
  width: 100%;
  height: 505px;
  padding: 90px 20px;
  background: url(../img/index/bg_curve.svg) center/cover no-repeat;
  color: white;
  overflow: hidden;
  line-height: 1; }
  @media all and (max-width: 768px) {
    #footer_download {
      height: auto;
      position: unset;
      padding: 47px 20px 0 20px; } }
  #footer_download .footer_download_title {
    font-size: 30px;
    font-weight: bold;
    letter-spacing: 8px;
    text-align: center;
    margin-left: 69px; }
    @media all and (max-width: 1279px) {
      #footer_download .footer_download_title {
        font-size: 20px;
        letter-spacing: 5px;
        margin-left: 115px; } }
    @media all and (max-width: 768px) {
      #footer_download .footer_download_title {
        font-size: 16px;
        letter-spacing: 3.2px;
        margin-left: 0; } }
  #footer_download .footer_download_con {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    position: absolute;
    bottom: -10px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%); }
    @media all and (max-width: 1279px) {
      #footer_download .footer_download_con {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        min-width: 760px; } }
    @media all and (max-width: 768px) {
      #footer_download .footer_download_con {
        display: block;
        position: relative;
        bottom: 0;
        left: 0;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
        min-width: auto; } }
    #footer_download .footer_download_con .footer_download_img {
      margin-right: 40px; }
      @media all and (max-width: 768px) {
        #footer_download .footer_download_con .footer_download_img {
          margin-right: 26px;
          margin: 9% auto -4% auto;
          text-align: center;
          width: 64%;
          max-width: 236px; }
          #footer_download .footer_download_con .footer_download_img img {
            width: 100%; } }
    #footer_download .footer_download_con .footer_download_text {
      margin-top: 24px; }
      @media all and (max-width: 1279px) {
        #footer_download .footer_download_con .footer_download_text {
          margin-top: 16px; } }
      #footer_download .footer_download_con .footer_download_text h6 {
        font-size: 24px; }
        @media all and (max-width: 1279px) {
          #footer_download .footer_download_con .footer_download_text h6 {
            font-size: 16px; } }
        @media all and (max-width: 768px) {
          #footer_download .footer_download_con .footer_download_text h6 {
            display: none; } }
      #footer_download .footer_download_con .footer_download_text > p {
        white-space: nowrap;
        font-size: 16px;
        letter-spacing: 0.8px;
        margin: 20px 0 45px 0; }
        @media all and (max-width: 1279px) {
          #footer_download .footer_download_con .footer_download_text > p {
            font-size: 12px;
            margin: 14px 0 30px 0; } }
        @media all and (max-width: 768px) {
          #footer_download .footer_download_con .footer_download_text > p {
            display: none; } }
        #footer_download .footer_download_con .footer_download_text > p span {
          color: #825f14; }
      #footer_download .footer_download_con .footer_download_text .footer_download_box {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex; }
        @media all and (max-width: 768px) {
          #footer_download .footer_download_con .footer_download_text .footer_download_box {
            display: block; } }
        #footer_download .footer_download_con .footer_download_text .footer_download_box .footer_download_box_img {
          margin-right: 24px; }
          @media all and (max-width: 1279px) {
            #footer_download .footer_download_con .footer_download_text .footer_download_box .footer_download_box_img {
              margin-right: 10px; }
              #footer_download .footer_download_con .footer_download_text .footer_download_box .footer_download_box_img img {
                width: 100%; } }
          @media all and (max-width: 768px) {
            #footer_download .footer_download_con .footer_download_text .footer_download_box .footer_download_box_img {
              display: none; } }
        #footer_download .footer_download_con .footer_download_text .footer_download_box .footer_download_box_inner p {
          font-size: 14px; }
          @media all and (max-width: 1279px) {
            #footer_download .footer_download_con .footer_download_text .footer_download_box .footer_download_box_inner p {
              font-size: 13px; } }
        #footer_download .footer_download_con .footer_download_text .footer_download_box .footer_download_box_inner p:first-child {
          font-size: 36px;
          margin-bottom: 19px; }
          @media all and (max-width: 1279px) {
            #footer_download .footer_download_con .footer_download_text .footer_download_box .footer_download_box_inner p:first-child {
              font-size: 24px;
              margin-bottom: 14px;
              margin-top: 4px; } }
          @media all and (max-width: 768px) {
            #footer_download .footer_download_con .footer_download_text .footer_download_box .footer_download_box_inner p:first-child {
              margin-bottom: 11px;
              margin-top: 24px;
              text-align: center; } }
        #footer_download .footer_download_con .footer_download_text .footer_download_box .footer_download_box_inner p:nth-child(2) {
          line-height: 1.1em; }
          @media all and (max-width: 768px) {
            #footer_download .footer_download_con .footer_download_text .footer_download_box .footer_download_box_inner p:nth-child(2) {
              text-align: center; } }
        #footer_download .footer_download_con .footer_download_text .footer_download_box .footer_download_box_inner p:nth-child(3) {
          line-height: 1.1em;
          margin-top: 0.5em;
          white-space: nowrap; }
          @media all and (max-width: 768px) {
            #footer_download .footer_download_con .footer_download_text .footer_download_box .footer_download_box_inner p:nth-child(3) {
              text-align: center;
              margin-bottom: 22px;
              white-space: normal; } }
        #footer_download .footer_download_con .footer_download_text .footer_download_box .footer_download_box_inner .footer_download_box_btn {
          margin-top: 20px;
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex; }
          @media all and (max-width: 1279px) {
            #footer_download .footer_download_con .footer_download_text .footer_download_box .footer_download_box_inner .footer_download_box_btn {
              margin-top: 12px; } }
          @media all and (max-width: 768px) {
            #footer_download .footer_download_con .footer_download_text .footer_download_box .footer_download_box_inner .footer_download_box_btn {
              text-align: center;
              margin: 0 auto;
              max-width: 300px; } }
          #footer_download .footer_download_con .footer_download_text .footer_download_box .footer_download_box_inner .footer_download_box_btn a {
            margin-right: 5px;
            border-radius: 5px; }
            #footer_download .footer_download_con .footer_download_text .footer_download_box .footer_download_box_inner .footer_download_box_btn a img {
              width: 100%;
              display: block; }
          #footer_download .footer_download_con .footer_download_text .footer_download_box .footer_download_box_inner .footer_download_box_btn a:last-child {
            margin-right: 0; }

@-webkit-keyframes inner-center-div {
  0% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1); }
  50% {
    -webkit-transform: scale(0.8);
    transform: scale(0.8); }
  100% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1); } }

@keyframes inner-center-div {
  0% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1); }
  50% {
    -webkit-transform: scale(0.8);
    transform: scale(0.8); }
  100% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1); } }

@-webkit-keyframes float-1 {
  0% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px); }
  50% {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px); }
  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px); } }

@keyframes float-1 {
  0% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px); }
  50% {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px); }
  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px); } }

@-webkit-keyframes float-2 {
  0% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px); }
  50% {
    -webkit-transform: translateY(-12px);
    transform: translateY(-12px); }
  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px); } }

@keyframes float-2 {
  0% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px); }
  50% {
    -webkit-transform: translateY(-12px);
    transform: translateY(-12px); }
  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px); } }

@-webkit-keyframes wave-animation {
  0%, 100% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg); } }

@keyframes wave-animation {
  0%, 100% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg); } }

@-webkit-keyframes scrolling {
  0% {
    opacity: 0; }
  50% {
    opacity: 1;
    -webkit-transform: translateY(130%);
    transform: translateY(130%); }
  100% {
    -webkit-transform: translateY(130%);
    transform: translateY(130%);
    opacity: 0; } }

@keyframes scrolling {
  0% {
    opacity: 0; }
  50% {
    opacity: 1;
    -webkit-transform: translateY(130%);
    transform: translateY(130%); }
  100% {
    -webkit-transform: translateY(130%);
    transform: translateY(130%);
    opacity: 0; } }

@-webkit-keyframes lightshine {
  0% {
    opacity: 0.4; }
  5% {
    opacity: 0.5; }
  10% {
    opacity: 0.6; }
  15% {
    opacity: 0.85; }
  25% {
    opacity: 0.5; }
  30% {
    opacity: 1; }
  35% {
    opacity: 0.1; }
  40% {
    opacity: 0.25; }
  45% {
    opacity: 0.5; }
  60% {
    opacity: 1; }
  70% {
    opacity: 0.85; }
  80% {
    opacity: 0.4; }
  90% {
    opacity: 0.5; }
  100% {
    opacity: 1; } }

@keyframes lightshine {
  0% {
    opacity: 0.4; }
  5% {
    opacity: 0.5; }
  10% {
    opacity: 0.6; }
  15% {
    opacity: 0.85; }
  25% {
    opacity: 0.5; }
  30% {
    opacity: 1; }
  35% {
    opacity: 0.1; }
  40% {
    opacity: 0.25; }
  45% {
    opacity: 0.5; }
  60% {
    opacity: 1; }
  70% {
    opacity: 0.85; }
  80% {
    opacity: 0.4; }
  90% {
    opacity: 0.5; }
  100% {
    opacity: 1; } }

@-webkit-keyframes spider-move {
  0% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px); }
  50% {
    -webkit-transform: translateY(-50px);
    transform: translateY(-50px); }
  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px); } }

@keyframes spider-move {
  0% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px); }
  50% {
    -webkit-transform: translateY(-50px);
    transform: translateY(-50px); }
  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px); } }

@-webkit-keyframes spider-line {
  0% {
    height: 116px; }
  50% {
    height: 60px; }
  100% {
    height: 116px; } }

@keyframes spider-line {
  0% {
    height: 116px; }
  50% {
    height: 60px; }
  100% {
    height: 116px; } }

@-webkit-keyframes rotate-circle {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }

@keyframes rotate-circle {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }

@media (max-width: 1020px) {
  @-webkit-keyframes spider-move {
    0% {
      -webkit-transform: translateY(0px);
      transform: translateY(0px); }
    50% {
      -webkit-transform: translateY(-30px);
      transform: translateY(-30px); }
    100% {
      -webkit-transform: translateY(0px);
      transform: translateY(0px); } }
  @keyframes spider-move {
    0% {
      -webkit-transform: translateY(0px);
      transform: translateY(0px); }
    50% {
      -webkit-transform: translateY(-30px);
      transform: translateY(-30px); }
    100% {
      -webkit-transform: translateY(0px);
      transform: translateY(0px); } }
  @-webkit-keyframes spider-line {
    0% {
      height: 58px; }
    50% {
      height: 30px; }
    100% {
      height: 58px; } }
  @keyframes spider-line {
    0% {
      height: 58px; }
    50% {
      height: 30px; }
    100% {
      height: 58px; } } }

/*!
 * OverlayScrollbars
 * https://github.com/KingSora/OverlayScrollbars
 *
 * Version: 1.13.0
 *
 * Copyright KingSora | Rene Haas.
 * https://github.com/KingSora
 *
 * Released under the MIT license.
 * Date: 02.08.2020
 */
/*
OVERLAY SCROLLBARS CORE:
*/
html.os-html,
html.os-html > .os-host {
  display: block;
  overflow: hidden;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  height: 100% !important;
  width: 100% !important;
  min-width: 100% !important;
  min-height: 100% !important;
  margin: 0 !important;
  position: absolute !important;
  /* could be position: fixed; but it causes issues on iOS (-webkit-overflow-scrolling: touch) */ }

html.os-html > .os-host > .os-padding {
  position: absolute;
  /* could be position: fixed; but it causes issues on iOS (-webkit-overflow-scrolling: touch) */ }

body.os-dragging,
body.os-dragging * {
  cursor: default; }

.os-host,
.os-host-textarea {
  position: relative;
  overflow: visible !important;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -ms-flex-line-pack: start;
  align-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -ms-grid-row-align: flex-start;
  align-items: flex-start; }

.os-host-flexbox {
  overflow: hidden !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }

.os-host-flexbox > .os-size-auto-observer {
  height: inherit !important; }

.os-host-flexbox > .os-content-glue {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -ms-flex-negative: 0;
  flex-shrink: 0; }

.os-host-flexbox > .os-size-auto-observer,
.os-host-flexbox > .os-content-glue {
  min-height: 0;
  min-width: 0;
  -webkit-box-flex: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -ms-flex-negative: 1;
  flex-shrink: 1;
  -ms-flex-preferred-size: auto;
  flex-basis: auto; }

#os-dummy-scrollbar-size {
  position: fixed;
  opacity: 0;
  -ms-filter: 'progid:DXImageTransform.Microsoft.Alpha(Opacity=0)';
  visibility: hidden;
  overflow: scroll;
  height: 500px;
  width: 500px; }

#os-dummy-scrollbar-size > div {
  width: 200%;
  height: 200%;
  margin: 10px 0; }

/* fix restricted measuring */
#os-dummy-scrollbar-size:before,
#os-dummy-scrollbar-size:after,
.os-content:before,
.os-content:after {
  content: '';
  display: table;
  width: 0.01px;
  height: 0.01px;
  line-height: 0;
  font-size: 0;
  -webkit-box-flex: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  visibility: hidden; }

#os-dummy-scrollbar-size,
.os-viewport {
  -ms-overflow-style: scrollbar !important; }

.os-viewport-native-scrollbars-invisible#os-dummy-scrollbar-size,
.os-viewport-native-scrollbars-invisible.os-viewport {
  scrollbar-width: none !important; }

.os-viewport-native-scrollbars-invisible#os-dummy-scrollbar-size::-webkit-scrollbar,
.os-viewport-native-scrollbars-invisible.os-viewport::-webkit-scrollbar,
.os-viewport-native-scrollbars-invisible#os-dummy-scrollbar-size::-webkit-scrollbar-corner,
.os-viewport-native-scrollbars-invisible.os-viewport::-webkit-scrollbar-corner {
  display: none !important;
  width: 0px !important;
  height: 0px !important;
  visibility: hidden !important;
  background: transparent !important; }

.os-content-glue {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
  max-height: 100%;
  max-width: 100%;
  width: 100%;
  pointer-events: none; }

.os-padding {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
  direction: inherit;
  position: absolute;
  overflow: visible;
  padding: 0;
  margin: 0;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  width: auto !important;
  height: auto !important;
  z-index: 0; }

.os-host-overflow > .os-padding {
  overflow: hidden; }

.os-viewport {
  direction: inherit !important;
  -webkit-box-sizing: inherit !important;
  box-sizing: inherit !important;
  resize: none !important;
  outline: none !important;
  position: absolute;
  overflow: hidden;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 0;
  margin: 0;
  -webkit-overflow-scrolling: touch; }

.os-content-arrange {
  position: absolute;
  z-index: -1;
  min-height: 1px;
  min-width: 1px;
  pointer-events: none; }

.os-content {
  direction: inherit;
  -webkit-box-sizing: border-box !important;
  box-sizing: border-box !important;
  position: relative;
  display: block;
  height: 100%;
  width: 100%;
  height: 100%;
  width: 100%;
  visibility: visible; }

.os-content > .os-textarea {
  -webkit-box-sizing: border-box !important;
  box-sizing: border-box !important;
  direction: inherit !important;
  background: transparent !important;
  outline: 0px none transparent !important;
  overflow: hidden !important;
  position: absolute !important;
  display: block !important;
  top: 0 !important;
  left: 0 !important;
  margin: 0 !important;
  border-radius: 0px !important;
  float: none !important;
  -webkit-filter: none !important;
  filter: none !important;
  border: none !important;
  resize: none !important;
  -webkit-transform: none !important;
  -ms-transform: none !important;
  transform: none !important;
  max-width: none !important;
  max-height: none !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  -webkit-perspective: none !important;
  perspective: none !important;
  opacity: 1 !important;
  z-index: 1 !important;
  clip: auto !important;
  vertical-align: baseline !important;
  padding: 0px; }

.os-host-rtl > .os-padding > .os-viewport > .os-content > .os-textarea {
  right: 0 !important; }

.os-content > .os-textarea-cover {
  z-index: -1;
  pointer-events: none; }

.os-content > .os-textarea[wrap='off'] {
  white-space: pre !important;
  margin: 0px !important; }

.os-text-inherit {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  font-style: inherit;
  font-variant: inherit;
  text-transform: inherit;
  text-decoration: inherit;
  text-indent: inherit;
  text-align: inherit;
  text-shadow: inherit;
  -o-text-overflow: inherit;
  text-overflow: inherit;
  letter-spacing: inherit;
  word-spacing: inherit;
  line-height: inherit;
  unicode-bidi: inherit;
  direction: inherit;
  color: inherit;
  cursor: text; }

.os-resize-observer,
.os-resize-observer-host {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
  display: block;
  visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: -1; }

.os-resize-observer-host {
  padding: inherit;
  border: inherit;
  border-color: transparent;
  border-style: solid;
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

.os-resize-observer-host.observed {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start; }

.os-resize-observer-host > .os-resize-observer,
.os-resize-observer-host.observed > .os-resize-observer {
  height: 200%;
  width: 200%;
  padding: inherit;
  border: inherit;
  margin: 0;
  display: block;
  -webkit-box-sizing: content-box;
  box-sizing: content-box; }

.os-resize-observer-host.observed > .os-resize-observer,
.os-resize-observer-host.observed > .os-resize-observer:before {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -ms-flex-preferred-size: auto;
  flex-basis: auto;
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

.os-resize-observer-host.observed > .os-resize-observer:before {
  content: '';
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  padding: inherit;
  border: inherit;
  margin: 0; }

.os-size-auto-observer {
  -webkit-box-sizing: inherit !important;
  box-sizing: inherit !important;
  height: 100%;
  width: inherit;
  max-width: 1px;
  position: relative;
  float: left;
  max-height: 1px;
  overflow: hidden;
  z-index: -1;
  padding: 0;
  margin: 0;
  pointer-events: none;
  -webkit-box-flex: inherit;
  -ms-flex-positive: inherit;
  flex-grow: inherit;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -ms-flex-preferred-size: 0;
  flex-basis: 0; }

.os-size-auto-observer > .os-resize-observer {
  width: 1000%;
  height: 1000%;
  min-height: 1px;
  min-width: 1px; }

.os-resize-observer-item {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  z-index: -1;
  opacity: 0;
  direction: ltr !important;
  -webkit-box-flex: 0 !important;
  -ms-flex: none !important;
  flex: none !important; }

.os-resize-observer-item-final {
  position: absolute;
  left: 0;
  top: 0;
  -webkit-transition: none !important;
  -o-transition: none !important;
  transition: none !important;
  -webkit-box-flex: 0 !important;
  -ms-flex: none !important;
  flex: none !important; }

.os-resize-observer {
  -webkit-animation-duration: 0.001s;
  animation-duration: 0.001s;
  -webkit-animation-name: os-resize-observer-dummy-animation;
  animation-name: os-resize-observer-dummy-animation; }

object.os-resize-observer {
  -webkit-box-sizing: border-box !important;
  box-sizing: border-box !important; }

@-webkit-keyframes os-resize-observer-dummy-animation {
  from {
    cursor: auto; }
  to {
    cursor: none; } }

@keyframes os-resize-observer-dummy-animation {
  from {
    cursor: auto; }
  to {
    cursor: none; } }

/*
CUSTOM SCROLLBARS AND CORNER CORE:
*/
.os-host-transition > .os-scrollbar,
.os-host-transition > .os-scrollbar-corner {
  -webkit-transition: opacity 0.3s, visibility 0.3s, top 0.3s, right 0.3s, bottom 0.3s, left 0.3s;
  -o-transition: opacity 0.3s, visibility 0.3s, top 0.3s, right 0.3s, bottom 0.3s, left 0.3s;
  transition: opacity 0.3s, visibility 0.3s, top 0.3s, right 0.3s, bottom 0.3s, left 0.3s; }

html.os-html > .os-host > .os-scrollbar {
  position: absolute;
  /* could be position: fixed; but it causes issues on iOS (-webkit-overflow-scrolling: touch) */
  z-index: 999999;
  /* highest z-index of the page */ }

.os-scrollbar,
.os-scrollbar-corner {
  position: absolute;
  opacity: 1;
  -ms-filter: 'progid:DXImageTransform.Microsoft.Alpha(Opacity=100)';
  z-index: 1; }

.os-scrollbar-corner {
  bottom: 0;
  right: 0; }

.os-scrollbar {
  pointer-events: none; }

.os-scrollbar-track {
  pointer-events: auto;
  position: relative;
  height: 100%;
  width: 100%;
  padding: 0 !important;
  border: none !important; }

.os-scrollbar-handle {
  pointer-events: auto;
  position: absolute;
  width: 100%;
  height: 100%; }

.os-scrollbar-handle-off,
.os-scrollbar-track-off {
  pointer-events: none; }

.os-scrollbar.os-scrollbar-unusable,
.os-scrollbar.os-scrollbar-unusable * {
  pointer-events: none !important; }

.os-scrollbar.os-scrollbar-unusable .os-scrollbar-handle {
  opacity: 0 !important; }

.os-scrollbar-horizontal {
  bottom: 0;
  left: 0; }

.os-scrollbar-vertical {
  top: 0;
  right: 0; }

.os-host-rtl > .os-scrollbar-horizontal {
  right: 0; }

.os-host-rtl > .os-scrollbar-vertical {
  right: auto;
  left: 0; }

.os-host-rtl > .os-scrollbar-corner {
  right: auto;
  left: 0; }

.os-scrollbar-auto-hidden,
.os-padding + .os-scrollbar-corner,
.os-host-resize-disabled.os-host-scrollbar-horizontal-hidden > .os-scrollbar-corner,
.os-host-scrollbar-horizontal-hidden > .os-scrollbar-horizontal,
.os-host-resize-disabled.os-host-scrollbar-vertical-hidden > .os-scrollbar-corner,
.os-host-scrollbar-vertical-hidden > .os-scrollbar-vertical,
.os-scrollbar-horizontal.os-scrollbar-auto-hidden + .os-scrollbar-vertical + .os-scrollbar-corner,
.os-scrollbar-horizontal + .os-scrollbar-vertical.os-scrollbar-auto-hidden + .os-scrollbar-corner,
.os-scrollbar-horizontal.os-scrollbar-auto-hidden + .os-scrollbar-vertical.os-scrollbar-auto-hidden + .os-scrollbar-corner {
  opacity: 0;
  visibility: hidden;
  pointer-events: none; }

.os-scrollbar-corner-resize-both {
  cursor: nwse-resize; }

.os-host-rtl > .os-scrollbar-corner-resize-both {
  cursor: nesw-resize; }

.os-scrollbar-corner-resize-horizontal {
  cursor: ew-resize; }

.os-scrollbar-corner-resize-vertical {
  cursor: ns-resize; }

.os-dragging .os-scrollbar-corner.os-scrollbar-corner-resize {
  cursor: default; }

.os-host-resize-disabled.os-host-scrollbar-horizontal-hidden > .os-scrollbar-vertical {
  top: 0;
  bottom: 0; }

.os-host-resize-disabled.os-host-scrollbar-vertical-hidden > .os-scrollbar-horizontal,
.os-host-rtl.os-host-resize-disabled.os-host-scrollbar-vertical-hidden > .os-scrollbar-horizontal {
  right: 0;
  left: 0; }

.os-scrollbar:hover,
.os-scrollbar-corner.os-scrollbar-corner-resize {
  opacity: 1 !important;
  visibility: visible !important; }

.os-scrollbar-corner.os-scrollbar-corner-resize {
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+PHN2ZyAgIHhtbG5zOmRjPSJodHRwOi8vcHVybC5vcmcvZGMvZWxlbWVudHMvMS4xLyIgICB4bWxuczpjYz0iaHR0cDovL2NyZWF0aXZlY29tbW9ucy5vcmcvbnMjIiAgIHhtbG5zOnJkZj0iaHR0cDovL3d3dy53My5vcmcvMTk5OS8wMi8yMi1yZGYtc3ludGF4LW5zIyIgICB4bWxuczpzdmc9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiAgIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgICB3aWR0aD0iMTAiICAgaGVpZ2h0PSIxMCIgICB2ZXJzaW9uPSIxLjEiPiAgPGcgICAgIHRyYW5zZm9ybT0idHJhbnNsYXRlKDAsLTEwNDIuMzYyMikiICAgICBzdHlsZT0iZGlzcGxheTppbmxpbmUiPiAgICA8cGF0aCAgICAgICBzdHlsZT0iZmlsbDojMDAwMDAwO2ZpbGwtb3BhY2l0eTowLjQ5NDExNzY1O2ZpbGwtcnVsZTpldmVub2RkO3N0cm9rZTpub25lIiAgICAgICBkPSJtIDcuNDI0MjE4NywxMDQyLjM2MjIgYyAtMC43MjM1NzkyLDAgLTEuMzEwMTU2MiwwLjU4NjYgLTEuMzEwMTU2MiwxLjMxMDIgMCwwLjI5OSAwLjEwNDM0MTksMC41NzEgMC4yNzI5NDkyLDAuNzkxNSAwLjIwOTEwMjQsMC4xNDEzIDAuNDY1NjIwNiwwLjIxODQgMC43MzY5NjI5LDAuMjE4NCAwLjcyMzU3OTMsMCAxLjMxMDE1NjMsLTAuNTg2NiAxLjMxMDE1NjMsLTEuMzEwMiAwLC0wLjI3MTMgLTAuMDc3MDkzLC0wLjUyNzggLTAuMjE4MzU5NCwtMC43MzcgLTAuMjIwNDk0MSwtMC4xNjg2IC0wLjQ5MjU0NDMsLTAuMjcyOSAtMC43OTE1NTI4LC0wLjI3MjkgeiBtIDAsMy4wODQzIGMgLTAuNzIzNTc5MiwwIC0xLjMxMDE1NjIsMC41ODY2IC0xLjMxMDE1NjIsMS4zMTAyIDAsMC4yOTkgMC4xMDQzNDE5LDAuNTcxIDAuMjcyOTQ5MiwwLjc5MTUgMC4yMDkxMDI0LDAuMTQxMyAwLjQ2NTYyMDYsMC4yMTg0IDAuNzM2OTYyOSwwLjIxODQgMC43MjM1NzkzLDAgMS4zMTAxNTYzLC0wLjU4NjYgMS4zMTAxNTYzLC0xLjMxMDIgMCwtMC4yNzEzIC0wLjA3NzA5MywtMC41Mjc4IC0wLjIxODM1OTQsLTAuNzM2OSAtMC4yMjA0OTQxLC0wLjE2ODYgLTAuNDkyNTQ0MywtMC4yNzMgLTAuNzkxNTUyOCwtMC4yNzMgeiBtIC0zLjA4NDMyNjEsMCBjIC0wLjcyMzU3OTMsMCAtMS4zMTAxNTYzLDAuNTg2NiAtMS4zMTAxNTYzLDEuMzEwMiAwLDAuMjk5IDAuMTA0MzQxOSwwLjU3MSAwLjI3Mjk0OTIsMC43OTE1IDAuMjA5MTAyNCwwLjE0MTMgMC40NjU2MjA3LDAuMjE4NCAwLjczNjk2MjksMC4yMTg0IDAuNzIzNTc5MywwIDEuMzEwMTU2MywtMC41ODY2IDEuMzEwMTU2MywtMS4zMTAyIDAsLTAuMjcxMyAtMC4wNzcwOTMsLTAuNTI3OCAtMC4yMTgzNTk0LC0wLjczNjkgLTAuMjIwNDk0LC0wLjE2ODYgLTAuNDkyNTQ0MiwtMC4yNzMgLTAuNzkxNTUyNywtMC4yNzMgeiBtIC0zLjAyOTczNjQsMy4wMjk4IEMgMC41ODY1NzY5MywxMDQ4LjQ3NjMgMCwxMDQ5LjA2MjggMCwxMDQ5Ljc4NjQgYyAwLDAuMjk5IDAuMTA0MzQxOSwwLjU3MTEgMC4yNzI5NDkyMiwwLjc5MTYgMC4yMDkxMDIyOSwwLjE0MTIgMC40NjU2MjA2NSwwLjIxODMgMC43MzY5NjI4OCwwLjIxODMgMC43MjM1NzkzLDAgMS4zMTAxNTYzLC0wLjU4NjUgMS4zMTAxNTYzLC0xLjMxMDEgMCwtMC4yNzE0IC0wLjA3NzA5MywtMC41Mjc5IC0wLjIxODM1OTQsLTAuNzM3IC0wLjIyMDQ5NDEsLTAuMTY4NiAtMC40OTI1NDQzLC0wLjI3MjkgLTAuNzkxNTUyOCwtMC4yNzI5IHogbSAzLjAyOTczNjQsMCBjIC0wLjcyMzU3OTMsMCAtMS4zMTAxNTYzLDAuNTg2NSAtMS4zMTAxNTYzLDEuMzEwMSAwLDAuMjk5IDAuMTA0MzQxOSwwLjU3MTEgMC4yNzI5NDkyLDAuNzkxNiAwLjIwOTEwMjQsMC4xNDEyIDAuNDY1NjIwNywwLjIxODMgMC43MzY5NjI5LDAuMjE4MyAwLjcyMzU3OTMsMCAxLjMxMDE1NjMsLTAuNTg2NSAxLjMxMDE1NjMsLTEuMzEwMSAwLC0wLjI3MTQgLTAuMDc3MDkzLC0wLjUyNzkgLTAuMjE4MzU5NCwtMC43MzcgLTAuMjIwNDk0LC0wLjE2ODYgLTAuNDkyNTQ0MiwtMC4yNzI5IC0wLjc5MTU1MjcsLTAuMjcyOSB6IG0gMy4wODQzMjYxLDAgYyAtMC43MjM1NzkyLDAgLTEuMzEwMTU2MiwwLjU4NjUgLTEuMzEwMTU2MiwxLjMxMDEgMCwwLjI5OSAwLjEwNDM0MTksMC41NzExIDAuMjcyOTQ5MiwwLjc5MTYgMC4yMDkxMDI0LDAuMTQxMiAwLjQ2NTYyMDYsMC4yMTgzIDAuNzM2OTYyOSwwLjIxODMgMC43MjM1NzkzLDAgMS4zMTAxNTYzLC0wLjU4NjUgMS4zMTAxNTYzLC0xLjMxMDEgMCwtMC4yNzE0IC0wLjA3NzA5MywtMC41Mjc5IC0wLjIxODM1OTQsLTAuNzM3IC0wLjIyMDQ5NDEsLTAuMTY4NiAtMC40OTI1NDQzLC0wLjI3MjkgLTAuNzkxNTUyOCwtMC4yNzI5IHoiLz4gIDwvZz4gIDxnICAgICBzdHlsZT0iZGlzcGxheTppbmxpbmUiPiAgICA8cGF0aCAgICAgICBzdHlsZT0iZmlsbDojZmZmZmZmO2ZpbGwtb3BhY2l0eToxO2ZpbGwtcnVsZTpldmVub2RkO3N0cm9rZTpub25lIiAgICAgICBkPSJtIDguMjE1NzcxNSwwLjI3Mjk0OTIyIGMgMC4xNDEyNjY3LDAuMjA5MTAyMjkgMC4yMTgzNTk0LDAuNDY1NjIwNjUgMC4yMTgzNTk0LDAuNzM2OTYyODggMCwwLjcyMzU3OTMgLTAuNTg2NTc3LDEuMzEwMTU2MyAtMS4zMTAxNTYzLDEuMzEwMTU2MyAtMC4yNzEzNDIzLDAgLTAuNTI3ODYwNSwtMC4wNzcwOTMgLTAuNzM2OTYyOSwtMC4yMTgzNTk0IDAuMjM5NDEwNCwwLjMxMzA4NTkgMC42MTI2MzYyLDAuNTE4NjAzNSAxLjAzNzIwNywwLjUxODYwMzUgMC43MjM1NzkzLDAgMS4zMTAxNTYzLC0wLjU4NjU3NyAxLjMxMDE1NjMsLTEuMzEwMTU2MyAwLC0wLjQyNDU3MDc2IC0wLjIwNTUxNzYsLTAuNzk3Nzk2NTkgLTAuNTE4NjAzNSwtMS4wMzcyMDY5OCB6IG0gMCwzLjA4NDMyNjE4IGMgMC4xNDEyNjY3LDAuMjA5MTAyMyAwLjIxODM1OTQsMC40NjU2MjA2IDAuMjE4MzU5NCwwLjczNjk2MjkgMCwwLjcyMzU3OTMgLTAuNTg2NTc3LDEuMzEwMTU2MiAtMS4zMTAxNTYzLDEuMzEwMTU2MiAtMC4yNzEzNDIzLDAgLTAuNTI3ODYwNSwtMC4wNzcwOTMgLTAuNzM2OTYyOSwtMC4yMTgzNTkzIDAuMjM5NDEwNCwwLjMxMzA4NTkgMC42MTI2MzYyLDAuNTE4NjAzNSAxLjAzNzIwNywwLjUxODYwMzUgMC43MjM1NzkzLDAgMS4zMTAxNTYzLC0wLjU4NjU3NyAxLjMxMDE1NjMsLTEuMzEwMTU2MyAwLC0wLjQyNDU3MDggLTAuMjA1NTE3NiwtMC43OTc3OTY3IC0wLjUxODYwMzUsLTEuMDM3MjA3IHogbSAtMy4wODQzMjYyLDAgYyAwLjE0MTI2NjcsMC4yMDkxMDIzIDAuMjE4MzU5NCwwLjQ2NTYyMDYgMC4yMTgzNTk0LDAuNzM2OTYyOSAwLDAuNzIzNTc5MyAtMC41ODY1NzcsMS4zMTAxNTYyIC0xLjMxMDE1NjMsMS4zMTAxNTYyIC0wLjI3MTM0MjIsMCAtMC41Mjc4NjA1LC0wLjA3NzA5MyAtMC43MzY5NjI5LC0wLjIxODM1OTMgMC4yMzk0MTA0LDAuMzEzMDg1OSAwLjYxMjYzNjMsMC41MTg2MDM1IDEuMDM3MjA3MSwwLjUxODYwMzUgMC43MjM1NzkzLDAgMS4zMTAxNTYyLC0wLjU4NjU3NyAxLjMxMDE1NjIsLTEuMzEwMTU2MyAwLC0wLjQyNDU3MDggLTAuMjA1NTE3NSwtMC43OTc3OTY3IC0wLjUxODYwMzUsLTEuMDM3MjA3IHogTSAyLjEwMTcwOSw2LjM4NzAxMTcgYyAwLjE0MTI2NjcsMC4yMDkxMDI0IDAuMjE4MzU5NCwwLjQ2NTYyMDYgMC4yMTgzNTk0LDAuNzM2OTYyOSAwLDAuNzIzNTc5MyAtMC41ODY1NzcsMS4zMTAxNTYzIC0xLjMxMDE1NjMsMS4zMTAxNTYzIC0wLjI3MTM0MjIzLDAgLTAuNTI3ODYwNTksLTAuMDc3MDkzIC0wLjczNjk2Mjg4LC0wLjIxODM1OTQgMC4yMzk0MTAzOSwwLjMxMzA4NTkgMC42MTI2MzYyMiwwLjUxODYwMzUgMS4wMzcyMDY5OCwwLjUxODYwMzUgMC43MjM1NzkzLDAgMS4zMTAxNTYzLC0wLjU4NjU3NyAxLjMxMDE1NjMsLTEuMzEwMTU2MyAwLC0wLjQyNDU3MDggLTAuMjA1NTE3NiwtMC43OTc3OTY2IC0wLjUxODYwMzUsLTEuMDM3MjA3IHogbSAzLjAyOTczNjMsMCBjIDAuMTQxMjY2NywwLjIwOTEwMjQgMC4yMTgzNTk0LDAuNDY1NjIwNiAwLjIxODM1OTQsMC43MzY5NjI5IDAsMC43MjM1NzkzIC0wLjU4NjU3NywxLjMxMDE1NjMgLTEuMzEwMTU2MywxLjMxMDE1NjMgLTAuMjcxMzQyMiwwIC0wLjUyNzg2MDUsLTAuMDc3MDkzIC0wLjczNjk2MjksLTAuMjE4MzU5NCAwLjIzOTQxMDQsMC4zMTMwODU5IDAuNjEyNjM2MywwLjUxODYwMzUgMS4wMzcyMDcxLDAuNTE4NjAzNSAwLjcyMzU3OTMsMCAxLjMxMDE1NjIsLTAuNTg2NTc3IDEuMzEwMTU2MiwtMS4zMTAxNTYzIDAsLTAuNDI0NTcwOCAtMC4yMDU1MTc1LC0wLjc5Nzc5NjYgLTAuNTE4NjAzNSwtMS4wMzcyMDcgeiBtIDMuMDg0MzI2MiwwIGMgMC4xNDEyNjY3LDAuMjA5MTAyNCAwLjIxODM1OTQsMC40NjU2MjA2IDAuMjE4MzU5NCwwLjczNjk2MjkgMCwwLjcyMzU3OTMgLTAuNTg2NTc3LDEuMzEwMTU2MyAtMS4zMTAxNTYzLDEuMzEwMTU2MyAtMC4yNzEzNDIzLDAgLTAuNTI3ODYwNSwtMC4wNzcwOTMgLTAuNzM2OTYyOSwtMC4yMTgzNTk0IDAuMjM5NDEwNCwwLjMxMzA4NTkgMC42MTI2MzYyLDAuNTE4NjAzNSAxLjAzNzIwNywwLjUxODYwMzUgMC43MjM1NzkzLDAgMS4zMTAxNTYzLC0wLjU4NjU3NyAxLjMxMDE1NjMsLTEuMzEwMTU2MyAwLC0wLjQyNDU3MDggLTAuMjA1NTE3NiwtMC43OTc3OTY2IC0wLjUxODYwMzUsLTEuMDM3MjA3IHoiIC8+ICA8L2c+PC9zdmc+);
  background-repeat: no-repeat;
  background-position: 100% 100%;
  pointer-events: auto !important; }

.os-host-rtl > .os-scrollbar-corner.os-scrollbar-corner-resize {
  -webkit-transform: scale(-1, 1);
  -ms-transform: scale(-1, 1);
  transform: scale(-1, 1); }

.os-host-overflow {
  overflow: hidden !important; }

/*
THEMES:
*/
/* NONE THEME: */
.os-theme-none > .os-scrollbar-horizontal,
.os-theme-none > .os-scrollbar-vertical,
.os-theme-none > .os-scrollbar-corner {
  display: none !important; }

.os-theme-none > .os-scrollbar-corner-resize {
  display: block !important;
  min-width: 10px;
  min-height: 10px; }

/* DARK & LIGHT THEME: */
.os-theme-dark > .os-scrollbar-horizontal,
.os-theme-light > .os-scrollbar-horizontal {
  right: 10px;
  height: 8px; }

.os-theme-dark > .os-scrollbar-vertical,
.os-theme-light > .os-scrollbar-vertical {
  bottom: 10px;
  width: 10px; }

.os-theme-dark.os-host-rtl > .os-scrollbar-horizontal,
.os-theme-light.os-host-rtl > .os-scrollbar-horizontal {
  left: 10px;
  right: 0; }

.os-theme-dark > .os-scrollbar-corner,
.os-theme-light > .os-scrollbar-corner {
  height: 10px;
  width: 10px; }

.os-theme-dark > .os-scrollbar-corner,
.os-theme-light > .os-scrollbar-corner {
  background-color: transparent; }

.os-theme-dark > .os-scrollbar,
.os-theme-light > .os-scrollbar {
  padding: 2px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background: transparent; }

.os-theme-dark > .os-scrollbar.os-scrollbar-unusable,
.os-theme-light > .os-scrollbar.os-scrollbar-unusable {
  background: transparent; }

.os-theme-dark > .os-scrollbar > .os-scrollbar-track,
.os-theme-light > .os-scrollbar > .os-scrollbar-track {
  background: #E1E1E1; }

.os-theme-dark > .os-scrollbar-horizontal > .os-scrollbar-track > .os-scrollbar-handle,
.os-theme-light > .os-scrollbar-horizontal > .os-scrollbar-track > .os-scrollbar-handle {
  min-width: 30px; }

.os-theme-dark > .os-scrollbar-vertical > .os-scrollbar-track > .os-scrollbar-handle,
.os-theme-light > .os-scrollbar-vertical > .os-scrollbar-track > .os-scrollbar-handle {
  min-height: 30px; }

.os-theme-dark.os-host-transition > .os-scrollbar > .os-scrollbar-track > .os-scrollbar-handle,
.os-theme-light.os-host-transition > .os-scrollbar > .os-scrollbar-track > .os-scrollbar-handle {
  -webkit-transition: background-color 0.3s;
  -o-transition: background-color 0.3s;
  transition: background-color 0.3s; }

.os-theme-dark > .os-scrollbar > .os-scrollbar-track > .os-scrollbar-handle,
.os-theme-light > .os-scrollbar > .os-scrollbar-track > .os-scrollbar-handle,
.os-theme-dark > .os-scrollbar > .os-scrollbar-track,
.os-theme-light > .os-scrollbar > .os-scrollbar-track {
  border-radius: 10px; }

.os-theme-dark > .os-scrollbar > .os-scrollbar-track > .os-scrollbar-handle {
  background: #CEB071; }

.os-theme-light > .os-scrollbar > .os-scrollbar-track > .os-scrollbar-handle {
  background: rgba(255, 255, 255, 0.4); }

.os-theme-dark > .os-scrollbar:hover > .os-scrollbar-track > .os-scrollbar-handle {
  background: rgba(0, 0, 0, 0.55); }

.os-theme-light > .os-scrollbar:hover > .os-scrollbar-track > .os-scrollbar-handle {
  background: rgba(255, 255, 255, 0.55); }

.os-theme-dark > .os-scrollbar > .os-scrollbar-track > .os-scrollbar-handle.active {
  background: rgba(0, 0, 0, 0.7); }

.os-theme-light > .os-scrollbar > .os-scrollbar-track > .os-scrollbar-handle.active {
  background: rgba(255, 255, 255, 0.7); }

.os-theme-dark > .os-scrollbar-horizontal .os-scrollbar-handle:before,
.os-theme-dark > .os-scrollbar-vertical .os-scrollbar-handle:before,
.os-theme-light > .os-scrollbar-horizontal .os-scrollbar-handle:before,
.os-theme-light > .os-scrollbar-vertical .os-scrollbar-handle:before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: block; }

.os-theme-dark.os-host-scrollbar-horizontal-hidden > .os-scrollbar-horizontal .os-scrollbar-handle:before,
.os-theme-dark.os-host-scrollbar-vertical-hidden > .os-scrollbar-vertical .os-scrollbar-handle:before,
.os-theme-light.os-host-scrollbar-horizontal-hidden > .os-scrollbar-horizontal .os-scrollbar-handle:before,
.os-theme-light.os-host-scrollbar-vertical-hidden > .os-scrollbar-vertical .os-scrollbar-handle:before {
  display: none; }

.os-theme-dark > .os-scrollbar-horizontal .os-scrollbar-handle:before,
.os-theme-light > .os-scrollbar-horizontal .os-scrollbar-handle:before {
  top: -6px;
  bottom: -2px; }

.os-theme-dark > .os-scrollbar-vertical .os-scrollbar-handle:before,
.os-theme-light > .os-scrollbar-vertical .os-scrollbar-handle:before {
  left: -6px;
  right: -2px; }

.os-host-rtl.os-theme-dark > .os-scrollbar-vertical .os-scrollbar-handle:before,
.os-host-rtl.os-theme-light > .os-scrollbar-vertical .os-scrollbar-handle:before {
  right: -6px;
  left: -2px; }

#overlayer {
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 1001;
  background: #ffffff;
  inset: 0; }

.loader {
  position: fixed;
  z-index: 1003;
  top: 50%;
  margin-top: -115px;
  left: 50%;
  margin-left: -86.5px; }

.dawho-logo {
  width: 173px;
  height: 177px; }
  .dawho-logo img {
    width: 173px;
    height: 177px; }

.loading {
  position: relative;
  margin-top: -60px; }
  .loading img {
    width: 173px;
    height: 173px; }

.sinopac-logo {
  width: 173px;
  margin-bottom: 20px; }
  .sinopac-logo img {
    width: 100%; }

.loading {
  position: relative;
  margin-top: -60px; }
  .loading img {
    width: 173px;
    height: 173px; }

body {
  color: #fff;
  overflow: hidden;
  overflow-y: auto;
  background: #111;
  font-weight: 300;
  letter-spacing: 0.32px;
  font-size: 16px;
  line-height: 24px; }
  @media (max-width: 1020px) {
    body {
      font-size: 14px;
      line-height: 22px;
      letter-spacing: 0.28px; } }

.clearfix {
  display: block;
  clear: both; }

.wrapper {
  max-width: 1128px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative; }

.main {
  overflow: hidden; }

.kv {
  width: 100%;
  height: 1000px;
  background: url(../images/kv-bg.jpg) bottom center no-repeat;
  background-size: 2048px auto;
  padding-top: 120px;
  position: relative; }
  @media (max-width: 1020px) {
    .kv {
      height: 640px;
      padding-top: 88px; } }
  .kv:before {
    content: '';
    display: block;
    width: calc(50% - 185px);
    height: 88px;
    background: url(../images/kv-bottom.png) right repeat-x;
    background-size: auto 100%;
    z-index: 1;
    position: absolute;
    bottom: 0;
    left: 0; }
    @media (max-width: 1020px) {
      .kv:before {
        width: calc(50% - 60px);
        height: 40px; } }
  .kv:after {
    content: '';
    display: block;
    width: calc(50% - 185px);
    height: 88px;
    background: url(../images/kv-bottom.png) left bottom repeat-x;
    background-size: auto 100%;
    z-index: 1;
    position: absolute;
    bottom: 0;
    right: 0; }
    @media (max-width: 1020px) {
      .kv:after {
        width: calc(50% - 60px);
        height: 40px; } }
  .kv .centerslogan {
    position: relative; }
    .kv .centerslogan h1 {
      position: absolute;
      left: 0;
      top: 0;
      opacity: 0;
      pointer-events: none; }
    .kv .centerslogan .light {
      position: absolute;
      width: 295px;
      left: 0;
      right: 0;
      top: 0;
      bottom: 0;
      margin: auto;
      z-index: 0;
      -webkit-animation: inner-center-div 4s ease-in-out infinite;
      animation: inner-center-div 4s ease-in-out infinite; }
      @media (max-width: 1020px) {
        .kv .centerslogan .light {
          width: 208px; } }
    .kv .centerslogan .slogan {
      display: block;
      margin: 0 auto;
      width: 480px;
      position: relative;
      z-index: 1; }
      @media (max-width: 1020px) {
        .kv .centerslogan .slogan {
          width: 264px; } }
  .kv .centertiger {
    width: 280px;
    position: relative;
    margin: 0 auto 46px auto; }
    @media (max-width: 1020px) {
      .kv .centertiger {
        width: 200px;
        margin-bottom: 24px; } }
    .kv .centertiger .light {
      position: absolute;
      width: 50%;
      right: -10%;
      bottom: 5%;
      margin: auto;
      z-index: 0;
      -webkit-animation: inner-center-div 4s ease-in-out infinite;
      animation: inner-center-div 4s ease-in-out infinite; }
    .kv .centertiger .knife {
      display: block;
      width: 50px;
      position: absolute;
      left: 3%;
      top: 4%;
      z-index: 2;
      -webkit-transform-origin: bottom right;
      -ms-transform-origin: bottom right;
      transform-origin: bottom right;
      -webkit-animation: wave-animation 1s ease-in-out infinite;
      animation: wave-animation 1s ease-in-out infinite; }
      @media (max-width: 1020px) {
        .kv .centertiger .knife {
          width: 36px; } }
    .kv .centertiger .tiger {
      display: block;
      width: 100%;
      position: relative;
      z-index: 1; }
  .kv .scroll {
    position: relative;
    width: 120px;
    margin: 35px auto 0 auto;
    text-align: center; }
    @media (max-width: 1020px) {
      .kv .scroll {
        margin-top: 20px; } }
    .kv .scroll .dot {
      position: absolute;
      background-color: #fff;
      width: 2px;
      height: 5px;
      border-radius: 2px;
      background-color: #fff;
      margin: auto;
      left: 0;
      right: 0;
      top: 10%;
      -webkit-animation: scrolling 3s infinite;
      animation: scrolling 3s infinite; }
      @media (max-width: 1020px) {
        .kv .scroll .dot {
          display: none; } }
    .kv .scroll img {
      display: block;
      width: 24px;
      margin: 0 auto 8px auto; }
      @media (max-width: 1020px) {
        .kv .scroll img {
          display: none; } }

.button-btn {
  display: block;
  width: 240px;
  margin: 0 auto;
  line-height: 52px;
  border-radius: var(--radio_button, 40px);
  border: 2px solid var(--gradient, #fff3d4);
  background: var(--gradient-button, linear-gradient(126deg, #f5d172 35.15%, #f7d876 41.34%, #f6dd78 48.56%, #f7e084 50.74%, #f8e59c 55.73%, #f8e7a5 58.84%, #f8e7a5 63.45%, #f8e49a 66.55%, #f7db7d 71.98%, #f7d976 73.08%, #f4ce6f 86.29%, #f0c16a 97.19%, #edb765 105.71%, #ebb062 116.31%, #edb865 126.37%, #efbf67 131.84%, #eeb85d 135.92%, #edb659 137.03%));
  text-align: center;
  color: #000;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer; }
  @media (max-width: 1020px) {
    .button-btn {
      max-width: 280px;
      line-height: 48px;
      font-size: 16px; } }
  .button-btn:hover {
    border-radius: var(--radio_button, 40px);
    border: 2px solid var(--gradient, #fff3d4);
    background: var(--gradient-button-hover, linear-gradient(92deg, #a48b59 3.37%, #121212 96.27%));
    color: #fff; }

.fix-btn {
  position: fixed;
  right: 40px;
  bottom: 40px;
  z-index: 9; }
  @media (max-width: 1020px) {
    .fix-btn {
      right: 8px;
      bottom: 32px; } }
  .fix-btn a {
    display: block;
    width: 120px; }
    @media (max-width: 1020px) {
      .fix-btn a {
        max-width: 100px; } }
    .fix-btn a img {
      display: block;
      width: 100%; }

.tasks {
  padding: 93px 0 84px 0; }
  @media (max-width: 1020px) {
    .tasks {
      padding-top: 64px;
      padding-bottom: 84px; } }
  .tasks .wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    max-width: 1190px; }
    @media (max-width: 1020px) {
      .tasks .wrapper {
        display: block;
        max-width: 350px;
        padding: 0; } }
    .tasks .wrapper > img {
      display: block;
      position: absolute;
      z-index: 1; }
      .tasks .wrapper > img.bat1 {
        width: 96px;
        top: -9px;
        left: -72px;
        -webkit-animation: float-1 3.2s ease-in-out infinite;
        animation: float-1 3.2s ease-in-out infinite; }
        @media (max-width: 1020px) {
          .tasks .wrapper > img.bat1 {
            width: 88px;
            top: -15px;
            left: 10px; } }
      .tasks .wrapper > img.bat2 {
        width: 128px;
        top: -18px;
        right: -73px;
        -webkit-animation: float-2 2.8s ease-in-out infinite;
        animation: float-2 2.8s ease-in-out infinite; }
        @media (max-width: 1020px) {
          .tasks .wrapper > img.bat2 {
            width: 104px;
            top: 530px;
            right: 10px; } }
      .tasks .wrapper > img.tiger1 {
        width: 264px;
        bottom: -110px;
        left: -130px; }
        @media (max-width: 1020px) {
          .tasks .wrapper > img.tiger1 {
            width: 176px;
            bottom: auto;
            top: 441px;
            left: -10px; } }
      .tasks .wrapper > img.money1 {
        width: 140px;
        bottom: 143px;
        left: -120px;
        -webkit-animation: float-2 2.8s ease-in-out infinite;
        animation: float-2 2.8s ease-in-out infinite; }
        @media (max-width: 1020px) {
          .tasks .wrapper > img.money1 {
            display: none; } }
      .tasks .wrapper > img.money2 {
        width: 180px;
        bottom: -40px;
        left: 189px;
        -webkit-animation: float-1 3.2s ease-in-out infinite;
        animation: float-1 3.2s ease-in-out infinite; }
        @media (max-width: 1020px) {
          .tasks .wrapper > img.money2 {
            width: 180px;
            bottom: auto;
            top: 415px;
            left: auto;
            right: 50px; } }
      .tasks .wrapper > img.money3 {
        width: 100px;
        bottom: -45px;
        right: 178px;
        -webkit-animation: float-2 2.8s ease-in-out infinite;
        animation: float-2 2.8s ease-in-out infinite; }
        @media (max-width: 1020px) {
          .tasks .wrapper > img.money3 {
            bottom: -50px;
            right: auto;
            left: 35px; } }
      .tasks .wrapper > img.money4 {
        width: 108px;
        bottom: 189px;
        right: -124px;
        -webkit-animation: float-1 3.2s ease-in-out infinite;
        animation: float-1 3.2s ease-in-out infinite; }
        @media (max-width: 1020px) {
          .tasks .wrapper > img.money4 {
            display: none; } }
    .tasks .wrapper i.tiger2 {
      display: block;
      position: absolute;
      z-index: 1;
      width: 264px;
      height: 262px;
      bottom: -120px;
      right: -130px;
      background: url(../images/tasks-tiger2-3.png) no-repeat;
      background-size: 100% 100%; }
      @media (max-width: 1020px) {
        .tasks .wrapper i.tiger2 {
          width: 176px;
          height: 174px;
          bottom: -135px;
          right: 30px; } }
      .tasks .wrapper i.tiger2 img {
        display: block;
        width: 100%;
        pointer-events: none;
        opacity: 0;
        position: absolute;
        left: 0;
        top: 0;
        -webkit-transition: all 0.5s ease-in-out;
        -o-transition: all 0.5s ease-in-out;
        transition: all 0.5s ease-in-out; }
        .tasks .wrapper i.tiger2 img.active {
          opacity: 1;
          pointer-events: all; }
    .tasks .wrapper .box {
      width: 100%;
      background: url(../images/tasks-box-bg.png) no-repeat;
      background-size: 100% 100%;
      margin: 0 -2%;
      position: re; }
      @media (max-width: 1020px) {
        .tasks .wrapper .box {
          margin: 0 auto; }
          .tasks .wrapper .box:last-of-type {
            background: url(../images/tasks-box-bg2.png) no-repeat;
            background-size: 100% 100%;
            margin-top: 130px; } }
      .tasks .wrapper .box.end:before {
        content: '';
        display: block;
        width: 100%;
        height: 100%;
        background: url(../images/end-cover.png) center no-repeat;
        background-size: cover;
        position: absolute;
        left: 0;
        top: 0;
        z-index: 1; }
      .tasks .wrapper .box > div {
        padding: 17% 13%;
        text-align: center; }
        @media (max-width: 1020px) {
          .tasks .wrapper .box > div {
            padding: 60px 30px; } }
        .tasks .wrapper .box > div > b {
          display: block;
          font-size: 20px;
          line-height: 28px;
          font-weight: 700; }
          @media (max-width: 1020px) {
            .tasks .wrapper .box > div > b {
              font-size: 18px; } }
        .tasks .wrapper .box > div h2 {
          background: -webkit-linear-gradient(324deg, #ceb071 16.17%, #f7d876 41.34%, #f6dd78 48.56%, #f7e084 50.74%, #f8e59c 55.73%, #f8e7a5 58.84%, #f8e7a5 63.45%, #f8e49a 66.55%, #f7db7d 71.98%, #f7d976 73.08%, #f4ce6f 86.29%, #f0c16a 97.19%, #503e23 105.71%, #ebb062 116.31%, #edb865 126.37%, #efbf67 131.84%, #eeb85d 135.92%, #ceb071 137.03%);
          background: -o-linear-gradient(324deg, #ceb071 16.17%, #f7d876 41.34%, #f6dd78 48.56%, #f7e084 50.74%, #f8e59c 55.73%, #f8e7a5 58.84%, #f8e7a5 63.45%, #f8e49a 66.55%, #f7db7d 71.98%, #f7d976 73.08%, #f4ce6f 86.29%, #f0c16a 97.19%, #503e23 105.71%, #ebb062 116.31%, #edb865 126.37%, #efbf67 131.84%, #eeb85d 135.92%, #ceb071 137.03%);
          background: linear-gradient(126deg, #ceb071 16.17%, #f7d876 41.34%, #f6dd78 48.56%, #f7e084 50.74%, #f8e59c 55.73%, #f8e7a5 58.84%, #f8e7a5 63.45%, #f8e49a 66.55%, #f7db7d 71.98%, #f7d976 73.08%, #f4ce6f 86.29%, #f0c16a 97.19%, #503e23 105.71%, #ebb062 116.31%, #edb865 126.37%, #efbf67 131.84%, #eeb85d 135.92%, #ceb071 137.03%);
          background-clip: text;
          -webkit-background-clip: text;
          -webkit-text-fill-color: transparent;
          font-size: 32px;
          line-height: 48px;
          font-weight: 700;
          height: 48px;
          margin: 0 auto 20px auto; }
          @media (max-width: 1020px) {
            .tasks .wrapper .box > div h2 {
              font-size: 20px;
              line-height: 36px;
              height: 36px;
              margin: 0 auto 14px auto; } }
          .tasks .wrapper .box > div h2 img {
            display: inline-block;
            vertical-align: top;
            width: 40px;
            margin: 5px 0 0 0; }
            @media (max-width: 1020px) {
              .tasks .wrapper .box > div h2 img {
                width: 24px; } }
            .tasks .wrapper .box > div h2 img.line {
              width: 360px;
              margin: auto; }
              @media (max-width: 1020px) {
                .tasks .wrapper .box > div h2 img.line {
                  width: 100%; } }
        .tasks .wrapper .box > div > small {
          display: block;
          font-size: 18px;
          line-height: 28px;
          font-weight: 500;
          margin: 0 0 30px 0; }
          @media (max-width: 1020px) {
            .tasks .wrapper .box > div > small {
              font-size: 16px;
              line-height: 24px;
              margin-bottom: 18px; } }
          .tasks .wrapper .box > div > small img {
            display: inline-block;
            vertical-align: top;
            width: 40px;
            margin: -2px 5px 0 0; }
            @media (max-width: 1020px) {
              .tasks .wrapper .box > div > small img {
                width: 24px; } }
        .tasks .wrapper .box > div > label {
          float: left;
          margin: 24px 0 12px 0;
          padding: 12px;
          border-radius: 8px;
          background: var(--brand-color-dark, #a48b59);
          font-weight: 500; }
          @media (max-width: 1020px) {
            .tasks .wrapper .box > div > label {
              padding: 8px;
              margin: 16px 0 8px 0; } }
          .tasks .wrapper .box > div > label:first-of-type {
            margin-top: 0; }
            @media (max-width: 1020px) {
              .tasks .wrapper .box > div > label:first-of-type {
                margin-top: 0; } }
          .tasks .wrapper .box > div > label img {
            display: inline-block;
            vertical-align: top;
            width: 24px;
            margin: 0 0 0 0; }
        .tasks .wrapper .box > div > p {
          text-align: left; }
        .tasks .wrapper .box > div span {
          color: #d395ff;
          font-weight: 500; }
        .tasks .wrapper .box > div > ol li {
          list-style: decimal;
          margin-left: 20px;
          text-align: left; }
        .tasks .wrapper .box > div .colorbg {
          margin: 8px 0 24px 0;
          padding: 12px 12px 12px 20px;
          border-radius: 20px;
          background: var(--brand-color-dark, #a48b59);
          font-weight: 500; }
          @media (max-width: 1020px) {
            .tasks .wrapper .box > div .colorbg {
              font-size: 14px;
              line-height: 22px;
              padding: 8px 0 8px 16px;
              margin: 4px 0 16px 0; } }

.login {
  padding: 84px 0 84px 0;
  background: url(../images/section-bg1.png) bottom center no-repeat;
  background-size: 2048px auto;
  margin: 0 auto; }
  @media (max-width: 1020px) {
    .login {
      padding: 84px 0 64px 0;
      background: url(../images/section-bg1.png) bottom center no-repeat;
      background-size: 1000px auto; } }
  .login > div {
    max-width: 936px;
    width: 90%;
    padding: 40px;
    border-radius: 60px;
    background: #1a1a1a;
    -webkit-box-shadow: 4px 4px 8px 0 rgba(13, 13, 13, 0.2), 0 0 40px 0 rgba(202, 161, 100, 0.4) inset;
    box-shadow: 4px 4px 8px 0 rgba(13, 13, 13, 0.2), 0 0 40px 0 rgba(202, 161, 100, 0.4) inset;
    margin: 0 auto;
    position: relative;
    overflow: visible; }
    .login > div::after {
      position: absolute;
      content: "";
      background-color: rgba(0, 0, 0, 0.7);
      width: 100%;
      height: 100%;
      left: 0;
      top: 0;
      border-radius: 60px; }
      @media (max-width: 1020px) {
        .login > div::after {
          border-radius: 40px; } }
    .login > div::before {
      position: absolute;
      content: "";
      background: url(../images/end-cover_1.png?v=20251202);
      background-size: contain;
      left: 50%;
      top: 50%;
      -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
      width: 200px;
      height: 200px;
      z-index: 8; }
      @media (max-width: 1020px) {
        .login > div::before {
          width: 160px;
          height: 160px; } }
    @media (max-width: 1020px) {
      .login > div {
        max-width: 350px;
        padding: 20px;
        border-radius: 40px; } }
    .login > div i.light1 {
      display: block;
      width: 140px;
      height: 140px;
      position: absolute;
      left: -140px;
      top: 0;
      bottom: 0;
      margin: auto;
      animation: lightshine 2s linear reverse infinite; }
      .login > div i.light1 img {
        display: block;
        width: 100%; }
      @media (max-width: 1020px) {
        .login > div i.light1 {
          display: none; } }
    .login > div i.light2 {
      display: block;
      width: 140px;
      height: 140px;
      position: absolute;
      right: -140px;
      top: 0;
      bottom: 0;
      margin: auto;
      animation: lightshine 2s linear reverse infinite; }
      .login > div i.light2 img {
        display: block;
        width: 100%; }
      @media (max-width: 1020px) {
        .login > div i.light2 {
          display: none; } }
    .login > div h3 {
      font-size: 32px;
      font-weight: 700;
      line-height: 48px;
      background: -webkit-linear-gradient(324deg, #ceb071 16.17%, #f7d876 41.34%, #f6dd78 48.56%, #f7e084 50.74%, #f8e59c 55.73%, #f8e7a5 58.84%, #f8e7a5 63.45%, #f8e49a 66.55%, #f7db7d 71.98%, #f7d976 73.08%, #f4ce6f 86.29%, #f0c16a 97.19%, #503e23 105.71%, #ebb062 116.31%, #edb865 126.37%, #efbf67 131.84%, #eeb85d 135.92%, #ceb071 137.03%);
      background: -o-linear-gradient(324deg, #ceb071 16.17%, #f7d876 41.34%, #f6dd78 48.56%, #f7e084 50.74%, #f8e59c 55.73%, #f8e7a5 58.84%, #f8e7a5 63.45%, #f8e49a 66.55%, #f7db7d 71.98%, #f7d976 73.08%, #f4ce6f 86.29%, #f0c16a 97.19%, #503e23 105.71%, #ebb062 116.31%, #edb865 126.37%, #efbf67 131.84%, #eeb85d 135.92%, #ceb071 137.03%);
      background: linear-gradient(126deg, #ceb071 16.17%, #f7d876 41.34%, #f6dd78 48.56%, #f7e084 50.74%, #f8e59c 55.73%, #f8e7a5 58.84%, #f8e7a5 63.45%, #f8e49a 66.55%, #f7db7d 71.98%, #f7d976 73.08%, #f4ce6f 86.29%, #f0c16a 97.19%, #503e23 105.71%, #ebb062 116.31%, #edb865 126.37%, #efbf67 131.84%, #eeb85d 135.92%, #ceb071 137.03%);
      background-clip: text;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      text-align: center; }
      @media (max-width: 1020px) {
        .login > div h3 {
          font-size: 24px;
          line-height: 36px; } }
    .login > div .form label {
      display: block;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      margin: 24px auto 0 auto; }
      @media (max-width: 1020px) {
        .login > div .form label {
          margin-top: 16px;
          display: block; } }
      .login > div .form label span {
        display: block;
        width: 170px;
        font-size: 18px;
        font-weight: 500;
        line-height: 28px; }
        @media (max-width: 1020px) {
          .login > div .form label span {
            width: 100%;
            font-size: 16px;
            line-height: 24px;
            margin-bottom: 8px; } }
        .login > div .form label span i {
          color: #f18a00; }
      .login > div .form label input[type='text'] {
        border-radius: 20px;
        background: #313131;
        -webkit-box-shadow: 10px 10px 8px 0 rgba(0, 0, 0, 0.25) inset, -10px -10px 8px 0 rgba(72, 72, 72, 0.25) inset;
        box-shadow: 10px 10px 8px 0 rgba(0, 0, 0, 0.25) inset, -10px -10px 8px 0 rgba(72, 72, 72, 0.25) inset;
        padding: 0 14px;
        width: calc(100% - 170px);
        height: 48px;
        border: 0;
        color: #fff !important; }
        @media (max-width: 1020px) {
          .login > div .form label input[type='text'] {
            width: 100%; } }
        .login > div .form label input[type='text']:focus {
          border: 1px solid #fff !important;
          outline: none !important;
          color: #fff !important; }
      .login > div .form label > img {
        width: 121px;
        margin: 0 8px 0 20px; }
        @media (max-width: 1020px) {
          .login > div .form label > img {
            display: inline-block;
            vertical-align: middle;
            width: 96px;
            margin: 0 8px 0 12px; } }
      .login > div .form label .reload {
        display: block;
        width: 24px;
        height: 24px;
        background: url(../images/repeat-icon.png) no-repeat;
        background-size: 100% 100%; }
        @media (max-width: 1020px) {
          .login > div .form label .reload {
            display: inline-block;
            vertical-align: middle; } }
      .login > div .form label:nth-of-type(2) input[type='text'] {
        width: calc(100% - 343px); }
        @media (max-width: 1020px) {
          .login > div .form label:nth-of-type(2) input[type='text'] {
            width: calc(100% - 140px);
            display: inline-block;
            vertical-align: middle; } }
      .login > div .form label.check {
        display: block;
        position: relative;
        padding-left: 32px;
        cursor: pointer;
        margin: 24px auto;
        text-align: justify; }
        .login > div .form label.check input[type='checkbox'] {
          display: none; }
          .login > div .form label.check input[type='checkbox']:checked + i {
            background: url(../images/check-box-checked.png) no-repeat;
            background-size: 100% 100%; }
        .login > div .form label.check > i {
          display: block;
          position: absolute;
          left: 0;
          top: 0;
          width: 24px;
          height: 24px;
          background: url(../images/check-box.png) no-repeat;
          background-size: 100% 100%; }
        .login > div .form label.check a {
          text-decoration: underline;
          color: #fff; }
          .login > div .form label.check a:hover {
            text-decoration: none; }

.features {
  text-align: center;
  background: url(../images/features-bg.png) center no-repeat;
  background-size: 100% auto;
  padding-top: 84px; }
  @media (max-width: 1020px) {
    .features {
      padding-top: 64px;
      background: url(../images/features-bg.png) center no-repeat;
      background-size: auto 100%; } }
  .features .pumpkin {
    padding-bottom: 168px; }
    @media (max-width: 1020px) {
      .features .pumpkin {
        max-width: 320px;
        margin: auto;
        padding: 0 0 128px 0; } }
    .features .pumpkin .spider {
      width: 222px;
      height: 222px;
      position: absolute;
      right: -186px;
      top: -216px;
      background: url(../images/spider-box-icon.png) no-repeat;
      background-size: 100% 100%; }
      @media (max-width: 1020px) {
        .features .pumpkin .spider {
          width: 111px;
          height: 111px;
          right: -50px;
          top: -124px; } }
      .features .pumpkin .spider img {
        display: block;
        position: absolute;
        width: 82px;
        left: 0;
        right: 0;
        margin: auto;
        bottom: -140px;
        -webkit-animation: spider-move 3s ease-in-out infinite;
        animation: spider-move 3s ease-in-out infinite; }
        @media (max-width: 1020px) {
          .features .pumpkin .spider img {
            width: 41px;
            bottom: -70px; } }
      .features .pumpkin .spider:before {
        content: '';
        width: 5px;
        height: 116px;
        background: #ceb071;
        opacity: 0.2;
        position: absolute;
        top: 222px;
        left: 0;
        right: 0;
        margin: auto;
        -webkit-animation: spider-line 3s ease-in-out infinite;
        animation: spider-line 3s ease-in-out infinite; }
        @media (max-width: 1020px) {
          .features .pumpkin .spider:before {
            top: 111px;
            width: 2.5px; } }
    .features .pumpkin > img {
      display: block;
      position: absolute;
      z-index: 1; }
      .features .pumpkin > img.star1 {
        width: 80px;
        left: -97px;
        top: 216px;
        animation: lightshine 2s linear reverse infinite; }
        @media (max-width: 1020px) {
          .features .pumpkin > img.star1 {
            width: 40px;
            left: -20px;
            top: 180px; } }
      .features .pumpkin > img.star2 {
        width: 40px;
        right: -95px;
        top: 224px;
        animation: lightshine 2s linear reverse infinite; }
        @media (max-width: 1020px) {
          .features .pumpkin > img.star2 {
            display: none; } }
      .features .pumpkin > img.ghost {
        width: 160px;
        left: -42px;
        top: 264px;
        -webkit-animation: float-1 3.2s ease-in-out infinite;
        animation: float-1 3.2s ease-in-out infinite; }
        @media (max-width: 1020px) {
          .features .pumpkin > img.ghost {
            width: 80px;
            left: 7px;
            top: 188px; } }
      .features .pumpkin > img.money {
        width: 140px;
        right: -77px;
        top: 427px;
        -webkit-animation: float-2 2.8s ease-in-out infinite;
        animation: float-2 2.8s ease-in-out infinite; }
        @media (max-width: 1020px) {
          .features .pumpkin > img.money {
            width: 68px;
            right: -15px;
            top: 350px; } }
    .features .pumpkin > strong {
      display: inline-block;
      font-size: 24px;
      font-weight: 700;
      line-height: 36px;
      padding: 0 24px 0 0;
      position: relative;
      margin: 0 auto 16px auto; }
      @media (max-width: 1020px) {
        .features .pumpkin > strong {
          font-size: 18px;
          line-height: 28px;
          margin-bottom: 10px;
          max-width: 320px;
          padding: 0 24px 5px 60px; } }
      .features .pumpkin > strong:after {
        content: '';
        display: block;
        width: 100%;
        height: 8px;
        position: absolute;
        left: 0;
        bottom: 0;
        border-radius: 4px;
        background: var(--brand-color-gold-light, #ceb071); }
        @media (max-width: 1020px) {
          .features .pumpkin > strong:after {
            height: 4px; } }
      .features .pumpkin > strong img {
        display: inline-block;
        vertical-align: middle;
        width: 60px;
        position: relative;
        z-index: 1; }
        @media (max-width: 1020px) {
          .features .pumpkin > strong img {
            display: block;
            position: absolute;
            left: 0;
            top: 2px; } }
    .features .pumpkin > small {
      display: block;
      font-size: 18px;
      font-weight: 500;
      line-height: 28px; }
      @media (max-width: 1020px) {
        .features .pumpkin > small {
          font-size: 16px;
          line-height: 24px; } }
      .features .pumpkin > small.bottom {
        font-size: 16px;
        font-weight: 400;
        line-height: 24px; }
        @media (max-width: 1020px) {
          .features .pumpkin > small.bottom {
            font-size: 14px;
            line-height: 22px; } }
    .features .pumpkin > ul {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
      -ms-flex-pack: justify;
      justify-content: space-between;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      margin: 40px auto 24px auto; }
      @media (max-width: 1020px) {
        .features .pumpkin > ul {
          margin: 20px auto 0 auto;
          width: calc(100% + 20px);
          -webkit-box-orient: vertical;
          -webkit-box-direction: normal;
          -ms-flex-direction: column;
          flex-direction: column;
          -webkit-box-align: normal;
          -ms-flex-align: normal;
          align-items: normal;
          width: 100%; } }
      .features .pumpkin > ul li.list {
        width: calc(50% - 12px);
        padding: 144px 0 92px 0;
        background: url(../images/features-pumpkin-bg.png) no-repeat;
        background-size: 100% 100%; }
        @media (max-width: 1020px) {
          .features .pumpkin > ul li.list {
            padding: 72px 20px 48px 20px;
            border: 10px solid transparent; } }
        @media (max-width: 1020px) {
          .features .pumpkin > ul li.list:first-of-type {
            margin: auto; } }
        .features .pumpkin > ul li.list b {
          display: block;
          font-size: 24px;
          font-weight: 700;
          line-height: 36px;
          margin: 0 auto 16px auto; }
          @media (max-width: 1020px) {
            .features .pumpkin > ul li.list b {
              font-size: 20px;
              line-height: 32px;
              margin-bottom: 8px; } }
          .features .pumpkin > ul li.list b span {
            color: #d395ff; }
        .features .pumpkin > ul li.list p {
          color: #f6dba1;
          font-size: 18px;
          font-weight: 500;
          line-height: 28px; }
          @media (max-width: 1020px) {
            .features .pumpkin > ul li.list p {
              font-size: 16px;
              line-height: 24px; }
              .features .pumpkin > ul li.list p br {
                display: none; } }
  .features .photo {
    padding-bottom: 84px; }
    @media (max-width: 1020px) {
      .features .photo {
        max-width: 320px;
        padding: 0; } }
    .features .photo > img {
      display: block;
      position: absolute;
      z-index: 1; }
      .features .photo > img.img {
        width: 224px;
        left: -30px;
        bottom: -15px;
        -webkit-transform-origin: top center;
        -ms-transform-origin: top center;
        transform-origin: top center;
        -webkit-animation: wave-animation 2s ease-in-out infinite;
        animation: wave-animation 2s ease-in-out infinite; }
        @media (max-width: 1020px) {
          .features .photo > img.img {
            width: 120px;
            left: -20px;
            top: 210px; } }
      .features .photo > img.ghost {
        width: 160px;
        right: -42px;
        top: 65px;
        -webkit-animation: float-1 3.2s ease-in-out infinite;
        animation: float-1 3.2s ease-in-out infinite; }
        @media (max-width: 1020px) {
          .features .photo > img.ghost {
            width: 80px;
            right: -20px;
            top: 76px; } }
      .features .photo > img.star {
        width: 80px;
        right: -42px;
        top: 261px;
        animation: lightshine 2s linear reverse infinite; }
        @media (max-width: 1020px) {
          .features .photo > img.star {
            width: 40px;
            right: -20px;
            top: 143px; } }
    .features .photo > ul {
      background: url(../images/features-box-bg.png) no-repeat;
      background-size: 100% 100%;
      padding: 139px 0 100px 0; }
      @media (max-width: 1020px) {
        .features .photo > ul {
          background: url(../images/features-box-bg-m.png) no-repeat;
          background-size: 100% 100%;
          padding: 54px 36px 1px 36px; } }
      .features .photo > ul li.list {
        display: inline-block;
        vertical-align: middle;
        width: 416px;
        margin: 0 12px;
        padding: 24px;
        border-radius: 20px;
        background: -webkit-linear-gradient(324deg, #f8e59c 55.73%, #eeb85d 135.92%, #ceb071 135.93%);
        background: -o-linear-gradient(324deg, #f8e59c 55.73%, #eeb85d 135.92%, #ceb071 135.93%);
        background: linear-gradient(126deg, #f8e59c 55.73%, #eeb85d 135.92%, #ceb071 135.93%);
        font-size: 24px;
        font-weight: 700;
        line-height: 40px;
        color: #111; }
        @media (max-width: 1020px) {
          .features .photo > ul li.list {
            display: block;
            width: 100%;
            margin: 0 10px;
            padding: 16px;
            border-radius: 12px;
            font-size: 18px;
            line-height: 30px; } }
        .features .photo > ul li.list b {
          display: inline-block;
          vertical-align: top;
          margin: -5px 0 0 10px;
          font-size: 32px;
          line-height: 48px;
          color: #6d3992; }
          @media (max-width: 1020px) {
            .features .photo > ul li.list b {
              font-size: 24px;
              line-height: 35px; } }
        .features .photo > ul li.list span {
          color: #6d3992; }

.steps {
  padding: 84px 0 144px 0;
  text-align: center;
  background: url(../images/steps-bg.png) bottom no-repeat;
  background-size: 100% auto; }
  @media (max-width: 1020px) {
    .steps {
      padding: 64px 0; }
      .steps .wrapper {
        max-width: 400px; } }
  .steps .wrapper > img {
    display: block;
    position: absolute;
    z-index: 1; }
    .steps .wrapper > img.bat1 {
      width: 96px;
      top: -9px;
      left: -72px;
      -webkit-animation: float-1 3.2s ease-in-out infinite;
      animation: float-1 3.2s ease-in-out infinite; }
      @media (max-width: 1020px) {
        .steps .wrapper > img.bat1 {
          width: 88px;
          top: -15px;
          left: 10px; } }
    .steps .wrapper > img.bat2 {
      width: 128px;
      top: -18px;
      right: -73px;
      -webkit-animation: float-2 2.8s ease-in-out infinite;
      animation: float-2 2.8s ease-in-out infinite; }
      @media (max-width: 1020px) {
        .steps .wrapper > img.bat2 {
          display: none; } }
  .steps > div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center; }
    @media (max-width: 1020px) {
      .steps > div {
        display: block; } }
    .steps > div .txt {
      padding-right: 24px;
      width: 50%;
      text-align: left;
      -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
      order: 1;
      text-align: justify; }
      @media (max-width: 1020px) {
        .steps > div .txt {
          width: 100%;
          padding: 0; } }
      .steps > div .txt a {
        display: block;
        padding: 24px 0;
        border-bottom: 1px solid var(--grey-neutral-grey-500, #8c8c8c);
        font-size: 24px;
        line-height: 36px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        cursor: pointer; }
        @media (max-width: 1020px) {
          .steps > div .txt a {
            padding: 20px 0;
            font-size: 18px;
            line-height: 28px; } }
        .steps > div .txt a i {
          display: block;
          font-size: 32px;
          font-weight: 700;
          line-height: 48px;
          margin-right: 24px; }
          @media (max-width: 1020px) {
            .steps > div .txt a i {
              font-size: 24px;
              line-height: 36px; } }
        .steps > div .txt a.active {
          border-bottom: 1px solid #ceb071;
          color: #ceb071; }
          .steps > div .txt a.active p {
            font-weight: 700; }
    .steps > div .circle {
      width: 50%;
      -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
      order: 2;
      position: relative; }
      @media (max-width: 1020px) {
        .steps > div .circle {
          width: 100%;
          margin: 0 auto 24px auto; } }
      .steps > div .circle:before {
        content: '';
        display: block;
        width: 87%;
        height: 87%;
        background: url(../images/steps-circle.png) center no-repeat;
        background-size: 100% 100%;
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        margin: auto;
        z-index: 0;
        -webkit-animation: rotate-circle 10s linear infinite;
        animation: rotate-circle 10s linear infinite; }
        @media (max-width: 1020px) {
          .steps > div .circle:before {
            width: 100%;
            height: 100%; } }
      .steps > div .circle img {
        display: block;
        opacity: 0;
        pointer-events: none;
        width: 100%;
        position: relative;
        z-index: 1;
        -webkit-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
        position: absolute;
        left: 0;
        top: 0; }
        .steps > div .circle img.active {
          opacity: 1;
          pointer-events: all;
          position: relative; }

.features h3,
.steps h3 {
  display: inline-block;
  position: relative;
  font-size: 32px;
  font-weight: 700;
  line-height: 48px;
  background: -webkit-linear-gradient(324deg, #ceb071 16.17%, #f7d876 41.34%, #f6dd78 48.56%, #f7e084 50.74%, #f8e59c 55.73%, #f8e7a5 58.84%, #f8e7a5 63.45%, #f8e49a 66.55%, #f7db7d 71.98%, #f7d976 73.08%, #f4ce6f 86.29%, #f0c16a 97.19%, #503e23 105.71%, #ebb062 116.31%, #edb865 126.37%, #efbf67 131.84%, #eeb85d 135.92%, #ceb071 137.03%);
  background: -o-linear-gradient(324deg, #ceb071 16.17%, #f7d876 41.34%, #f6dd78 48.56%, #f7e084 50.74%, #f8e59c 55.73%, #f8e7a5 58.84%, #f8e7a5 63.45%, #f8e49a 66.55%, #f7db7d 71.98%, #f7d976 73.08%, #f4ce6f 86.29%, #f0c16a 97.19%, #503e23 105.71%, #ebb062 116.31%, #edb865 126.37%, #efbf67 131.84%, #eeb85d 135.92%, #ceb071 137.03%);
  background: linear-gradient(126deg, #ceb071 16.17%, #f7d876 41.34%, #f6dd78 48.56%, #f7e084 50.74%, #f8e59c 55.73%, #f8e7a5 58.84%, #f8e7a5 63.45%, #f8e49a 66.55%, #f7db7d 71.98%, #f7d976 73.08%, #f4ce6f 86.29%, #f0c16a 97.19%, #503e23 105.71%, #ebb062 116.31%, #edb865 126.37%, #efbf67 131.84%, #eeb85d 135.92%, #ceb071 137.03%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0 auto 40px auto; }
  @media (max-width: 1020px) {
    .features h3,
    .steps h3 {
      font-size: 24px;
      line-height: 36px;
      margin-bottom: 20px; } }
  .features h3 span,
  .steps h3 span {
    display: block; }
    .features h3 span:before,
    .steps h3 span:before {
      content: '';
      display: block;
      position: absolute;
      left: -40px;
      bottom: 2px;
      width: 40px;
      height: 40px;
      background: url(../images/star-icon.png) no-repeat;
      background-size: 100% 100%; }
      @media (max-width: 1020px) {
        .features h3 span:before,
        .steps h3 span:before {
          width: 24px;
          height: 24px;
          left: -24px; } }
    .features h3 span:after,
    .steps h3 span:after {
      content: '';
      display: block;
      position: absolute;
      right: -40px;
      bottom: 2px;
      width: 40px;
      height: 40px;
      background: url(../images/star-icon.png) no-repeat;
      background-size: 100% 100%; }
      @media (max-width: 1020px) {
        .features h3 span:after,
        .steps h3 span:after {
          width: 24px;
          height: 24px;
          right: -24px; } }

.slick-dots {
  margin: 24px auto; }
  .slick-dots li {
    display: inline-block;
    vertical-align: middle;
    width: 8px;
    height: 8px;
    border-radius: 8px;
    background: #8c8c8c;
    margin: 0 8px;
    cursor: pointer; }
    .slick-dots li.slick-active {
      background: #f18a00; }
    .slick-dots li button {
      display: none; }

.collapse {
  padding: 84px 0;
  border-bottom: 1px solid #ceb071; }
  .collapse .wrapper {
    text-align: justify; }
  @media (max-width: 1020px) {
    .collapse {
      padding: 24px 0; }
      .collapse .wrapper {
        padding: 0;
        max-width: 320px; } }
  .collapse label {
    display: block;
    font-size: 32px;
    font-weight: 700;
    line-height: 48px;
    letter-spacing: 0.64px;
    padding: 24px 42px 24px 50px;
    background: -webkit-linear-gradient(324deg, #ceb071 16.17%, #f7d876 41.34%, #f6dd78 48.56%, #f7e084 50.74%, #f8e59c 55.73%, #f8e7a5 58.84%, #f8e7a5 63.45%, #f8e49a 66.55%, #f7db7d 71.98%, #f7d976 73.08%, #f4ce6f 86.29%, #f0c16a 97.19%, #503e23 105.71%, #ebb062 116.31%, #edb865 126.37%, #efbf67 131.84%, #eeb85d 135.92%, #ceb071 137.03%);
    background: -o-linear-gradient(324deg, #ceb071 16.17%, #f7d876 41.34%, #f6dd78 48.56%, #f7e084 50.74%, #f8e59c 55.73%, #f8e7a5 58.84%, #f8e7a5 63.45%, #f8e49a 66.55%, #f7db7d 71.98%, #f7d976 73.08%, #f4ce6f 86.29%, #f0c16a 97.19%, #503e23 105.71%, #ebb062 116.31%, #edb865 126.37%, #efbf67 131.84%, #eeb85d 135.92%, #ceb071 137.03%);
    background: linear-gradient(126deg, #ceb071 16.17%, #f7d876 41.34%, #f6dd78 48.56%, #f7e084 50.74%, #f8e59c 55.73%, #f8e7a5 58.84%, #f8e7a5 63.45%, #f8e49a 66.55%, #f7db7d 71.98%, #f7d976 73.08%, #f4ce6f 86.29%, #f0c16a 97.19%, #503e23 105.71%, #ebb062 116.31%, #edb865 126.37%, #efbf67 131.84%, #eeb85d 135.92%, #ceb071 137.03%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    border-bottom: 1px solid var(--brand-color-gold-light, #ceb071);
    cursor: pointer;
    position: relative; }
    @media (max-width: 1020px) {
      .collapse label {
        font-size: 24px;
        line-height: 36px;
        letter-spacing: 0.48px;
        padding: 24px 42px 24px 34px;
        margin: auto; } }
    .collapse label img {
      display: block;
      position: absolute;
      left: 0;
      top: 0;
      bottom: 0;
      margin: auto;
      width: 40px;
      height: 40px; }
      @media (max-width: 1020px) {
        .collapse label img {
          width: 24px;
          height: 24px;
          left: 8px; } }
    .collapse label i {
      display: block;
      background: url(../images/plus-icon.png) no-repeat;
      background-size: 100% 100%;
      width: 32px;
      height: 32px;
      position: absolute;
      right: 0;
      top: 0;
      bottom: 0;
      margin: auto; }
      @media (max-width: 1020px) {
        .collapse label i {
          right: 8px; } }
    .collapse label.active i {
      background: url(../images/minus-icon.png) no-repeat;
      background-size: 100% 100%; }
  .collapse .txt {
    padding: 24px 10px 24px 6px;
    display: none; }
    .collapse .txt ul > li {
      margin-left: 35px;
      list-style: cjk-ideographic; }
      .collapse .txt ul > li p {
        margin: 4px 0;
        position: relative; }
        .collapse .txt ul > li p.special {
          padding-left: 85px;
          min-height: 48px;
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-align: center;
          -ms-flex-align: center;
          align-items: center;
          -webkit-box-pack: start;
          -ms-flex-pack: start;
          justify-content: flex-start; }
          @media (max-width: 1020px) {
            .collapse .txt ul > li p.special {
              padding-left: 69px; } }
      .collapse .txt ul > li span {
        display: -webkit-inline-box;
        display: -ms-inline-flexbox;
        display: inline-flex;
        color: #d395ff;
        font-weight: 500; }
      .collapse .txt ul > li a {
        display: inline-block;
        color: #d395ff;
        font-weight: 500;
        text-decoration: underline; }
        .collapse .txt ul > li a:hover {
          text-decoration: none; }
      .collapse .txt ul > li strong {
        display: block;
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        margin: auto;
        line-height: 40px;
        height: 40px;
        padding: 0 16px;
        border-radius: 8px;
        background: var(--brand-color-dark, #a48b59);
        font-size: 14px;
        margin: 4px 7px 4px 0;
        font-weight: 500; }
        @media (max-width: 1020px) {
          .collapse .txt ul > li strong {
            padding: 0 8px;
            line-height: 38px;
            height: 38px; } }
      .collapse .txt ul > li ol li {
        margin-left: 25px;
        list-style: decimal; }
