/*google fonts 仿宋體*/
@import url(https://fonts.googleapis.com/earlyaccess/cwtexfangsong.css);
/*font-family: ‘cwTeXFangSong’, serif;*/
/*google fonts 思源黑體*/
@import url(https://fonts.googleapis.com/earlyaccess/notosanstc.css);
/*font-family: ‘Noto Sans TC’, sans-serif;*/
/*adobe 字型 思源宋體*/
@import url("https://use.typekit.net/uvj6ngt.css");
:root {
  --white: #fff;
  --black: #000;
  --brown: #7a6a56;
  --red: #eb3341;
  --gold: #98836a;
  --goose: #ffe8c5;
  --timeline-gradient: rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 0) 100%;
}
/*--          # General          --*/
body {
  font-family: ‘Noto Sans TC’, sans-serif;
  color: var(black);
}
a {
  text-decoration: none;
  color: #00424e;
}
a:hover {
  color: #008ba4;
  text-decoration: none;
}
h1, h2, h3, h4, h5, h6 {
  font-family: "Raleway", sans-serif;
}
/*--          # Back to top button          --*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #00836c;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}
.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}
.back-to-top:hover {
  background: #7a003d;
  color: #fff;
}
.back-to-top.active {
  visibility: visible;
  opacity: 1;
}
/*--          # Preloader          --*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  width: 2000px;
  height: 2000px;
  overflow: hidden;
  background: linear-gradient(to right bottom, #00435e, #badde1);
}
#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 16px solid #00435e;
  border-top-color: #badde1;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}
@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*--          # Disable aos animation delay on mobile devices          --*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}
/*--          # Header          --*/
#header {
  background: rgba(255, 255, 255, 1);
  transition: all 0.5s;
  z-index: 997;
  height: 70px;
}
#header.header-scrolled {
  background: rgba(255, 255, 255, 0.8);
  top: 0;
}
#header .logo img {
  max-height: 50px;
  height: 45px;
}
.header-inner-pages {
  background: rgba(5, 87, 158, 0.9) !important;
}
.topbar-inner-pages {
  background: rgba(6, 98, 178, 0.9) !important;
}
@media (max-width:576px) {
  #header .logo img {
    max-height: 50px;
    height: 40px;
  }
}
/*--          # Navigation Menu          --*/
/*-- Desktop Navigation --*/
.navbar {
  padding: 0;
}
.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}
.navbar li {
  position: relative;
}
.navbar > ul > li {
  position: relative;
  white-space: nowrap;
  padding: 10px 0 10px 24px;
}
.navbar a, .navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3px;
  font-size: 1rem;
  color: rgba(15, 40, 72, 0.7);
  white-space: nowrap;
  transition: 0.3s;
  position: relative;
}
.navbar a i, .navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}
.navbar > ul > li > a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: #f6b024;
  visibility: hidden;
  width: 0px;
  transition: all 0.3s ease-in-out 0s;
}
.navbar a:hover:before, .navbar li:hover > a:before, .navbar .active:before {
  visibility: visible;
  width: 100%;
}
.navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
  color: #0f2848;
}
.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 8px;
}
.navbar .dropdown ul li {
  min-width: 200px;
}
.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  color: #032e54;
}
.navbar .dropdown ul a i {
  font-size: 12px;
}
.navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover > a {
  color: #0880e8;
}
.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}
.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}
.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}
@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }
  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}
/** Mobile Navigation */
.mobile-nav-toggle {
  color: #00435e;
  font-size: 2rem;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}
.mobile-nav-toggle.bi-x {
  color: #f0e1c2;
  font-size: 3rem;
}
@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }
  .navbar ul {
    display: none;
  }
}
.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(60, 115, 90, 0.9), rgba(15, 40, 70, 0.9));
  transition: 0.3s;
  z-index: 999;
}
.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}
.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 60px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 10px;
  overflow-y: auto;
  transition: 0.3s;
}
.navbar-mobile > ul > li {
  padding: 0;
  margin-bottom: 2px;
}
.navbar-mobile a, .navbar-mobile a:focus {
  padding: 15px 20px;
  font-size: 1.375rem;
  color: #f0e1c2;
  /*	font-family: source-han-serif-tw-subset, sans-serif;*/
  background: linear-gradient(to right, #005c72, #017995);
  display: block;
  text-align: center;
  letter-spacing: .2rem;
  transition: .3s;
}
.navbar-mobile a:hover:before, .navbar-mobile li:hover > a:before, .navbar-mobile .active:before {
  visibility: hidden;
}
.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
  color: #FFFFFF;
  background: linear-gradient(to right, #55a6aa, #91beab);
}
.navbar-mobile .getstarted, .navbar-mobile .getstarted:focus {
  margin: 15px;
}
.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}
.navbar-mobile .dropdown ul li {
  min-width: 200px;
}
.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}
.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}
.navbar-mobile .dropdown ul a:hover, .navbar-mobile .dropdown ul .active:hover, .navbar-mobile .dropdown ul li:hover > a {
  color: #f6b024;
}
.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}
/*--          # Hero Section          --*/
#hero {
  width: 100%;
  overflow: hidden;
  position: relative;
  background: url("../img/hero-bg.jpg") top center no-repeat;
  background-size: 100%;
  z-index: 99;
  transition: 0.3s;
}
#hero .hero-zone {
  position: relative;
  height: 650px;
  text-align: left;
}
#hero .hero-title img {
  width: 90%;
}
#hero .hero-zone .title-bar {
  width: 90%;
  text-align: center;
}
#hero .hero-zone h2 {
  color: #fff;
  letter-spacing: .6rem;
  margin: 2.2rem 0 1rem 0;
  font-size: 2rem;
  font-weight: 700;
  font-family: source-han-serif-tw-subset, sans-serif;
  position: relative;
  padding-bottom: .4rem;
  display: inline-block;
}
#hero .hero-zone h2::after {
  position: absolute;
  content: "";
  background: #FFF;
  width: 100%;
  height: 1px;
  bottom: 0;
  left: 0;
}
#hero .hero-zone h3 {
  color: #fff;
  margin: 0 0 .5rem 0;
  padding: 0 0 .4rem 0;
  font-size: 1.8rem;
  font-weight: 500;
  font-family: source-han-serif-tw-subset, sans-serif;
  letter-spacing: .6rem;
  position: relative;
  display: inline-block;
}
#hero .hero-zone h3::after {
  position: absolute;
  content: "";
  background: #FFF;
  width: 100%;
  height: 1px;
  bottom: 0;
  left: 0;
}
#hero .hero-zone h4 {
  color: #fff;
  letter-spacing: .6rem;
  margin: 1rem 0 0 17%;
  font-size: 1.375rem;
  font-weight: 500;
  padding-bottom: .5rem;
  font-family: source-han-serif-tw-subset, sans-serif;
  position: relative;
  display: inline-block;
}
#hero .hero-zone .hero-books img {
  width: 90%;
  margin: 1rem 10% 0 0;
  position: relative;
}
#hero .hero-zone .books-tag {
  position: absolute;
  width: 60px;
  right: 2%;
  top: 60%;
}
#hero p {
  width: 80%;
  animation-delay: 0.4s;
  margin: 0 auto 30px auto;
  color: #fff;
}
#hero .hero-logo-lk {
  text-align: right;
}
#hero .hero-logo-lk img {
  width: 150px;
}
#hero .hide-web {
  display: none;
}
#hero .hero-cta {
  background: url("../img/hero-ctaBg.png") center center no-repeat;
  background-size: 100%;
  z-index: 100;
  transition: 0.3s;
  height: 360px;
  margin-bottom: -60px;
  position: relative;
}
#hero .hero-cta h3 {
  position: relative;
  display: inline-block;
  padding: 1.5rem 2rem;
  margin-top: 0px;
  color: #f2f2f2;
  font-family: source-han-serif-tw-subset, sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  text-shadow: 0 5px 18px rgba(0, 0, 0, .6);
  letter-spacing: .2rem;
  animation: lights 5s 750ms linear infinite;
}
@keyframes lights {
  0% {
    color: hsl(0, 100%, 100%);
    text-shadow:
      0 0 1em hsla(320, 100%, 50%, 0.2), 0 0 0.125em hsla(320, 100%, 60%, 0.3), -1em -0.125em 0.5em hsla(40, 100%, 60%, 0), 1em 0.125em 0.5em hsla(200, 100%, 60%, 0);
  }
  30% {
    color: hsl(0, 80%, 95%);
    text-shadow:
      0 0 1em hsla(320, 100%, 50%, 0.5), 0 0 0.125em hsla(320, 100%, 60%, 0.5), -0.5em -0.125em 0.25em hsla(40, 100%, 60%, 0.2), 0.5em 0.125em 0.25em hsla(200, 100%, 60%, 0.8);
  }
  40% {
    color: hsl(70, 100%, 95%);
    text-shadow:
      0 0 1em hsla(320, 100%, 50%, 0.5), 0 0 0.125em hsla(320, 100%, 90%, 0.5), -0.25em -0.125em 0.125em hsla(40, 100%, 60%, 0.2), 0.25em 0.125em 0.125em hsla(200, 100%, 60%, 0.6);
  }
  70% {
    color: hsl(0, 100%, 98%);
    text-shadow:
      0 0 1em hsla(320, 100%, 50%, 0.5), 0 0 0.125em hsla(320, 100%, 60%, 0.7), 0.5em -0.125em 0.25em hsla(40, 100%, 60%, 0.2), -0.5em 0.125em 0.25em hsla(200, 100%, 60%, 0.4);
  }
  100% {
    color: hsl(0, 100%, 100%);
    text-shadow:
      0 0 1em hsla(320, 100%, 50%, 0.2), 0 0 0.125em hsla(320, 100%, 60%, 0.3), 1em -0.125em 0.5em hsla(40, 100%, 60%, 0), -1em 0.125em 0.5em hsla(200, 100%, 60%, 0);
  }
}
#hero .hero-cta h3::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 70px;
  background-color: var(--white);
  left: 5px;
  top: -5px;
}
#hero .hero-cta h3::after {
  position: absolute;
  content: "";
  width: 160px;
  height: 1px;
  background-color: var(--white);
  top: 5px;
  left: -5px;
}
#hero .hero-cta span {
  position: relative;
  padding-right: 2rem;
  padding-bottom: 1.5rem;
}
#hero .hero-cta span::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 70px;
  background-color: var(--white);
  right: 5px;
  bottom: -5px;
}
#hero .hero-cta span::after {
  position: absolute;
  content: "";
  width: 160px;
  height: 1px;
  background-color: var(--white);
  right: -5px;
  bottom: 5px;
}
@media (min-width:1440px) {
  #hero {
    background: url("../img/hero-bg.jpg") top center no-repeat;
  }
  #hero .hero-zone {
    height: 650px;
    margin-top: 3rem;
  }
  #hero .hero-title img {
    margin-top: 1rem;
  }
  #hero .hero-cta {
    height: 400px;
    margin-bottom: -60px;
    background-size: cover;
  }
}
@media (max-width:1440px) {
  #hero {
    background: url("../img/hero-bg.jpg") top center no-repeat;
    background-size: cover;
  }
  #hero .hero-cta {
    background: url("../img/hero-ctaBg.png") top center no-repeat;
    background-size: cover;
    z-index: 100;
    transition: 0.3s;
    height: 360px;
    margin-bottom: -60px;
  }
}
@media (max-width: 1200px) {
  #hero .hero-zone {
    height: 600px;
  }
  #hero .hero-title img {
    width: 100%;
    margin-top: 3rem;
  }
  #hero .hero-zone .hero-books img {
    width: 95%;
    margin: 1rem 5% 0 0;
    position: relative;
  }
  #hero .hero-zone .books-tag {
    width: 50px;
    right: -1%;
    top: 60%;
  }
  #hero .hero-zone .title-bar {
    width: 100%;
    text-align: center;
    margin-top: 2rem;
  }
  #hero .hero-zone h2 {
    margin: 2rem 0 1rem 0;
  }
  #hero .hero-zone h3 {
    margin: 0 0 .5rem 0;
    font-size: 1.5rem;
  }
  #hero .hero-zone h4 {
    margin: 1rem 0 0 10%;
  }
}
@media (max-width: 992px) {
  #hero .hero-zone {
    height: 500px;
  }
  #hero .hero-zone .hero-books img {
    width: 100%;
    margin: 1rem 0 0 0;
    position: relative;
  }
  #hero .hero-zone .books-tag {
    position: absolute;
    width: 50px;
    right: 0rem;
    top: 1.5rem;
  }
  #hero .hero-zone h2 {
    margin: 2rem 0 1rem 0;
    letter-spacing: .2rem;
    font-size: 1.8rem;
  }
  #hero .hero-zone h3 {
    margin: 0 0 .5rem 0;
    font-size: 1.5rem;
    letter-spacing: .1rem;
  }
  #hero .hero-zone h4 {
    margin: 1rem 0 0 0;
    letter-spacing: 0.2rem;
  }
  #hero .hero-cta {
    z-index: 100;
    transition: 0.3s;
    height: 300px;
    margin-bottom: -60px;
  }
  #hero .hero-cta h3 {
    position: relative;
    display: inline-block;
    padding: 1.5rem 2rem;
    color: #fefefe;
    margin-top: 0px;
    font-family: source-han-serif-tw-subset, sans-serif;
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    text-shadow: 0 5px 18px rgba(0, 0, 0, .6);
    letter-spacing: .2rem;
  }
}
@media (max-width: 768px) {
  /*
	#hero .hero-mobile {
		background: url("../img/hero-coverMobile.png");
		background-position:  110% -40%;
		background-repeat: no-repeat;
		background-size: 600px;
	}
*/
  #hero .hero-title {
    display: none;
  }
  #hero .hide-mobile {
    display: none;
  }
  #hero .hide-web {
    display: block;
  }
  #hero .hero-zone {
    height: 400px;
  }
  #hero .hero-zone .title-bar {
    width: 100%;
    text-align: center;
  }
  #hero .hero-zone h2 {
    margin: 1rem 0 1rem 0;
    letter-spacing: .2rem;
    font-size: 1.625rem;
    text-shadow: 0 3px 5px rgba(0, 0, 0, .7);
  }
  #hero .hero-zone h3 {
    margin: 0 0 .5rem 0;
    font-size: 1.375rem;
    letter-spacing: .2rem;
  }
  #hero .hero-zone h3 font {
    display: none;
  }
  #hero .hero-zone h3 span {
    display: block;
  }
  #hero .hero-zone .books-tag {
    position: absolute;
    width: 45px;
    right: 0rem;
    top: 1.2rem;
  }
  #hero .hero-cta {
    z-index: 100;
    transition: 0.3s;
    height: 200px;
    margin-bottom: -60px;
    position: relative;
  }
  #hero .hero-cta h3 {
    position: relative;
    display: block;
    padding: 1rem 1rem;
    color: #fefefe;
    width: 100%;
    margin: 20px auto 0;
    font-family: source-han-serif-tw-subset, sans-serif;
    font-size: 2rem;
    line-height: 2.8rem;
    font-weight: 700;
    text-align: center;
    text-shadow: 0 2px 8px rgba(0, 0, 0, .6);
    letter-spacing: .2rem;
  }
  #hero .hero-cta h3 font {
    display: block;
  }
  #hero .hero-cta h3::before {
    content: none;
    position: absolute;
    width: 1px;
    height: 100px;
    background-color: var(--white);
    left: 5px;
    top: calc(50% - 60px);
  }
  #hero .hero-cta h3::after {
    position: absolute;
    content: none;
    width: 160px;
    height: 1px;
    background-color: var(--white);
    top: 5px;
    left: -5px;
  }
  #hero .hero-cta span {
    position: relative;
    padding-right: 24rem;
    padding-bottom: 0rem;
  }
  #hero .hero-cta span::before {
    content: none;
    position: absolute;
    width: 1px;
    height: 70px;
    background-color: var(--white);
    right: 5px;
    bottom: 0px;
  }
  #hero .hero-cta span::after {
    position: absolute;
    content: none;
    width: 160px;
    height: 1px;
    background-color: var(--white);
    right: -5px;
    bottom: 25px;
  }
}
@media (max-width:576px) {
  /*
	#hero .hero-mobile {
		background: url("../img/hero-coverMobile.png");
		background-position:20px 15%;
		background-repeat: no-repeat;
		background-size: 120%;
	}
*/
  #hero .hero-zone {
    height: 361px;
  }
  #hero .hero-zone .books-tag {
    position: absolute;
    width: 35px;
    right: 0rem;
    top: 1.2rem;
  }
  #hero .hero-title img {
    width: 140px;
    margin: 50px 0 0 0;
  }
  #hero .hero-zone h2 {
    margin: 1rem 0 1rem 0;
    letter-spacing: .2rem;
    font-size: 1.5rem;
    text-shadow: 0 3px 5px rgba(0, 0, 0, .7);
  }
  #hero .hero-zone h3 {
    margin: 0 0 0 0;
    font-size: 1.25rem;
    letter-spacing: .2rem;
    line-height: 2rem;
  }
  /*
	#hero .hero-zone h3 span {
		display: block;
	}
*/
  #hero .hero-zone h3::after {
    content: none;
  }
  #hero .hero-cta h3 {
    position: relative;
    display: block;
    padding: 1rem 0;
    color: #fefefe;
    width: 100%;
    margin: 3rem auto 0;
    font-family: source-han-serif-tw-subset, sans-serif;
    font-size: 1.8rem;
    line-height: 2.8rem;
    font-weight: 700;
    text-align: center;
    text-shadow: 0 2px 8px rgba(0, 0, 0, .6);
    letter-spacing: .2rem;
  }
}
/*--          # Sections General          --*/
section {
  padding: 60px 0;
  overflow: hidden;
}
.section-title-a {
  text-align: center;
  padding-bottom: 30px;
  z-index: 300;
}
.section-title-a h2 {
  font-family: source-han-serif-tw-subset, sans-serif;
  font-size: 2.4rem;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  background-color: #00475a;
  display: inline-block;
  letter-spacing: .4rem;
  padding: 1rem 2rem 1rem 2.4rem;
  color: #FFF;
  position: relative;
}
.section-title-a h2::before {
  position: absolute;
  content: "";
  width: 90%;
  height: 1px;
  top: 8px;
  left: 5%;
  background: #eee6bd;
}
.section-title-a h2::after {
  position: absolute;
  content: "";
  width: 90%;
  height: 1px;
  bottom: 8px;
  left: 5%;
  background: #eee6bd;
}
.section-title-a span {
  position: relative;
  padding: 1rem 0 1rem 0;
  margin: 0;
}
.section-title-a span::before {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  top: 0;
  left: -1.4rem;
  background: #eee6bd;
}
.section-title-a span::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  top: 0;
  right: -1.4rem;
  background: #eee6bd;
}
.section-title p {
  margin-bottom: 0;
  font-style: italic;
}
@media (max-width: 992px) {
  .section-title-a h2 {
    font-size: 2rem;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 20px;
    background-color: #00475a;
    display: inline-block;
    letter-spacing: .2rem;
    padding: 1rem 2rem 1rem 2.4rem;
    color: #FFF;
    position: relative;
  }
}
@media (max-width:768px) {
  .section-title-a h2 {
    font-size: 1.5rem;
    margin-bottom: 0px;
    padding: 1rem 1rem 1rem 1.2rem;
  }
  .section-title-a span::before {
    background: none;
  }
  .section-title-a span::after {
    background: none;
  }
}
/*--          # Icon Boxes          --*/
.icon-boxes {
  padding-top: 0;
  position: relative;
  z-index: 100;
}
.icon-boxes .icon-box {
  padding: 40px 30px;
  position: relative;
  overflow: hidden;
  background: #fff;
  box-shadow: 5px 10px 29px 0 rgba(68, 88, 144, 0.2);
  transition: all 0.3s ease-in-out;
  border-radius: 10px;
}
.icon-boxes .icon {
  margin: 0 auto 20px auto;
  display: inline-block;
  text-align: center;
}
.icon-boxes .icon i {
  font-size: 36px;
  line-height: 1;
  color: #f6b024;
}
.icon-boxes .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}
.icon-boxes .title a {
  color: #05579e;
}
.icon-boxes .description {
  font-size: 15px;
  line-height: 28px;
  margin-bottom: 0;
  color: #777777;
}
/*--          # classic          --*/
.classic {
  background: url("../img/classic-bg.jpg") center center fixed;
  margin-top: -55px;
  z-index: 400;
  margin-bottom: -120px;
}
.classic .classic-card {
  position: relative;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding: 0;
  background: #fff;
}
.classic .classic-card .pic {
  overflow: hidden;
  width: 100%;
}
.classic .classic-card .pic img {
  transition: ease-in-out 0.3s;
}
.classic .classic-card:hover img {
  transform: scale(1.1);
}
.classic .classic-card .member-info {
  padding: 20px;
  min-height: 150px;
}
.classic .classic-card h4 {
  font-family: source-han-sans-traditional, sans-serif;
  text-align: center;
  line-height: 2.2rem;
  font-weight: 500;
  margin-bottom: 5px;
  font-size: 1.5rem;
  color: #353232;
}
@media (min-width:1440px) {
  .classic {
    margin-top: -50px;
    z-index: 400;
  }
}
@media (max-width:768px) {
  .classic .classic-card .member-info {
    padding: 15px;
    min-height: auto;
  }
  .classic .classic-card h4 {
    line-height: 1.8rem;
    font-weight: 500;
    margin-bottom: 0;
    font-size: 1.125rem;
    color: #353232;
  }
}
/*--          # author          --*/
.author {
  padding: 240px 0 0;
  background: url("../img/author-bg.jpg") top center no-repeat;
  background-size: cover;
}
.author .author-pic {
  width: 70%;
  margin: 2rem auto;
  text-align: center;
}
.author .author-pic img {
  border-radius: 30px;
  box-shadow: 0 5px 35px rgba(0, 0, 0, .2);
}
.author .content {
  padding: 10px 0 30px 0;
}
.author .content h3 {
  font-family: source-han-sans-traditional, sans-serif;
  font-weight: 500;
  font-size: 1.875rem;
  letter-spacing: .15rem;
  color: #01434f;
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 18px;
  display: inline-block;
}
.author .content h3::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #00424e;
  bottom: 0;
  left: 0;
}
.author .content h4 {
  font-size: 1.875rem;
  font-weight: 700;
  margin-top: 5px;
}
.author .content .content-scroll {
  height: 280px;
  overflow-y: scroll;
}
.author .content .content-scroll p {
  font-size: 1.25rem;
  line-height: 2.2rem;
  color: #000;
}
/* width */
.author .content .content-scroll::-webkit-scrollbar {
  width: 10px;
}
/* Track */
.author .content .content-scroll::-webkit-scrollbar-track {
  box-shadow: inset 0 0 4px rgba(0, 0, 0, .1);
  background: rgba(160, 110, 70, .1);
  border-radius: 10px;
}
/* Handle */
.author .content .content-scroll::-webkit-scrollbar-thumb {
  background: rgba(160, 110, 70, .5);
  border-radius: 10px;
}
/* Handle on hover */
.author .content .content-scroll::-webkit-scrollbar-thumb:hover {
  background: rgba(160, 110, 70, .9);
}
.author .accordion-list {
  padding: 0 50px;
}
.author .accordion-list ul {
  padding: 0;
  list-style: none;
  margin-top: 2rem;
}
.author .accordion-list li {
  padding: 0;
}
.author .accordion-list a {
  display: block;
  position: relative;
  font-size: 1.125rem;
  line-height: 24px;
  font-weight: 300;
  padding-right: 30px;
  outline: none;
  cursor: pointer;
}
.author .accordion-list i {
  font-size: 1.5rem;
  position: absolute;
  left: 100px;
  top: 0;
  color: #1a554d;
}
.author .accordion-list p {
  margin-bottom: 0;
  padding: 10px 0 20px 0;
  font-size: 1.25rem;
  line-height: 2.2rem;
  color: #000;
}
.author .accordion-list .icon-show {
  display: none;
}
.author .accordion-list a.collapsed {
  color: #1a554d;
}
.author .accordion-list a.collapsed:hover {
  color: #1a554d;
}
.author .accordion-list a.collapsed .icon-show {
  display: inline-block;
}
.author .accordion-list a.collapsed .icon-close {
  display: none;
}
.author-special {
  background-color: rgba(254, 232, 207, .5);
  margin: 1.5rem 0;
  width: 100%;
  border-radius: 30px;
  padding: 20px;
}
.author-special .author-pic img {}
.author-special .content {
  padding: 10px 0;
}
.author-special .content h4 {
  font-size: 1.5rem;
}
.author-special .content p {
  font-size: 1.25rem;
  line-height: 2.2rem;
  color: #000;
}
.author-special a.btn-more {
  color: #01434f;
}
.author-special a {
  padding-left: 0px;
  position: relative;
  font-weight: 300;
  font-size: 1.125rem;
}
.author-special a i {
  font-size: 1.5rem;
  position: absolute;
  left: 100px;
  top: 0;
  color: #01434f;
}
@media (max-width: 1400px) {
  .author .author-pic {
    width: 90%;
    margin: 2rem auto;
  }
  .author-special .content {
    padding: 30px 20px 0 20px;
  }
  .author .content .content-scroll {
    height: 320px;
    overflow-y: scroll;
  }
}
@media (max-width: 1200px) {
  .author .content, .author .accordion-list {
    padding-left: 0;
    padding-right: 0;
  }
  .author .content .content-scroll {
    height: 200px;
    overflow-y: scroll;
  }
  .author-special {
    margin: 1.5rem 0 0;
    width: 100%;
    border-radius: 30px;
    padding: 10px 20px 20px;
  }
  .author-special a {
    padding-left: 0px;
  }
  .author-special a i {
    font-size: 1.5rem;
    position: absolute;
    left: 100px;
    top: 0;
    color: #1a554d;
  }
}
@media (max-width: 992px) {
  .author .content {
    padding-top: 0px;
  }
  .author .accordion-list {
    padding-bottom: 30px;
  }
  .author-special {
    margin: 1rem 0 0;
    width: 100%;
    border-radius: 30px;
    padding: 20px;
  }
}
@media (max-width:768px) {
  .author {
    padding: 100px 0 0;
    background: url("../img/author-bg.jpg") center center no-repeat;
    background-size: cover;
  }
  .author .author-pic {
    width: 50%;
    margin: .5rem;
    text-align: left;
  }
  .author .author-pic img, .author-special .author-pic img {
    border-radius: 10px;
    box-shadow: 0 5px 35px rgba(0, 0, 0, .2);
  }
  .author .content {
    padding: 10px 0;
  }
  .author .content h3 {
    font-size: 1.5rem;
    letter-spacing: .15rem;
    color: #01434f;
    position: relative;
    padding-top: 10px;
    padding-bottom: 12px;
    margin-bottom: 12px;
    display: block;
  }
  .author .content h4, .author-special .content h4 {
    font-size: 1.375rem;
    font-weight: 700;
    margin-top: 5px;
  }
  .author .content .content-scroll {
    height: 180px;
    overflow-y: scroll;
  }
  .author .content .content-scroll p, .author-special .content p {
    font-size: 1.125rem;
    line-height: 2rem;
    color: #000;
  }
  .author-special .content span {
    display: none;
  }
  .author .d-flex {
    flex-direction: column;
  }
  .author-special {
    background-color: rgba(254, 232, 207, .5);
    margin: 1rem 0 0 0;
    width: 100%;
    border-radius: 30px 30px 0 0;
    padding: 10px;
  }
}
/*--          # analyze          --*/
.analyze {
  padding: 60px 0;
  background: url("../img/analyze-bg.jpg") center center no-repeat;
  position: relative;
  background-size: cover;
}
.analyze .container {
  position: relative;
}
.analyze .section-title h2 {
  text-align: center;
  font-size: 2.4rem;
  color: #352700;
  font-family: source-han-serif-tw-subset, sans-serif;
  font-weight: 700;
  position: relative;
  display: block;
  padding-top: 1.4rem;
  letter-spacing: 0.3rem;
}
.analyze .content {
  margin: 2rem;
  text-align: center;
}
.analyze ul.analyze-nav {
  width: 60%;
  margin: 0 auto;
  padding: 0;
  text-align: center;
}
.analyze ul.analyze-nav li {
  list-style: none;
  padding: 0;
  margin: 0;
  float: left;
}
.analyze ul.analyze-nav li a {
  position: relative;
  writing-mode: vertical-rl;
  text-orientation: upright;
  letter-spacing: 0.5rem;
  margin: 20px 10px;
  text-align: center;
  height: 420px;
  width: 90px;
  display: block;
  color: #027a9b;
  padding: 0 1.4rem 0 0rem;
  transition: 0.3s;
  font-family: source-han-serif-tw-subset, sans-serif;
  font-size: 1.875rem;
  font-weight: 600;
  background-color: rgba(255, 255, 255, .8);
}
.analyze ul.analyze-nav li a:hover {
  height: 460px;
  margin: 0px 10px;
  color: #000;
  background-color: rgba(255, 255, 255, 1);
  box-shadow: 0 6px 24px rgba(0, 0, 0, .16);
}
.analyze .content p:last-child {
  margin-bottom: 0;
}
.analyze .modal-analyze {
  margin-top: 100px;
}
.modal-analyze .modal-content {
  border-radius: 0;
}
.modal-analyze .modal-header {
  background: linear-gradient(to right, #123e3a, #175744);
  border-radius: 0;
}
.modal-analyze .modal-header .modal-title {
  color: #FFF;
  font-family: source-han-serif-tw-subset, sans-serif;
  letter-spacing: .2rem;
  text-align: center;
}
.modal-analyze .modal-title h4 {
  text-align: center;
  font-size: 1.75rem;
}
.modal-analyze .modal-header button.btn-close {
  color: #FFF;
}
.modal-analyze .modal-body {
  padding: 30px 40px;
  font-size: 1.25rem;
  line-height: 2.4rem;
  letter-spacing: .1rem;
  background-color: #fefdfd;
}
@media (min-width:1440px) {
  .analyze .modal-analyze {
    margin-top: 150px;
  }
}
@media (max-width: 1400px) {
  .analyze ul.analyze-nav {
    width: 70%;
    margin: 0 0 0 17%;
  }
}
@media (max-width: 1200px) {
  .analyze ul.analyze-nav {
    width: 80%;
    margin: 0 0 0 10%;
  }
  .analyze .content {
    margin: 1rem;
    text-align: center;
  }
}
@media (max-width: 992px) {
  .analyze ul.analyze-nav {
    width: 90%;
    margin: 0 0 0 5%;
  }
  .analyze .content {
    margin: 1rem;
    text-align: center;
  }
  .analyze ul.analyze-nav li a {
    position: relative;
    writing-mode: vertical-rl;
    text-orientation: upright;
    letter-spacing: 0.5rem;
    margin: 20px 10px;
    text-align: center;
    height: 320px;
    width: 70px;
    display: block;
    color: #027a9b;
    padding: 0 1rem 0 0rem;
    transition: 0.3s;
    font-family: source-han-serif-tw-subset, sans-serif;
    font-size: 1.625rem;
    font-weight: 600;
    background-color: rgba(255, 255, 255, .8);
  }
  .analyze ul.analyze-nav li a:hover {
    height: 360px;
    margin: 0px 10px;
    color: #000;
    background-color: rgba(255, 255, 255, 1);
    box-shadow: 0 6px 24px rgba(0, 0, 0, .16);
  }
}
@media (max-width: 768px) {
  .analyze ul.analyze-nav {
    width: 80%;
    margin: 0 auto;
  }
  .analyze .content {
    margin: 0;
    text-align: center;
  }
  .analyze ul.analyze-nav li {
    text-align: center;
    margin: 0 auto;
    float: none;
  }
  .analyze ul.analyze-nav li a {
    position: relative;
    writing-mode: horizontal-tb;
    text-orientation: upright;
    letter-spacing: 0.2rem;
    margin: 5px auto;
    text-align: center;
    height: 60px;
    width: 320px;
    display: block;
    color: #027a9b;
    padding: .5rem;
    transition: 0.3s;
    font-family: source-han-serif-tw-subset, sans-serif;
    font-size: 1.625rem;
    font-weight: 600;
    background-color: rgba(255, 255, 255, .8);
  }
  .analyze ul.analyze-nav li a:hover {
    width: 350px;
    height: 60px;
    margin: 5px auto;
    padding: .5rem;
    color: #000;
    background-color: rgba(255, 255, 255, 1);
    box-shadow: 0 6px 24px rgba(0, 0, 0, .16);
  }
}
@media (max-width:576px) {
  .analyze .section-title h2 {
    text-align: center;
    font-size: 1.8rem;
    color: #352700;
    font-family: source-han-serif-tw-subset, sans-serif;
    font-weight: 700;
    position: relative;
    display: block;
    padding-top: 0;
    letter-spacing: 0.3rem;
  }
  .analyze .section-title h2 span {
    display: block;
    margin-top: .5rem;
  }
  .analyze ul.analyze-nav {
    width: 100%;
    margin: 20px auto 0;
    text-align: center;
  }
  .analyze ul.analyze-nav li {
    text-align: center;
    margin: 0 auto;
    float: none;
  }
  .analyze ul.analyze-nav li a {
    position: relative;
    writing-mode: horizontal-tb;
    text-orientation: upright;
    letter-spacing: 0.1rem;
    margin: 4px auto;
    text-align: center;
    height: 50px;
    width: 300px;
    display: block;
    color: #027a9b;
    padding: .2rem;
    transition: 0.3s;
    font-family: source-han-serif-tw-subset, sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    background-color: rgba(255, 255, 255, .8);
  }
  .analyze ul.analyze-nav li a:hover {
    width: 320px;
    height: 50px;
    margin: 4px 0;
    padding: .2rem;
    color: #000;
    background-color: rgba(255, 255, 255, 1);
    box-shadow: 0 6px 24px rgba(0, 0, 0, .16);
  }
  .modal-analyze .modal-body {
    padding: 20px;
    font-size: 1.125rem;
    line-height: 2.2rem;
    letter-spacing: .1rem;
    background-color: #fefdfd;
    text-align: justify;
    text-justify: inter-word;
  }
}
/*--          # preview          --*/
.preview {
  background: url("../img/preview-bg.jpg") center center fixed;
  padding: 80px;
  position: relative;
  display: none;
}
.preview-slider {
  width: 100%;
  height: 100%;
  position: relative;
}
.preview-slider .swiper-slide {
  width: 100%;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.preview-slider .swiper-slide img {
  opacity: 0.5;
  transition: 0.3s;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.preview .swiper-slide:hover img {
  opacity: 1;
}
.preview .swiper-pagination {
  margin-top: 20px;
  position: relative;
}
.preview .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #0880e8;
}
.preview .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #0880e8;
}
/*--          # story          --*/
.story {
  background: url("../img/story-bg.jpg") top center fixed;
  background-size: cover;
  padding: 60px 0;
  position: relative;
}
.story2 {
  background: url("../img/activity-bg.jpg") top center fixed;
  background-size: cover;
  padding: 60px 0;
  position: relative;
}
.story .section-title-a p {
  font-size: 1.75rem;
  font-style: normal;
  text-align: center;
}
.story .story-img {
  margin-bottom: 2rem;
  position: relative;
  z-index: 10;
}
.story .story-img img {
  border-radius: 20px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, .4);
}
.story .story-line01, .story .story-line02, .story .story-line03, .story .story-line04 {
  margin-bottom: 2rem;
  position: relative;
  z-index: 5;
}
.story .story-line01::before {
  position: absolute;
  content: "";
  background: url("../img/story-line.svg");
  transform: rotate(270deg);
  top: -30px;
  left: -140px;
  width: 200px;
  height: 200px;
}
.story .story-line02::after {
  position: absolute;
  content: "";
  background: url("../img/story-line.svg");
  transform: rotate(160deg);
  top: -5px;
  right: -90px;
  width: 200px;
  height: 200px;
}
.story .story-line03::before {
  position: absolute;
  content: "";
  background: url("../img/story-line.svg");
  transform: rotate(300deg);
  top: 5px;
  left: -120px;
  width: 200px;
  height: 200px;
}
.story .story-line04::before {
  position: absolute;
  content: "";
  background: url("../img/story-line.svg");
  transform: rotate(140deg);
  top: 10px;
  right: -90px;
  width: 200px;
  height: 200px;
}
.story .story-img > span {
  position: relative;
  z-index: 1;
}
.story .story-box {
  margin-bottom: 20px;
  padding: 50px 40px 0 40px;
  z-index: 50 !important;
}
.story .story-box i {
  float: left;
  color: #f6b024;
  font-size: 40px;
  line-height: 0;
}
.story .story-box h4 {
  position: relative;
  font-weight: 700;
  margin-bottom: 15px;
  padding-bottom: 12px;
  font-size: 1.75rem;
  display: inline-block;
  letter-spacing: .1rem;
}
.story .story-box h4::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #4cc05b;
  bottom: 0;
  left: 0;
}
.story .story-box h4 a {
  color: #05579e;
  transition: 0.3s;
}
.story .story-box h4 a:hover {
  color: #0880e8;
}
.story .story-box p {
  line-height: 2rem;
  font-size: 1.25rem;
  margin-bottom: .6rem;
}
.story .note {
  text-align: center;
  color: #c09252;
  font-size: .9375rem;
}
.story2 .note {
  text-align: center;
  color: #c09252;
  font-size: .9375rem;
}
@media (max-width:1400px) {
  .story .story-box {
    margin-bottom: 20px;
    padding: 30px 40px 0 40px;
    z-index: 50 !important;
  }
}
@media (max-width:1200px) {
  .story .story-box {
    margin-bottom: 10px;
    padding: 10px;
    z-index: 50 !important;
  }
  .story .story-box h4 {
    position: relative;
    font-weight: 700;
    margin-bottom: 15px;
    padding-bottom: 12px;
    font-size: 1.625rem;
    display: inline-block;
    letter-spacing: .1rem;
  }
  .story .story-box p {
    line-height: 1.8rem;
    font-size: 1.125rem;
    margin-bottom: .6rem;
  }
  @media (max-width:992px) {
    .story .col-sm-2 {
      display: none;
    }
    .story .section-title-a p {
      font-size: 1.5rem;
      font-style: normal;
      text-align: center;
    }
    .story .story-line01::before {
      position: absolute;
      content: "";
      background: url("../img/story-line.svg");
      transform: rotate(12deg);
      top: 113px;
      left: -170px;
      width: 200px;
      height: 200px;
    }
    .story .story-line02::after {
      position: absolute;
      content: "";
      background: url("../img/story-line.svg");
      transform: rotate(250deg);
      top: 115px;
      right: -190px;
      width: 200px;
      height: 200px;
    }
    .story .story-line03::before {
      position: absolute;
      content: "";
      background: url("../img/story-line.svg");
      transform: rotate(190deg);
      top: 55px;
      left: -180px;
      width: 200px;
      height: 200px;
    }
    .story .story-line04::before {
      background: none;
    }
  }
}
@media (max-width:768px) {
  .story .col-sm-2 {
    display: none;
  }
  .story .section-title-a p {
    font-size: 1.25rem;
    font-style: normal;
    text-align: center;
    margin: 10px 0;
  }
  .story .story-img {
    margin: 0 0 1rem 0;
    position: relative;
    z-index: 10;
    width: 85%;
  }
  .story .story-img-left {
    margin-left: 25%;
  }
  .story .story-img-right {
    margin-left: -10%;
  }
  .story .story-img img {
    border-radius: 20px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, .4);
  }
  .story .story-line01::before {
    position: absolute;
    content: "";
    transform: rotate(270deg);
    top: -30px;
    left: -140px;
    width: 240px;
    height: 240px;
  }
  .story .story-line02::after {
    position: absolute;
    content: "";
    transform: rotate(160deg);
    top: -260px;
    right: -190px;
    width: 240px;
    height: 240px;
  }
  .story .story-line03::before {
    position: absolute;
    content: "";
    transform: rotate(290deg);
    top: -195px;
    left: -190px;
    width: 240px;
    height: 240px;
  }
  .story .story-line04::before {
    position: absolute;
    content: "";
    background: url("../img/story-line.svg");
    transform: rotate(150deg);
    top: -157px;
    right: -150px;
    width: 240px;
    height: 240px;
  }
  .story .story-box p {
    line-height: 1.8rem;
    font-size: 1.125rem;
    margin-bottom: .4rem;
  }
}
@media (max-width:576px) {
  .story .story-img {
    margin-bottom: 10px;
  }
  .story .story-line01::before {
    position: absolute;
    content: "";
    transform: rotate(270deg);
    top: -30px;
    left: -105px;
    width: 220px;
    height: 220px;
  }
  .story .story-line02::after {
    position: absolute;
    content: "";
    transform: rotate(150deg);
    top: -255px;
    right: -135px;
    width: 220px;
    height: 220px;
  }
  .story .story-line03::before {
    position: absolute;
    content: "";
    transform: rotate(300deg);
    top: -240px;
    left: -150px;
    width: 240px;
    height: 240px;
  }
  .story .story-line04::before {
    position: absolute;
    content: "";
    background: url("../img/story-line.svg");
    transform: rotate(150deg);
    top: -183px;
    right: -130px;
    width: 240px;
    height: 240px;
  }
}
/*--          # First Cta          --*/
.cta {
  background: linear-gradient(rgba(5, 74, 133, 0.8), rgba(5, 74, 133, 0.9)), url("../img/cta-bg.jpg") fixed center center;
  background-size: cover;
  padding: 120px 0;
}
.cta h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}
.cta p {
  color: #fff;
}
.cta .cta-btn {
  text-transform: uppercase;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.5px;
  display: inline-block;
  padding: 8px 26px;
  border-radius: 2px;
  transition: 0.5s;
  margin: 10px;
  border-radius: 50px;
  border: 2px solid #f6b024;
  color: #fff;
}
.cta .cta-btn:hover {
  background: #f6b024;
}
@media (max-width: 1024px) {
  .cta {
    background-attachment: scroll;
  }
}
@media (min-width: 769px) {
  .cta .cta-btn-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
}
/*--          # Cta-b          --*/
.cta-b {
  background: url("../img/cta-bgb.jpg") center center;
  background-size: cover;
  padding: 80px 0;
  box-shadow: 0 8px 40px rgba(0, 0, 0, .4);
}
.cta-b h3 {
  color: #fff;
  font-family: source-han-serif-tw-subset, sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  text-shadow: 0 5px 18px rgba(0, 0, 0, .4);
  letter-spacing: .2rem;
}
.cta-b p {
  color: #fff;
}
@media (max-width: 1024px) {
  .cta-b {
    background-attachment: scroll;
  }
}
@media (min-width: 769px) {
  .cta-b {
    padding: 40px 0;
  }
  .cta-b .cta-btn-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
}
/*--          # Portfoio          --*/
#portfolio {
  padding: 40px 0;
}
.portfoio #portfolio-flters {
  padding: 0;
  margin: 0 auto 25px auto;
  list-style: none;
  text-align: center;
  border-radius: 50px;
}
.portfoio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 18px 10px 18px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  color: #444444;
  margin: 0 3px 10px 3px;
  transition: all ease-in-out 0.3s;
  border-radius: 50px;
}
.portfoio #portfolio-flters li:hover, .portfoio #portfolio-flters li.filter-active {
  color: #fff;
  background: #0880e8;
}
.portfoio #portfolio-flters li:last-child {
  margin-right: 0;
}
.portfoio .portfolio-item {
  margin-bottom: 30px;
  overflow: hidden;
}
.portfoio .portfolio-item img {
  position: relative;
  top: 0;
  box-shadow: 0 0 10px rgba(0, 0, 0, .05);
  transition: all 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.portfoio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: -50px;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  background: linear-gradient(to top, rgba(29, 115, 138, .9) 20%, rgba(29, 115, 138, .5));
  padding: 15px 20px;
}
.portfoio .portfolio-item .portfolio-info h4 {
  font-size: 1.25rem;
  color: #fff;
  font-weight: 600;
}
.portfoio .portfolio-item .portfolio-info p {
  color: #fff;
  font-size: 14px;
  margin-bottom: 0;
}
.portfoio .portfolio-item .portfolio-info .preview-link {
  position: absolute;
  right: 15px;
  font-size: 1.5rem;
  top: calc(50% - 18px);
  color: white;
  transition: ease-in-out 0.3s;
}
.portfoio .portfolio-item .portfolio-info .preview-link:hover {
  color: #1d738a;
}
.portfoio .portfolio-item:hover img {
  top: -30px;
}
.portfoio .portfolio-item:hover .portfolio-info {
  opacity: 1;
  bottom: 0;
}
@media (max-width:768px) {
  .portfoio {
    background-color: #f8f4f1;
  }
  .portfoio .portfolio-item .portfolio-info {
    display: none;
  }
  .portfoio .portfolio-item:hover img {
    opacity: .6;
    top: 0;
  }
  .glightbox-clean .gclose, .glightbox-clean .gnext, .glightbox-clean .gprev {
    background-color: rgba(0, 0, 0, .32)
  }
  .glightbox-clean .gclose:hover, .glightbox-clean .gnext:hover, .glightbox-clean .gprev:hover {
    background-color: rgba(0, 0, 0, .7)
  }
  .glightbox-clean .gprev {
    top: 45%
  }
  .glightbox-clean .gnext {
    top: 45%
  }
  .glightbox-clean .description-left .gdesc-inner, .glightbox-clean .description-right .gdesc-inner {
    position: absolute;
    height: 100%;
    overflow-y: auto;
    bottom: 0;
  }
  .gdesc-open .gdesc-inner {
    padding-bottom: 10px;
  }
  .glightbox-clean .gdesc-inner {
    padding: 0;
  }
  .gslide-description {
    padding-bottom: 10px !important;
  }
}
/*--          # sale          --*/
.sale {
  background: linear-gradient(to bottom, #3f5b8f, #FFFFFF);
  box-shadow: inset 0 10px 18px rgba(0, 0, 0, .3);
}
.sale .sale-title {
  text-align: center;
  margin: 2rem auto;
}
.sale .sale-title h2 {
  background-color: #FFF;
  font-weight: 500;
  display: inline-block;
  padding: 15px 10px 5px;
  min-height: 78px;
  letter-spacing: .2rem;
  position: relative;
  z-index: 50;
}
.sale .sale-title span {
  font-family: ar-udjingxiheib5, sans-serif;
  font-size: 2.625rem;
  margin: 0 .2rem;
  color: #d72819;
}
.sale .sale-title span.sale-dis {
  color: #029bc4;
}
.sale .sale-title h2::before {
  position: absolute;
  content: url("../img/saleTitle-bg.svg");
  width: 215px;
  height: 78px;
  top: 0;
  left: -210px;
  z-index: 30;
}
.sale .sale-title h2::after {
  position: absolute;
  content: url("../img/saleTitle-bgR.svg");
  width: 215px;
  height: 78px;
  top: 0;
  right: -210px;
  z-index: 30;
}
.sale .box {
  text-align: center;
  border-radius: 5px;
  position: relative;
  overflow: hidden;
  letter-spacing: .1rem;
}
.sale h3 {
  font-weight: 700;
  padding: 20px 15px;
  font-family: source-han-serif-tw-subset, sans-serif;
  font-size: 2rem;
  color: #04091c;
  margin: 1rem 0;
  display: inline-block;
  position: relative;
}
.sale span.package {
  font-size: 1.375rem;
  font-family: "Poppins", sans-serif;
  padding: 4px 10px;
  border-radius: 6px;
  font-weight: 500;
  background-color: #da382b;
  color: #FFF;
  position: absolute;
  left: -3rem;
  top: 1.6rem;
}
.sale h4 {
  font-size: 1.6rem;
  color: #c72300;
  font-weight: 500;
  margin-bottom: 10px;
  min-height: 5rem;
}
.sale .price-tag {
  font-size: 1.625rem;
  letter-spacing: normal;
  margin-bottom: 1rem;
}
.sale .price-tag span {
  font-size: 2.25rem;
  font-weight: 500;
  color: #d72819;
}
.sale h4 span {
  padding: .5rem 0;
  color: #333333;
  font-size: 1.125rem;
  font-weight: 300;
  display: block;
}
.sale ul {
  padding: 0;
  list-style: none;
  text-align: center;
}
.sale ul li {
  padding-bottom: .6rem;
}
.sale ul li a.btn-buy {
  width: 50%;
  font-size: 1.25rem;
  border-radius: 10px;
  padding: 5px;
  background-color: #FFF;
  border: 1px solid #b8b8b8;
  color: #333333;
  transition: 0.3s;
}
.sale ul li a.btn-buy:hover {
  background-color: #ff7360;
  width: 55%;
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.12);
  color: #FFF;
}
.sale .featured span.package {
  background-color: #006b88;
}
.sale .featured h4 {
  color: #00576f;
}
.sale .featured ul li a.btn-buy:hover {
  background-color: #0085a9;
}
.sale .table-gifts {
  width: 80%;
  margin: 10px auto;
  z-index: 1;
  font-size: 1rem;
  padding: 0;
  background: linear-gradient(to right, #0085a9, #94bfab);
  color: #fff;
}
.table-gifts table {
  width: 100%;
  border-collapse: collapse;
}
.table-gifts table thead tr th {
  text-align: center;
}
.table-gifts table tbody tr {
  border-bottom: 1px solid rgba(148, 191, 171, .5);
}
.table-gifts table thead tr th, .table-gifts table tbody tr td {
  padding: 8px;
  text-align: center;
}
.table-gifts table tbody tr td:first-child {
  color: #000000;
  text-align: center;
  font-size: 1.125rem;
}
.table-gifts table tbody tr td {
  color: #007b9c;
  font-weight: 700;
  font-size: 1.125rem;
}
.table-gifts tbody tr:nth-child(1) {
  background-color: rgba(255, 255, 255, .95);
}
.table-gifts tbody tr:nth-child(2) {
  background-color: rgba(255, 255, 255, .90);
}
.table-gifts tbody tr:nth-child(3) {
  background-color: rgba(255, 255, 255, .85);
}
.table-gifts tbody tr:nth-child(4) {
  background-color: rgba(255, 255, 255, .80);
}
.sale .table-gifts tbody tr:nth-child(5) {
  background-color: rgba(255, 255, 255, .75);
}
.sale .table-gifts tbody tr:nth-child(6) {
  background-color: rgba(255, 255, 255, .70);
}
.table-gifts table i {
  color: #dd5542;
  font-size: 1.8rem;
  font-weight: 900;
  padding: 0;
  margin: 0;
  vertical-align: text-bottom;
}
@media (max-width:992px) {
  .sale .sale-title h2 {
    padding: 10px 5px 5px;
    min-height: 70px;
    letter-spacing: .1rem;
  }
  .sale .sale-title span {
    font-family: ar-udjingxiheib5, sans-serif;
    font-size: 2.625rem;
    margin: 0 .1rem;
    color: #d72819;
  }
  .sale .sale-title span.sale-dis {
    color: #029bc4;
  }
  .sale .sale-title h2::before {
    width: 193px;
    height: 70px;
    left: -190px;
  }
  .sale .sale-title h2::after {
    width: 193px;
    height: 70px;
    right: -190px;
  }
  .sale span.package {
    font-size: 1.125rem;
    padding: 2px 8px;
    border-radius: 6px;
    font-weight: 500;
    background-color: #da382b;
    color: #FFF;
    position: absolute;
    left: -2rem;
    top: 1rem;
  }
  .sale h3 {
    padding: 10px 15px;
    font-size: 2rem;
  }
  .sale h4 {
    font-size: 1.5rem;
    color: #c72300;
    font-weight: 500;
    margin-bottom: 10px;
  }
  .sale ul li a.btn-buy {
    width: 70%;
  }
  .sale ul li a.btn-buy:hover {
    width: 75%;
  }
  .sale .table-gifts {
    width: 100%;
  }
}
@media (max-width:768px) {
  .sale .sale-title h2 {
    padding: 10px 5px 5px;
    min-height: 70px;
    letter-spacing: .1rem;
    border-radius: 10px;
    font-size: 1.25rem;
  }
  .sale .sale-title span {
    font-family: ar-udjingxiheib5, sans-serif;
    font-size: 2.625rem;
    margin: 0 .1rem;
    color: #d72819;
  }
  .sale .sale-title span.sale-dis {
    color: #029bc4;
  }
  .sale .sale-title h2::before {
    content: none;
  }
  .sale .sale-title h2::after {
    content: none;
  }
  .sale .sale-title font {
    display: block;
  }
}
/*--          # issue          --*/
.issue-sp {
  background: url("../img/issue-sp-bg.jpg") center top fixed;
  background-size: cover;
  position: relative;
  padding: 60px 0;
}
.issue-sp .issue-sp-img {
  margin: 2rem auto;
  text-align: center;
}
.issue-sp .issue-sp-img img {
  width: 55%;
}
.issue-sp .section-title h2 {
  font-size: 2.4rem;
  color: #352700;
  font-family: source-han-serif-tw-subset, sans-serif;
  font-weight: 700;
  position: relative;
  display: block;
  padding-top: 1.4rem;
  padding-bottom: 1.2rem;
  letter-spacing: 0.3rem;
  text-align: center;
}
.issue-sp .content {
  padding: 1rem 0 0 0;
}
.issue-sp .content h4 {
  font-size: 2rem;
  color: #352700;
  margin-bottom: 2rem;
}
.issue-sp .content font {
  font-size: 1.25rem;
}
.issue-sp .content span.price {
  color: #af0000;
  font-size: 1.875em;
  font-family: ar-udjingxiheib5, sans-serif;
  padding-left: .5rem;
  padding-right: .5rem;
}
.issue-sp .content p {
  color: #202020;
  font-size: 1.25rem;
  line-height: 2.4rem;
}
.issue-sp a.btn-more {
  font-size: 1.125rem;
  font-weight: 300;
  position: relative;
}
.issue-sp a.btn-more i {
  font-size: 1.5rem;
  position: absolute;
  left: 100px;
  top: 0;
  color: #1a554d;
}
@media (max-width: 1400px) {
  .issue-sp .issue-sp-img {
    margin-top: 2rem;
  }
  .issue-sp .issue-sp-img img {
    width: 65%;
  }
}
@media (max-width: 1200px) {
  .issue-sp .issue-sp-img {
    margin-top: 2rem;
  }
  .issue-sp .issue-sp-img img {
    width: 90%;
  }
}
@media (max-width:992px) {
  .issue-sp .section-title h2 {
    font-size: 2rem;
  }
  .issue-sp .issue-sp-img img {
    width: 95%;
  }
  .issue-sp .content font {
    display: block;
    font-size: 1.25rem;
  }
  .issue-sp .hide-mobile {
    display: none;
  }
}
@media (max-width:768px) {
  .issue-sp .issue-sp-img {
    margin: .5rem auto;
  }
  .issue-sp .issue-sp-img img {
    width: 50%;
  }
  .issue-sp .content font {
    display: block;
    font-size: 1.25rem;
  }
}
@media (max-width:576px) {
  .issue-sp .section-title h2 {
    font-size: 1.8rem;
    color: #352700;
    font-family: source-han-serif-tw-subset, sans-serif;
    font-weight: 700;
    position: relative;
    display: block;
    padding-top: 0;
    padding-bottom: 1.2rem;
    letter-spacing: 0.3rem;
    text-align: center;
  }
}
/*--          # activity          --*/
.activity {
  background: url("../img/activity-bg.jpg") center center fixed;
  background-size: 100%;
  padding: 60px 0 40px;
}
.activity .activity-pic {
  width: 90%;
  margin: 1rem 5%;
}
.activity .activity-pic img {
  box-shadow: 0 6px 10px rgba(0, 0, 0, .2);
  width: 100%;
}
.activity .content {
  width: 100%;
  margin: 0 auto;
}
.activity .content h3 {
  font-size: 2.2rem;
  color: #352700;
  font-family: source-han-serif-tw-subset, sans-serif;
  font-weight: 700;
  position: relative;
  padding-top: .4rem;
  padding-bottom: 1.4rem;
  letter-spacing: 0.3rem;
  text-align: center;
  margin-bottom: 1.5rem;
}
.activity .content h3::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #47878c;
  bottom: 0;
  left: 0;
}
.activity .content h3 span {
  font-size: 2rem;
  letter-spacing: .2rem;
}
.activity .content h3 font {
  font-size: 1.25rem;
  letter-spacing: normal;
}
.activity .content h4 {
  color: #333333;
  font-weight: 200;
  font-size: 2rem;
  font-family: source-han-sans-traditional, sans-serif;
  letter-spacing: 0.15rem;
}
.activity .content h4 font {
  font-size: 1rem;
}
.activity .content h4 span.active-date {
  /*
	background-color: #47878c;
	color: var(--white);
*/
  padding: 0px 5px;
  font-size: 1.5rem;
}
.activity .content .active-add {
  margin: 1rem 0;
  font-size: 1.125rem;
}
.activity .content .active-add i {
  margin-left: .5rem;
  font-size: 1.5rem;
  color: #ff7360;
}
.activity .content p {
  font-size: 1.25rem;
  line-height: 2.2rem;
}
.activity a.btn-act {
  display: block;
  background: linear-gradient(to right, #136277, #248095);
  width: 100%;
  margin-top: 2rem;
  padding: .4rem;
  text-align: center;
  color: #ffd8ba;
  font-size: 1.5rem;
  letter-spacing: .2rem;
  transition: .3s;
}
.activity a.btn-act:hover {
  background: linear-gradient(to right, #6d2418, #aa4b37);
  color: #ffebdc;
}
@media (max-width: 1200px) {
  .activity .content {
    width: 100%;
    margin: 0;
  }
  .activity .content h3 {
    font-size: 2.2rem;
    padding-top: 0;
    padding-bottom: 1rem;
    letter-spacing: 0.3rem;
  }
  .activity .content h4 {
    font-size: 2rem;
    font-family: source-han-sans-traditional, sans-serif;
    letter-spacing: 0.15rem;
  }
  .activity .content p {
    font-size: 1.25rem;
    line-height: 1.8rem;
  }
  .activity a.btn-act {
    display: block;
    background-color: #136277;
    width: 80%;
    margin-top: 1rem;
    padding: .2rem;
    text-align: center;
    color: #ffd8ba;
    font-size: 1.375rem;
    letter-spacing: .2rem;
  }
}
@media (max-width: 992px) {
  .activity .activity-pic {
    width: 100%;
    margin: 0;
  }
  .activity .content h3 {
    font-size: 1.8rem;
    padding-top: 0;
    padding-bottom: .5rem;
    letter-spacing: 0.3rem;
  }
  .activity .content h3 span {
    font-size: 1.375rem;
    letter-spacing: .1rem;
  }
  .activity .content h3 font {
    font-size: 1.125rem;
    letter-spacing: normal;
  }
  .activity .content h4 {
    font-size: 1.625rem;
    font-family: source-han-sans-traditional, sans-serif;
    letter-spacing: 0.15rem;
  }
  .activity .content h4 span.active-date {
    padding: 0px 3px;
    font-size: 1.375rem;
  }
  .activity .content .active-add {
    margin: 1rem 0;
    font-size: 1rem;
  }
  .activity .content .active-add i {
    margin-left: .2rem;
    font-size: 1.25rem;
    color: #ff7360;
  }
  .activity .content p {
    font-size: 1.125rem;
    line-height: 1.6rem;
  }
  .activity a.btn-act {
    display: block;
    background-color: #136277;
    width: 100%;
    margin-top: .5rem;
    margin-bottom: 2rem;
    padding: .1rem;
    text-align: center;
    color: #ffd8ba;
    font-size: 1.25rem;
    letter-spacing: .2rem;
  }
}
@media (max-width: 768px) {
  .activity {
    padding: 40px 0;
  }
  .activity .activity-pic {
    width: 90%;
    margin: 1rem auto;
  }
  .activity .content {
    margin: 0 auto;
    width: 100%;
  }
  .activity .content h3 {
    font-size: 1.5rem;
    padding-top: 0;
    padding-bottom: .8rem;
    letter-spacing: 0.3rem;
    margin: .5rem;
  }
  .activity .content h4 span.active-date {
    padding: 0px 3px;
    font-size: 1.25rem;
  }
  .activity .content .active-add {
    margin: 1rem 0;
    font-size: 1rem;
  }
  .activity a.btn-act {
    display: inline-block;
    background-color: #136277;
    width: 100%;
    margin: 10px auto;
    padding: .1rem;
    text-align: center;
    color: #ffd8ba;
    font-size: 1.25rem;
    letter-spacing: .2rem;
  }
}
/*--          # Cta-c          --*/
.cta-c {
  background: url("../img/cta-bgc.jpg") center center no-repeat;
  background-size: 100%;
  padding: 80px 0;
}
.cta-c h3 {
  color: #fff;
  font-family: source-han-serif-tw-subset, sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  text-shadow: 0 5px 18px rgba(0, 0, 0, .4);
  letter-spacing: .2rem;
}
.cta-c p {
  color: #fff;
}
@media (max-width: 1400px) {
  .cta-c {
    background: url("../img/cta-bgc.jpg") center center no-repeat;
    background-size: cover;
    padding: 80px 0;
  }
}
@media (max-width: 1400px) {
  .cta-c h3, .cta-b h3 {
    font-size: 1.5rem;
  }
}
@media (max-width: 992px) {
  .cta-c {
    padding: 60px 0;
  }
  .cta-c h3, .cta-b h3 {
    font-size: 1.3rem;
    line-height: 2.8rem;
  }
  .cta-c h3 span {
    display: block;
  }
}
@media (min-width: 769px) {
  .cta-c .cta-btn-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
}
/*--          # Footer          --*/
#footer {
  padding: 40px;
  background: #103a48;
}
#footer .footer-logo {
  padding: 10px 0 5px 0;
}
#footer .footer-logo img {
  margin-bottom: 10px;
  width: 200px;
  padding-bottom: 10px;
  border-bottom: 1px solid #7b6a54;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, .3));
}
#footer .footer-links {
  margin: 0;
  width: 200px;
  text-align: center;
}
#footer .footer-links a {
  color: #ceb099;
  opacity: 0.5;
  font-size: 1.5rem;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
  width: 30%;
}
#footer .footer-links a:hover {
  opacity: 0.8;
}
#footer .footer-content h3 {
  font-size: 1rem;
}
#footer .footer-content {
  color: #ceb099;
}
#footer .copyright {
  font-size: 0.9375rem;
  line-height: 1.6rem;
}
#footer .copyright a {
  color: #ceb099;
  text-decoration: underline;
}
#footer .credits {
  float: right;
  font-size: 13px;
}
#footer .credits a {
  transition: 0.3s;
}
@media (max-width: 768px) {
  #footer .footer-logo {
    padding: 10px 0 5px 0;
    margin: 0 auto;
    text-align: center;
  }
  #footer .footer-links {
    margin: 0 auto;
    width: 200px;
    text-align: center;
  }
  #footer .footer-content {
    text-align: center;
    margin-top: 20px;
  }
  #footer .footer-content span {
    display: block;
  }
  #footer .footer-bottom {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  #footer .copyright, #footer .credits {
    text-align: center;
    float: none;
  }
  #footer .credits {
    padding-top: 4px;
  }
}
/*  rellax */
.rellax-img {
  position: relative;
  z-index: 101;
}
.rellax-img img {
  position: absolute;
  padding: 10px;
}
.rellax-img img.img-start {
  left: 0;
}
.rellax-img img.img-end {
  right: 0;
}
.rellax-img .rotate {
  transform: rotate(180deg);
}
.w-5 {
  width: 5%;
}
.w-10 {
  width: 10%;
}
.w-14 {
  width: 14%;
}
.w-18 {
  width: 18%;
}
.w-22 {
  width: 22%;
}
.w-26 {
  width: 26%;
}
.z-front {
  z-index: 1996;
}
@media (max-width: 991.98px) {
  .w-5 {
    width: 10%;
  }
  .w-10 {
    width: 16%;
  }
  .w-14 {
    width: 20%;
  }
  .w-18 {
    width: 25%;
  }
}
@media (max-width: 768px) {
  .z-front {
    z-index: 995;
  }
  .mobile-free {
    display: none;
  }
  .w-5 {
    width: 20%;
    display: none;
  }
  .w-10 {
    width: 25%;
    display: none;
  }
  .w-14 {
    width: 30%;
  }
  .w-18 {
    width: 24%;
  }
  .w-22 {
    width: 45%;
  }
  .w-26 {
    width: 50%;
  }
  .w-75 {
    width: 50% !important;
  }
}