.t-nav-item>ul>li:nth-child(3) .t-hover-ul li:first-child {
    display: none;
}

.fa-classic,
.fa-regular,
.fa-solid,
.far,
.fas {
    font-family: "Font Awesome 6 Free" !important;
}


.t-container {
    margin-top: 80px;
}

.t-navbar {
    width: 100%;
    padding: 0 100px 0 100px;
    background-color: white; /* 一開始可能是透明的，讓底下的 Banner 透出來 */
    z-index: 11;
    display: flex;
    align-items: center;
    justify-content: space-between;
    
    /* 改為 absolute，讓 Navbar 一開始就懸浮在 Banner 上，不佔據實體高度 */
    position: absolute; 
    top: 0;
    left: 0;
}

.t-navbar.fixed {
    box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
    position: fixed;
    background-color: white;
    animation: slideDown 0.4s ease-in-out forwards;
}

/* 定義滑入動畫 */
@keyframes slideDown {
    from {
        transform: translateY(-100%);
        /* 初始狀態在畫面頂部外 */
        opacity: 0.8;
    }

    to {
        transform: translateY(0);
        /* 回到正常位置 */
        opacity: 1;
    }
}

.t-logo img {
    max-width: 200px;
}

.t-nav-item>ul {
    display: flex;
    flex-direction: row;
}

.t-nav-item li.mactive {
    color: white;
    border-radius: 0 0 40px 40px;
    background-color: #eb5c20 !important;
}

.t-nav-item li.mactive:hover {
    border-radius: 0;
}

.t-nav-item li.mactive a {
    color: white !important;
}

.t-nav-item li a {
    padding: 20px 0;
}

.t-hover-ul {
    background-color: #eb5c20;
    position: absolute;
    border-radius: 0 0 80px 80px;
    top: 86px;
    margin-left: -20px;
    z-index: 99;
}

.t-hover-ul.d-none {
    display: none;
}

.t-hover-ul li:hover {
    background-color: #eb5c20 !important;
}

.t-hover-ul {
    padding: 15px 0 70px;
}

.t-hover-ul li {
    display: flex;
}

.t-hover-ul li a {
    width: 280px;
    padding: 10px 30px;
}

.t-nav-item>ul>li {
    font-size: 18px;
    padding: 30px 20px;
    cursor: pointer;
    font-weight: 500;
}

.t-nav-item>ul>li:hover {
    color: white;
}

.t-nav-item>ul li:hover {
    background-color: #eb5c20;
}

.t-nav-item>ul li:hover a {
    color: white;
}

.tnli.active {
    border-radius: 0;
}

.t-social-btn {
    cursor: pointer;
    margin-right: 15px;
}

.t-social-btn:hover .t-wechat-qrcode {
    display: block;
}

.t-wechat-qrcode {
    display: none;
    position: absolute;
    right: 35px;
    top: 80px;
    z-index: 9;
}

.t-wechat-qrcode img {
    width: 150px;
}

.t-nav-lang {
    display: flex;
    flex-direction: row;
    align-items: center;
    cursor: pointer;
}

.t-lang-dropdown {
    display: none;
    flex-direction: column;
    position: absolute;
    background-color: white;
    width: 80px;
    margin-top: 10px;
    margin-left: -43px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    z-index: 99;
}

.t-lang-dropdown.show {
    display: flex;
}

.t-lang-btn {
    cursor: pointer;
    text-align: center;
    padding: 10px;
    text-decoration: none;
    color: black;
}

.t-lang-btn:hover {
    color: white;
    background-color: #eb5c20;
}

.t-current label {
    margin-right: 5px;
    font-weight: 500;
}

.t-banner-section {
    height: calc(100vh - 96px);
}

.t-banner {
    z-index: -1;
    position: absolute;
    top: 0;
    background-image: url(../img/index-banner.jpg?ver=6);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    width: 100%;
    height: 90vh;
}

.t-banner2 {
    z-index: -1;
    position: absolute;
    top: 0;
    background-image: url(../img/southeast.jpg?ver=1);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    width: 100%;
    height: 100vh;
}

.t-three-box {
    position: absolute;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: calc(100% - 96px);
}

.t-remind-dropdown {
    position: absolute;
    bottom: 30px;
    left: 100px;
    animation: MoveUpDown 1s linear infinite;
}

.t-remind-dropdown.active {
    /* bottom: 120px; */
    /* animation: MoveUpDown2 1s linear infinite; */
}

#EcoDiv .swiper-wrapper {
    align-items: center;
}

@keyframes MoveUpDown {

    0%,
    100% {
        bottom: 30px;
    }

    50% {
        bottom: 50px;
    }
}

@keyframes MoveUpDown2 {

    0%,
    100% {
        bottom: 120px;
    }

    50% {
        bottom: 140px;
    }
}

.t-remind-group {
    width: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.t-drop-text {
    color: #eb5c20;
    width: 25px;
    text-align: center;
    line-height: 20px;
}

.t-drop-circle {
    margin: 8px 0;
    border: 5px solid #eb5c20;
    width: 25px;
    height: 25px;
    background-color: white;
    border-radius: 50%;
}

.t-remind-group i {
    color: #eb5c20;
}

.t-box {
    background-color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    padding: 20px 30px 0;
    width: 100%;
    max-width: 420px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}

.t-box-label {
    color: #eb5c20;
    font-size: 18px;
}

.t-box-content {
    margin: 30px 0 20px;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
}

.t-box-date {
    line-height: 26px;
}

.t-box-ddmm {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 900;
    color: #eb5c20;
    font-size: 36px;
}

.t-box-yyyy {
    color: #eb5c20;
    font-size: 16px;
    letter-spacing: 12px;
    font-weight: 300;
}

.t-box-title {
    font-size: 18px;
    margin-left: 40px;
    font-weight: normal;
}

.t-box-report-content {
    margin: 20px 0;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
}

.t-box-report {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.t-box-img {
    width: 75px;
    height: 75px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #eb5c20;
    border-radius: 50%;
}

.t-box-img img {
    width: 100%;
    max-width: 40px;
}

.t-box-report-label {
    margin-top: 5px;
    font-weight: 500;
    letter-spacing: 1px;
    font-size: 18px;
}

#LatestNewsDiv .swiper-slide,
#AboutusDiv .swiper-slide,
#AnnounceDiv .swiper-slide {
    padding: 20px 0 20px;
    display: flex;
    justify-content: space-evenly;
}

.t-slogan {
    left: 100px;
    position: absolute;
    top: 35%;
    display: flex;
    flex-direction: column;
    background-color: rgba(255, 255, 255, .6);
    padding: 20px 30px;
    border-radius: 20px;
}

.t-slogan-text-deep {
    color: #eb5c20;
    letter-spacing: 3px;
}

.t-slogan-text-light {
    color: #eb5c20;
    letter-spacing: 3px;
}

.t-slogan-text {
    font-size: 72px;
    line-height: 1.2;
    font-weight: 300;
}

.t-slogan-text b {
    font-weight: 500;
}

.t-about-section {
    background-color: #fff7eb;
    padding: 50px 0;
}

.t-about-title {
    padding-left: 100px;
    color: #eb5c20;
    margin-bottom: 20px;
}

.t-about-hollow {
    font-size: 92px;
    color: #fff7eb;
    text-shadow: -1px 0 #eb5c20, 0 1px #eb5c20, 1px 0 #eb5c20, 0 -1px #eb5c20;
    opacity: 0.22;
    letter-spacing: 10px;
}

.t-about-solid {
    position: absolute;
    margin-top: -75px;
    letter-spacing: 2.5px;
    font-size: 18px;
}

.t-about-image img {
    width: 100%;
}

.t-about-more {
    margin-top: 20px;
    padding-left: 100px;
    display: flex;
}

.t-about-more-btn {
    text-decoration: none;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.t-btn-circle {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1px solid #eb5c20;
    transition: all .3s ease-in-out;
}

.t-btn-circle i {
    color: #eb5c20;
}

.t-btn-circle:hover {
    background-color: #eb5c20;
    transition: all .3s ease-in-out;
}

.t-btn-circle:hover i {
    color: white;
}

.t-about-more-label {
    color: #eb5c20;
    font-weight: 500;
    margin-left: 20px;
    font-size: 18px;
}

.t-about-box {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.t-about-item {
    max-width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.t-about-right-box {
    padding-right: 100px;
    display: flex;
    flex-direction: column;
    align-items: end;
}

.t-about-text-row {
    display: flex;
    flex-direction: row;
}

.t-about-text {
    font-weight: 300;
    font-size: 32px;
    text-align: end;
    line-height: 1.5;
    /* display: flex; */
    flex-direction: row;
    z-index: 9;
    color: #6a6a6a;
}

.t-text-row {
    display: flex;
    flex-direction: column;
}

.t-text-underline {
    border-radius: 20px;
    border-bottom-width: 1px;
    background: linear-gradient(90deg, #f5cd10, #f5cd10 50%, transparent 0);
    width: 100%;
    height: 1px;
    background-size: 200% 100%;
    background-repeat: no-repeat;
    background-position: -100% 50%;
    transition: background 3s;
    margin-bottom: 0px;
    z-index: -1;
}

.t-about-three-item-box {
    padding-right: 100px;
    margin-top: 60px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.t-about-three-row {
    display: flex;
    flex-direction: row;
}

.t-main-color {
    color: #eb5c20;
}

.t-about-three-circle {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background-color: #f5cd10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.t-about-three-circle img {
    max-width: 65px;
}

.t-about-three-title {
    font-size: 34px;
    font-weight: 300;
    margin-top: 5px;
    text-align: center;
    color: #eb5c20;
}

.t-vision-section-banner {
    padding: 50px 100px 0;
    background-image: url('../img/index-section-bg3.jpg?ver=1');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    width: 100%;
    height: 80vh;
}

.t-white-text {
    color: white;
    font-size: 18px;
}

.t-vision-hollow {
    font-size: 92px;
    text-shadow: -1px 0 white, 0 1px white, 1px 0 white, 0 -1px white;
    opacity: 0.22;
    letter-spacing: 10px;
}


.t-vision-slogan {
    width: 100%;
    height: calc(100% - 150px - 133px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.t-vision-slogan-text {
    font-size: 72px;
    letter-spacing: 10px;
    color: white;
    font-weight: 300;
}

.t-vision-slogan-text b {
    font-weight: bold;
}

.name {
    display: flex;
    position: relative;
}

.name::before {
    content: '';
    width: 100%;
    opacity: 0.4;
    bottom: 0;
    left: 0;
    position: absolute;
}

.letter {
    color: white;
    font-size: 82px;
    display: inline-block;
    opacity: 0;
    transform: scale(0.9);
}

.letter b {
    font-weight: bold;
}

.t-vision-slogan-text {
    display: inline-block;
    color: white;
    font-size: 82px;
    transform: scale(0.9);
}

.t-video-section-banner {
    background-image: url(../img/index-section-bg4.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
}

.t-video-section video {
    width: 100%;
    max-width: 1000px;
    margin-top: -60px;
}

.t-bottom-section {
    padding: 0 100px;
    background-color: #fff7eb;
}

.t-video-play {
    position: absolute;
    z-index: 9;
    display: flex;
    justify-content: center;
    align-items: center;
}

.t-video-play i {
    color: white;
    font-size: 100px;
}

.t-video-label-box-master {
    width: 100%;
    display: flex;
    justify-content: center;
}

.t-video-label-box {
    background-color: #eb5c20;
    width: 100%;
    max-width: 1000px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.t-video-label-hollow {
    font-size: 72px;
    color: #eb5c20;
    text-shadow: -1px 0 #fff7eb, 0 1px #fff7eb, 1px 0 #fff7eb, 0 -1px #fff7eb;
    opacity: 0.22;
    letter-spacing: 10px;
}

.t-video-label-solid {
    position: absolute;
    letter-spacing: 2.5px;
    color: white;
}

.t-bottom-company {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 100px 0 40px;
    border-bottom: 1px solid #eb5c20;
}

.t-bottom-company img {
    max-width: 250px;
}

.t-company-name {
    color: #eb5c20;
    font-weight: 600;
    font-size: 18px;
}

.t-company-address {
    color: #eb5c20;
    font-size: 18px;
}

.t-bottom-contact {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    border-bottom: 1px solid #eb5c20;
}

.t-bottom-contact-item {
    width: 50%;
    display: flex;
    flex-direction: row;
    align-items: baseline;
    justify-content: space-between;
    padding: 20px 0;
}

.t-contact-label {
    color: #eb5c20;
    font-size: 18px;
}

.t-contact-text {
    color: #eb5c20;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
}

a.t-contact-text:hover {
    color: #f5cd10;
}

.t-bottom-contact-email {
    padding-right: 20px;
    border-right: 1px solid #eb5c20;
}

.t-bottom-contact-tel {
    padding-left: 60px;
}

.t-bottom-contact-tel .t-contact-text {
    font-family: 'Montserrat', sans-serif !important;
}

.t-bottom-sitemap {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    padding: 40px 0;
}

.t-sitemap-label {
    font-size: 18px;
    cursor: pointer;
    text-decoration: none;
    color: black;
}

.t-sitemap-label {
    color: #eb5c20;
}

.t-sitemap-label:hover {
    color: #f5cd10;
}

.t-footer-label {
    font-size: 18px;
}

.t-footer-section {
    padding: 20px 0;
    display: flex;
    justify-content: center;
}

@media screen and (max-width: 1600px) {
    .t-nav-item>ul>li {
        margin: 0;
    }
}

@media screen and (max-width: 1400px) {
    .t-navbar {
        padding: 0 30px 0 30px;
    }
}

/* IR PAGE CSS */

/* https://699pic.com/tupian-303053824.html */
.t-ir-banner-bg {
    padding: 60px 100px;
    height: 400px;
    background-image: url('../img/ir_investor_banner.jpg?ver=2');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

.t-banner-title {
    font-size: 54px;
    letter-spacing: 6px;
    color: white;
    text-align: right;
}

.t-banner-title b {
    font-weight: 600;
}

.t-ir-content-section {
    padding: 80px 100px;
}

.t-ir-full-content-section {
    margin: 40px 0;
    /* background: linear-gradient(white 65%, #eb5c20 35%); */
}

.t-ir-label {
    display: none;
    font-size: 24px;
    font-weight: 600;
    color: #eb5c20;
}

.t-ir-full-content-section .t-ir-label {
    padding: 0 100px;
}

#AnnouncementDiv {
    margin: 20px 0;
}

.t-announce-head {
    padding: 15px 0;
    display: flex;
    flex-direction: row;
    border-bottom: 5px solid #eb5c20;
}

.t-announce-date {
    font-size: 18px;
    width: 30%;
    font-weight: 600;
    color: #eb5c20;
    padding-left: 30px;
    display: flex;
    align-items: center;
}

.t-announce-title {
    font-size: 18px;
    width: 55%;
    font-weight: 600;
    color: #eb5c20;
    display: flex;
    align-items: center;
}

.t-announce-year {
    width: 15%;
    display: flex;
    justify-content: flex-end;
}

.t-announce-item {
    background-color: rgb(243, 243, 243);
    display: flex;
    flex-direction: row;
    padding: 30px 0;
    margin-bottom: 3px;
}

.t-date-text {
    padding-left: 30px;
    width: 30%;
    font-size: 18px;
}

.t-title-text {
    width: 60%;
    font-size: 18px;
}

#CgdDiv {
    margin: 20px 0;
}

#CgdDiv .t-announce-title {
    padding-left: 30px;
    width: 90%;
}

#CgdDiv .t-title-text {
    padding-right: 20px;
    padding-left: 30px;
    width: 90%;
}

.t-view-icon {
    width: 10%;
    display: flex;
    justify-content: center;
}

.t-view-icon i {
    font-size: 26px;
    color: red;
}

.t-announce-pg {
    display: flex;
    justify-content: center;
}

#ReportDiv {
    margin: 20px 0;
    padding: 40px 100px;
}

/* 
.t-report-item {
    padding-left: 60px;
    display: flex;
    flex-direction: row;
    align-items: center;
} */

.t-report-thumbnail img {
    max-width: 180px;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}

.t-report-text {
    margin-left: 20px;
}

.t-report-year {
    color: #eb5c20;
    font-size: 18px;
    font-weight: bold;
    font-family: 'Montserrat', sans-serif !important;
}

.t-report-title {
    color: #eb5c20;
    font-size: 18px;
}

.t-lost-label {
    font-size: 18px;
    padding: 30px 0;
}

#LostDiv div {
    font-size: 18px;
}

/* Contact PAGE CSS */

/* https://699pic.com/tupian-307859336.html */
.t-contact-banner-bg {
    padding: 60px 100px;
    height: 400px;
    background-image: url('../img/ir_contact_banner2.jpg?ver=2');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

/* https://699pic.com/tupian-502619496.html */
.t-news-banner-bg {
    padding: 60px 100px;
    height: 400px;
    background-image: url('../img/ir_news_banner3.jpg?ver=2');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

/* https://699pic.com/tupian-500850052.html */
.t-esg-banner-bg {
    padding: 60px 100px;
    height: 400px;
    background-image: url('../img/ir_esg_banner.jpg?ver=4');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

.t-401751216-banner-bg {
    padding: 60px 100px;
    height: 400px;
    background-image: url('../img/401751216.jpg?ver=3');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    filter: brightness(0.9);
}

.t-500516832-banner-bg {
    padding: 60px 100px;
    height: 400px;
    background-image: url('../img/500516832.jpg?ver=4');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

.t-about-banner-bg {
    padding: 60px 100px;
    height: 400px;
    background-image: url('../img/ir_about_banner.jpg?ver=2');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

.t-500840711-banner-bg {
    padding: 60px 100px;
    height: 400px;
    background-image: url('../img/500840711.jpg?ver=4');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

.t-500840711-culture-banner-bg {
    padding: 60px 100px;
    height: 400px;
    background-image: url('../img/500840711_culture.jpg?ver=3');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

.t-502423802-banner-bg {
    padding: 60px 100px;
    height: 400px;
    background-image: url('../img/909914752.jpg?ver=2');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

.t-0cr4ou-banner-bg {
    padding: 60px 100px;
    height: 400px;
    background-image: url('../img/0cr4ou2.jpg?ver=2');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

.t-401947600-banner-bg {
    padding: 60px 100px;
    height: 400px;
    background-image: url('../img/401947600.jpg?ver=2');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

.t-503482232-banner-bg {
    padding: 60px 100px;
    height: 400px;
    background-image: url('../img/503482232.jpg?ver=2');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

.t-401773644-banner-bg {
    padding: 60px 100px;
    height: 400px;
    background-image: url('../img/401773644.jpg?ver=2');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

.t-502611271-banner-bg {
    padding: 60px 100px;
    height: 400px;
    background-image: url('../img/502611271.jpg?ver=3');
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: cover;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

/* https://699pic.com/tupian-500944817.html */
.t-business-banner-bg {
    padding: 60px 100px;
    height: 400px;
    background-image: url('../img/fb_banner.png?ver=5');
    background-repeat: no-repeat;
    background-position: top;
    background-size: cover;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

.t-business-sc-banner-bg {
    padding: 60px 100px;
    height: 400px;
    background-image: url('../img/sc_banner.png?ver=5');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

.t-business-gm-banner-bg {
    padding: 60px 100px;
    height: 400px;
    background-image: url('../img/gm1_1.jpg?ver=5');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}


.t-business-eco-banner-bg {
    padding: 60px 100px;
    height: 400px;
    background-image: url('../img/eco_banner.png?ver=5');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

@media screen and (max-width: 991px) {
    .t-business-sc-banner-bg {
        background-image: url('../img/sc_banner_mobile_ver3.png?ver=3');
        background-position: top;
    }

    .t-business-sc-banner-bg .t-banner-title {
        margin-top: 120px;
    }

    .t-business-eco-banner-bg {
        background-image: url('../img/eco_banner_mobile.jpg?ver=2');
    }

}

.t-company-address-box {
    padding: 20px 40px 10px 0;
}

.t-company-place-map {
    max-width: 900px;
}

.t-company-place-name {
    font-size: 18px;
    margin: 0 0 20px;
}

.t-company-place-name.active {
    color: #eb5c20;
}

.t-company-place-detail {
    grid-template-columns: 1fr 1fr;
    display: grid;
    justify-content: space-between;
}

.t-company-place-img {
    width: 100%;
    max-width: 360px;
}

.t-company-box {
    display: flex;
    flex-direction: row;
    margin: 5px 0 40px 0;
    font-size: 18px;
}

.t-company-box-first {
    margin: 5px 0 20px 0;
}

.t-company-place-btn {
    border: 1px solid #eb5c20;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 18px;
    margin-right: 20px;
}

.t-company-place-btn.active {
    background-color: #eb5c20;
    color: white
}

.t-company-place-btn:hover {
    background-color: #eb5c20;
    color: white;
}

.t-company-place-item {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.t-company-place-item img {
    width: 100%;
    max-width: 300px;
}

.t-contact-head {
    font-size: 21px;
    color: #eb5c20;
    padding-bottom: 5px;
}

.t-contact-company-name {
    font-size: 18px;
}

.t-contact-detail {
    padding-right: 20px;
}

.t-mail-text {
    display: flex;
    flex-direction: row;
    font-size: 18px;
}

a:hover {
    color: #eb5c20;
}

/* NEWS */

.t-news-nav {
    column-gap: 30px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin: 0 0 20px;
}

.t-news-nav-item {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.t-news-nav-label {
    width: 90px;
    font-size: 18px;
    font-weight: 500;
}

#FromDiv {
    margin-right: 10px;
}

i {
    font-family: DXIcons !important;
}

.t-esg-content {
    margin: 40px 0;
    text-align: justify;
    font-size: 18px;
}

.t-cgr-content {
    font-size: 18px;
    margin: 40px 0;
    text-align: justify;
}

.t-cgr-content b {
    font-weight: 600;
    color: #eb5c20;
}

.t-cgd-doc-box {
    margin: 40px 0;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: flex-start;
}

.t-cgd-doc-box div {
    font-weight: 500;
    width: 100%;
    margin-right: 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 40px 20px;
    background-color: white;
    font-size: 18px;
    margin-bottom: 20px;
    box-shadow: 0 2px 5px 0 rgb(0 0 0 / 15%);
    transition: all .3s ease-in-out;
}

.t-cgd-doc-box div:hover {
    transform: translateX(5px);
    border: none;
    border-left: 5px solid #eb5c20;
    transition: all .3s ease-in-out;
}

.t-cgd-doc-box a {
    cursor: pointer;
    margin-top: 20px;
    font-weight: 300;
}

.t-cgd-doc-box i {
    padding-right: 7px;
}

.t-cgd-doc-box a:hover {
    color: #eb5c20 !important;
}

.t-cgd-doc-box a:last-child {
    margin-bottom: 0;
}

.t-sc-content {
    margin: 40px 0;
    text-align: justify;
}

.t-sc-item {
    display: flex;
    flex-direction: row;
}

.t-sc-item img {
    width: 100%;
    max-width: 300px;
    padding-left: 50px;
}

.t-sc-text {
    width: 100%;
    padding-right: 40px;
    font-size: 18px;
}

.t-sc-text b {
    font-weight: 600;
    color: #eb5c20;
}

.t-fb-content {
    margin: 40px 0;
    text-align: justify;
    display: flex;
    flex-direction: row;
}

.t-fb-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 40px;
}

.t-fb-item img {
    width: 100%;
    max-width: 300px;
}

.t-fb-text {
    font-size: 18px;
}

.t-fb-text b {
    font-weight: 600;
}

.fb_img {
    width: 100%;
}

.t-eco-content {
    margin: 40px 0;
    text-align: justify;
}

.t-eco-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 40px;
}

.t-eco-item img {
    width: 100%;
    max-width: 300px;
    padding-left: 50px;
}

.t-eco-text {}

.t-eco-text b {
    font-weight: 600;
}

/* About Us */

.t-culture-content {
    margin: 40px 0;
}

.t-culture-content li {
    margin-bottom: 20px;
}

.t-culture-content li i {
    margin-right: 5px;
    color: #eb5c20;
}

.t-culture-box {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
}

.t-culture-item {
    display: flex;
    flex-direction: column;
    margin-bottom: 40px;
}

.t-culture-left,
.t-culture-right {
    width: 50%;
}

.t-culture-label {
    color: #eb5c20;
    font-weight: 400;
    font-size: 24px;
    margin-bottom: 10px;
}

.t-culture-text {
    font-size: 18px;
}

.t-profile-content {
    margin: 40px 0 200px;
    font-size: 18px;
}

.t-chairintro-content {
    margin: 40px 0;
}

.t-chair-row {
    display: flex;
    flex-direction: row;
}

.t-chair-item {
    width: 45%;
}

.t-chair-intro-text-content {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 60px;
}

/* .t-chair-image {
    width: 100%;
    height: 360px;
    background-size: contain;
    background-position: right;
    background-repeat: no-repeat;
} */

.t-chair-name {
    font-size: 24px;
    font-weight: bold;
    color: #eb5c20;
}

.t-chair-slogan {
    font-size: 18px;
}

#ChairTitleDiv {
    padding: 20px 0;
}

#ChairTitleDiv .swiper-button-prev {
    left: 0;
}

.t-chair-card {
    /* display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin-top: 20px; */
}

.t-chair-card .swiper-slide {
    font-size: 18px;
    align-items: center;
    display: flex;
    color: #eb5c20;
    padding-left: 40px;
}

.t-chair-title-box {
    padding: 10px 0 0;
}

.t-chair-title-text {
    font-size: 16px;
}

.t-chair-title-text:last-child {
    margin-bottom: 0;
}

.t-chair-second-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.t-chair-popup-btn {
    border-radius: 10px;
    font-size: 18px;
    margin-bottom: 10px;
    padding: 20px;
    background-color: #eb5c20;
    color: white;
    cursor: pointer;
}

.t-chair-popup-btn:hover {
    background-color: #eb5c20;
    color: white;
}

.t-chair-second-content {
    margin-top: 40px;
}

.t-chair-second-content>p {
    text-align: justify;
    margin-bottom: 40px;
}

#ChairImgDiv {
    width: 100%;
    margin: 0 0 40px 0;
    padding: 0 0 40px;
}

#ChairImgDiv .swiper-slide img {
    width: 100%;
}

.t-chair-first-row {
    display: flex;
    flex-direction: row;
    margin-bottom: 100px;
}

.t-chair-first-row:first-child {
    flex-direction: row-reverse;
}

.t-chair-first-row:first-child p {
    padding-left: 30px;
    padding-right: 0;
}

.t-chair-first-row:last-child {
    margin-bottom: 0;
}

.t-chair-first-row img {
    width: 360px;
}

.t-chair-first-row p {
    width: 100%;
    padding-right: 30px;
    text-align: justify;
    font-size: 18px;
}

#ChairImageRowA,
#ChairImageRowB {
    width: 420px;
}

#ImgDiv {
    width: 100%;
    max-width: 500px;
    height: 320px;
}

#ImgDiv .swiper-slide {
    width: 100%;
    height: 320px;
}

#ChairImageRowA .swiper-slide,
#ChairImageRowB .swiper-slide,
#ImgDiv .swiper-slide {
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.people-content {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.p-desc {
    padding: 40px 10px 20px;
    text-align: justify;
    font-size: 18px;
}

.t-board-content {
    margin: 40px 0;
}

.t-board-label-box {
    display: flex;
    align-items: flex-start;
}

.t-board-label {
    font-weight: bold;
    font-size: 24px;
}

.t-board-box {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin: 20px 0 40px;
}

.t-board-item-btn {
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30%;
    padding: 40px 20px;
    border: 1px solid lightgrey;
    background-color: white;
    font-size: 18px;
}

.t-board-item-btn:hover {
    background-color: #eb5c20;
    color: white;
}

.t-board-item:first-child {
    margin-top: 20px;
}

.t-board-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 20px;
    padding: 20px 20px 0;
    border: 1px solid lightgrey;
}

.t-board-name {
    font-weight: 600;
    margin-bottom: 20px;
}

.t-board-desc {
    text-align: justify;
}

.t-board-img {
    padding-left: 40px;
    width: 300px;
}

.t-board-text {
    padding: 0 0 20px;
}

.t-esg-report {
    padding: 40px 0;
}

.board-content {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.board-intro {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.board-name {
    color: #eb5c20;
    margin: 20px 0;
}

.board-desc {
    text-align: justify;
    padding-bottom: 20px;
    font-size: 16px;
}

.t-committee-content {
    margin: 40px 0;
}

.t-committee-box {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.t-committee-item {
    width: 30%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    border: 1px solid lightgrey;
    transition: all .2s ease-in-out;
}

.t-committee-item:hover {
    border: 1px solid #eb5c20;
    transition: all .2s ease-in-out;
}

.t-committee-item:hover .t-committee-label {
    border-bottom: 1px solid #eb5c20;
    transition: all .2s ease-in-out;
}

.t-committee-label {
    font-size: 22px;
    padding: 15px 0 5px;
    text-align: center;
    border-bottom: 1px solid lightgrey;
    transition: all .2s ease-in-out;
}

.t-committee-name {
    min-height: 144px;
    padding: 10px 0;
    display: flex;
    justify-content: center;
    text-align: center;
    font-size: 18px;
}

.t-committee-item a {
    font-size: 18px;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 10px;
}

.t-committee-item a i {
    padding-left: 5px;
}

.t-committee-item:hover a {
    background-color: #eb5c20;
    color: white;
}

.t-selector-year {
    padding: 5px 20px;
}

.t-milestone-content {
    margin: 40px 0;
}

.t-year-light-on {
    color: #eb5c20 !important;
    opacity: 0.8 !important;
    text-shadow: none !important;
}

.t-milestone-year-selector.fixed {
    position: fixed;
    top: 86px;
    left: 0;
    z-index: 9;
    transition: all .3s ease-in-out;
}

.t-milestone-year-selector {
    transition: all .3s ease-in-out;
    padding: 10px 20px;
    display: flex;
    background-color: #eb5c20;
    flex-direction: row;
    justify-content: space-evenly;
    width: 100%;
    margin-bottom: 40px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}

.t-selector-year {
    color: white;
    text-align: center;
    font-size: 18px;
    transition: all .3s ease-in-out;
    cursor: pointer;
}

.t-selector-year:hover {
    text-decoration: underline;
    transition: all .3s ease-in-out;
}

.t-milestone-box {
    display: flex;
    flex-direction: column-reverse;
}

.t-activity-box {
    display: flex;
    flex-direction: column;
}

.t-milestone-item {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding: 40px 30px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}

/* .t-milestone-item.active .t-milestone-year{
    color:#eb5c20;
    transition: all .5s ease-in-out;
    opacity: 0.8;
    text-shadow: none;
} */

.t-milestone-item:hover .t-milestone-year {
    color: #eb5c20;
    transition: all .5s ease-in-out;
    opacity: 0.8;
    text-shadow: none;
}

.t-milestone-year {
    transition: all .5s ease-in-out;
    font-size: 64px;
    font-weight: bold;
    color: white;
    text-shadow: -2px 0 #eb5c20, 0 2px #eb5c20, 2px 0 #eb5c20, 0 -2px #eb5c20;
    opacity: 0.42;
    letter-spacing: 10px;
}

.t-milestone-title {
    padding-right: 60px;
    font-size: 18px;
}

.t-awards-name {
    font-size: 18px;
}

.t-awards-content {
    margin: 40px 0;
}

.t-awards-box {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-column-gap: 20px;
    grid-row-gap: 20px;
}

.t-awards-item {
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}

.t-awards-item img {
    transition: all .3s ease-in-out;
    width: 100%;
    max-width: 150px;
    object-fit: contain;
    cursor: pointer;
}

.t-awards-item:hover img {
    transition: all .3s ease-in-out;
    max-width: 200px;
}

.t-ba-content {
    margin: 40px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.t-ba-label {
    font-size: 24px;
    margin-bottom: 40px;
}

.t-ba-title-box {
    margin-top: 30px;
    width: 100%;
    max-width: 850px;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
}

.t-ba-title {
    display: flex;
    flex-direction: column;
    text-align: center;
    font-size: 18px;
}

.t-ba-title b {
    font-weight: bold;
}

.ba-image {
    width: 100%;
    max-width: 550px;
}

.t-activity-content {
    margin: 40px 0;
}

.t-activity-item {
    padding: 30px 20px;
    margin-bottom: 40px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}

.t-activity-date {
    color: #6a6a6a;
    text-align: end;
    font-size: 14px;
}

.t-activity-name {
    color: #eb5c20;
    font-weight: 500;
    font-size: 18px;
}

.t-activity-inner {
    margin-bottom: 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.t-activity-desc {
    text-align: justify;
    font-size: 18px;
}

.t-activity-desc span {
    color: #eb5c20;
    font-weight: 600;
    font-size: 18px;
}

.t-year-box {
    margin-bottom: 40px;
    display: flex;
    justify-content: flex-end;
}

.t-report-box {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
}

.t-report-year-box {
    margin: 40px 0;
    display: flex;
    justify-content: flex-end;
}

.t-report-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.t-report-item img {
    width: 100%;
    max-width: 280px;
    border: 1px solid lightgrey;
}

.t-report-item .t-report-title {
    color: #6a6a6a;
    font-size: 18px;
    font-weight: 500;
    margin-top: 10px;
}

.t-report-item:hover img {
    border: 1px solid #eb5c20;
}

.t-report-item:hover .t-report-title {
    color: #eb5c20;
}

.t-intro-center {
    display: flex;
    justify-content: center;
}

.t-intro-1 {
    margin: 120px 0 140px;
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.t-whitebox-1 {
    background-color: rgba(255, 255, 255, .75);
    width: 100%;
    max-width: 580px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    padding: 40px 40px 40px;
    z-index: 2;
}

.t-intro-img {
    width: 100%;
}

.t-chair-image {
    width: 100%;
    max-width: 360px;
    height: 420px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.t-intro-content {
    width: 100%;
    display: flex;
    justify-content: space-evenly;
}

.t-intro-content-left,
.t-intro-content-right {
    width: 40%;
    display: flex;
    flex-direction: column;
}

.t-intro-content-right b {
    color: #eb5c20;
}

#ChairImageRowA .swiper-slide,
#ChairImageRowB .swiper-slide {
    height: 360px;
    background-size: cover;
}

#ChairImageRowAll {
    position: absolute;
    width: 520px;
    display: flex;
    justify-content: flex-end;
    margin-left: 550px;
}

#ChairImageRowAll .swiper-slide {
    height: 400px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

#ChairImageRowAll .chairImageSize {
    background-size: 65% !important;
}

#ChairImageRowAll .ceoImageSize {
    background-size: 65% !important;
}

#ChairImage {
    width: 100%;
    max-width: 500px;
    padding: 40px 0;
    max-height: 320px;
}

#ChairImage .swiper-slide {
    height: 300px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

#ChairImageRowAll .swiper-slide:first-child {
    background-position: top;
}

.t-intro-content-left p:first-child,
.t-intro-content-right p:first-child {
    margin-top: 40px;
    text-align: justify;
}

.t-intro-content-left p,
.t-intro-content-right p {
    text-align: justify;
}

.t-chair-popup-btn {
    margin-top: 40px;
}

.t-intro-popup-box {
    width: 100%;
    display: flex;
    justify-content: center;
}

.t-intro-popup {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
}

.t-intro-popup .t-intro-center {
    width: 40%;
}

.t-no-effect-text {
    font-size: 82px;
    color: white;
}

.t-view-report-btn {
    padding: 10px 20px;
    background-color: #eb5c20;
    color: white;
    border-radius: 5px;
}

.t-view-report-btn:hover {
    background-color: #eb5c20;
    color: white;
}

.u-board-box {
    padding: 40px 0;
    display: flex;
    flex-direction: column;
}

.u-board-item {
    display: flex;
    flex-direction: column;
    margin-bottom: 40px;
}

.u-board-label {
    font-size: 21px;
    margin-bottom: 20px;
    color: #eb5c20;
}

.u-board-row {
    padding: 0 15px;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.u-board-img {
    width: 100%;
    padding-right: 40px;
    max-width: 200px;
}

.accordion-container .ac {
    padding: 20px;
}

.accordion-container .text {
    font-weight: 400 !important;
    font-size: 32px !important;
    color: #eb5c20;
}

.ac-text {
    font-size: 18px;
}

.activity-swiper {
    padding-top: 20px;
    padding-bottom: 40px;
}

.activity-swiper img {
    width: 100%;
    max-width: 500px;
}

.activity-swiper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.activity-swiper video {
    width: 100%;
    max-width: 500px;
}

.ac .ac-trigger::after {
    font-size: 24px;
    color: #eb5c20;
}

.activity-swiper .swiper-wrapper {
    align-items: center;
}

#HomeBannerDiv {
    width: 100%;
    height: 100%;
    /* position: absolute; */
    z-index: 0;
}

.t-milestone-year-box {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    background-color: #eb5c20;
    margin-bottom: 20px;
}

.t-myear-item {
    padding: 20px;
    color: white;
    cursor: pointer;
}

.t-gm-item {
    padding: 20px;
    border: 1px solid lightgrey;
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.t-gm-title {
    font-weight: bold;
}

.t-gm-img-box {
    width: 100%;
    max-width: 500px;
    display: flex;
    flex-direction: row;
}

.t-gm-item img {
    width: 100%;
}

.t-gm-desc {
    width: 100%;
    display: none;
    justify-content: center;
    flex-direction: row;
}

.t-gm-item.active .t-gm-desc {
    display: flex;
}

.t-gm-item.active i {
    transform: rotate(180deg);
    transition: all .3s ease-in-out;
}

.t-gm-img-box .swiper {
    width: 100%;
    max-width: 500px;
    height: 320px;
}

.t-gm-img-box .swiper .swiper-slide {
    width: 100%;
    height: 320px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.t-gm-title-box {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.tgi1 {
    justify-content: center;
    align-items: center;
}

@media screen and (max-width: 1600px) {

    .t-about-hollow,
    .t-vision-hollow {
        font-size: 64px;
    }

    .t-about-solid {
        margin-top: -55px;
    }

    .t-about-three-circle {
        width: 120px;
        height: 120px;
    }

    .t-about-text {
        font-size: 24px;
    }

    .t-about-three-title {
        font-size: 24px;
    }

    .t-about-item {
        max-width: 50%;
    }
}


@media screen and (max-width: 1199px) {
    .t-gm-desc {
        flex-direction: column;
        align-items: center;
    }

    .t-gm-img-box {
        margin-top: 40px;
    }

    .t-gm-img-box .swiper .swiper-slide {
        max-width: 720px;
    }
}

@media screen and (max-width: 640px) {
    .t-box-date {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }

    .t-box-title {
        margin-left: 0;
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .t-box-title br {
        display: none;
    }

    .swiper-slide {
        display: flex;
        flex-direction: column;
    }
}