@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@400;500;700;900&display=swap');

* {
    font-family: 'Noto Sans TC', 'Microsoft JhengHei', sans-serif;
}

html,
body {
    height: 100%;
    margin: 0;
    scroll-behavior: smooth;
}

body {
    background: #F8FAFF;
    background-size: cover;
    overflow-x: hidden;
    display: flex;
    /*使物件依序排列*/
    flex-direction: column;
    /*使物件垂直排列*/
}

html {
    overflow-x: hidden;

}

main {
    flex-grow: 1;
    /*可佔滿垂直剩餘的空間*/
}

a {
    color: #00415D;
    text-decoration: none;
}

a:hover {
    text-decoration: none;
    color: #676767;
}

a:active {
    text-decoration: none;
    color: #676767;
}

hr {
    color: #B2B2B2;
}

.ellipsis {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.multiline-ellipsis {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.tripleline-ellipsis {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.forthline-ellipsis {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

.fs--1 {
    font-size: 0.95rem;
}

.fc-green {
    color: #107B45;
}

.btn-link {
    color: #5D5D5D;
}

.btn-link:hover {
    color: #107B45;
}

.btn-main {
    --bs-btn-color: #fff;
    --bs-btn-bg: #107B45;
    --bs-btn-border-color: #107B45;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #093b22;
    --bs-btn-hover-border-color: #093b22;
    --bs-btn-focus-shadow-rgb: 49, 132, 253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #093b22;
    --bs-btn-active-border-color: #093b22;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #107B45;
    --bs-btn-disabled-border-color: #107B45;
}

.btn-outline-main {
    --bs-btn-color: #107B45;
    --bs-btn-bg: transparent;
    --bs-btn-border-color: #107B45;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #093b22;
    --bs-btn-hover-border-color: #093b22;
    --bs-btn-focus-shadow-rgb: 49, 132, 253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #093b22;
    --bs-btn-active-border-color: #093b22;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #107B45;
    --bs-btn-disabled-border-color: #107B45;
}

.fc-gray {
    color: #757575;
}

.bg-linearblue {
    background: linear-gradient(180deg, rgba(217, 244, 255, 1) 0%, rgba(255, 255, 255, 1) 100%);
}

.btn-group-left-radius {
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
}

.btn-group-right-radius {
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
}

/*===== back to top=====*/
#gotopbutton {
    display: inline-block;
    width: 80px;
    height: 80px;
    background: url(../img/gotop.svg) no-repeat center;
    position: fixed;
    bottom: 30px;
    right: 30px;
    transition: background-color .3s, opacity .5s, visibility .5s;
    opacity: 1;
    visibility: hidden;
    z-index: 1000;
}

#gotopbutton:hover {
    cursor: pointer;
}

#gotopbutton.show {
    visibility: visible;
}


/*=================================*/
/*============= HEADER  ===========*/
/*================================*/

#myHeader {
    position: fixed;
    top: 0;
    transition: 0.3s;
    z-index: 999;
    width: 100%;
    background-color: #FFFFFF;
}

.small-header {
    background: #268750;
    color: #FFF;
    width: 100%;
    height: 55px;
}

.small-header .marquee {
    position: relative;
}

.small-header .marquee::after {
    content: "";
    position: absolute;
    z-index: 1;
    height: 50px;
    transform: skew(-45deg);
    top: 0;
    left: 100%;
    right: -100%;
    bottom: 0;
    background: #107B45;
    box-shadow: 0.28px 0.28px 1.14px rgba(35, 24, 21, 0.5);
}

.m-content {
    font-size: 0.95rem;
    overflow: hidden;
}

.marquee-item {
    white-space: nowrap;
    float: left;
    padding-top: 5px;
}

.marquee-item a {
    vertical-align: super;
    margin-right: 25px;
}

.small-header-rwd {
    background: #212121;
    width: 100%;
    height: auto;
}

.searchBar {
    position: relative !important;
    z-index: 5 !important;
    font-size: 0.9rem !important;
}

.searchBar .searchBtn {
    position: absolute !important;
    right: 5px !important;
    top: 5px !important;
}

.searchBar .qaBtn {
    position: absolute !important;
    right: -100px !important;
    top: 5px !important;
}

.searchBar .form-control {
    padding: .375rem 2.375rem .375rem 0.75rem !important;
}

.nav-link {
    color: #00415D;
    margin-right: 5px;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {
    color: #FFF;
    background-color: #107B45;
    border-radius: 8px;
    padding: 7px 20px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

#navbarCollapse {
    margin-right: auto;
    font-size: 1.05rem;
}

@media (max-width: 1024px) {
    #navbarCollapse {
        margin-left: initial;
    }

    .navbar-nav {
        margin-top: 10px;
    }

    .navbar-nav li {
        margin-bottom: 5px;
        margin-top: 5px;
    }
}

/*========================*/
/*=====     首頁      =====*/
/*========================*/

/*============ BANNER  ============*/

#section_carousel {
    padding: 8rem 12rem 4rem 12rem;
    position: relative;
}

#section_carousel .bannerillust {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}

@media (max-width: 1024px) {

    #section_carousel .bannerillust {
        top: 50%;
    }
}

.vertical .carousel-indicators {
    position: absolute;
    bottom: 0;
    right: -12%;
    left: unset;
    top: 0;
    z-index: 2;
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: 0;
    margin-right: 0;
    margin-bottom: 1rem;
    margin-left: 0;
    width: 50px;
    align-items: center;
}

.vertical .carousel-indicators [data-bs-target] {
    --size: 10px;
    /* 一般指示點大小 */
    width: var(--size);
    height: var(--size);
    border-radius: 100%;
    background-color: #D2D2D2;
    transition: all 0.3s ease-in-out;
    position: relative;
}

.vertical .carousel-item-prev:not(.carousel-item-end),
.vertical .active.carousel-item-start {
    transform: translate3d(0, -100%, 0);
    -webkit-transform: translate3d(0, -100%, 0);
    -moz-transform: translate3d(0, -100%, 0);
    -ms-transform: translate3d(0, -100%, 0);
    -o-transform: translate3d(0, -100%, 0);
}

.vertical .carousel-item-next:not(.carousel-item-start),
.vertical .active.carousel-item-end {
    transform: translate3d(0, 100%, 0);
    -webkit-transform: translate3d(0, 100%, 0);
    -ms-transform: translate3d(0, 100%, 0);
    -moz-transform: translate3d(0, 100%, 0);
    -o-transform: translate3d(0, 100%, 0);
}

.vertical .carousel-indicators .active {
    --active-size: 16px;
    /* 外圈的大小 */
    background-color: #019C7D;
}

.vertical .carousel-indicators .active::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: var(--active-size);
    height: var(--active-size);
    border-radius: 50%;
    border: 2px solid #019C7D;
    /* 外圈 */
    opacity: 0.8;
}


.carousel-link a {
    font-size: 1.1rem;
    margin-top: 30px;
    padding: 10px 20px;
}

.bannerTitle {
    font-size: 3rem;
    font-weight: bold;
    margin-top: 10%;
}

.bannerTitle span {
    font-size: 3.5rem;
    font-weight: normal;
    display: block;
}

.bannerText {
    font-size: 1.3rem;
    color: #242424;
    margin-top: 30px;

}

@media (max-width: 1024px) {
    #section_carousel {
        padding: 8rem 5rem;
    }
}

@media (max-width: 768px) {
    #section_carousel {
        padding: 5rem 5rem;
    }
}

@media (max-width: 576px) {
    #section_carousel {
        padding: 5rem 1rem;
    }

    .bannerTitle {
        font-size: 2rem;
    }
}

/*======= sec.圖片按鈕 ======*/
.section_picBtn {
    padding-top: 0px;
    padding-bottom: 0px;
    margin-top: -120px;
}

@media (max-width: 1024px) {
    .section_picBtn {
        padding-top: 0px;
        padding-bottom: 80px;
        margin-top: -120px;
    }
}

@media (max-width: 768px) {
    .section_picBtn {
        padding-top: 0px;
        padding-bottom: 80px;
        margin-top: -80px;
    }
}

.picBtngroup a {
    width: 100%;
}

.picBtn {
    padding: 1.2rem 0;
}

.btn-pic {
    --bs-btn-color: #2A2A2A;
    --bs-btn-bg: #FFF;
    --bs-btn-border-color: #B5B5B5;
    --bs-btn-hover-color: #2A2A2A;
    --bs-btn-hover-bg: #FFE52F;
    --bs-btn-hover-border-color: #FFE52F;
    --bs-btn-focus-shadow-rgb: 49, 132, 253;
    --bs-btn-active-color: #2a2a2a;
    --bs-btn-active-bg: #FFE52F;
    --bs-btn-active-border-color: #FFE52F;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #107B45;
    --bs-btn-disabled-border-color: #107B45;
    border-radius: 50px;
    opacity: 1;
}

.btn-pic.active,
.btn-pic:hover {
    opacity: 1;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.picBtn .text {
    font-size: 1.5rem;
    font-weight: bold;
    margin-top: 15px;
}

.picBtn .icon img {
    width: 102px;
    height: 102px;
}

.picBtnGR .picBtn .icon .hover {
    display: none;
}

.picBtnGR a:hover .picBtn .icon .default,
.picBtnGR a.active .picBtn .icon .default {
    display: none;
}

.picBtnGR a:hover .picBtn .icon .hover,
.picBtnGR a.active .picBtn .icon .hover {
    display: inline-block;
}

.section-title {
    color: #2A2A2A;
    font-size: 2rem;
    font-weight: bold;
}

.section-title-eng {
    color: #2A2A2A45;
    font-size: 2rem;
    letter-spacing: 1px;
}

.section-title-eng-02 {
    color: #FFFFFF90;
    font-size: 3.3rem;
    margin-left: 25px;
    letter-spacing: 1px;
}

@media (max-width: 1536px) {
    .section-title-eng-02 {
        font-size: 2.6rem;
    }
}

@media (max-width: 576px) {
    .section-title-eng-02 {
        font-size: 1.5rem;
        /*margin-left: 68%;
        margin-top: -40px;*/
        display: block;
    }

    .picBtn .icon img {
        width: 80px;
        height: 80px;
    }

    .picBtn {
        padding: 1rem 0;
    }

    .btn-pic {
        border-radius: 35px;
    }
}

@media (max-width: 390px) {
    .section-title-eng-02 {
        font-size: 1.2rem;
        margin-left: 30%;
        margin-top: 0px;
        display: block;
    }
}

/* 基本樣式 */
#custom-owl-dots .owl-dot {
    height: 90px;
    display: flex;
    align-items: center;
    background-color: transparent;
    color: #2A2A2A;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: none;
    border: 1px solid #707070;
    margin-bottom: 15px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

#custom-owl-dots .owl-dot .text {
    padding: 15px 15px 15px 0px;
    font-size: 1.5rem;
}

@media (max-width: 390px) {
    #custom-owl-dots .owl-dot .text {
        padding: 15px 15px 15px 0px;
        font-size: 1rem;
    }
}


/* 小標題文字 */
#custom-owl-dots .owl-dot small {
    display: block;
    font-weight: normal;
    color: #455459;
    font-size: 0.9rem;
    margin-top: 2px;
}

#custom-owl-dots .owl-dot .icon-box {
    width: 90px;
    height: 90px;
    position: relative;
    margin-right: 20px;
}

/* Icon 設計（預設狀態） */
#custom-owl-dots .owl-dot .icon::before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    content: "\f054";
    font-size: 1.7rem;
    padding: 25px 30px;
    border-radius: 8px;
    transition: content 0.3s ease, color 0.3s ease;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* 滑鼠懸停 (hover) 或點擊 (active) 樣式 */
#custom-owl-dots .owl-dot:hover,
#custom-owl-dots .owl-dot:active,
#custom-owl-dots .owl-dot.active {
    background-color: #FFFFFF72;
    color: #2A2A2A;
    cursor: pointer;
}

/* Hover / Active 時變更 icon */
#custom-owl-dots .owl-dot:hover .icon::before,
#custom-owl-dots .owl-dot:active .icon::before,
#custom-owl-dots .owl-dot.active .icon::before {
    content: "\f005";
    color: #FFF;
    background-color: #268750;
}

@media (max-width: 390px) {
    #custom-owl-dots .owl-dot .icon::before {
        padding: 25px 20px;
    }
}

/*======= sec01.風險圖臺展示系統 ======*/
#section_one {
    padding-top: 60px;
    background-image: url(../img/sec01bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    padding-bottom: 100px;
    position: relative;
    z-index: 1;
    top: -105px;
}

@media (max-width: 1024px) {
    #section_one {
        padding-top: 50px;
        padding-bottom: 50px;
        top: -120px;
    }
}

@media (max-width: 768px) {
    #section_one {
        padding-top: 0px;
        padding-bottom: 0px;
    }
}

@media (max-width: 576px) {
    #section_one {
        padding-top: 120px;
        padding-bottom: 0px;
    }
}

.container.-platformCus {
    margin-right: 0;
}

@media (max-width: 2560px) {
    .container.-platformCus {
        margin-right: auto;
    }
}

@media (max-width: 1920px) {
    .container.-platformCus {
        margin-right: 0;
        max-width: 1720px;
    }
}

@media (max-width: 1536px) {
    .container.-platformCus {
        max-width: 1440px;
    }
}


@media (max-width: 1366px) {
    .container.-platformCus {
        margin-right: auto;
    }
}

.item-focus {
    display: flex;
    margin-bottom: 3rem;
}

.item-focus .icon {
    width: 92px;
    height: 92px;
}

.item-focus .content {
    margin-left: 25px;
}

.item-focus .content .news-title {
    color: #2A2A2A;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.item-focus .content .news-text {
    color: #455459;
    font-size: 1.2rem;
}

.item {
    display: flex;
    flex-wrap: wrap;
    border-bottom: 1px solid #70707025;
    padding: 10px 0;
}

.item>div {
    margin-right: 5px;
}

.item .tag {
    color: #019C7D;
    background-color: #D1F9ED;
    border-radius: 12px;
    font-size: 0.85rem;
    padding: 4px 15px;
}

a .item .content {
    color: #455459;
    font-size: 1.1rem;
}

a:hover .item .content {
    color: #2BA4A6;
    font-weight: bold;
}


/*======= sec02.最新活動/最新文章 ======*/
#section_two {
    padding-top: 100px;
    padding-bottom: 100px;
    position: relative;
}

@media (max-width: 1024px) {
    #section_two {
        padding-top: 0px;
        padding-bottom: 120px;
    }
}

@media (max-width: 576px) {
    #section_two {
        padding-top: 0px;
        padding-bottom: 150px;
    }
}

#latest-owl a {
    display: block;
}

#latest-owl .owl-dots .owl-dot span {
    background-color: #58A05725;
    border: 0px solid transparent;
    border-radius: 2px;
    width: 20px;
    height: 5px;
    opacity: 1;
    margin: 5px;
    padding: 0;
}

#latest-owl .owl-dots .owl-dot.active span,
#latest-owl .owl-dots .owl-dot:hover span {
    background-color: #58A057;
    border: 3px solid #58A057;
    width: 40px;
}

#latest-owl .item {
    border: 3px solid transparent;
    padding: 35px;
    position: relative;
    border-radius: 20px;
    height: 350px;
    overflow: hidden;
}

#latest-owl .item.-color01 {
    background-color: #E2E49F;
}

#latest-owl .item.-color02 {
    background-color: #58A057;
}

#latest-owl .item.-color03 {
    background-color: #CFD25F;
}

#latest-owl .item.-color01 a {
    color: #2a2a2a;
}

#latest-owl .item.-color02 a {
    color: #FFF;
}

#latest-owl .item.-color03 a {
    color: #313131;
}

#latest-owl .item:hover {
    border: 3px solid #CCC;
}

#latest-owl .item:hover .readMore {
    border: 3px solid #FFF;
    opacity: 0.9;
}

#latest-owl .item .title {
    height: 80px;
}

#latest-owl .item.-color01 .title {
    color: #2a2a2a;
}

#latest-owl .item.-color02 .title {
    color: #FFF;
}

#latest-owl .item.-color03 .title {
    color: #313131;
}

#latest-owl .item .date-icon {
    color: #FFF;
    font-weight: bold;
    display: inline-block;
    text-align: center;
    padding: 8px 16px;
    border-radius: 6px;
    border-top-right-radius: 20px;
    position: absolute;
    top: 0;
    right: -5px;
}

#latest-owl .item.-color01 .date-icon {
    background-color: #BDC133;
}

#latest-owl .item.-color02 .date-icon {
    background-color: #2D6B2C;
}

#latest-owl .item.-color03 .date-icon {
    background-color: #9FA237;
}

#latest-owl .item .tags {
    background-color: #FFF;
    font-weight: bold;
    font-size: 0.9rem;
    padding: 6px 40px;
    border-radius: 20px;
}

#latest-owl .item.-color01 .tags {
    color: #BCC032;
}

#latest-owl .item.-color02 .tags {
    color: #58A057;
}

#latest-owl .item.-color03 .tags {
    color: #9FA237;
}

#latest-owl .item .readMore {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 230px;
    height: 230px;
    background-color: #FFF;
    opacity: 0.5;
    border-radius: 50%;
    position: absolute;
    right: -20%;
    bottom: -20%;
}

#latest-owl .item .readMore i {
    font-size: 2.5rem;

}

#latest-owl .item.-color01 .readMore i {
    color: #E2E49F;
}

#latest-owl .item.-color02 .readMore i {
    color: #2D6B2C;
}

#latest-owl .item.-color03 .readMore i {
    color: #9FA237;
}

@media (max-width: 1536px) {
    #latest-owl .item .readMore {
        width: 200px;
        height: 200px;
        right: -10%;
        bottom: -20%;
    }
}

@media (max-width: 1440px) {
    #latest-owl .item .readMore {
        width: 200px;
        height: 200px;
        right: -10%;
        bottom: -20%;
    }
}


/*=================================*/
/*============ FOOTER  ============*/
/*================================*/
.footer-above {
    background: url(../img/footerBG.png) no-repeat;
    background-size: cover;
    background-position: top;
    position: relative;
    padding-top: 200px;
}

@media (max-width: 576px) {
    .footer-above {
        padding-top: 300px;
    }
}

.footer-below {
    font-size: 0.8rem;
    color: #DDD;
    background-color: #2D6B2C;
    padding: 15px;
}

.footer-below .slink {
    color: #FFF;
}

.footer-below .slink::after {
    content: "　|　";
    color: #AAA;
}

.footer-below .slink:nth-last-child(1)::after {
    content: "";
    margin-right: 15px;
}

.footer-above .f-title {
    color: #FFF;
    font-size: 1.4rem;
    margin-top: 15px;
    margin-bottom: 15px;
}

.footer-above .f-link {
    color: #FFF;
}

.footer-above .f-link:hover {
    text-decoration: underline;
}

.infoBox {
    color: #FFF;
}

.belowLinks .sqlink {
    border: 1px solid #FFF;
    border-radius: 6px;
    padding: 10px 12px;
    color: #FFF;
    font-size: 0.8rem;
    margin-right: 8px;
}

.belowLinks .sqlink:hover {
    color: #FFF;
    background: #FDC701;
    border-color: #FDC701;
}


/*============LEADBOX============*/


.leadBox {
    border-top: 6px solid #58A057;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    position: absolute;
    top: 0%;
    width: 75%;
}

@media (max-width: 1280px) {
    .leadBox {
        top: -10%;
    }
}

.linkBox {
    margin-top: 10px;
}

.linkBox a::before {
    content: url(../img/chevron-right.png);
    margin-right: 12px;
}

.linkBox ul {
    list-style-type: none;
}

.linkBox ul li {
    margin-bottom: 5px;
}

.linkBox a {
    color: #455459;
}

.linkBox a:hover {
    color: #01866B;
}


/*===========================*/
/*========= 內頁共用  ========*/
/*===========================*/

.innerPage {
    background: url(../img/pagebg.png) no-repeat;
    background-size: cover;
}

.page_banner_sec {
    padding-top: 135px;
}

/*@media (max-width: 1440px) {
    .page_banner_sec {
        padding-top: 120px;
    }
}

@media (max-width: 860px) {

    .page_banner_sec {
        padding-top: 80px;
    }
}*/

@media (max-width: 860px) {
    .page_banner_sec {
        padding-top: 76px;
    }
}

@media (max-width: 1440px) {
    .page_banner_sec {
        padding-top: 76px;
    }
}

.page_banner_sec {
    padding-top: 76px;
}

.page-footer-above {
    background: url(../img/footerBG.png) no-repeat;
    background-size: cover;
    background-position: top;
    padding-top: 140px;
}

@media (max-width: 1536px) {
    .page-footer-above {
        padding-top: 120px;
    }
}

.page-footer-above .f-title {
    color: #FFF;
    font-size: 1.4rem;
    margin-top: 15px;
    margin-bottom: 15px;
}

.page-footer-above .f-link {
    color: #FFF;
}

.page-footer-above .f-link:hover {
    text-decoration: underline;
}

/*Banner*/

.bg-image {
    background: url('../img/page_banner.png') no-repeat;
    height: 400px;
    background-size: cover;
    background-position: center bottom;
}

@media (max-width: 1536px) {
    .bg-image {
        height: 310px;
    }
}

@media (max-width: 1280px) {
    .bg-image {
        height: 250px;
    }
}


.cTop {
    color: #242424;
    font-weight: normal;
    font-size: 1.8rem;
    margin-left: 15%;
}

.cBottom {
    margin-left: 15%;
}

.cBottom a {
    color: #107B45;
}

.cBottom .breadcrumb .breadcrumb-item {
    color: #242424;
}

.page_content_sec {
    margin-top: -160px;
}

@media (max-width: 1280px) {
    .page_content_sec {
        margin-top: -90px;
    }
}

@media (max-width: 768px) {
    .page_content_sec {
        margin-top: -60px;
    }
}

@media (max-width: 576px) {
    .page_content_sec {
        margin-top: -50px;
    }

    .cTop,
    .cBottom {
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

    .cBottom .breadcrumb {
        justify-content: center;
    }
}

.viewBox {
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.-withimgbtn {
    margin-top: 120px;
}

@media (max-width: 576px) {
    .-withimgbtn {
        margin-top: 150px;
    }
}


/*頁碼*/
.pagination {
    --bs-pagination-border-width: 0;
    --bs-pagination-color: #2D6B2C;
    --bs-pagination-border-radius: 50%;
    --bs-pagination-hover-color: #FFF;
    --bs-pagination-hover-bg: #2D6B2C;
    --bs-pagination-hover-border-color: #2D6B2C;
    --bs-pagination-focus-color: #FFF;
    --bs-pagination-focus-bg: #2D6B2C;
    --bs-pagination-active-color: #fff;
    --bs-pagination-active-bg: #2D6B2C;
    --bs-pagination-active-border-color: #2D6B2C;
}

.page-link {
    margin-right: 10px;
    border-radius: 50%;
}

/*氣候變遷災害調適策略*/
#strategy-tab {
    border-bottom: 0;
}

#strategy-tab .nav-link {
    color: #373737;
    margin-bottom: calc(-1* var(--bs-nav-tabs-border-width));
    border: 0;
    border-bottom: 3px solid #C1C1C1;
    font-size: 1.4rem;
}

#strategy-tab .nav-item.show .nav-link,
#strategy-tab .nav-link.active {
    color: #107B45;
    background-color: #FFF;
    border-bottom-color: #107B45;
}

.situationBox {
    padding: 35px;
    background: url(../img/yellowbg.png) no-repeat;
    background-size: cover;
    border-radius: 35px;
}

@media (max-width: 576px) {
    .situationBox {
        background-image: none;
        background-color: #FFEFB4;
    }
}

.situationBox .description {
    list-style-type: none;
    padding-left: 0;
}

.situationBox .description li::before {
    content: url(../img/chevron-right.png);
    margin-right: 12px;
}

.situationBox .description li {
    margin-bottom: 10px;
}

.situationBox .dropdownBox {
    padding: 25px 35px;
    border-radius: 35px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    background-color: #FFF;
    height: 180px;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center
}

.picBtnGR-inrow {
    position: absolute;
    top: 0;
    z-index: 0;
}

.picBtnGR-inner a:first-child {
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
}

.picBtnGR-inner a:last-child {
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
}

.picBtnGR-inner .btn-main {
    --bs-btn-hover-bg: #FDC701;
    --bs-btn-hover-border-color: #FDC701;
    --bs-btn-active-bg: #FDC701;
    --bs-btn-active-border-color: #FDC701;
}

.picBtnGR-inner.-inde {
    position: absolute;
    right: 300px;
}

@media (max-width: 1536px) {
    .picBtnGR-inner.-inde {
        right: 125px;
    }
}

@media (max-width: 1440px) {
    .picBtnGR-inner.-inde {
        right: 75px;
    }
}

@media (max-width: 1366px) {
    .picBtnGR-inrow {
        position: absolute;
        top: 0;
        left: 60px;
        z-index: 0;
    }
}

@media (max-width: 1280px) {
    .picBtnGR-inrow {
        position: unset;
    }

    .picBtnGR-inner.-inde {
        position: unset;
        margin-top: 10px;
    }
    .-withimgbtn{
        margin-top: unset;
    }
}

.picBtnGR-inner .picBtn {
    padding: 0.8rem 2rem;
}

.picBtnGR-inner .picBtn .text {
    font-size: 1.2rem;
    font-weight: bold;
    margin-left: 15px;
}

.picBtnGR-inner .picBtn .icon img {
    width: 70px;
    height: 70px;
}

.picBtnGR-inner .picBtn .icon .hover {
    display: none;
}

.picBtnGR-inner a:hover .picBtn .icon .default,
.picBtnGR-inner a.active .picBtn .icon .default {
    display: none;
}

.picBtnGR-inner a:hover .picBtn .icon .hover,
.picBtnGR-inner a.active .picBtn .icon .hover {
    display: inline-block;
}

@media (max-width: 576px) {
    .picBtnGR-inner .picBtn {
        padding: 0.8rem 1rem;
    }
}

/*氣候變遷災害調適策略 淹水災害風險圖 表格資料區*/

.st-dataBox {
    white-space: nowrap;
}

.st-dataBox .title001 {
    background-color: #107B45;
    color: #FFF;
    text-align: center;
}

.st-dataBox .title002 {
    background-color: #FDC701;
    color: #000000;
    text-align: center;
}

.st-dataBox .cell {
    padding: 8px;
    border: 1px solid #EEEEEE;
}

.st-dataBox .data {
    height: 480px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.tooltipBTN {
    width: 20px;
    height: 20px;
    text-align: center;
    font-size: 0.7rem;
    --bs-btn-padding-y: 0;
    --bs-btn-padding-x: 0;
    margin-left: 5px;
}

@media (max-width: 768px) {
    .tooltipBTN {
        display: block;
        margin-right: auto;
        margin-left: auto;
    }
}

.tiptitle {
    width: 100%;
    position: absolute;
    top: 0;
}

.tipbox {
    padding: 10px;
    text-align: center;
    color: #FFF;
    font-size: 1rem;
    margin-bottom: 30px;
    position: relative;
}

.tipbox.-pink {
    background-color: #fcb8b6;
    color: #363a3c;
}

.tipbox.-lavender {
    background-color: #d7cbf3;
    color: #363a3c;
}

.tipbox.-brown {
    background-color: #ae8043;
}

.tipbox.-grassgreen {
    background-color: #8dc060;
}


.tipbox::after {
    content: "";
    border-style: solid;
    border-width: 10px 10px 0 10px;
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translate(-10px);
}

.tipbox.-pink::after {
    border-color: #fcb8b6 transparent transparent transparent;
}

.tipbox.-lavender::after {
    border-color: #d7cbf3 transparent transparent transparent;
}

.tipbox.-brown::after {
    border-color: #ae8043 transparent transparent transparent;
}


.tipbox.-grassgreen::after {
    border-color: #8dc060 transparent transparent transparent;
}

/*風險圖下載*/

.map-btn {
    border-radius: 30px;
    color: #2A2A2A;
    text-align: center;
    padding: 10px;
    display: block;
    width: 100%;
    font-size: 1.1rem;
    font-weight: bold;
    background-color: #FFF;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}

.map-btn:hover {
    color: #2a2a2a;
    box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
}

.map-btn.active {
    background-color: #FFC947;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px, rgb(51, 51, 51) 0px 0px 0px 3px;
}


/*======= 最新消息 =======*/
.keyword-tags {
    background-color: #FFF4BB;
    padding: 5px 20px;
    border-radius: 50px;
    color: #2a2a2a;
    font-weight: 500;
    transition: .1s;
    margin-bottom: 6px;
    border: 1px solid #FFE52F;
}

.keyword-tags:hover {
    color: #2a2a2a;
    background-color: #FFE52F;
}

#news-tab {
    border-bottom: 0;
}

#news-tab .nav-link {
    color: #373737;
    margin-bottom: calc(-1* var(--bs-nav-tabs-border-width));
    border: 0;
    border-bottom: 3px solid #C1C1C1;
    font-size: 1.2rem;
}

#news-tab .nav-item.show .nav-link,
#news-tab .nav-link.active {
    color: #107B45;
    background-color: #FFF;
    border-bottom-color: #107B45;
}

.news-list .news-item div {
    margin-bottom: 15px;
}

.news-item .source span:after {
    content: "|";
    margin: 0 10px;
    font-size: 10px;
    color: #CCC;
}

.news-item .source span:last-child::after {
    content: "";
}

.news-list .news-item {
    background-color: #E2E49F;
    border-radius: 16px;
    padding: 16px 20px;
    border: 2px solid transparent;
    margin-bottom: 25px;
}

.news-list .news-item .title {
    font-size: 1.5rem;
    font-weight: bold;
}

.news-list .news-item .source {
    color: #6e6e6e;
}

.news-list a {
    color: #2a2a2a;
}

.news-list a:hover .news-item {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border: 2px solid #58A057;
}

@media (max-width: 576px) {
    .news-list .news-item .source span {
        display: block;
    }
}

/*======= 最新消息內頁 =======*/
.news-content .title {
    font-size: 2.2rem;
    font-weight: bold;
}

.news-content .source {
    display: flex;
    align-items: center;
    font-size: 1rem;
    color: #6e6e6e;
}

.news-content .source div:after {
    content: "|";
    margin: 0 10px;
    font-size: 10px;
    color: #CCC;
}

.news-content .source div:last-child::after {
    content: "";
}

.share-link span {
    margin-right: 10px;
}

.share-link .facebook a {
    font-size: 1.5rem;
    color: #1877F2;
}

.share-link .line a {
    font-size: 1.5rem;
    color: #06C755;
}

.share-link .google a {
    font-size: 1.5rem;
    color: #EA4335;
}

/*======== 常見問答 ========*/
.accordionQA {
    --bs-accordion-btn-icon-transform: unset;
}

.accordionQA .accordion-button:not(.collapsed)::after {
    background-image: unset;
}

.accordionQA .accordion-item {
    margin: 10px 0;
    border: 0;
    border-bottom: 1px solid #e5e5e5;
}

.accordionQA button {
    background-color: #f7f7f7;
    border: 1px solid #e7e7e7;
    border-bottom: 3px solid #e1e1e1;
    border-radius: 8px 8px 0 0;
    position: relative;
    display: block;
    text-align: left;
    width: 100%;
    padding: 1em 1.5em;
    color: #107B45;
    transition: .3s;
}

.accordion-button:not(.collapsed) {
    color: #107B45;
    background-color: #107B4550;
    box-shadow: inset 0 calc(-1* var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color);
}

.accordionQA button .title-number {
    color: #fda956;
    font-weight: bold;
}

.accordionQA .accordion-item button[aria-expanded=true] {
    position: relative;
    border: 1px solid #58A057;
    border-bottom: 3px solid #4d794d;
    background-color: #58A057;
    color: #FFF;
    margin-top: 60px;
}

.accordionQA .accordion-item button[aria-expanded=true]:before {
    position: absolute;
    content: url('../img/QA_BG1.png');
    left: -25px;
    top: -65px;
    z-index: 9;
    transition: .3s;
}

.accordionQA .accordion-item button[aria-expanded=true]:after {
    position: absolute;
    content: url(../img/QA_BG2.png);
    right: 15%;
    top: -60px;
    z-index: 9;
    transition: .6s;
}

.accordionQA .accordion-item button[aria-expanded=true] .title-number {
    color: #fda956;
    font-weight: bold;
}

.accordionQA button .accordion-title {
    font-size: 1.2rem;
    font-weight: bold;
    padding: 1em 1.5em 1em 0;
}

.accordionQA button[aria-expanded=true] {
    color: #03b5d2;
}

/*.accordion-item button:hover {
    color: #107B45;
    transition: .3s;
}*/

.btn-toggle[aria-expanded="true"]:hover {
    color: #FFF;
}

@media screen and (max-width: 768px) {
    .accordionQA .accordion-item button[aria-expanded=true]:after {
        content: "";
    }
}

/*======= 災害與氣候 列表(側邊欄) =======*/
.btn-toggle {
    display: inline-flex;
    align-items: center;
    padding: .75rem .75rem;
    font-weight: 600;
    color: rgba(0, 0, 0, .65);
    background-color: transparent;
    border: 0;
    border-radius: 5px;
    font-size: 1.15rem;
}

.btn-toggle:hover {
    color: #107B45;
}

.btn-toggle:focus {
    background-color: #107B45;
    color: #FFF;
}

.btn-toggle::after {
    width: 1.25em;
    line-height: 0;
    margin-left: auto;
    transition: transform .35s ease;
    transform-origin: .5em 50%;
    content: "\f061";
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    text-decoration: inherit;
}

.btn-toggle[aria-expanded="true"] {
    color: #FFF;
    background-color: #107B45;
}

.btn-toggle[aria-expanded="true"]::before {
    transform: rotate(90deg);
}

.s-menu .btn-toggle-nav {
    margin-top: 12px;
    font-size: 1.05rem;
    max-height: 300px;
    overflow-y: auto;
}

/* 滾動條的整體樣式 */
.s-menu .btn-toggle-nav {
    scrollbar-width: thin;
    /* 適用於 Firefox */
    scrollbar-color: #ccc transparent;
    /* 適用於 Firefox */
}

/* Webkit 瀏覽器 (Chrome, Edge, Safari) 的 scrollbar 樣式 */
.s-menu .btn-toggle-nav::-webkit-scrollbar {
    width: 6px;
    /* 設定滾動條的寬度 */
}

/* 滾動條的軌道（背景部分） */
.s-menu .btn-toggle-nav::-webkit-scrollbar-track {
    background: transparent;
    /* 背景透明 */
    border-radius: 50px;
}

/* 滾動條的滑塊（可以拖動的部分） */
.s-menu .btn-toggle-nav::-webkit-scrollbar-thumb {
    background-color: #bbb;
    /* 設定滑塊顏色 */
    border-radius: 50px;
    /* 讓滑塊變圓滑 */
}

/* 滾動條的滑塊在 hover 時的效果 */
.s-menu .btn-toggle-nav::-webkit-scrollbar-thumb:hover {
    background-color: #999;
    /* 滑鼠移上去時的顏色 */
}

/* 隱藏滾動條的箭頭（僅適用於 Webkit 瀏覽器） */
.s-menu .btn-toggle-nav::-webkit-scrollbar-button {
    display: none;
    /* 隱藏上下箭頭 */
}

.s-menu .btn-toggle-nav li {
    padding: 8px 12px;
}

.s-menu .btn-toggle-nav li::before {
    font-family: "Font Awesome 6 Free";
    font-weight: 600;
    content: "\f773";
    margin-right: 6px;
}

.s-menu .btn-toggle-nav li:hover {
    background-color: #EEE;
}

.display_ctrl {
    display: none;
}

@media (min-width: 768px) {

    .menu-box {
        height: 100%;
        position: fixed;
        width: 300px;
        transition: .3s;
        margin-top: 88px;
        margin-left: 25px;
    }

    .s-menu-rightbox {
        position: relative;
        margin-left: 360px;
        min-height: 500px;
    }


    .display_ctrl {
        position: absolute;
        right: -35px;
        width: 45px;
        z-index: 99;
        font-size: 1.2rem;
        text-align: center;
        display: block;
    }

    a .display_ctrl p {
        color: #2A2A2A;
    }

    .close_ctrl,
    .open_ctrl {
        padding: 10px 5px;
        height: 100px;
        top: 35px;
        background-color: #FFE52F;
        border-top-left-radius: 0px;
        border-top-right-radius: 5px;
        border-bottom-left-radius: 0px;
        border-bottom-right-radius: 5px;
        position: absolute;
        z-index: 9999;
        box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    }

    .display_ctrl:after {
        border-right: 2px solid #ffaf36;
        content: "";
        height: 100%;
        position: absolute;
        top: 0;
    }

    .display_ctrl-line:after {
        border-right: 2px solid #ffaf36;
        content: "";
        height: 100%;
        position: absolute;
        top: 0;
        right: 15px;
    }

    .m_0 {
        margin: 8%;
        width: 90%;
    }

}

@media (max-width: 576px) {
    .menu-box {
        display: none;
    }
}

.speech-bubble {
    position: relative;
    background: #FFF;
    color: #333;
    padding: 30px;
    width: 100%;
    border-radius: 80px;
    /* 讓對話框變成橢圓形 */
    font-size: 1.2rem;
}

/* 小尾巴 - 放在左下角 */
.speech-bubble::after {
    content: "";
    position: absolute;
    bottom: 40px;
    left: -35px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 25px 50px 25px 0;
    border-color: transparent #FFF transparent transparent;
}

.choice-box {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    position: absolute;
    bottom: 5%;
    left: 30%;
}

.QA-Btn {
    display: block;
    width: 220px;
    height: 80px;
    margin: 10px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.QA-Btn:hover {
    box-shadow: rgba(0, 0, 0, 0.09) 0px 2px 1px, rgba(0, 0, 0, 0.09) 0px 4px 2px, rgba(0, 0, 0, 0.09) 0px 8px 4px, rgba(0, 0, 0, 0.09) 0px 16px 8px, rgba(0, 0, 0, 0.09) 0px 32px 16px;
}

.QA-Btn.-yellow {
    background-color: #FFC107;
}

.QA-Btn.-green {
    background-color: #58A057;
}

.QA-Btn.-blue {
    background-color: #3789A1;
}

.QA-Btn.-pink {
    background-color: #E97867;
}

.QA-Btn .number {
    font-size: 6rem;
    font-weight: bold;
    opacity: 0.6;
    position: absolute;
    left: 20px;
    top: 60%;
    transform: translateY(-50%);
    text-shadow: -2px -2px 0 #ffffff, 2px -2px 0 #ffffff, -2px 2px 0 #ffffff, 2px 2px 0 #ffffff;
}

.QA-Btn.-yellow .number {
    color: #FFC107;
}

.QA-Btn.-green .number {
    color: #58A057;
}

.QA-Btn.-blue .number {
    color: #3789A1;
}

.QA-Btn.-pink .number {
    color: #E97867;
}

.QA-Btn .text {
    color: #FFF;
    font-size: 1.3rem;
    font-weight: bold;
    position: absolute;
    right: 50px;
    top: 50%;
    transform: translateY(-50%);
}

.edit-block .link_btn {
    margin-top: 25px;
}

@media (max-width: 1366px) {

    .QA-Btn {
        width: 190px;
    }
}

@media (max-width: 1024px) {
    .choice-box {
        position: unset;
        justify-content: center;
    }

    .QA-Btn {
        width: 200px;
    }
}

@media (max-width: 576px) {

    .QA-Btn {
        width: 180px;
    }
}

@media (max-width: 390px) {

    .QA-Btn {
        width: 155px;
    }

    .QA-Btn .text {
        right: 20px;
    }

    .QA-Btn .number {
        left: 5px;
    }
}

.reference {
    display: flex;
    flex-wrap: wrap;
}

.reference .keyword-tags {
    margin-left: 5px;
}

/*======= 出版品 =======*/
.publications-list .p-item {
    border-bottom: 1px solid #dfdfdf;
    padding: 20px 0 20px 0;
}

.p-item .intro span::after {
    content: "|";
    margin: 0 10px;
    font-size: 10px;
    color: #CCC;
}

.p-item .intro span:last-child::after {
    content: "";
}

.p-item .title {
    font-size: 2rem;
    font-weight: bold;
}

.p-item .intro {
    margin-top: 12px;
}

/*20250324*/
.map-btn.-blue {
    background-color: #337ab7;
    width: 100%;
    border: 0;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
    padding: 10px;
}

.map-btn.-green {
    background-color: #578d3b;
    width: 100%;
    border: 0;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
    padding: 10px;
}

    .map-btn.-blue:hover,
    .map-btn.-green:hover {
        box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
    }

.map-btn.-blue.active {
    background-color: #6e94b5;
    text-shadow: 0 0 50px #fff, 0 0 150px #fff, 0 0 20px #fff;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px, rgb(51, 51, 51) 0px 0px 0px 3px;
}

.map-btn.-green.active {
    background-color: #6aab48;
    text-shadow: 0 0 50px #fff, 0 0 150px #fff, 0 0 20px #fff;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px, rgb(51, 51, 51) 0px 0px 0px 3px;
}

/*202503*/
.map-btn.-sit01 {
    width: 200px;
}

.map-btn.-sit02 {
    width: 200px;
}

.specialSelect {
    display: none;
}

@media (max-width: 1024px) {
    .specialSelect {
        margin-top: 15px;
    }
}

/*202503*/

.menu-box {
    height: 100%;
    position: relative;
    width: 300px;
    transition: .3s;
    margin-top: 88px;
    margin-left: 25px;
}

.s-menu-rightbox {
    position: relative;
    margin-left: 60px;
    min-height: 500px;
}

.display_ctrl {
    position: absolute;
    right: -35px;
    width: 45px;
    z-index: 99;
    font-size: 1.2rem;
    text-align: center;
    display: block;
}

.m_0 {
    margin: 0% 8%;
    width: 90%;
}


@media (max-width: 1024px) {

    .menu-box {
        height: 100%;
        position: relative;
        width: 300px;
        transition: .3s;
        margin-top: 88px;
        margin-left: 25px;
    }

    .s-menu-rightbox {
        position: relative;
        margin-left: 10px;
        min-height: 500px;
    }

    .display_ctrl {
        position: absolute;
        right: -35px;
        width: 45px;
        z-index: 99;
        font-size: 1.2rem;
        text-align: center;
        display: block;
    }

    .m_0 {
        margin: 0% 8%;
        width: 90%;
    }
}

@media (max-width: 768px) {
    .menu-box {
        display: none;
    }
}

/*0616*/
#custom-owl-dots .owl-dot {
    background-color: rgba(118, 73, 30, 0.11);
    border-color: transparent;
}

#custom-owl-dots .owl-dot {
    width: 90%;
    transition: .3s;
}

    #custom-owl-dots .owl-dot.style01:hover, #custom-owl-dots .owl-dot.style01:active, #custom-owl-dots .owl-dot.style01.active {
        background-color: #FFF;
        border-color: #76491E;
        box-shadow: 8px 8px 6px rgba(0, 0, 0, 0.16);
    }

    #custom-owl-dots .owl-dot.style02:hover, #custom-owl-dots .owl-dot.style02:active, #custom-owl-dots .owl-dot.style02.active {
        background-color: #FFF;
        border-color: #FFC000;
        box-shadow: 8px 8px 6px rgba(0, 0, 0, 0.16);
    }

    #custom-owl-dots .owl-dot.style03:hover, #custom-owl-dots .owl-dot.style02:active, #custom-owl-dots .owl-dot.style03.active {
        background-color: #FFF;
        border-color: #83DED9;
        box-shadow: 8px 8px 6px rgba(0, 0, 0, 0.16);
    }

    #custom-owl-dots .owl-dot.style01:hover .icon::before, #custom-owl-dots .owl-dot.style01:active .icon::before, #custom-owl-dots .owl-dot.style01.active .icon::before {
        background-color: #76491E;
    }

    #custom-owl-dots .owl-dot.style02:hover .icon::before, #custom-owl-dots .owl-dot.style02:active .icon::before, #custom-owl-dots .owl-dot.style02.active .icon::before {
        background-color: #FFC000;
    }

    #custom-owl-dots .owl-dot.style03:hover .icon::before, #custom-owl-dots .owl-dot.style03:active .icon::before, #custom-owl-dots .owl-dot.style03.active .icon::before {
        background-color: #83DED9;
    }

    #custom-owl-dots .owl-dot.style01:active, #custom-owl-dots .owl-dot.style01.active,
    #custom-owl-dots .owl-dot.style02:active, #custom-owl-dots .owl-dot.style02.active,
    #custom-owl-dots .owl-dot.style03:active, #custom-owl-dots .owl-dot.style03.active {
        width: 100%;
        transition: .3s;
    }

        #custom-owl-dots .owl-dot.style01:active .text, #custom-owl-dots .owl-dot.style01.active .text,
        #custom-owl-dots .owl-dot.style02:active .text, #custom-owl-dots .owl-dot.style02.active .text,
        #custom-owl-dots .owl-dot.style03:active .text, #custom-owl-dots .owl-dot.style03.active .text {
            font-size: 1.8rem;
            transition: .3s;
        }

        #custom-owl-dots .owl-dot.style01:active small, #custom-owl-dots .owl-dot.style01.active small,
        #custom-owl-dots .owl-dot.style02:active small, #custom-owl-dots .owl-dot.style02.active small,
        #custom-owl-dots .owl-dot.style03:active small, #custom-owl-dots .owl-dot.style03.active small {
            font-size: 1.125rem;
            transition: .3s;
        }

        #custom-owl-dots .owl-dot.style01:hover .icon::before, #custom-owl-dots .owl-dot.style01:active .icon::before, #custom-owl-dots .owl-dot.style01.active .icon::before,
        #custom-owl-dots .owl-dot.style02:hover .icon::before, #custom-owl-dots .owl-dot.style02:active .icon::before, #custom-owl-dots .owl-dot.style02.active .icon::before,
        #custom-owl-dots .owl-dot.style03:hover .icon::before, #custom-owl-dots .owl-dot.style03:active .icon::before, #custom-owl-dots .owl-dot.style03.active .icon::before {
            content: "";
            background-repeat: no-repeat;
            width: 90px;
            height: 90px;
            background-position: center;
        }

        #custom-owl-dots .owl-dot.style01:hover .icon::before, #custom-owl-dots .owl-dot.style01:active .icon::before, #custom-owl-dots .owl-dot.style01.active .icon::before {
            background-image: url(../img/icon01.png);
        }

        #custom-owl-dots .owl-dot.style02:hover .icon::before, #custom-owl-dots .owl-dot.style02:active .icon::before, #custom-owl-dots .owl-dot.style02.active .icon::before {
            background-image: url(../img/icon02.png);
        }

        #custom-owl-dots .owl-dot.style03:hover .icon::before, #custom-owl-dots .owl-dot.style03:active .icon::before, #custom-owl-dots .owl-dot.style03.active .icon::before {
            background-image: url(../img/icon03.png);
        }

/*0623*/
#section_one .section-title-eng-02 {
    display: block;
    color: #D5C49F;
    font-size: 1.8rem;
    margin-left: 0;
}

/*0812*/
#navbarCollapse .dropdown-menu {
    background-color: #FFF8E9;
}

#navbarCollapse .dropdown-item:focus,
#navbarCollapse .dropdown-item:hover {
    background-color: rgba(118, 73, 30, 0.11);
}

@media (max-width: 1024px) {
    .menu-box {
        display: none;
    }
}

@media (max-width: 1536px) {
    .menu-box {
        height: 100%;
        position: relative;
        width: 260px;
        transition: .3s;
        margin-top: 88px;
        margin-left: 15px;
    }
}

/*1020*/
@media (max-width: 1540px) {  
    .choice-box {
       position:relative;
       top:0;
       left: 0;
       transform:translate(25%,-100%);
    }
}

@media (max-width: 1280px) {
    .choice-box {
        transform:translate(0);
        justify-content:end;
    }
}

@media (max-width: 1022px) {
    ​.choice-box {
        justify-content: center;
    }
}

@media (max-width: 1024px) {
    ​.menu-box {
        display: block;
    }
}

@media (max-width: 1024px) {
    ​.menu-box {
        display: none;
    }
}

.picBtnGR-inner .btn-main:hover {
    background-color: #669900;
}
