@charset "UTF-8";
:root {
  --bg-color: #f1f1f3;
  --block-color: #040000;
  --yellow-color: #e1c785;
  --yellow-color2: #cbbd7a;
  --green-color: #184240;
  --light-gray-color: #7d7d7d;
  --dark-gray-color: #4f4f4f;
  --font-family: "Noto Serif TC", "Microsoft JhengHei", sans-serif;
  --font-family-serif: "Noto Serif TC";
  --font-family-sans: "Noto Sans TC";
  --font-family-sinhala: 'SinhalaMN';
}

html {
  font-size: 24px;
}

@media screen and (max-width: 1400px) {
  html {
    font-size: 21px;
  }
}

@media screen and (max-width: 1200px) {
  html {
    font-size: 18px;
  }
}

@media screen and (max-width: 991px) {
  html {
    font-size: 20px;
  }
}

@media screen and (max-width: 640px) {
  html {
    font-size: 14px;
  }
}

body {
  position: relative;
  z-index: 0;
  font-family: var(--font-family);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--txt-color);
  background-color: var(--bg-color);
  overflow-x: hidden;
}

body::-webkit-scrollbar {
  width: 8px;
}

body::-webkit-scrollbar-track {
  background: #888;
}

body::-webkit-scrollbar-thumb {
  background: #ccc;
}

body::-webkit-scrollbar-thumb:hover {
  background: #fff;
}

h1,
h2,
h3 {
  font-weight: 700;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

a,
button {
  -webkit-transition: all 0.3s 0s ease-in;
  -o-transition: all 0.3s 0s ease-in;
  -moz-transition: all 0.3s 0s ease-in;
  transition: all 0.3s 0s ease-in;
  text-decoration: none;
}

.l-wrapper {
  overflow: hidden;
}

h2,
h2 > p {
  font-family: var(--font-family-bask);
  font-weight: 400;
  font-size: 3.9rem;
}

@media screen and (max-width: 991px) {
  h2,
  h2 > p {
    font-size: 6.9rem;
  }
}

h3,
h3 > p {
  font-family: var(--font-family-swei);
  font-weight: 600;
  font-size: 3.3rem;
  line-height: 1;
}

h4,
h4 > p {
  font-family: var(--font-family-w9);
  font-weight: 400;
  font-size: 2.7rem;
  line-height: 1;
}

p {
  font-family: var(--font-family-noto);
}

figure {
  position: relative;
}

figcaption {
  font-size: 1rem;
  color: #fff;
  position: absolute;
  bottom: 1px;
  right: 7px;
  z-index: 2;
}

.o-0 {
  opacity: 0;
}

.o-1 {
  opacity: 1;
}

.d-n {
  display: none;
}

.d-b {
  display: block;
}

.c-w {
  color: #fff !important;
}

.en {
  font-family: var(--font-family-sinhala);
}

.loader {
  position: fixed;
  width: 100vw;
  height: 100vh;
  z-index: 999;
  top: 0;
  left: 0;
  background-color: #fff;
}

.loader::after {
  content: "";
  display: block;
  width: 48px;
  height: 48px;
  border: 5px solid #FFF;
  border-bottom-color: #198BBF;
  -webkit-border-radius: 50%;
     -moz-border-radius: 50%;
          border-radius: 50%;
  display: inline-block;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-animation: rotation 1s linear infinite;
     -moz-animation: rotation 1s linear infinite;
       -o-animation: rotation 1s linear infinite;
          animation: rotation 1s linear infinite;
  position: absolute;
  top: 40vh;
  left: -webkit-calc(50% - 24px);
  left: -moz-calc(50% - 24px);
  left: calc(50% - 24px);
}

.swiper-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.swiper-wrap .swiper {
  padding-bottom: 60px;
}

@media screen and (max-width: 1400px) {
  .swiper-wrap .swiper {
    padding-bottom: 46px;
  }
}

.swiper-buttons {
  width: 160px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  bottom: -70px;
  left: 0;
  right: 0;
  z-index: 3;
  margin: 0 auto;
}

@media screen and (max-width: 991px) {
  .swiper-buttons {
    bottom: 7rem;
  }
}

@media screen and (max-width: 640px) {
  .swiper-buttons {
    width: 96px;
    padding: 0;
    margin: 0 auto;
  }
}

.swiper-button-prev {
  width: 80px;
  height: 80px;
  background: url(../images/icon-swiper-prev.svg) no-repeat center;
  -moz-background-size: 80px;
    -o-background-size: 80px;
       background-size: 80px;
  left: 0;
}

@media screen and (max-width: 640px) {
  .swiper-button-prev {
    width: 50px;
    height: 50px;
    -moz-background-size: 46px;
      -o-background-size: 46px;
         background-size: 46px;
  }
}

.swiper-button-prev:after {
  display: none;
}

.swiper-button-next {
  width: 80px;
  height: 80px;
  background: url(../images/icon-swiper-next.svg) no-repeat center;
  -moz-background-size: 80px;
    -o-background-size: 80px;
       background-size: 80px;
  right: 0;
}

@media screen and (max-width: 640px) {
  .swiper-button-next {
    width: 50px;
    height: 50px;
    -moz-background-size: 46px;
      -o-background-size: 46px;
         background-size: 46px;
  }
}

.swiper-button-next:after {
  display: none;
}

.swiper-slide {
  position: relative;
}

.swiper-pagination {
  bottom: 0 !important;
}

.swiper-pagination-bullet {
  width: 14px;
  height: 14px;
  border: 1px solid #fff;
  background: transparent;
  opacity: 1;
}

@media screen and (max-width: 1400px) {
  .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
  }
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #fff;
}

.swiper-3d .swiper-slide-shadow-left {
  background: none !important;
}

.swiper-3d .swiper-slide-shadow-right {
  background: none !important;
}

.container {
  position: relative;
  margin: 0 auto;
}

@-webkit-keyframes rotation {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@-moz-keyframes rotation {
  0% {
    -moz-transform: rotate(0deg);
         transform: rotate(0deg);
  }
  100% {
    -moz-transform: rotate(360deg);
         transform: rotate(360deg);
  }
}

@-o-keyframes rotation {
  0% {
    -o-transform: rotate(0deg);
       transform: rotate(0deg);
  }
  100% {
    -o-transform: rotate(360deg);
       transform: rotate(360deg);
  }
}

@keyframes rotation {
  0% {
    -webkit-transform: rotate(0deg);
       -moz-transform: rotate(0deg);
         -o-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
       -moz-transform: rotate(360deg);
         -o-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

#section-kv {
  height: 100vh;
  min-height: 800px;
  background: url(../images/kv-bg.png) no-repeat center bottom;
  -moz-background-size: cover;
    -o-background-size: cover;
       background-size: cover;
  position: relative;
}

@media screen and (max-width: 640px) {
  #section-kv {
    background-image: url(../images/kv-bg-m.png);
    min-height: initial;
  }
}

#section-kv .container {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 3;
}

#section-kv h1 {
  display: none;
}

#section-kv .title {
  width: 60%;
  max-width: 920px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
     -moz-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
       -o-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 3;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 991px) {
  #section-kv .title {
    width: 40%;
    max-width: 300px;
  }
}

#section-kv .video-background {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 2;
  /* 放到背景層 */
}

#section-kv .video-background video {
  position: absolute;
  bottom: 0;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  -webkit-transform: translateX(-50%);
     -moz-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
       -o-transform: translateX(-50%);
          transform: translateX(-50%);
  -o-object-fit: cover;
     object-fit: cover;
  display: none;
}

#section-kv .video-background .video-desktop {
  display: block;
}

@media screen and (max-width: 720px) {
  #section-kv .video-background .video-desktop {
    display: none;
  }
  #section-kv .video-background .video-mobile {
    display: block;
    width: 100%;
    height: auto;
  }
}

.info-text {
  width: 827px;
  position: absolute;
  top: 10%;
  left: 50%;
  -webkit-transform: translateX(-50%);
     -moz-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
       -o-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 2;
}

@media screen and (max-width: 991px) {
  .info-text {
    width: 100%;
  }
}

.info-text .title {
  position: relative;
  text-align: center;
  padding-bottom: 1.7rem;
}

.info-text .title::after {
  content: "";
  display: block;
  width: 50px;
  height: 1px;
  background-color: #fff;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
     -moz-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
       -o-transform: translateX(-50%);
          transform: translateX(-50%);
}

.info-text .title > p {
  color: #fff;
}

.info-text .en {
  font-size: 2.95rem;
  line-height: 1;
  margin-bottom: .7rem;
}

@media screen and (max-width: 991px) {
  .info-text .en span {
    display: block;
    line-height: .7;
  }
}

.info-text .ch {
  font-size: 1.85rem;
  line-height: 1;
  margin-bottom: 1rem;
}

@media screen and (max-width: 991px) {
  .info-text .ch span {
    display: block;
    line-height: 1.2;
  }
}

.info-text .st {
  font-size: 1.1rem;
  line-height: 1;
  margin-bottom: 0;
}

.info-text .desc {
  padding-top: 1.2rem;
}

@media screen and (max-width: 991px) {
  .info-text .desc {
    width: 400px;
    margin: 0 auto;
  }
}

@media screen and (max-width: 640px) {
  .info-text .desc {
    width: 280px;
  }
}

.info-text .desc p {
  font-size: .8rem;
  font-family: var(--font-family-sans);
  line-height: 1.8;
  color: #fff;
  margin-bottom: 0;
}

.pic-wrap {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}

@media screen and (max-width: 991px) {
  .pic-wrap {
    overflow-x: scroll;
    /* width */
    /* Track */
    /* Handle */
    /* Handle on hover */
  }
  .pic-wrap::-webkit-scrollbar {
    height: 0;
  }
  .pic-wrap::-webkit-scrollbar-track {
    background: #f1f1f1;
  }
  .pic-wrap::-webkit-scrollbar-thumb {
    background: #ccc;
  }
  .pic-wrap::-webkit-scrollbar-thumb:hover {
    background: #ccc;
  }
}

.pic-wrap p {
  font-family: var(--font-family-sans);
  font-size: .6rem;
  color: #fff;
  position: absolute;
  bottom: 5px;
  right: 5px;
  z-index: 2;
  margin-bottom: 0;
}

.bg-pic {
  display: block;
  width: 100%;
  max-width: initial;
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 991px) {
  .bg-pic {
    width: 1600px;
  }
}

@media screen and (max-width: 640px) {
  .bg-pic {
    width: 1400px;
  }
}

#section-1 {
  position: relative;
}

#section-2 {
  position: relative;
}

#section-2 .info-text {
  width: 820px;
}

@media screen and (max-width: 991px) {
  #section-2 .info-text {
    width: 100%;
  }
}

.info-text2 {
  width: 475px;
}

@media screen and (max-width: 991px) {
  .info-text2 {
    width: 100%;
  }
}

.info-text2 .title {
  position: relative;
  text-align: center;
  padding-bottom: 1.7rem;
}

.info-text2 .title::after {
  content: "";
  display: block;
  width: 50px;
  height: 1px;
  background-color: #fff;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
     -moz-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
       -o-transform: translateX(-50%);
          transform: translateX(-50%);
}

.info-text2 .title > p {
  color: #fff;
}

.info-text2 h3 {
  line-height: 1;
  margin-bottom: 1.8rem;
}

.info-text2 h3 p {
  font-family: var(--font-family-sinhala);
  font-weight: normal;
  font-size: 2.8rem;
  line-height: .8;
  margin-bottom: 0;
}

.info-text2 h2 {
  line-height: 1;
  margin-bottom: 0;
}

.info-text2 h2 p {
  font-size: 1.32rem;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 5px;
  margin-bottom: 0;
}

.info-text2 .desc {
  padding: 0 20px;
  padding-top: 1.2rem;
}

@media screen and (max-width: 640px) {
  .info-text2 .desc {
    padding: 0;
    padding-top: 1.2rem;
  }
}

.info-text2 .desc p {
  font-size: .8rem;
  font-family: var(--font-family-sans);
  line-height: 1.8;
  text-align: justify;
  color: #fff;
  margin-bottom: 0;
}

#section-3 {
  background: url(../images/s3-bg.png) no-repeat center;
  -moz-background-size: cover;
    -o-background-size: cover;
       background-size: cover;
  padding: 7rem 0;
}

@media screen and (max-width: 991px) {
  #section-3 {
    background-image: url(../images/s3-bg-m.png);
  }
}

#section-3 .container {
  width: 1200px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 1400px) {
  #section-3 .container {
    width: 1100px;
  }
}

@media screen and (max-width: 1200px) {
  #section-3 .container {
    width: 990px;
  }
}

@media screen and (max-width: 991px) {
  #section-3 .container {
    width: -webkit-calc(100% - 100px);
    width: -moz-calc(100% - 100px);
    width: calc(100% - 100px);
    display: block;
  }
}

@media screen and (max-width: 640px) {
  #section-3 .container {
    padding-top: 2rem;
  }
}

#section-3 h3 p {
  color: #fff;
}

#section-3 h2 p {
  color: #fff;
}

#section-3 .info-text2 {
  padding-top: 1rem;
}

@media screen and (max-width: 991px) {
  #section-3 .info-text2 {
    width: 440px;
    margin: 0 auto;
    margin-bottom: 4rem;
  }
}

@media screen and (max-width: 640px) {
  #section-3 .info-text2 {
    width: 100%;
  }
}

#section-3 .desc p {
  color: #fff;
}

#section-3 .pic {
  width: -webkit-calc(100% - 475px);
  width: -moz-calc(100% - 475px);
  width: calc(100% - 475px);
  max-width: 600px;
}

@media screen and (max-width: 1200px) {
  #section-3 .pic {
    width: -webkit-calc(100% - 540px);
    width: -moz-calc(100% - 540px);
    width: calc(100% - 540px);
  }
}

@media screen and (max-width: 991px) {
  #section-3 .pic {
    width: 100%;
  }
}

#section-4 .container {
  width: 1200px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-top: 7rem;
}

@media screen and (max-width: 1400px) {
  #section-4 .container {
    width: 1100px;
  }
}

@media screen and (max-width: 1200px) {
  #section-4 .container {
    width: 990px;
  }
}

@media screen and (max-width: 991px) {
  #section-4 .container {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
       -moz-box-orient: vertical;
       -moz-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    padding-bottom: 9rem;
  }
}

#section-4 h3 p {
  color: #9FA0A0;
}

#section-4 h2 p {
  color: #595757;
}

#section-4 .info-text2 {
  position: relative;
  padding-top: 3rem;
}

@media screen and (max-width: 1200px) {
  #section-4 .info-text2 {
    width: 420px;
  }
}

@media screen and (max-width: 991px) {
  #section-4 .info-text2 {
    width: 400px;
    margin: 0 auto 4rem;
    position: initial;
  }
}

@media screen and (max-width: 640px) {
  #section-4 .info-text2 {
    width: -webkit-calc(100% - 100px);
    width: -moz-calc(100% - 100px);
    width: calc(100% - 100px);
  }
}

#section-4 .title::after {
  background-color: #595757;
}

#section-4 .desc {
  position: relative;
  padding: 1.2rem 12px 0;
}

@media screen and (max-width: 991px) {
  #section-4 .desc {
    position: initial;
  }
}

#section-4 .desc p {
  color: #595757;
}

#section-4 .content-wrap {
  width: -webkit-calc(100% - 475px);
  width: -moz-calc(100% - 475px);
  width: calc(100% - 475px);
  max-width: 600px;
}

@media screen and (max-width: 991px) {
  #section-4 .content-wrap {
    width: 100%;
    max-width: 100%;
  }
}

#section-4 .swiper-wrap {
  width: 100%;
  margin: 0 auto;
}

#section-4 .swiper-slide {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
     -moz-box-orient: horizontal;
     -moz-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}

#section-4 .swiper-slide .pic {
  position: relative;
}

#section-4 .swiper-slide .pic::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 2;
  mix-blend-mode: multiply;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  transition: all 0.3s linear;
  opacity: 1;
}

#section-4 .swiper-slide img {
  display: block;
  width: 100%;
}

#section-4 .swiper-slide p {
  font-size: 1.2rem;
  text-align: center;
  color: #595757;
  padding-top: .5rem;
  opacity: 0;
}

#section-4 .swiper-slide.swiper-slide-active .pic::before {
  opacity: 0;
}

#section-4 .swiper-slide.swiper-slide-active p {
  opacity: 1;
}

@media screen and (max-width: 991px) {
  #section-4 .swiper-slide {
    display: block;
  }
}

#section-5 {
  background: url(../images/s5-bg.png) no-repeat center top;
  background-color: #235140;
}

@media screen and (max-width: 991px) {
  #section-5 {
    background-image: url(../images/s5-bg-m.png);
    position: relative;
  }
}

#section-5 .container {
  width: 1200px;
  padding-top: 7.5rem;
  padding-bottom: 7.5rem;
}

@media screen and (max-width: 1400px) {
  #section-5 .container {
    width: 1100px;
  }
}

@media screen and (max-width: 1200px) {
  #section-5 .container {
    width: 900px;
  }
}

@media screen and (max-width: 991px) {
  #section-5 .container {
    width: 100%;
    padding-top: 6rem;
    padding-bottom: 0;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
  }
}

#section-5 .content-wrap {
  width: 70%;
  max-width: 618px;
}

@media screen and (max-width: 1400px) {
  #section-5 .content-wrap {
    max-width: 542px;
  }
}

@media screen and (max-width: 1200px) {
  #section-5 .content-wrap {
    max-width: 464px;
  }
}

@media screen and (max-width: 991px) {
  #section-5 .content-wrap {
    width: -webkit-calc(100% - 128px);
    width: -moz-calc(100% - 128px);
    width: calc(100% - 128px);
    max-width: 514px;
    margin: 0 auto;
  }
}

@media screen and (max-width: 640px) {
  #section-5 .content-wrap {
    width: -webkit-calc(100% - 103px);
    width: -moz-calc(100% - 103px);
    width: calc(100% - 103px);
    max-width: 305px;
  }
}

@media screen and (max-width: 420px) {
  #section-5 .content-wrap {
    max-width: 100%;
  }
}

#section-5 .info {
  margin-bottom: 3rem;
}

#section-5 .info > p {
  font-family: var(--font-family-sans);
  font-size: .8rem;
  line-height: 1.5rem;
  color: #fff;
}

#section-5 h2 {
  color: #fff;
  line-height: 1;
}

#section-5 h2 p {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 2.6rem;
  font-weight: 500;
  text-align: justify;
  line-height: 1.3;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 640px) {
  #section-5 h2 p {
    font-size: 2rem;
    line-height: 1.5;
  }
}

#section-5 h2 .e {
  font-family: var(--font-family-sinhala);
  font-size: 4.7rem;
  position: relative;
  top: 6px;
}

@media screen and (max-width: 1200px) {
  #section-5 h2 .e {
    top: 3px;
  }
}

@media screen and (max-width: 640px) {
  #section-5 h2 .e {
    font-size: 3.8rem;
    top: 3px;
    letter-spacing: -2px;
  }
}

#section-5 h3 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  margin-bottom: 2rem;
}

#section-5 h3 span {
  font-size: 1.6rem;
  margin-right: .6rem;
  font-weight:400;
}

@media screen and (max-width: 640px) {
  #section-5 h3 span {
    font-size: 1.4rem;
  }
}

#section-5 h3 p {
  font-size: 1.6rem;
  margin-bottom: 0;
  color: #fff;
}

@media screen and (max-width: 640px) {
  #section-5 h3 p {
    font-size: 1.4rem;
  }
}

#section-5 h3 p:last-of-type span:last-of-type {
  margin-right: 0;
}

#section-5 h3::before {
  content: "";
  display: block;
  width: 28%;
  height: 1px;
  background-color: #ffffff66;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%);
     -moz-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
       -o-transform: translateX(-50%);
          transform: translateX(-50%);
}

@media screen and (max-width: 640px) {
  #section-5 h3::before {
    width: 20%;
  }
}

#section-5 .events {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 991px) {
  #section-5 .events {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

#section-5 .events .event {
  width: -webkit-calc(50% - 1rem);
  width: -moz-calc(50% - 1rem);
  width: calc(50% - 1rem);
}

@media screen and (max-width: 991px) {
  #section-5 .events .event {
    width: 100%;
    position: relative;
    margin-bottom: 4rem;
  }
}

@media screen and (max-width: 640px) {
  #section-5 .events .event {
    margin-bottom: 3rem;
  }
}

#section-5 .events .title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
     -moz-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-bottom: .8rem;
}

@media screen and (max-width: 991px) {
  #section-5 .events .title {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
       -moz-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-bottom: 0;
  }
}

#section-5 .events .title img {
  display: block;
  width: 52px;
  margin-right: 1.2rem;
}

@media screen and (max-width: 991px) {
  #section-5 .events .title img {
    position: relative;
    top: 17px;
  }
}

@media screen and (max-width: 640px) {
  #section-5 .events .title img {
    width: 42px;
    top: 1px;
  }
}

#section-5 .events .title h4 {
  margin-bottom: 0;
  line-height: 1;
}

@media screen and (max-width: 991px) {
  #section-5 .events .title h4 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
       -moz-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

#section-5 .events .title h4 p {
  font-size: 1.1rem;
  line-height: 1;
  color: #AADC7D;
  font-weight: 500;
}

#section-5 .events .title h4 p:first-of-type {
  margin-bottom: .4rem;
}

@media screen and (max-width: 991px) {
  #section-5 .events .title h4 p:first-of-type {
    margin-bottom: 0;
    margin-right: .5rem;
  }
}

@media screen and (max-width: 991px) {
  #section-5 .events .title h4 p {
    display: inline-block;
  }
}

@media screen and (max-width: 991px) {
  #section-5 .events .desc {
    position: absolute;
    top: 1.5rem;
    left: -webkit-calc(52px + 1.2rem);
    left: -moz-calc(52px + 1.2rem);
    left: calc(52px + 1.2rem);
  }
}

@media screen and (max-width: 640px) {
  #section-5 .events .desc {
    left: -webkit-calc(42px + 1.2rem);
    left: -moz-calc(42px + 1.2rem);
    left: calc(42px + 1.2rem);
  }
}

#section-5 .events .desc .datetime {
  font-size: 1.3rem;
  color: #fff;
}

@media screen and (max-width: 991px) {
  #section-5 .events .desc .datetime {
    font-size: 1.6rem;
    line-height: 1.2;
  }
}

#section-5 .events .desc .datetime span {
  font-size: .7rem;
}

#section-5 .events .desc .location {
  font-size: .6rem;
  color: #fff;
}

@media screen and (max-width: 991px) {
  #section-5 .events .desc .location {
    font-size: .8rem;
  }
}

@media screen and (max-width: 991px) {
  #section-5 .bg img {
    display: block;
    width: 100%;
  }
}

#section-from {
  padding-top: 8rem;
  padding-bottom: 6rem;
  background: url(../images/from-bg.jpg) no-repeat center top;
}

@media screen and (max-width: 991px) {
  #section-from {
    padding-top: 8rem;
    background-image: url(../images/from-bg-m.png);
    -moz-background-size: cover;
      -o-background-size: cover;
         background-size: cover;
  }
}

@media screen and (max-width: 640px) {
  #section-from {
    padding-top: 6rem;
    padding-bottom: 4rem;
  }
}

#section-from .container {
  width: 1200px;
}

@media screen and (max-width: 1400px) {
  #section-from .container {
    width: 1100px;
  }
}

@media screen and (max-width: 1200px) {
  #section-from .container {
    width: 900px;
  }
}

@media screen and (max-width: 991px) {
  #section-from .container {
    width: 100%;
  }
}

#section-from .logo {
  display: block;
  width: 228px;
  margin: 0 auto 6rem;
}

@media screen and (max-width: 640px) {
  #section-from .logo {
    width: 122px;
  }
}

#section-from h5 {
  font-family: var(--font-family-sans);
  font-size: 1.1rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: 1.5rem;
  text-align: center;
}

#section-from .title {
  width: 380px;
  display: block;
  margin: 0 auto 4.5rem;
}

@media screen and (max-width: 1200px) {
  #section-from .title {
    width: 300px;
  }
}

@media screen and (max-width: 991px) {
  #section-from .title {
    width: 200px;
  }
}

#section-from .info-wrap {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
     -moz-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

@media screen and (max-width: 991px) {
  #section-from .info-wrap {
    display: block;
    width: -webkit-calc(100% - 100px);
    width: -moz-calc(100% - 100px);
    width: calc(100% - 100px);
    max-width: 520px;
  }
}

@media screen and (max-width: 640px) {
  #section-from .info-wrap {
    width: -webkit-calc(100% - 64px);
    width: -moz-calc(100% - 64px);
    width: calc(100% - 64px);
  }
}

#section-from .info-wrap .text {
  width: -webkit-calc(50% - 8px);
  width: -moz-calc(50% - 8px);
  width: calc(50% - 8px);
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 991px) {
  #section-from .info-wrap .text {
    width: 100%;
    margin-bottom: 2rem;
  }
}

#section-from .info-wrap .text p {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  height: 72px;
  font-family: var(--font-family-sans);
  font-weight: 500;
  font-size: .75rem;
  color: #000;
  line-height: 1.2;
  letter-spacing: 1px;
  margin-bottom: 0;
  background-color: #fff;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 1.1rem;
}

#section-from .info-wrap .text p:first-of-type {
  margin-bottom: 16px;
}

@media screen and (max-width: 640px) {
  #section-from .info-wrap .text p:first-of-type {
    margin-bottom: 12px;
  }
}

@media screen and (max-width: 640px) {
  #section-from .info-wrap .text p {
    height: 42px;
  }
}

#section-from .info-wrap .maps {
  width: -webkit-calc(50% - 8px);
  width: -moz-calc(50% - 8px);
  width: calc(50% - 8px);
}

@media screen and (max-width: 991px) {
  #section-from .info-wrap .maps {
    width: 100%;
  }
}

#section-from .info-wrap .maps iframe {
  width: 100%;
  height: 160px;
}

@media screen and (max-width: 640px) {
  #section-from .info-wrap .maps iframe {
    height: 120px;
  }
}

#section-from .form-wrap {
  width: 100%;
  margin-top: 2.5rem;
}

#section-from .form-wrap .control {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin: 0 auto .5rem;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
     -moz-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-transition: 1s;
  -o-transition: 1s;
  -moz-transition: 1s;
  transition: 1s;
}

@media screen and (max-width: 991px) {
  #section-from .form-wrap .control {
    margin-bottom: 0;
  }
}

#section-from .form-wrap .control > * {
  width: -webkit-calc(50% - 2rem);
  width: -moz-calc(50% - 2rem);
  width: calc(50% - 2rem);
  margin: 0 .5rem .5rem;
}

@media screen and (max-width: 991px) {
  #section-from .form-wrap .control > * {
    width: 100%;
  }
}

#section-from .form-wrap .control-col {
  width: -webkit-calc(50% - 8px);
  width: -moz-calc(50% - 8px);
  width: calc(50% - 8px);
  margin: 0;
}

@media screen and (max-width: 991px) {
  #section-from .form-wrap .control-col {
    width: 100%;
  }
}

#section-from .form-wrap h2 {
  font-family: var(--font-family-serif);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
  color: #fff;
  margin-bottom: 1.5rem;
}

@media screen and (max-width: 991px) {
  #section-from .form-wrap form {
    width: -webkit-calc(100% - 100px);
    width: -moz-calc(100% - 100px);
    width: calc(100% - 100px);
    max-width: 520px;
    margin: 0 auto;
  }
}

@media screen and (max-width: 640px) {
  #section-from .form-wrap form {
    width: -webkit-calc(100% - 64px);
    width: -moz-calc(100% - 64px);
    width: calc(100% - 64px);
  }
}

#section-from .form-wrap input[type="text"], #section-from .form-wrap input[type="tel"], #section-from .form-wrap input[type="email"] {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 72px;
  font-family: var(--font-family-sans);
  font-weight: 500;
  font-size: .75rem;
  color: #000;
  line-height: 1.2;
  letter-spacing: 1px;
  margin-bottom: 16px;
  background-color: #fff;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 1.1rem;
  border: 0;
}

#section-from .form-wrap input[type="text"]:focus, #section-from .form-wrap input[type="tel"]:focus, #section-from .form-wrap input[type="email"]:focus {
  outline: none;
}

@media screen and (max-width: 640px) {
  #section-from .form-wrap input[type="text"], #section-from .form-wrap input[type="tel"], #section-from .form-wrap input[type="email"] {
    height: 42px;
    margin-bottom: 12px;
  }
}

#section-from .form-wrap input[type="text"]::-webkit-input-placeholder, #section-from .form-wrap input[type="tel"]::-webkit-input-placeholder, #section-from .form-wrap input[type="email"]::-webkit-input-placeholder {
  color: #000;
}

#section-from .form-wrap input[type="text"]:-moz-placeholder, #section-from .form-wrap input[type="tel"]:-moz-placeholder, #section-from .form-wrap input[type="email"]:-moz-placeholder {
  color: #000;
}

#section-from .form-wrap input[type="text"]::-moz-placeholder, #section-from .form-wrap input[type="tel"]::-moz-placeholder, #section-from .form-wrap input[type="email"]::-moz-placeholder {
  color: #000;
}

#section-from .form-wrap input[type="text"]:-ms-input-placeholder, #section-from .form-wrap input[type="tel"]:-ms-input-placeholder, #section-from .form-wrap input[type="email"]:-ms-input-placeholder {
  color: #000;
}

#section-from .form-wrap input[type="text"]::-ms-input-placeholder, #section-from .form-wrap input[type="tel"]::-ms-input-placeholder, #section-from .form-wrap input[type="email"]::-ms-input-placeholder {
  color: #000;
}

#section-from .form-wrap input[type="text"]::placeholder, #section-from .form-wrap input[type="tel"]::placeholder, #section-from .form-wrap input[type="email"]::placeholder {
  color: #000;
}

#section-from .form-wrap input[type="button"] {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 50px;
  width: 260px;
  margin: 0 auto;
  padding: 0;
  border: 0;
  background-color: #fff;
  font-family: var(--font-family-serif);
  font-size: .9rem;
  font-weight: 400;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 2px;
  text-align: center;
  color: #00625C;
}

@media screen and (max-width: 640px) {
  #section-from .form-wrap input[type="button"] {
    width: -webkit-calc(100% - 1rem);
    width: -moz-calc(100% - 1rem);
    width: calc(100% - 1rem);
    height: 40px;
    margin: 0 .5rem .5rem;
  }
}

#section-from .form-wrap input[type="button"]:hover {
  cursor: pointer;
}

#section-from .form-wrap input[type="submit"] {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 72px;
  background-color: #1EAF96;
  font-family: var(--font-family-sans);
  font-size: .75rem;
  font-weight: 500;
  text-decoration: none;
  color: #fff;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto;
  padding: 0;
  border: 0;
}

@media screen and (max-width: 640px) {
  #section-from .form-wrap input[type="submit"] {
    height: 42px;
    font-size: .9rem;
  }
}

#section-from .form-wrap input[type="submit"]:hover {
  cursor: pointer;
}

#section-from .form-wrap select {
  width: 60%;
  height: 72px;
  margin: 0;
  padding: 0 1.1rem;
  border: 0;
  background-color: #fff;
  font-family: 'Noto Sans TC';
  font-size: .75rem;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  text-align: center;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-color: #fff;
  color: #898989;
}

@media screen and (max-width: 640px) {
  #section-from .form-wrap select {
    idth: 55%;
    height: 42px;
  }
}

#section-from .form-wrap select option {
  background-color: #fff;
  color: #333;
}

#section-from .form-wrap select.active {
  color: #333;
}

#section-from .form-wrap select.active option {
  color: #333;
}

#section-from .form-wrap select.slt-county {
  width: 60%;
}

#section-from .form-wrap select.slt-district {
  display: none;
}

#section-from .form-wrap .txt-zipcode {
  display: none !important;
}

#section-from .form-wrap .control-group {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 16px;
}

#section-from .form-wrap .control-group label {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-calc(40% - 16px);
  width: -moz-calc(40% - 16px);
  width: calc(40% - 16px);
  font-family: var(--font-family-sans);
  font-weight: 500;
  font-size: .75rem;
  color: #000;
  line-height: 1.2;
  letter-spacing: 1px;
  background-color: #fff;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 1.1rem;
  margin-right: 16px;
}

@media screen and (max-width: 640px) {
  #section-from .form-wrap .control-group label {
    width: -webkit-calc(45% - 12px);
    width: -moz-calc(45% - 12px);
    width: calc(45% - 12px);
    margin-right: 12px;
  }
}

#section-from .form-wrap .link-btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 72px;
  background-color: #1EAF96;
  font-family: var(--font-family-sans);
  font-size: .75rem;
  font-weight: 500;
  text-decoration: none;
  color: #fff;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (max-width: 640px) {
  #section-from .form-wrap .link-btn {
    height: 42px;
    font-size: .9rem;
  }
}

#section-from .form-wrap .privacy {
  margin: 2rem auto 1rem;
}

#section-from .form-wrap .privacy p {
  font-family: var(--font-family-sans);
  font-size: .75rem;
  font-weight: 400;
  font-stretch: normal;
  font-style: normal;
  line-height: 2;
  letter-spacing: 0.3px;
  text-align: left;
  color: #fff;
}

@media screen and (max-width: 991px) {
  #section-from .form-wrap .privacy p {
    font-size: .6rem;
  }
}

@media screen and (max-width: 640px) {
  #section-from .form-wrap .privacy p {
    font-size: .6rem;
  }
}

#section-from .form-wrap .privacy a {
  display: inline-block;
  font-size: .75rem;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: 0.3px;
  color: #fff;
}

@media screen and (max-width: 991px) {
  #section-from .form-wrap .privacy a {
    font-size: .6rem;
  }
}

@media screen and (max-width: 640px) {
  #section-from .form-wrap .privacy a {
    font-size: .6rem;
  }
}
/*# sourceMappingURL=style.css.map */