/*
    規則說明：
        1. 所有自訂的CSS，前墜皆會加上"_"，除了[Emmet]。
        2. [Emmet] 為單一CSS縮寫，一律!important。 縮寫來源參考：https://docs.emmet.io/cheat-sheet/
        3. [Plugin Modified] 為套件複寫，直接覆蓋套件原本的樣式。
        4. [Common] 為共用css。 
            - common: 初始值、常用工具。 
            - theme: 此專案共用樣式 (單行htmlTag)。 例如: color、btn...
            - component: 此專案共用元件 (多行htmlTag組成)。 例如: dropdown、tab...
        5. [Include Page] 為共用的單一頁面。 例如: <header>、<footer>...
        6. [Single Page] 為單一頁面才用到的css。
            - 如有共用單行htmlTag的css，則提取到[theme]。 例如: _link-text (僅改文字樣式)、_btn-search (放大鏡按鈕)...
            - 如有共用多行htmlTag關係的css，則提取到[component]。 例如: _info-card (card內包含眾多樣式)...
 
    筆記：
        1. z-index 排序: 
            10: header
            10: footer
            20: _m-wrap-backdrop、modal-backdrop
            21: _search-container
            22: _dropdown
            30: _m-navbar
*/

/*====== [Emmet] ======*/
    .d-ib {display:inline-block !important;}

    .ov-h {overflow:hidden !important;}
    .va-t {vertical-align:top !important;}
    .va-m {vertical-align:middle !important;}

    .pos-s {position:static !important;}
    .pos-a {position:absolute !important;}
    .pos-r {position:relative !important;}
    .pos-f {position:fixed !important;}

    .t-0 {top:0 !important;}
    .r-0 {right:0 !important;}
    .b-0 {bottom:0 !important;}
    .l-0 {left:0 !important;}

    .ai-b  {align-items:baseline !important;}
    .ai-c  {align-items:center !important;}
    .ai-fe {align-items:flex-end !important;}
    .ai-fs {align-items:flex-start !important;}
    .ai-s  {align-items:stretch !important;}

    .jc-c  {justify-content:center !important;}
    .jc-fe {justify-content:flex-end !important;}
    .jc-fs {justify-content:flex-start !important;}
    .jc-sa {justify-content:space-around !important;}
    .jc-sb {justify-content:space-between !important;}

    .fz-12 {font-size:12px !important;}
    .fz-14 {font-size:14px !important;}
    .fz-15 {font-size:15px !important;}
    .fz-18 {font-size:18px !important;}
    .fz-24 {font-size:24px !important;}
    .fz-28 {font-size:28px !important;}

    .us-a {user-select:all !important; -moz-user-select:all !important; -webkit-user-select:all !important;}
    .us-n {user-select:none !important; -moz-user-select:none !important; -webkit-user-select:none !important;}



/*====== [Plugin Modified] ======*/
    /*=== [bootstrap] ===*/
        /* modal */
            .modal-backdrop { background-color: rgba(90, 97, 119); z-index: 20; }
            .modal-backdrop.show { opacity: .9; }
            .close { opacity: 0.75; position: absolute; top: 0; right: 0; padding: 5px; margin: 5px; }
            .close:not(:disabled):not(.disabled):focus,
            .close:not(:disabled):not(.disabled):hover { opacity: 1; }

        
        /* pagination */
            .page-link { padding: .25rem .5rem; color: #3f434e; background-color: transparent; border: 0; }
            .page-link:hover { color: #af987d; background-color: transparent; border-color: unset; }
            .page-link:focus { box-shadow: unset; }
            .page-item { margin: 0 2px; }
            .page-item.prev .page-link,
            .page-item.next .page-link {color: #fff; background-color: #b9bcc7; display: inline-flex; justify-content: center; align-items: center; border-radius: 50px !important; width: 30px; height: 30px; margin: 0 2px; }
            .page-item.prev .page-link._lg,
            .page-item.next .page-link._lg {width: 40px; height: 40px; }
            
            .page-item.active .page-link { color: #3f434e; background-color: transparent; border-color: transparent; font-weight: bold; position: relative; }
            .page-item.active .page-link::after { content:"_"; position: absolute; bottom: 0; left: 0; width: 100%; text-align: center; }
            .page-item.disabled .page-link { opacity: 0.5; }


        /* form */
            .form-control-lg { font-size: 17px; }


        /* 自訂衍伸 */
            /* .modal .modal-dialog-aside { width: 350px; max-width:80%; height: 100%; margin:0; transform: translate(0); transition: transform .2s; }
            .modal .modal-dialog-aside .modal-content { height: inherit; border:0; border-radius: 0;}
            .modal .modal-dialog-aside .modal-content .modal-body { overflow-y: auto }
            .modal.fixed-right .modal-dialog-aside { margin-left:auto; transform: translateX(100%); }
            .modal.fixed-left .modal-dialog-aside { margin-right:auto; transform: translateX(-100%); }
            .modal.show .modal-dialog-aside { transform: translateX(0); } */
            ._pb-6 { padding-bottom: 4.5rem !important; }
            ._pb-7 { padding-bottom: 6rem !important; }
            ._pb-8 { padding-bottom: 9rem !important; }
            @media (min-width: 575px){
                ._pb-sm-6 { padding-bottom: 4.5rem !important; }
                ._pb-sm-7 { padding-bottom: 6rem !important; }
                ._pb-sm-8 { padding-bottom: 9rem !important; }
            }
            @media (min-width: 768px){
                ._pb-md-6 { padding-bottom: 4.5rem !important; }
                ._pb-md-7 { padding-bottom: 6rem !important; }
                ._pb-md-8 { padding-bottom: 9rem !important; }
            }
            @media (min-width: 992px){
                ._pb-lg-6 { padding-bottom: 4.5rem !important; }
                ._pb-lg-7 { padding-bottom: 6rem !important; }
                ._pb-lg-8 { padding-bottom: 9rem !important; }
            }
            @media (min-width: 1200px){
                ._pb-xl-6 { padding-bottom: 4.5rem !important; }
                ._pb-xl-7 { padding-bottom: 6rem !important; }
                ._pb-xl-8 { padding-bottom: 9rem !important; }
            }
            @media print{
                ._p-print-0 { padding: 0 !important; }
                ._p-print-3 { padding: 1rem !important; }
            }


    /*=== [OwlCarousel2] ===*/
        .owl-theme .owl-dots .owl-dot span { height: 1vw; width: 5vw; max-width: 45px; max-height: 6px; margin: 0.5vw 0.7vw; }
        .owl-dots { position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); margin-bottom: 10px; }
        .owl-dot { border: none !important; outline: none !important; }


        /* 自訂衍伸 */
            /* OwlCarousel 的前後按鈕 */
            ._owl-card-nav .owl-nav { position: absolute; left: 50%; top: 50%; transform: translateX(-50%) translateY(-50%); width: calc( 100% + 50px*2 ); margin-top: 0px; z-index: -1; }
            ._owl-card-nav .owl-nav button[class*=owl-] { float: left; width: 30px; height: 30px; border-radius: 50%; background-color: #b9bcc7; outline: none;}
            ._owl-card-nav .owl-nav button.owl-next { float: right; }
            @media (max-width: 767.98px) {
                ._owl-card-nav .owl-nav { display: none; }
            }


    /*=== [swiper] ===*/
        .swiper-pagination { padding-bottom: 5px; }
        .swiper-pagination-bullet { border-radius: 4px; max-width: 45px; max-height: 6px; width: 5vw; height: 0.75vw; border-radius: 0; }
        .swiper-pagination-bullet-active { background-color: #fff; }
        @media( max-width: 991.98px ){
            .swiper-pagination { padding-bottom: 30px; }
        }



/*====== [Common] ======*/
    /*=== [common] ===*/
        /* reset */
            html { scroll-behavior: smooth; }
            body { color: #3f434e; font-family: 'Microsoft JhengHei'; }
            a { color: inherit; cursor: pointer; }
            a:hover { color: inherit; text-decoration: none; }
            hr { border-top: 1px solid #b5a28b; }
            @page {
                size: A5 portrait;
                margin: 0.5cm;
            }


        /* 排版類 */
            ._h-100vh { height: 100vh !important; }
            ._loc-5 { left:50%; top:50%; transform:translateX(-50%) translateY(-50%);}
            ._loc-6 { right:0; top:50%; transform: translateY(-50%);}

            ._img-full { background: center center no-repeat; background-size: cover; }
            ._page-full { min-height: 100%; max-height: 100vh; overflow: hidden; }

        
        /* 等比例容器 (aspect-ratio) */
            ._ar-1-f { position: relative; width: 100%; padding-top: 100vh;}
            ._ar-7-8 { position: relative; width: 100%; padding-top: 112.25%;}
            ._ar-cont { position: absolute; top: 0; left: 0; bottom: 0; right: 0;}
            /* 用法範例:
                <div class="_ar-full">
                    <div class="_ar-cont"></div>
                </div>
            */


        /* 多餘的字會變成... */
            ._dadada { overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 1; padding-bottom: 0px !important; }
            ._dadada._da-2 { -webkit-line-clamp: 2; }
            ._dadada._da-3 { -webkit-line-clamp: 3; }
            ._dadada._da-4 { -webkit-line-clamp: 4; }



    /*=== [theme] ===*/
        /* font */
            ._fz-h1 { font-size: 36px !important; }
            ._fz-h2 { font-size: 28px !important; }
            @media( max-width: 767.98px){
                ._fz-h1 { font-size: 26px!important; }
                ._fz-h2 { font-size: 24px!important; }
            }
            ._icon-right::after { content: "\f054"; font-family: 'Font Awesome 5 Free'; font-weight: 600; display: block; float: right; color: #b8a288; transform: scaleX(0.8); }


        /* color */
            ._c-f { color: #fff !important; }
            ._c-d9c7b1 { color: #d9c7b1 !important; }
            ._c-8e7353 { color: #8e7353 !important; }
            ._bgc-f5 { background-color: #f5f5f5 !important; }
            ._bgc-d { background-color: #ddd !important; }
            ._bgc-d9c7b1 { background-color: #d9c7b1 !important; }
            ._bgc-ede9e4 { background-color: #ede9e4 !important; }
            ._bgc-b9bcc7 { background-color: #b9bcc7 !important; }


        /* grid */
            ._container-second { max-width: 935px; margin: auto; }
            ._paper { box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.16); background-color: #ffffff; }
            ._paper-padding-y { padding-top: 60px; padding-bottom: 100px; }
            @media (max-width: 991.98px) {
                ._paper-padding-y { padding-top: 30px; padding-bottom: 40px; }
            }


        /* <a>連結，文字 */
            ._link-text { color: #8e7353; text-decoration: underline; cursor: pointer; }
            ._link-text:hover { color: #8e7353; text-decoration: underline; opacity: 0.75; }


        /* <a>連結，有底線動畫樣式 */
            ._link-line { position: relative; display: block; font-weight: bold; color: #3f434e; border-bottom: 1px solid #b8a288; cursor: pointer; }
            ._link-line > * { padding: 1rem 0; }
            ._link-line::before { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; width: 0px; background-color: #aaa; transition: 0.35s width; }
            ._link-line:hover::before { width: 100%; }


        /* 放大鏡按鈕 */
            ._btn-search { display: inline-flex; background-color: #878da2; margin-left: 8px; }
            /* ._btn-search > img { display: block; max-height: 24px; } */
            ._btn-search::after { content: ""; display: block; width: 24px; height: 24px; background: url(../img/icon/icon_search.svg) center center no-repeat; background-size: contain; }
            ._btn-search.btn-lg::after { width: 25px; height: 25px; }


        /* 紙張內容的頭，偶爾有背景logo或文字 */
            ._paper-headLogo { background: url(../img/logo/logo-paperHead.png) center center no-repeat; min-height: 140px; max-height: 260px; height: 22vw; background-size: cover; }
            ._paper-headTitle { background: url(../img/bg-paperHead.jpg) center center no-repeat; min-height: 140px; max-height: 130px; height: 11vw; background-size: cover; display: flex; justify-content: center; align-items: center; font-size: 28px; }


    /*=== [component] ===*/
        /* checkbox / radio */
            ._ckb { position: relative; user-select: none; cursor: pointer; display: inline-flex; align-items: center; margin-bottom: 0; }
            ._ckb:hover { opacity: 0.9; }
            ._ckb > input[type=radio],
            ._ckb > input[type=checkbox] { position: absolute; z-index: 0; opacity: 0; height: 0; width: 0; }
            ._ckb > input[type=radio]:disabled ~ *, 
            ._ckb > input[type=checkbox]:disabled ~ * { opacity: 0.6; cursor: not-allowed; }

            ._ckb > input[type=checkbox] ~ ._ckb-b8a288 { position: relative; background-color: #fff; width: 16px; height: 16px; border-radius: 4px; }
            ._ckb > input[type=checkbox] ~ ._ckb-b8a288:after { content: ""; display: none; position: absolute; transform: rotate(45deg); top: 0px; left: 5px; width: 8px; height: 12px; border: solid #b8a288 2px; border-width: 0 3px 3px 0; }
            ._ckb > input[type=checkbox]:checked ~ ._ckb-b8a288:after { display: block; }

            ._ckb > input[type=radio] ~ ._ckb-b8a288 { position: relative; background-color: #fff; width: 16px; height: 16px; border-radius: 25px; }
            ._ckb > input[type=radio] ~ ._ckb-b8a288:after { content: ""; display: none; position: absolute; top: 3px; left: 3px; width: 10px; height: 10px; background-color: #b8a288; border-radius: 25px; }
            ._ckb > input[type=radio]:checked ~ ._ckb-b8a288:after { display: block; }
            /* Example:
                <label class="_ckb">
                    <input type="checkbox">
                    <span class="_ckb-b8a288"></span>
                    <span>同意</span>
                </label>
            */


        /* dropdown樣式 */
            ._dropdown { position: absolute; z-index: 22; white-space: nowrap; border: solid 1px #bebebe; line-height: 1.25; color: #3f434e; user-select: none; max-height: calc( 100vh - 60px ); overflow: auto; }
            ._dropdown > * { padding: 12px 20px; background-color: #f7f7f7; color: #3f434e; cursor: pointer; display: flex; }
            ._dropdown > *:hover,
            ._dropdown > *.active:hover { background-color: #E9E3DC; }
            ._dropdown > *.active { background-color: #E4DED7; }


        /* 換頁Tab樣式 */
            ._page-tab-container { flex-wrap: nowrap; justify-content: center; white-space: nowrap; overflow: auto; user-select: none; }
            ._page-tab-container ._page-tab { display: flex; align-items: center; justify-content: center; font-size: 18px; font-weight: bold; cursor: pointer; line-height: 1.3; height: 8vw; min-height: 60px; max-height: 90px; max-width: 320px; }
            ._page-tab-container ._page-tab:hover,
            ._page-tab-container ._page-tab.active { background-color: rgba(229, 222, 214, .5 ); border-bottom: 6px solid #b8a288; }
            @media (max-width: 767.98px) {
                ._page-tab-container { justify-content: flex-start; }
                ._page-tab-container ._page-tab:hover,
                ._page-tab-container ._page-tab.active { border-bottom: 3px solid #b8a288; }
            }


        /* 利用table，製作form-inline效果 */
            table._table-form tr > td:first-child { white-space: nowrap; padding-right: 1em; }
            table._table-form tr > td:not(:first-child) { width: 100%; }
            table._table-form-padding tr:not(:last-child) > td { padding-bottom: 1rem }
            table._table-va-t tr { vertical-align: top; }


        /* [hiring]/[hiring_detail] 列表table樣式 */
            table._table-hiring { font-size: 14px; white-space: nowrap; border-bottom: 1px solid #b8a288; line-height: 1.5; }
            table._table-hiring > tbody > tr:hover { background-color: rgb(184, 162, 136, .25); cursor: pointer; }
            table._table-hiring > thead > tr > th { background-color: #b8a288; color: #fff; text-align: center; padding: .6rem; }
            table._table-hiring > tbody > tr > td { border-top: 1px solid #b8a288; padding: .9rem .6rem; }
            @media(max-width: 767.98px){
                table._table-hiring { white-space: normal; border-bottom: none; }
                table._table-hiring > thead { display: none; }
                table._table-hiring > tbody > tr { display: table; width: 100%; border: 1px solid #b8a288; margin-bottom: 20px; }
                table._table-hiring > tbody > tr > td { display: table-row; text-align: left !important; border: 1px solid #b8a288; }
                table._table-hiring > tbody > tr > td > * { display: table-cell; padding: 10px; }
                table._table-hiring > tbody > tr > td:before { display: table-cell; text-align: center !important; width: 10px; content: attr(css-table-th); background-color: #b8a288; color: #fff; font-size: 14px; text-align: center; white-space: nowrap; padding: 10px; }
            }


        /* 聯繫我們 圓形按鈕 */
            ._circle-contactUs { position: fixed; z-index: 5; cursor: pointer; }
            ._circle-contactUs._side { right: 0; top: 50%; transform: translateY(-50%) scale(0.75); }
            @media(max-width: 1449.98px){
                ._circle-contactUs._side { top: unset; bottom: 0; transform: scale(0.75); }
            }
            ._circle-contactUs ._close { position: absolute; z-index: 2; right: -4px; top: -15px; width: 30px; height: 30px; padding: 3px; background-color: rgba(255,255,255,0.1); border-radius: 50px; line-height: 0; }
            ._circle-contactUs ._text { position: absolute; z-index: 1; width: 100%; height: 50%; margin: auto; padding: 10%; display: flex; justify-content: center; align-items: center; text-align: center; }
            ._circle-contactUs ._bg { width: 100%; }


        /* 每頁的標題 */
            ._page-header { padding: 30px 0; text-align: center; max-width: 1140px; width: 100%; margin: auto; }
            ._page-header--title { font-size: 28px; margin-bottom: 0; }
            ._page-header--title::after { content: ''; display: block; height: 1px; width: 80px; padding-top: 20px; margin: auto; border-bottom: solid 1px #b49779; }
            ._page-header--title + ._page-header--sub { margin-top: 30px; }
            ._page-header--sub { position: relative; }
            ._page-header--list { display: flex; justify-content: center; list-style: none; padding-left: 0; margin-bottom: 0; font-size: 14px; font-weight: bold; }
            ._page-header--list > :not(:first-child):before { content: "\2022"; display: inline; color: #b0b4c0; font-size: 1.1em; padding: 0 4px; line-height: 1; }
            ._page-header--backButton { background-color: #fff; border: solid 1px #40434d; color: #40434d; line-height: 1; padding: 6px 10px; border-radius: 4px; font-size: 14px; outline: none; position: absolute; right: 0; top: 50%; transform: translateY(-50%); }
            ._page-header--backButton:hover { opacity: 0.9; }
            @media (max-width: 1199.98px){
                ._page-header._detail { padding: 30px 15px; }
            }
            @media (max-width: 991.98px){
                ._page-header--sub { display: none; }
                ._page-header._detail { display: none; }
            }


        /* 標題右側接著線--- */
            ._title-line { display: flex; justify-content: center; align-items: center; padding-bottom: 1rem; }
            ._title-line ._title { font-size: 28px; margin-right: 1rem; margin-bottom: 0; line-height: 1; }
            ._title-line ._line { content: ""; display: block; border-top: 1px solid #b8a288; height: 1px; width: 100%; flex: 1 1 50px; }
            @media (max-width: 767.98px) { 
                ._title-line ._title { font-size: 24px; }
            }

            ._h2-line { display: flex; align-items: flex-start; justify-content: flex-start; font-size: 28px; line-height: 1.3; }
            ._h2-line::before { content: ""; display: block; min-width: 16px; width: 16px; height: 4px; margin: 16px 8px 16px 0; background-color: rgba(184, 162, 137, 1); }


        /* 後台編輯後 前台渲染的樣式 */
            ._page-editor-content { font-size: 17px; }
            ._page-editor-content * { box-sizing: border-box; }
            ._page-editor-content a[href] { color: #8e7353; text-decoration: underline; }
            ._page-editor-content a[href]:hover { opacity: 0.75; }
            ._page-editor-content img { vertical-align: top; }
            ._page-editor-content h2,
            ._page-editor-content h3,
            ._page-editor-content h5,
            ._page-editor-content h6,
            ._page-editor-content table,
            ._page-editor-content p { margin-bottom: 20px; }
            ._page-editor-content h1 { font-size: 36px; margin-bottom: 1.25em; font-weight: bold; text-align: center; }
            ._page-editor-content h2 { position: relative; font-size: 28px; padding-left: 24px; text-align: left; }
            ._page-editor-content h2::before { content:""; position: absolute; left: 0; top: 16px; width: 16px; height: 4px; background-color: #b8a288; }
            ._page-editor-content h3 { color: #8e7353; font-size: 18px; font-weight: bold; }
            ._page-editor-content h5 { font-size: 14px; color: #797a7e; }
            ._page-editor-content h5 > img + * { display: inline-block; margin-top: 0.5em; }
            ._page-editor-content h6 { font-size: 14px; }

            ._page-editor-content ul { padding-left: 1.25em; list-style: square; }
            ._page-editor-content ol { padding-left: 1em; }
            ._page-editor-content ol > li { padding-left: 0.25em; }
            @media(max-width: 767.98px){
                ._page-editor-content h1 { font-size: 28px; }
                ._page-editor-content h2 { font-size: 22px; }
                ._page-editor-content h2::before { top: 12px; }
                ._page-editor-content h3 { font-size: 17px; }
            }


        /* [people]/[hiring]... 專門篩選內容的select、input區塊 */
            ._form-filter-inputs-block { display: flex; justify-content: center; align-items: flex-end; }
            ._form-filter-inputs-block input,
            ._form-filter-inputs-block select { display: flex; width: 300px; }
            @media (max-width: 767.98px) {
                ._form-filter-inputs-block { flex-direction: column; align-items: initial; }
                ._form-filter-inputs-block input,
                ._form-filter-inputs-block select { width: 100%; }
            }
            ._form-filter-inputs-block ._form-title { font-size: 14px; font-weight: bold; margin-bottom: .5rem; }

        
        /* 卡片hover後彈起的動畫效果 */
            .card._hoverUp-card { position: relative; }
            .card._hoverUp-card:hover { box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.15); top: -10px; }
            ._hoverUp-card-container .card { position: relative; }
            ._hoverUp-card-container:hover .card { box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.15); top: -10px; }


        /* [index]/[information]... 的 消息卡片 */
            ._info-card-row { margin: -8px; }
            ._info-card-row > [class*=col-] { padding: 8px; }

            /* .card._info-card { border: none; } */
            .card._info-card ._card-title { position: absolute; left: 50%; top: 50%; transform: translateX(-50%) translateY(-50%); font-size: 18px; font-weight: bold;}
            .card._info-card .card-header { padding: .5rem 1rem; font-weight: bold; }
            .card._info-card .card-body { padding: 1rem 1rem 0 1rem; display: flex; flex-direction: column; justify-content: space-between; }
            .card._info-card ._card-content { flex: 1; overflow: hidden; padding-bottom: 1rem; border-bottom: solid 1px #af987d; min-height: 112px; }
            .card._info-card ._link-date { padding: 1rem 0; position: relative; font-size: 14px; cursor: pointer; }
            /* .card._info-card ._link-date::before { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; width: 0px; background-color: #aaa; transition: 0.35s width; } */
            /* .card._info-card ._link-date:hover::before { width: 100%; } */
            .card._info-card ._link-date._icon-right::after { position: relative; right: -1px; }
            .card._info-card ._link-date._icon-right:hover::after { animation: dateRight .5s forwards; }


        /* [people]/[相關律師]... 的 頭像卡片群 */
            ._owl-people > .owl-stage-outer { padding-top: 10px; }
            @media (min-width: 768px) { 
                ._owl-people { display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; margin-right: -0.5rem; margin-left: -0.5rem; }
                ._owl-people > * { -ms-flex: 0 0 25%; flex: 0 0 25%; max-width: 25%; padding: 0.9vw; }
            }
            @media (min-width: 1200px) { 
                ._owl-people > * { -ms-flex: 0 0 20%; flex: 0 0 20%; max-width: 20%; padding: .5rem; }
            }

            .card._people-card { position: relative; height: 100%; border: 0; cursor: pointer; }
            @media (max-width: 767.98px) { 
                .card._people-card { width: 27vw; }
            }
            @media (max-width: 575.98px) { 
                .card._people-card { width: 39vw; }
            }
            @media (max-width: 413.98px) { 
                .card._people-card { width: 60vw; }
            }
            .card._people-card .card-body { display: flex; flex-direction: column; justify-content: space-between; padding: 1rem; }
            .card._people-card ._card-title { padding: 5px 16px; font-size: 14px; background-image: linear-gradient(to right, #cbbaa6, #ede7e1); }


        /* [newsletter]/[publication_detail]... 電子報內容樣式 */ 
            ._newsletter-container { border: #ebebeb 1px solid; }
            ._newsletter-header { padding: 40px 15px 45px 15px; font-size: 14px; text-align: center; }
            ._newsletter-content { padding: 40px 15px 45px 15px; max-width: 800px; margin: auto; }
            ._newsletter-tab { display: flex; flex-wrap: wrap; justify-content: flex-start; overflow: auto; white-space: nowrap; user-select: none; background-color: #b9bcc7; }
            ._newsletter-tab ._page-tab { display: flex; justify-content: center; align-items: center; font-size: 14px; font-weight: bold; height: 40px; flex: 0; padding: 0 40px; cursor: pointer; }
            ._newsletter-tab ._page-tab:hover, 
            ._newsletter-tab ._page-tab.active { background-color: rgba(229, 222, 214, .5); padding-top: 3px; border-bottom: 3px solid #b8a288; }
            @media (max-width: 767.98px) {
                ._newsletter-tab { flex-wrap: nowrap; }
                ._newsletter-tab ._page-tab { padding: 0 20px; }
            }


/*====== [Include Page] ======*/
    /*=== [wrap & main] ===*/
        ._wrap { display: flex; flex-direction: column; min-height: 100vh; background: url(../img/bg-slash.jpg) }
        @media print {
            ._wrap > * { display: none; }
            ._wrap > ._main { display: flex; }
        }

        ._main { display: flex; flex-direction: column; flex: 1; }
        ._m-wrap-backdrop::after { }
        @media (max-width: 991.98px){
            ._m-wrap-backdrop::after { content: ""; position: fixed; top: 0; bottom: 0; left: 0; right: 0; z-index: 20; background-color: rgba(90, 97, 119, 0.9); }
        }


    /*=== [header] ===*/
        ._header { display: flex; justify-content: space-between; align-items: center; background-color: #666e8b; user-select: none; }
        ._header ._menu { display: flex; color: #fff; justify-content: flex-end; align-items: center; padding-left: 30px; }
        ._header ._menu._menu-1 { font-size: 14px; border-bottom: solid 1px #ad9270; }
        ._header ._menu._menu-2 { font-size: 17px; }
        ._header ._menu ._link { cursor: pointer; padding: 0 20px; height: 40px; line-height: 1; display: flex; justify-content: center; align-items: center; }
        ._header ._menu ._link:hover { background-color: #878da2; }
        ._header ._search-container { display: flex; position: absolute; right: 1rem; z-index: 21; padding: 20px 15px; background-color: #B9BCC7; }
        ._header ._logo { height: 74px; }

        @media (max-width: 1199.98px) { 
            ._header ._logo { height: 60px; }
            ._header ._menu { padding-left: 15px; }
            ._header ._menu._menu-1 { font-size: 14px; }
            ._header ._menu._menu-2 { font-size: 16px; }
            ._header ._menu > ._link { padding: 0 1em; }
            ._header ._menu ._link > img { width: 20px; height: 20px;}
        }
        @media (max-width: 991.98px) { 
            ._header { justify-content: center; }
        }


    /*=== [footer] ===*/
        ._footer { background-color: #666e8b; color: #fafafa; font-size: 14px; }
        ._footer ._footer-padding { position: relative; padding: 30px 15px; }
        ._footer ._postcard { padding: 10px 0; max-width: 350px; width: 100%; }
        ._footer ._postcard-title::after { content: ""; display: block; margin: 15px 0; width: 32px; height: 2px; background-color: #b8a288; }
        @media (max-width: 991.98px) { 
            ._footer ._footer-padding { padding: 30px 15px 80px 15px; }
        }
        ._footer ._toTop { position: absolute; top: 0; right: 0; z-index: 1; transform: translateY(-50%); cursor: pointer; }


    /*=== [navbar] ===*/
        ._m-navbar { position: fixed; bottom: 0px; left: 0; right: 0; z-index: 30; background-color: #F6F6F6; height: 50px; transition: bottom 0.3s; box-shadow: 0 10px 14px #000; }
        ._m-navbar ._link { max-width: 50px; width: 12vw; height: 50px; position: relative; cursor: pointer; }
        ._m-navbar ._contactUs { height: 40px; font-size: 12px; font-weight: bold; padding: 12px 16px; border-radius: 40px; background-image: linear-gradient(to bottom, #ffffff, #b8a288 ); color: #49516a; display: flex; align-items: center; cursor: pointer; }
        ._m-navbar ._m-search-container { display: flex; position: fixed; left: 50%; top: calc( 50% - 25px ); transform: translateX(-50%) translateY(-50%); width: 100%; padding: 30px 15px; }


    /*=== [modal] ===*/
        .modal._modal-contactUs ._form { display: block; max-width: 360px; margin-left: auto; margin-right: auto; }
        @media (min-width: 992px){
            .modal._modal-contactUs ._form { min-width: 300px; }
            .modal._modal-contactUs > .modal-dialog { margin: 0 0 0 auto; max-width: 480px; transform: translateX(100%); transition: transform .2s; }
            .modal._modal-contactUs.show > .modal-dialog { transform: translateX(0%); }
        }
        .modal._modal-contactUs ._modal-content-contactUs { width: 100%; padding: 20px; border: none; border-radius: 4px; box-shadow: 0 3px 6px rgba(0,0,0, 0.16); background-color: #e5ded6; }

        ._btn-contactUs { color: #3f434e; background-color: #f8f9fa; border-color: #3f434e; width: 180px; }
        ._btn-contactUs:hover { background-color: #d9c7b1; }



/*====== [Single Page] ======*/
    /*=== [about] ===*/
        body#about ._page-tab-container ._page-tab { max-width: unset; }
    
    /*=== [contactus] ===*/
    /*=== [expertise] ===*/
    /*=== [expertise_detail] ===*/
    /*=== [foundation] ===*/
    /*=== [hiring] ===*/
    /*=== [hiring_detail] ===*/
        body#hiring_detail ._table-hiring-detail { line-height: 30px; }
        body#hiring_detail ._table-hiring-detail tr > td:first-child { font-size: 15px; text-align: right; font-weight: bold; color: #333; }
        body#hiring_detail ._table-hiring-detail tr > td:nth-child(2) { font-size: 17px; padding-bottom: 40px; }

        @media (max-width: 575.98px){
            body#hiring_detail ._table-hiring-detail tr > td { display: block; }
            body#hiring_detail ._table-hiring-detail tr > td:first-child { margin-bottom: 4px; text-align: left; }
            body#hiring_detail ._table-hiring-detail tr > td:nth-child(2) { font-size: 16px; }
        }


    /*=== [index] ===*/
        body#index header { /*position: absolute;*/ top: 0; z-index: 10; width: 100%; }
        body#index ._header { background-color: rgba(123, 130, 153, 0.9); }

        body#index #section-video { overflow: hidden; }
        body#index #section-banner { position: relative; }
        body#index #section-news { padding-top: 3rem; padding-bottom: 3rem; overflow: hidden; }
        body#index #section-team { padding-top: 3rem; }
        body#index #section-team2 { padding-top: 3rem; padding-bottom: 3rem; margin-top: -1.5rem; background-color: rgba(136, 136, 136, 0.15) }
        body#index #section-service { padding-top: 3rem; padding-bottom: 3rem; }
        body#index #section-about { padding-top: 3rem; padding-bottom: 3rem; }

        body#index ._video-logo { position: absolute; top: 50%; left: 50%; opacity: 0; transform: translateX(-50%) translateY(-50%); max-width: 520px; width: 95vw; animation: slideUp 1.5s .35s ease-out forwards; }
        @keyframes slideUp {
            0% { top: 60%; opacity: 0; }
            100% { top: 45%; opacity: 1; }
        }

        body#index ._banner-text-pos { position: absolute; left: 10%; top: 140px; max-width: 620px; width: 100vw; }
        body#index ._banner-text-pos ._banner-title { font-size: 48px; line-height: 1.2; margin-bottom: 20px; font-weight: 300; }
        body#index ._banner-text-pos ._banner-content { font-size: 17px; font-weight: 300; }
        @media (max-width: 767.98px) { 
            body#index ._banner-text-pos { left: 0; top: 45%; transform: translateY(-50%); padding: 30px; }
            body#index ._banner-text-pos ._banner-title { font-size: 24px; line-height: 1.25; margin-bottom: 10px;}
            body#index ._banner-text-pos ._banner-content { font-size: 17px;}
        }
        body#index ._circle-contactUs { width: 142px; border-radius: 50rem; position: absolute; bottom: 100px; left: 10%; z-index: 5; cursor: pointer; }
        body#index ._circle-contactUs:hover { box-shadow: 0 0 12px #fff; bottom: 102px; }

        body#index ._section-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
        body#index ._section-title { display: flex; align-items: center; }
        body#index ._section-title > img { margin-right: 12px; }
        body#index ._section-title > h3 { margin-bottom: 0; }
        @media (max-width: 767.98px) { 
            body#index ._section-title > h3 { font-size: 24px; }
        }

        body#index ._card-container { padding-top: 8px; }
        @media (max-width: 767.98px) { 
            body#index ._card-container { width: 300px; }
        }
        @media (max-width: 575.98px) { 
            body#index ._card-container { width: 67vw; }
            body#index ._banner-text-pos ._banner-title { font-size: 20px; margin-bottom: 8px;}
            body#index ._banner-text-pos ._banner-content { font-size: 15px;}
        }
        @media (max-width: 413.98px) { 
            body#index ._card-container { width: 75vw; }
            body#index ._banner-text-pos ._banner-title { font-size: 18px; margin-bottom: 6px;}
            body#index ._banner-text-pos ._banner-content { font-size: 14px;}
        }

        body#index .card-body { height: 270px; }
        @keyframes dateRight {
            50% { right: -8px }
            100% { right: -2px }
        }        


    /*=== [information] ===*/
        body#information ._select-block { background-color: #f5f5f5; }
        body#information ._select-row { display: flex; justify-content: flex-end; padding: 30px 5px 20px 5px; }
        body#information ._select-row > ._select-col { display: flex; align-items: center; margin-left: 20px; margin-bottom: 10px; }
        body#information ._select-row > ._select-col > select { margin-left: 12px; width: auto; }

        @media(max-width: 767.98px) {
            body#information ._select-block { background-color: #b9bcc7; }
            body#information ._select-row { flex-direction: column; }
            body#information ._select-row > ._select-col { margin-left: 0px; }
            body#information ._select-row > ._select-col > select { flex: 1; }
        }


    /*=== [people] ===*/
    /*=== [profile] ===*/
        @media (max-width: 991.98px) {
            body#profile ._profile-content--title:hover { background-color: #eee; cursor: pointer; }
        }
        body#profile ._profile-postcard { background-image: linear-gradient(to bottom, #ffffff 0%, #ffffff 70%, rgba(184, 162, 137, .15) 100%); }
        body#profile ._profile-postcard ._profile-postcard-container { position: relative; padding: 45px 75px 50px 75px; }
        body#profile ._profile-postcard ._surface { flex: 0; margin-top: -0.25rem; text-align: center; min-width: 240px; }
        body#profile ._profile-postcard ._infos { display: flex; flex-direction: column; flex: 1; }
        body#profile ._profile-postcard ._contact-button { border-radius: 4px; border: solid 1px #40434d; background-color: transparent; width: 100%; padding: .25rem .75rem; max-width: 180px; }
        body#profile ._profile-postcard ._title-text { font-size: 14px; color: #8e7353; font-weight: bold; line-height: 1.3; }
        body#profile ._profile-postcard ._name { font-size: 28px; line-height: 1.2; }

        body#profile ._profile-postcard ._table-form tr:first-child > td { border-top: solid 1px #e2e1e0; }
        body#profile ._profile-postcard ._table-form td { padding-top: 14px; padding-bottom: 14px; border-bottom: solid 1px #e2e1e0; font-size: 14px; }
        body#profile ._profile-postcard ._expertise { display: inline-block; font-size: 14px; border: 1px solid #b0b4c0; padding: 3px 8px; margin: 3px 2px; }
        body#profile ._profile-postcard ._arrows { position: absolute; left: -25px; width: calc(100% + 50px); top: 50%; z-index: 1; }

        @media(max-width: 991.98px){
            body#profile ._profile-postcard ._contact-button { border-radius: 4px; border: solid 1px #40434d; background-color: #ffffff; width: 100%; max-width: 200px; }
            body#profile ._profile-postcard ._name { font-size: 24px; }
        }
        @media (max-width: 767.98px) {
            body#profile ._profile-postcard ._profile-postcard-container { padding: 15px; }
            body#profile ._profile-postcard ._surface { min-width: unset; }
            body#profile ._profile-postcard ._infos { position: relative; }
            body#profile ._profile-postcard ._arrows { left: -5px; top: -10%; width: calc(100% + 10px); }
            body#profile ._profile-postcard ._arrows .page-link._lg { width: 30px; height: 30px; }
        }
        @media print{
            body#profile ._profile-postcard { margin: 0 -1rem; }
            body#profile ._profile-postcard ._surface { min-width: 240px; padding-top: 10px; }
            body#profile ._profile-postcard ._infos { padding-left: 1.5rem; text-align: left !important; }
            body#profile ._profile-postcard ._infos > * { text-align: left !important; }
            body#profile #profileInfo { flex-direction: row !important; }
        }

        body#profile ._scrollspy-menu { width: 100%; position: -webkit-sticky; position: sticky; top: 0; padding: 20px 0; }
        body#profile ._scrollspy-menu .nav-link { position: relative; padding: 10px 30px; line-height: 1; }
        body#profile ._scrollspy-menu .nav-link:hover { background-color: #f9f9f9; }
        body#profile ._scrollspy-menu .nav-link:hover::before { content: ""; display: block; position: absolute; left: 0; top: calc(50% - 3px); width: 24px; height: 5px; background-color: rgba(184, 162, 137, .75); }
        body#profile ._scrollspy-menu .nav-link.active::before { content: ""; display: block; position: absolute; left: 0; top: calc(50% - 3px); width: 24px; height: 5px; background-color: rgba(184, 162, 137, 1); }


    /*=== [publication] ===*/
        body#publication ._bookBg { background: url(../img/bg-book.png)rgb(228, 222, 215, .45) no-repeat center center; background-size: contain; cursor: pointer; border-radius: 4px; }
        body#publication ._bookBg:hover { background-color: #d9c7b1; }
        body#publication ._bookBg > ._title { position: absolute; width: 100%; text-align: center; top: 20%; font-size: 18px; }
        body#publication ._bookBg > ._date { position: absolute; width: 100%; text-align: center; bottom: 30%; font-size: 14px; }


    /*=== [publication_detail] ===*/
        body#publication_detail ._collapse { border: solid 1px #bebebe; font-size: 14px; position: sticky; top: 15px; }
        body#publication_detail ._collapse-head { display: flex; justify-content: space-between; align-items: center; padding: 9px 15px; background-color: #b8a288; color: #fff; cursor: pointer; }
        body#publication_detail ._collapse-head::after { content: '\f077'; font-family: 'Font Awesome 5 Free'; font-weight: 900; display: inline; font-size: 12px; }
        body#publication_detail ._collapse-head.active::after { content: '\f078'; }
        body#publication_detail ._collapse ._collapse-body > * { display: block; padding: 8px 15px; background-color: #f7f7f7; cursor: pointer; }
        body#publication_detail ._collapse ._collapse-body > *.active,
        body#publication_detail ._collapse ._collapse-body > *:hover { background-color: #e4ded7; }


    /*=== [search] ===*/
        body#search ._result-row { border-top: solid 1px #af987d; }
        body#search ._result-row > ._result-col { display: block; border-bottom: solid 1px #af987d; padding: 15px 0px }
        body#search ._result-row > ._result-col:hover { background-color: rgba(99,99,99,0.1); }
        body#search ._result-row > ._result-col ._title { font-size: 14px; display: flex; align-items: center; margin-bottom: 4px; }
        body#search ._result-row > ._result-col ._title::before { content: ""; display: inline-block; width: 16px; height: 4px; background-color: #b8a288; margin-right: 8px; }
        body#search ._result-row > ._result-col ._content { font-size: 18px; margin-bottom: 5px; }
        body#search ._result-row > ._result-col ._content strong { color: #b02; }


/* 
@media (max-width: 1199.98px) {}
@media (max-width: 991.98px) {}
@media (max-width: 767.98px) {}
@media (max-width: 575.98px) {} 

@media (min-width: 575px){}
@media (min-width: 768px){}
@media (min-width: 992px){}
@media (min-width: 1200px){}
*/
