html {
  color: #000;
  background: #fff;
}

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
textarea,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

fieldset,
img {
  border: 0;
}

address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
  font-style: normal;
  font-weight: normal;
}

ol,
ul {
  list-style: none;
}

caption,
th {
  text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

q:before,
q:after {
  content: '';
}

abbr,
acronym {
  border: 0;
  font-variant: normal;
}

sup {
  vertical-align: text-top;
}

sub {
  vertical-align: text-bottom;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  *font-size: 100%;
}

legend {
  color: #000;
}

a {
  text-decoration: none;
  color: inherit;
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

select,
textarea,
input,
button {
  outline: none;
  border: none;
}

button {
  cursor: pointer;
}

input,
textarea,
button,
select,
img,
a {
  border: none;
  outline: none;
  outline-style: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-focus-ring-color: rgba(0, 0, 0, 0);
}

input:focus,
textarea:focus,
button:focus,
select:focus,
img:focus,
a:focus {
  outline: none;
}

input:visited:focus,
textarea:visited:focus,
button:visited:focus,
select:visited:focus,
img:visited:focus,
a:visited:focus {
  outline: none;
}

.footer__container,
.container,
.section-container {
  position: relative;
  max-width: 1440px;
  padding: 0px 144px;
  margin: auto;
}

@media (max-width: 1281px) {

  .footer__container,
  .container,
  .section-container {
    max-width: 1280px;
    padding: 0 10vw;
  }
}

@media (max-width: 1025px) {

  .footer__container,
  .container,
  .section-container {
    max-width: 1024px;
    padding: 0 8vw;
  }
}

@media (max-width: 541px) {

  .footer__container,
  .container,
  .section-container {
    max-width: 540px;
    padding: 0 5vw;
  }
}

html,
body {
  font-family: 'Microsoft JhengHei', 'Open Sans', sans-serif;
  width: 100%;
  background: #f8f8f8;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: none;
  -ms-text-size-adjust: 100%;
}

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

@media (max-width: 1025px) {
  .header-desktop {
    display: none !important;
  }
}

.header {
  position: relative;
  background: #302d2d;
  width: 100%;
  text-align: center;
  z-index: 100;
  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;
}

.logo {
  position: relative;
  margin-top: 25px;
  margin-bottom: 5px;
  display: block;
  width: 180px;
  height: 30px;
}

.logo>img {
  width: 180px;
  height: 30px;
}

.main-menu-wrapper {
  width: 100%;
}

.menu {
  font-size: 0;
  position: relative;
}

.menu__item {
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 15px;
  display: inline-block;
  color: #a6a3a3;
  margin-right: 30px;
  visibility: hidden;
  overflow: hidden;
  height: 1px;
}

.menu__item a {
  position: relative;
}

.menu__item a:after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  height: 1px;
  width: 20px;
  background: #737070;
  opacity: 0;
}

.menu__item a:hover:after {
  opacity: 1;
}

.menu__item:last-child {
  margin-right: 0;
}

.menu__item.active {
  color: #eee;
}

.menu__item.active .submenu {
  opacity: 1;
  pointer-events: all;
}

.menu__item.hover .submenu {
  opacity: 1;
  pointer-events: all;
  z-index: 999;
}

.menu-end {
  position: absolute;
  right: 0;
  bottom: 0;
  font-size: 0;
}

.menu-end>.menu__item-black {
  color: #eee;
  background: #211e1e;
  padding: 10px 15px;
  cursor: pointer;
}

.menu-end>.menu__item-black:hover {
  background: #737070;
}

.menu__item-language {
  cursor: pointer;
  position: relative;
  margin-right: 0;
  padding: 12.5px 20px;
  padding-right: 35px;
}

.menu__item-language ul {
  color: #737070;
}

.menu__item-language:after {
  font-family: 'fontello';
  content: '\f107';
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 15px;
}

.menu__item-language-active {
  color: #eee;
}

.menu__item-language-active .language-dropdown {
  max-height: 200px;
}

@media (max-width: 1025px) {
  .menu__item-language:after {
    position: absolute;
    top: 25px;
  }
}

.language-dropdown {
  position: absolute;
  pointer-events: none;
  width: 100%;
  max-height: 0;
  top: 100%;
  left: 0;
  background: #413c3c;
  font-size: 13px;
  overflow: hidden;
  text-align: center;
  z-index: 100;
}

.language-dropdown li {
  pointer-events: all;
  cursor: pointer;
  padding-top: 5px;
  color: #a6a3a3;
}

.language-dropdown li:last-child {
  padding-bottom: 5px;
}

.language-dropdown li:hover {
  color: #eee;
}

.submenu {
  position: absolute;
  margin-top: 10px;
  left: 0;
  opacity: 0;
  width: 100%;
  background: #413c3c;
  overflow: hidden;
  width: 100%;
  font-size: 0;
  pointer-events: none;
}

.submenu>li {
  position: relative;
  color: #8d8989;
  font-size: 15px;
  display: inline-block;
  padding: 10px 20px;
}

.submenu>li:after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translate(0%, -50%);
  -ms-transform: translate(0%, -50%);
  transform: translate(0%, -50%);
  width: 1px;
  height: calc(100% - 20px);
  background: #737070;
}

.submenu>li:hover>a:after {
  opacity: 1;
}

.submenu>li:last-child:after {
  content: initial;
}

.submenu .active a {
  color: #eee;
}

.submenu a {
  color: #a6a3a3;
}

.submenu a.active {
  color: #eee;
}

.menu-toggle {
  position: relative;
  cursor: pointer;
  width: 20px;
  height: 15px;
  z-index: 999;
  display: none;
}

.menu-toggle .bar {
  width: 100%;
  height: 1px;
  background: #fff;
  -webkit-transition: width 0.3s, -webkit-transform 0.3s;
  transition: width 0.3s, -webkit-transform 0.3s;
  -o-transition: width 0.3s, transform 0.3s;
  transition: width 0.3s, transform 0.3s;
  transition: width 0.3s, transform 0.3s, -webkit-transform 0.3s;
}

.btn-mobile-reserve {
  color: #eee;
  background: #000;
  display: inline-block;
  height: 45px;
  width: 90px;
  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;
  display: none;
  font-size: 14px;
}

.btn-mobile-reserve:hover {
  background: #211e1e;
}

@media (max-width: 541px) {
  .btn-mobile-reserve {
    width: 80px;
    font-size: 14px;
  }
}

.header-scroll {
  padding-bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  position: fixed;
  left: 0;
  top: -50%;
  opacity: 0;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: left;
  z-index: 100;
  -webkit-transition: top 0.5s, opacity 0.5s;
  -o-transition: top 0.5s, opacity 0.5s;
  transition: top 0.5s, opacity 0.5s;
}

.header-scroll.active {
  top: 0;
  opacity: 1;
}

.header-scroll .logo {
  margin: 10px 45px;
  padding: 0;
  position: relative;
  width: 150px;
  height: 25px;
}

.header-scroll .logo>img {
  width: 150px;
  height: 25px;
}

.header-scroll .btn__submenu {
  display: none;
  pointer-events: none;
}

.header-scroll .submenu {
  position: fixed;
  z-index: 100;
  padding-left: 220px;
  background: rgba(0, 0, 0, 0.75);
}

.header-scroll .submenu a {
  color: #b2b0b0;
}

.header-scroll .submenu a.active {
  color: #eee;
  font-weight: bold;
}

.header-scroll .menu__item-black {
  padding: 12.5px 15px;
}

@media (max-width: 1025px) {
  .header-scroll {
    height: 45px;
    top: 0;
    opacity: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 10px 0;
  }

  .header-scroll .submenu {
    background: #413c3c;
  }

  .header-scroll .menu__item a:after {
    display: none;
  }

  .header-scroll .btn-mobile-reserve {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    z-index: 9999;
  }

  .header-scroll>div {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }

  .header-scroll .od1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }

  .header-scroll .od2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .header-scroll .od3 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }

  .header-scroll .menu-toggle {
    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: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-left: 20px;
  }

  .header-scroll .menu-toggle.active .bar:first-child {
    -webkit-transform: translateY(7px) rotate(45deg);
    -ms-transform: translateY(7px) rotate(45deg);
    transform: translateY(7px) rotate(45deg);
  }

  .header-scroll .menu-toggle.active .bar:nth-child(2) {
    width: 0;
  }

  .header-scroll .menu-toggle.active .bar:last-child {
    -webkit-transform: translateY(-7px) rotate(-45deg);
    -ms-transform: translateY(-7px) rotate(-45deg);
    transform: translateY(-7px) rotate(-45deg);
  }

  .header-scroll .logo {
    width: 120px;
    height: 20px;
    margin: 0;
    z-index: 9999;
  }

  .header-scroll .logo>img {
    width: 120px;
    height: 20px;
  }

  .header-scroll .menu-wrap {
    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: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    background: #302d2d;
    position: absolute;
    width: 100%;
    height: calc(100vh - 45px);
    top: 45px;
    left: -100%;
    opacity: 0;
    -webkit-box-shadow: inset 0 7px 9px -7px rgba(0, 0, 0, 0.3);
    box-shadow: inset 0 7px 9px -7px rgba(0, 0, 0, 0.3);
    -webkit-transition: left 0.5s, opacity 0.3s;
    -o-transition: left 0.5s, opacity 0.3s;
    transition: left 0.5s, opacity 0.3s;
    pointer-events: none;
    overflow-y: auto;
  }

  .header-scroll .menu-wrap.active {
    left: 0;
    opacity: 1;
    pointer-events: all;
  }

  .header-scroll .menu {
    padding-bottom: 25px;
  }

  .header-scroll .menu__item {
    position: relative;
    font-size: 16px;
    display: block;
    margin-right: 0;
    padding: 10px 20px;
  }

  .header-scroll .menu__item>a {
    margin: 5px 0;
    display: inline-block;
    width: 50%;
  }

  .header-scroll .btn__submenu {
    position: absolute;
    top: 15px;
    right: 10px;
    width: 40%;
    border: none;
    outline: none;
    background: transparent;
    cursor: pointer;
    font-family: 'fontello';
    text-align: right;
    color: #737070;
    font-size: 16px;
    display: block;
    pointer-events: all;
  }

  .header-scroll .btn__submenu:after {
    position: relative;
    content: '\f105';
  }

  .header-scroll .menu__item-expand.click .btn__submenu:after {
    color: #eee;
    content: '\f107';
  }

  .header-scroll .menu__item-expand.click .submenu {
    opacity: 1;
    max-height: 250px;
  }

  .header-scroll .menu__item-expand.click .submenu>li+li {
    border-top: 1px solid #737070;
  }

  .header-scroll .submenu {
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px);
    width: calc(100% + 40px);
    position: relative;
    max-height: 0;
    margin: 0;
    padding: 0;
    -webkit-transition: max-height 0.5s;
    -o-transition: max-height 0.5s;
    transition: max-height 0.5s;
  }

  .header-scroll .submenu>li {
    display: block;
  }

  .header-scroll .submenu>li>a {
    padding-left: 20px;
  }

  .header-scroll .menu-end {
    text-align: center;
    position: relative;
  }

  .header-scroll .menu__item-language {
    border-top: 1px solid #737070;
  }

  .header-scroll .menu__item-language:after {
    font-family: 'fontello';
    content: '\f105';
    position: absolute;
  }

  .header-scroll .menu__item-language-active:after {
    content: '\f107';
  }

  .header-scroll .menu__item-black {
    display: none;
  }

  .header-scroll .language-dropdown {
    background: transparent;
    position: relative;
  }

  .header-scroll .language-dropdown li {
    padding: 10px 0;
  }

  .header-scroll .language-dropdown li:hover {
    color: #eee;
    background: #413c3c;
  }
}

.header-scroll ::-webkit-scrollbar {
  width: 0;
  display: none;
}

.banner {
  width: 100%;
}

.banner__wrap {
  height: 515px;
  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;
  overflow: hidden;
}

.banner__bg {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.banner__bg>img {
  width: 100%;
  height: 100%;
}

.banner__title {
  font-size: 36px;
  line-height: 40px;
  color: #eee;
  /* text-shadow: 0 0 10px rgba(0, 0, 0, 0.5); */
}

.banner__subbg {
  padding: 50px 20px;
  background: #ededed;
  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;
  z-index: 10;
}

.banner__subtitle {
  font-size: 16px;
  line-height: 20px;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  text-align: center;
  line-height: 1.4;
  max-width: 800px;
}

@media (max-width: 1440px) {
  .banner__wrap {
    height: 450px;
  }
}

@media (max-width: 1025px) {
  .banner {
    margin-top: 90px;
  }

  .banner__wrap {
    height: 400px;
  }

  .banner__subbg {
    padding: 50px 25px;
  }

  .banner.margin-normal {
    margin-top: 45px;
  }
}

@media (max-width: 768px) {
  .banner__subtitle {
    font-size: 14px;
  }

  .banner__title {
    font-size: 26px;
    line-height: 30px;
  }
}

.subbg-dark {
  background: #211e1e;
  color: #eee;
}

.footer {
  position: relative;
  bottom: 0;
  width: 100%;
  padding: 20px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #eee;
  background: #413c3c;
  font-size: 14px;
  letter-spacing: 1px;
  text-align: center;
}

.footer__item {
  display: inline-block;
}

.footer__item-social {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 320px;
  text-align: left;
}

.footer .mobile-top {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 320px;
}

.footer__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.footer .contact-info {
  text-align: left;
}

.footer .contact-info>li {
  line-height: 1.5;
}

.footer .contact-info-tel {
  white-space: nowrap;
}

.footer .contact-info-tel>div {
  display: inline-block;
}

.footer .address {
  display: inline-block;
}

.footer .bd-right {
  border-right: 1.5px solid #eee;
  padding-right: 10px;
  margin-right: 10px;
}

.footer .footer__logo {
  margin: 0px 65px;
}

.footer .footer__logo>img {
  width: 145px;
  height: 65px;
}

.footer .foot__logo-mobile {
  margin-top: 3px;
  display: none;
}

.footer .foot__logo-mobile>img {
  width: 105px;
  height: auto;
}

.footer .socialmedia {
  position: relative;
}

.footer .socialmedia__item {
  display: inline-block;
  margin-right: 10px;
  border: 1px solid #eee;
  border-radius: 50%;
  position: relative;
  width: 50px;
  height: 50px;
}

.footer .socialmedia__item:last-child {
  margin-right: 0;
}

.footer .socialmedia__item:hover {
  border: 1px solid #737070;
}

.footer .socialmedia__item:hover i {
  color: #737070;
}

.footer .socialmedia i {
  position: relative;
  padding: 10px;
  font-size: 26px;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: color 0.3s;
  -o-transition: color 0.3s;
  transition: color 0.3s;
}

.footer .socialmedia .icon-instagram:before {
  -webkit-transform: translate(1px, -2px);
  -ms-transform: translate(1px, -2px);
  transform: translate(1px, -2px);
}

.footer .terms {
  position: absolute;
  right: 5rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  padding-bottom: 5px;
  border-bottom: 1px solid #eee;
}

.footer .terms:hover {
  color: #a6a3a3;
  border-color: #a6a3a3;
}

.footer .terms-mobile {
  position: relative;
  display: none;
}

.footer .terms-mobile:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 84px;
  height: 1px;
  background: #a6a3a3;
}

@media (max-width: 1281px) {
  .footer .terms {
    right: 1rem;
  }
}

@media (max-width: 1025px) {
  .footer {
    display: block;
    padding: 0;
    height: auto;
  }

  .footer .footer__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding: 0;
  }

  .footer .mobile-top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
    padding-left: 10%;
    padding-right: 10%;
    padding-top: 50px;
    padding-bottom: 25px;
  }

  .footer .footer__item-social {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    text-align: center;
    width: 100%;
    background: #302d2d;
    padding-top: 25px;
    padding-left: 10%;
    padding-right: 10%;
    padding-bottom: 25px;
  }

  .footer .footer__logo {
    display: none;
  }

  .footer .foot__logo-mobile {
    display: block;
  }

  .footer .contact-info-tel>div {
    display: block;
  }

  .footer .bd-right {
    border: none;
    padding: 0;
    margin: 0;
  }

  .footer .terms {
    display: none;
  }

  .footer .terms-mobile {
    display: block;
  }

  .footer .address {
    display: block;
  }
}

@media (max-width: 541px) {
  .footer {
    font-size: 13px;
  }

  .footer .foot__logo-mobile>img {
    width: 70px;
  }

  .footer .contact-info {
    padding-left: 10px;
  }

  .footer .mobile-top {
    padding-left: 5%;
    padding-right: 5%;
    padding-top: 30px;
    padding-bottom: 25px;
  }

  .footer .footer__item-social {
    width: 100%;
    background: #302d2d;
    padding-top: 25px;
    padding-left: 5%;
    padding-right: 5%;
    padding-bottom: 25px;
  }

  .footer .socialmedia__item {
    margin-right: 10px;
    border: 1px solid #eee;
    width: 40px;
    height: 40px;
  }

  .footer .socialmedia i {
    padding: 10px;
    font-size: 20px;
  }

  .footer .icon-gplus {
    margin-right: 0;
    -webkit-transform: initial;
    -ms-transform: initial;
    transform: initial;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.container__title {
  font-size: 24px;
  line-height: 30px;
}

.section-container {
  padding-top: 80px;
  padding-bottom: 80px;
}

.section-container:last-child {
  padding-bottom: 100px;
}

.section-container__title {
  width: 100%;
  text-align: center;
  font-size: 28px;
  line-height: 30px;
  margin-bottom: 20px;
}

@media (max-width: 1281px) {
  .section-container__title {
    font-size: 24px;
    line-height: 30px;
  }
}

@media (max-width: 541px) {
  .section-container__title {
    font-size: 20px;
    line-height: 20px;
  }
}

@media (max-width: 1025px) {
  .section-container {
    padding-top: 80px;
    padding-bottom: 40px;
  }
}

@media (max-width: 541px) {
  .section-container {
    padding-top: 60px;
    padding-bottom: 20px;
  }
}

.imgLiquidFill {
  height: 100%;
  width: 100%;
}

.mCustomScrollbar {
  -ms-touch-action: pinch-zoom pan-y !important;
  touch-action: pinch-zoom pan-y !important;
}

body[data-aos-delay='mobile-delay0'] [data-aos],
[data-aos][data-aos][data-aos-delay='banner-mobile'] {
  -webkit-transition-delay: 500ms;
  -o-transition-delay: 500ms;
  transition-delay: 500ms;
}

body[data-aos-delay='banner-title-mobile'] [data-aos],
[data-aos][data-aos][data-aos-delay='banner-title-mobile'] {
  -webkit-transition-delay: 1000ms;
  -o-transition-delay: 1000ms;
  transition-delay: 1000ms;
}

[data-aos='fade-up-custom'] {
  opacity: 0;
  -webkit-transform: translateY(10px);
  -ms-transform: translateY(10px);
  transform: translateY(10px);
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  -o-transition-property: transform, opacity;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
}

[data-aos='fade-up-custom'].aos-animate {
  opacity: 1;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

@media (max-width: 1025px) {

  body body[data-aos-delay='mobile-delay0'] [data-aos],
  body [data-aos][data-aos][data-aos-delay='banner-mobile'] {
    -webkit-transition-delay: 0ms;
    -o-transition-delay: 0ms;
    transition-delay: 0ms;
  }

  body body[data-aos-delay='banner-title-mobile'] [data-aos],
  body [data-aos][data-aos][data-aos-delay='banner-title-mobile'] {
    -webkit-transition-delay: 500ms;
    -o-transition-delay: 500ms;
    transition-delay: 500ms;
  }
}


/* Modifed at 2024/4/22 */

.header {
    background-color: #fff;
    align-items: start;
}

.header:after {
    content: "";
    background-color: #2e8495;
    display: block;
    width: 100%;
    height: 5px;
    position: absolute;
    left: 0;
    bottom: -5px;
}

.header .logo {
    margin-top: 30px;
    margin-left: 30px;
}

.header.header-scroll .logo {
    margin-top: 12px;
    margin-left: 30px;
}

.header.header-scroll .logo img {
    width: 140px;
    height: 22px;
}

@media (max-width: 1025px) {
    .header .logo {
        margin-top: 5px !important;
        margin-left: 0px !important;
    }
}

.header .menu-toggle {
    display: none !important;
}

.header .btn-mobile-reserve {
    display: none !important;
}

.menu__item {
    visibility: hidden;
    overflow: hidden;
    height: 1px;
}

.banner {
    position: relative;
}

.banner__wrap {
    height: 600px;

}

@media (max-width: 1440px) {
    .banner__wrap {
        height: 540px;
    }
}

@media (max-width: 1025px) {
    .banner__wrap {
        height: 490px;
    }
}

.banner__title {
    display: none;
}

.banner__subbg  {
    padding: 30px 12px;
    background-color: #2e8495e0;
    color: #fff;
    position: absolute;
    z-index: 1;
    left: 0;
    bottom: 0;
    width: 100%;
}

.banner__subtitle {
    max-width: 900px;
}

.footer {
    background-color: #2e8495;
}

.footer .terms {
    display: none !important;
}


@media (max-width: 1025px) {
    .footer .footer__item-social {
        background-color: #1d6b7a;
    }
}

.mobile-nav.menu__item-news {
    display: none;
}

.main > .inner > .mainpage > .banner {
    margin-top: 0;
}

#news-layout {
    min-height: 600px;
    display: flex;
}

#news-layout * {
    font-family: 'Microsoft JhengHei', 'Open Sans', sans-serif !important;
}

#news-layout .empty {
    text-align: center;
    width: 100%;
    padding-top: 50px;
}

#news-layout .article {
    flex: 1 1 auto;
    margin-right: 50px;
}

@media (max-width: 1025px) {
    #news-layout {
        flex-direction: column;
    }

    #news-layout .article {
        margin-right: 0;
        margin-bottom: 50px;
    }

    #news-layout .sidebar {
        max-width: none !important;
    }
}

#news-layout .article .caption {
    font-size: 30px;;
    font-weight: bold;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #dfdfdf;
}

#news-layout .article .files {
    border-top: 1px solid #dfdfdf;
    border-bottom: 1px solid #dfdfdf;
    padding: 30px 0;
    margin-top: 30px;
}

#news-layout .article .items .item {
    display: flex;
    color: #555;
    font-size: 15px;
}

#news-layout .article .items .item ~ .item {
    border-top: 1px dotted #dfdfdf;
    padding-top: 15px;
}

#news-layout .article .items .item:hover {
    color: #cc0000;
    color: #13802b;
}

#news-layout .article .items .item .center {
    flex: 1 1 auto;
    margin: 0 5px;
    margin-right: 10px;;
}

#news-layout .article .items .item ~ .item {
    margin-top: 12px;
}

#news-layout .article .items .item .type {
    display: inline-block;
    background-color: #cc0000;
    color: #fff;
    border-radius: 5px;
    padding: 3px 10px;
    white-space: nowrap;
    margin-right: 5px;
    text-transform: uppercase;
    min-width: 60px;
    text-align: center;
}

#news-layout .article .items .item:hover .type {
    background-color: #13802b;
}

#news-layout .article .items .item .subject {
    display: inline-block;
}

#news-layout .article .items .item .button {
    display: inline-block;
    background-color: #000;
    color: #fff;
    border-radius: 5px;
    padding: 3px 10px;
    white-space: nowrap;
}

#news-layout .sidebar {
    min-width: 300px;
    max-width: 300px;
    height: inherit;
    display: flex;
    flex-direction: column;
}

@media (max-width: 1280px) {

    #news-layout .sidebar {
        min-width: 250px;
        max-width: 250px;
    }
}

#news-layout .sidebar .caption {
    font-size: 22px;;
    font-weight: bold;
}

#news-layout .sidebar .list {
    background-color: #554f4f;
    background-color: #fff;
    box-shadow: 0 0 20px 0 rgba(0,0,0, .02);
    height: 100%;
    height: inherit;
    margin-top: 20px;
    flex: 1 1 auto;
    border-radius: 10px;
}

#news-layout .sidebar .list .items {
    padding: 25px 20px;
}

#news-layout .sidebar .list .items .item {
    display: block;
    padding: 15px 15px;
    color: #888;
    border-radius: 5px;
    font-size: 15px;
}

#news-layout .sidebar .list .items .item ~ .item {
    border-top: 1px solid #eee;
}

#news-layout .sidebar .list .items .item:hover,
#news-layout .sidebar .list .items .item.active {
    color: #fff;
    background-color: #9f7d73;
}

#news-layout .contents h1 {
    font-size: 138.5%;
}

#news-layout .contents h2 {
    font-size: 123.1%;
}

#news-layout .contents h3 {
    font-size: 108%;
}

#news-layout .contents h1,
#news-layout .contents h2,
#news-layout .contents h3 {
    margin: 1em 0;
}

#news-layout .contents h1,
#news-layout .contents h2,
#news-layout .contents h3,
#news-layout .contents h4,
#news-layout .contents h5,
#news-layout .contents h6,
#news-layout .contents strong {
    font-weight: bold;
}

#news-layout .contents abbr,
#news-layout .contents acronym {
    border-bottom: 1px dotted #000;
    cursor: help;
}

#news-layout .contents em {
    font-style: italic;
}

#news-layout .contents blockquote,
#news-layout .contents ul,
#news-layout .contents ol,
#news-layout .contents dl {
    margin: 1em;
}

#news-layout .contents ol,
#news-layout .contents ul,
#news-layout .contents dl {
    margin-left: 2em;
}

#news-layout .contents ol li {
    list-style: decimal outside;
}

#news-layout .contents ul li {
    list-style: disc outside;
}

#news-layout .contents dl dd {
    margin-left: 1em;
}

#news-layout .contents th,
#news-layout .contents td {
    border: 1px solid #000;
    padding: .5em;
}

#news-layout .contents th {
    font-weight: bold;
    text-align: center;
}

#news-layout .contents caption {
    margin-bottom: .5em;
    text-align: center;
}

#news-layout .contents p,
#news-layout .contents fieldset,
#news-layout .contents table {
    margin-bottom: 1em;
}

.banner__wrap {
    height: auto !important;
}

.banner__wrap .for-mobile {
    display: none;
}

@media (max-width: 1025px) {
    .banner__wrap .for-desktop {
        display: none;
    }
    .banner__wrap .for-mobile {
        display: block;
    }
    .banner__subbg {
        position: relative;
    }
    .main > .inner > .mainpage > .banner {
        margin-top: 45px;
    }
}