@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@300;400;500;600;700&display=swap');
:root {
    --bg-color: #2e3839;
    --block-color: #040000;
    --yellow-color: #e1c785;
    --yellow-color2: #cbbd7a;
    --green-color: #184240;
    --light-gray-color: #7d7d7d;
    --dark-gray-color: #4f4f4f;
    --font-family: "Noto Sans 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;
    background-color: #2e3839;
    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 linear;
    -o-transition: all 0.3s 0s linear;
    -moz-transition: all 0.3s 0s linear;
    transition: all 0.3s 0s linear;
    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);
}

.ch {
    font-family: "Noto Serif TC";
    letter-spacing: 1.5px;
}

.en-number {
    font-family: "Rajdhani", sans-serif;
    font-weight: 500;
    font-style: normal;
}

h5 {
    font-weight: 300;
    font-size: 30px;
}

h4 {
    color: #165157;
}

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

.loader::after {
    content: "";
    display: block;
    width: 48px;
    height: 48px;
    border: 5px solid #FFF;
    border-bottom-color: #ffaf65;
    -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%; */
    /*     padding: 0px 15px; */
}

.wrapper {
    overflow-x: hidden;
}

.section {
    position: relative;
}

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

.kv {
    background-image: url('../images/bg.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    /*   box-sizing: border-box; */
    width: 100%;
    /* or any specific width */
    aspect-ratio: 16 / 9;
}

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

.kv .container {
    /*     max-width: 1280px; */
    margin: 0 auto;
    position: relative;
}

.kv-title {
    width: 750px;
    margin: 0 auto;
    padding-top: 13%;
    pointer-events: none;
}

@media screen and (min-width: 1380px) {
    .kv-title {
        width: 900px;
    }
}

@media screen and (min-width: 1680px) {
    .kv .container {
        max-width: 60%;
    }
    .kv-title {
        width: 100%;
    }
}

.kv-h1 {
    width: 65%;
    margin-bottom: 20px;
}

.kv-h3 {
    position: relative;
    margin-top: 20px;
}

.kv-h3 img {
    width: 37%;
}

.kv-h3:after {
    content: "";
    width: 40%;
    height: 1px;
    background-color: #ffaf65;
    display: block;
    position: absolute;
    left: 38%;
    top: 50%;
}

.kv-h4 {
    width: 20%;
    float: right;
    margin-top: -50px;
}


/* =====section-2==== */

.yellow-bar {
    width: 100%;
    position: absolute;
    top: 0px;
    z-index: 3;
    pointer-events: none;
}

.sectiontest .text-box .title {
    color: #fff;
    font-size: 30px;
    letter-spacing: 2px;
    font-weight: 600;
    height: 70px;
}

.sectiontest .title br,
.sectiontest .en br {
    display: none;
}

.sectiontest .text-box .title .en {
    font-size: 36px;
    font-weight: 300;
}

.sectiontest {
    position: relative;
}

.sectiontest .text-box {
    position: absolute;
    max-width: 750px;
    margin: 0 auto;
    top: 70px;
    left: 0px;
    right: 0px;
    z-index: 5;
    text-align: center;
    pointer-events: none;
}

.sectiontest .text-box h5,
.sectiontest .text-box p {
    color: #fff;
}

.sectiontest .text-box h5 {
    color: #ffaf65;
    line-height: 1.3;
    /* padding-bottom: 10px; */
    letter-spacing: 3px;
}

.section-2 .text-box {
    position: absolute;
    max-width: 500px;
    margin: 0 auto;
    top: 50px;
    left: 0px;
    right: 0px;
    z-index: 5;
    text-align: center;
}

h4 {
    color: #165157;
    margin-bottom: 15px;
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 5px;
}

h5 {
    font-weight: 300;
    font-size: 30px;
    color: #ffaf65;
}

.text-box p {
    font-size: 14px;
    letter-spacing: 2px;
    line-height: 28px;
    color: #4b4b4b;
    margin-top: 20px;
}


/* =======section-4====== */

.section-4 {
    background-color: #ffaf65;
    position: relative;
    width: 100%;
    padding-bottom: 5%;
}

.section-4 h5 {
    color: #fff;
    letter-spacing: 3px;
    font-size: 44px;
    font-weight: 100;
}

.section-4 h4 .en {
    font-weight: 300;
    font-size: 36px;
}

.section-4 p {}

.section-4 .text-box {
    text-align: center;
    padding-top: 10%;
    padding-bottom: 3%;
}

.section-4 .w-bar {
    width: 100%;
    position: absolute;
    top: 0px;
    pointer-events: none;
}

.section-4 .swiper-button-nextC:after,
.section-4 .swiper-button-prevC:after {
    content: "";
}

.section-4 .swiper-button-nextC:after {
    background-image: url('../images/next.png');
    width: 100%;
    height: 60px;
    display: block;
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center;
}

.section-4 .swiper-button-prevC:after {
    background-image: url('../images/prev.png');
    width: 100%;
    height: 60px;
    display: block;
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center;
}

.section-4 .swiper-button-nextC {
    bottom: -50px;
    right: 40px;
    top: inherit;
    width: 50px;
    height: 50px;
}

.section-4 .swiper-button-prevC {
    bottom: -50px;
    left: 40px;
    top: inherit;
    width: 50px;
    height: 50px;
}


/* ====section-9===== */

.section-9 {
    background-color: #165157;
    padding-bottom: 10%;
}

.section-9 .w-bar {
    width: 100%;
    position: absolute;
    bottom: 0px;
    pointer-events: none;
}

.section-9 h5 {
    color: #ffaf65;
    letter-spacing: 3px;
    font-size: 44px;
    font-weight: 300;
}

.section-9 h4 {
    color: #fff;
    letter-spacing: 4px;
}

.section-9 h4 .en {
    font-weight: 300;
    font-size: 36px;
}

.section-9 p {
    color: #fff;
    letter-spacing: 2px;
    line-height: 28px;
}

.section-9 .text-box {
    text-align: center;
    padding-top: 5%;
    padding-bottom: 3%;
}

.section-9 .swiper-button-nextB:after,
.section-9 .swiper-button-prevB:after {
    content: "";
}

.section-9 .swiper-button-nextB:after {
    background-image: url('../images/next.png');
    width: 100%;
    height: 60px;
    display: block;
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center;
}

.section-9 .swiper-button-prevB:after {
    background-image: url('../images/prev.png');
    width: 100%;
    height: 60px;
    display: block;
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center;
}

.section-9 .swiper-button-nextB {
    bottom: -50px;
    right: 40px;
    top: inherit;
    width: 50px;
    height: 50px;
}

.section-9 .swiper-button-prevB {
    bottom: -50px;
    left: 40px;
    top: inherit;
    width: 50px;
    height: 50px;
}

.latitude {
    position: absolute;
    left: 0px;
    top: 10%;
    width: 15%;
    z-index: 1;
    pointer-events: none;
}

.section-9 .case-slider {
    z-index: 3;
}


/* =======section-10===== */

.section-10 {
    background-color: #fff;
    padding: 50px 0px;
}

.section-10 .text-box {
    text-align: center;
}

.section-10 h5 {
    font-size: 36px;
    letter-spacing: 3px;
}

.mountain {
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 35%;
}

.mountain2 {
    position: absolute;
    bottom: 0px;
    left: 40%;
    width: 30%;
}

.park-box {
    align-items: start;
    margin-top: 3%;
}

.park-l {
    width: 60%;
}

.park-r {
    width: 40%;
    padding-left: 2%;
    box-sizing: border-box;
}

.park-r span {
    display: block;
    margin-bottom: 20px;
}


/* =====section-11===== */

.section-11 {
    background-color: #fff;
    padding: 50px 0px;
}

.section-11 .text-box p br {
    display: none;
}

.noble-text {
    width: 35%;
    padding-left: 5%;
    box-sizing: border-box;
}

.noble-photo {
    width: 65%;
    padding-left: 2%;
    box-sizing: border-box;
}

.section-11 .flex {
    align-items: end;
}

.section-11 h4 {
    text-align: right;
    line-height: 1.4;
    padding-bottom: 15px;
    font-size: 40px;
    padding-right: 5px;
}

.section-11 h5 {
    text-align: right;
    font-size: 40px;
    line-height: 1;
    font-weight: 300;
    letter-spacing: 3px;
    padding-right: 5px;
}


/* =====section-12===== */

.section-12 {
    background-color: #165157;
    padding: 10% 0px;
}

.section-12 .text-box h4 br {
    display: none;
}

.section-12 .w-bar {
    width: 100%;
    position: absolute;
    top: -1px;
    pointer-events: none;
}

.section-12 .text-box {
    text-align: center;
    margin-bottom: 30px;
}

.section-12 h5 {
    letter-spacing: 3px;
    font-size: 36px;
    font-weight: 300;
}

.section-12 h4 {
    color: #fff;
    /*     font-weight: 300;
    font-size: 48px;
    color: #fff; */
    letter-spacing: 1px;
}

.ill-box {
    flex-wrap: wrap;
}

.ill {
    width: 50%;
    padding: 0px 1%;
    box-sizing: border-box;
    text-align: center;
    margin-bottom: 30px;
}

.ill-100 {
    width: 100%;
}

.ill-100 img {
    width: 45%;
    /*      padding:0px 5%; */
    box-sizing: border-box;
    margin: 0 auto;
}

.pl-5 {
    padding-left: 5%;
}

.pr-5 {
    padding-right: 5%;
}

.adline-r {
    position: absolute;
    top: -10%;
    right: 0px;
    width: 15%;
    pointer-events: none;
}


/* ====section-13======= */

.section-13 {
    background-color: #fff;
    padding-top: 5%;
    padding-bottom: 13%;
}

.section-13 .park-box {}

.park-text p {
    font-size: 12px;
    line-height: 1.3;
    margin-top: 5px;
}

.park-text span {
    display: inline-block;
    font-size: 16px;
    margin-bottom: 0;
}

.section-13 .park-l {
    width: 60%;
}

.section-13 .park-r {
    width: 40%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.section-13 .park-case {
    width: 48%;
    margin-bottom: 10px;
}

.section-13 .case-100 {
    width: 100%;
}

.mountain3 {
    position: absolute;
    bottom: 0px;
    right: 0px;
    width: 35%;
    /*         z-index: 5; */
    pointer-events: none;
}

.mountain4 {
    position: absolute;
    bottom: 0px;
    right: 40%;
    width: 35%;
    /*     z-index: 5; */
    pointer-events: none;
}

.yellow-bar-bottom {
    position: absolute;
    bottom: 0px;
    left: 0px;
    /*       z-index: 3; */
    pointer-events: none;
    width: 100%;
}


/* =====section-14====== */

.section-14 {
    background-color: #ffaf65;
    position: relative;
    width: 100%;
    padding-bottom: 5%;
    /*       aspect-ratio: 16/10; */
}

.section-14 .container {
    /*         position: inherit; */
    height: 800px;
    max-width: 860px;
}

.section-14 h5 {
    color: #fff;
    letter-spacing: 3px;
    /*     font-size: 36px; */
    font-weight: 300;
}

.section-14 h4 br {
    display: none;
}

.section-14 h4 .en {
    font-weight: 300;
    font-size: 48px;
}

.section-4 p {}

.section-14 .text-box {
    text-align: center;
    padding-top: 5%;
    padding-bottom: 3%;
}

.ten-box {}

.ab {
    position: absolute;
}

.ten-center {
    width: 200px;
    margin: 0 auto;
    position: absolute;
    left: 0px;
    right: 0px;
    text-align: center;
    top: 44%;
}

.ten {
    width: 280px;
}

.ten-1 {
    left: 14%;
    top: 28%;
}

.ten-2 {
    left: 7.2%;
    top: 39%;
    width: 300px;
}

.ten-3 {
    left: 0%;
    top: 53%;
    width: 350px;
}

.ten-4 {
    left: 7.5%;
    top: 62%;
    width: 300px;
}

.ten-5 {
    left: 15%;
    top: 66%;
}

.ten-6 {
    right: 14%;
    top: 27.5%;
}

.ten-7 {
    right: 7.2%;
    top: 39%;
    width: 300px;
}

.ten-8 {
    right: 0%;
    top: 53%;
    width: 350px;
}

.ten-9 {
    right: 7.5%;
    top: 62%;
    width: 300px;
}

.ten-10 {
    right: 15%;
    top: 66%;
}


/* ====section-3===== */

.swiper-button-nextB,
.swiper-button-nextC,
.swiper-rtl .swiper-button-prevB,
.swiper-rtl .swiper-button-prevC {
    right: var(--swiper-navigation-sides-offset, 10px);
    left: auto;
}

.swiper-button-prevB,
.swiper-rtl .swiper-button-nextB,
.swiper-button-prevC,
.swiper-rtl .swiper-button-nextC {
    left: var(--swiper-navigation-sides-offset, 10px);
    right: auto;
}

.swiper-button-nextB,
.swiper-button-prevB,
.swiper-button-nextC,
.swiper-button-prevC {
    position: absolute;
    top: var(--swiper-navigation-top-offset, 50%);
    width: calc(var(--swiper-navigation-size) / 44 * 27);
    height: var(--swiper-navigation-size);
    margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.swiper-button-nextB:after,
.swiper-button-prevB:after,
.swiper-button-nextC:after,
.swiper-button-prevC:after {
    font-family: swiper-icons;
    font-size: var(--swiper-navigation-size);
    text-transform: none !important;
    letter-spacing: 0;
    font-variant: initial;
    line-height: 1;
}

.swiper-button-prevB:after,
.swiper-rtl .swiper-button-nextB:after,
.swiper-button-prevC:after,
.swiper-rtl .swiper-button-nextC:after {
    content: 'prev';
}

.swiper-button-nextB:after,
.swiper-rtl .swiper-button-prevB:after,
.swiper-button-nextC:after,
.swiper-rtl .swiper-button-prevC:after {
    content: 'next';
}

.mb-show {
    display: none;
}

.case-slider {
    padding: 0px 40px;
    margin-top: 30px;
    position: relative;
}

.swiper-button-next,
.swiper-button-prev {
    color: #fff;
}

.swiper-button-prev,
.swiper-button-prevB,
.swiper-button-prevC {
    left: -10px;
}

.swiper-button-next,
.swiper-button-nextB,
.swiper-button-nextC {
    right: -10px;
}

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

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

.swiper-slide {
    position: relative;
}


/* =========from======= */

.section-from {
    background-image: url('../images/form-bg.jpg');
    background-size: cover;
    width: 100%;
    background-repeat: repeat;
    padding-top: 5%;
    padding-bottom: 2%;
    background-position: center;
}

.section-from .container {
    max-width: 850px;
}

.section-from .title {
    color: #fff;
    text-align: center;
    margin-bottom: 50px;
    font-size: 30px;
    letter-spacing: 3px;
}

.section-from h4 {
    color: #fff;
}

.section-from h5 {
    font-size: 14px;
    margin-top: 30px;
    letter-spacing: 5px;
}

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

.form-group {
    width: 48%;
    margin-right: 0px;
    margin-bottom: 20px;
}

.form-group:nth-child(3),
.form-group:nth-child(5) {
    margin-right: 0;
}

.form-group:nth-child(5) {
    margin-top: -100px;
}

.form-group:nth-child(4) {
    margin-top: -20px;
}

.group-50 {
    width: 46%;
}

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

.g-btn {
    background-color: #ffaf65;
    border: 0px;
    font-size: 24px;
    font-weight: 500;
    letter-spacing: 2px;
    width: 100%;
    margin: 20px auto 0px;
    padding: 0px 0px;
    color: #165157;
    border-radius: 30px;
    height: 80px;
    line-height: 80px;
}

.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: 80px;
    /*  padding: 6px 10px 6px 0px; */
    font-size: 21px;
    line-height: 1.428571429;
    color: #fff;
    vertical-align: middle;
    background-image: none;
    border: 1px solid #ffaf65;
    border-radius: 30px;
    box-shadow: none;
    box-sizing: border-box;
    background-color: transparent;
    font-weight: 500;
    padding-left: 20px;
    font-family: "Noto Serif TC";
}

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

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

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


/*  select.slt-district {
  display: none;
}  */

.txt-zipcode {
    display: none !important;
}

.control-group {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    /*     display: flex; */
    display: block;
}

.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: transparent;
    -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) {
    .control-group label {
        width: -webkit-calc(45% - 12px);
        width: -moz-calc(45% - 12px);
        width: calc(45% - 12px);
        margin-right: 12px;
    }
}

.control-group select {
    width: 100%;
    height: 80px;
    margin: 0;
    padding: 0 20px;
    background-color: transparent;
    font-family: 'Noto Sans TC';
    font-size: 16px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    text-align: left;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    color: #fff;
    margin-top: 20px;
    border: 1px solid #ffaf65;
    border-radius: 30px;
    font-family: "Noto Serif TC";
}

.control-group select option {
    color: #000;
}

.area {
    position: relative;
    /*     top: 20px; */
}

.group-100 {
    width: 100%;
    margin-right: 0;
}

.group-100 p {
    color: #fff;
    font-size: 14px;
    letter-spacing: 2px;
    padding-left: 5px;
}

.checkbox {
    padding-left: 5px;
}

.checkbox label {
    font-size: 14px;
}

.tea-l {
    text-align: left;
}

.control-group select:nth-child(2) {
    margin-right: 0px;
}

.section-from .form-wrap .btn-code {
    display: block;
    height: 80px;
    width: 32%;
    margin-left: 0px;
    /*     margin-top: 20px; */
    background-color: #ffaf65;
    font-family: "Noto Sans TC";
    font-size: 16px;
    font-weight: 400;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: 2px;
    text-align: center;
    color: #165157;
    padding: 0px;
    border: 1px solid #ffaf65;
    border-radius: 30px;
    border-image: initial;
}

.verify-group {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.verify-group .form-control {
    width: 65%;
}

.footer-text {
    padding: 2% 0px;
}

.footer-text p {
    color: #ffaf65;
    font-weight: 300;
    letter-spacing: 3px;
    text-align: center;
    font-size: 16px;
}

.g-latitude {
    position: absolute;
    top: -100px;
    left: 0px;
    width: 17%;
    pointer-events: none;
}


/*=====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-color: #2e3839 !important;
}

.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 linear 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 only screen and (max-width: 1240px) {
    .form-box {
        padding: 0px 15px;
    }
    .swiper-button-prev,
    .swiper-button-prevB,
    .swiper-button-prevC {
        left: 5px;
    }
    .swiper-button-next,
    .swiper-button-nextB,
    .swiper-button-nextC {
        right: 5px;
    }
}

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

@media screen and (min-width: 1280px) {}

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

@media screen and (max-width: 991px) {
    .flex {
        flex-wrap: wrap;
    }
    .left-box {
        width: 100%;
        padding: 0px;
    }
    .right-box {
        width: 80%;
        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: left;
    }
    .section-from .title {
        text-align: center;
    }
    .form-group {
        width: 100%;
        margin-bottom: 20px;
        margin-right: 0;
    }
    .control-group {
        flex-wrap: wrap;
    }
    .control-group select {
        width: 100%;
        margin-bottom: 20px;
        margin-top: 0;
    }
    .kv-title {
        padding: 8% 2% 0px;
    }
    .pt-20 {
        padding-top: 5%;
    }
    .case-slider {
        padding: 0px 20px;
    }
    .section-4 {
        padding-bottom: 17%;
    }
    .section-4 .swiper-button-next {
        right: 20px;
    }
    .swiper-button-next,
    .swiper-button-nextB,
    .swiper-button-nextC {
        right: 10px;
    }
    .swiper-button-prev,
    .swiper-button-prevB,
    .swiper-button-prevC {
        left: 10px;
    }
    .pos-l {
        left: inherit;
        right: -80px;
        top: -85px;
        width: 70%;
    }
    .form-group:nth-child(3),
    .form-group:nth-child(5) {
        margin-top: 0;
    }
    .control-group select:nth-child(2) {
        margin-bottom: 0;
    }
    .section-from .form-wrap .btn-code {
        /*         width: 100%; */
        margin-top: 0px;
    }
    .form-group:nth-child(4) {
        margin-top: 0px;
    }
}

@media screen and (max-width: 768px) {
    .kv {
        aspect-ratio: 9 / 16;
        /* 設定寬高比為 9:16 */
        background-image: url('../images/bg-mb.jpg');
    }
    .kv-title {
        width: 85%;
    }
    .mb-show {
        display: block;
    }
    .mb-no {
        display: none;
    }
    .maps {
        width: 80%;
        margin: 0 auto;
        padding-right: 0;
    }
    .form-group {
        width: 100%;
        margin-right: 0px;
        margin-bottom: 15px;
    }
    .form-box p {
        margin-bottom: 10px;
    }
    .form-box {
        width: 80%;
        margin: 0 auto;
        padding: 0px;
    }
    .form-wrap {
        margin-top: 30px;
        margin-bottom: 30px;
    }
    .form-wrap .info-text .title {
        text-align: center;
    }
    .footer-title {
        width: 80%;
    }
    .form-control {
        /*         height: 45px; */
    }
    .form-wrap .info-text {
        margin-bottom: 30px;
    }
    .sectiontest .title br {
        display: block;
    }
    .sectiontest .text-box .title {
        line-height: 1.2;
        height: inherit;
        margin-bottom: 20px;
    }
    .sectiontest .text-box .title .en {
        font-size: 30px;
    }
    .section-4 .text-box {
        padding-right: 0;
    }
    .sectiontest .text-box h5 {
        font-size: 21px;
    }
    .section-9 h4,
    .section-10 h4,
    .section-12 h4 {
        line-height: 1.3;
    }
    .section-4 .swiper-button-nextC {
        right: 20px;
    }
    .section-9 {
        padding-bottom: 15%;
    }
    .section-9 .swiper-button-nextB {
        right: inherit;
        left: 20px;
    }
    .park-l {
        width: 100%;
        margin-bottom: 10px;
    }
    .park-r {
        display: flex;
        justify-content: end;
        align-items: center;
        width: 100%;
    }
    .mb-se10 .park-r span {
        margin-right: 10px;
        width: 40%;
    }
    .park-r span:nth-child(2) {
        margin-right: 0;
    }
    .section-10 {
        padding-bottom: 0;
    }
    .section-11 .flex {
        display: block;
    }
    .noble-text {
        width: 100%;
        padding-left: 0;
    }
    .section-11 h4,
    .section-11 h5,
    .section-11 .text-box {
        text-align: center;
    }
    .section-11 .text-box p {
        margin-top: 20px;
    }
    .section-11 .text-box p br {
        display: block;
    }
    .section-11 .text-box h5 br {
        display: none;
    }
    .noble-photo {
        width: 100%;
        padding-left: 0;
        margin-top: 20px;
    }
    .section-12 .text-box h4 br {
        display: block;
    }
    .ill {
        width: 80%;
        padding-right: 0;
        margin-bottom: 0 auto;
    }
    .ill-100 img {
        width: 100%;
    }
    .section-13 {
        padding-top: 8%;
        padding-bottom: 15%;
    }
    .section-13 .park-l {
        width: 100%;
        padding: 0px 15px;
    }
    .section-13 .park-r {
        width: 100%;
        padding: 0 10px;
    }
    .section-13 .park-case {
        width: 25%;
        padding: 0px 5px;
        box-sizing: border-box;
    }
    .park-r span {
        width: 15%;
    }
    .section-13 .case-100 {
        width: 100%;
    }
    .case-100 .park-text {
        margin-top: 5px;
    }
    .case-100 p {
        margin-top: 0;
    }
    .section-14 h4 br {
        display: block;
    }
    .section-14 .container {
        max-width: 100%;
        height: inherit;
    }
    .ten-box {
        position: relative;
        height: 400px;
        width: 480px;
        margin: 0 auto;
    }
    .ten-center {
        width: 120px;
        top: 30%;
    }
    .ten {
        width: 200px;
    }
    .ten-1 {
        left: 4%;
        top: 7%;
    }
    .ten-2 {
        left: -2%;
        top: 21%;
        width: 210px;
    }
    .ten-3 {
        left: -6%;
        top: 38%;
        width: 220px;
    }
    .ten-4 {
        left: -3%;
        top: 48%;
        width: 210px;
    }
    .ten-5 {
        left: 3%;
        top: 55%;
    }
    .ten-6 {
        right: 5%;
        top: 6%;
    }
    .ten-7 {
        right: -2.5%;
        top: 21%;
        width: 210px;
    }
    .ten-8 {
        right: -6%;
        top: 38%;
        width: 220px;
    }
    .ten-9 {
        right: -2.5%;
        top: 50%;
        width: 210px;
    }
    .ten-10 {
        right: 5%;
        top: 55%;
    }
    .g-latitude {
        width: 25%;
    }
    .adline-r {
        position: absolute;
        top: 5%;
        right: 0px;
        width: 20%;
        pointer-events: none;
    }
    .latitude {
        width: 25%;
    }
    h4 {
        line-height: 1.3;
        margin-bottom: 10px;
    }
    h5 {
        margin-bottom: 10px;
    }
}

@media screen and (max-width: 640px) {
    .info-text {
        max-width: 90%;
        margin-bottom: 20px;
    }
    .case-slider {
        padding: 0px;
    }
    /*     .park-r span{
  display: block;
} */
    .park-r .case-100 span {
        display: inline-block;
    }
    .park-r span {
        width: inherit;
    }
}

.section-9 .swiper-button-prevB,
.section-4 .swiper-button-prevC {
    display: none;
}

.ten-box-480 {
    display: none;
}

@media screen and (max-width: 480px) {
    .section-from .info-text .desc p {
        font-size: 16px;
    }
    .sectiontest .text-box h5,
    .text-box h5 {
        font-size: 21px;
    }
    .section-4 h4,
    .section-9 h4,
    .text-box h4 {
        font-size: 26px;
    }
    .section-4 h4 .en {
        font-size: 40px;
    }
    .section-9 {
        padding-bottom: 17%;
    }
    .mb-480-no {
        display: none;
    }
    .ten-box-480 {
        display: block;
        padding: 30px 0px;
    }
    .section-13 .park-case {
        width: 50%;
    }
    .section-13 .case-100 {
        width: 100%;
    }
    .sectiontest .en br {
        display: block;
    }
}

@media screen and (max-width: 430px) {
    .info-text {
        width: 95%;
    }
    .text-box p {
        font-size: 12px;
    }
}

@media screen and (max-width: 320px) {
    .park-text span {
        font-size: 14px;
    }
}


/* ===== */


/* 共用基本設定 */

.adaptive-banner,
.view-window,
.image-wrapper {
    width: 100%;
}

.image-wrapper img {
    display: block;
    max-width: none;
    /* 確保圖片不被強制縮小 */
}


/* --- 桌機版 (寬度大於 768px) --- */

@media screen and (min-width: 769px) {
    .image-wrapper img {
        width: 100%;
        /* 桌機全圖露出 */
        height: auto;
    }
    .view-window {
        overflow: hidden;
    }
}


/* --- 手機版 (寬度小於等於 768px) --- */

@media screen and (max-width: 991px) {
    .view-window {
        aspect-ratio: 9 / 16;
        /* 強制 9:16 視窗 */
        overflow-x: auto;
        /* 開啟橫向捲動 */
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        background: #000;
        cursor: grab;
    }
    /* 隱藏手機版捲軸 */
    .view-window::-webkit-scrollbar {
        display: none;
    }
    .image-wrapper {
        height: 100%;
        display: inline-flex;
        justify-content: center;
    }
    .image-wrapper img {
        height: 100%;
        /* 高度撐滿視窗 */
        width: auto;
        /* 寬度依比例延伸 */
    }
}

@media screen and (max-width: 480px) {
    .view-window {
        aspect-ratio: 9 / 22;
    }
}

@media screen and (max-width: 430px) {
    .view-window {
        aspect-ratio: 9 / 25;
    }
}

.pretty-select {
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    background: url("../images/arrow.png") no-repeat right center transparent;
    border: 0px;
    width: 100%;
    height: 24px;
}

.jc-bs3-container {
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

.jc-bs3-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}