@font-face {
  font-family: Roboto;
  src: url(/font/Roboto-Thin.ttf);
  font-weight: 100;
}

@font-face {
  font-family: Roboto;
  src: url(/font/Roboto-Light.ttf);
  font-weight: 300;
}

@font-face {
  font-family: Roboto;
  src: url(/font/Roboto-Regular.ttf);
  font-weight: 400;
}

@font-face {
  font-family: Roboto;
  src: url(/font/Roboto-Medium.ttf);
  font-weight: 500;
}

@font-face {
  font-family: Roboto;
  src: url(/font/Roboto-Bold.ttf);
  font-weight: 700;
}

@font-face {
  font-family: Roboto;
  src: url(/font/Roboto-Black.ttf);
  font-weight: 900;
}

@keyframes pinBtnAnima {
  0% {
    background-position: 12px 50%;
  }
  50% {
    background-position: 20px 50%;
  }
  100% {
    background-position: 12px 50%;
  }
}

@keyframes HighlightBtnAnima {
  0% {
    margin-left: 26px;
  }
  50% {
    margin-left: 32px;
  }
  100% {
    margin-left: 26px;
  }
}

main {
  padding: 32px 0 0;
  overflow: hidden;
  max-width: 100%;
}

@media screen and (max-width: 1279px) {
  main {
    padding: 0;
  }
}

.wrapper--video-slider {
  max-width: 1368px;
  position: relative;
}

.home-pin-link {
  display: inline-block;
  font-weight: bold;
  margin: 1.6rem 0 0;
  position: relative;
  color: #000;
}

.home-pin-link span {
  display: inline-block;
  position: relative;
  vertical-align: middle;
  margin-left: 66px;
  margin-right: 24px;
  z-index: 1;
  line-height: 48px;
  font-size: 1rem;
}

@media screen and (max-width: 479px) {
  .home-pin-link span {
    line-height: 36px;
    margin-left: 54px;
    margin-right: 20px;
    font-size: 0.875rem;
  }
}

.home-pin-link:before {
  content: "";
  background-image: url(/images/icon/highlight-link-arrow-right-b.svg);
  display: inline-block;
  width: 48px;
  height: 48px;
  background-position: 12px 50%;
  background-size: 24px 24px;
  background-repeat: no-repeat;
  vertical-align: middle;
  border-radius: 24px;
  background-color: #06f786;
  transition: all 0.3s ease;
  position: absolute;
  z-index: 0;
}

@media screen and (max-width: 479px) {
  .home-pin-link:before {
    width: 36px;
    height: 36px;
    background-size: 18px 18px;
    background-position: 9px 50%;
  }
}

.home-pin-link:hover {
  color: #000;
}

.home-pin-link:hover:before {
  width: 100% !important;
  animation-name: pinBtnAnima;
  animation-delay: 0.3s;
  animation-duration: 0.8s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
}

.home-pin-link:hover span {
  text-decoration: underline;
}

.theme-cny .home-banner {
  background-image: url(/images/home_banner_bg_CNY.png);
  background-position: center left;
  background-repeat: no-repeat;
  background-size: auto 90%;
}

.theme-xmas .home-banner {
  background-image: url(/images/home_banner_bg_Xmas.png);
  background-position: center left;
  background-repeat: no-repeat;
  background-size: auto 100%;
}

.home-banner > .wrapper {
  max-width: 1600px;
  padding-right: 0;
  position: relative;
}

@media screen and (max-width: 767px) {
  .home-banner > .wrapper {
    padding-left: 0;
  }
}

.home-banner__slide {
  display: flex;
  justify-content: flex-end;
  align-items: stretch;
}

@media screen and (max-width: 767px) {
  .home-banner__slide {
    flex-direction: column;
    height: 100%;
  }
}

.home-banner__image {
  line-height: 0;
  opacity: 0;
  transform-origin: center;
  transform: scale(0.6);
  transition-delay: 0.5s;
  padding-bottom: 60%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

@media screen and (min-width: 767px) {
  .home-banner__image {
    min-height: 475px;
  }
}

.swiper-slide-active .home-banner__image {
  transition: all 1s ease;
  opacity: 1;
  transform: scale(1);
}

.home-banner__left {
  flex-grow: 1;
  margin-left: 6%;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 340px;
  margin-right: 12px;
  flex-shrink: 0;
}

@media screen and (max-width: 1279px) {
  .home-banner__left {
    width: 310px;
    min-width: initial;
    margin-left: 0;
    padding-right: 12px;
  }
}

@media screen and (max-width: 767px) {
  .home-banner__left {
    width: auto;
    padding: 0 24px;
  }
}

.home-banner__right {
  max-width: 920px;
  background-color: #fff;
  position: relative;
}

@media screen and (min-width: 768px) {
  .home-banner__right {
    flex-basis: 70%;
    flex-grow: 1;
    flex-shrink: 1;
  }
}

.home-banner__txtarea {
  display: inline-block;
  max-width: 400px;
  width: 100%;
  text-align: left;
  position: relative;
  opacity: 0;
  top: 64px;
}

.swiper-slide-active .home-banner__txtarea {
  transition: all 1s ease;
  opacity: 1;
  top: 0;
}

@media screen and (max-width: 767px) {
  .home-banner__txtarea {
    max-width: 100%;
    min-height: 320px;
    padding: 40px 0;
    display: block;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
  }
}

@media screen and (max-width: 479px) {
  .home-banner__txtarea {
    min-height: 280px;
  }
}

.home-banner__txtarea > b {
  font-size: 3.5rem;
  color: #000;
  display: block;
}

@media screen and (max-width: 1279px) {
  .home-banner__txtarea > b {
    font-size: 2.75rem;
  }
}

@media screen and (max-width: 479px) {
  .home-banner__txtarea > b {
    font-size: 2rem;
  }
}

.home-banner__control {
  text-align: center;
  margin-top: -32px;
  font-size: 0;
}

@media screen and (max-width: 991px) {
  .home-banner__control {
    margin-left: 20%;
  }
}

@media screen and (max-width: 767px) {
  .home-banner__control {
    margin-left: 0;
    margin-top: -27px;
    position: relative;
    text-align: right;
    bottom: 60vw;
  }
}

.home-banner__prev, .home-banner__next {
  display: inline-flex;
  position: relative;
  top: auto;
  bottom: auto;
  left: auto;
  right: auto;
  margin: 0 6px;
  color: #000;
  width: 75px;
  height: 75px;
  text-align: center;
  background-color: #06f786;
  justify-content: center;
  align-items: center;
  background-size: 90%;
  background-repeat: no-repeat;
  background-position: center;
}

.home-banner__prev:hover, .home-banner__next:hover {
  background-color: #3955b4;
}

.home-banner__prev:after, .home-banner__next:after {
  display: none;
  font-size: 32px;
}

@media screen and (max-width: 1279px) {
  .home-banner__prev, .home-banner__next {
    width: 54px;
    height: 54px;
    margin: 0 4px 0 0;
  }
  .home-banner__prev:after, .home-banner__next:after {
    font-size: 27px;
  }
}

.home-banner__prev {
  background-image: url(/images/icon/slider-arrow-left-b.svg);
}

.home-banner__prev:hover {
  background-image: url(/images/icon/slider-arrow-left-w.svg);
}

.home-banner__next {
  background-image: url(/images/icon/slider-arrow-right-b.svg);
}

.home-banner__next:hover {
  background-image: url(/images/icon/slider-arrow-right-w.svg);
}

.home-banner__highlight {
  display: inline-block;
  position: relative;
}

.home-banner__highlight:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 4px;
  left: 0;
  right: 0;
  background-color: #ff6600;
  height: 24px;
  width: auto;
  z-index: -1;
}

@media screen and (max-width: 1279px) {
  .home-banner__highlight:after {
    height: 18px;
  }
}

@media screen and (max-width: 991px) {
  .home-banner__highlight:after {
    height: 12px;
  }
}

.home-banner__pagination {
  position: absolute;
  bottom: -2px;
  right: 24px;
  font-size: 0;
  opacity: 0;
}

@media screen and (max-width: 767px) {
  .home-banner__pagination {
    bottom: 30px;
    right: 12px;
  }
}

.swiper-slide-active .home-banner__pagination {
  opacity: 0.6;
}

.home-banner__pagination-index, .home-banner__pagination-total {
  padding: 12px 16px;
  display: block;
  font-size: 1rem;
  line-height: 1;
  text-align: center;
  color: #000;
}

@media screen and (max-width: 767px) {
  .home-banner__pagination-index, .home-banner__pagination-total {
    font-size: 0.875rem;
    padding: 10px 12px;
  }
}

.home-banner__pagination-index {
  border-bottom: 1px solid #000;
}

@media screen and (min-width: 640px) {
  .home-banner__pagination-total {
    padding-bottom: 0;
  }
}

.home-banner__pause-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  bottom: calc(50% - 15px);
  left: -42px;
  width: 18px;
  height: 18px;
  cursor: pointer;
}

@media screen and (max-width: 767px) {
  .home-banner__pause-btn {
    left: -46px;
  }
}

.home-banner__pause-btn:before, .home-banner__pause-btn:after {
  content: "";
  display: inline-block;
  border-left: 6px solid grey;
  width: 0;
  height: 18px;
  transition: all 0.5s ease;
}

.home-banner__pause-btn.active:after {
  opacity: 0;
}

.home-banner__pause-btn.active:before {
  height: 0;
  border: 9px solid transparent;
  border-right: 0 solid grey;
  border-left: 16px solid grey;
}

.home-banner__pause-btn:focus {
  outline: 2px #000 solid;
  outline-offset: 1px;
}

.home-banner__video-btn {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.home-banner__video-btn:after {
  background-size: 120px auto;
}

@media screen and (max-width: 479px) {
  .home-banner__video-btn:after {
    background-size: 80px auto;
  }
}

.home-welcome > .wrapper {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
}

@media screen and (min-width: 768px) {
  .home-welcome > .wrapper {
    padding: 72px 0;
  }
}

@media screen and (max-width: 1279px) {
  .home-welcome > .wrapper {
    justify-content: center;
  }
}

@media screen and (max-width: 767px) {
  .home-welcome > .wrapper {
    padding-top: 48px;
    padding-bottom: 32px;
  }
}

@media screen and (max-width: 479px) {
  .home-welcome > .wrapper {
    padding-top: 48px;
    align-items: flex-start;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}

.home-welcome__right {
  flex-basis: 62%;
  z-index: 1;
}

@media screen and (min-width: 1280px) {
  .home-welcome__right {
    max-width: 756px;
  }
}

@media screen and (max-width: 1279px) {
  .home-welcome__right {
    flex-basis: 70%;
    flex-grow: 1;
    max-width: 760px;
  }
}

@media screen and (max-width: 640px) {
  .home-welcome__right {
    flex-basis: 100%;
  }
}

.home-welcome__left {
  line-height: 0;
  margin-right: 64px;
  z-index: 1;
}

@media screen and (max-width: 1279px) {
  .home-welcome__left {
    margin-left: 24px;
    margin-right: 24px;
  }
}

@media screen and (max-width: 767px) {
  .home-welcome__left {
    flex-basis: 120px;
    margin-left: 0;
    margin-right: 12px;
    text-align: left;
    margin-bottom: 12px;
    flex-shrink: 0;
  }
}

.home-welcome__speaker-word {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 1.2em;
  padding-right: 24px;
  text-align: justify;
  line-height: 2rem;
}

@media screen and (max-width: 640px) {
  .home-welcome__speaker-word {
    font-size: 1rem;
    padding-right: 0;
  }
}

.home-welcome__speaker-word p {
  margin-bottom: 12px;
}

.home-welcome__speaker-name {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.home-welcome__speaker-title {
  font-size: 1.125rem;
  font-weight: 700;
}

.home-welcome__speaker-icon {
  overflow: hidden;
  border-radius: 50%;
  box-shadow: 0 0 2px #2222;
}

@media screen and (max-width: 1279px) {
  .home-welcome__speaker-icon {
    max-width: 160px;
  }
}

.home-welcome__art-layer {
  position: absolute;
  font-size: 210px;
  font-weight: 900;
  line-height: 1;
  color: #d9f2f7;
  z-index: 0;
  left: 0;
  pointer-events: none;
}

[lang="en"] .home-welcome__art-layer {
  top: -30px;
}

.theme-cny .home-welcome__art-layer {
  color: #fbf2f3;
}

.theme-xmas .home-welcome__art-layer {
  color: #eee;
}

@media screen and (min-width: 1401px) {
  .home-welcome__art-layer {
    margin-left: -60px;
  }
}

@media screen and (max-width: 1279px) {
  .home-welcome__art-layer {
    font-size: 150px;
  }
}

@media screen and (max-width: 767px) {
  .home-welcome__art-layer {
    top: -14px;
  }
}

@media screen and (max-width: 640px) {
  .home-welcome__art-layer {
    font-size: 23vw;
  }
}

.home-quicklink {
  padding-bottom: 24px;
}

.home-quicklink > .wrapper {
  display: flex;
  align-items: stretch;
}

@media screen and (max-width: 991px) {
  .home-quicklink > .wrapper {
    flex-direction: column;
  }
}

.home-quicklink__left {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-grow: 0;
  flex-shrink: 0;
  background-color: #06f786;
  flex-basis: 194px;
  padding: 18px;
}

@media screen and (max-width: 991px) {
  .home-quicklink__left {
    flex-basis: auto;
    justify-content: flex-start;
    padding-left: 36px;
    padding-right: 36px;
  }
}

@media screen and (max-width: 640px) {
  .home-quicklink__left {
    padding-left: 24px;
    padding-right: 24px;
  }
}

.home-quicklink__left h3 {
  font-size: 1.25rem;
}

.home-quicklink__right {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 6px 24px 16px;
  flex-grow: 1;
  display: flex;
  flex-wrap: wrap;
  background-color: #3955b4;
}

@media screen and (max-width: 1279px) {
  .home-quicklink__right {
    padding: 16px 24px 32px;
  }
}

.home-quicklink__right a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

.home-quicklink__right a:hover {
  color: #00ff78;
}

.home-quicklink__link {
  flex-grow: 1;
  flex-basis: 50%;
  margin: 12px 0 0;
  line-height: 1;
  padding: 0 0 0 12px;
}

.home-quicklink__link:hover {
  text-decoration: underline;
}

@media screen and (max-width: 479px) {
  .home-quicklink__link {
    flex-basis: 100%;
    padding: 0;
  }
}

.home-quicklink__link > span:after {
  content: " >";
  display: inline;
  color: #06f786;
  text-decoration: none;
}

.home-cards {
  padding-bottom: 48px;
}

@media screen and (max-width: 479px) {
  .home-cards {
    background-size: auto 320px;
  }
}

.home-cards > .wrapper {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}

@media screen and (max-width: 767px) {
  .home-cards > .wrapper {
    flex-direction: column;
  }
}

.home-cards__card {
  background-color: #fff;
  flex-basis: calc(50% - 12px);
  flex-grow: 0;
  flex-shrink: 0;
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  box-shadow: 7px 7px 20px 0 rgba(0, 0, 0, 0.3);
  min-height: 275px;
}

@media screen and (max-width: 1279px) {
  .home-cards__card {
    flex-direction: column;
  }
}

@media screen and (max-width: 767px) {
  .home-cards__card {
    flex-basis: auto;
    margin-bottom: 24px;
  }
}

.home-cards__card-left {
  flex-basis: 39%;
  background-position: center;
  background-size: cover;
  /*background-size: contain, cover;*/
  background-repeat: no-repeat;
  flex-shrink: 0;
  position: relative;
}

@media screen and (max-width: 1279px) {
  .home-cards__card-left {
    flex-basis: 220px;
  }
}

.home-cards__card-left-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.home-cards__card-right {
  padding: 40px 24px 32px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  flex-grow: 1;
  flex-basis: 68%;
}

@media screen and (max-width: 1279px) {
  .home-cards__card-right {
    padding: 32px 24px 24px;
    justify-content: flex-start;
    flex-basis: auto;
  }
}

.home-cards__card-right > h3 {
  font-size: 1.875rem;
  font-weight: 300;
  margin-bottom: 10px;
}

@media screen and (max-width: 1279px) {
  .home-cards__card-right > h3 {
    font-size: 1.675rem;
  }
}

.home-cards__card-right > p {
  margin-bottom: 20px;
}

.home-cards__card-right .home-pin-link {
  margin-bottom: 0;
  margin-right: 12px;
  margin-top: 12px;
}

.home-cards__card-right .home-pin-link:before {
  height: 42px;
  width: 42px;
  background-position: 12px 50%;
  background-size: 20px 20px;
}

.home-cards__card-right .home-pin-link > span {
  font-size: 0.875rem;
  line-height: 42px;
  margin-left: 56px;
}

.home-news {
  background-image: url(/images/home_news_bg.jpg);
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  padding: 72px 0 48px;
}

.home-news h2 {
  color: #fff;
  font-size: 2.5rem;
  margin-bottom: 18px;
}

@media screen and (max-width: 479px) {
  .home-news h2 {
    font-size: 2rem;
  }
}

.home-news .swiper-wrapper {
  align-items: stretch;
}

.home-news .home-pin-link span {
  color: #fff;
}

.home-news .home-pin-link:hover span {
  color: #000;
}

.home-news__slide {
  background-color: rgba(255, 255, 255, 0.85);
  height: auto;
  display: flex;
  flex-direction: column;
  padding: 24px;
  text-decoration-line: none;
  transition: box-shadow 0.3s ease;
  margin-top: 6px;
  margin-bottom: 6px;
  text-decoration: none;
}

.home-news__slide:hover {
  color: #3955b4;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 0 15px 0 rgba(255, 255, 255, 0.5);
}

@media screen and (max-width: 1279px) {
  .home-news__slide {
    padding: 16px;
  }
}

@media screen and (max-width: 479px) {
  .home-news__slide {
    width: 300px;
    padding: 24px;
  }
}

.home-news__date {
  padding: 15px 15px 6px;
  font-size: 1.25rem;
}

@media screen and (max-width: 1279px) {
  .home-news__date {
    padding-left: 8px;
    padding-right: 8px;
  }
}

@media screen and (max-width: 479px) {
  .home-news__date {
    padding: 15px 0 6px;
    font-size: 1rem;
  }
}

.home-news__day {
  font-size: 1.25rem;
  font-weight: bold;
  display: block;
  color: #3955b4;
}

.home-news__txtarea {
  padding: 6px 15px 20px;
}

.home-news__txtarea:last-child {
  padding-bottom: 0;
}

@media screen and (max-width: 1279px) {
  .home-news__txtarea {
    padding-left: 8px;
    padding-right: 8px;
  }
}

@media screen and (max-width: 479px) {
  .home-news__txtarea {
    padding: 6px 0 20px;
    font-size: 0.875rem;
  }
}

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

.home-news__image > img {
  width: 100%;
}

.home-news__title {
  font-weight: 400;
  font-size: 1.375rem;
  margin-bottom: 8px;
  color: #3955b4;
}

@media screen and (max-width: 479px) {
  .home-news__title {
    font-size: 1.125rem;
  }
}

.home-news__desc {
  line-height: 1.4;
  font-weight: 300;
}

@media screen and (max-width: 479px) {
  .home-news__desc {
    line-height: 1.2;
  }
}

.home-news__swiper-holder {
  position: relative;
}

.home-news__swiper-controls {
  display: inline-block;
  position: absolute;
  top: -66px;
  right: 0;
}

.home-news__swiper-prev, .home-news__swiper-next {
  display: inline-flex;
  position: relative;
  top: auto;
  bottom: auto;
  left: auto;
  right: auto;
  margin: 0 0 0 6px;
  color: #fff;
  width: 48px;
  height: 48px;
  text-align: center;
  justify-content: center;
  align-items: center;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100%;
  font-size: 0 !important;
}

@media screen and (max-width: 1279px) {
  .home-news__swiper-prev, .home-news__swiper-next {
    width: 54px;
    height: 54px;
    margin: 0 4px 0 0;
  }
}

.home-news__swiper-prev {
  background-image: url(/images/icon/slider-arrow-left-w.svg);
}

.home-news__swiper-next {
  background-image: url(/images/icon/slider-arrow-right-w.svg);
}

.home-services {
  padding-top: 120px;
  padding-bottom: 120px;
  overflow: hidden;
}

@media screen and (max-width: 991px) {
  .home-services {
    padding-top: 90px;
    padding-bottom: 90px;
  }
}

@media screen and (max-width: 640px) {
  .home-services {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}

.home-services h2.home-animate {
  position: relative;
  font-size: 7.8125rem;
  font-weight: 900;
  line-height: 1;
  color: #3955b4;
  margin-bottom: 32px;
  left: 100vw;
}

.title-reg .home-services h2.home-animate {
  color: #008533;
}

@media screen and (min-width: 641px) {
  .title-reg .home-services h2.home-animate {
    font-size: 6rem;
  }
}

@media screen and (max-width: 1279px) {
  .home-services h2.home-animate {
    font-size: 6.25rem;
  }
}

@media screen and (max-width: 991px) {
  .home-services h2.home-animate {
    font-size: 6rem;
  }
}

@media screen and (max-width: 640px) {
  .home-services h2.home-animate {
    font-size: 4rem;
  }
}

@media screen and (max-width: 479px) {
  .home-services h2.home-animate {
    font-size: 3.25rem;
  }
}

.home-services .home-pin-link {
  margin: 12px 12px 0 0;
  font-size: 1rem;
}

@media screen and (max-width: 991px) {
  .home-services .home-pin-link {
    font-size: 0.875rem;
  }
}

.home-services__item-holder {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}

.home-services__item {
  flex-basis: 46%;
  flex-grow: 0;
  flex-shrink: 0;
  margin-bottom: 84px;
}

@media screen and (min-width: 641px) {
  .home-services__item:nth-last-child(2), .home-services__item:last-child {
    margin-bottom: 0;
  }
}

@media screen and (max-width: 991px) {
  .home-services__item {
    flex-basis: 48%;
  }
}

@media screen and (max-width: 640px) {
  .home-services__item {
    flex-basis: 100%;
    margin-bottom: 48px;
  }
}

body:not(.title-reg) .home-services__item:nth-child(3n) {
  margin-top: -260px;
}

@media screen and (max-width: 1279px) {
  body:not(.title-reg) .home-services__item:nth-child(3n) {
    margin-top: -180px;
  }
}

@media screen and (max-width: 640px) {
  body:not(.title-reg) .home-services__item:nth-child(3n) {
    margin-top: 0;
  }
}

.home-services__item--desc {
  font-size: 1.375rem;
  line-height: 1.6;
  font-weight: 300;
  padding: 80px 24px 120px 0;
}

@media screen and (max-width: 1279px) {
  .home-services__item--desc {
    padding: 100px 24px 100px 0;
  }
}

@media screen and (max-width: 991px) {
  .home-services__item--desc {
    line-height: 1.4;
    font-size: 1.125rem;
  }
}

@media screen and (max-width: 640px) {
  .home-services__item--desc {
    padding: 0;
    margin-bottom: 32px;
  }
}

.home-services__item-title {
  font-size: 1.875rem;
  font-weight: 500;
  margin-bottom: 6px;
}

@media screen and (max-width: 991px) {
  .home-services__item-title {
    font-size: 1.5rem;
  }
}

.home-services__image {
  display: block;
  line-height: 0;
  margin-bottom: 32px;
  position: relative;
}

.home-services__item-desc {
  font-size: 1.125rem;
  line-height: 1.875;
  font-weight: 300;
}

@media screen and (max-width: 991px) {
  .home-services__item-desc {
    font-size: 1rem;
    line-height: 1.2;
  }
}

.home-services__art-layer {
  display: block;
  width: 60%;
  padding-bottom: 16%;
  position: absolute;
  bottom: -10px;
  left: -10px;
  background-color: #ff6600;
  z-index: -1;
  pointer-events: none;
}

.home-title-reg {
  background-color: #e1fdf0;
  padding-top: 84px;
  padding-bottom: 92px;
  overflow: hidden;
}

@media screen and (max-width: 640px) {
  .home-title-reg {
    padding-top: 54px;
    padding-bottom: 32px;
  }
}

.home-title-reg h2.home-animate {
  position: relative;
  font-size: 4rem;
  font-weight: 900;
  line-height: 1;
  color: #3955b4;
  margin-bottom: 32px;
  left: 100vw;
}

@media screen and (max-width: 1279px) {
  .home-title-reg h2.home-animate {
    font-size: 3.25rem;
  }
}

@media screen and (max-width: 479px) {
  .home-title-reg h2.home-animate {
    font-size: 2.875rem;
  }
}

@media screen and (max-width: 420px) {
  .home-title-reg h2.home-animate {
    font-size: 2.125rem;
  }
}

.home-title-reg__holder {
  display: flex;
  align-items: flex-start;
}

@media screen and (max-width: 640px) {
  .home-title-reg__holder {
    flex-direction: column;
  }
}

.home-title-reg__left {
  font-size: 1.375rem;
  line-height: 1.6;
  font-weight: 300;
  padding: 42px 32px 42px 0;
  flex-grow: 0;
  flex-basis: 40%;
}

@media screen and (max-width: 991px) {
  .home-title-reg__left {
    font-size: 1.125rem;
    line-height: 1.4;
  }
}

@media screen and (max-width: 640px) {
  .home-title-reg__left {
    order: 2;
    margin-top: 12px;
    padding: 24px 0;
    flex-basis: auto;
  }
}

.home-title-reg__right {
  flex-basis: 60%;
  line-height: 0;
  position: relative;
}

@media screen and (max-width: 640px) {
  .home-title-reg__right {
    order: 1;
    flex-basis: auto;
  }
}

.home-title-reg__image {
  position: relative;
  z-index: 1;
  display: block;
}

.home-title-reg__art-layer {
  display: block;
  width: 60%;
  padding-bottom: 16%;
  position: absolute;
  bottom: -18px;
  right: -18px;
  background-color: #ff6600;
  z-index: 0;
}

@media screen and (max-width: 640px) {
  .home-title-reg__art-layer {
    bottom: -12px;
    right: -12px;
  }
}

.home-media > .wrapper--home-swiper,
.home-links > .wrapper--home-swiper {
  max-width: 1300px;
}

@media screen and (min-width: 641px) {
  .home-media > .wrapper--home-swiper,
  .home-links > .wrapper--home-swiper {
    padding-left: 42px;
    padding-right: 42px;
  }
}

.home-media__slide,
.home-links__slide {
  display: block;
  position: relative;
  overflow: hidden;
  background-position: center center;
  background-size: cover;
  transition: all 0s ease;
  line-height: 0;
  text-align: center;
}

.home-media__slide:hover:before,
.home-links__slide:hover:before {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 4px solid #008533;
}

.home-media .video-popup:after,
.home-links .video-popup:after {
  background-size: auto 48%;
}

.home-media__swiper-prev, .home-media__swiper-next,
.home-links__swiper-prev,
.home-links__swiper-next {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 28px;
  height: 36px;
  margin-top: -12px;
}

.home-media__swiper-prev:after, .home-media__swiper-next:after,
.home-links__swiper-prev:after,
.home-links__swiper-next:after {
  display: none;
  font-size: 28px;
  color: #fff;
}

@media screen and (max-width: 640px) {
  .home-media__swiper-prev:after, .home-media__swiper-next:after,
  .home-links__swiper-prev:after,
  .home-links__swiper-next:after {
    font-size: 22px;
  }
}

@media screen and (max-width: 420px) {
  .home-media__swiper-prev, .home-media__swiper-next,
  .home-links__swiper-prev,
  .home-links__swiper-next {
    display: none;
  }
}

.home-media__swiper-prev,
.home-links__swiper-prev {
  background-image: url(/images/icon/slider-arrow-left-w.svg);
}

.home-media__swiper-next,
.home-links__swiper-next {
  background-image: url(/images/icon/slider-arrow-right-w.svg);
}

@media screen and (max-width: 640px) {
  .home-media__swiper-prev,
  .home-links__swiper-prev {
    left: 0;
  }
  .home-media__swiper-next,
  .home-links__swiper-next {
    right: 0;
  }
}

.home-media__swiper-pagination,
.home-links__swiper-pagination {
  position: absolute;
  width: 100%;
  display: block;
  text-align: center;
  margin: 0 auto;
  left: 0;
  bottom: -42px;
}

.home-media__swiper-pagination .swiper-pagination-bullet,
.home-links__swiper-pagination .swiper-pagination-bullet {
  background-color: #fff;
  margin: 0 4px;
  opacity: 0.5;
  width: 6px;
  height: 6px;
}

.home-media__swiper-pagination .swiper-pagination-bullet-active,
.home-links__swiper-pagination .swiper-pagination-bullet-active {
  opacity: 1;
}

.home-media {
  padding: 48px 0 64px;
  background-color: #3955b4;
}

.home-media h2 {
  color: #fff;
  font-size: 1.5rem;
  max-width: 1200px;
  margin: 0 auto 18px;
}

.home-media__swiper {
  max-width: 1200px;
  margin: 0 auto;
}

.home-media__slide {
  position: relative;
  height: 13vw;
  max-height: 172px;
  transition: all 0.3s ease;
}

@media screen and (max-width: 640px) {
  .home-media__slide {
    height: auto;
    padding-bottom: 20%;
  }
}

@media screen and (max-width: 479px) {
  .home-media__slide {
    padding-bottom: 30%;
  }
}

.home-links {
  padding: 54px 0 64px;
  background-color: #99ffc9;
}

.home-links .swiper-wrapper {
  align-items: center;
}

.home-links__swiper {
  max-width: 1200px;
  margin: 0 auto;
}

.home-links__slide {
  position: relative;
}

.home-links__slide img {
  width: 100%;
}

.home-links__swiper-pagination {
  position: relative;
  bottom: auto;
  left: auto;
  top: 32px;
}

.home-links__swiper-pagination .swiper-pagination-bullet {
  background-color: #007A2F;
  opacity: 1;
}

.home-links__swiper-pagination .swiper-pagination-bullet-active {
  background-color: #293D31;
}

.home-links__swiper-prev {
  background-image: url(/images/icon/slider-arrow-left-g-home.svg);
}

.home-links__swiper-next {
  background-image: url(/images/icon/slider-arrow-right-g-home.svg);
}

.home-corner {
  position: fixed;
  bottom: 90px;
  right: 24px;
  z-index: 50;
}

.home-corner__btn {
  display: flex;
  margin: 12px 0 0;
  width: 80px;
  height: 80px;
  align-items: flex-end;
  text-align: center;
  text-decoration: none;
  position: relative;
  justify-content: center;
  padding-bottom: 6px;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.2em;
  color: #000;
}

@media screen and (max-width: 479px) {
  .home-corner__btn {
    width: 72px;
    height: 72px;
    font-size: 0.625rem;
  }
}

.home-corner__btn:hover {
  color: #000;
}

.home-corner__btn:hover .home-corner__hover-text {
  display: block;
}

.home-corner__btn:hover .home-corner__img {
  box-shadow: 0 0 0 2px #009e38, 0 0 10px 5px rgba(0, 158, 56, 0.45);
}

.home-corner__btn--dark {
  color: #fff;
}

.home-corner__btn--dark:hover {
  color: #fff;
}

.home-corner__img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  border-radius: 45px;
  z-index: 1;
  box-shadow: 0 0 2px #000;
  transition: all 0.3s ease;
}

.home-corner__text {
  position: relative;
  z-index: 3;
  max-width: 80%;
}

.home-corner__hover-text {
  position: absolute;
  z-index: 0;
  text-align: right;
  top: 32px;
  right: 90%;
  white-space: nowrap;
  display: none;
  padding: 6px 24px 6px 12px;
  border-radius: 5px;
  line-height: 1;
}

.home-theme-background {
  background-image: url(/images/home_theme_bg.png), linear-gradient(180deg, rgba(186, 251, 248, 0) 0%, #bafbf8 50%);
  background-size: 1600px auto, auto 100%;
  background-position: center bottom, center bottom;
  background-repeat: repeat-x, no-repeat;
}

@media screen and (max-width: 479px) {
  .home-theme-background {
    background-size: auto 80%, auto 100%;
    background-image: url(/images/home_theme_bg.png), linear-gradient(180deg, rgba(186, 251, 248, 0) 0%, #bafbf8 30%);
  }
}

.theme-cny .home-theme-background {
  background-image: url(/images/home_theme_bg_CNY.png), linear-gradient(180deg, rgba(254, 214, 204, 0) 10%, #fed6cc 50%);
}

@media screen and (max-width: 640px) {
  .theme-cny .home-theme-background {
    background-size: auto 100%, auto 100%;
    background-image: url(/images/home_theme_bg_CNY_mb.png), linear-gradient(180deg, rgba(254, 214, 204, 0) 20%, #fed6cc 40%);
  }
}

.theme-xmas .home-theme-background {
  background-image: url(/images/home_theme_bg_Xmas.png), linear-gradient(180deg, rgba(200, 251, 252, 0) 10%, #c8fbfc 70%);
}

@media screen and (max-width: 640px) {
  .theme-xmas .home-theme-background {
    background-size: auto 94%, auto 100%;
    background-image: url(/images/home_theme_bg_Xmas_mb.png), linear-gradient(180deg, rgba(217, 242, 247, 0) 20%, #c8fbfc 40%);
  }
}

.page-banner {
  margin: 44px auto 0;
}

.page-banner--faq {
  margin-top: 0;
}

.page-banner--faq a {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.2;
  text-decoration: none;
  margin: 6px 28px 6px 0;
}

.page-banner--faq a:hover {
  text-decoration: underline;
}

.page-banner--faq a:after {
  content: " >";
  display: inline-block;
  margin-left: 4px;
  color: #fc8318;
}

.page-banner--faq .wrapper {
  display: flex;
  align-items: stretch;
  justify-content: center;
}

@media screen and (max-width: 767px) {
  .page-banner--faq .wrapper {
    flex-direction: column;
  }
}

.page-banner--faq .page-banner__desc {
  background-image: url(../images/title-reg-faq.jpg);
  background-size: cover;
  background-position: center right;
  padding: 120px;
  color: #FFF;
}

.page-banner__left {
  flex-grow: 0;
  flex-shrink: 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 24px;
}

@media screen and (min-width: 768px) {
  .page-banner__left {
    border-right: 1px solid #fff;
    flex-basis: 400px;
    margin-bottom: 0px;
  }
}

.page-banner__right {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  flex-grow: 1;
  align-self: center;
}

@media screen and (min-width: 768px) {
  .page-banner__right {
    padding-left: 56px;
  }
}

.page-banner__desc {
  padding: 74px 0;
  width: 100%;
  position: relative;
  background-color: #e1fdf0;
  z-index: 0;
  color: #000;
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1.4;
}

html.theme--black-and-white .page-banner__desc {
  background-color: #f6f6f6;
}

.page-banner__desc--theme-green h2 {
  color: #008533;
}

html.theme--black-and-white .page-banner__desc--theme-green h2 {
  color: #636363;
}

@media screen and (max-width: 991px) {
  .page-banner__desc {
    padding: 72px 0;
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 479px) {
  .page-banner__desc {
    padding: 72px 0;
    font-size: 1.25rem;
  }
}

.page-banner__image + .page-banner__desc {
  margin-top: -120px;
}

.page-banner__desc h4 {
  font-size: 42px;
  color: #008533;
}

html.theme--black-and-white .page-banner__desc h4 {
  color: #636363;
}

.page-banner__desc a {
  color: #fff;
}

.page-banner__theme-layer {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
  top: -8px;
  z-index: 1;
  padding: 0 24px;
}

.page-banner__theme-layer:before {
  content: "";
  display: inline-block;
  width: 320px;
  height: 16px;
  background-color: #ff6600;
  width: 40%;
}

.page-video-slider {
  max-width: 1200px;
  width: calc(100% - 120px);
  margin: 32px auto 12px;
}

@media screen and (max-width: 991px) {
  .page-video-slider {
    width: calc(100% - 32px);
  }
}

.page-video-slider__slide {
  background-color: #fff;
  color: #008533 !important;
  text-decoration: none;
  font-weight: 400;
  font-size: 1.375rem;
  padding: 32px;
  margin: 12px 0;
  display: flex;
  /*align-items: center;*/
  align-items: stretch;
  height: auto !important;
}

@media screen and (max-width: 991px) {
  .page-video-slider__slide {
    padding: 24px;
  }
}

@media screen and (max-width: 479px) {
  .page-video-slider__slide {
    font-size: 1.125rem;
  }
}

.page-video-slider__slide:hover {
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.85);
}

html.theme--black-and-white .page-video-slider__slide {
  color: #636363 !important;
}

.page-video-slider__prev, .page-video-slider__next {
  width: 64px;
  height: 64px;
  top: calc(50% - 32px);
  margin: 0;
  color: #fff;
  filter: saturate(0.9);
}

.page-banner__desc .page-video-slider__prev, .page-banner__desc .page-video-slider__next {
  color: #008533;
}

.page-video-slider__prev:after, .page-video-slider__next:after {
  font-size: 1.875rem;
}

@media screen and (max-width: 420px) {
  .page-video-slider__prev:after, .page-video-slider__next:after {
    font-size: 1.2rem;
  }
}

@media screen and (max-width: 991px) {
  .page-video-slider__prev, .page-video-slider__next {
    width: 52px;
    height: 52px;
    top: calc(50% - 26px);
  }
}

@media screen and (max-width: 420px) {
  .page-video-slider__prev, .page-video-slider__next {
    width: 42px;
    height: 42px;
    top: calc(50% - 21px);
  }
}

.page-video-slider__prev {
  left: 0;
  background-image: url(/images/icon/slider-arrow-left-g-title.svg);
}

.page-video-slider__next {
  right: 0;
  background-image: url(/images/icon/slider-arrow-right-g-title.svg);
}

.page-video-slider__pagination {
  position: relative;
  text-align: center;
  margin: 0 auto 24px;
}

.page-video-slider__pagination .swiper-pagination-bullet {
  margin: 0 4px;
  background-color: #FFF;
}

.page-video-slider__pagination .swiper-pagination-bullet-active {
  background-color: #FFF;
}
