@charset "UTF-8";
@import url(reset.css);
@import url(font-awesome-4.7.0/css/font-awesome.min.css);
.viewBox {
    position: fixed;
    right: 0;
    top: 0;
    z-index: 9999999;
    padding: 10px;
    font-size: 16px;
    background-color: rgba(255, 255, 0, 0.7);
    color: #000;
}

body {
    font-size: 18px;
    font-family: PingFang TC, "微軟正黑體", Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}


/*
body::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: url("../images/pagebg.jpg");
    background-repeat: no-repeat;
    background-position: center top;
    pointer-events: none;
    opacity: 0.3;
    opacity: 0;
}
*/

*,
*::before,
*::after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

*:focus {
    outline: none;
}

a {
    color: #333;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}

a:hover {
    color: #6acdde;
}

.mt20 {
    margin-top: 20px;
}

.mb30 {
    margin-bottom: 30px;
}

.wrapBox {
    padding-top: 85px;
}

@media (max-width: 1200px) {
    .wrapBox {
        padding-top: 60px;
    }
    #contact-by-whatsapp {
        position: fixed;
        bottom: 85px;
        right: 15px;
        font-size: 18px;
        line-height: 53px;
        width: 55px;
        height: 55px;
        text-align: center;
        z-index: 99;
        cursor: pointer;
    }
    #contact-by-whatsapp-web {
        display: none;
    }
    #contact-by-whatsapp:hover {
        opacity: 0.8;
    }
    /* Tooltip text */
    #contact-by-whatsapp .tooltiptext {
        visibility: hidden;
        width: 200px;
        background-color: black;
        color: #fff;
        text-align: center;
        padding: 5px 0;
        border-radius: 6px;
        /* Position the tooltip text - see examples below! */
        position: absolute;
        z-index: 1;
    }
    /* Show the tooltip text when you mouse over the tooltip container */
    #contact-by-whatsapp:hover .tooltiptext {
        visibility: visible;
        top: -5px;
        right: 105%;
    }
}

.wrap {
    width: 100%;
    max-width: 1240px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 35px;
    padding-right: 35px;
}

.wrap.full {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
}

header {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 100;
    background-color: #fff;
    border-bottom: 1px solid #c8bcbc;
    -webkit-box-shadow: 0 4px 6px -6px #222;
    box-shadow: 0 4px 6px -6px #222;
}

header .wrap {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-top: 10px;
    padding-bottom: 10px;
    min-height: 85px;
}

@media (max-width: 1200px) {
    header .wrap {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        min-height: auto;
        height: 60px;
        padding-left: 0;
        padding-right: 0;
    }
}

header .logo {
    width: 280px;
}

@media (max-width: 480px) {
    header .logo {
        width: 190px;
    }
}

header .logo a {
    display: block;
}

header .logo img {
    display: block;
    width: 100%;
}

footer {
    background-color: #6acdde;
    color: #fff;
}

footer .wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-top: 30px;
    padding-bottom: 30px;
}

@media (max-width: 767px) {
    footer .wrap {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }
}

footer .left {
    font-size: 16px;
}

@media (max-width: 480px) {
    footer .left {
        font-size: 13px;
    }
}

footer .left a {
    position: relative;
    color: #fff;
    padding-right: 10px;
    margin-right: 10px;
}

@media (max-width: 480px) {
    footer .left a {
        font-size: 13px;
    }
}

footer .left a::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    margin-top: -8px;
    width: 1px;
    height: 16px;
    background-color: #fff;
}

footer .left a:hover {
    text-decoration: underline;
}

footer .right {
    width: 126px;
}

@media (min-width: 768px) {
    footer .right {
        margin-left: auto;
    }
}

@media (max-width: 768px) {
    footer .right {
        margin-top: 20px;
    }
}

footer .right img {
    display: block;
    width: 100%;
}

.menu {
    margin-left: auto;
    margin-right: 10px;
}

@media (max-width: 1200px) {
    .menu {
        display: none;
    }
}

.menu ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.menu li {
    position: relative;
    padding-left: 15px;
    padding-right: 15px;
}

.menu li:hover .link::after {
    width: 100%;
}

.menu li:hover .subMenu {
    opacity: 1;
    pointer-events: auto;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

.menu .link {
    position: relative;
    display: block;
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 10px;
    padding-right: 10px;
    font-weight: bold;
    font-size: 15px;
    color: #707070;
}

@media (max-width: 1520px) {
    .menu .link {
        font-size: 14px;
        padding-left: 8px;
        padding-right: 8px;
    }
}

@media (max-width: 1280px) {
    .menu .link {
        font-size: 13px;
    }
}

.menu .link::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -5px;
    margin: auto;
    width: 0;
    height: 5px;
    background-color: #98d8e4;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}

.menu .link.current::after {
    width: 100%;
}

.menu .subMenu {
    position: absolute;
    left: 15px;
    top: calc(100% + 5px);
    width: 300px;
    border: 1px solid #98d8e4;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
    -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    opacity: 0;
    pointer-events: none;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}

.menu .subMenu a {
    display: block;
    padding: 10px;
    font-size: 18px;
    color: #333;
    text-align: center;
    background-color: #fff;
}

.menu .subMenu a:not(:last-child) {
    border-bottom: 1px solid #98d8e4;
}

@media (max-width: 1480px) {
    .menu .subMenu a {
        font-size: 16px;
    }
}

@media (max-width: 1280px) {
    .menu .subMenu a {
        font-size: 14px;
    }
}

.social {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media (max-width: 1200px) {
    .social {
        display: none;
    }
    .breadcrumbBox {
        display: block;
        opacity: 0.9;
        position: fixed;
        top: 61px;
        z-index: 99;
        width: 100%;
        background-color: white;
    }
}

@media (min-width: 1201px) {
    #contact-by-whatsapp-web {
        z-index: 999;
        border-radius: 15px 0px 0px 15px;
        padding: 10px 10px 10px 10px;
        right: 0;
        position: fixed;
        display: inline-block;
        top: 50%;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
        background-color: #28a745;
    }
    #contact-by-whatsapp-web:hover {
        opacity: 0.8;
    }
    #contact-by-whatsapp {
        display: none;
    }
    .yt-social {
        background: #c4302b !important;
    }
    .lang-social {
        background: #6acdde !important;
        font-weight: 700;
    }
    .breadcrumbBox {
        display: block;
        opacity: 0.9;
        position: fixed;
        top: 86px;
        z-index: 99;
        width: 100%;
        background-color: white;
    }
}

.webtooltiptext {
    margin-top: 10px;
    line-height: 25px;
    text-orientation: mixed;
    writing-mode: vertical-rl;
    color: white;
    font-size: 20px;
    font-weight: bold;
}

.social a {
    display: block;
    margin-left: 16px;
    background: #205D7A;
    color: #fff;
    width: 24px;
    height: 24px;
    border-radius: 12px;
    font-size: 14px;
    text-align: center;
}

.bannerList {
    position: relative;
    z-index: 1;
    overflow: hidden;
    margin-bottom: 50px;
}

@media (max-width: 767px) {
    .bannerList {
        margin-bottom: 20px;
    }
}

.bannerList:not(.full)::after {
    content: '';
    position: absolute;
    right: 0;
    top: calc(100% - 40px);
    z-index: 20;
    width: 100%;
    height: 1000px;
    background-color: #fff;
    -webkit-transform: skewY(-2deg);
    -ms-transform: skewY(-2deg);
    transform: skewY(-2deg);
}


/*
.bannerList.hidden::after {
    display: none;
}
*/

.bannerList .item:not(.full)::after {
    content: '';
    position: absolute;
    right: 0;
    top: calc(100% - 40px);
    z-index: 20;
    width: 100%;
    height: 1000px;
    background-color: #fff;
    -webkit-transform: skewY(-2deg);
    -ms-transform: skewY(-2deg);
    transform: skewY(-2deg);
}

@media (max-width: 1280px) {
    .bannerList:not(.full)::after {
        display: none;
    }
    .bannerList .item:not(.full)::after {
        display: none;
    }
}

.bannerList .ins {
    position: relative;
    z-index: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background-color: #7ecedd;
}

@media (max-width: 1000px) {
    .bannerList .ins {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        /*background-color: #fff;*/
        background-color: #6acdde;
    }
    .bannerList .full .web-asset {
        display: none;
    }
    .bannerList .full .mobile-asset {
        display: block !important;
    }
}

.bannerList .bannerTextBox {
    position: relative;
    z-index: 4;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 48%;
    padding-left: calc((100% - 1600px) / 2);
}

@media (max-width: 1365px) {
    .bannerList .bannerTextBox {
        padding-left: 35px;
        padding-right: 35px;
        padding-top: 20px;
        padding-bottom: 20px;
    }
}

@media (max-width: 1000px) {
    .bannerList .bannerTextBox {
        width: 100%;
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
        text-align: center;
    }
}

.bannerList .bannerTextBox .title {
    padding-bottom: 30px;
    font-size: 50px;
    color: #fff;
    line-height: 1.3;
    /*text-transform: uppercase;*/
}

@media (max-width: 1640px) {
    .bannerList .bannerTextBox .title {
        font-size: 40px;
        padding-bottom: 20px;
    }
}

@media (max-width: 1000px) {
    .bannerList .bannerTextBox .title {
        color: #fff;
    }
}

@media (max-width: 640px) {
    .bannerList .bannerTextBox .title {
        font-size: 35px;
        padding-bottom: 12px;
    }
}

.bannerList .bannerTextBox .text {
    /*padding-bottom: 50px;*/
    padding-bottom: 30px;
    font-size: 20px;
    color: #333;
    line-height: 1.4;
}

@media (max-width: 1640px) {
    .bannerList .bannerTextBox .text {
        font-size: 18px;
        padding-bottom: 20px;
        /*padding-top: 20px;*/
    }
}

.bannerList .pic {
    position: relative;
    z-index: 2;
    width: 48%;
    margin-left: auto;
}

@media (max-width: 1000px) {
    .bannerList .pic {
        width: 100%;
    }
}

.bannerList .pic::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 50%;
    height: 100%;
    background-image: url("../images/bannerMask2.png");
    background-repeat: repeat-y;
    background-size: 100%;
}

@media (max-width: 1000px) {
    .bannerList .pic::before {
        display: none;
    }
}

.bannerList .pic img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.bannerList.full .pic {
    width: 100%;
}


/*
@media (max-width: 1000px) {
    .bannerList .btn1 a {
        background-color: #6acdde;
        color: #fff;
    }
}
*/

.btn1 a {
    display: inline-block;
    padding: 8px 45px;
    border-radius: 10px;
    /*font-size: 25px;*/
    color: #333;
    /*text-transform: uppercase;*/
    background-color: #fff;
}

.btn1 a:hover {
    background-color: rgba(255, 255, 255, 0.8);
}


/*
@media (max-width: 1640px) {
    .btn1 a {
        font-size: 20px;
    }
}
*/

.btn2.center {
    text-align: center;
}

.btn2 a {
    display: inline-block;
    padding: 3px 40px;
    border: 3px solid #6acdde;
    border-radius: 10px;
    color: #6acdde;
    /*font-size: 28px;*/
}

@media (max-width: 767px) {
    .btn2 a {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .btn2 a {
        font-size: 16px;
        border-width: 2px;
    }
}

.btn2 a:hover {
    color: #fff;
    background-color: #6acdde;
}

.btn2.bg a {
    color: #fff;
    background-color: #6acdde;
}

.btn2.bg a:hover {
    color: #6acdde;
    background-color: #fff;
}

.buttonClose {
    position: fixed;
    right: 20px;
    top: 20px;
    width: 48px;
    height: 48px;
    background-color: #fff;
    border-radius: 50%;
    z-index: 10;
}

@media (max-width: 480px) {
    .buttonClose {
        right: 10px;
        top: 10px;
    }
}

.buttonClose::before,
.buttonClose::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    margin-top: -1px;
    margin-left: -13.5px;
    width: 27px;
    height: 2px;
    background-color: #6acdde;
}

.buttonClose::before {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.buttonClose::after {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.linkStyle {
    display: inline-block;
    padding: 10px 20px;
    font-size: 30px;
    color: #6acdde;
    border: 1px solid #6acdde;
    border-radius: 10px;
}

.linkStyle:hover {
    background-color: #6acdde;
    color: #fff;
}

.linkStyle.bg {
    background-color: #6acdde;
    color: #fff;
}

.linkStyle.bg:hover {
    background-color: #fff;
    color: #6acdde;
}

.linkStyle2 {
    display: inline-block;
    padding: 10px 20px;
    font-size: 30px;
    color: #fff;
    border: 1px solid #6acdde;
    border-radius: 10px;
}

.linkStyle2:hover {
    background-color: #fff;
    color: #6acdde;
}

.linkStyle2.bg {
    background-color: #fff;
    color: #6acdde;
}

.linkStyle2.bg:hover {
    background-color: #6acdde;
    color: #fff;
}

@media (max-width: 767px) {
    .linkStyle {
        font-size: 24px;
    }
}

@media (max-width: 640px) {
    .linkStyle {
        font-size: 18px;
    }
}

.titleStyle1 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    border-bottom: 5px solid #6acdde;
}

.titleStyle1 .ins {
    padding: 10px 55px 0;
    font-size: 28px;
    color: #fff;
    border-radius: 45px 45px 0 0;
    background-color: #6acdde;
}

@media (max-width: 480px) {
    .titleStyle1 .ins {
        padding-left: 30px;
        padding-right: 30px;
        font-size: 20px;
    }
}

.sectionTitle {
    padding-bottom: 12px;
    font-weight: 400;
    font-size: 28px;
    color: #6acdde;
}

.sectionTitle.center {
    text-align: center;
}

.sectionTitle.nopb {
    padding-bottom: 15px;
}

.sectionText {
    font-size: 18px;
    color: #333;
}

.sectionText a {
    color: #333;
}

.sectionText a:hover {
    color: #6acdde;
}

.sectionText.center {
    text-align: center;
}

.sectionList {
    position: relative;
    padding-left: 50px;
    padding-bottom: 20px;
    font-size: 18px;
    color: #333;
}

.sectionList::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: #333;
}

.sectionPic {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.sectionPic.center {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.sectionPic img {
    display: block;
    max-width: 100%;
}

.tabList {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-bottom: 5px solid #6acdde;
}

@media (max-width: 1023px) {
    .tabList {
        display: none;
    }
    .breadcrumb {
        display: none;
    }
}

.tabList a {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 12px 70px 8px;
    /*font-size: 28px;*/
    color: #fff;
    line-height: 1.2;
    text-align: center;
    border-radius: 45px 45px 0 0;
    background-color: #b4e6ee;
}


/*
.tabList a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
    background-image: url("../images/tabBgLeft.png"), url("../images/tabBgRight.png");
    background-repeat: no-repeat;
    background-position: left bottom, right bottom;
    background-size: 50px 100%;
}

.tabList a::after {
    content: '';
    position: absolute;
    left: 50px;
    top: 0;
    z-index: -1;
    width: calc(100% - 100px);
    height: 100%;
    background-image: url("../images/tabBg.png");
}
*/

@media (max-width: 1280px) {
    .tabList a {
        font-size: 22px;
    }
}

@media (max-width: 1180px) {
    .tabList a {
        font-size: 20px;
        padding-left: 30px;
        padding-right: 30px;
    }
}


/*
.tabList a.current::before {
    background-image: url("../images/tabBgLeftCurrent.png"), url("../images/tabBgRightCurrent.png");
}
*/

.tabList a.current {
    background-image: none;
    background-color: #6acdde;
}

.mTabList {
    position: relative;
    z-index: 10;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: -22.5px;
}

@media (min-width: 1024px) {
    .mTabList {
        display: none;
    }
    .breadcrumb {
        color: #707070;
        font-size: 15px;
        max-width: 1400px;
        padding-top: 10px;
        padding-bottom: 10px;
    }
    .breadcrumb a {
        color: #707070;
        font-size: 15px;
    }
    .breadcrumb a:not(:last-child):after {
        content: "\003E";
        padding-right: 10px;
        padding-left: 10px
    }
}

.mTabList .mainText {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    /*width: 100%;
    max-width: 300px;*/
    height: 45px;
    padding-left: 30px;
    padding-right: 40px;
    border-radius: 30px;
    color: #fff;
    font-size: 20px;
    background-color: #6acdde;
    min-width: 320px;
}

.mTabList .mainText::after {
    content: '\f107';
    position: absolute;
    right: 20px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-family: FontAwesome;
}

.mTabList .mTabBox {
    position: absolute;
    top: 45px;
    width: 100%;
    max-width: 260px;
    background-color: #fff;
    display: none;
}

.mTabList .mTabBox a {
    display: block;
    padding: 5px;
    text-align: center;
    border-bottom: 1px solid #6acdde;
}

.tabContentBox {
    display: none;
}

.cardList {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-left: -32px;
    margin-right: -32px;
}

@media (max-width: 1023px) {
    .cardList {
        margin-left: -10px;
        margin-right: -10px;
    }
}

.cardList>li {
    width: 50%;
    padding-left: 32px;
    padding-right: 32px;
    margin-bottom: 50px;
}

@media (max-width: 1023px) {
    .cardList>li {
        padding-left: 10px;
        padding-right: 10px;
        margin-bottom: 20px;
    }
}

@media (max-width: 580px) {
    .cardList>li {
        width: 100%;
    }
}

.cardList .box {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 100%;
    border-radius: 15px;
    overflow: hidden;
    -webkit-box-shadow: 4px 7px 8px rgba(137, 137, 137, 0.5);
    box-shadow: 4px 7px 8px rgba(137, 137, 137, 0.5);
}

.cardList .title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    padding: 20px 10px;
    font-size: 28px;
    color: #fff;
    line-height: 1.2;
    background-color: #6acdde;
}

.cardList .title a {
    color: #fff;
}

@media (max-width: 1023px) {
    .cardList .title {
        font-size: 22px;
        padding: 20px 10px;
    }
}

@media (max-width: 480px) {
    .cardList .title {
        font-size: 18px;
    }
}

.cardList .pic {
    border-radius: 0 0 15px 15px;
    overflow: hidden;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.cardList .pic img {
    display: block;
    width: 100%;
}

.cardList .btn2 {
    padding-top: 10px;
    margin-top: auto;
    margin-bottom: 10px;
}

.cardList .textBox {
    height: 100%;
    padding: 25px;
}

@media (max-width: 480px) {
    .cardList .textBox {
        padding: 20px;
    }
}

.cardList.card3 {
    margin-left: -15px;
    margin-right: -15px;
}

.cardList.card3 li {
    width: 33.333%;
    padding-left: 15px;
    padding-right: 15px;
}

@media (max-width: 1023px) {
    .cardList.card3 li {
        width: 50%;
    }
}

@media (max-width: 580px) {
    .cardList.card3 li {
        width: 100%;
    }
}

.textBox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.textBox .text {
    padding-bottom: 10px;
}

.textlist {
    position: relative;
    padding-left: 40px;
    padding-bottom: 20px;
}

@media (max-width: 640px) {
    .textlist {
        padding-bottom: 10px;
    }
}

@media (max-width: 480px) {
    .textlist {
        font-size: 14px;
        padding-left: 18px;
    }
}

.textlist::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: #333;
}

@media (max-width: 480px) {
    .textlist::before {
        width: 8px;
        height: 8px;
        top: 7px;
    }
}

.textlist2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.textlist2 .title {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 110px;
    padding-right: 5px;
    padding-bottom: 30px;
    font-size: 22px;
    color: #fff;
    border-right: 5px solid rgba(255, 255, 255, 0.3);
}

.textlist2 .text {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    padding-left: 10px;
    padding-bottom: 20px;
}

.tag {
    position: absolute;
    left: 20px;
    bottom: 20px;
    display: inline-block;
    padding: 5px 20px;
    font-size: 28px;
    color: #fff;
    background-color: #eb9364;
    border-radius: 10px;
}

@media (max-width: 1023px) {
    .tag {
        font-size: 16px;
    }
}

.tag.signature {
    left: 30px;
    padding-left: 65px;
    background-color: #fff;
    color: #6acdde;
}

@media (max-width: 1023px) {
    .tag.signature {
        padding-left: 30px;
    }
}

.tag.signature::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 50%;
    margin-top: -46.5px;
    width: 67px;
    height: 93px;
    background-image: url("/images/icon_signature.png");
    background-size: contain;
}

@media (max-width: 1023px) {
    .tag.signature::before {
        width: 30px;
        height: 42px;
        margin-top: -21px;
    }
}

.slideArrow {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 10;
    opacity: 0.6;
    width: 41px;
    height: 67px;
    background-repeat: no-repeat;
    background-size: contain;
}

@media (max-width: 960px) {
    .slideArrow {
        width: 22px;
        height: 36px;
    }
}

.slideArrow.next {
    background-image: url("../images/arrowNext.png");
    width: 25px;
}

.slideArrow.prev {
    background-image: url("../images/arrowPrev.png");
    width: 25px;
}

.slideArrow:hover {
    opacity: 1;
}

.slideArrow2 {
    position: absolute;
    left: 50%;
    margin-left: -20.5px;
    z-index: 10;
    opacity: 0.6;
    width: 41px;
    height: 67px;
    background-repeat: no-repeat;
    background-size: contain;
}

.slideArrow2.prev {
    top: 0;
    background-image: url("../images/arrowPrev.png");
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}

.slideArrow2.next {
    bottom: 0;
    background-image: url("../images/arrowNext.png");
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}

.slideArrow2:hover {
    opacity: 1;
}

.bottomTextBox.border .wrap {
    padding-top: 50px;
    padding-bottom: 50px;
    /*border: 5px solid #98d8e4;*/
    border-radius: 30px;
    overflow: hidden;
}

.formList {
    width: 100%;
    padding-top: 12px;
}

.formList li {
    margin-bottom: 10px;
}

.formList .box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.formList .left {
    width: 200px;
    height: 40px;
    line-height: 40px;
    background-color: #6acdde;
    color: #fff;
    text-align: center;
    /*font-size: 28px;*/
}

@media (max-width: 640px) {
    .formList .left {
        width: 150px;
        font-size: 18px;
    }
    .formList {
        padding-top: 0px;
    }
}

@media (max-width: 414px) {
    .formList .left {
        width: 80px;
        font-size: 14px;
    }
}

.formList .right {
    position: relative;
    width: calc(100% - 200px);
    background-color: #fff;
}

@media (max-width: 640px) {
    .formList .right {
        width: calc(100% - 150px);
    }
}

@media (max-width: 414px) {
    .formList .right {
        width: calc(100% - 80px);
    }
}

.formList input,
.formList textarea {
    font-size: 16px;
    color: #333;
}

.formList input {
    width: 100%;
    height: 100%;
    padding: 0 10px;
    min-height: 40px;
    background-color: #fff;
    border: none;
}

.formList textarea {
    width: 100%;
    height: 150px;
    padding: 10px;
    border: none;
    text-indent: 200px;
    line-height: 30px;
}

.formList .message .left {
    position: relative;
    z-index: 1;
}

.formList .message .right {
    z-index: 0;
    width: 100%;
    margin-top: -40px;
    /*padding-top: 40px;*/
    height: 150px;
}

.formList .btn2 {
    padding-top: 30px;
}

.formList .btn2 a {
    padding-left: 80px;
    padding-right: 80px;
}

.backBtn {
    display: block;
    font-size: 20px;
    padding-bottom: 10px;
}

.backBtn i {
    margin-right: 8px;
}

.backBtn:hover {
    color: #6acdde;
}

.textEditorBox .flexBox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.textEditorBox img {
    display: block;
    max-width: 100%;
}

.textEditorBox.padding {
    padding-top: 30px;
    padding-bottom: 50px;
}

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

.dotsBox .dots li {
    display: inline-block;
    margin-left: 4px;
    margin-right: 4px;
}

.dotsBox .dots li.slick-active button {
    background: #6acdde;
}

.dotsBox .dots li button {
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: #C1BDBD;
    font-size: 0;
    line-height: 0;
    padding: 0;
    text-indent: -9999px;
    cursor: pointer;
}

.dotsBox .dots li button:focus {
    outline: none;
}

.mobileMenuButton {
    position: absolute;
    left: 15px;
    top: 50%;
    margin-top: -20px;
    display: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 50px;
    height: 40px;
    border: none;
    padding: 0;
    background: none;
}

@media (max-width: 1200px) {
    .mobileMenuButton {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}

.mobileMenuButton::before,
.mobileMenuButton::after {
    content: '';
    position: absolute;
    left: 50%;
    margin-left: -11.5px;
    top: 50%;
    width: 23px;
    height: 4px;
    background-color: #6acdde;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}

.mobileMenuButton::before {
    margin-top: 5px;
}

.mobileMenuButton::after {
    margin-top: -9px;
}

.mobileMenuButton i {
    display: block;
    width: 23px;
    height: 4px;
    background-color: #6acdde;
    margin-top: 1px;
    margin-bottom: 1px;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}

.mobileMenuButton.open::before {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    margin-top: -2.5px;
}

.mobileMenuButton.open::after {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    margin-top: -2.5px;
}

.mobileMenuButton.open i {
    -webkit-transform: translateX(10px);
    -ms-transform: translateX(10px);
    transform: translateX(10px);
    opacity: 0;
}

.menuMask {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 99;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8);
}

.mobileMenuBox {
    position: fixed;
    left: 0;
    top: 60px;
    z-index: 110;
    width: 100%;
    height: 100%;
    background-color: #fff;
    opacity: 0;
    pointer-events: none;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}

.mobileMenuBox.open {
    opacity: 1;
    pointer-events: auto;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

.mobileMenuBox .wrap {
    overflow-y: auto;
    height: calc(100% - 60px);
    padding: 0;
    border-top: 5px solid #98d8e4;
    border-bottom: 20px solid #98d8e4;
}

.mMenu .link {
    position: relative;
    display: block;
    text-align: center;
    color: #6ACDDE;
    font-size: 15px;
    padding: 10px;
    border-bottom: 1px solid #98d8e4;
}

.mMenu .mDropDown::after {
    content: '\f107';
    font-family: FontAwesome;
    position: absolute;
    right: 10px;
    top: 10px;
}

.mMenu .subMenu {
    display: none;
    border-top: 5px solid #98d8e4;
    border-bottom: 5px solid #98d8e4;
}

.mMenu .subMenu a {
    display: block;
    font-size: 14px;
    text-align: center;
    color: #333;
    padding: 10px;
    border-bottom: 1px solid #98d8e4;
}

.mSocial {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding-top: 15px;
    padding-bottom: 15px;
}

.mSocial a {
    margin-left: 12px;
    margin-right: 12px;
}

.formBookingBox {
    position: fixed;
    left: 0;
    top: 0;
    z-index: -1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding-top: 20px;
    padding-bottom: 20px;
    background-color: #d9f3f8;
    opacity: 0;
    pointer-events: none;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}

.formBookingBox .wrap {
    max-width: 970px;
    overflow-y: auto;
    max-height: 100%;
    text-align: center;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
    opacity: 0;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}

.formBookingBox .logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 60px;
}

@media (max-width: 480px) {
    .formBookingBox .logo {
        margin-top: 30px;
        margin-bottom: 20px;
    }
}

.formBookingBox .logo img {
    display: block;
    max-width: 100%;
}

@media (max-width: 480px) {
    .formBookingBox .logo img {
        max-width: 260px;
    }
}

.formBookingBox.open {
    opacity: 1;
    pointer-events: auto;
    z-index: 999;
}

.formBookingBox.open .wrap {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

.thankText {
    display: none;
}

.thankText .sectionText {
    color: #6acdde;
    font-size: 18px;
}

#back-to-top:hover {
    background: rgba(31, 31, 30, 0.5);
}

#back-to-top {
    position: fixed;
    bottom: 15px;
    right: 15px;
    font-size: 18px;
    line-height: 53px;
    width: 55px;
    height: 55px;
    background: #515151;
    text-align: center;
    z-index: 100;
    cursor: pointer;
    display: none;
    border-radius: 50%;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

#back-to-top span {
    color: #ffffff;
}

.mainTitle {
    font-size: 28px;
    color: #6acdde;
    margin-bottom: 12px;
}

.textEditor.replaceImg {
    display: none;
}

.textEditor pre,
.textEditor code,
.textEditor tt {
    font: 1em/1.5em 'Andale Mono', 'Lucida Console', monospace;
}

.textEditor h1,
.textEditor h2,
.textEditor h3,
.textEditor h4,
.textEditor h5,
.textEditor h6,
.textEditor b,
.textEditor strong {
    font-weight: bold;
}

.textEditor em,
.textEditor i,
.textEditor dfn {
    font-style: italic;
}

.textEditor dfn {
    font-weight: bold;
}

.textEditor p,
.textEditor code,
.textEditor pre,
.textEditor kbd {
    margin: 0 0 1.5em 0;
}

.textEditor blockquote {
    margin: 0 1.5em 1.5em 1.5em;
}

.textEditor cite {
    font-style: italic;
}

.textEditor li ul,
.textEditor li ol {
    margin: 0 1.5em;
}

.textEditor ul,
.textEditor ol {
    margin: 0 1.5em 1.5em 1.5em;
}

.textEditor ul {
    list-style-type: disc;
}

.textEditor ol {
    list-style-type: decimal;
}

.textEditor ol ol {
    list-style: upper-alpha;
}

.textEditor ol ol ol {
    list-style: lower-roman;
}

.textEditor ol ol ol ol {
    list-style: lower-alpha;
}

.textEditor dl {
    margin: 0 0 1.5em 0;
}

.textEditor dl dt {
    font-weight: bold;
}

.textEditor dd {
    margin-left: 1.5em;
}

.textEditor table {
    margin-bottom: 1.4em;
    width: 100%;
}

.textEditor th {
    font-weight: bold;
}

.textEditor th,
.textEditor td,
.textEditor caption {
    padding: 4px 10px 4px 5px;
}

.textEditor tfoot {
    font-style: italic;
}

.textEditor sup,
.textEditor sub {
    line-height: 0;
}

.textEditor abbr,
.textEditor acronym {
    border-bottom: 1px dotted;
}

.textEditor address {
    margin: 0 0 1.5em;
    font-style: italic;
}

.textEditor del {
    text-decoration: line-through;
}

.textEditor pre {
    margin: 1.5em 0;
    white-space: pre;
}

.textEditor img.centered,
.textEditor .aligncenter,
.textEditor div.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.textEditor img.alignright {
    display: inline;
}

.textEditor img.alignleft {
    display: inline;
}

.textEditor .alignright {
    float: right;
    margin-left: 10px;
}

.textEditor .alignleft {
    float: left;
    margin-right: 10px;
}

.textEditor img {
    max-width: 100%;
}

.textEditor * html .clearfix {
    height: 1%;
}

.textEditor *+html .clearfix {
    display: inline-block;
}

.textEditor .clearfix:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}

.textEditor * html .group {
    height: 1%;
}

.textEditor *+html .group {
    display: inline-block;
}

.textEditor .group:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}

.warning {
    border-color: #6acdde !important;
    border-width: 1px !important;
    border-style: solid !important;
}

.warning-msg {
    text-align: right;
    padding-left: 200px;
    width: 100%;
    font-size: small;
    color: #f5bbbb;
    display: none;
}

@media (min-width: 1001px) {
    .bannerList .full .ins {
        position: relative;
        z-index: 1;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        background-color: rgba(255, 255, 255, 0);
    }
    .bannerList .full .ins .bannerTextBox {
        display: none;
    }
    .bannerList .full .pic::before {
        display: none;
    }
    .bannerList .full .pic {
        width: 100%;
        /*margin-left: auto;
        margin-right: auto;*/
    }
    .bannerList .full .pic img {
        display: block;
        width: 100%;
        height: 100%;
        -o-object-fit: cover;
        object-fit: cover;
    }
    .bannerList .full .web-asset {
        display: block;
    }
    .bannerList .full .mobile-asset {
        display: none;
    }
    .bannerBox .dotsBox {
        position: relative;
        bottom: 35px;
        z-index: 10;
    }
}