@import url("https://fonts.googleapis.com/earlyaccess/notosanssc.css");

* {
  font-family: "Noto Sans SC";
}

/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain) */
* {
  box-sizing: border-box;
}

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,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-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 {
  display: block;
}

body {
  line-height: 1;
  font-family: "Noto Sans SC";
  overflow: hidden;
  font-size: 13px;
  color: #000;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a {
  text-decoration: none;
  cursor: pointer;
}

.header {
  display: flex;
  align-items: center;
  background: #000;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  padding: 0;
  margin: 0;
  font-size: 12px;
}

.header .logo {
  background: url(../images/logo.png);
  width: 217px;
  height: 44px;
  margin: 18px 40px 18px 40px;
  background-size: cover;
  cursor: pointer;
}

.header #menu {
  text-align: right;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex: 1;
  margin-right: 30px;
}

.header #menu li {
  margin: 10px 0 10px 28px;
  color: #000;
  font-weight: bold;
}

.header #menu li a {
  padding: 5px 4px;
  color: #fff;
  font-weight: bold;
  border-radius: 3px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.header #menu li a:before {
  content: "";
  width: 5px;
  height: 14px;
  margin-right: 8px;
  background-color: #ed0a0a;
  position: absolute;
  top: 5px;
  left: -8px;
  display: none;
}

.header #menu li.active a {
  color: #ed0a0a;
}

.header #menu li.active a:before {
  display: inline-block;
}

.header #menu.mobile-menu {
  display: none;
  text-align: left;
  background: #fff;
  position: absolute;
  right: 0;
  top: 80px;
  box-shadow: 1px 0 6px #999;
  padding-bottom: 15px;
}

.header #menu.mobile-menu li {
  display: block;
  margin: 0;
}

.header #menu.mobile-menu li a {
  color: #000;
  display: block;
  padding: 20px 30px;
}

.header #menu.mobile-menu li a:before {
  top: 20px;
  left: 15px;
}

.header .lang-switch {
  margin: 20px;
  display: flex;
  align-items: center;
}

.header .lang-switch a {
  padding: 8px;
  color: #505050;
}

.header .lang-switch a.action {
  color: #ed0a0a;
  font-weight: bold;
}

.header .vertical-line {
  width: 1px;
  height: 14px;
  margin: 0 8px;
  background-color: #505050;
}

.header .navigation {
  width: 30px;
  height: 30px;
  background: transparant;
  position: absolute;
  -moz-border-radius: 0 4px 4px 0;
  -webkit-border-radius: 0 4px 4px 0;
  -o-border-radius: 0 4px 4px 0;
  -ms-border-radius: 0 4px 4px 0;
  border-radius: 0 4px 4px 0;
  top: 30px;
  right: 30px;
  z-index: 99999;
  display: none;
}

.header .navigation .span-mask {
  width: 100%;
  height: 30px;
  position: absolute;
  cursor: pointer;
}

.header .navigation .span-mask .span-line {
  width: 30px;
  height: 2px;
  background: #fff;
  display: block;
  transition: 0.2s;
}

.header .navigation .span-mask .span-line + .span-line {
  display: block;
  margin-top: 5px;
  transform: translateY(0) rotate(0deg);
  -moz-transform: translateY(0) rotate(0deg);
  -webkit-transform: translateY(0) rotate(0deg);
  -o-transform: translateY(0) rotate(0deg);
  -ms-transform: translateY(0) rotate(0deg);
}

.header .navigation .span-mask .span-line + .span-line + .span-line {
  display: block;
  transform: translateY(0) rotate(0deg);
  -moz-transform: translateY(0) rotate(0deg);
  -webkit-transform: translateY(0) rotate(0deg);
  -o-transform: translateY(0) rotate(0deg);
  -ms-transform: translateY(0) rotate(0deg);
}

.header.open .navigation .span-mask {
  top: 4px;
}

.header.open .navigation .span-mask .span-line {
  display: none;
}

.header.open .navigation .span-line {
  position: absolute;
  margin-top: 0;
  display: none;
}

.header.open .navigation .span-line + .span-line {
  display: block;
  position: absolute;
  margin-top: 4px;
  transform: translateY(0) rotate(-45deg);
  -moz-transform: translateY(0) rotate(-45deg);
  -webkit-transform: translateY(0) rotate(-45deg);
  -o-transform: translateY(0) rotate(-45deg);
  -ms-transform: translateY(0) rotate(-45deg);
}

.header.open .navigation .span-line + .span-line + .span-line {
  display: block;
  position: static;
  margin-top: 4px;
  transform: translateY(0) rotate(450deg);
  -moz-transform: translateY(0) rotate(45deg);
  -webkit-transform: translateY(0) rotate(45deg);
  -o-transform: translateY(0) rotate(45deg);
  -ms-transform: translateY(0) rotate(45deg);
}

#fullpage {
  margin-top: 80px;
  margin-bottom: 115px;
}

#fullpage .fp-tableCell {
  display: flex;
  padding: 90px 40px 90px 40px;
  overflow: hidden;
}

#fullpage .title {
  margin-bottom: 12px;
  color: #000;
  font-size: 40px;
}

#fullpage .text-block {
  width: 70%;
  padding: 10px;
  transition: 0.5s;
  position: relative;
  z-index: 1;
}

#fullpage .text-block:after {
  content: "";
  display: block;
  clear: both;
}

#fullpage .text-block h1 {
  margin: 10px;
  margin-left: 0;
  color: #000;
  font-size: 60px;
  font-weight: bold;
}

#fullpage .text-block h2 {
  width: 80%;
  color: #000;
  font-size: 28px;
  line-height: 34px;
}

#fullpage .text-block h2.without-line {
  border: none;
  padding: 0;
}

#fullpage .text-block p {
  font-size: 16px;
  font-weight: normal;
  line-height: 20px;
  /* color: #000; */
  color: #fff;
  margin-top: 12px;
  margin-bottom: 12px;
}

#fullpage #section0 {
  background: url(../images/page0.jpg);
  background-size: cover;
  margin-bottom: -4px;
  /* height: 500px; */
}

#fullpage #section0 .fp-tableCell {
  padding: 200px 40px 400px 40px;
  /* padding: 110px 40px 160px 40px; */
}

#fullpage #section0 .text-block {
  width: 80%;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(100px);
}

#fullpage #section0 .text-block h1 {
  /* font-size: 55px; */
  font-size: 43px;
  font-weight: bold;
  color: #fff;
  text-shadow: 0px 0px 1px #333;
  /* letter-spacing: 6px; */
  /* text-align: center; */
  /* line-height: 60px; */
  line-height: 35px;
}

#fullpage #section0 .text-block h1 .span1 {
  color: #ed0a0a;
  line-height: 1.8;
  font-size: 80px;
  margin-bottom: -50px;
}
#fullpage #section0 .text-block h1 .span2 {
  font-weight: 400;
  font-size: 30px;
  text-shadow: 0px 0px 1px #333;
  margin-top: -40px;
}

#fullpage .span4 {
  font-weight: 500;
  font-size: 16px;
}
#fullpage .span5 {
  margin-left: 20px;
}

#fullpage #section0 .text-block.active {
  opacity: 1;
  transform: translateY(30px);
}

#fullpage #section1 {
  background: #fff;
  background: url(../images/page1.jpg);
  background-size: cover;
  position: relative;
}

#fullpage #section1 .text-block {
  width: 42%;
  display: flex;
  flex-direction: column;
  padding: 0 30px 0 10px;
  text-align: left;
  border-left: 1px solid #ed0a0a;
  opacity: 0;
  transform: translateX(-100px);
}

#fullpage #section1 .text-block.active {
  opacity: 1;
  transform: translateX(30px);
}

#fullpage #section1 .text-block h1 {
  /* color: #fff; */
  color: #ed0a0a;
  text-shadow: 0px 0px 1px #333;
  font-size: 38px;
  text-align: left;
}

#fullpage #section1 .text-block h2 {
  width: 100%;
  text-align: left;
  font-size: 16px;
  line-height: 26px;
}

#fullpage #section1 .text-block p {
  color: #fff;
  text-shadow: 0px 0px 1.5px #333;
  text-align: left;
}

#fullpage #section2 .fp-tableCell {
  padding: 0;
  justify-content: flex-end;
  display: flex;
  flex-direction: column;
}

#fullpage #section2 .section2-outside {
  width: 100%;
  padding: 140px 40px 140px 40px;
  background: url(../images/page3.jpg);
  background-size: cover;
  display: flex;
  justify-content: flex-end;
}

#fullpage #section2 .section2-outside .text-block {
  width: 44%;
  display: flex;
  flex-direction: column;
  padding: 0 30px 0 10px;
  text-align: left;
  border-left: 1px solid #ed0a0a;
  opacity: 0;
  transform: translateX(100px);
}

#fullpage #section2 .section2-outside .text-block.active {
  opacity: 1;
  transform: translateX(30px);
}

#fullpage #section2 .section2-outside .text-block h1 {
  /* color: #fff; */
  color: #ed0a0a;
  text-shadow: 0px 0px 1.5px #333;
  font-size: 40px;
  text-align: left;
}

#fullpage #section2 .section2-outside .text-block h2 {
  width: 100%;
  text-align: left;
  font-size: 16px;
  line-height: 26px;
}

#fullpage #section2 .section2-outside .text-block p {
  color: #fff;
  text-shadow: 0px 0px 1.5px #333;
  text-align: left;
}

#fullpage #section2 .section2-inside {
  width: 100%;
  padding: 140px 40px 140px 40px;
  background: url(../images/page4.jpg);
  background-size: cover;
  background-position: 70% 0 !important;
}

#fullpage #section2 .section2-inside .text-block {
  width: 44%;
  display: flex;
  flex-direction: column;
  padding: 0 30px 0 10px;
  text-align: left;
  border-left: 1px solid #ed0a0a;
  opacity: 0;
  transform: translateX(-100px);
}

#fullpage #section2 .section2-inside .text-block.active {
  opacity: 1;
  transform: translateX(30px);
}

#fullpage #section2 .section2-inside .text-block h1 {
  font-size: 40px;
  text-align: left;
  /* color: #fff; */
  color: #ed0a0a;
  text-shadow: 0px 0px 1px #666;
}

#fullpage #section2 .section2-inside .text-block h2 {
  width: 100%;
  text-align: left;
  font-size: 18px;
  line-height: 26px;
}

#fullpage #section2 .section2-inside .text-block p {
  font-size: 16px;
  text-align: left;
  color: #fff;
  text-shadow: 0px 0px 1px #666;
}

#fullpage #section3 {
  background: #e5e5e5;
  background-size: cover;
  background-position: center;
  position: relative;
}

#fullpage #section3 .fp-tableCell {
  padding: 50px 40px 50px 40px;
}

#fullpage #section3 .text-block {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 0 40px 0 40px;
  text-align: center;
  align-items: center;
  opacity: 0;
  transform: translateY(100px);
}

#fullpage #section3 .text-block p {
  color: #fff;
}

#fullpage #section3 .text-block.active {
  opacity: 1;
  transform: translateX(0px);
}

#fullpage #section3 .text-block .title {
  color: #ed0a0a;
}

#fullpage #section3 .text-block h1 {
  color: #fff;
  margin: 10px;
  font-size: 38px;
  text-align: center;
}

#fullpage #section3 .service-block {
  width: 100%;
  margin-top: 20px;
  padding: 50px 60px;
  /* background: #fff; */
  background: rgba(28, 28, 28, 0.87);
  display: flex;
  align-items: center;
}

#fullpage #section3 .service-icon {
  margin-right: 30px;
}

#fullpage #section3 .service-text-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

#fullpage #section3 .service-title {
  margin-bottom: 10px;
  /* color: #ed0a0a; */
  color: #fff;
  font-size: 28px;
}

#fullpage #section3 .service-text {
  font-size: 14px;
  line-height: 20px;
}

#fullpage #section3 .bg-triangle {
  /* width: 40%; */
  width: 100%;
  height: 100%;
  background: url(../images/triangle.png);
  background-size: cover;
  position: absolute;
  bottom: 0;
  right: 0;
}

#fullpage #section4 {
  background: #fff;
  background: url(../images/page5.jpg);
  background-size: cover;
  position: relative;
}

#fullpage #section4 .fp-tableCell {
  padding: 120px 40px 70px 40px;
  justify-content: flex-start;
}

#fullpage #section4 .text-block {
  width: 44%;
  display: flex;
  flex-direction: column;
  padding: 0 30px 0 10px;
  text-align: left;
  opacity: 0;
  transform: translateX(-100px);
}

#fullpage #section4 .text-block.active {
  opacity: 1;
  transform: translateX(30px);
}

#fullpage #section4 .text-block h1 {
  font-size: 40px;
  text-align: left;
  /* color: #fff; */
  color: #ed0a0a;
  text-shadow: 0px 0px 1px #666;
}

#fullpage #section4 .text-block h2 {
  width: 100%;
  text-align: left;
  font-size: 18px;
  line-height: 26px;
}

#fullpage #section4 .text-block p {
  font-size: 16px;
  text-align: left;
  color: #fff;
  text-shadow: 0px 0px 1px #666;
}

#fullpage #section4 .btn-join {
  width: 184px;
  margin-top: 36px;
  padding: 14px 44px;
  background-color: #ed0a0a;
  font-size: 24px;
  text-align: center;
  color: #fff;
  border-radius: 30px;
}

#fullpage #section5 {
  background: #fff;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

#fullpage #section5 .fp-tableCell {
  background-color: #000;
  padding: 140px 40px 190px 40px;
  justify-content: flex-start;
}

#fullpage #section5 .text-block {
  width: 45%;
  display: flex;
  flex-direction: column;
  padding: 0 30px 0 10px;
  text-align: left;
  opacity: 0;
  transform: translateX(-100px);
}

#fullpage #section5 .text-block.active {
  opacity: 1;
  transform: translateX(30px);
}

#fullpage #section5 .text-block h1 {
  font-size: 38px;
  text-align: left;
  color: #ed0a0a;
}

#fullpage #section5 .info-block {
  margin: 10px 0;
  display: flex;
  flex-direction: column;
}

#fullpage #section5 .info-item {
  color: #fff;
  margin: 10px 0;
  display: flex;
  flex-direction: row;
  align-items: center;
}

#fullpage #section5 .info-icon {
  margin-right: 20px;
}

#fullpage #section5 .info-text {
  font-size: 14px;
  line-height: 20px;
}

#fullpage #section5 .info-text a {
  color: #ed0a0a;
}

#fullpage #section5 .map-block {
  position: relative;
  width: 100%;
  margin: 0 50px;
  padding-bottom: 40%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
}

#fullpage #section5 .map-block iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/** section 6*/
#fullpage #section6 {
  background: #fff;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

#fullpage #section6 .fp-tableCell {
  padding: 140px 40px 190px 40px;
  justify-content: flex-start;
}

#fullpage #section6 .text-block {
  width: 45%;
  display: flex;
  flex-direction: column;
  padding: 0 30px 0 10px;
  text-align: left;
  opacity: 0;
  transform: translateX(-100px);
}

#fullpage #section6 .text-block.active {
  opacity: 1;
  transform: translateX(30px);
}

#fullpage #section6 .text-block h1 {
  font-size: 38px;
  text-align: left;
  color: #ed0a0a;
}

#fullpage #section6 .info-block {
  margin: 10px 0;
  display: flex;
  flex-direction: column;
}

#fullpage #section6 .info-item {
  margin: 10px 0;
  display: flex;
  flex-direction: row;
  align-items: center;
}

#fullpage #section6 .info-icon {
  margin-right: 20px;
}

#fullpage #section6 .info-text {
  font-size: 14px;
  line-height: 20px;
}

#fullpage #section6 .info-text a {
  color: #ed0a0a;
}

#fullpage #section6 .map-block {
  position: relative;
  width: 100%;
  margin: 0 50px;
  padding-bottom: 40%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
}

#fullpage #section6 .map-block iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #222;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 5px;
  z-index: 99999;
}

.footer ul {
  width: 95%;
  height: 65px;
  border-bottom: 1px solid #505050;
  color: #fff;
  font-size: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer ul li {
  margin: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer ul li a {
  color: #fff;
}

.copyright {
  width: 100%;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #505050;
  font-size: 12px;
}

#fp-nav {
  top: 25%;
}

#fp-nav ul li a span {
  background: rgba(0, 0, 0, 0.38);
}

#fp-nav ul li a.active span {
  background: #009acf;
}

.gotoTop {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  bottom: 120px;
  right: 5px;
  background: #f6cb6d;
  color: #fff;
  border-radius: 40px;
  cursor: pointer;
  z-index: 9999;
  transition: 0.3s;
  display: none;
  opacity: 0.7;
}

.gotoTop img {
  width: 36px;
  height: 36px;
}

@media screen and (max-width: 1480px) {
  #fullpage #section0 .fp-tableCell {
    padding: 200px 40px 200px 40px;
  }
}

@media screen and (max-width: 1024px) {
  .header #menu li {
    margin: 10px 0 10px 5px;
  }

  #fullpage #section0 {
    background-position: center;
  }

  #fullpage #section0 .fp-tableCell {
    padding: 200px 40px 200px 40px;
  }

  #fullpage #section0 .text-block {
    width: 95%;
  }

  #fullpage #section1 .text-block.active {
    /* background-color: rgba(255, 255, 255, 0.38); */
    /* background-color: rgba(100, 100, 100, 0.5); */
    transform: translateX(0px);
  }

  #fullpage #section2 .section2-outside .text-block.active {
    /* background-color: rgba(255, 255, 255, 0.38); */
    /* background-color: rgba(100, 100, 100, 0.5); */
    background: rgba(28, 28, 28, 0.87);
    transform: translateX(0px);
  }
}

.icon-more {
  width: 160px;
  height: 160px;
}

@media screen and (max-width: 976px) {
  .header .navigation {
    display: block;
  }

  .header #menu {
    display: none;
  }

  .header.open #menu.mobile-menu {
    display: block;
    margin-right: 0;
  }

  .header .lang-switch {
    position: absolute;
    margin: 0 15px;
    top: 22px;
    right: 70px;
  }

  #fullpage .section {
    background-position: center !important;
  }

  #fullpage #section1 {
    /* background-position: -500px 0 !important; */
    background-position: 30% 0 !important;
  }

  #fullpage #section2 .section2-outside {
    background-position: 30% 0 !important;
  }

  #fullpage #section2 .section2-inside {
    /* background-position: 70% 0 !important; */
    background-position: -700px 0 !important;
  }

  #fullpage #section5 .fp-tableCell {
    padding: 90px 40px 140px 40px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  #fullpage #section5 .text-block {
    width: 80%;
  }

  #fullpage #section5 .text-block.active {
    transform: translateX(0px);
  }

  #fullpage #section5 .map-block {
    margin: 20px 0;
    width: 80%;
  }
  /** section6 */

  #fullpage #section6 .fp-tableCell {
    padding: 90px 40px 140px 40px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  #fullpage #section6 .text-block {
    width: 80%;
  }

  #fullpage #section6 .text-block.active {
    transform: translateX(0px);
  }

  #fullpage #section6 .map-block {
    margin: 20px 0;
    width: 80%;
  }
}

@media screen and (max-width: 767px) {
  .header {
    display: block;
  }

  .header .logo {
    width: 128px;
    height: 26px;
    margin: 18px 20px 18px 20px;
  }

  .header .lang-switch {
    position: absolute;
    margin: 0 15px;
    top: 16px;
    right: 60px;
  }

  .header .navigation {
    top: 23px;
    right: 20px;
  }

  .header #menu.mobile-menu {
    top: 62px;
  }

  #fullpage {
    margin-top: 62px;
  }

  #fullpage #section1 .text-block {
    color: #fff;
    text-shadow: 0px 0px 1px #333;
    width: 80%;
  }

  #fullpage #section2 .section2-outside .text-block {
    width: 80%;
  }

  #fullpage #section2 .section2-inside .text-block {
    width: 80%;
  }

  #fullpage #section3 .text-block {
    padding: 0 20px 0 20px;
  }

  #fullpage #section3 .service-block {
    padding: 40px;
    flex-direction: column;
  }

  #fullpage #section3 .service-icon {
    margin: 0 0 30px 0;
  }

  .footer ul {
    flex-wrap: wrap;
  }

  .footer ul li {
    margin: 8px;
  }
}

@media screen and (max-width: 480px) {
  #fp-nav.right {
    right: 5px;
  }

  #fullpage {
    margin-bottom: 50px;
  }

  #fullpage .title {
    font-size: 16px;
  }

  #fullpage .fp-tableCell {
    padding: 90px 15px;
    align-items: center;
    justify-content: center;
  }

  #fullpage #section0 .fp-tableCell {
    padding: 120px 15px;
  }

  #fullpage #section0 .text-block {
    width: 95%;
  }

  #fullpage #section0 .text-block.active {
    transform: translateY(0px);
  }

  #fullpage #section0 .text-block h1 {
    font-size: 28px;
    line-height: 30px;
    margin: 0;
  }

  #fullpage #section1 .text-block {
    width: 95%;
    padding: 0 10px;
  }

  #fullpage #section1 .text-block.active {
    transform: translateX(0px);
  }

  #fullpage #section1 .text-block h1 {
    /* color: #fff;
    text-shadow: 0px 0px 1px #333; */
    font-size: 22px;
  }

  #fullpage #section1 .text-block p {
    /* color: #fff;
    text-shadow: 0px 0px 1px #333; */
    font-size: 13px;
  }

  #fullpage #section2 .fp-tableCell {
    justify-content: center;
  }

  #fullpage #section2 .section2-outside {
    width: 100%;
    justify-content: center;
    padding: 90px 15px;
  }

  #fullpage #section2 .section2-outside .text-block {
    width: 95%;
    padding: 20px;
    border-width: 0px;
  }

  #fullpage #section2 .section2-outside .text-block h1 {
    font-size: 22px;
  }

  #fullpage #section2 .section2-outside .text-block p {
    font-size: 13px;
  }

  #fullpage #section2 .section2-inside {
    width: 100%;
    background: url(../images/page4-mobile.jpg);
    background-size: cover;
    justify-content: center;
    padding: 90px 15px;
    background-position: 47% 0 !important;
  }

  #fullpage #section2 .section2-inside .text-block {
    width: 65%;
    padding: 0 10px;
  }

  #fullpage #section2 .section2-inside .text-block.active {
    /* background-color: transparent; */
    background-color: rgba(28, 28, 28, 0.87);
    transform: translateX(0px);
  }

  #fullpage #section2 .section2-inside .text-block h1 {
    font-size: 22px;
  }

  #fullpage #section2 .section2-inside .text-block p {
    font-size: 13px;
  }

  #fullpage #section3 .fp-tableCell {
    justify-content: center;
    padding: 40px 15px;
  }

  #fullpage #section3 .text-block {
    width: 95%;
    padding: 0 10px;
  }

  #fullpage #section3 .text-block.active {
    transform: translateX(0px);
  }

  #fullpage #section3 .text-block h1 {
    font-size: 22px;
  }

  #fullpage #section3 .text-block .service-title {
    font-size: 18px;
  }

  #fullpage #section3 .text-block .service-text {
    font-size: 13px;
  }

  #fullpage #section3 .service-block {
    padding: 40px 20px;
  }

  #fullpage #section4 {
    background: url(../images/page5-mobile.jpg);
    background-size: cover;
    background-position: left !important;
  }

  #fullpage #section4 .fp-tableCell {
    padding: 30px 15px 280px 15px;
  }

  #fullpage #section4 .text-block {
    width: 95%;
    padding: 0 10px;
  }

  #fullpage #section4 .text-block.active {
    transform: translateX(0px);
  }

  #fullpage #section4 .text-block h1 {
    /* color: #fff; */
    color: #ed0a0a;
    text-shadow: 0px 0px 1px #666;
    font-size: 22px;
  }

  #fullpage #section4 .text-block p {
    color: #fff;
    text-shadow: 0px 0px 1px #666;
    font-size: 13px;
  }

  #fullpage #section4 .btn-join {
    font-size: 18px;
  }

  #fullpage #section5 .fp-tableCell {
    padding: 40px 15px 80px 15px;
  }

  #fullpage #section5 .text-block {
    width: 95%;
    padding: 0 10px;
  }

  #fullpage #section5 .text-block.active {
    transform: translateX(0px);
  }

  #fullpage #section5 .text-block h1 {
    font-size: 22px;
  }

  #fullpage #section5 .text-block .info-text {
    font-size: 13px;
  }

  #fullpage #section5 .text-block .info-icon {
    margin-left: -4px;
  }

  #fullpage #section5 .map-block {
    width: 95%;
  }
  /** section6 */
  #fullpage #section6 .fp-tableCell {
    padding: 40px 15px 80px 15px;
  }

  #fullpage #section6 .text-block {
    width: 95%;
    padding: 0 10px;
  }

  #fullpage #section6 .text-block.active {
    transform: translateX(0px);
  }

  #fullpage #section6 .text-block h1 {
    font-size: 22px;
  }

  #fullpage #section6 .text-block .info-text {
    font-size: 13px;
  }

  #fullpage #section6 .text-block .info-icon {
    margin-left: -4px;
  }

  #fullpage #section6 .map-block {
    width: 95%;
  }

  .footer ul {
    display: none;
  }

  .gotoTop {
    bottom: 55px;
  }
}

@media screen and (max-width: 480px) {
  html[lang="ch"] #fullpage .title {
    font-size: 17px;
  }

  html[lang="ch"] #fullpage #section0 .text-block h1 {
    font-size: 29px;
    line-height: 31px;
  }

  html[lang="ch"] #fullpage #section1 .text-block h1,
  html[lang="ch"] #fullpage #section2 .text-block h1,
  html[lang="ch"] #fullpage #section3 .text-block h1,
  html[lang="ch"] #fullpage #section4 .text-block h1,
  html[lang="ch"] #fullpage #section5 .text-block h1 {
    font-size: 23px;
  }

  html[lang="ch"] #fullpage #section1 .text-block p,
  html[lang="ch"] #fullpage #section2 .text-block p,
  html[lang="ch"] #fullpage #section3 .text-block p,
  html[lang="ch"] #fullpage #section4 .text-block p,
  html[lang="ch"] #fullpage #section5 .text-block p {
    font-size: 14px;
  }

  html[lang="ch"] #fullpage #section2 .section2-outside .text-block h1,
  html[lang="ch"] #fullpage #section2 .section2-inside .text-block h1 {
    font-size: 23px;
  }

  html[lang="ch"] #fullpage #section2 .section2-outside .text-block p,
  html[lang="ch"] #fullpage #section2 .section2-inside .text-block p {
    font-size: 14px;
  }

  html[lang="ch"] #fullpage #section3 .text-block .service-title {
    font-size: 19px;
  }

  html[lang="ch"] #fullpage #section3 .text-block .service-text {
    font-size: 14px;
  }

  html[lang="ch"] #fullpage #section4 .btn-join {
    font-size: 19px;
  }
}
