@charset "UTF-8";
:root {
  --bg-color: #93ecbc;
  --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);
}

@-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);
  }
}



.container {
  position: relative;
  margin: 0 auto;
/*   max-width: 90%; */
}

.wrapper{
  overflow-x: hidden;

}
.section{
  position: relative;
}


.flex{
  display: flex;
  justify-content: center;
  align-items: center;
}

.kv{
  background-image: url('../images/kv-bg.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 110vh;
  position: relative;
  padding: 50px 15px;
/*   box-sizing: border-box; */


}
.kv h1{
  text-indent: -99999px;
  height: 0px;
}
.kv .title{

  width: 45%;
  margin: 0 auto;

}

.kv   .container{
  padding-top: 13%;
}

.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;
  }
  .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-3===== */
.section-3{
  background-image: url('../images/bg.jpg');
  background-size: cover;
  width: 100%;
  background-repeat: no-repeat;
  padding-top:10% ;
}


.info-centent{
  align-items: start;
}
.info-text {
  
}

@media screen and (max-width: 991px) {
  
}

.info-text .title {
  color: #00584d;
  font-weight: 600;
}




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


.info-text .ch {
  font-size: 1.5rem;
  line-height: 1.5;
  margin-bottom: 1rem;
  letter-spacing: 1px;
}

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



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

 @media screen and (max-width: 991px) {
  
}

@media screen and (max-width: 640px) {
  
}

.info-text .desc p {
  font-size: .8rem;
  font-family: var(--font-family-sans);
  line-height: 1.8;
  color: #414042;
  margin-bottom: 0;
}
@media screen and (max-width: 640px) {
  .info-text .desc p {
  letter-spacing: -0.5px;
}
}



.left-box{
  width: 40%;
  padding-right: 50px;
  box-sizing: border-box;
}
.right-box{
  width: 60%;
  padding-left: 30px;
    box-sizing: border-box;
    align-items: start;
}

.right-box .flex{
  align-items: start;
}

.s-heading{
      writing-mode: vertical-rl;
      width: 15%;
      font-size: 2.5rem;
      color: #00584d;
}

.right-box .photo{
  width: 85%;
  position: relative;
}

.right-box .photo img{
  display: block;
  width: 100%;
  height: auto;
}

.slide-caption{
  position: absolute;
  right: 0px;
  bottom: -30px;
  z-index: 3;
  --font-family: "Noto Serif TC", "Microsoft JhengHei", sans-serif;
  max-width: calc(100% - 32px);
  box-sizing: border-box;

  text-align: right;
  color: #4f4f4f;
  font-size: 0.6rem;
  line-height: 1.4;
  letter-spacing: 0.5px;

  white-space: normal;
  word-break: break-all;
}
.caption-left{
  left:0px;
  right:auto;
  text-align:left;
}
@media screen and (max-width: 768px){
  .slide-caption{
    right: 0px;
    bottom: -20px;
    max-width: calc(100% - 24px);
    font-size: 0.6rem;
  }
}

.swap{}

.swap .info-centent{
      flex-direction: row-reverse;
}

.swap .right-box .flex{
  flex-direction: row-reverse;
 
}

.swap .right-box {
   padding-left: 0px;
    padding-right: 20px;
}

.swap  .left-box{
      padding-right: 0px;
    padding-left: 50px;

}
.swap .s-heading{
      margin-left: -10%;
}





.SwiperA{
  padding-bottom: 40px;
  margin-bottom: 80px;
}


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

.mb-show{
  display: none;
}



@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: 15px;
  height: 15px;
  border: 0px solid #fff;
  background: rgba(255, 255, 255, .5);
  opacity: 1;
  display: none;
}

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

.SwiperA .swiper-pagination{
      transform: translateX(-45px);
}

.swap .swiper-pagination{
      transform: translateX(25px);
}

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



.view-container .info-text{
  text-align: center;
  margin-bottom: 50px;
}

.badge-container .info-text{
  text-align: center;
  margin-bottom: 50px;
}

.badge-icon{
  width: 80%;
  margin: 50px auto;
}

.houseinformation{}

.maps{
  width: 60%;
  padding-right: 10%;
}

.maps iframe{
  width: 100%;
}

.houseinformation .info-text{
  width: 40%;

}

.form-box{
    padding-bottom: 30px;
        display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.form-group{
  width: 30%;
  margin-right: 20px;
  margin-bottom: 20px;
}
.form-group:nth-child(3),
.form-group:nth-child(5){
  margin-right: 0;
}

.group-50{
  width: 46%;
}

.grpup-100{
  width: 100%;
  text-align: center;
}

.g-btn{
    background-color: #00584d;
    border: 0px;
    font-size: 24px;
    font-weight: 500;
    letter-spacing: 2px;
    width: 150px;
    margin: 20px auto 0px;
    padding: 10px 0px;
    color: #fff;
}

.form-box p{
  font-family:  "Noto Sans TC";
  color: #414042;
  font-size: 18px;
  margin-bottom: 15px;
}


.checkbox {
    font-size: 18px;
    color: #fff;
    line-height: 1.5;
}

.checkbox a {
    color: #fff;
    text-decoration: underline;
}
.checkbox input{
    margin-right: 10px;
}

.form-control::-moz-placeholder {
    color: #999;
}





.form-control {
    display: block;
    width: 100%;
    height: 65px;
   /*  padding: 6px 10px 6px 0px; */
    font-size: 21px;
    line-height: 1.428571429;
    color: #000;
    vertical-align: middle;
    background-image: none;
    border: 0px ;
    border-radius: 0px;
    box-shadow: none;
    box-sizing: border-box;
    background-color: #fff;
    font-weight: 500;
}


::placeholder {
  color: #b5b5b5;
  opacity: 1; /* Firefox */
  font-size: 16px;
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
 color: #b5b5b5;
  font-size: 16px;
}

::-ms-input-placeholder { /* Microsoft Edge */
 color: #b5b5b5;
  font-size: 16px;
}




/* =====footer===== */

.section-footer{
  background-color: #11655b;
  padding: 80px 15px;
  box-sizing: border-box;
}


.footer-title{
  width: 40%;
  margin: 0 auto;
}


#section-1 {
  position: relative;
}

#section-2 {
  position: relative;
}





/* =======form======= */
.form-wrap{
  margin: 80px auto 0px;
}

.form-wrap .info-text{
  text-align: center;
}


/*=====loading=====*/

.progress {
    position: fixed;
    z-index: 10001;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: -webkit-flex;
    -webkit-align-items: center;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-justify-content: center;
    -webkit-transform: translateZ(0);
    background-repeat: repeat;
    background-size: cover;
    background-color: #f8f8f8;
}

.progress-inner {
    z-index: 0;
    text-align: center;
    position: relative;
}

.progress-logo {
    display: block;
    margin-bottom: 20px;
}

.progress-logo {
    display: block;
    margin-bottom: 20px;
}

.progress-complete .progress-bar {
    background-color: #155b43;
}

.progress-bar {
    display: block;
    bottom: 0px;
    z-index: 1;
    left: 0px;
    width: 100%;
    height: 1px;
    background-color:#155b43;
    right: 0px;

    animation: .6s w-bar infinite alternate;
}













@keyframes w-bar {
    0% {
        width: 0px;
        opacity: .5;
    }

    100% {
        width: 100%;
        opacity: 1;
    }
}

.progress-text {
    /* display: none;*/
    color: #c29121;
    font-size: 18px;
    position: absolute;
    left: 0px;
    right: 0px;
    margin: 0 auto;
    width: 100%;
    bottom: -50px;
}



@media screen and (min-width: 1170px) {
  .container{
    max-width: 1200px;
    margin: 0 auto;
  }

}
.badge-container{
  max-width: 750px;
  margin: 8% auto;
}

@media screen and (max-width: 991px) {
    .pic-wrap {
        overflow-x: scroll;
         display:flex;
  justify-content:center;
    }
    .flex{
      flex-wrap: wrap;
    }
    .left-box{
      width: 100%;
      padding: 0px;
    }
    .right-box{
      width: 100%;
      padding: 0px;
      padding-right: 5%;
    }
    .info-centent{
      /* max-width: 750px;
      margin: 0 auto; */
    }
    .info-text{
      max-width: 640px;
      margin: 0 auto 45px;
    }
    .info-text .title{
      text-align: center;
    }
     .swap  .info-text .title br{
      display: none;
    }
    .swap .left-box{
      padding-left: 0;
    }
    .swap .right-box{
      padding-right: 0;
    }
    .swap .s-heading{
      margin-left: 0;
    }





}

@media screen and (max-width: 768px) {
  .kv{
    background-image: url('../images/kv-bg-m.jpg?v07313');
 height: 100%;
 aspect-ratio: 9 / 16; /* 設定寬高比為 9:16 */
  }
  .kv .container{
    padding-top: 50%;
  }
  .mt-50{
    margin-top: 150px;
  }
  .mb-show{
    display: block;
  }
  .mb-no{
    display: none;
  }
  .kv .title{
    width: 50%;
    padding-bottom: 10%;
  }
  .maps{
    width: 80%;
     margin: 0 auto;
     padding-right: 0;
  }
  .houseinformation .info-text{
    width: 100%;
    text-align: center;
    margin-top: 30px;
  }
  .form-group{
    width: 100%;
    margin-right: 0px;
    margin-bottom: 15px;
  }
  .form-box p{
    margin-bottom: 10px;
  }
  .form-box{
    width: 80%;
    margin: 0 auto;
  }
  .form-wrap{
    margin-top: 30px;
  }
  .footer-title{
    width: 80%;
  }
  .form-control{
    height: 45px;
  }
  .form-wrap .info-text{
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 640px) {
  .info-text{
      max-width: 80%;
    }
   
}


 /* 0316new header footer */

.navbar {
  width: 100%;
  position: fixed;
  color: white;
  background-color: black;
  z-index: 100;
  height: 80px;
}

.navbar ul {
  margin: 0;
}

.navbarlogo {
  width: auto;
  height: 80px;
  position: absolute;
  top: 0;
  left: 0;
}

.navbarlogo img {
  width: auto;
  height: 100%;
}

.menu {
  width: 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-around;
      -ms-flex-pack: distribute;
          justify-content: space-around;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  top: 0;
  right: 0;
}

.menu li {
  font-size: 15px;
  height: 80px;
  line-height: 80px;
  list-style-type: none;
  cursor: pointer;
  color: white;
}

.hambugermenuicon {
  width: 30px;
  height: 24px;
  position: fixed;
  top: 18px;
  right: 18px;
  z-index: 100;
  display: none;
}

.bar1 {
  width: 100%;
  height: 2px;
  background-color: white;
  position: absolute;
  top: 0px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
}

.bar2 {
  width: 100%;
  height: 2px;
  background-color: white;
  position: absolute;
  top: 12px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
}

.bar3 {
  width: 100%;
  height: 2px;
  background-color: white;
  position: absolute;
  top: 24px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
}

.mobilemenu {
  display: none;
  position: fixed;
  z-index: 99;
  top: 60px;
  height: 0px;
  width: 100%;
  overflow: hidden;
  color: white;
  background-color: #29292c;
  overflow-y: scroll;
  overflow-x: hidden;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
}

.mobilemenu::-webkit-scrollbar {
  display: none;
}

.mobilemenu ul {
  -webkit-padding-start: 0px;
     -moz-padding-start: 0px;
          padding-inline-start: 0px;
}

.mobilemenu li {
  font-size: 13px;
  text-align: center;
  height: 80px;
  line-height: 80px;
  list-style-type: none;
  cursor: pointer;
  color: white;
}

a {
  color: inherit;
}

a:link {
  text-decoration: none;
}

@media only screen and (max-width: 1380px) {
  .menu li {
    font-size: 12px;
  }
}

@media only screen and (max-width: 1124px) {
  .navbar {
    width: 100%;
    position: fixed;
    color: white;
    background-color: black;
    z-index: 100;
    height: 60px;
  }
  .navbarlogo {
    width: auto;
    height: 60px;
    position: absolute;
    top: 0;
    left: 0;
  }
  .navbar .menu {
    display: none;
  }
  .hambugermenuicon {
    display: block;
  }
  .mobilemenu {
    display: block;
  }
}

.iconbox {
  background-color: #fff;
  position: fixed;
  top: 50%;
  right: 0;
  z-index: 200;
  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-border-radius: 10px 0 0 10px;
     -moz-border-radius: 10px 0 0 10px;
          border-radius: 10px 0 0 10px;
}

.icons {
  width: 70px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  padding: .5rem 0;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}

.icons img {
  width: 80%;
  height: auto;
}

@media only screen and (max-width: 991px) {
  .iconbox {
    background-color: #fff;
    width: 100%;
    bottom: 0;
    top: auto;
    -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-border-radius: 10px 10px 0 0;
       -moz-border-radius: 10px 10px 0 0;
            border-radius: 10px 10px 0 0;
  }
  .icons {
    width: 33vw;
    height: 15vw;
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
            box-sizing: border-box;
    padding: 0;
  }
  .icons img {
    height: 80%;
    width: auto;
  }
  .icons:first-child,
  .icons:nth-child(2) {
    border-right: 1px solid #ac8750;
  }
}
