@charset "UTF-8";

/*-----------------------------
    GLOBE SETTING
-----------------------------*/

/*REGULER FONTS*/

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@200;300;600;900&family=Noto+Serif+TC:wght@500&display=swap');

/*
font-family: 'Noto Sans TC', sans-serif;
font-family: 'Noto Serif TC', serif;
*/
* {
    font-family: 'Noto Sans TC', 'Noto Serif TC', sans-serif;
    font-size: 12pt;
    font-weight: 300;
}

.noto_m {
    font-family: 'Noto Serif TC';
}

.noto_s {
    font-family: 'Noto Sans TC';
}

main {
    background-color: #fbfbfb;
}

section {
    position: relative;
    z-index: 3;
}

h1, h2, h3, h4, h5, p, ul, ol, img {
    margin: 0;
    padding: 0;
    font-size: 1em;
}

ul, ol:not(.detail) {
    list-style: none;
}

ul li, ol:not(.detail) li {
    list-style: none;
}

ul.details {
    display: flex;
}


ul.details>li>a {
    display: flex;
    justify-content: center;
    align-content: center;
    padding: 5px;
    min-width: 30px;
    color: #fff;
}

ul.d-check {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 200px;
    width: fit-content;
}

ul.d-check>li {
    position: relative;
    padding-left: 25px;
}

ul.d-check>li:not(:last-child) {
    margin-bottom: 4px;
}

ul.d-check>li:before {
    content: "\f046";
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    color: #00bcd4;
    margin-right: 10px;
    position: absolute;
    top: 5px;
    left: 0px;
}

ul.d-check>li>p {
    margin-bottom: 4px;
}

@media (min-width:767px) {
    ul.d-check.details-inline {
        flex-direction: row;
        flex-wrap: wrap;
    }

    ul.d-check.details-inline>li:not(:last-of-type) {
        margin-right: 30px;
    }
}

p, a, span, i {
    color: inherit;
    font-size: inherit;
    transition: all .3s;
    line-height: inherit;
    font-weight: inherit;
}

p {
    font-weight: 300;
    text-align: justify;
}

p:not(:last-of-type) {
    margin-bottom: 30px;
}

p.large {
    font-size: 120%;
}

a:focus, a:hover {
    color: inherit;
}

a:hover {
    text-decoration: none;
    color: inherit;
}

::selection {
    color: #1e3338;
    background-color: #ccc;
}

.sp-only {
    display: none !important;
}

.cover.bg-cover {
    display: block;
}

.bg-cover {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: block;
    transition: background-image 0.5s ease-in-out;
}

.bg-exchange.bg1 {
    background-image: url('https://picsum.photos/1980/1080?random=1')
}

.bg-exchange.bg2 {
    background-image: url('https://picsum.photos/1980/1080?random=2')
}

.cover-rectangle {
    padding-bottom: 64%;
}

.cover-square {
    padding-bottom: 100%;
}

.cover-rectangle-cloumn {
    padding-bottom: 150%;
}

@media (min-width:992px) {
    .cover-rectangle.long {
        padding-bottom: 35%;
    }
}

.x-color {
    color: #00bcd4;
}

.x-bg {
    background-color: #00bcd4;
}

.x-bg-second {
    background-color: #f5f3f0 !important;
}

.x-bg-light, .x-bg-heavy {
    position: relative;
}

.x-bg-light>*, .x-bg-heavy>* {
    position: relative;
    z-index: 3;
}

.x-bg-light::after {
    background-color: rgba(255, 255, 255, 0.5);
}

.x-bg-heavy::after {
    background-color: rgba(0, 0, 0, 0.2);
}

.x-bg-light::after, .x-bg-heavy::after {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
}

.x-bg-linear {

    background: linear-gradient(135deg, #67d9d1 0%, #c8f9e1 100%);
}

.text-row-1 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}

.text-row-2 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.text-row-3 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}



.x-btn {
    display: flex;
}

.x-btn.x-btn-center {
    justify-content: center;
}

.x-btn.x-btn-right {
    justify-content: flex-end;
}

.x-btn>a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 30px;
    border: 1px solid #ccc;
    min-width: 240px;

}

.x-btn.w100>a {
    min-width: inherit;
    width: 100%;
    padding: 20px 30px;
}

.x-btn>a span.icon {
    color: #ccc;
    ;
}

.x-btn:hover>a {
    padding: 10px 20px;
    background-color: #00bcd4;
    border-color: transparent;
}

.x-btn.w100:hover>a {
    padding: 20px 30px;
}

.x-btn.white>a {
    border-color: transparent;
    background-color: #fff;
}

.x-btn:hover:not(.white)>a span,
.x-btn:hover:not(.white)>a span i {
    color: #fff;
}



@media (min-width:1200px) {
    .container-lg {
        max-width: 1400px;
    }

    .container-sm {
        max-width: 991px;
    }
}

@media (max-width:1199px) {

    .container,
    .container-lg {
        max-width: none;
    }

}


@media (max-width:991px) {
    .sp-only {
        display: block !important;
    }

    .pc-only {
        display: none !important;
    }

}

/*-----------------------
    Switch box
------------------------*/
.switch-box {
    display: flex;
}

.switch-box .sb-item {
    flex: 0 1 50%;
}

@media (min-width:992px) {
    .switch-box .sb-item:first-child {
        flex: 0 1 calc(50% - 25px);
        margin-right: auto;
    }

    .switch-box .sb-item:last-child {
        flex: 0 1 calc(50% - 25px);
        margin-left: auto;
    }

    .switch-box.sb37 .sb-item:first-child {
        flex: 0 0 30%;
    }

    .switch-box.sb37 .sb-item:last-child {
        flex: 0 1 calc(70% - 25px);
    }

    .switch-box.sb28 .sb-item:first-child {
        flex: 0 0 20%;
    }

    .switch-box.sb28 .sb-item:last-child {
        flex: 0 1 calc(80% - 25px);
    }

    .switch-box.revers {
        flex-direction: row-reverse
    }

    .switch-box.revers .sb-item:first-child {
        margin-right: inherit;
        margin-left: auto;
    }

    .switch-box.revers .sb-item:last-child {
        margin-right: auto;
        margin-left: inherit;
    }

    .switch-box.nogutters .sb-item {
        margin: 0;
        flex: 0 0 50%;
    }

    .switch-box.sb-bg .sb-item {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 50px;
    }

    .switch-box.sb-bg .sb-item:after {
        content: "";
        position: absolute;
        display: block;
        width: 100%;
        height: 100%;
        top: 0px;
        left: 0px;
        background-color: rgba(0 0 0 / .3);
    }

    .switch-box.sb-bg .sb-item>* {
        position: relative;
        z-index: 4;
    }
}

@media (max-width:991px) {
    .switch-box {
        flex-wrap: wrap;
    }

    .switch-box .sb-item {
        flex: 0 0 100%;
    }

    .switch-box.revers-sp {
        flex-direction: column-reverse;
    }

}

/*-----------------------
    m_header
------------------------*/
header {
    position: relative;
    z-index: 5;
}

.x-header {
    padding: 0;
    background-color: #fbfbfb;
}

.navbar {
    padding: 0;
}

.m_header {
    display: none;
    width: 100%;
    transition: all .5s;
}

.m_header a.navbar-brand {
    display: flex;
    justify-content: center;
    padding: 0;
    margin: 0;
    transition: all .5s ease-in-out;
    align-items: center;
    flex: 1 1 220px;
}

.m_header a.navbar-brand img {
    height: 80px;
    width: auto;
    max-height: 80px;
}


#navBar {
    margin-left: auto;
    display: flex;
}

#navBar .navbar-nav {
    width: 100%;
    justify-content: flex-end;
}


#navBar .navbar-nav .nav-item .nav-link {
    font-size: .9em;
    letter-spacing: 2px;
    margin-left: -2px;
    font-weight: 600;
    padding: 10px;
    height: 55px;
    color: #222;
    display: flex;
    justify-content: center;
    align-items: center;
}



#navBar .nav-act {
    flex: 0 0 240px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #00BCD4;
    color: #fff;
    font-size: 1.2em;
}

#navBar .nav-act i {
    font-size: 2em;
}

@media (min-width:991px) {
    .m_header {
        display: flex;
    }

    #navBar {
        flex: 1 1 calc(100% - 220px);
    }

    #navBar .navbar-nav .nav-item .nav-link {
        position: relative;
        height: 80px;
    }

    #navBar .navbar-nav .nav-item .nav-link:before {
        content: "";
        position: absolute;
        display: block;
        width: 0%;
        height: 1px;
        bottom: 10px;
        background-color: #00bcd4;
        left: 50%;
        transform: translateX(-50%);
        transition: all .2s;
    }

    #navBar .navbar-nav .nav-item .nav-link:hover:before {
        width: 80%;
    }

    .indlogo {
        display: none;
    }
}

@media (max-width:991px) {
    .indlogo {
        top: 10px;
        left: 10px;
        position: absolute;
        max-width: 30%;
        display: block;
        min-width: 240px;
        opacity: 1;
        visibility: visible;
    }

    header.show_sp .indlogo {
        opacity: 0;
        visibility: hidden;
    }
}

@media (max-width:576px) {
    .indlogo {
        max-width: 160px;
        min-width: inherit;
        top: 18px;
    }
}

/*-------------------------
    sp-menu
--------------------------*/
.hum_btn {
    cursor: pointer;
    width: 35px;
    height: 15px;
    position: fixed;
    z-index: 9998;
    top: 30px;
    right: -70px;
    mix-blend-mode: difference;
    opacity: 0;
    visibility: hidden;
    transition: all .5s;
}

.hum_btn.show {
    opacity: 1;
    visibility: visible;
    right: 30px;
}


.hum_btn span {
    display: block;
    width: 100%;
    height: 2px;
    position: absolute;
    background-color: #fff;
    transition: 0.3s;
    box-shadow: 0 0 2px rgb(0 0 0 / .8);
}

.hum_btn span:nth-of-type(1) {
    top: 4px;
    left: 0;
}

.hum_btn span:nth-of-type(2) {
    bottom: 0px;
    left: 0;
}

.hum_btn.active span:nth-of-type(1) {
    top: 6px;
    left: 0;
    transform: rotate(25deg);
}

.hum_btn.active span:nth-of-type(2) {
    bottom: 8px;
    left: 0;
    transform: rotate(-25deg);
}

.hum_btn.active {
    right: 30px !important;
    visibility: visible;
    opacity: 1;
}

@media (max-width:991px) {
    .hum_btn {
        visibility: visible;
        opacity: 1;
        right: 30px !important;
    }
}

.sp-header {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 0vh;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all .5s;
    z-index: -1000;
    visibility: hidden;
    height: 100vh;
    clip-path: inset(0 0 100% 0);
    opacity: 0;
}

.sp-header.active {
    opacity: 1;
    z-index: 99;
    visibility: visible;
    clip-path: inset(0);
}

.sp-header .sp-nav {
    width: 100%;
    padding-top: 10vh;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.sp-header .sp-nav .m_header {
    flex-direction: column;
    max-width: 576px;
    margin: 0 auto;
    display: flex;
}

.sp-header .sp-nav .m_header a.navbar-brand {
    width: 360px;
    padding: 0 20px;
    margin: 0 auto 50px;
    flex: inherit;
}

.sp-header .sp-nav .m_header #navBar {
    margin: 0;
    flex: inherit;
}

.sp-header .sp-nav .m_header #navBar .navbar-nav {
    flex-wrap: wrap;
    flex-direction: row;
}

.sp-header .sp-nav .m_header #navBar .navbar-nav .nav-item {
    flex: 0 0 50%;
    padding: 10px;
}

.sp-header .sp-nav .m_header #navBar .navbar-nav .nav-item .nav-link {
    padding: 10px;
    border: 1px solid #ccc;
}

.u-go-to-v1:hover, .u-go-to-v1:focus:hover {
    background-color: #008a9c;
}

/* home setting */
.home-section {
    padding: 80px 0;
}

.home-section.half-y-dark {
    position: relative;
}

.home-section.half-y-dark:before {
    content: "";
    position: absolute;
    display: block;
    top: 50%;
    left: 0px;
    height: 60%;
    width: 100%;
    background-color: #eff5fa;
    transform: translateY(-50%);
}

.home-section.half-y-dark:before {

    height: 30%;

    background-color: #00bcd4;
}

.home-title {
    margin-bottom: 50px;
}

.home-title h2,
.home-title h3 {
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
}

.home-title h2 .head {
    font-size: 2em;
}

.home-title h2 .head.small {
    font-size: 1.2em;
}

.home-title h2 .dire {
    letter-spacing: 3px;
}

.home-title h2 .dire.large {
    font-size: 120%;
    margin-top: 5px;
}

.home-title h3 .head {
    font-size: 1.8em;
}

.g-letter-spacing-0 {
    letter-spacing: 0 !important;
}

.home-title.center {
    display: flex;
    justify-content: center;
    text-align: center;
    flex-direction: column;
}

.home-title.center p {
    text-align: center;
}

.home-panel {
    margin-bottom: 30px;
}

.home-panel .cover {
    padding-bottom: 64%;
    position: relative;
    overflow: hidden;
}

.home-panel .cover .bg-cover {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1, 1);
    transition: all .5s;
}

.home-panel .content {
    display: block;
    position: relative;
    z-index: 5;
    background-color: #fff;
    max-width: calc(100% - 50px);
    margin: -30px auto 0;
    padding: 30px;
    transition: all 1s;
}

.home-panel .content:hover {
    background-color: #00bcd4;
}

.home-panel .content:hover h3,
.home-panel .content:hover p {
    color: #fff;
}

.home-panel .content h3 {
    font-weight: 600;
    font-size: 1.2em;
    text-align: center;
    margin-bottom: 10px;
}

.home-panel .content p {
    text-align: center;
}

.home-panel.sm .content {
    padding: 10px;
}

.home-panel.sm .content h3 {
    margin-bottom: 0;
    font-size: 1em;
}

.home-panel:hover .cover .bg-cover {
    transform: translate(-50%, -50%) scale(1.05, 1.05);
}

.home-panel:hover .content {
    box-shadow: rgba(103, 217, 209, 0.2) 0px 0px 30px;
}

@media (max-width:767px) {
    .home-section {
        padding-top: 40px;
    }
}

/*-----------------------------
            Page Header
-----------------------------*/
.pgheadline {
    min-height: 50vh;
    display: flex;
    align-items: center;
}

.pgheadline .pg-title {
    padding: 100px 0;
}

.pgheadline .pg-title h1 {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pgheadline .pg-title h1 span {
    color: #fff;
    text-shadow: 0 0 5px rgb(32 59 67 / 80%);
}

.pgheadline .pg-title h1 span.lead {
    color: #fff;
    font-size: 3em;
    transform: scaleY(.90);
}

.pgheadline .pg-title h1 span.sub {
    letter-spacing: 5px;
    font-weight: 600;
    font-size: 1.1em;
}

@media (max-width:767px) {
    .pgheadline .pg-title {
        padding: 80px 0 50px;
    }

    .pgheadline .pg-title h1 span.lead {
        font-size: 2em;
        margin-bottom: 10px;
    }

    .pgheadline .pg-title h1 span {
        display: inline-flex;
        margin: 0 auto;
    }

    .pgheadline .pg-title h1 span.sub {

        background-color: #00bcd4;
        padding: 2px 15px;
    }

    .pgheadline {
        min-height: 30vh;
    }
}

/*-----------------------------
            footer
-----------------------------*/
footer {}

.footer {
    display: flex;
    flex-wrap: wrap;
    padding: 50px 0px;
}

.footer .ft_logo {
    flex: 0 0 100%;
    margin-bottom: 150px;

}

.footer .ft_logo a {
    display: block;
    max-width: 320px;
}

.footer .ft_logo a img {
    max-width: 100%;

}

.footer .ft_content {
    flex: 0 0 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.footer .ft_content .ft_add {
    display: flex;

}

.footer .ft_content .ft_add .ft_add_item:not(:last-of-type) {
    margin-right: 50px;
}

.footer .ft_content address p {
    font-size: 1em;
    color: #fff;
}

.footer .ft_content address p>span {
    font-weight: 600;
    margin-right: 10px;
}

.footer .ft_content address p>span.title {
    font-size: 1.2em;
}

.ft_nav {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ft_nav .ft_act {
    margin-bottom: 10px;
}

.ft_nav .ft_act a {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 16px 30px;
    border: 1px solid #fff;
    border-radius: 26px;
    color: #fff;
}

.ft_nav .ft_act a i {
    margin-right: 10px;
}

.ft_nav .ft_act a span {
    line-height: 16px;
}


@media (min-width:992px) {
    .footer .ft_content address {
        margin-bottom: 0px;
    }

}

@media (max-width:991px) {
    .footer .ft_content>.ft_act {
        order: 2;
    }

    .footer .ft_content .ft_add {
        order: 1;
        flex-direction: column;
    }

    .footer .ft_content .ft_add_item:not(:last-of-type) {
        margin-bottom: 35px;
        margin-right: 0 !important;
    }

    .footer .ft_content address p>span.title {
        border-bottom: 1px solid #fff;
        display: block;
    }
}

.sp_footer {
    margin-top: auto;
    padding: 15px;
}

.sp_footer .ft_nav {
    flex-direction: row-reverse;
}

.sp_footer .ft_nav .ft_act {
    margin-bottom: 0;
    margin-left: 30px;
}

.sp_footer ul.details>li>a {
    margin-left: 15px;
}

.sp_footer .ft_nav i {
    font-size: 1.4em;
}

@media (max-width:767px) {
    .footer .ft_content {
        flex-wrap: wrap;
        flex-direction: column-reverse;
        align-items: center;
    }

    .footer .ft_content>* {
        flex: 0 0 100%;
        margin-bottom: 50px;
    }

    .footer .ft_logo {
        margin-bottom: 50px;
    }

    .footer .ft_logo>a {
        margin: 0 auto;
    }
}

@media (max-width:499px) {
    .sp_footer .ft_nav {
        flex-direction: column-reverse;
    }

    .sp_footer .ft_nav .ft_act {
        margin: 15px auto 0;
    }

    .sp_footer ul.details>li>a {
        margin: 0 5px;
    }
}

/*--------------
    Form setting
----------------*/
/*-----------------------------
    Contacts
-----------------------------*/
.ct_wrap {
    display: flex;
}

.ct_wrap .cover {
    flex: 0 0 50%;
}

.ct_wrap .formpanel {
    position: relative;
}

.contact_form .title:not(:first-of-type) {
    margin-top: 50px;
}

.contact_form .title {
    padding-bottom: 5px;
    margin-bottom: 20px;
    border-bottom: 2px solid #666;
}

.contact_form .title h3 {
    text-align: center;
}

.contact_form .title p {
    text-align: center;
    background-color: #000;
    color: #fff;
}

.form_part {
    display: flex;
}

.form_part .form_item {
    flex: 1 1 calc(100% / 2 - 20px);
    margin: 0 10px 20px 10px;
}

.form_part .form_item label {
    display: block;
    font-size: 13px;
    margin-bottom: 0;
}

.form_part .form_item label span {
    margin-left: 4px;
    font-size: 13px;
}

.form_part .form_item .u-select-v2 {
    background-color: #fff;

}

.form_part .form_item input,
.form_part .form_item textarea,
.form_part .form_item select,
.form_part .form_item button {
    width: 100%;
    font-size: 14px;
    padding: 5px 10px;
    border: 1px solid #ccc;
    border-radius: 0px;
    min-height: 42px;
    background: #fff;
}

.form_part .form_item select {
    padding: 10px;
    color: #1e3338;
}

.form_part .form_item button {
    padding: 20px 10px;
    letter-spacing: 10px;
    background-color: #1e3338;
    color: #fff;
}

.form_part .form_item button:hover {
    background-color: #395860;
}

.form_part .form_item.group {
    display: flex;
    flex-wrap: wrap;
}

.form_part .form_item.group label {
    flex: 0 0 100%;
}

.form_part .form_item.group input,
.form_part .form_item.group select {
    flex: 1 1 calc(50% - 10px);
}

.form_part .form_item.group input:not(:first-of-type),
.form_part .form_item.group select:not(:first-of-type) {
    margin-left: 20px;
}

.form_part>.form_item>.group {
    display: flex;
    align-items: center;
}

.form_part>.form_item>.group .imgs {
    margin-left: 10px;
}

.form_part>.form_item>.group>input {
    flex: 0 1 180px;
}

#Contact {
    margin: 0 auto;
}

#Contact .chosen-container {
    border: 1px solid #ccc;
    min-height: 42px;
    display: flex;
    align-items: center;
    color: #1e3338;
    background: #fff;
}

@media (max-width:767px) {
    .form_part {
        flex-wrap: wrap;
    }

    .form_part .form_item {
        flex: 1 1 100%;
        margin: 0 0 15px;
    }
}

/*--------------
    falo_wrap
----------------*/

.falo_wrap {
    position: relative;
    height: 100vh;
    left: 0px;
    top: 0px;
    overflow: hidden;
}

.falo_wrap .falo-pic {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 200px;
    top: 0px;
    transition: all 2s;
}

.falo_wrap .falo-pic .cover .js-slide .init {
    width: 100%;
    padding-bottom: 100vh;
}

.falo_wrap .falo-content {
    position: absolute;
    left: 0px;
    bottom: 100px;
    width: 480px;
    height: 280px;
    transition: all 1s;
    background: #c8f9e1;
    background: linear-gradient(135deg, #c8f9e1 0, #67d9d1 100%);
    display: flex;
    justify-content: center;
    align-items: center;
}

.falo_wrap .falo-content h2 {
    font-size: 2em;
    line-height: 1.5em;
    letter-spacing: 8px;
    margin-left: 4px;
    color: #fff;
    text-shadow: 0 0 5px rgb(0 0 0 / .1);
}

@media (min-width:992px) {
    .falo_wrap {
        margin-top: -80px;
    }
}

@media (max-width:991px) {
    .falo_wrap {
        height: 80vh;
    }

    .falo_wrap .falo-pic {
        left: 0px;
    }

    .falo_wrap .falo-pic .cover .js-slide .init {
        padding-bottom: 64vh;
    }

    .falo_wrap .falo-content {
        width: 80%;
        max-width: 360px;
        height: fit-content;
        padding: 50px 0;
    }

    .falo_wrap .falo-content h2 {
        font-size: 1.4em;
    }
}

/*---------------
    ind-box
----------------*/
.ind-box {
    padding-top: 60px;
    padding-bottom: 60px;
}

.ind-box .ind-bg {
    position: relative;
    padding-bottom: 64%;
}


@media (min-width: 992px) {
    .ind-box .ind-bg {
        position: absolute;
        right: 0px;
        bottom: 0px;
        width: 70%;
        height: 70%;
        padding-bottom: inherit;
    }

    .ind-box.revers .ind-bg {
        right: inherit;
        left: 0px;
    }
}

@media (max-width: 991px) {
    .ind-box .ind-content {
        display: flex;
        flex-direction: column-reverse;
    }
}

.ind-card {
    max-width: 450px;
    padding: 100px 50px;
    background-color: rgb(255, 255, 255);
    position: relative;
    z-index: 1;
    box-shadow: rgba(103, 217, 209, 0.2) 0px 0px 30px;
}

.ind-box.revers .ind-card {

    margin-left: auto;
}

.ind-card h3 {
    font-size: 1.6em;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.ind-card p {
    margin-bottom: 20px;
}

.ind-card>i {
    font-size: 3em;
    border: 2px solid;
    padding: 10px;
    border-radius: 100%;
    margin-bottom: 20px;
}

.ind-card.center {
    display: flex;
    flex-direction: column;
    align-items: center;

}

.sb-bg .ind-card {
    background-color: rgba(0 0 0 / .4);
    border: 4px double #fff;
}

.sb-bg .ind-card .card-wrap {
    color: #fff;
}

@media (max-width: 991px) {

    .ind-card {
        margin-top: -50px;
        max-width: inherit;
        padding: 60px 50px;
    }

    .sb-bg .ind-card {
        margin: 40px;
    }

}

/*----------------------
    introl-block
----------------------*/
.introl-block {
    display: flex;
    align-items: stretch;
}

.introl-block .ib-item {
    flex: 1 1 50%;
}

.introl-block .ib-txt {
    z-index: 4;
    margin-right: -50px;
    display: flex;
    align-items: center;
}

.introl-block .ib-txt .content {
    padding: 50px;
    background-color: #fff;
    min-height: calc(100% - 80px);
    width: 100%;
    box-shadow: rgba(103, 217, 209, 0.2) 0px 0px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.introl-block .ib-txt .content h2 {
    font-size: 1.6em;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
}

.introl-block .ib-txt .content h2:after {
    content: "";
    display: block;
    position: absolute;
    width: 50px;
    height: 3px;
    background-color: #cccccc;
    top: 100%;
}

.introl-block.standar:not(.longpic) .ib-txt .content h2:after {
    left: 50%;
    transform: translateX(-50%);
}

.introl-block .ib-txt .content p {
    max-width: 400px;
}

.introl-block .ib-txt .content ul {
    list-style: disc;
    padding-left: 30px;
    margin: 25px 0 30px;
}

.introl-block .ib-txt .content ul li {
    list-style: disc;
}

.introl-block.standar .ib-item {

    margin: 0px !important;
}

.introl-block.standar .ib-img {
    flex: 0 0 60%;
}


.introl-block.standar .ib-img>.content {
    padding-bottom: 80%;
}

.introl-block.standar.longpic .ib-img>.content {
    padding-bottom: 64%;
}

.introl-block.standar .ib-txt>.content {
    height: 100%;
    align-items: center;
}

@media (min-width:992px) {
    .introl-block.revers {
        flex-direction: row-reverse
    }

    .introl-block.revers .ib-txt {
        margin-right: inherit;
        margin-left: -50px;
    }
}


@media (max-width:991px) {
    .introl-block {
        flex-direction: column;
    }

    .introl-block .ib-item {
        margin: 0;
        flex: 1 1 100%;
    }

    .introl-block .ib-txt {
        order: 2;
        margin: -30px 10px 0 10px;
    }

    .introl-block .ib-txt .content {
        padding: 40px 20px;
    }

    .introl-block .ib-txt .content h2 {
        text-align: center;
        padding-bottom: 10px;
    }

    .introl-block .ib-txt .content h2:after {
        left: 50%;
        transform: translateX(-50%);
    }

    .introl-block .ib-img {
        order: 1;
    }

    .introl-block .ib-img>.content {
        padding-bottom: 64%
    }
}


/*--------------
 Panel list
--------------*/
#Panels.listing {
    display: flex;
    flex-wrap: wrap;
}

#Panels.listing .panel {
    flex: 1 0 calc(50% - 30px);
    margin: 0 15px 15px;
}



#Panels.listing .panel .ind-card {
    max-width: inherit;
    margin-top: inherit;
    height: 100%;
}

@media (max-width:576px) {
    #Panels.listing .panel {
        flex: 0 1 100%;
        margin: 0 0px;
    }

    #Panels.listing .panel:not(:last-of-type) {
        margin-bottom: 30px
    }
}

/*------------------
    line list
------------------*/
.linelist {
    display: flex;
    flex-direction: column;
}

.linelist .ll-item:not(:last-of-type) {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #ccc;
}

.linelist .ll-item>a {
    display: flex;
    flex-direction: column;
    position: relative;
    padding: 10px;
}

.linelist .ll-item>a span.date {
    font-size: .8em;
    margin-bottom: 5px;
}

.linelist .ll-item>a span.introl {
    color: #000;
}

@media (min-width:992px) {
    .linelist .ll-item>a:after {
        content: "\e606";
        font-family: 'simple-line-icons';
        position: absolute;
        top: 50%;
        display: block;
        transform: translateY(-50%) rotate(0deg);
        right: 0px;
        z-index: 2;
        width: 25px;
        height: 25px;
        transition: all .5s;
    }

    .linelist .ll-item>a {
        padding-right: 50px;
    }

    .linelist .ll-item>a:hover {
        background-color: #fff;
        padding-left: 20px;
    }

    .linelist .ll-item>a:hover:after {
        right: 30px;
        transform: translateY(-50%) rotate(180deg);
    }
}

@media (max-width:991px) {
    .linelist .ll-item>a {
        padding: 0px;
    }
}

/* conlinst*/

.con_list .con {
    margin-bottom: 15px;
}

.con_list .con h4 {
    font-weight: 600;
}

.con_list .con p {
    font-size: 1.2em;
}

.con_list .con p>a {
    color: #00bcd4;
    padding-left: 5px;
}

/*-----------------------------
    QA
-----------------------------*/

#qa_cate {
    margin-bottom: 50px;
}

#qa_cate h2.title {
    padding: 30px 0;
    position: relative;
    margin-bottom: 0;
    font-size: 1.4em;
}

#qa_cate h2.title:after {
    width: 50px;
    height: 2px;
    background-color: #ccc;
    left: 0;
    bottom: 13px;
    content: "";
    position: absolute;
}

#qa_cate .card {
    border: none;
    border-radius: 0px;
}

#qa_cate .card-header {
    background-color: unset;
    transition: all .3s;
    padding: 0;
}

#qa_cate .card-header a {
    position: relative;
    display: block !important;
    visibility: visible;
    color: #000;
    padding: 15px 15px 15px 30px;
}

#qa_cate .card-header a:hover,
#qa_cate .card-header a:not(.collapsed) {
    background-color: #00bcd4;
    color: #ffffff;
}

#qa_cate .card-header a:after, #qa_cate .card-header a:before {
    display: block;
    content: "";
    position: absolute;
    width: 10px;
    height: 2px;
    background-color: #ddd;
    left: 12px;
    transition: all .5s;
    top: 50%;
    transform: translateY(-50%);
}

#qa_cate .card-header a:before {

    transform: translateY(-50%) rotate(270deg);
}

#qa_cate .card-header a:after {

    transform: translateY(-50%) rotate(180deg);
}

#qa_cate .card-header a[aria-expanded=true]:before {
    transform: rotate(0deg);
}

#qa_cate .card-header a[aria-expanded=true]:after {
    transform: rotate(-180deg);
}

#qa_cate .card-block {
    padding: 10px 10px 10px 35px;
    border: 1px solid #00bcd4;
    margin-top: -1px;
}

#qa_cate .card-block ol {
    padding-left: 0;
    list-style: none;
    margin-bottom: 25px;
}

#qa_cate .card-block ol li {
    padding-left: 25px;
}

#qa_cate .card-block ol li a {
    color: #999;
    font-size: 1rem;
    line-height: 25px;
}

#qa_cate .card-block img {
    max-width: 100%;
    margin: 15px 0;
}

/*- sub-btn TAGs  -*/
/* Tags */
#Tag.list {
    display: flex;
    flex-wrap: wrap;
}


#Tag.list .tag-nav:not(:last-child) {
    margin-right: 10px;
}

#Tag.list .tag-nav .tag {
    display: block;
    padding: 8px 16px;
    border: 1px solid #6cdbd2;
    border-radius: 20px;
    margin-bottom: 5px;
}

#Tag.list .tag-nav .tag:hover {
    background-color: #00bcd4;
    border-color: transparent;
    color: #fff;
}

#Tag.list.sub-btn {
    margin: 30px 0;
}


#Tag.list.sub-btn li.tag-nav a {
    padding: 8px 14px;
    border-radius: 4px;
    font-size: 1.1em;
}

@media (max-width:578px) {
    #qa_cate h2.title {
        font-size: 1.2rem;
        font-weight: 600;
        margin-bottom: 0px;
    }

    #qa_cate .card p {
        font-size: 1rem;
    }

    #Tag.list.sub-btn li.tag-nav a {
        font-size: 1em;
        padding: 10px;
        margin-bottom: 10px;
    }
}

.qa_content {
    border-radius: 0px;
    overflow: hidden;
}

/* conlinst*/

.con_list .con {
    margin-bottom: 15px;
}

.con_list .con h4 {
    font-weight: 600;
}

.con_list .con p {
    font-size: 1.2em;
}

.con_list .con p>a {
    color: #00bcd4;
    padding-left: 5px;
}

/*-------------------
 article 
----------------------*/
.page-top {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: 50px 0px;
}

.page-top h1 {
    font-size: 2em;
    font-family: 'Noto Serif TC';
    margin-bottom: 5px;
}

.page-top .title p {
    text-align: center;
    font-size: .9em;
}


.article-content h4 {
    color: #000;
    font-size: 1.4em;
    margin-bottom: 10px;
    font-family: 'Noto Serif TC';
}

.article-content h4:not(:first-of-type) {
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid #999;
}

.article-content h5,
.article-content h3 {
    margin-top: 20px;
    margin-bottom: 10px;
    color: #000;
    font-size: 1.4em;
    font-family: 'Noto Serif TC';
}

.article-content p {
    padding-left: 1vw;
}

.article-content p:not(:first-of-type) {
    margin-top: 20px;
}

.article-content img {
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px;
}

.direction:not(.form_part) {
    padding: 30px;
    background-color: #00bcd4;
    color: #fff;
    text-align: center;
    margin: 0 auto 50px;
    font-size: 1.4em;
    font-weight: 300;
}

.article-content p {
    font-size: 1.2em;
    font-weight: 300;
    line-height: 2em;
    color: #222;
}

/*---------------
x-bg-floating
-----------------*/
.x-bg-floating {
    position: relative;
    overflow: hidden;
}

.x-bg-floating>.floating_wrap {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: calc(100% + 80px);
    transform: translate(-50%, -50%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 3;
    transition: all 1s;
}

.x-bg-floating>.floating_wrap:before {
    content: "";
    position: absolute;
    display: block;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    background-color: rgba(0 0 0 / .3);
}

.bg-1 {
    background-image: url('../images/pagetop/01.jpg');
}

.bg-2 {
    background-image: url('../images/pagetop/02.jpg');
}

.bg-3 {
    background-image: url('../images/pagetop/03.jpg');
}

.bg-4 {
    background-image: url('../images/pagetop/04.jpg');
}

.bg-5 {
    background-image: url('../images/pagetop/05.jpg');
}

.bg-6 {
    background-image: url('../images/pagetop/06.jpg');
}

.bg-7 {
    background-image: url('../images/pagetop/07.jpg');
}

.bg-8 {
    background-image: url('../images/pagetop/08.jpg');
}

.x-bg-floating>* {
    position: relative;
    z-index: 5
}

/*----------------------
    categroy
----------------------*/
nav.categroy {
    background-color: #fff;
    padding: 20px;
    margin-top: -20px;
    box-shadow: rgba(0 0 0 / .3) 0 0 5px;
}



nav.categroy ul.cate-navbar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
}

nav.categroy ul.cate-navbar>li:not(:last-of-type) {
    margin-right: 20px;
}

nav.categroy ul.cate-navbar>li>.cate-link {
    padding: 5px 15px;
    font-size: 1.1em;
    font-weight: 600;
    width: 100%;
    display: block;
}

nav.categroy ul.cate-navbar>li>.cate-link:hover:before {
    width: 100%;
}

@media (min-width:992px) {
    nav.categroy.v2 {
        background-color: #1f4c6f;
    }

    nav.categroy.v2 li>.cate-link {
        background-color: #ffffff;
    }

    nav.categroy.v3 {
        background: linear-gradient(250deg, #c8f9e1 0, #67d9d1 100%);
    }

    nav.categroy.v3 li>.cate-link {
        background-color: #ffffff;
    }
}

@media (max-width:991px) {
    nav.categroy {
        padding: 4px;
        background-color: #fafafa;
        border-top: 5px solid #1f4c6f;
    }

    nav.categroy ul.cate-navbar {
        flex-direction: column;
        align-items: flex-start;
        padding-top: 15px;
        padding-bottom: 15px;
    }

    nav.categroy ul.cate-navbar>li>.cate-link {
        text-align: center;
        font-weight: 300;
        font-size: .9em;
        line-height: .9em;
        height: 100%;
        background-color: transparent;
        color: #222 !important;
    }

    nav.categroy ul.cate-navbar>li {
        flex: 0 1 calc(100% / 2);
        margin-right: inherit !important;
        padding: 0;
    }
}

/*-----------------------------
    Founders listing
-----------------------------*/

#Founders.listing {
    display: flex;
    justify-content: center;
}

#Founders.listing .found {
    flex: 0 0 calc(100% / 5);
    padding: 0 10px;
}

#Founders.listing .found .fd_wrap {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 3;
    overflow: hidden;
}



#Founders.listing .found .fd_wrap .content {
    position: absolute;
    left: 10px;
    right: 10px;
    bottom: -80px;
    background: #fff;
    padding: 5px 15px;
    text-align: center;
    transition: all .3s;
}

#Founders.listing .found:hover .fd_wrap .content {
    bottom: 0px;
    box-shadow: 0 0 10px rgb(0 0 0 / .5);
}

#Founders.listing .found .fd_wrap .content .title {
    text-align: center;
    display: flex;
    flex-direction: column;
}

#Founders.listing .found .fd_wrap .content .title h3 {
    font-size: 16px;
    margin-bottom: 4px;
    font-weight: 600;
}

#Founders.listing .found .fd_wrap .content .title p {
    letter-spacing: 0;
    font-size: .9em;
}

#Founders.listing .found .fd_wrap .content .title p.loc {}

#Founders.listing .found .fd_wrap .content .title p.com {
    min-height: 47px;
    font-size: .9em;
}

#Founders.listing .found .fd_wrap .content .title p.com span.cb {
    display: block;
    font-weight: 500;
    margin-bottom: 5px;
}

#Founders.listing .found .fd_wrap .content .more a {
    font-size: 12px;
}

@media (max-width:1199px) {
    #Founders.listing {
        flex-wrap: wrap;
    }

    #Founders.listing .found {
        flex: 0 0 calc(100% / 3 - 60px);
        margin-bottom: 30px;
    }
}

@media (min-width:768px) {
    #Founders.listing .found .fd_wrap .cover {
        filter: grayscale(.7) brightness(.9);
        transition: all .3s;
    }

    #Founders.listing .found:hover .fd_wrap .cover {
        filter: grayscale(0) brightness(1);
    }
}

@media (max-width:767px) {
    #Founders.listing .found {
        flex: 0 0 100%;
        margin-bottom: 0;
    }

    #Founders.listing .found:not(:first-child) {
        margin-top: 10px;
        padding-top: 10px;
        border-top: 1px solid #ddd;
    }

    #Founders.listing .found .fd_wrap {
        display: flex;
    }

    #Founders.listing .found .fd_wrap .cover {
        flex: 0 0 120px;
        padding-bottom: 120px;
        filter: inherit;
    }

    #Founders.listing .found .fd_wrap .content {
        flex: 1 1 100%;
        position: relative;
        left: inherit;
        right: inherit;
        bottom: inherit;
        text-align: inherit;
        display: flex;
        flex-direction: column;
    }

    #Founders.listing .found .fd_wrap .content .title {
        text-align: left;
    }

    #Founders.listing .found .fd_wrap .content .title h3 {
        margin-bottom: 0px;
    }

    #Founders.listing .found .fd_wrap .content .title p {}

    #Founders.listing .found .fd_wrap .content .more {
        margin-top: auto;
        margin-left: auto;
        margin-bottom: 10px;
    }


}

/* service */

#Service.listing {
    display: flex;
    justify-content: center;
    margin: 100px 0;
}

#Service.listing .service {
    flex: 0 0 20%;
    padding: 0 10px;
    text-align: center;
}

#Service.listing .service .icon_mark {
    border-radius: 100%;
    margin: 0 auto;
    position: relative;
}

#Service.listing .service:not(:last-child) .ser_wrap .icon_mark:before {
    content: "";
    display: block;
    position: absolute;
    height: 6px;
    width: 120px;
    background-color: #8ecad6;
    right: -70px;
    top: calc(80px - 6px / 2);
}

#Service.listing .service .icon_mark img {
    border-radius: 100%;
    max-width: 160px;
    position: relative;
    border: 5px solid #70d7a75c;
}

#Service.listing .service h4 {
    font-weight: 600;
    margin: 10px auto;
}

#Service.listing .service ul li {}

@media (max-width:767px) {
    #Service.listing {
        flex-wrap: wrap;
        margin: 0 auto 50px auto;
    }

    #Service.listing .service {
        flex: 0 0 100%;
    }

    #Service.listing .service .ser_wrap {
        display: flex;
    }

    #Service.listing .service:not(:last-child) {
        margin-bottom: 30px;
    }

    #Service.listing .service .ser_wrap .icon_mark {
        margin: 0;
        flex: 0 0 45%;
        max-width: inherit;
        text-align: right;
        position: relative;
    }

    #Service.listing .service .ser_wrap .content {
        text-align: left;
        padding-left: 50px;
        flex: 0 0 60%;
    }

    #Service.listing .service .ser_wrap .icon_mark img {
        max-width: 100px;
        position: relative;
        display: block;
        margin-left: auto;
        border: 2px solid #ccc;
    }

    #Service.listing .service:not(:last-child) .ser_wrap .icon_mark:before {
        height: 100px;
        width: 6px;
        right: calc(50px - 6px / 2);
        bottom: -30px;
        top: inherit;
    }

    #Service.listing .service .ser_wrap .content {
        padding-left: 20px;
    }

    #Service.listing .service .ser_wrap .content h4 {
        font-size: 16px;
    }

    #Service.listing .service .ser_wrap .content li {
        font-size: 13px;
    }
}

/*ilist*/
.iconlist {
    display: flex;
    margin-bottom: 80px;
    flex-wrap: wrap;
    justify-content: center;
}

.iconlist .ilist {
    flex: 0 0 calc(100% / 4 - 40px);
    margin: 0 20px 30px;
}

.iconlist .ilist .il_wrap {
    text-shadow: rgba(0 0 0/.5) 0px 0px 5px;
}

.iconlist .ilist .il_wrap .cover {
    position: relative;
    border-radius: 100%;
    border: 6px solid #fff;
    width: 190px;
    height: 190px;
    margin: 0 auto;
}

.iconlist .ilist .il_wrap .cover>i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4em;
}

.iconlist .ilist .il_wrap .title h3 {
    font-size: 1.4em;
    margin: 15px 0;
    font-weight: 600;
    letter-spacing: 1px;

}

/*--------------------
    title-box
---------------------*/

.title-box {
    display: flex;
    flex-wrap: wrap;
}

.title-box .tb-item {
    flex: 0 0 calc(50% - 40px);
    margin: 0 20px 40px;
    border: 1px solid #1f4c6f;
}

.title-box .tb-item .title {
    padding: 10px;
    background-color: #1f4c6f;
}

.title-box .tb-item .title h4 {
    color: #fff;
    font-size: 1.2em;
    font-weight: 600;
}

.title-box .tb-item .content {
    padding: 10px;
    background: #fff;
}

.title-box .tb-item .content p {
    color: #000;
}

@media (max-width:767px) {
    .title-box .tb-item {
        flex: 1 1 100%;
    }
}