@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
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-size: 100%;
  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,
a {
  list-style: none;
}

a {
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

* {
  -webkit-tap-highlight-color: transparent;
}

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

a:focus,
input:focus,
select:focus,
textarea:focus,
button:focus,
summary:focus {
  outline: 0;
}

/*
.container {
  @include container;
}

.row {
  @include grid-row;
}

.col-4 {
  @include grid-column(4, 12);
}

.col-6 {
  @include grid-column(6, 12);
}

.col-12 {
  @include grid-column(12, 12);
}
*/
.element {
  width: 5%;
}

.element {
  width: 100px;
  height: 50px;
}

@-ms-viewport {
  width: device-width;
}
html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -ms-overflow-style: scrollbar;
}

*,
*::before,
*::after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 40px 16px;
  -webkit-transition: all 0.3s cubic-bezier(0.22, 0.61, 0.35, 1);
  transition: all 0.3s cubic-bezier(0.22, 0.61, 0.35, 1);
}
@media (max-width: 991px) {
  .header {
    padding: 0;
    top: 0;
  }
}
.header::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s cubic-bezier(0.22, 0.61, 0.35, 1), visibility 0.3s cubic-bezier(0.22, 0.61, 0.35, 1);
  transition: opacity 0.3s cubic-bezier(0.22, 0.61, 0.35, 1), visibility 0.3s cubic-bezier(0.22, 0.61, 0.35, 1);
  z-index: -1;
  pointer-events: none;
}
@media (max-width: 991px) {
  .header::after {
    display: block;
  }
}
@media (max-width: 991px) {
  .header.is-menu-open::after {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}
@media (max-width: 991px) {
  .header.is-menu-open .header__nav {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
    visibility: visible;
    -webkit-transition: opacity 0.8s cubic-bezier(0.87, 0, 0.13, 1), visibility 0s linear 0s, -webkit-transform 0.8s cubic-bezier(0.87, 0, 0.13, 1);
    transition: opacity 0.8s cubic-bezier(0.87, 0, 0.13, 1), visibility 0s linear 0s, -webkit-transform 0.8s cubic-bezier(0.87, 0, 0.13, 1);
    transition: transform 0.8s cubic-bezier(0.87, 0, 0.13, 1), opacity 0.8s cubic-bezier(0.87, 0, 0.13, 1), visibility 0s linear 0s;
    transition: transform 0.8s cubic-bezier(0.87, 0, 0.13, 1), opacity 0.8s cubic-bezier(0.87, 0, 0.13, 1), visibility 0s linear 0s, -webkit-transform 0.8s cubic-bezier(0.87, 0, 0.13, 1);
  }
}
@media (max-width: 991px) {
  .header.is-menu-open .header__wrapper {
    background: transparent;
  }
}
@media (max-width: 991px) {
  .header.is-menu-open .header__logo {
    opacity: 0;
    visibility: hidden;
  }
}
@media (max-width: 991px) {
  .header.is-menu-open .header__nav-item,
  .header.is-menu-open .header__cta {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
@media (max-width: 991px) {
  .header.is-menu-open .header__nav-link {
    top: 0;
  }
}
@media (max-width: 991px) {
  .header.is-menu-open .header__nav-item:nth-child(1) {
    -webkit-transition-delay: 0.375s;
            transition-delay: 0.375s;
  }
  .header.is-menu-open .header__nav-item:nth-child(1) .header__nav-link {
    -webkit-transition-delay: 0.375s;
            transition-delay: 0.375s;
  }
  .header.is-menu-open .header__nav-item:nth-child(2) {
    -webkit-transition-delay: 0.425s;
            transition-delay: 0.425s;
  }
  .header.is-menu-open .header__nav-item:nth-child(2) .header__nav-link {
    -webkit-transition-delay: 0.425s;
            transition-delay: 0.425s;
  }
  .header.is-menu-open .header__nav-item:nth-child(3) {
    -webkit-transition-delay: 0.475s;
            transition-delay: 0.475s;
  }
  .header.is-menu-open .header__nav-item:nth-child(3) .header__nav-link {
    -webkit-transition-delay: 0.475s;
            transition-delay: 0.475s;
  }
  .header.is-menu-open .header__nav-item:nth-child(4) {
    -webkit-transition-delay: 0.525s;
            transition-delay: 0.525s;
  }
  .header.is-menu-open .header__nav-item:nth-child(4) .header__nav-link {
    -webkit-transition-delay: 0.525s;
            transition-delay: 0.525s;
  }
  .header.is-menu-open .header__nav-item:nth-child(5) {
    -webkit-transition-delay: 0.575s;
            transition-delay: 0.575s;
  }
  .header.is-menu-open .header__nav-item:nth-child(5) .header__nav-link {
    -webkit-transition-delay: 0.575s;
            transition-delay: 0.575s;
  }
}
.header.is-menu-open .header__hamburger-line {
  background: transparent;
}
.header.is-menu-open .header__hamburger-line::before {
  width: 14px;
  top: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.header.is-menu-open .header__hamburger-line::after {
  width: 14px;
  bottom: 0;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.header__container {
  max-width: 1280px;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .header__container {
    padding: 12px 20px;
  }
}
.header__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 8px 12px 8px 24px;
  background: #ffffff;
  border-radius: 100px;
  position: relative;
  z-index: 1;
  height: 80px;
  -webkit-box-shadow: 0 20px 40px 0 rgba(0, 0, 0, 0.02), 0 12px 24px 0 rgba(0, 0, 0, 0.03), 0 8px 16px 0 rgba(0, 0, 0, 0.04);
          box-shadow: 0 20px 40px 0 rgba(0, 0, 0, 0.02), 0 12px 24px 0 rgba(0, 0, 0, 0.03), 0 8px 16px 0 rgba(0, 0, 0, 0.04);
}
@media (max-width: 991px) {
  .header__wrapper {
    height: 64px;
    padding: 8px 12px 8px 16px;
    border-bottom-width: 3px;
  }
}
.header__logo {
  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;
  height: 48px;
  position: relative;
  z-index: 2;
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
@media (max-width: 991px) {
  .header__logo {
    height: 36px;
  }
}
.header__logo-img {
  display: block;
  height: 36px;
  width: auto;
}
@media (max-width: 991px) {
  .header__logo-img {
    height: 36px;
  }
}
.header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: auto;
}
@media (max-width: 991px) {
  .header__nav {
    position: fixed;
    top: 12px;
    right: 20px;
    left: 20px;
    width: auto;
    overflow: hidden;
    background: #ffffff;
    border-radius: 20px;
    -webkit-transform: scale(0);
            transform: scale(0);
    -webkit-transform-origin: top right;
            transform-origin: top right;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 0.8s cubic-bezier(0.87, 0, 0.13, 1), visibility 0s linear 0.8s, -webkit-transform 0.8s cubic-bezier(0.87, 0, 0.13, 1);
    transition: opacity 0.8s cubic-bezier(0.87, 0, 0.13, 1), visibility 0s linear 0.8s, -webkit-transform 0.8s cubic-bezier(0.87, 0, 0.13, 1);
    transition: transform 0.8s cubic-bezier(0.87, 0, 0.13, 1), opacity 0.8s cubic-bezier(0.87, 0, 0.13, 1), visibility 0s linear 0.8s;
    transition: transform 0.8s cubic-bezier(0.87, 0, 0.13, 1), opacity 0.8s cubic-bezier(0.87, 0, 0.13, 1), visibility 0s linear 0.8s, -webkit-transform 0.8s cubic-bezier(0.87, 0, 0.13, 1);
    z-index: 1;
  }
}
.header__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
  gap: 8px;
}
@media (max-width: 991px) {
  .header__nav-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 28px;
    width: 100%;
    background: transparent;
    padding: 64px 20px 24px;
    border-radius: 20px;
    height: auto;
  }
}
@media (max-width: 991px) {
  .header__nav-item {
    width: 100%;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
    opacity: 0;
    overflow: hidden;
    -webkit-transition: opacity 0.45s cubic-bezier(0.22, 0.61, 0.35, 1), -webkit-transform 0.45s cubic-bezier(0.22, 0.61, 0.35, 1);
    transition: opacity 0.45s cubic-bezier(0.22, 0.61, 0.35, 1), -webkit-transform 0.45s cubic-bezier(0.22, 0.61, 0.35, 1);
    transition: transform 0.45s cubic-bezier(0.22, 0.61, 0.35, 1), opacity 0.45s cubic-bezier(0.22, 0.61, 0.35, 1);
    transition: transform 0.45s cubic-bezier(0.22, 0.61, 0.35, 1), opacity 0.45s cubic-bezier(0.22, 0.61, 0.35, 1), -webkit-transform 0.45s cubic-bezier(0.22, 0.61, 0.35, 1);
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    margin: auto;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-transition-delay: 0s;
            transition-delay: 0s;
  }
}
.header__nav-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 8px 16px;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.8px;
  color: #0094DF;
  border-radius: 100px;
  text-decoration: none;
  white-space: nowrap;
}
@media (max-width: 991px) {
  .header__nav-link {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 0;
    width: 100%;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: 0.8px;
    color: #000000;
    -webkit-transition: top 0.45s cubic-bezier(0.22, 0.61, 0.35, 1);
    transition: top 0.45s cubic-bezier(0.22, 0.61, 0.35, 1);
    position: relative;
    top: 50px;
  }
}
.header__nav-link:hover, .header__nav-link.is-active {
  background: #E5F6FF;
  color: #007FBF;
  font-weight: 700;
}
@media (max-width: 991px) {
  .header__nav-link:hover, .header__nav-link.is-active {
    background: transparent;
  }
}
.header__nav-link.is-disabled {
  color: #e0e0e0;
  pointer-events: none;
  cursor: not-allowed;
}
@media (max-width: 991px) {
  .header__nav .c-btn {
    margin: 0;
  }
  .header__nav .c-btn .header__cta {
    top: 0;
    width: 200px;
    height: 56px;
    margin: 0;
    border-radius: 100px;
    background: -webkit-gradient(linear, left top, right top, from(#04A5F6), to(#007FBF));
    background: linear-gradient(90deg, #04A5F6 0%, #007FBF 100%);
    color: #ffffff;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: 0.8px;
    opacity: 1;
  }
  .header__nav .c-btn .header__cta::after {
    display: none;
  }
}
.header__menu-toggle {
  position: relative;
  display: none;
  width: 40px;
  height: 40px;
  padding: 8px;
  background: #0094DF;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  z-index: 1001;
  -webkit-transition: background 0.3s cubic-bezier(0.22, 0.61, 0.35, 1);
  transition: background 0.3s cubic-bezier(0.22, 0.61, 0.35, 1);
}
@media (max-width: 991px) {
  .header__menu-toggle {
    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;
  }
}
.header__menu-toggle:hover {
  background: #0094DF;
}
.header__menu-toggle:active {
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
}
.header__hamburger {
  position: relative;
  width: 24px;
  height: 24px;
  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;
}
.header__hamburger-line {
  position: absolute;
  width: 14px;
  height: 2px;
  background: #ffffff;
  -webkit-transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}
.header__hamburger-line::before, .header__hamburger-line::after {
  content: "";
  position: absolute;
  background: #ffffff;
  height: 2px;
  -webkit-transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}
.header__hamburger-line::before {
  width: 14px;
  top: -5px;
  left: 0;
}
.header__hamburger-line::after {
  width: 14px;
  bottom: -5px;
  left: 0;
}

@media (max-width: 991px) {
  body.menu-open {
    overflow: hidden;
  }
  body.menu-open .header__wrapper {
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .header,
  .header::after,
  .header__logo,
  .header__nav,
  .header__nav-item,
  .header__nav-link,
  .header__menu-toggle,
  .header__hamburger-line,
  .header__hamburger-line::before,
  .header__hamburger-line::after {
    -webkit-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
    -webkit-transition-delay: 0s !important;
            transition-delay: 0s !important;
  }
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  background: #E5F6FF;
  overflow-x: hidden;
  font-family: "Manrope", "Noto Sans TC", Helvetica, Arial, sans-serif;
}
body.scroll-fixed {
  overflow: hidden;
}

.section {
  position: relative;
}

.wrap {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.wrap__inner {
  width: 89.745%;
  max-width: 1096px;
  margin: 0 auto;
}
@media (max-width: 820px) {
  .wrap__inner {
    padding: 0;
  }
}
.wrap {
  /*新增1210*/
}
.wrap .splide__arrows {
  display: none;
}
@media (max-width: 1023px) {
  .wrap .splide__arrows {
    display: block;
  }
}

main .wrap__inner {
  position: relative;
  max-width: 1320px;
  width: 96%;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 1179px) {
  main .wrap__inner {
    width: 100%;
    padding: 0 20px;
  }
}
@media (max-width: 991px) {
  main .wrap__inner {
    display: block;
  }
}
main .wrap__inner .wrap__head {
  max-width: 372px;
}
@media (max-width: 991px) {
  main .wrap__inner .wrap__head {
    max-width: none;
  }
}
main .wrap__inner .wrap__head {
  margin-bottom: 15px;
}
main .wrap__inner .wrap__head .tip {
  width: 148px;
}
@media (max-width: 991px) {
  main .wrap__inner .wrap__head .tip {
    width: 100px;
    height: 40px;
  }
}
main .wrap__inner .wrap__head .in-title {
  text-align: left;
  margin: 6px 0 12px 0;
}
@media (max-width: 991px) {
  main .wrap__inner .wrap__head .in-title {
    margin: 0;
  }
}
main .wrap__inner .wrap__head p {
  color: #2c2c2c;
  font-size: 1.25em;
  font-weight: 500;
  line-height: 140%;
  letter-spacing: 2.4px;
}
@media (max-width: 992px) {
  main .wrap__inner .wrap__head p {
    font-size: 1em;
    letter-spacing: 0.32px;
    padding-right: 11%;
  }
  main .wrap__inner .wrap__head p br {
    display: none !important;
  }
}
@media (max-width: 991px) {
  main .wrap__inner .wrap__head p {
    padding-right: 0;
  }
}

img {
  width: 100%;
}

.content {
  overflow: hidden;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .content {
    min-height: calc(100vh - 64px);
  }
}
.content--no-padding > *:first-child {
  padding-top: 0;
}

.section-bg__line {
  position: relative;
  z-index: 1;
  background-color: #E5F6FF;
  background-image: url(../images/ling_bg_pc.svg);
  background-position: left top;
  border-radius: 0 0 60px 60px;
}
@media (max-width: 1023px) {
  .section-bg__line {
    background-image: url(../images/ling_bg_mb.svg);
    background-size: contain;
    border-radius: 0 0 32px 32px;
  }
}

.c-card__badge {
  position: absolute;
  top: -18px;
  left: 11px;
  width: 64px;
  height: 64px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: left top;
}
@media (max-width: 820px) {
  .c-card__badge {
    width: 48px;
    height: 48px;
  }
}

/* visible, hidden rwd */
.h1-text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  text-indent: 101%;
  overflow: hidden;
  white-space: nowrap;
}

.center-block {
  display: block;
  margin-right: auto;
  margin-left: auto;
}

.hide {
  display: none;
}

.show {
  display: block;
}

.invisible {
  visibility: hidden;
}

.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}

.hidden {
  display: none !important;
}

.affix {
  position: fixed;
}

@-ms-viewport {
  width: device-width;
}
@media (max-width: 1096px) {
  .hidden-middle {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .hidden-min {
    display: none !important;
  }
}
@media (min-width: 769px) {
  .hidden-max {
    display: none !important;
  }
}
hr {
  border: 0;
  height: 0;
  border-bottom: none;
  margin: 24px 0;
}

svg {
  display: block;
  width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}
a:hover {
  text-decoration: none;
}

.medium {
  font-weight: 500;
}

.bold {
  font-weight: 700;
}

.left {
  text-align: left;
}

.right {
  text-align: right;
}

.center {
  text-align: center;
}

.justify {
  text-align: justify;
}

.underline {
  border-bottom: 1px solid currentColor;
  text-underline-offset: 0.15em;
}

.lineblock {
  display: inline-block;
}

.nowrap {
  white-space: nowrap;
}

.svgbox {
  position: relative;
  pointer-events: none;
}
.svgbox img[src$=".svg"],
.svgbox svg {
  width: 100%;
  height: 100%;
}

.hide {
  display: none !important;
}

.block {
  display: block !important;
}

.mb-0 {
  margin-bottom: 0px;
}
.mb-1 {
  margin-bottom: 4px;
}
.mb-2 {
  margin-bottom: 8px;
}
.mb-3 {
  margin-bottom: 12px;
}
.mb-4 {
  margin-bottom: 16px;
}
.mb-5 {
  margin-bottom: 20px;
}
.mb-6 {
  margin-bottom: 24px;
}
.mb-7 {
  margin-bottom: 28px;
}
.mb-8 {
  margin-bottom: 32px;
}
.mb-9 {
  margin-bottom: 36px;
}
.mb-10 {
  margin-bottom: 40px;
}
.mb-11 {
  margin-bottom: 44px;
}
.mb-12 {
  margin-bottom: 48px;
}

.mt-0 {
  margin-top: 0px;
}
.mt-1 {
  margin-top: 4px;
}
.mt-2 {
  margin-top: 8px;
}
.mt-3 {
  margin-top: 12px;
}
.mt-4 {
  margin-top: 16px;
}
.mt-5 {
  margin-top: 20px;
}
.mt-6 {
  margin-top: 24px;
}
.mt-7 {
  margin-top: 28px;
}
.mt-8 {
  margin-top: 32px;
}
.mt-9 {
  margin-top: 36px;
}
.mt-10 {
  margin-top: 40px;
}
.mt-11 {
  margin-top: 44px;
}
.mt-12 {
  margin-top: 48px;
}

.ml-0 {
  margin-left: 0px;
}
.ml-1 {
  margin-left: 4px;
}
.ml-2 {
  margin-left: 8px;
}
.ml-3 {
  margin-left: 12px;
}
.ml-4 {
  margin-left: 16px;
}
.ml-5 {
  margin-left: 20px;
}
.ml-6 {
  margin-left: 24px;
}
.ml-7 {
  margin-left: 28px;
}
.ml-8 {
  margin-left: 32px;
}
.ml-9 {
  margin-left: 36px;
}
.ml-10 {
  margin-left: 40px;
}
.ml-11 {
  margin-left: 44px;
}
.ml-12 {
  margin-left: 48px;
}

.mr-0 {
  margin-right: 0px;
}
.mr-1 {
  margin-right: 4px;
}
.mr-2 {
  margin-right: 8px;
}
.mr-3 {
  margin-right: 12px;
}
.mr-4 {
  margin-right: 16px;
}
.mr-5 {
  margin-right: 20px;
}
.mr-6 {
  margin-right: 24px;
}
.mr-7 {
  margin-right: 28px;
}
.mr-8 {
  margin-right: 32px;
}
.mr-9 {
  margin-right: 36px;
}
.mr-10 {
  margin-right: 40px;
}
.mr-11 {
  margin-right: 44px;
}
.mr-12 {
  margin-right: 48px;
}

.flex-grow-1 {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.flex-grow-0 {
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
}

.flex-center {
  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;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  clip-path: inset(50%);
  border: 0;
}

.icon-md {
  font-size: 24px;
}

.icon-sm {
  font-size: 20px;
}

.icon-xxl {
  font-size: 50px;
}

.fc-gold {
  color: #FEDA6C;
}

.fc-red {
  color: #FFE5E5;
}

.fc-blue .c-cat-btn {
  background: #0094DF;
}
.fc-blue::after {
  background: #007FBF !important;
}

.fc-orange .c-cat-btn {
  background: #ffa166;
}
.fc-orange::after {
  background: #e67a37 !important;
}

.bold {
  font-weight: 700;
}

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

ol.disc {
  padding-left: 2em;
}
ol.disc > li {
  list-style: disc;
}
ol.decimal {
  padding-left: 2em;
}
ol.decimal > li {
  list-style: decimal;
}
ol.square {
  margin-left: 1em;
}
ol.square > li {
  list-style: square;
}
ol.decimal1em {
  margin-left: 1em;
}
ol.decimal1em > li {
  list-style: decimal;
}
ol.decimal-arc {
  counter-reset: counter;
}
ol.decimal-arc > li:before {
  counter-increment: counter;
  content: "(" counter(counter) ")";
  margin-right: 5.5px;
}

.use-desk {
  display: block;
}

.use-mobile {
  display: none !important;
}

@media (max-width: 991px) {
  .use-desk {
    display: none !important;
  }
  .use-mobile {
    display: block !important;
  }
}
.w-full {
  width: 100%;
  display: block;
  padding-left: 2em;
}

.pc-use {
  display: block !important;
}

.mb-use,
.mb-f-use {
  display: none !important;
}

@media (max-width: 991px) {
  .pc-use {
    display: none !important;
  }
  .mb-use {
    display: block !important;
  }
  .mb-f-use {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}
.c-mt-8 {
  margin-top: 8px;
}

.c-mb-8 {
  margin-bottom: 8px;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.c-pl-0 {
  padding-left: 0 !important;
}

.pl-2 {
  padding-left: 2em !important;
}

.pl-4 {
  padding-left: 4em !important;
}

.go-btn {
  cursor: pointer;
  position: absolute;
  top: -38px;
  right: 80px;
  width: 72px;
  height: 72px;
  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;
  border-radius: 100px;
  border: 2.4px solid #E5F6FF;
  background: #ffffff;
  -webkit-transition: all 0.45s cubic-bezier(0.22, 0.61, 0.35, 1);
  transition: all 0.45s cubic-bezier(0.22, 0.61, 0.35, 1);
}
@media (max-width: 598px) {
  .go-btn {
    width: 48px;
    height: 48px;
    top: 0;
    right: 40px;
    margin-top: -7%;
    border: 1.5px solid #E5F6FF;
  }
}
.go-btn svg {
  width: 32px;
}
@media (max-width: 598px) {
  .go-btn svg {
    width: 24px;
  }
}
@media (min-width: 991px) {
  .go-btn:hover {
    border: 2.4px solid #2DB6FB;
    background: #2DB6FB;
  }
  .go-btn:hover svg path {
    stroke: #ffffff;
  }
}

#p1, #p2, #p3, #p4 {
  scroll-margin-top: 60px;
}

.c-icon {
  position: absolute;
  max-width: none;
  z-index: 0;
}
.c-icon__start {
  width: 24px;
  -webkit-animation: starTwinkle 1.2s ease-in-out infinite;
          animation: starTwinkle 1.2s ease-in-out infinite;
}
@media (max-width: 991px) {
  .c-icon__start {
    width: 15px;
  }
}
.c-icon__start-1 {
  -webkit-animation-delay: 1.3s;
          animation-delay: 1.3s;
}
.c-icon__start-3 {
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}

.marquee {
  position: absolute;
  bottom: 0;
  left: -6%;
  width: 112%;
}
.marquee__track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  overflow: hidden;
  background-color: transparent;
  height: 100px;
}
@media (max-width: 991px) {
  .marquee__track {
    height: 72px;
  }
}
.marquee__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
  -webkit-animation: infinite-scroll 100s linear infinite;
          animation: infinite-scroll 100s linear infinite;
}
.marquee__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 30px;
}
@media (max-width: 991px) {
  .marquee__item {
    margin: 0 10px;
  }
}
.marquee__text {
  color: rgba(229, 246, 255, 0.5);
  font-family: "Manrope";
  font-size: 100px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: capitalize;
  line-height: 100%;
  white-space: nowrap;
}
@media (max-width: 991px) {
  .marquee__text {
    font-size: 60px;
  }
}

@-webkit-keyframes float {
  50% {
    -webkit-transform: translate(0, 8px);
            transform: translate(0, 8px);
  }
}

@keyframes float {
  50% {
    -webkit-transform: translate(0, 8px);
            transform: translate(0, 8px);
  }
}
@-webkit-keyframes float2 {
  50% {
    -webkit-transform: translate(0, -8px);
            transform: translate(0, -8px);
  }
}
@keyframes float2 {
  50% {
    -webkit-transform: translate(0, -8px);
            transform: translate(0, -8px);
  }
}
@-webkit-keyframes cloud-l {
  50% {
    -webkit-transform: translate(80px, 0);
            transform: translate(80px, 0);
  }
}
@keyframes cloud-l {
  50% {
    -webkit-transform: translate(80px, 0);
            transform: translate(80px, 0);
  }
}
@-webkit-keyframes cloud-r {
  50% {
    -webkit-transform: translate(-80px, 0);
            transform: translate(-80px, 0);
  }
}
@keyframes cloud-r {
  50% {
    -webkit-transform: translate(-80px, 0);
            transform: translate(-80px, 0);
  }
}
@-webkit-keyframes cloud-kv-l {
  50% {
    -webkit-transform: translate(30px, 0);
            transform: translate(30px, 0);
  }
}
@keyframes cloud-kv-l {
  50% {
    -webkit-transform: translate(30px, 0);
            transform: translate(30px, 0);
  }
}
@-webkit-keyframes cloud-kv-r {
  50% {
    -webkit-transform: translate(-30px, 0);
            transform: translate(-30px, 0);
  }
}
@keyframes cloud-kv-r {
  50% {
    -webkit-transform: translate(-30px, 0);
            transform: translate(-30px, 0);
  }
}
@-webkit-keyframes rotate360 {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes rotate360 {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@-webkit-keyframes gradientFlow {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@keyframes gradientFlow {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@-webkit-keyframes gradientSlide {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@keyframes gradientSlide {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@-webkit-keyframes rotating-tip {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(1turn);
            transform: rotate(1turn);
  }
}
@keyframes rotating-tip {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(1turn);
            transform: rotate(1turn);
  }
}
@-webkit-keyframes moveDown-tip {
  0% {
    top: 40%;
    opacity: 1;
  }
  50% {
    top: 50%;
    opacity: 1;
  }
  100% {
    top: 60%;
    opacity: 0;
  }
}
@keyframes moveDown-tip {
  0% {
    top: 40%;
    opacity: 1;
  }
  50% {
    top: 50%;
    opacity: 1;
  }
  100% {
    top: 60%;
    opacity: 0;
  }
}
@-webkit-keyframes pulse {
  0%, 75%, 100% {
    -webkit-transform: translateY(0) scale3d(1, 1, 1);
            transform: translateY(0) scale3d(1, 1, 1);
  }
  12.5% {
    -webkit-transform: translateY(0) scale3d(1.05, 1.05, 1.05);
            transform: translateY(0) scale3d(1.05, 1.05, 1.05);
  }
  25% {
    -webkit-transform: translateY(0) scale3d(1, 1, 1);
            transform: translateY(0) scale3d(1, 1, 1);
  }
}
@keyframes pulse {
  0%, 75%, 100% {
    -webkit-transform: translateY(0) scale3d(1, 1, 1);
            transform: translateY(0) scale3d(1, 1, 1);
  }
  12.5% {
    -webkit-transform: translateY(0) scale3d(1.05, 1.05, 1.05);
            transform: translateY(0) scale3d(1.05, 1.05, 1.05);
  }
  25% {
    -webkit-transform: translateY(0) scale3d(1, 1, 1);
            transform: translateY(0) scale3d(1, 1, 1);
  }
}
@-webkit-keyframes pulse2 {
  0% {
    -webkit-transform: translateY(0) scale3d(0.8, 0.8, 0.8);
            transform: translateY(0) scale3d(0.8, 0.8, 0.8);
  }
  12.5% {
    -webkit-transform: translateY(0) scale3d(1.05, 1.05, 1.05);
            transform: translateY(0) scale3d(1.05, 1.05, 1.05);
  }
  25% {
    -webkit-transform: translateY(0) scale3d(1, 1, 1);
            transform: translateY(0) scale3d(1, 1, 1);
  }
  75%, 100% {
    -webkit-transform: translateY(0) scale3d(1, 1, 1);
            transform: translateY(0) scale3d(1, 1, 1);
  }
}
@keyframes pulse2 {
  0% {
    -webkit-transform: translateY(0) scale3d(0.8, 0.8, 0.8);
            transform: translateY(0) scale3d(0.8, 0.8, 0.8);
  }
  12.5% {
    -webkit-transform: translateY(0) scale3d(1.05, 1.05, 1.05);
            transform: translateY(0) scale3d(1.05, 1.05, 1.05);
  }
  25% {
    -webkit-transform: translateY(0) scale3d(1, 1, 1);
            transform: translateY(0) scale3d(1, 1, 1);
  }
  75%, 100% {
    -webkit-transform: translateY(0) scale3d(1, 1, 1);
            transform: translateY(0) scale3d(1, 1, 1);
  }
}
@-webkit-keyframes loopAnimation {
  0% {
    -webkit-transform: translateX(0);
    transform: translate(0);
  }
  to {
    -webkit-transform: translateX(-100%);
    transform: translate(-100%);
  }
}
@keyframes loopAnimation {
  0% {
    -webkit-transform: translateX(0);
    transform: translate(0);
  }
  to {
    -webkit-transform: translateX(-100%);
    transform: translate(-100%);
  }
}
@-webkit-keyframes infinite-scroll {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@keyframes infinite-scroll {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@-webkit-keyframes cBtnArrowLoop {
  0% {
    -webkit-transform: translateY(110%);
            transform: translateY(110%);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  50% {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(-110%);
            transform: translateY(-110%);
    opacity: 0;
  }
}
@keyframes cBtnArrowLoop {
  0% {
    -webkit-transform: translateY(110%);
            transform: translateY(110%);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  50% {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(-110%);
            transform: translateY(-110%);
    opacity: 0;
  }
}
@-webkit-keyframes lineLoop {
  0% {
    clip-path: inset(0 100% 0 0);
    opacity: 1;
  }
  30% {
    clip-path: inset(0 0 0 0);
  }
  80% {
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
  90% {
    opacity: 0;
  }
  100% {
    clip-path: inset(0 100% 0 0);
    opacity: 0;
  }
}
@keyframes lineLoop {
  0% {
    clip-path: inset(0 100% 0 0);
    opacity: 1;
  }
  30% {
    clip-path: inset(0 0 0 0);
  }
  80% {
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
  90% {
    opacity: 0;
  }
  100% {
    clip-path: inset(0 100% 0 0);
    opacity: 0;
  }
}
@-webkit-keyframes starTwinkle {
  0%, 100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.15);
            transform: scale(1.15);
  }
}
@keyframes starTwinkle {
  0%, 100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.15);
            transform: scale(1.15);
  }
}
@-webkit-keyframes fumeEmit {
  0% {
    -webkit-transform: translate(5px, 0) scale(1);
            transform: translate(5px, 0) scale(1);
    opacity: 1;
  }
  50% {
    -webkit-transform: translate(-5px, -1pxx) scale(0.5);
            transform: translate(-5px, -1pxx) scale(0.5);
    opacity: 1;
  }
  100% {
    -webkit-transform: translate(-11px, 2px) scale(0);
            transform: translate(-11px, 2px) scale(0);
    opacity: 0;
  }
}
@keyframes fumeEmit {
  0% {
    -webkit-transform: translate(5px, 0) scale(1);
            transform: translate(5px, 0) scale(1);
    opacity: 1;
  }
  50% {
    -webkit-transform: translate(-5px, -1pxx) scale(0.5);
            transform: translate(-5px, -1pxx) scale(0.5);
    opacity: 1;
  }
  100% {
    -webkit-transform: translate(-11px, 2px) scale(0);
            transform: translate(-11px, 2px) scale(0);
    opacity: 0;
  }
}
@-webkit-keyframes subtleWave {
  0%, 100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  50% {
    -webkit-transform: rotate(8deg);
            transform: rotate(8deg);
  }
}
@keyframes subtleWave {
  0%, 100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  50% {
    -webkit-transform: rotate(8deg);
            transform: rotate(8deg);
  }
}
@keyframes pulse {
  from {
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
            transform: scale3d(0.3, 0.3, 0.3);
    opacity: 0;
  }
  50% {
    -webkit-transform: scale3d(1.2, 1.2, 1.2);
            transform: scale3d(1.2, 1.2, 1.2);
    opacity: 1;
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
    opacity: 1;
  }
}
@-webkit-keyframes scaleLine {
  0% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
  100% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
}
@keyframes scaleLine {
  0% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
  100% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
}
.toggle__trigger {
  position: relative;
  -webkit-transition: opacity 0.25s cubic-bezier(0.77, 0.2, 0.05, 1);
  transition: opacity 0.25s cubic-bezier(0.77, 0.2, 0.05, 1);
  cursor: pointer;
}
.toggle__trigger-icon {
  position: relative;
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.77, 0.2, 0.05, 1);
  transition: -webkit-transform 0.3s cubic-bezier(0.77, 0.2, 0.05, 1);
  transition: transform 0.3s cubic-bezier(0.77, 0.2, 0.05, 1);
  transition: transform 0.3s cubic-bezier(0.77, 0.2, 0.05, 1), -webkit-transform 0.3s cubic-bezier(0.77, 0.2, 0.05, 1);
}
.toggle__content {
  overflow: hidden;
  -webkit-transition: max-height 0.3s cubic-bezier(0.77, 0.2, 0.05, 1);
  transition: max-height 0.3s cubic-bezier(0.77, 0.2, 0.05, 1);
}
.toggle__content[data-toggle-line] {
  max-height: none;
}
.toggle--visible.toggle--active .toggle__content {
  -webkit-animation: fadeIn 0.35s 0.1s backwards;
          animation: fadeIn 0.35s 0.1s backwards;
  overflow: visible;
}

.faq-toggle {
  color: #007FBF;
  line-height: 140%;
  font-weight: 500;
  letter-spacing: 0.48px;
}
@media (max-width: 820px) {
  .faq-toggle {
    font-size: 16px;
  }
}
.faq-toggle.toggle--active {
  background-color: #ffffff;
  color: #333333;
}
@media (min-width: 1279px) {
  .faq-toggle.toggle--active:focus, .faq-toggle.toggle--active:hover, .faq-toggle.toggle--active:active {
    opacity: 1;
  }
}
.faq-toggle__trigger {
  border-radius: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid #E5F6FF;
  background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#E5F6FF));
  background: linear-gradient(180deg, #ffffff 0%, #E5F6FF 100%);
  -webkit-box-shadow: 0 65px 39px 0 rgba(0, 0, 0, 0.05), 0 29px 29px 0 rgba(0, 0, 0, 0.09), 0 7px 16px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 65px 39px 0 rgba(0, 0, 0, 0.05), 0 29px 29px 0 rgba(0, 0, 0, 0.09), 0 7px 16px 0 rgba(0, 0, 0, 0.1);
  padding: 28px 24px 28px 24px;
}
@media (max-width: 991px) {
  .faq-toggle__trigger {
    padding: 20px 16px;
  }
}
.faq-toggle__trigger::before {
  content: "Q.";
  color: #04A5F6;
  width: 34px;
  font-size: 1.75em;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 1.12px;
  text-transform: uppercase;
  margin-right: 12px;
}
.toggle--active .faq-toggle__trigger {
  color: #42210b;
}
.faq-toggle__trigger:hover {
  opacity: 1;
}
.faq-toggle__trigger-icon {
  background: #2DB6FB;
  border-radius: 99em;
  width: 40px;
  height: 40px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background-image: url(../images/arrw.svg);
  background-size: 24px;
  background-position: center;
  background-repeat: no-repeat;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
@media (max-width: 598px) {
  .faq-toggle__trigger-icon {
    width: 40px;
    height: 40px;
  }
}
.faq-toggle__title {
  width: calc(100% - 100px);
  font-family: Roboto;
  font-size: 1.375em;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  letter-spacing: 0.88px;
  text-transform: capitalize;
  padding-right: 16px;
}
@media (max-width: 820px) {
  .faq-toggle__title {
    padding-right: 20px;
    font-size: 1em;
  }
}
@media (max-width: 598px) {
  .faq-toggle__title {
    width: calc(100% - 80px);
  }
}
.faq-toggle .faq-content {
  text-align: justify;
}
@media (max-width: 991px) {
  .faq-toggle .faq-content {
    font-size: 14px;
    line-height: 160%; /* 22.4px */
    letter-spacing: 0.28px;
    padding: 20px 16px;
  }
}
@media (max-width: 598px) {
  .faq-toggle .faq-content .table-box {
    width: 100%;
    overflow: auto;
  }
}
.faq-toggle .faq-content table {
  text-align: center;
  margin-top: 10px;
  width: min(750px, 62%);
  border-collapse: collapse;
  border-spacing: 0;
}
@media (max-width: 991px) {
  .faq-toggle .faq-content table {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
  }
}
.faq-toggle .faq-content table th, .faq-toggle .faq-content table td {
  padding: 13px 0;
  border: 1px solid #bbd4ff;
}
@media (max-width: 991px) {
  .faq-toggle .faq-content table th, .faq-toggle .faq-content table td {
    width: 25%;
    padding: 10px 5px;
    vertical-align: middle;
    font-size: 13px;
  }
  .faq-toggle .faq-content table th:nth-child(1), .faq-toggle .faq-content table td:nth-child(1) {
    width: 30%;
  }
}
.faq-toggle .faq-content table tr:nth-child(odd) {
  background-color: #0094DF;
}
.faq-toggle .faq-content table tr:nth-child(even) {
  background-color: #59C6FC;
}
.faq-toggle .toggle__box {
  display: none;
  margin-top: 8px;
  font-size: 1rem;
  padding: 24px;
  background: #327EFF;
  color: #ffffff;
  font-weight: 400;
  line-height: 160%;
  letter-spacing: 0.32px;
  border-radius: 12px;
}
@media (max-width: 598px) {
  .faq-toggle .toggle__box {
    padding: 0;
  }
}
.faq-toggle.is-active .faq-toggle__trigger-icon {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}

/* ========================================
 * Lightbox
 * ======================================== */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s, visibility 0.3s;
  transition: opacity 0.3s, visibility 0.3s;
}
.lightbox-overlay.is-active {
  opacity: 1;
  visibility: visible;
}

#lightbox {
  position: fixed;
  inset: 0;
  z-index: 9001;
  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;
  pointer-events: none;
}

.lightbox-dialog {
  position: relative;
  background: #fff;
  border-radius: 1rem;
  padding: 2rem;
  width: 90%;
  max-width: 28rem;
  max-height: 80vh;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transform: translateY(1.25rem);
          transform: translateY(1.25rem);
  -webkit-transition: opacity 0.3s, visibility 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, visibility 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s, -webkit-transform 0.3s;
}
.lightbox-dialog.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.lightbox-dialog__close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 2rem;
  height: 2rem;
  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;
  color: #9ca3af;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
  background: none;
  border: none;
  cursor: pointer;
}
.lightbox-dialog__close svg {
  width: 1.25rem;
  height: 1.25rem;
}
.lightbox-dialog__close:hover {
  color: #4b5563;
}
.lightbox-dialog__title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #000000;
}
.lightbox-dialog__desc {
  font-size: 0.875rem;
  color: #4b5563;
  line-height: 1.625;
  margin-bottom: 0.75rem;
}
.lightbox-dialog__url {
  font-size: 0.75rem;
  color: #9ca3af;
  margin-bottom: 1.5rem;
  word-break: break-all;
}
.lightbox-dialog__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.75rem;
}
.lightbox-dialog__confirm, .lightbox-dialog__cancel {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 0.75rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 700;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  cursor: pointer;
}
.lightbox-dialog__confirm {
  background: #04A5F6;
  color: #ffffff;
  border: none;
}
.lightbox-dialog__confirm:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.lightbox-dialog__cancel {
  background: transparent;
  border: 1px solid #d1d5db;
  color: #4b5563;
}
.lightbox-dialog__cancel:hover {
  background: #f9fafb;
}

.in-title {
  font-size: 3em;
  font-weight: 700;
  text-align: center;
  letter-spacing: 5.76px;
  line-height: 125%;
  margin-bottom: 12px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 40px;
  color: #0094DF;
}
@media (max-width: 820px) {
  .in-title {
    font-size: 32px;
    letter-spacing: 3.84px;
    margin: 6px 0 !important;
  }
}

.sub-title {
  font-size: 1.25em;
  font-weight: 500;
  line-height: 140%;
  letter-spacing: 0.4px;
  color: #8BD8FE;
  text-align: center;
  font-family: "Manrope", Helvetica, Arial, sans-serif;
  margin-bottom: 40px;
}
@media (max-width: 820px) {
  .sub-title {
    font-size: 4.10256vw;
    margin-bottom: 8.20514vw;
  }
}

.main-title {
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 2em;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 1.28px;
  background: -webkit-gradient(linear, left top, right top, from(#007FBF), color-stop(36.81%, #59C6FC));
  background: linear-gradient(90deg, #007FBF 0%, #59C6FC 36.81%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 598px) {
  .main-title {
    font-size: 7.1795vw;
  }
}

.section-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 2.88px;
  overflow: visible;
  margin-bottom: 32px;
  color: #0094DF;
}
@media (max-width: 1023px) {
  .section-title {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 1.28px;
    margin-bottom: 20px;
  }
}
.section-title__group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  position: relative;
}
.section-title__group--brand {
  color: #ffb07f;
  padding-bottom: 11px;
  overflow: hidden;
}
.section-title__char {
  opacity: 0;
  display: inline-block;
  -webkit-transform: translateY(117%);
          transform: translateY(117%);
  transition: transform 0.6s cubic-bezier(0.2, 0.6, 0.2, 1), -webkit-transform 0.6s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}
.section-title__underline {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  clip-path: inset(0 100% 0 0);
  -webkit-transition: clip-path 0.8s ease-in-out;
  transition: clip-path 0.8s ease-in-out;
}
.section-title.is-active .section-title__char {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.section-title.is-active .section-title__underline {
  clip-path: inset(0 0 0 0);
  -webkit-transition-delay: 1.2s;
          transition-delay: 1.2s;
}

@-webkit-keyframes textSlideUp {
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes textSlideUp {
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes lineDrawRight {
  to {
    clip-path: inset(0 0 0 0);
  }
}
@keyframes lineDrawRight {
  to {
    clip-path: inset(0 0 0 0);
  }
}
@-webkit-keyframes c-btn-arrow-flow {
  0% {
    background-position: -24px center, 0px center;
  }
  100% {
    background-position: 0px center, 24px center;
  }
}
@keyframes c-btn-arrow-flow {
  0% {
    background-position: -24px center, 0px center;
  }
  100% {
    background-position: 0px center, 24px center;
  }
}
.c-btn a, .c-btn span {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.36px;
  width: 134px;
  height: 51px;
  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;
  gap: 4px;
  color: #ffffff;
  border-radius: 100px;
  background: linear-gradient(100deg, #04A5F6 13.07%, #007FBF 41.72%, #04A5F6 72.32%);
  border-radius: 100px;
  background-size: 200% auto;
  background-position: left center;
  -webkit-transition: background-position 0.5s;
  transition: background-position 0.5s;
}
.c-btn a::after, .c-btn span::after {
  content: "";
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 24px;
  height: 24px;
  background-image: url(../images/icon_arrow_right.svg), url(../images/icon_arrow_right.svg);
  background-repeat: no-repeat, no-repeat;
  background-size: 20px 20px, 20px 20px;
  background-position: -24px center, 0px center;
}
@media (max-width: 991px) {
  .c-btn a, .c-btn span {
    padding: 0;
    width: 117px;
    height: 40px;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0.32px;
  }
  .c-btn a::after, .c-btn span::after {
    width: 20px;
    height: 20px;
  }
}
.c-btn a:hover, .c-btn span:hover {
  background-position: right center;
}
@media (max-width: 991px) {
  .c-btn a:hover, .c-btn span:hover {
    background-position: left center;
  }
}
.c-btn a:hover::after, .c-btn span:hover::after {
  -webkit-animation: c-btn-arrow-flow 0.45s cubic-bezier(0.22, 0.61, 0.35, 1);
          animation: c-btn-arrow-flow 0.45s cubic-bezier(0.22, 0.61, 0.35, 1);
}
.c-btn .header__cta {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.8px;
  width: 152px;
  height: 56px;
}
.c-btn .header__cta::after {
  display: none;
}

.fixedIcon__area {
  position: fixed;
  right: 12px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: all 450ms;
  transition: all 450ms;
  -webkit-transition-timing-function: cubic-bezier(0.22, 0.61, 0.35, 1);
          transition-timing-function: cubic-bezier(0.22, 0.61, 0.35, 1);
  opacity: 0;
  pointer-events: none;
  z-index: 3;
}
.fixedIcon__area--active {
  opacity: 1;
  pointer-events: auto;
}
@media (max-width: 1023px) {
  .fixedIcon__area {
    right: initial;
    top: initial;
    bottom: 0;
    left: 0;
    width: 100%;
    -webkit-transform: none;
            transform: none;
  }
}
.fixedIcon__btn {
  display: block;
  width: 140px;
  height: 144px;
  background-image: url(../images/icon_area_d.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  -webkit-transition: all 450ms;
  transition: all 450ms;
  -webkit-transition-timing-function: cubic-bezier(0.22, 0.61, 0.35, 1);
          transition-timing-function: cubic-bezier(0.22, 0.61, 0.35, 1);
}
.fixedIcon__btn span {
  display: none;
}
@media (max-width: 1023px) {
  .fixedIcon__btn {
    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;
    width: 100%;
    height: 60px;
    border-radius: 24px 24px 0 0;
    border-top: 3px solid var(--Orange-Orange-700, #E67A37);
    background: -webkit-gradient(linear, left bottom, left top, from(var(--Orange-Orange-700, #E67A37)), color-stop(20%, var(--Orange-Orange-600, #FFA166)));
    background: linear-gradient(0deg, var(--Orange-Orange-700, #E67A37) 0%, var(--Orange-Orange-600, #FFA166) 20%);
  }
  .fixedIcon__btn span {
    color: var(--bw-white, #FFF);
    text-align: center;
    display: block;
    /* Paragraph/Body2-B */
    -webkit-text-stroke-width: 6px;
    -webkit-text-stroke-color: #000000;
    paint-order: stroke fill;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.6;
    letter-spacing: 0.8px;
  }
}
.fixedIcon__btn:hover {
  background-image: url(../images/icon_area_h.png);
}
@media (max-width: 1023px) {
  .fixedIcon__btn:hover {
    display: none;
  }
}

.section-tags {
  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;
  gap: 24px;
}
@media (max-width: 991px) {
  .section-tags {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    gap: 10px;
  }
}
.section-tags-wrap {
  position: relative;
}
.section-tags-wrap::after {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 56px;
  border-radius: 99em;
  z-index: -1;
}
.section-tags-inner {
  line-height: 140%;
  letter-spacing: 0.36px;
  margin-bottom: 30px;
  padding: 10px 14.5px 20px 14.5px;
  border-radius: 99em;
  overflow: hidden;
  overflow-x: auto;
  position: relative;
}
@media (max-width: 991px) {
  .section-tags-inner {
    padding: 10px 14px 20px 14px;
    margin-bottom: 24px;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .section-tags-inner::-webkit-scrollbar {
    display: none;
  }
}
.section-tags__item {
  color: #ffffff;
  font-size: 1.125em;
  position: relative;
  width: 210px;
  text-align: center;
  padding: 5px 0;
  border: 1px solid #ffffff;
  border-radius: 99em;
  cursor: pointer;
  background: none;
  font-weight: 500;
  font-family: "Noto Sans TC";
}
@media (max-width: 991px) {
  .section-tags__item {
    width: 46.3vw;
    font-size: 16px;
  }
}
@media (max-width: 890px) {
  .section-tags__item {
    width: 45.9vw;
  }
}
@media (max-width: 820px) {
  .section-tags__item {
    width: 45.2vw;
  }
}
@media (max-width: 700px) {
  .section-tags__item {
    width: 44.6vw;
  }
}
@media (max-width: 520px) {
  .section-tags__item {
    width: 42.9vw;
  }
}
@media (max-width: 480px) {
  .section-tags__item {
    width: 41.1vw;
  }
}
@media (max-width: 390px) {
  .section-tags__item {
    width: 40.5vw;
  }
}
@media (max-width: 320px) {
  .section-tags__item {
    width: 38.5vw;
  }
}
.section-tags__item--active {
  pointer-events: none;
}
.section-tags__item:hover, .section-tags__item--active {
  background: #ffffff;
  color: #3A5A8A;
}
.section-tags__item:hover::after, .section-tags__item--active::after {
  display: block !important;
}
.section-tags__item::after {
  display: none;
  position: absolute;
  bottom: -19px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  content: "";
  width: 22px;
  height: 11px;
  background-image: url(../images/tag-triangle.svg);
  background-repeat: no-repeat;
  background-size: cover;
}
@media (max-width: 598px) {
  .section-tags__item::after {
    width: 8px;
    height: 12px;
    background-image: url(../images/tag-triangle_mb.svg);
  }
}
.section-tags__content {
  display: none;
}
.section-tags__content--active {
  display: block;
}

.swiper-pagination {
  position: static !important;
  width: auto !important;
}

.swiper-controls {
  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;
  gap: 24px;
  margin-top: 5px;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  width: auto;
}

.swiper-pagination-bullet {
  border-radius: 2px;
  position: relative;
  -webkit-transition: width 0.3s;
  transition: width 0.3s;
  z-index: 2;
  opacity: 1;
  background: #8BD8FE;
}
.swiper-pagination-bullet::before {
  border-radius: 2px;
  -webkit-transition: width 0.3s;
  transition: width 0.3s;
  display: block;
  content: "";
  width: 8px;
  height: 8px;
}

.swiper-pagination-bullet-active::before {
  width: 32px;
  border-radius: 2px;
  background: -webkit-gradient(linear, right top, left top, from(#25CBFF), to(#0094DF));
  background: linear-gradient(270deg, #25CBFF 0%, #0094DF 100%);
}

.features-controls {
  display: none;
}
@media (max-width: 598px) {
  .features-controls {
    display: block;
  }
}

.c-circle {
  position: absolute;
  top: 7%;
  left: -28%;
  width: 49%;
  aspect-ratio: 1/1;
  max-width: 995.2px;
  max-height: 926.36px;
  z-index: -1;
}
@media (max-width: 991px) {
  .c-circle {
    display: none;
  }
}
.c-circle__box {
  position: relative;
  width: 100%;
  height: 100%;
}
.c-circle__box img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-animation: rotate360-centered 20s linear infinite;
          animation: rotate360-centered 20s linear infinite;
}

.section-hero {
  padding-top: 145px;
  position: relative;
  z-index: 2;
  overflow: hidden;
  background: -webkit-gradient(linear, left top, left bottom, from(#2DB6FB), color-stop(25%, #59C6FC), color-stop(50%, #8BD8FE), color-stop(75%, #B8E7FF), to(#E5F6FF));
  background: linear-gradient(180deg, #2DB6FB 0%, #59C6FC 25%, #8BD8FE 50%, #B8E7FF 75%, #E5F6FF 100%);
}
.section-hero__container {
  position: relative;
  width: min(1300px, 90%);
  height: 100%;
  margin: 0 auto;
}
.section-hero__content {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  width: 100%;
  height: 100%;
  padding-bottom: 110px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.section-hero__title {
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50.293%;
          flex: 0 0 50.293%;
  aspect-ratio: 645/465.77;
}
.section-hero__heading {
  margin: 0;
}
.section-hero__visual {
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50.385%;
          flex: 0 0 50.385%;
  aspect-ratio: 655/501;
}
.section-hero__cta {
  position: absolute;
  z-index: 5;
  top: 82.278%;
  left: 35.504%;
  display: block;
  width: min(194.87px, 30.212%);
  line-height: 0;
}
.section-hero__cta svg {
  display: block;
  width: 100%;
  height: 100%;
}
.section-hero__cta svg > path:first-child {
  fill: #ff7575;
  -webkit-transition: fill 0.25s ease;
  transition: fill 0.25s ease;
}
@media (hover: hover) {
  .section-hero__cta:hover svg > path:first-child {
    fill: #ff8a8a;
  }
}
.section-hero__cta:focus-visible {
  outline: 3px solid #04A5F6;
  outline-offset: 4px;
}
.section-hero__scroll {
  position: absolute;
  z-index: 5;
  bottom: 24px;
  left: 50%;
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  color: #04A5F6;
  font-size: 13px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%; /* 15.6px */
  letter-spacing: 0.13px;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
}
.section-hero__scroll #scroll-circle {
  position: relative;
  width: 20px;
  height: 30px;
  margin-bottom: 2px;
  border: 2px solid #2DB6FB;
  border-radius: 40px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-bottom: 8px;
}
.section-hero__scroll #scroll-circle .dot {
  position: absolute;
  top: 15%;
  right: 0;
  left: 0;
  width: 2px;
  height: 5px;
  margin: 0 auto;
  border-radius: 2px;
  background-color: #04A5F6;
  -webkit-animation: heroMouseScroll 2s infinite;
          animation: heroMouseScroll 2s infinite;
}
.section-hero__scroll:focus-visible {
  outline: 3px solid #04A5F6;
  outline-offset: 4px;
}
.section-hero .c-icon > img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
}
.section-hero .c-icon__deco {
  z-index: 0;
}
.section-hero .c-icon__deco-left-desktop {
  top: 1%;
  left: -1%;
  width: min(524.268px, 36.408%);
}
.section-hero .c-icon__deco-right-desktop {
  top: -3%;
  right: -1%;
  width: min(507.336px, 35.231%);
}
.section-hero .c-icon__deco-left-top-mobile, .section-hero .c-icon__deco-left-center-mobile, .section-hero .c-icon__deco-right-center-mobile {
  display: none;
}
.section-hero .c-icon__blur {
  z-index: 0;
}
.section-hero .c-icon__blur-title {
  top: 0;
  left: 16.434%;
  width: min(440px, 68.217%);
}
.section-hero .c-icon__title {
  z-index: 2;
  top: 3.914%;
  left: 0;
  width: 100%;
  height: 82.016%;
}
.section-hero .c-icon__star {
  z-index: 4;
  width: min(24px, 3.721%);
  aspect-ratio: 1;
  -webkit-filter: drop-shadow(0 0 2px #fff);
          filter: drop-shadow(0 0 2px #fff);
}
.section-hero .c-icon__star-title-left {
  top: 44.706%;
  left: 12.403%;
  -webkit-animation: starTwinkle 1.2s 1.3s ease-in-out infinite;
          animation: starTwinkle 1.2s 1.3s ease-in-out infinite;
}
.section-hero .c-icon__star-title-right {
  top: 15.508%;
  left: 80.465%;
  -webkit-animation: starTwinkle 1.2s ease-in-out infinite;
          animation: starTwinkle 1.2s ease-in-out infinite;
}
.section-hero .c-icon__blur-visual-left, .section-hero .c-icon__blur-visual-right {
  width: min(440px, 67.176%);
}
.section-hero .c-icon__blur-visual-left {
  top: 7.086%;
  left: 0;
}
.section-hero .c-icon__blur-visual-right {
  top: 0.299%;
  left: 32.824%;
}
.section-hero .c-icon__stock, .section-hero .c-icon__rocket, .section-hero .c-icon__arrow, .section-hero .c-icon__clock, .section-hero .c-icon__wealth, .section-hero .c-icon__ladder, .section-hero .c-icon__calendar, .section-hero .c-icon__pig, .section-hero .c-icon__tiger, .section-hero .c-icon__cloud {
  z-index: 2;
  -webkit-filter: drop-shadow(1px -1px 8px rgba(255, 255, 255, 0.8));
          filter: drop-shadow(1px -1px 8px rgba(255, 255, 255, 0.8));
}
.section-hero .c-icon__stock {
  top: 0;
  left: 43.588%;
  width: min(84px, 12.824%);
  aspect-ratio: 84/77;
}
.section-hero .c-icon__rocket {
  top: 6.587%;
  left: 78.55%;
  width: min(123px, 18.779%);
  aspect-ratio: 123/120;
}
.section-hero .c-icon__arrow {
  top: 11.976%;
  left: 43.588%;
  width: min(157px, 23.969%);
  aspect-ratio: 157/97;
  overflow: hidden;
}
.section-hero .c-icon__arrow > img {
  position: absolute;
  top: -36.11%;
  left: -8.51%;
  width: 117.7%;
  height: 189.63%;
}
.section-hero .c-icon__clock {
  top: 24.641%;
  left: 68.049%;
  width: min(122.61px, 18.719%);
  aspect-ratio: 122.61/131.1;
}
.section-hero .c-icon__wealth {
  top: 24.551%;
  left: 43.588%;
  width: min(220px, 33.588%);
  aspect-ratio: 220/231;
}
.section-hero .c-icon__ladder {
  top: 46.906%;
  left: 4.046%;
  width: min(626px, 95.573%);
  aspect-ratio: 626/260;
}
.section-hero .c-icon__ladder::after {
  position: absolute;
  z-index: -1;
  top: 65.904%;
  left: 27.716%;
  width: 15.815%;
  height: 9.346%;
  border-radius: 50%;
  background: rgba(24, 50, 82, 0.32);
  -webkit-filter: blur(14px);
          filter: blur(14px);
  content: "";
}
.section-hero .c-icon__calendar {
  top: 22.954%;
  left: 4.962%;
  width: min(122px, 18.626%);
  aspect-ratio: 122/114;
}
.section-hero .c-icon__pig {
  z-index: 3;
  top: 11.816%;
  left: 15.038%;
  width: min(190px, 29.008%);
  aspect-ratio: 190/311.6;
}
.section-hero .c-icon__tiger {
  z-index: 4;
  top: 44.311%;
  left: 27.405%;
  width: min(190px, 29.008%);
  aspect-ratio: 190/200;
}
.section-hero .c-icon__cloud-1 {
  z-index: 4;
  top: 77.445%;
  left: 71.985%;
  width: min(165px, 25.191%);
  aspect-ratio: 165/113;
}
.section-hero .c-icon__cloud-2 {
  z-index: 4;
  top: 80.353%;
  left: 0;
  width: min(95.137px, 14.525%);
  aspect-ratio: 95.137/97.755;
}
.section-hero .c-icon__cloud-3 {
  z-index: 4;
  top: 49.102%;
  left: 1.145%;
  width: min(72.576px, 11.08%);
  aspect-ratio: 72.576/46.138;
}
.section-hero .c-icon__star-visual-1 {
  top: 26.946%;
  left: 35.344%;
  -webkit-animation: starTwinkle 1.2s 1.2s ease-in-out infinite;
          animation: starTwinkle 1.2s 1.2s ease-in-out infinite;
}
.section-hero .c-icon__star-visual-2 {
  top: 29.94%;
  left: 82.824%;
  -webkit-animation: starTwinkle 1.2s ease-in-out infinite;
          animation: starTwinkle 1.2s ease-in-out infinite;
}
.section-hero .c-icon__star-visual-3 {
  top: 59.681%;
  left: 25.725%;
  -webkit-animation: starTwinkle 1.2s 0.6s ease-in-out infinite;
          animation: starTwinkle 1.2s 0.6s ease-in-out infinite;
}
.section-hero .c-icon__stock > img {
  -webkit-animation: float 2.8s 0.3s ease-in-out infinite;
          animation: float 2.8s 0.3s ease-in-out infinite;
}
.section-hero .c-icon__rocket > img {
  -webkit-animation: float2 3s ease-in-out infinite;
          animation: float2 3s ease-in-out infinite;
}
.section-hero .c-icon__arrow > img {
  -webkit-animation: float 3.2s 0.55s ease-in-out infinite;
          animation: float 3.2s 0.55s ease-in-out infinite;
}
.section-hero .c-icon__clock > img {
  -webkit-animation: float 3s 0.8s ease-in-out infinite;
          animation: float 3s 0.8s ease-in-out infinite;
}
.section-hero .c-icon__wealth > img {
  -webkit-animation: float2 3.5s 1.05s ease-in-out infinite;
          animation: float2 3.5s 1.05s ease-in-out infinite;
}
.section-hero .c-icon__pig > img {
  -webkit-animation: float 3.2s 0.45s ease-in-out infinite;
          animation: float 3.2s 0.45s ease-in-out infinite;
}
.section-hero .c-icon__cloud-1 {
  -webkit-animation: float2 3.4s 0.9s ease-in-out infinite;
          animation: float2 3.4s 0.9s ease-in-out infinite;
}
.section-hero .c-icon__cloud-2 {
  -webkit-animation: float 3.1s 0.35s ease-in-out infinite;
          animation: float 3.1s 0.35s ease-in-out infinite;
}
.section-hero .c-icon__cloud-3 > img {
  -webkit-animation: float2 3.3s 1.2s ease-in-out infinite;
          animation: float2 3.3s 1.2s ease-in-out infinite;
}
.section-hero .c-icon__stock > img, .section-hero .c-icon__rocket > img, .section-hero .c-icon__arrow > img, .section-hero .c-icon__clock > img, .section-hero .c-icon__wealth > img, .section-hero .c-icon__pig > img, .section-hero .c-icon__cloud-1, .section-hero .c-icon__cloud-2, .section-hero .c-icon__cloud-3 > img {
  will-change: transform;
}
.section-hero .c-icon__tiger, .section-hero .c-icon__pig, .section-hero .c-icon__wealth, .section-hero .c-icon__clock, .section-hero .c-icon__calendar {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}
@media (max-width: 991px) {
  .section-hero {
    padding-top: 84px;
  }
  .section-hero__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 4px;
    padding: 20px 0 80px;
  }
  .section-hero__title {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: min(361.2px, 102.906%);
    aspect-ratio: 361.2/268.738;
  }
  .section-hero__visual {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: min(373.351px, 106.368%);
    aspect-ratio: 373.351/286.176;
  }
  .section-hero__cta {
    top: 78.504%;
    left: 31.243%;
    width: min(136.409px, 37.765%);
    aspect-ratio: 136.409/57.778;
  }
  .section-hero__scroll {
    bottom: 13px;
  }
  .section-hero .c-icon__deco-left-desktop, .section-hero .c-icon__deco-right-desktop {
    display: none;
  }
  .section-hero .c-icon__deco-left-top-mobile, .section-hero .c-icon__deco-left-center-mobile, .section-hero .c-icon__deco-right-center-mobile {
    display: block;
  }
  .section-hero .c-icon__deco-left-top-mobile {
    top: 17px;
    left: 29px;
    width: min(50.2px, 12.872%);
  }
  .section-hero .c-icon__deco-left-center-mobile {
    top: calc(50% - 41.69px);
    left: 26px;
    width: min(55.2px, 14.154%);
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .section-hero .c-icon__deco-right-center-mobile {
    top: calc(50% - 89.35px);
    right: 19.7px;
    width: min(52.535px, 13.471%);
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .section-hero .c-icon__blur-title {
    top: 0;
    left: 15.947%;
    width: min(246px, 68.106%);
  }
  .section-hero .c-icon__title {
    top: 1.116%;
    width: 100%;
    height: 79.606%;
  }
  .section-hero .c-icon__star {
    width: min(18px, 4.983%);
    -webkit-filter: drop-shadow(0 0 1.6px #fff);
            filter: drop-shadow(0 0 1.6px #fff);
  }
  .section-hero .c-icon__star-title-left {
    top: 39.8%;
    left: 11.31%;
  }
  .section-hero .c-icon__star-title-right {
    top: 10.776%;
    left: 79.969%;
  }
  .section-hero .c-icon__blur-visual-left, .section-hero .c-icon__blur-visual-right {
    width: min(250px, 66.961%);
  }
  .section-hero .c-icon__blur-visual-left {
    top: 9.526%;
    left: 0;
  }
  .section-hero .c-icon__blur-visual-right {
    top: 2.886%;
    left: 32.944%;
  }
  .section-hero .c-icon__stock {
    left: 43.851%;
    width: min(47.981px, 12.852%);
  }
  .section-hero .c-icon__rocket {
    top: 6.587%;
    left: 78.891%;
    width: min(70.258px, 18.817%);
  }
  .section-hero .c-icon__arrow {
    top: 11.975%;
    left: 43.851%;
    width: min(89.678px, 24.019%);
  }
  .section-hero .c-icon__clock {
    top: 24.639%;
    left: 68.366%;
    width: min(70.035px, 18.758%);
  }
  .section-hero .c-icon__wealth {
    top: 24.551%;
    left: 43.851%;
    width: min(125.664px, 33.659%);
  }
  .section-hero .c-icon__ladder {
    top: 46.905%;
    left: 4.226%;
    width: min(357.571px, 95.776%);
  }
  .section-hero .c-icon__calendar {
    top: 22.954%;
    left: 5.145%;
    width: min(69.686px, 18.665%);
  }
  .section-hero .c-icon__pig {
    top: 11.818%;
    left: 15.243%;
    width: min(108.528px, 29.069%);
  }
  .section-hero .c-icon__tiger {
    top: 44.311%;
    left: 27.636%;
    width: min(108.528px, 29.069%);
  }
  .section-hero .c-icon__cloud-1 {
    top: 77.445%;
    left: 72.311%;
    width: min(94.248px, 25.244%);
  }
  .section-hero .c-icon__cloud-2 {
    top: 80.353%;
    left: 0.174%;
    width: min(54.342px, 14.555%);
  }
  .section-hero .c-icon__cloud-3 {
    top: 49.102%;
    left: 1.32%;
    width: min(41.455px, 11.103%);
  }
  .section-hero .c-icon__star-visual-1 {
    top: 26.944%;
    left: 35.59%;
  }
  .section-hero .c-icon__star-visual-2 {
    top: 29.59%;
    left: 83.171%;
  }
  .section-hero .c-icon__star-visual-3 {
    top: 58.529%;
    left: 25.798%;
  }
}

@-webkit-keyframes heroMouseScroll {
  0% {
    opacity: 0;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    opacity: 1;
    -webkit-transform: translateY(150%);
            transform: translateY(150%);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(150%);
            transform: translateY(150%);
  }
}

@keyframes heroMouseScroll {
  0% {
    opacity: 0;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    opacity: 1;
    -webkit-transform: translateY(150%);
            transform: translateY(150%);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(150%);
            transform: translateY(150%);
  }
}
@media (min-width: 1280px) and (hover: hover) and (pointer: fine) {
  .section-hero .c-icon__tiger,
  .section-hero .c-icon__pig,
  .section-hero .c-icon__wealth,
  .section-hero .c-icon__clock,
  .section-hero .c-icon__calendar {
    will-change: transform;
  }
}
@media (prefers-reduced-motion: reduce) {
  .section-hero #scroll-circle .dot,
  .section-hero .c-icon__stock > img,
  .section-hero .c-icon__rocket > img,
  .section-hero .c-icon__arrow > img,
  .section-hero .c-icon__clock > img,
  .section-hero .c-icon__wealth > img,
  .section-hero .c-icon__pig > img,
  .section-hero .c-icon__cloud-1,
  .section-hero .c-icon__cloud-2,
  .section-hero .c-icon__cloud-3 > img {
    -webkit-animation: none !important;
            animation: none !important;
  }
  .section-hero .c-icon__tiger,
  .section-hero .c-icon__pig,
  .section-hero .c-icon__wealth,
  .section-hero .c-icon__clock,
  .section-hero .c-icon__calendar {
    -webkit-transform: none !important;
            transform: none !important;
    will-change: auto;
  }
}
.section-task {
  position: relative;
  z-index: 3;
  padding: 80px 20px 120px 20px;
}
@media (max-width: 991px) {
  .section-task {
    padding: 48px 20px 140px 20px;
  }
}
.section-task__container {
  position: relative;
  width: min(1440px, 100%);
  margin: auto;
}
@media (max-width: 991px) {
  .section-task__container {
    max-width: 590px;
  }
}
.section-task__header, .section-task__content {
  position: relative;
  z-index: 1;
}
.section-task__content {
  width: min(1064px, 100%);
  margin: auto;
}
.section-task .c-icon__bg-blue {
  aspect-ratio: 1/1;
}
.section-task .c-icon__bg-blue-task-left {
  width: min(600px, 41.667%);
  top: 391px;
  left: -76px;
}
@media (max-width: 991px) {
  .section-task .c-icon__bg-blue-task-left {
    top: 2%;
    left: -43%;
    width: min(600px, 79.667%);
  }
}
.section-task .c-icon__bg-blue-task-top-right {
  width: min(500px, 34.722%);
  top: -103px;
  right: -14px;
}
.section-task .c-icon__bg-blue-task-bottom-right {
  width: min(500px, 34.722%);
  top: 803px;
  right: -32px;
}
@media (max-width: 991px) {
  .section-task .c-icon__bg-blue-task-bottom-right {
    width: min(500px, 37.722%);
    top: inherit;
    bottom: -6%;
    right: -17%;
  }
}
.section-task .c-icon__clock-top {
  width: min(167px, 11.597%);
  aspect-ratio: 167/177;
  top: -134px;
  left: -37px;
  -webkit-animation: float 3s ease-in-out infinite;
          animation: float 3s ease-in-out infinite;
}
@media (max-width: 991px) {
  .section-task .c-icon__clock-top {
    width: min(90.18px, 26.597%);
    top: -5%;
    left: -10%;
  }
}
.section-task .c-icon__clock-bottom {
  width: min(146px, 12.139%);
  aspect-ratio: 146/178;
  right: -41px;
  bottom: -141px;
  -webkit-animation: float2 3s 1s ease-in-out infinite;
          animation: float2 3s 1s ease-in-out infinite;
}
@media (max-width: 991px) {
  .section-task .c-icon__clock-bottom {
    width: min(102.043px, 39.139%);
    aspect-ratio: 86/105;
    right: -11%;
    bottom: -14%;
  }
}
@media (max-width: 480px) {
  .section-task .c-icon__clock-bottom {
    bottom: -16%;
  }
}
.section-task .c-icon__money {
  width: min(90px, 6.25%);
  aspect-ratio: 90/128;
  top: -9px;
  right: 52px;
  -webkit-animation: float2 3s 0.5s ease-in-out infinite;
          animation: float2 3s 0.5s ease-in-out infinite;
}
@media (max-width: 991px) {
  .section-task .c-icon__money {
    width: min(60.5px, 18%);
    aspect-ratio: 25/36;
    z-index: 2;
    right: -3%;
    top: -0.8%;
  }
}
.section-task .c-icon__cloud-left {
  width: min(140px, 9.722%);
  aspect-ratio: 140/96;
  bottom: 225px;
  left: -19px;
  -webkit-animation: float2 3s 1.5s ease-in-out infinite;
          animation: float2 3s 1.5s ease-in-out infinite;
}
.section-task .c-icon__cloud-right {
  width: min(132px, 9.167%);
  aspect-ratio: 132/84;
  top: 313px;
  right: 68px;
  -webkit-animation: float 3s 0.75s ease-in-out infinite;
          animation: float 3s 0.75s ease-in-out infinite;
}
@media (max-width: 991px) {
  .section-task .c-icon__cloud-right {
    width: min(92px, 27.167%);
    top: 62%;
    right: -7%;
  }
}
@media (max-width: 390px) {
  .section-task .c-icon__cloud-right {
    top: 51%;
    right: -16%;
  }
}
.section-task .c-icon__stock {
  width: min(83px, 5.764%);
  aspect-ratio: 83/77;
  top: calc(50% + 20px);
  left: 42px;
  -webkit-animation: float 3s 0.25s ease-in-out infinite;
          animation: float 3s 0.25s ease-in-out infinite;
}
.section-task .c-icon__tiger-task {
  width: min(160px, 14.111%);
  aspect-ratio: 160/216;
  bottom: -60px;
  left: -110px;
  z-index: 2;
}
@media (max-width: 991px) {
  .section-task .c-icon__tiger-task {
    width: min(106px, 30.29%);
    aspect-ratio: 53/69;
    bottom: -17%;
    left: -4%;
  }
}
.section-task .c-icon__deco-task-left {
  width: min(84.448px, 5.864%);
  aspect-ratio: 84.448/254;
  top: 113px;
  left: 43px;
}
.section-task .c-icon__deco-task-top {
  width: min(89px, 6.181%);
  aspect-ratio: 89/48.822;
  top: -22px;
  left: 247px;
}
@media (max-width: 991px) {
  .section-task .c-icon__deco-task-top {
    width: min(38px, 16.181%);
    top: -2.8%;
    left: 20%;
  }
}
.section-task .c-icon__deco-task-right {
  width: min(101.376px, 7.04%);
  aspect-ratio: 101.376/26.034;
  top: -9px;
  right: 219.624px;
}
.section-task .c-icon__deco-task-right-bottom {
  width: min(91.139px, 6.329%);
  aspect-ratio: 91.139/280;
  right: 32.861px;
  bottom: 241px;
}
.section-task .c-icon__start-task-clock-top, .section-task .c-icon__start-task-clock-bottom, .section-task .c-icon__start-task-money-top, .section-task .c-icon__start-task-money-bottom, .section-task .c-icon__start-task-tiger {
  width: min(24px, 1.667%);
}
@media (max-width: 991px) {
  .section-task .c-icon__start-task-clock-top, .section-task .c-icon__start-task-clock-bottom, .section-task .c-icon__start-task-money-top, .section-task .c-icon__start-task-money-bottom, .section-task .c-icon__start-task-tiger {
    width: min(15px, 41.667%);
  }
}
.section-task .c-icon__start-task-clock-top {
  top: -87px;
  left: 116px;
}
@media (max-width: 991px) {
  .section-task .c-icon__start-task-clock-top {
    top: -3.5%;
    left: 10%;
  }
}
.section-task .c-icon__start-task-clock-bottom {
  right: 77px;
  bottom: 36px;
}
@media (max-width: 991px) {
  .section-task .c-icon__start-task-clock-bottom {
    right: 4%;
    bottom: -6%;
  }
}
@media (max-width: 598px) {
  .section-task .c-icon__start-task-clock-bottom {
    right: 10%;
  }
}
@media (max-width: 320px) {
  .section-task .c-icon__start-task-clock-bottom {
    right: 18%;
  }
}
.section-task .c-icon__start-task-money-top {
  top: -34px;
  right: 109px;
}
@media (max-width: 991px) {
  .section-task .c-icon__start-task-money-top {
    top: -2%;
    right: 6%;
  }
}
.section-task .c-icon__start-task-money-bottom {
  top: 119px;
  right: 61px;
}
@media (max-width: 991px) {
  .section-task .c-icon__start-task-money-bottom {
    top: 6.9%;
    right: 0%;
    z-index: 2;
  }
}
.section-task .c-icon__start-task-tiger {
  bottom: 89px;
  left: -120px;
}
.section-task__title {
  text-align: center;
  width: 100%;
  display: block;
  font-size: 32px;
  font-weight: 700;
  line-height: 125%;
  letter-spacing: 1.28px;
  color: #0094DF;
  margin-bottom: 24px;
}
@media (max-width: 991px) {
  .section-task__title {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: 0.96px;
    margin-bottom: 16px;
  }
}
.section-task .wrap__inner {
  position: relative;
  max-width: 1064px;
  width: 100%;
  border-radius: 32px 60px;
  border: 2px solid #8BD8FE;
  background: #ffffff;
}
@media (max-width: 991px) {
  .section-task .wrap__inner {
    border: 1px solid #8BD8FE;
    border-radius: 16px 40px;
    padding: 20px 16px;
  }
}
.section-task .wrap__inner:first-child {
  margin-bottom: 32px;
}
@media (max-width: 991px) {
  .section-task .wrap__inner:first-child {
    margin-bottom: 16px;
  }
}
.section-task .wrap__inner::before, .section-task .wrap__inner::after {
  position: absolute;
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: -webkit-gradient(linear, left top, right top, from(#B8E7FF), to(#8BD8FE));
  background: linear-gradient(90deg, #B8E7FF 0%, #8BD8FE 100%);
}
.section-task .wrap__inner::before {
  left: 24px;
  top: 24px;
}
@media (max-width: 991px) {
  .section-task .wrap__inner::before {
    left: 20px;
    top: 20px;
  }
}
.section-task .wrap__inner::after {
  right: 24px;
  bottom: 24px;
}
@media (max-width: 991px) {
  .section-task .wrap__inner::after {
    right: 20px;
    bottom: 20px;
  }
}
.section-task__carousel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin: auto;
  padding: 40px 48px;
  overflow: hidden;
}
@media (max-width: 991px) {
  .section-task__carousel {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 0;
  }
}
.section-task__steps {
  max-width: 520px;
  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: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-right: 40px;
}
@media (max-width: 991px) {
  .section-task__steps {
    position: relative;
    width: 100%;
    height: 10vw;
    max-width: none;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    padding: 0% 5% 7% 0;
    margin-right: 0;
    -webkit-box-flex: initial;
        -ms-flex: initial;
            flex: initial;
  }
}
@media (max-width: 640px) {
  .section-task__steps {
    height: 23vw;
  }
}
.section-task__step {
  position: relative;
  cursor: pointer;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  border-bottom: 1px solid #B8E7FF;
  padding-bottom: 20px;
}
@media (max-width: 991px) {
  .section-task__step {
    position: absolute;
    top: 0;
    opacity: 0 !important;
    border-bottom: none;
    padding-bottom: 0;
    padding-right: 0;
    width: 100%;
  }
  .section-task__step.is-active {
    opacity: 1 !important;
  }
}
.section-task__step-label {
  padding: 2px 8px;
  color: #ffffff;
  border-radius: 100px;
  background: #59C6FC;
  margin-bottom: 8px;
  font-size: 13px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%; /* 19.5px */
  letter-spacing: 0.26px;
  display: inline-block;
}
@media (max-width: 598px) {
  .section-task__step-label {
    font-size: 12px;
    margin-bottom: 10px;
  }
}
.section-task__step-title {
  color: #0094DF;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.8px;
  margin-bottom: 4px;
}
@media (max-width: 991px) {
  .section-task__step-title {
    font-size: 16px;
  }
}
@media (max-width: 350px) {
  .section-task__step-title {
    letter-spacing: 0;
    font-size: 15px;
  }
}
.section-task__step-desc {
  color: #0094DF;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.32px;
}
@media (max-width: 991px) {
  .section-task__step-desc {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 0.28px;
  }
}
@media (max-width: 350px) {
  .section-task__step-desc {
    font-size: 13px;
    letter-spacing: 0;
  }
}
.section-task__step-desc b, .section-task__step-desc span {
  color: #FF7575;
}
.section-task__step-desc b {
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 160%;
}
@media (max-width: 991px) {
  .section-task__step-desc b {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.36px;
  }
}
@media (max-width: 350px) {
  .section-task__step-desc b {
    font-size: 15px;
    letter-spacing: 0;
  }
}
.section-task__step-desc span {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.36px;
  font-weight: 500;
}
@media (max-width: 991px) {
  .section-task__step-desc span {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 0.28px;
  }
}
.section-task__swiper {
  max-width: 640px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border-radius: 20px;
  overflow: hidden;
  margin: 0;
}
@media (max-width: 991px) {
  .section-task__swiper {
    border-radius: 0;
    max-width: none;
    width: 100%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    margin-bottom: 4.1666666667vw;
  }
}
@media (max-width: 820px) {
  .section-task__swiper {
    padding: 0;
  }
}
.section-task__swiper .swiper-slide {
  cursor: auto;
}
@media (max-width: 991px) {
  .section-task__swiper .swiper-slide {
    width: 90%;
  }
}
.section-task__swiper .swiper-slide img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 20px;
}
@media (max-width: 991px) {
  .section-task__swiper .swiper-slide img {
    border-radius: 10px;
  }
}
.section-task__pagination {
  margin-top: 20px;
  text-align: center;
}
.section-task__progress {
  -webkit-transform-origin: left;
          transform-origin: left;
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
}
@media (max-width: 991px) {
  .section-task__progress {
    display: none;
  }
}
.section-task .swiper-pagination-bullet {
  background: #B8E7FF;
  border-radius: 100px;
}
.section-task .swiper-pagination-bullet-active::before {
  width: 32px;
  background: #04A5F6;
  border-radius: 100px;
}
.section-task .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 6px;
}
.section-task .swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: 1px;
}
@media (max-width: 991px) {
  .section-task .swiper-pagination-bullets.swiper-pagination-horizontal {
    position: static;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    margin: 24px auto 0 auto;
  }
}
.section-task__left {
  color: #0094DF;
  width: min(475px, 50%);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.32px;
}
@media (max-width: 991px) {
  .section-task__left {
    width: 100%;
  }
}
.section-task__left-title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.96px;
  margin-bottom: 8px;
}
@media (max-width: 991px) {
  .section-task__left-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.6;
    letter-spacing: 0.8px;
  }
}
.section-task__left-desc {
  margin-bottom: 8px;
}
.section-task__left-desc b, .section-task__left-desc span {
  color: #FF7575;
}
.section-task__left-desc b {
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 160%;
}
@media (max-width: 991px) {
  .section-task__left-desc b {
    display: block;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.36px;
  }
}
.section-task__left-desc span {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.32px;
}
.section-task__right {
  position: relative;
  width: min(326px, 40%);
  margin-top: -3.598%;
  top: 8px;
}
@media (max-width: 991px) {
  .section-task__right {
    position: relative;
    width: min(278px, 88.7%);
    margin: 16px auto 0 auto;
    top: 0;
  }
}
.section-task__right .c-icon__start-1 {
  top: 73%;
}
.section-task__right .c-icon__start-2 {
  right: 30%;
}
.section-task__right .c-icon__start-3 {
  right: 4%;
  bottom: 46%;
}

.section-task__step.is-active .section-task__progress {
  background-color: #04A5F6;
  -webkit-animation: 5s linear scaleLine;
          animation: 5s linear scaleLine;
}

.section-task__step:hover .section-task__progress {
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}

.section-register {
  position: relative;
  z-index: 3;
}
.section-register__container {
  border-radius: 200px 60px 60px 60px;
  background: -webkit-gradient(linear, left top, left bottom, from(#2DB6FB), color-stop(50%, #59C6FC), color-stop(85%, #8BD8FE), to(#B8E7FF));
  background: linear-gradient(180deg, #2DB6FB 0%, #59C6FC 50%, #8BD8FE 85%, #B8E7FF 100%);
  position: relative;
  width: 100%;
  margin: auto;
}
@media (max-width: 991px) {
  .section-register__container {
    border-radius: 80px 32px 32px 32px;
  }
}
.section-register__container-bg {
  padding: 120px 80px 180px 80px;
  background-image: url(../images/register/bg_line.svg);
  background-position: 43% 31px;
  background-repeat: no-repeat;
}
@media (max-width: 991px) {
  .section-register__container-bg {
    padding: 10.26% 20px 14.619% 20px;
    background-position: 27% 102%;
    background-size: 171%;
  }
}
.section-register__title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 2.88px;
  color: #ffffff;
  margin-bottom: 10px;
}
@media (max-width: 991px) {
  .section-register__title {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 1.28px;
    text-align: center;
    margin-bottom: 4px;
  }
}
.section-register__box {
  width: min(1064px, 100%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto 0 auto;
  position: relative;
  z-index: 1;
}
@media (max-width: 991px) {
  .section-register__box {
    display: block;
    border-radius: 24px;
    overflow: hidden;
    max-width: 500px;
  }
}
.section-register__box b {
  display: block;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.8px;
  color: #ffffff;
}
@media (max-width: 991px) {
  .section-register__box b {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0.36px;
  }
}
.section-register__left {
  position: relative;
  width: min(301px, 36%);
}
@media (max-width: 991px) {
  .section-register__left {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
  }
}
.section-register__right {
  width: min(739px, 65%);
  padding: 40px 48px;
  border-radius: 32px 60px;
  background: #ffffff;
}
@media (max-width: 991px) {
  .section-register__right {
    width: 100%;
    border: none;
    border-radius: 16px 40px;
    padding: 20px 16px;
  }
}
.section-register__right h3 {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.96px;
  margin-bottom: 24px;
}
.section-register__img {
  position: absolute;
  bottom: 5%;
  width: min(215px, 100%);
  margin: 0;
}
.section-register__img .c-icon__start-1 {
  top: 1%;
  left: 21%;
}
@media (max-width: 991px) {
  .section-register__img .c-icon__start-1 {
    top: 4%;
    left: 7%;
  }
}
.section-register__img .c-icon__start-2 {
  top: 17%;
  right: 8%;
}
@media (max-width: 991px) {
  .section-register__img .c-icon__start-2 {
    top: 14%;
    right: 8%;
  }
}
.section-register__img .c-bag {
  -webkit-animation: float2 3s 0.5s ease-in-out infinite;
          animation: float2 3s 0.5s ease-in-out infinite;
}
@media (max-width: 991px) {
  .section-register__img {
    display: none;
  }
  .section-register__img.mb-use {
    width: min(110px, 31.5%);
    position: relative;
    margin-top: 10px;
  }
}
.section-register .c-btn-cta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 1023px) {
  .section-register .c-btn-cta {
    display: block;
  }
}
.section-register .c-btn-cta .c-btn {
  width: min(304px, 45%);
  height: 86px;
}
@media (max-width: 1023px) {
  .section-register .c-btn-cta .c-btn {
    width: 220px;
    height: 69px;
    margin: 0 auto 0 auto;
  }
}
.section-register .c-btn-cta .c-btn:nth-child(1) {
  margin-right: 16px;
}
@media (max-width: 1023px) {
  .section-register .c-btn-cta .c-btn:nth-child(1) {
    margin-right: auto;
    margin-bottom: 16px;
  }
}
.section-register .c-icon__deco-1 {
  width: min(83px, 5.9%);
  left: 2%;
  bottom: 20%;
}
@media (max-width: 991px) {
  .section-register .c-icon__deco-1 {
    display: none;
  }
}
.section-register .c-icon__deco-2 {
  width: min(222px, 15.58%);
  right: 3%;
  top: 9%;
}
@media (max-width: 991px) {
  .section-register .c-icon__deco-2 {
    display: none;
  }
}
.section-register .c-icon__deco-mb {
  display: none;
}
@media (max-width: 991px) {
  .section-register .c-icon__deco-mb {
    width: min(96.9px, 25%);
    right: 7%;
    bottom: 12%;
    display: block;
  }
}

.form-group {
  margin-top: 14px;
}
.form-group:nth-child(2) {
  margin-top: 0;
}
@media (max-width: 991px) {
  .form-group {
    margin-top: 0;
  }
}
.form-group:first-child {
  margin-top: 0;
}
.form-group label {
  color: #0094DF;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.36px;
  display: block;
  margin-bottom: 12px;
}
@media (max-width: 991px) {
  .form-group label {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0.32px;
    margin-bottom: 8px;
  }
}
.form-group label sup {
  position: relative;
  top: 3px;
  left: -2px;
  color: #FF7575;
}
.form-group input[type=text] {
  font-family: Manrope;
  width: 100%;
  padding: 14.5px 20px;
  border: 2px solid #59C6FC;
  border-radius: 8px;
  font-size: 16px;
  -webkit-transition: border-color 0.3s ease;
  transition: border-color 0.3s ease;
}
@media (max-width: 991px) {
  .form-group input[type=text] {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0.36px;
    padding: 14px 20px;
    border-radius: 12px;
  }
}
.form-group input[type=text]:focus {
  -webkit-transition: 0.45s;
  transition: 0.45s;
  outline: none;
  border: 2px solid #2DB6FB;
  -webkit-box-shadow: 0px 0px 0px 2px #B8E7FF;
          box-shadow: 0px 0px 0px 2px #B8E7FF;
}
.form-group input[type=text]::-webkit-input-placeholder {
  color: #bdbdbd;
}
.form-group input[type=text]::-moz-placeholder {
  color: #bdbdbd;
}
.form-group input[type=text]:-ms-input-placeholder {
  color: #bdbdbd;
}
.form-group input[type=text]::-ms-input-placeholder {
  color: #bdbdbd;
}
.form-group input[type=text]::placeholder {
  color: #bdbdbd;
}
.form-group .input-group {
  position: relative;
}
.form-group .btn-clear {
  position: absolute;
  right: 12px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border: none;
  background: transparent url("../images/register/icon_remove.svg") center/24px no-repeat;
  background-size: 24px 24px;
  border-radius: 8px;
  cursor: pointer;
  padding: 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;
}
.form-group .btn-clear[hidden] {
  display: none;
}
.form-group .form-error {
  margin-top: 6px;
  min-height: 18px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.28px;
  color: #F84F4F;
}
@media (max-width: 991px) {
  .form-group .form-error {
    margin-top: 2px;
    font-size: 13px;
  }
}
.form-group .form-error.is-error::before {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  content: "";
  width: 19px;
  height: 19px;
  margin-right: 4px;
  background: url(../images/register/Icon_error.svg) no-repeat;
  background-size: contain;
  position: relative;
  top: 4px;
}
@media (max-width: 991px) {
  .form-group .form-error.is-error::before {
    top: 3px;
    width: 16px;
    height: 16px;
  }
}
.form-group input[aria-invalid=true] {
  border-color: #F84F4F !important;
  -webkit-box-shadow: 0 0 0 3px rgba(248, 79, 79, 0.15);
          box-shadow: 0 0 0 3px rgba(248, 79, 79, 0.15);
}

.verify-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
}
@media (max-width: 1023px) {
  .verify-group {
    display: block;
  }
}
.verify-group input {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.verify-group .verify-code {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
@media (max-width: 1023px) {
  .verify-group .verify-code {
    margin-top: 12px;
  }
  .verify-group .verify-code img {
    max-width: 144px;
  }
}
.verify-group .verify-code .btn-refresh {
  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;
  width: 44px;
  height: 44px;
  border: none;
  background: none;
  cursor: pointer;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}

.checkbox-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 8px;
  margin-bottom: 12px;
}
.checkbox-group input[type=checkbox] {
  margin-top: 4px;
  width: 20px;
  height: 20px;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: inline-block;
  border-radius: 4px;
  border: 2px solid #59C6FC;
  background: #ffffff;
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 20px;
          flex: 0 0 20px;
  -webkit-transition: background-color 0.18s ease, border-color 0.18s ease, -webkit-box-shadow 0.18s ease;
  transition: background-color 0.18s ease, border-color 0.18s ease, -webkit-box-shadow 0.18s ease;
  transition: background-color 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
  transition: background-color 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, -webkit-box-shadow 0.18s ease;
}
.checkbox-group input[type=checkbox]:focus {
  outline: none;
  -webkit-box-shadow: 0 0 0 4px rgba(89, 198, 252, 0.12);
          box-shadow: 0 0 0 4px rgba(89, 198, 252, 0.12);
}
.checkbox-group input[type=checkbox]::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 12px;
  border: 2px solid transparent;
  border-left: none;
  border-top: none;
  -webkit-transform: translate(-50%, -65%) rotate(45deg);
          transform: translate(-50%, -65%) rotate(45deg);
  opacity: 0;
  -webkit-transition: opacity 0.12s ease, border-color 0.12s ease;
  transition: opacity 0.12s ease, border-color 0.12s ease;
}
.checkbox-group input[type=checkbox]:checked {
  background: #04A5F6;
  border-color: #04A5F6;
}
.checkbox-group input[type=checkbox]:checked::after {
  border-color: #ffffff;
  opacity: 1;
}
.checkbox-group input[type=checkbox]:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.checkbox-group label {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.32px;
  color: #616161;
}
.checkbox-group label a {
  color: #0094DF;
  text-decoration: underline;
  font-weight: 400;
}

.btn--submit {
  width: min(159px, 100%);
  padding: 0;
  border: none;
  background: none;
  float: right;
  cursor: pointer;
}
.btn--submit span {
  width: 100%;
  height: 56px;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.8px;
}
@media (max-width: 991px) {
  .btn--submit {
    width: min(134px, 100%);
    float: none;
    margin: 8px auto 0 auto;
    display: block;
  }
  .btn--submit span {
    height: 51px;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0.36px;
  }
}

.section-service {
  position: relative;
  z-index: 3;
  background: #E5F6FF;
  padding: 100px 0 140px 0;
}
@media (max-width: 991px) {
  .section-service {
    padding: 80px 0 130px 0;
  }
}
.section-service__container {
  position: relative;
  width: min(1440px, 100%);
  padding: 0 20px;
  margin: auto;
}
@media (max-width: 991px) {
  .section-service__container {
    max-width: 500px;
  }
}
.section-service__header {
  position: relative;
  z-index: 1;
}
.section-service__content {
  position: relative;
  width: min(1064px, 100%);
  margin: auto;
  z-index: 1;
}
.section-service .c-icon__bg-blue {
  aspect-ratio: 1/1;
}
.section-service .c-icon__bg-blue-service-left {
  width: min(600px, 41.667%);
  top: 258px;
  left: -44px;
}
@media (max-width: 991px) {
  .section-service .c-icon__bg-blue-service-left {
    width: min(500px, 55.722%);
    bottom: -6%;
    left: -23%;
    top: initial;
    right: initial;
  }
}
.section-service .c-icon__bg-blue-service-top-right {
  width: min(500px, 34.722%);
  top: -87px;
  right: -36px;
}
@media (max-width: 991px) {
  .section-service .c-icon__bg-blue-service-top-right {
    width: min(500px, 55.722%);
    top: 0%;
    left: -19%;
    right: initial;
  }
}
.section-service .c-icon__bg-blue-service-bottom-right {
  width: min(500px, 34.722%);
  top: 720px;
  right: -42px;
}
@media (max-width: 991px) {
  .section-service .c-icon__bg-blue-service-bottom-right {
    width: min(500px, 55.722%);
    top: 21%;
    right: -13%;
  }
}
.section-service .c-icon__clock {
  width: min(136px, 9.44%);
  top: -18px;
  left: -22px;
  -webkit-animation: float 3s ease-in-out infinite;
          animation: float 3s ease-in-out infinite;
}
@media (max-width: 991px) {
  .section-service .c-icon__clock {
    width: min(82px, 21.44%);
    top: -0.8%;
    left: -6%;
  }
}
.section-service .c-icon__rocket {
  width: min(164px, 11.389%);
  top: -125px;
  right: 27px;
  -webkit-animation: float2 3s ease-in-out infinite;
          animation: float2 3s ease-in-out infinite;
}
@media (max-width: 991px) {
  .section-service .c-icon__rocket {
    width: min(96px, 25.389%);
    top: -4.5%;
    right: -3%;
  }
}
.section-service .c-icon__deco-top-left {
  width: min(89px, 6.181%);
  top: -42px;
  left: 247px;
}
@media (max-width: 991px) {
  .section-service .c-icon__deco-top-left {
    display: none;
  }
}
.section-service .c-icon__deco-top-right {
  width: min(102px, 7.084%);
  top: -29px;
  right: 219px;
}
.section-service .c-icon__deco-top-right-mb {
  display: none;
}
@media (max-width: 991px) {
  .section-service .c-icon__deco-top-right {
    display: none;
  }
  .section-service .c-icon__deco-top-right-mb {
    display: block;
    width: min(46px, 21.181%);
    top: -2%;
    right: 20%;
  }
}
.section-service .c-icon__deco-center-left {
  width: min(85px, 5.903%);
  top: 244px;
  left: 38px;
}
@media (max-width: 991px) {
  .section-service .c-icon__deco-center-left {
    display: none;
  }
}
.section-service .c-icon__deco-bottom-right {
  width: min(92px, 6.389%);
  right: 33px;
  bottom: 221px;
}
.section-service .c-icon__cloud-1 {
  width: min(130px, 9.028%);
  aspect-ratio: 130/83;
  top: 249px;
  right: 72px;
  -webkit-animation: float 3s 1s ease-in-out infinite;
          animation: float 3s 1s ease-in-out infinite;
}
@media (max-width: 991px) {
  .section-service .c-icon__cloud-1 {
    width: min(92px, 24.375%);
    aspect-ratio: 46/29;
    top: 23.5%;
    right: -8%;
  }
}
.section-service .c-icon__cloud-2 {
  width: min(135px, 9.375%);
  aspect-ratio: 135/92;
  bottom: 172px;
  left: -19px;
  -webkit-animation: float 3s ease-in-out infinite;
          animation: float 3s ease-in-out infinite;
}
@media (max-width: 991px) {
  .section-service .c-icon__cloud-2 {
    width: min(93.866px, 24.375%);
    aspect-ratio: 86/59;
    bottom: 21.5%;
    left: -7%;
  }
}
.section-service .c-icon__arrow {
  width: min(98.6px, 6.848%);
  aspect-ratio: 98.6/61.2;
  top: calc(50% + 83.6px);
  left: 38.5px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-animation: float2 3s 1s ease-in-out infinite;
          animation: float2 3s 1s ease-in-out infinite;
}
@media (max-width: 991px) {
  .section-service .c-icon__arrow {
    display: none;
  }
}
.section-service .c-icon__tiger {
  width: min(189px, 15%);
  aspect-ratio: 189/211;
  bottom: -113px;
  left: -80px;
  z-index: 2;
  -webkit-animation: float2 3s ease-in-out infinite;
          animation: float2 3s ease-in-out infinite;
}
@media (max-width: 991px) {
  .section-service .c-icon__tiger {
    width: min(125px, 32.052%);
    aspect-ratio: 107/113;
    bottom: -6%;
    left: -6%;
  }
}
.section-service .c-icon__pig {
  width: min(153px, 10.625%);
  aspect-ratio: 153/251;
  right: -5px;
  bottom: -118px;
  -webkit-animation: float 3s 0.5s ease-in-out infinite;
          animation: float 3s 0.5s ease-in-out infinite;
}
@media (max-width: 991px) {
  .section-service .c-icon__pig {
    width: min(101px, 25.899%);
    aspect-ratio: 101/166;
    right: -3%;
    bottom: -6%;
  }
}
.section-service .c-icon__start-service-clock, .section-service .c-icon__start-service-tiger, .section-service .c-icon__start-service-pig {
  width: min(24px, 1.667%);
}
@media (max-width: 991px) {
  .section-service .c-icon__start-service-clock, .section-service .c-icon__start-service-tiger, .section-service .c-icon__start-service-pig {
    width: min(24px, 3.667%);
  }
}
.section-service .c-icon__start-service-clock {
  top: 21px;
  left: 116px;
}
@media (max-width: 991px) {
  .section-service .c-icon__start-service-clock {
    top: -0.5%;
    left: 9%;
  }
}
.section-service .c-icon__start-service-tiger {
  bottom: 48px;
  left: -90px;
}
@media (max-width: 991px) {
  .section-service .c-icon__start-service-tiger {
    bottom: 0;
    left: -8%;
  }
}
.section-service .c-icon__start-service-pig {
  right: 99px;
  bottom: 53px;
}
.section-service__cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
}
.section-service__cards .service__cards {
  position: relative;
  border-radius: 32px 60px;
  border: 2px solid #8BD8FE;
  background: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 32px 24px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 522px;
  width: 49%;
  color: #0094DF;
}
@media (max-width: 1279px) {
  .section-service__cards .service__cards {
    width: 48.5%;
  }
}
@media (max-width: 991px) {
  .section-service__cards .service__cards {
    width: 100%;
    border-radius: 16px 40px;
    gap: 16px;
  }
}
.section-service__cards .service__cards:nth-child(1) .c-icon__start-1 {
  bottom: 12%;
  left: 16%;
}
.section-service__cards .service__cards:nth-child(1) .c-icon__start-2 {
  top: 52%;
  right: 17%;
}
.section-service__cards .service__cards:nth-child(2) .c-icon__start-1 {
  top: 15%;
  left: 10%;
}
.section-service__cards .service__cards:nth-child(2) .c-icon__start-2 {
  top: 44%;
  right: 15%;
}
.section-service__cards .service__cards:nth-child(3) .c-icon__start-1 {
  top: 13%;
  left: 9%;
}
.section-service__cards .service__cards:nth-child(3) .c-icon__start-2 {
  top: 24%;
  right: 17%;
}
.section-service__cards .service__cards:nth-child(4) .c-icon__start-1 {
  top: 13%;
  left: 9%;
}
.section-service__cards .service__cards:nth-child(4) .c-icon__start-2 {
  top: 23%;
  right: 14%;
}
.section-service__cards .service__cards::before, .section-service__cards .service__cards::after {
  position: absolute;
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: -webkit-gradient(linear, left top, right top, from(#B8E7FF), to(#8BD8FE));
  background: linear-gradient(90deg, #B8E7FF 0%, #8BD8FE 100%);
}
.section-service__cards .service__cards::before {
  left: 20px;
  top: 20px;
}
@media (max-width: 991px) {
  .section-service__cards .service__cards::before {
    left: 16px;
    top: 16px;
  }
}
.section-service__cards .service__cards::after {
  right: 20px;
  bottom: 20px;
}
@media (max-width: 991px) {
  .section-service__cards .service__cards::after {
    right: 16px;
    bottom: 16px;
  }
}
.section-service__cards .service__cards-img {
  position: relative;
  max-width: 340px;
  width: 80%;
  margin: 0 auto 8px auto;
}
.section-service__cards .service__cards-time {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.32px;
  margin-bottom: 8px;
  color: #2DB6FB;
}
@media (max-width: 991px) {
  .section-service__cards .service__cards-time {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.6;
    letter-spacing: 0.28px;
    margin-bottom: 4px;
  }
}
.section-service__cards .service__cards-title {
  font-size: 32px;
  font-weight: 700;
  line-height: 125%;
  letter-spacing: 1.28px;
  margin-bottom: 8px;
}
@media (max-width: 991px) {
  .section-service__cards .service__cards-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: 0.96px;
    margin-bottom: 4px;
  }
}
.section-service__cards .service__cards-title span {
  font-size: 34px;
}
@media (max-width: 991px) {
  .section-service__cards .service__cards-title span {
    font-size: 26px;
  }
}
.section-service__cards .service__cards-desc {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.36px;
  min-height: 54px;
  margin-bottom: 12px;
  text-align: center;
}
@media (max-width: 991px) {
  .section-service__cards .service__cards-desc {
    height: auto;
    min-height: initial;
  }
}

.section-notice {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.28px;
  position: relative;
  padding: 60px 80px;
  border-radius: 60px 60px 0 0;
  background: #2c2c2c;
  color: #ffffff;
}
@media (max-width: 1023px) {
  .section-notice {
    padding: 40px 20px;
    border-radius: 40px 40px 0 0;
  }
}
.section-notice__container {
  max-width: 1080px;
  margin: 0 auto;
}
.section-notice__content {
  overflow: hidden;
  -webkit-transition: height 0.3s ease;
  transition: height 0.3s ease;
}
.section-notice__title {
  text-align: center;
  font-size: 32px;
  color: #ffffff;
  font-style: normal;
  font-weight: 700;
  line-height: 125%;
  letter-spacing: 1.28px;
  text-transform: capitalize;
  margin-bottom: 20px;
}
.section-notice__btn {
  cursor: pointer;
  margin: 24px auto 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: none;
  background: none;
  color: #FEDA6C;
  font-size: 18px;
  font-weight: 500;
  line-height: 150%; /* 27px */
  letter-spacing: 0.36px;
}
.section-notice__btn::before {
  content: "閱讀更多";
  display: block;
  margin-right: 8px;
}
.section-notice__btn::after {
  width: 16px;
  height: 10px;
  content: "";
  content: "";
  display: block;
  background-image: url(../images/notice/icon-arrw.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.section-notice__btn.is-expanded::before {
  content: "收起";
}
.section-notice__btn.is-expanded::after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.notice-group {
  margin-top: 8px;
}
.notice-group:first-child {
  margin-top: 0;
}
.notice-group__title {
  font-size: 32px;
  font-weight: 700;
  line-height: 125%;
  letter-spacing: 2.56px;
  text-transform: capitalize;
  color: #ffffff;
  text-align: center;
  margin-bottom: 20px;
}
@media (max-width: 1439px) {
  .notice-group__title {
    font-size: 24px;
    line-height: 140%;
    letter-spacing: 1.92px;
  }
}

.notice-list {
  text-align: justify;
}
.notice-list li {
  margin-bottom: 8px;
}
.notice-list li:last-child {
  margin-bottom: 0;
}
.notice-list li a {
  color: #FEDA6C;
  text-decoration: underline;
}
.notice-list__decimal {
  padding-left: 24px;
}
@media (max-width: 1023px) {
  .notice-list__decimal {
    padding-left: 19px;
  }
}
.notice-list__decimal li {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 22.4px */
  letter-spacing: 0.28px;
  text-transform: capitalize;
  list-style: decimal;
}
.notice-list__prefix li {
  font-size: 14px;
  font-weight: 400;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.notice-list__prefix li span {
  width: calc(100% - 12.5px);
}
.notice-list__prefix li::before {
  content: "※";
  margin-right: 4px;
}