@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-buttons {
  width: 140px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  margin: 1rem auto 0;
  -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: 1200px) {
  .swiper-buttons {
    width: 120px;
  }
}

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

.swiper-button-prev {
  width: 60px;
  height: 60px;
  background: url(../images/icon-arrow-prev.svg) no-repeat center;
  -moz-background-size: 60px;
    -o-background-size: 60px;
       background-size: 60px;
  position: relative;
  left: initial;
  right: initial;
  top: initial;
  bottom: initial;
  margin: 0;
}

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

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

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

.swiper-button-next {
  width: 60px;
  height: 60px;
  background: url(../images/icon-arrow-next.svg) no-repeat center;
  -moz-background-size: 60px;
    -o-background-size: 60px;
       background-size: 60px;
  position: relative;
  left: initial;
  right: initial;
  top: initial;
  bottom: initial;
  margin: 0;
}

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

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

.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.jpg) no-repeat center bottom;
  -moz-background-size: cover;
    -o-background-size: cover;
       background-size: cover;
  position: relative;
}

@media screen and (max-width: 991px) {
  #section-kv {
    height: initial;
    min-height: initial;
  }
}

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

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

#section-kv h1 {
  display: none;
}

#section-kv h2 {
  font-size: 1.2rem;
  color: #fff;
  text-align: center;
  letter-spacing: 10px;
  line-height: 1;
  margin-bottom: .5rem;
}

#section-kv p {
  font-size: 1rem;
  color: #fff;
  text-align: center;
  line-height: 1;
  margin-bottom: 1.5rem;
}

#section-kv p.en {
  width: 15%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  font-family: var(font-family-sinhala);
  font-size: 1.1rem;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 auto .5rem;
}

#section-kv .title {
  position: absolute;
  top: 13vh;
  left: 0;
  right: 0;
  z-index: 3;
  margin: 0 auto;
}

#section-kv .title .logo {
  width: 50vh;
  margin: 0 auto;
  display: block;
  margin-bottom: 1.5rem;
}

@media screen and (max-width: 991px) {
  #section-kv .title .logo {
    width: 90%;
    margin-bottom: 2.5rem;
  }
}

#section-kv .title .subtitle {
  width: 9vh;
  margin:15rem auto 0rem;
  display: block;
}

@media screen and (max-width: 991px) {
  #section-kv .title .subtitle {
    width: 20%;
  }
#section-kv .title .subtitle {
  margin:18rem auto 0rem;
}
}

#section-kv > img {
  width: 100%;
  display: block;
}

#section-kv img.en {
  width: 24vh;
  margin: 0 auto;
  display: block;
}

@media screen and (max-width: 991px) {
  #section-kv img.en {
    width: 42%;
    bottom: 9%;
    left: 0;
    right: 0;
    position: absolute;
    margin: 0 auto;
    z-index: 3;
  }
}

#section-kv .bg-mob {
  display: none;
}

@media screen and (max-width: 991px) {
  #section-kv .bg-mob {
    display: block;
  }
}

@media screen and (max-width: 640px) {
  #section-kv .bg-mob {
    display: none;
  }
}

#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: 916px;
  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: 1rem;
}

.info-text .title::after {
  content: "";
  display: block;
  width: 77px;
  height: 2px;
  background-color: #00CB33;
  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: 4.2rem;
  line-height: 1;
  margin-bottom: 1.2rem;
  color: #00CB33;
}

.info-text .en span {
  color: #00CB33;
}

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

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

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

@media screen and (max-width: 991px) {
  .info-text .ch {
    font-size: 1.3rem;
  }
}

.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: .95rem;
  font-weight: 300;
  font-family: var(--font-family-sans);
  line-height: 1.8;
  color: #fff;
  margin-bottom: 0;
}

.info-text2 {
  width: 545px;
  position: relative;
  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: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

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

.info-text2 .title {
  position: relative;
  text-align: center;
}

.info-text2 .title::after {
  content: "";
  display: block;
  width: 36px;
  height: 2px;
  background-color: #004C82;
  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%);
}

@media screen and (max-width: 991px) {
  .info-text2 .title::after {
    height: 1px;
  }
}

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

.info-text2 .title.img::after {
  display: none;
}

.info-text2 .title > img {
  width: 250px;
  display: block;
  margin: 0 auto;
}

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

.info-text2 h2 p {
  font-family: var(--font-family-sinhala);
  font-weight: 400;
  font-size: 2.9rem;
  line-height: 1;
  margin-bottom: 0;
  color: #004C82;
}

@media screen and (max-width: 991px) {
  .info-text2 h2 p {
    font-size: 2.7rem;
  }
}

@media screen and (max-width: 640px) {
  .info-text2 h2 p {
    font-size: 2.4rem;
  }
}

.info-text2 h5 {
  font-family: var(--font-family-serif);
  font-size: 1.2rem;
  text-align: center;
  font-weight: 400;
  color: #474241;
  letter-spacing: 3px;
  margin-bottom: .7rem;
}

.info-text2 h5 p {
  font-family: var(--font-family-serif);
  font-size: 1.2rem;
  text-align: center;
  font-weight: 400;
  color: #474241;
  letter-spacing: 3px;
}

@media screen and (max-width: 640px) {
.info-text2 h5 {
  font-size: 1.5rem;
}
  .info-text2 h5 p {
    font-size: 1.1rem;
    letter-spacing: 1px;
  }
}

.info-text2 h6 {
  font-family: var(--font-family-serif);
  font-size: 1rem;
  text-align: center;
  font-weight: 400;
  color: #474241;
  letter-spacing: 2px;
  margin-bottom: .7rem;
}

.info-text2 h6 p {
  font-family: var(--font-family-serif);
  font-size: 1rem;
  text-align: center;
  font-weight: 400;
  color: #474241;
  letter-spacing: 2px;
}

.info-text2 .desc {
  padding-top: 1rem;
}

.info-text2 .desc > p {
  font-size: .7rem;
  font-family: var(--font-family-serif);
  line-height: 1.8;
  font-weight: 400;
  text-align: center;
  color: #474241;
  letter-spacing: 2px;
  margin-bottom: 0;
}

@media screen and (max-width: 640px) {
  .info-text2 .desc > p {
    letter-spacing: 0;
    font-size: .9rem;
    line-height: 1.7;
  }
.info-text2 h6 {
  font-size: 1.2rem;
}
}

.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-1 .info-text2 {
  position: absolute;
  top: 10%;
  left: -webkit-calc(50% + 90px);
  left: -moz-calc(50% + 90px);
  left: calc(50% + 90px);
  z-index: 2;
}

@media screen and (max-width: 1200px) {
  #section-1 .info-text2 {
    width: 408px;
    top: 8%;
  }
}

@media screen and (max-width: 991px) {
  #section-1 .info-text2 {
    width: 100%;
    top: 8%;
    left: 0;
    right: 0;
    margin: 0 auto;
  }
}

#section-1 .info-text2 .title > p {
  color: #474241;
}

#section-1 .info-text2 h2 p {
  color: #fff;
  font-size: 2.6rem;
}

#section-1 .info-text2 h5 {
  color: #fff;
}

#section-1 .info-text2 h6 {
  color: #fff;
}

#section-1 .info-text2 .desc p {
  color: #fff;
}

#section-1 .swiper-wrap {
  width: 100%;
  display: block;
  content: "";
}

#section-1 .swiper-slide img {
  display: block;
  width: 100%;
  position: relative;
  z-index: 1;
}

#section-1 .swiper-buttons {
  margin-top: 2rem;
}

#section-2 {
  padding: 4rem 0;
  background: url(../images/s2-bg.jpg) repeat-y center top;
}

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

#section-2 .container {
  width: 1300px;
}

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

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

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

#section-2 .info-text2 {
  position: relative;
  width: 560px;
}

@media screen and (max-width: 991px) {
  #section-2 .info-text2 {
    width: 100%;
    margin: 0 auto;
    position: absolute;
    top: 5%;
  }
  #section-2 .info-text2 > * {
    color: #fff;
  }
}

@media screen and (max-width: 991px) {
  #section-2 .info-text2 h5,
  #section-2 .info-text2 h6 {
    color: #fff;
  }
}

@media screen and (max-width: 991px) {
  #section-2 .title img {
    max-width: 250px;
  }
}

@media screen and (max-width: 640px) {
  #section-2 .title img {
    width: 40vw;
    max-width: 150px;
  }
}

#section-2 .pic {
  width: -webkit-calc(100% - 580px);
  width: -moz-calc(100% - 580px);
  width: calc(100% - 580px);
  max-width: 550px;
}

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

#section-2 .desc {
  position: relative;
  padding: 1.2rem 0 0;
}

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

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

@media screen and (max-width: 991px) {
  #section-2 .desc p {
    color: #fff;
  }
}

#section-2 .content-wrap {
  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: 4rem;
  padding-bottom: 4rem;
}

@media screen and (max-width: 991px) {
  #section-2 .content-wrap {
    display: block;
    position: relative;
    padding-top: 0;
    padding-bottom: 0;
  }
}

#section-2 .content-wrap.reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
     -moz-box-orient: horizontal;
     -moz-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

#section-2 .swiper-wrap {
  width: 100%;
}

#section-2 .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: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
}

@media screen and (max-width: 991px) {
  #section-2 .swiper-slide {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -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: 5rem 0 6rem;
  }
}

#section-2 .swiper-slide figure {
  width: -webkit-calc(100% - 600px);
  width: -moz-calc(100% - 600px);
  width: calc(100% - 600px);
  position: relative;
}

@media screen and (max-width: 1200px) {
  #section-2 .swiper-slide figure {
    width: -webkit-calc(100% - 470px);
    width: -moz-calc(100% - 470px);
    width: calc(100% - 470px);
  }
}

@media screen and (max-width: 991px) {
  #section-2 .swiper-slide figure {
    width: 90%;
    margin: 0 auto;
  }
}

#section-2 .swiper-slide img {
  display: block;
  width: 100%;
  position: relative;
  z-index: 1;
}

#section-2 .swiper-slide figcaption {
  font-size: .6rem;
  font-weight: 300;
  color: #fff;
  position: absolute;
  bottom: 5px;
  right: 7px;
  z-index: 2;
}

#section-2 .swiper-slide .info-text2 {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 585px;
}

@media screen and (max-width: 1200px) {
  #section-2 .swiper-slide .info-text2 {
    width: 462px;
  }
}

@media screen and (max-width: 991px) {
  #section-2 .swiper-slide .info-text2 {
    position: relative;
    top: initial;
    left: initial;
    right: initial;
    width: 100%;
    max-width: initial;
    padding-bottom: 3rem;
  }
  #section-2 .swiper-slide .info-text2 h2 p {
    color: #004478;
  }
  #section-2 .swiper-slide .info-text2 h5,
  #section-2 .swiper-slide .info-text2 p {
    color: #3E3A39;
  }
}

#section-2 .swiper-slide .more-btn {
  width: 95px;
  display: block;
  margin: 3rem 0 0 auto;
}

@media screen and (max-width: 991px) {
  #section-2 .swiper-slide .more-btn {
    position: absolute;
    bottom: 3rem;
    right: 5%;
  }
}

@media screen and (max-width: 991px) {
  #section-2 .swiper-slide .more-btn {
    width: 80px;
  }
}

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

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

@media screen and (max-width: 991px) {
  #section-2 .swiper-buttons {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
  }
}

#section-3 {
  position: relative;
}

#section-3 .mouse {
  position: absolute;
  width: 40px;
  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: 3;
}

#section-4 {
  padding: 3rem 0;
  background: url(../images/s2-bg.jpg) repeat-y center top;
}

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

#section-4 .container {
  width: 1300px;
}

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

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

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

#section-4 .info-text2 {
  position: relative;
  width: 625px;
}

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

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

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

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

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

#section-4 .content-wrap {
  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: 2rem;
  padding-bottom: 2rem;
}

@media screen and (max-width: 991px) {
  #section-4 .content-wrap {
    display: block;
    position: relative;
  }
}

#section-4 .content-wrap.reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
     -moz-box-orient: horizontal;
     -moz-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

#section-4 .swiper-wrap {
  width: -webkit-calc(100% - 660px);
  width: -moz-calc(100% - 660px);
  width: calc(100% - 660px);
}

@media screen and (max-width: 1200px) {
  #section-4 .swiper-wrap {
    width: -webkit-calc(100% - 520px);
    width: -moz-calc(100% - 520px);
    width: calc(100% - 520px);
  }
}

@media screen and (max-width: 991px) {
  #section-4 .swiper-wrap {
    width: 90%;
    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: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
}

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

#section-4 .swiper-slide img {
  display: block;
  width: 100%;
  position: relative;
  z-index: 1;
}

#section-4 .swiper-slide figcaption {
  font-size: .6rem;
  font-weight: 300;
  color: #fff;
  position: absolute;
  bottom: 5px;
  right: 7px;
  z-index: 2;
}

#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;
  }
}

@media screen and (max-width: 991px) {
  #section-4 .swiper-buttons {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
  }
}

#section-5 {
  position: relative;
}

#section-5 .title {
  position: absolute;
  top: 17%;
  left: 0;
  right: 0;
  z-index: 2;
}

#section-5 .title h2 {
  font-family: var(--font-family-sinhala);
  font-weight: 400;
  font-size: 3rem;
  line-height: 1;
  margin-bottom: .7rem;
  color: #fff;
  text-align: center;
}

#section-5 .title > p {
  font-size: 1.2rem;
  font-family: var(--font-family-serif);
  line-height: 1.8;
  font-weight: 300;
  text-align: center;
  color: #fff;
  letter-spacing: 7px;
  margin-bottom: 0;
}

@media screen and (max-width: 991px) {
  #section-5 .title > p {
    font-size: 1.2rem;
    letter-spacing: 3px;
  }
}

#section-5 .pic-wrap {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  overflow-x: scroll;
}

#section-5 .pic-wrap::-webkit-scrollbar {
  height: 5px;
}

#section-5 .pic-wrap::-webkit-scrollbar-track {
  background: #033678;
}

#section-5 .pic-wrap::-webkit-scrollbar-thumb {
  background: #062041;
}

#section-5 .pic-wrap::-webkit-scrollbar-thumb:hover {
  background: #000;
}
#section-5 .mouse {
  position: absolute;
  width: 40px;
  left: 50%;
  -webkit-transform: translateX(-50%);
     -moz-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
       -o-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 3;
}
@media screen and (max-width: 991px) {
  #section-5 .pic-wrap::-webkit-scrollbar {
    height: 0;
  }
}

#section-5 .bg-pic {
  width: 2400px;
}

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

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

}

#section-form {
  background: url(../images/form-bg.jpg) no-repeat center top;
  -moz-background-size: cover;
    -o-background-size: cover;
       background-size: cover;
  padding: 3rem 0 5rem;
}

#section-form .logo {
  display: block;
  width: 240px;
  margin: 0 auto 3rem;
}

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

@media screen and (max-width: 640px) {
  #section-form .logo {
    width: 38vw;
  }
}

#section-form .info-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  width: 1060px;
  margin: 0 auto 2rem;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -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: 1200px) {
  #section-form .info-wrap {
    width: 960px;
  }
}

@media screen and (max-width: 991px) {
  #section-form .info-wrap {
    width: 90%;
    max-width: 570px;
    margin-bottom: 3rem;
    -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;
  }
}

@media screen and (max-width: 640px) {
  #section-form .info-wrap {
    margin-bottom: 1rem;
  }
}

#section-form .info-wrap .map {
  width: -webkit-calc(100% - 360px);
  width: -moz-calc(100% - 360px);
  width: calc(100% - 360px);
  max-width: 610px;
}

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

#section-form .info-wrap .map iframe {
  display: block;
  width: 100%;
  height: 240px;
  border: 0;
}

#section-form ul {
  width: 370px;
  position: relative;
}

@media screen and (max-width: 1200px) {
  #section-form ul {
    width: 310px;
  }
}

@media screen and (max-width: 991px) {
  #section-form ul {
    width: 100%;
    margin-top: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
  }
  #section-form ul::after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background: transparent -webkit-linear-gradient(201deg, #717071 0%, #FFFFFF 58%, #B9B9BA 100%) 0% 0% no-repeat padding-box;
    background: transparent -moz-linear-gradient(201deg, #717071 0%, #FFFFFF 58%, #B9B9BA 100%) 0% 0% no-repeat padding-box;
    background: transparent -o-linear-gradient(201deg, #717071 0%, #FFFFFF 58%, #B9B9BA 100%) 0% 0% no-repeat padding-box;
    background: transparent linear-gradient(249deg, #717071 0%, #FFFFFF 58%, #B9B9BA 100%) 0% 0% no-repeat padding-box;
    position: absolute;
    bottom: 0;
    left: 0;
  }
}

#section-form ul li {
  width: 100%;
  font-family: var(--font-family-sans);
  font-size: .65rem;
  font-weight: 400;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 1px;
  text-align: left;
  color: #BEBEBF;
  margin-bottom: .3rem;
}

#section-form ul li span {
  font-weight: 500;
}

#section-form ul li.title {
  font-size: .9rem;
  font-weight: 400;
  margin-bottom: .4rem;
  color: #fff;
  position: relative;
}

@media screen and (max-width: 991px) {
  #section-form ul li.title {
    font-size: 1.1rem;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    text-align: center;
  }
  #section-form ul li.title::before {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background: transparent -webkit-linear-gradient(201deg, #717071 0%, #FFFFFF 58%, #B9B9BA 100%) 0% 0% no-repeat padding-box;
    background: transparent -moz-linear-gradient(201deg, #717071 0%, #FFFFFF 58%, #B9B9BA 100%) 0% 0% no-repeat padding-box;
    background: transparent -o-linear-gradient(201deg, #717071 0%, #FFFFFF 58%, #B9B9BA 100%) 0% 0% no-repeat padding-box;
    background: transparent linear-gradient(249deg, #717071 0%, #FFFFFF 58%, #B9B9BA 100%) 0% 0% no-repeat padding-box;
    position: absolute;
    bottom: 0;
    left: 0;
  }
}

#section-form .form-wrap {
  width: 1060px;
  margin: 0 auto;
}

@media screen and (max-width: 1200px) {
  #section-form .form-wrap {
    width: 960px;
  }
}

@media screen and (max-width: 991px) {
  #section-form .form-wrap {
    width: 90%;
    max-width: 570px;
  }
}

@media screen and (max-width: 640px) {
  #section-form .form-wrap {
    padding-bottom: 0;
  }
#section-form ul li {
  font-size: .9rem;
}
}

#section-form .form-wrap .control {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto 2rem;
  -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;
  position: relative;
  padding-bottom: 3rem;
}

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

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

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

#section-form .form-wrap h2 {
  font-family: var(--font-family-sans);
  font-weight: 400;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 1px;
  text-align: left;
  font-size: .9rem;
  font-weight: 400;
  margin-bottom: .4rem;
  color: #fff;
}

@media screen and (max-width: 991px) {
  #section-form .form-wrap h2 {
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 1rem;
  }
}

#section-form .form-wrap input[type="text"], #section-form .form-wrap input[type="tel"], #section-form .form-wrap input[type="email"] {
  width: 100%;
  display: inline-block;
  height: 56px;
  padding: 13px 23px 10px 0;
  margin: 0 0 .5rem;
  border: 0;
  border-bottom: solid 1px #fff;
  background-color: transparent;
  font-family: var(--font-family-sans);
  font-size: .7rem;
  font-weight: 400;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 1px;
  text-align: left;
  color: #fff;
}

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

@media screen and (max-width: 991px) {
  #section-form .form-wrap input[type="text"], #section-form .form-wrap input[type="tel"], #section-form .form-wrap input[type="email"] {
    width: 100%;
    height: 50px;
    font-size: .9rem;
    padding: 16px 20px;
    border: solid 1px #B9B9BA;
    text-align: center;
  }
}

@media screen and (max-width: 640px) {
  #section-form .form-wrap input[type="text"], #section-form .form-wrap input[type="tel"], #section-form .form-wrap input[type="email"] {
    height: 40px;
    font-size: .8rem;
    padding: 12px 20px;
  }
}

#section-form .form-wrap input[type="text"]::-webkit-input-placeholder, #section-form .form-wrap input[type="tel"]::-webkit-input-placeholder, #section-form .form-wrap input[type="email"]::-webkit-input-placeholder {
  color: #BEBEBF;
  letter-spacing: 1px;
}

#section-form .form-wrap input[type="text"]:-moz-placeholder, #section-form .form-wrap input[type="tel"]:-moz-placeholder, #section-form .form-wrap input[type="email"]:-moz-placeholder {
  color: #BEBEBF;
  letter-spacing: 1px;
}

#section-form .form-wrap input[type="text"]::-moz-placeholder, #section-form .form-wrap input[type="tel"]::-moz-placeholder, #section-form .form-wrap input[type="email"]::-moz-placeholder {
  color: #BEBEBF;
  letter-spacing: 1px;
}

#section-form .form-wrap input[type="text"]:-ms-input-placeholder, #section-form .form-wrap input[type="tel"]:-ms-input-placeholder, #section-form .form-wrap input[type="email"]:-ms-input-placeholder {
  color: #BEBEBF;
  letter-spacing: 1px;
}

#section-form .form-wrap input[type="text"]::-ms-input-placeholder, #section-form .form-wrap input[type="tel"]::-ms-input-placeholder, #section-form .form-wrap input[type="email"]::-ms-input-placeholder {
  color: #BEBEBF;
  letter-spacing: 1px;
}

#section-form .form-wrap input[type="text"]::placeholder, #section-form .form-wrap input[type="tel"]::placeholder, #section-form .form-wrap input[type="email"]::placeholder {
  color: #BEBEBF;
  letter-spacing: 1px;
}

#section-form .form-wrap input[type="button"], #section-form .form-wrap input[type="submit"] {
  display: block;
  width: 230px;
  height: 45px;
  margin: 0 auto;
  padding: 0;
  border: 0;
  background: transparent -webkit-linear-gradient(212deg, #7C7B7C 0%, #FFFFFF 58%, #BEBEBF 100%) 0% 0% no-repeat padding-box;
  background: transparent -moz-linear-gradient(212deg, #7C7B7C 0%, #FFFFFF 58%, #BEBEBF 100%) 0% 0% no-repeat padding-box;
  background: transparent -o-linear-gradient(212deg, #7C7B7C 0%, #FFFFFF 58%, #BEBEBF 100%) 0% 0% no-repeat padding-box;
  background: transparent linear-gradient(238deg, #7C7B7C 0%, #FFFFFF 58%, #BEBEBF 100%) 0% 0% no-repeat padding-box;
  font-family: var(--font-family-serif);
  font-size: .6rem;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 1px;
  text-align: center;
  color: #004C82;
}

@media screen and (max-width: 991px) {
  #section-form .form-wrap input[type="button"], #section-form .form-wrap input[type="submit"] {
    width: 100%;
    height: 40px;
  }
}

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

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

#section-form .form-wrap select {
  height: 59px;
  margin: 0;
  padding: 0 30px 0 23px;
  -webkit-border-radius: 13px;
     -moz-border-radius: 13px;
          border-radius: 13px;
  border: solid 1px #777575;
  background-color: #fff;
  font-family: 'Noto Sans TC';
  font-size: .7rem;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: -0.24px;
  text-align: left;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background: url(../images/icon_select_arrow.png) no-repeat -webkit-calc(100% - 10px) center;
  background: url(../images/icon_select_arrow.png) no-repeat -moz-calc(100% - 10px) center;
  background: url(../images/icon_select_arrow.png) no-repeat calc(100% - 10px) center;
  background-color: #fff;
  color: #a4a4a5;
}

@media screen and (max-width: 991px) {
  #section-form .form-wrap select {
    height: 70px;
    font-size: 20px;
    padding: 0 30px 0 20px;
  }
}

@media screen and (max-width: 640px) {
  #section-form .form-wrap select {
    height: 50px;
    font-size: 14px;
    margin-bottom: 12px;
    padding: 10px 20px;
    -webkit-border-radius: 8px;
       -moz-border-radius: 8px;
            border-radius: 8px;
  }
}

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

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

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

#section-form .form-wrap select.slt-county {
  width: -webkit-calc(27% - 8px);
  width: -moz-calc(27% - 8px);
  width: calc(27% - 8px);
  margin-right: 16px;
}

@media screen and (max-width: 991px) {
  #section-form .form-wrap select.slt-county {
    width: 100%;
    margin-bottom: 24px;
  }
}

@media screen and (max-width: 640px) {
  #section-form .form-wrap select.slt-county {
    font-size: 14px;
  }
}

#section-form .form-wrap select.slt-district {
  width: -webkit-calc(27% - 8px);
  width: -moz-calc(27% - 8px);
  width: calc(27% - 8px);
}

@media screen and (max-width: 991px) {
  #section-form .form-wrap select.slt-district {
    width: 100%;
    margin-bottom: 24px;
  }
}

@media screen and (max-width: 640px) {
  #section-form .form-wrap select.slt-district {
    font-size: 14px;
  }
}

#section-form .form-wrap .btn-code {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
}

@media screen and (max-width: 991px) {
  #section-form .form-wrap .btn-code {
    position: relative;
    bottom: initial;
    left: initial;
    right: initial;
  }
}

#section-form .form-wrap .control-group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-border-radius: 13px;
     -moz-border-radius: 13px;
          border-radius: 13px;
  border: solid 1px #BEAD9C;
  background-color: #BEAD9C;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -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-form .form-wrap .control-group {
    -webkit-border-radius: 8px;
       -moz-border-radius: 8px;
            border-radius: 8px;
  }
}

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

@media screen and (max-width: 991px) {
  #section-form .form-wrap .privacy {
    width: 100%;
    margin-bottom: 36px;
  }
}

#section-form .form-wrap .privacy p {
  font-family: var(--font-family-serif);
  font-size: .6rem;
  font-weight: 400;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: 0.3px;
  text-align: left;
  color: #BEBEBF;
  margin-bottom: .5rem;
}

@media screen and (max-width: 991px) {
  #section-form .form-wrap .privacy p span {
    display: block;
  }
}

@media screen and (max-width: 640px) {
  #section-form .form-wrap .privacy p {
    font-size: .6rem;
  }
  #section-form .form-wrap .privacy p span:nth-child(1) {
    display: block;
  }
}

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

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

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