::-webkit-scrollbar {
    -webkit-appearance: none;
}
::-webkit-scrollbar:vertical {
    width: 8px;
}

::-webkit-scrollbar:horizontal {
    height: 4px;
}

::-webkit-scrollbar-thumb {
    background-color: #2050b7c0;
    border-radius: 10px;
    border: 2px solid transparent;
}

::-webkit-scrollbar-track {
    background-color: rgba(0,0,0,0.1);
}
.title-1 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

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

.title-3 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
.anchor {
    position: relative;
    height: 0;
    visibility: hidden;
    top: -100px;
}
.main ul li,
.main ol li {
    padding-bottom: 8px;
    font-size: 1.1em;
}
.font-serif {
    font-family: 'Noto Serif TC', serif;
}
.font-default {
    font-family: "微軟正黑體", serif;
}
.imgbox-5-5 {
    position: relative;
}
.imgbox-5-5 .imgbox__inner {
    width: 100%;
    padding-top: 100%;
    position: relative;
}
.image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: all 0.3s;
}

img {
    max-width: 100%;
}
.note {
    color: #83bac1;
}
/* hamburger */
.hamburger-box {
    position: relative;
    z-index: 99;    
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0.01, 0.165, 0.99);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;

    display: none;
}
.hamburger-box #hamburger {
    position: relative;
    display: block;
    height: 50px;
    width: 50px;
    line-height: 1px;
    padding: 12px;

    z-index: 99;
}
.hamburger-box #hamburger span {
    width: 100%;
    height: 1px;
    display: inline-block;
    position: relative;
    background: #FFF;
    transition: all 0.3s cubic-bezier(0.4, 0.01, 0.165, 0.99);
    transition-delay: 0s;
}
.hamburger-box #hamburger span:nth-child(1) {
    transform: translateY(0px) rotate(0deg);
}
.hamburger-box #hamburger span:nth-child(2) {
    transform: translateY(6px) rotate(0deg);
}
.hamburger-box .mobile-menu-outter {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 0px 40px;
    padding-top: 84px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0.01, 0.18, 1);
    overflow-y: auto;
}
ul.mobile-menu {
    list-style: none;
    height: calc(100% - 0px);
    padding: 0;
    margin-bottom: 0;
    /* overflow-y: auto;
    overflow-x: hidden; */
}
.hamburger-box .mobile-menu-outter::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: #1953b6;
    z-index: -1;
    transition: all 0.8s cubic-bezier(0.4, 0.01, 0.18, 1);
    opacity: 0;
    visibility: hidden;
}
.hamburger-box.active .mobile-menu-outter::before {
    height: 100%;
    opacity: 1;
    visibility: visible;
}
.mobile-menu .menu-item {
    border-bottom: 1px solid rgb(255 235 204 / 20%);
    margin-top: 5px;
    transform: scale(1.15) translateY(-30px);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.4, 0.01, 0.18, 1), opacity 0.6s cubic-bezier(0.4, 0.01, 0.18, 1);
}

.mobile-menu .menu-item:nth-child(1) {
    transition-delay: 0.2s;
}
.mobile-menu .menu-item:nth-child(2) {
    transition-delay: 0.32s;
}
.mobile-menu .menu-item:nth-child(3) {
    transition-delay: 0.35s;
}
.mobile-menu .menu-item:nth-child(4) {
    transition-delay: 0.3s;
}
.mobile-menu .menu-item:nth-child(5) {
    transition-delay: 0.2s;
}
.mobile-menu .menu-item:nth-child(6) {
    transition-delay: 0.1s;
}
.mobile-menu .menu-item:nth-child(7) {
    transition-delay: 0.07s;
}
.mobile-menu .menu-item:nth-child(8) {
    transition-delay: 0.2s;
}
.mobile-menu .menu-item:last-child {
    border-bottom: 0;
    padding-bottom: 32px;
}
.mobile-menu .menu-item a {
    display: block;
    position: relative;
    color: #FFF;
    font-weight: 400;
    text-decoration: none;
    font-size: 18px;
    line-height: 28px;
    width: 100%;
    padding: 20px 10px;
}
.hamburger-box.active .mobile-menu-outter {
    opacity: 1;
    visibility: visible;
}
.hamburger-box.active #hamburger span {
    transition: all 0.4s cubic-bezier(0.4, 0.01, 0.2, 1);

}
.hamburger-box.active #hamburger span:nth-child(1) {
    transform: translateY(4px) rotate(45deg);
}
.hamburger-box.active #hamburger span:nth-child(2) {
    transform: translateY(-2px) rotate(-45deg);
}
.hamburger-box.active .menu-item {
    transform: scale(1) translateY(0px);
    opacity: 1;
}
.hamburger-box.active .mobile-menu .menu-item:nth-child(1) {
    transition-delay: 0.27s;
}
.hamburger-box.active .mobile-menu .menu-item:nth-child(2) {
    transition-delay: 0.34s;
}
.hamburger-box.active .mobile-menu .menu-item:nth-child(3) {
    transition-delay: 0.41s;
}
.hamburger-box.active .mobile-menu .menu-item:nth-child(4) {
    transition-delay: 0.48s;
}
.hamburger-box.active .mobile-menu .menu-item:nth-child(5) {
    transition-delay: 0.55s;
}
.hamburger-box.active .mobile-menu .menu-item:nth-child(6) {
    transition-delay: 0.62s;
}
.hamburger-box.active .mobile-menu .menu-item:nth-child(7) {
    transition-delay: 0.69s;
}
.hamburger-box.active .mobile-menu .menu-item:nth-child(8) {
    transition-delay: 0.69s;
}
.menu-item.drop-item ul {
    display: none;
    list-style: none;
}

.menu-item.drop-item > a {
    position: relative;
}
.menu-item.drop-item > a::after {
    content: "\f0d7";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translateY(-50%) rotate(0);
    color: #fff;
    transition: all 0.5s;
}
.menu-item.drop-item>a.arrow-change::after {
    transform: translateY(-50%) rotate(180deg);
}
.hamburger-box .logo {
    position: absolute;
    left: 15px;
    top: 15px;
    width: 290px;
    display: none;
}
.hamburger-box .logo img {
    width: 100%;
    max-width: 100%;
    height: auto;
    image-rendering: -webkit-optimize-contrast;
    transform: translateZ(0);
    opacity: 0;
    transition: all 0.4s;
    transition-delay: 0.6s;
}
.hamburger-box.active .logo img {
    opacity: 1;
}
@media (max-width: 1280px) {
    
}
@media (max-width: 1280px) {
    .hamburger-box {
        display: inline-block;
    }
    .hamburger-box .logo {
        left: 24px;
        top: 10px;
        width: 340px;
    }
}
@media (max-width: 992px) {
    .hamburger-box .logo {
        top: 10px;
        width: 340px;
    }
}
@media (max-width: 430px) {
    .mobile-menu .menu-item a {
        padding: 10px 10px;
    }
    .hamburger-box .logo {
        position: absolute;
        left: 15px;
        top: 15px;
        width: 290px;
    }
}
/* footer */
.overlay-texture {
    position: absolute;
    top: 0;
    right: 0;
    width: 800px;
    height: 100%;
    background-image: url(../img/overlaytexture.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    /* opacity: 0.5; */
    mix-blend-mode: luminosity;
}
a.pinfooter {
    color: #fff !important;
    font-size: 0.8em;
    letter-spacing: 0;
    opacity: .6;
}
.footer-logo {
    width: 70px;
}
/* form */
.form-item {
    padding-bottom: 24px;
}
.req-star {
    color: red;
    margin-left: 4px;
}

.warning-box {
    position: relative;
}

span.alert-text {
    position: absolute;
    width: 100%;
    background-color: rgb(227 23 23 / 50%);
    bottom: -2px;
    left: 0;
    color: #fff;
    font-size: 16px;
    letter-spacing: 0.6px;
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    line-height: 100%;
    padding: 5px 6px;
}

span.alert-text.show {
    max-height: 32px;
    opacity: 1;
    visibility: visible;
}

span.alert-text i {
    display: inline-block;
    vertical-align: top;
    font-size: 14px;
    margin-right: 4px;
}

.bg-news::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/page-header/page-header9.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;

}
.bg-a{
    background-image: url('../img/page-header/d22.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.bg-a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #cf8b10;
    opacity: 0.1;
}
.bg-energy::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/page-header/page-header3.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.bg-aca::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/page-header/page-header5.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.bg-deep::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/page-header/news-header.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.bg-light::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/page-header/page-header7.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.hero {
    position: relative;
}
.hero .background-image-wrapper {
    display: flex;
    align-items: center;
}
.hero .background-image-wrapper .imgbox__inner {
    width: 100%;
    padding-top: calc(100% * 1 / 2);
    position: relative;
}
.hero .image {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.hero-textbox {
    padding: 48px 32px;
    position: relative;
    left: -120px;
    box-shadow: 0 3px 32px -1px rgba(0,0,0,0.3);
}
.hero-textbox h1 {
    color: #fff;
    font-size: 42px;
    line-height: 100%;
    font-weight: 900;
    letter-spacing: 0.8px;
}
.hero-textbox h4 {
    font-size: 32px;
    line-height: 42px;
    font-weight: 600;
    letter-spacing: 1.4px;
    margin-bottom: 24px;
}
.col-box {
    display: flex;
    align-items: center;
}
.pattern-bg1 {
    /* content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; */
    background-image: url('../img/patterns/poly1.svg');
    background-size: 660px;
    background-repeat: no-repeat;
    background-position: 103% 256%;
    /* opacity: 0.8; */
}
.section-title {
    font-size: 30px;
    line-height: 34px;
    margin-bottom: 24px;
}
.section-subtitle {
    font-size: 15px;
    color: rgb(94, 94, 94);
    letter-spacing: 1px;
}
.title-with-bg {
    background-color: #c5a05c;
    color: #fff;
    display: inline-block;
    padding: 0 8px;
}
.news article .textbox {
    padding: 16px 24px;
    min-height: 240px;
}
.news .card-title {
    font-size: 22px;
    line-height: 30px;
}
.news .card-text {
    font-size: 16px;
    color: #777;
}
.news .news-date {
    letter-spacing: 0.4px;
    font-size: 14px;
    color: #acacac;
}
.news .news-imgbox {
    position: relative;
}
.news .news-imgbox .imgbox__inner {
    width: 100%;
    padding-top: 60%;
}
.news-more {
    position: relative;
    line-height: 100%;
}
.news-more::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 0.04em;
    background-color: #4c79f1;
    transition: all 0.3s;
}
.news-more:hover::after {
    width: 100%;
}
.card-transform .card {
    padding: 10px;
}
.card-transform .imgbox__inner {
    width: 100%;
    padding-top: 60%;
    position: relative;
}
.card-transform .image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.news-item-box {
    display: block;
    margin-bottom: 48px;
    box-shadow: 0 0 16px -1px rgb(0 0 0 / 10%);
    transition: all 0.3s;
}
.news-item-box .imgbox__inner {
    width: 100%;
    padding-top: 56%;
    position: relative;
}

.news-item-box .text-box {
    padding: 16px 12px;
    padding-top: 10px;
    background-color: #FFF;
}
.news-item-box .text-box .date {
    color: #b8b8b8;
    font-size: 15px;
}
.news-item-box .text-box .news-title {
    min-height: 54px;
    font-size: 20px;
    margin-top: 6px;
    margin-bottom: 6px;
}
.news-item-box .text-box .intro {
    margin-bottom: 16px;
    font-size: 15.4px;
    line-height: 22px;
    color: #5a5a5a;
    min-height: 44px;
}
.news-item-box .more-box {
    text-align: right;
    position: relative;
}
.news-item-box .more-box span {
    display: inline-block;
    font-size: 15px;
    padding: 0 2px;
    padding-bottom: 2px;
    color: #104db1;
}
.news-item-box .more-box span::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 1px;
    background-color: #104db1;
    transition: all 0.6s;
}
.news-item-box:hover .more-box span::after {
    width: 22%;
    right: 0;
    background-color: #fff;
}
.news-item-box:hover span {
    color: #fff;
}
/* .news-item-box:hover .image::after {
    opacity: 0;
} */
.news-item-box:hover {
    box-shadow: none;
}
.news-item-box:hover .text-box {
    background-color: #2b5dad;
}
.news-item-box:hover .date {
    color: rgba(255, 255, 255, 0.5);
}
.news-item-box:hover .text-box .news-title {
    color: #fff;
}
.news-item-box:hover .text-box .intro {
    color: rgba(255, 255, 255, 0.8);
}
.news-article-wrapper {
    background-color: #fff;
    padding: 24px;
}
.news-article-wrapper .news-title {
    font-weight: 500;
    font-size: 38px;
    margin-bottom: 16px;
    line-height: 1.2;
}
.news-article-wrapper .date {
    font-size: 16px;
}
.news-article-wrapper img.article-cover {
    width: 100%;
    max-width: 100%;
    margin-bottom: 24px;
}
.news-article-wrapper img {
    margin: 8px 0;
}
.news-article-wrapper .news-content,
.news-article-wrapper .news-content p {
    font-size: 19px;
    line-height: 32px;
}
.news-article-wrapper .news-content {
    margin-bottom: 24px;
}
.title-deco {
    width: 60px;
    height: 3px;
    display: inline-block;
    background-color: #1e3d80;
    margin-bottom: 16px;
}
.bg-primary .title-deco {
    background-color: #fff;
}
.section-3 .feature-box img{
    width: 100px;
    margin-bottom: 16px;
    transition: all 0.5s;
}
.section-3 .feature-box:hover img{
    transform: scale(1.2);
}
.deco-box {
    position: absolute;
    top: 60%;
    right: 0;
    width: 100%;
    height: 600px;
    background-repeat: no-repeat;
    background-position: top;
    background-size: 950px;
    opacity: 0.2;
}
.section-4 .imgbox__inner {
    width: 100%;
    padding-top: 60%;
    position: relative;
}
.section-4 .image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.section-4 .link-box {
    display: flex;
    align-items: center;

    padding: 16px 24px;
    border-radius: 6px;
}
.section-4 .link-box img {
    width: 60px;
    height: 60px;
}
.section-4 .link-box h3 {
    font-size: 26px;
    font-weight: 700;
    padding-left: 16px;
}

#header .header-body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 750px;
    height: 100%;
    background-image: url(../img/o1.png);
    background-size: contain;
    background-position: right;
    background-repeat: no-repeat;
    pointer-events: none;
    opacity: 0.5;
    /* mix-blend-mode: overlay; */
}
.light-navbar .header-logo img {
    width: 340px !important;
}
.header-ship {
    width: 45px;
    /* position: absolute;
    top: 50%;
    left: 770px;
    transform: translate(-50%, -50%); */
    transform-origin: center;
    animation: ship infinite 1.6s both;
}
.header-ship img {
    width: 100%;
}
@keyframes ship {
    0%{
        transform: translateY(0) rotate(0);
    }
    50%{
        transform: translateY(3px) rotate(2deg);
    }
    100%{
        transform: translateY(0) rotate(0);
    }
}
.hero .imgbox__inner {
    width: 100%;
    padding-top: 30%;
    position: relative;
}
.news-box {
    display: flex;
    align-items: center;
    padding: 12px;
    margin-bottom: 20px;
}
.news-box .news-box-imgbox {
    width: 25%;
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.3s;
}
.news-box .news-box-content {
    width: 60%;
    padding: 8px 14px;
    transition: all 0.3s;
}
.news-box .btn-box {
    width: 15%;
}
.news-box .imgbox__inner {
    width: 100%;
    padding-top: calc(100% * 6 / 9);
    position: relative;
}
.news-box .news-title {
    margin-bottom: 10px;
}
.news-box .news-intro {
    margin-bottom: 0;
    color: #777;
    font-size: 16px;
}
.news-box:hover {
    text-decoration: none;
    background-color: #0d94b3;
    border-radius: 4px;
}
.news-box:hover .news-title{
    color: #fff;
}
.news-box:hover .news-intro {
    color: #fff;
    opacity: 0.7;
}
.news-box:hover .btn {
    color: rgb(175, 239, 255);
    text-shadow: 0 0px 24px rgba(170, 255, 255, 0.9);
}
.news-box:hover .btn .custom-arrow-icon {
   transform: translate3d(10px, 0, 0);
   color: rgb(175, 239, 255);
}
.news-list-section .news-box {
    border-bottom: 1px solid #dbe5e7;
    margin-bottom: 0;
    padding: 24px 12px;
}
.news-list-section .news-box:last-child {
    border-bottom: 0;
}
.news-list-section .news-box:hover {
    background-color: #eef5f7;
}
.news-list-section .news-box:hover .news-title,
.news-list-section .news-box:hover .news-intro {
    color: #212529;
}
.news-list-section .news-box:hover .btn {
    color: #0d94b3;
    text-shadow: 0 0px 24px rgba(170, 255, 255, 0.9);
}
.news-list-section .news-box:hover .btn .custom-arrow-icon {
    transform: translate3d(10px, 0, 0);
    color: #0d94b3;
}
.tech-bg-1::before {
    content: "";
    background-image: url('../img/patterns/deco4.svg');
    background-size: 1800px;
    background-repeat: no-repeat;
    background-position: left bottom;
    position: absolute;
    top: 0;
    left: 0;
    width: 36%;
    height: 100%;
    opacity: 0.8;
}

.tech-bg-2::before {
    content: "";
    background-image: url('../img/patterns/tiling.png');
    background-size: 16px;
    background-position: left bottom;
    position: absolute;
    top: 0;
    /* left: 0; */
    right: 0;
    width: 40%;
    height: 100%;
    opacity: 0.3;
}
.deco-5::before {
    content: "";
    background-image: url(../img/home/c1.svg);
    background-size: 890px;
    background-repeat: no-repeat;
    background-position: 0 180px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.4;
    pointer-events: none;
}
.deco-7::before {
    content: "";
    background-image: url('../img/patterns/deco7.svg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.7;
    mix-blend-mode: screen;
}
.deco-4 {
    content: "";
    background-image: url('../img/patterns/deco4.svg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.6;
}
.deco-p1::before {
    content: "";
    background-image: url('../img/patterns/p1.svg');
    background-size: 590px;
    background-repeat: no-repeat;
    background-position: 0 -130px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    mix-blend-mode: screen;
}
.deco-p2::before {
    content: "";
    background-image: url('../img/patterns/p2.svg');
    background-size: 630px;
    background-repeat: no-repeat;
    background-position: top right;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    mix-blend-mode: screen;
}
.grad {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 32px;

    background: rgb(255, 255, 255);
    background: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(0, 0, 0, 0) 95%);
}

.hero-loop {
    position: relative;
}
.hero-loop .owl-dots {
    margin-top: 10px;
}
.hero-loop .hero-text {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #0c6580c7;
    padding: 12px 16px;
}

.hero-loop .hero-text h4 {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.6px;
}
.hero-loop .hero-imgbox {
    width: 100%;
    display: block;
}
.text-on-para {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 24px;
    padding: 24px 32px;
    width: 40%;
}
.parallax {
    min-height: 350px;
}
.section-6 .btn {
    color: #FFF;
    background-color: #0093dd;
    border-color: #0093dd;
    box-shadow: 0 3px 24px -2px rgb(0 0 0  / 20%);
}
.section-6 .btn:hover {
    background-color: #2050b7;
    border-color: #2050b7;
    box-shadow: 0 3px 16px 0px rgb(56 77 137 / 10%);
}
.bg-d4::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: 280px;
    background-position: 100% -100px;
    background-image: url(../img/patterns/tr1.svg);
    background-repeat: no-repeat;
    opacity: 0.3;
}
.bg-t3::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: 280px;
    background-position: 0 -100px;
    background-image: url(../img/patterns/tr2.svg);
    background-repeat: no-repeat;
    opacity: 0.3;
}
.bg-deco-cargo::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-image: url(../img/home/12.jpg);
    background-repeat: no-repeat;
    opacity: 0.1;
}
.bg-deco-10 {
    position: relative;
}
.bg-deco-10::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: 900px;
    background-position: left bottom;
    background-image: url(../img/home/d10.png);
    background-repeat: no-repeat;
    opacity: 0.2;
}
.deco-t1::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: 1220px;
    background-position: right;
    background-image: url('../img/patterns/t1.png');
    background-repeat: no-repeat;
    mix-blend-mode: screen;
}
.deco-t2::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: 1220px;
    background-position: left;
    background-image: url('../img/patterns/t2.png');
    background-repeat: no-repeat;
    mix-blend-mode: screen;
}
.bg-t4::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: 630px;
    background-position: right;
    background-image: url('../img/patterns/t4.png');
    background-repeat: no-repeat;
    mix-blend-mode: screen;
}
.bg-d7::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: 800px;
    background-position: left;
    background-image: url('../img/home/d7.jpg');
    background-repeat: no-repeat;
    /* mix-blend-mode: screen; */
}
.deco-wave {
    width: 68%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -100px;

}
.section-7 {
    padding: 24px 0;
}
.section-8 {
    padding: 24px 0;
}
.section-9 {
    padding: 32px 0;
}

.section-7 .imgbox-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}
.section-7 .imgbox-wrapper .l-box {
    width: 80%;
    
}
.section-7 .imgbox-wrapper .r-box {
    width: 80%;
}
.section-7 .imgbox {
    padding: 10px;
    box-shadow: 0 3px 20px -1px rgba(0,0,0,0.2);
    background-color: #fff;
}
.section-7 .imgbox__inner {
    width: 100%;
    padding-top: 52%;
    position: relative;
}
.section-7 .imgbox3 .imgbox__inner {
    width: 100%;
    padding-top: calc(100% * 6 / 5);
}
.section-7 .imgbox1 {
    position: relative;
    top: -16px;
    right: 50px;
}
.section-7 .imgbox2 {
    top: 180px;
    left: 80px;
}
.section-7 .imgbox3 {
    top: 360px;
    left: 0;
}
.section-7 .imgbox4 {
    position: relative;
    top: -40px;
    left: 50px;
}
.section-7 .feature-box {
    margin-bottom: 48px;
}
.section-7 .feature-box .feature-box-icon {
    transition: all 0.5s;
}
.section-7 .feature-box:hover .feature-box-icon {
    transform: scale(1.1);
}
.section-7 .btn {
    padding: 0;
}
.title-wrapper {
    position: relative;

}
.title-wrapper h2,
.title-wrapper h4 {
    margin-bottom: 0;
    display: inline-block;
    position: relative;
    z-index: 0;
}
.title-icon {
    width: 70px;
    opacity: 0.2;
    position: absolute;
    left: -32px;
    top: -16px;
    z-index: -1;
}
.title-slash {
    position: relative;
}
.title-slash::after {
    content: "";
    height: 2px;
    width: 150px;
    background-color: #2050b7;
    position: absolute;
    bottom: 6px;
    left: auto;
    margin-left: 16px;
}
.title-slash-s{
    position: relative;
}
.title-slash-s::after {
    content: "";
    height: 1px;
    width: 150px;
    background-color: #000;
    position: absolute;
    bottom: 6px;
    left: auto;
    margin-left: 16px;
}
.title-slash-left-w {
    position: relative;
    display: inline-block;
}
.title-slash-left-w::after {
    content: "";
    height: 1px;
    width: 150px;
    background-color: #fff;
    position: absolute;
    top: 47%;
    right: 100%;
    margin-right: 16px;
}

.overlay-db::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #002664;
    opacity: 0.4;
}
.section-fixed-bg {
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
}
.section-8 .link-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 16px 0;
}
.section-8 .link-box{
    width: 49%;
}
.section-8 .link-item {
    font-size: 20px;
    font-weight: 700;
}
.section-8 .link-item span {
   background-color: #ffffff;
   display: inline-block;
   text-align: center;
   width: 60px;
   height: 60px;
   line-height: 57px;
   border-radius: 50%;
   border: 2px solid ;
   font-size: 24px;
   box-shadow: 0 3px 16px -2px rgb(0 0 0 / 10%);
}
.section-8 .link-item:hover span {
    background-color: #2050b7;
   border: 2px solid #2050b7;

    color: #fff;
}
.terminal-link-box {
    display: flex;
}
.terminal-link-box .terminal-link {
    display: block;
    width: 25%;
    padding: 8px;
}
.terminal-link-box .terminal-link .icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    color: #fff;
    font-size: 28px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}
.terminal-link-box .terminal-link:hover .icon {
    opacity: 1;
    visibility: visible;
}
.terminal-link-box .terminal-link .imgbox__inner::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(11 49 110 / 40%);
    opacity: 0;
    transition: all 0.3s;
}
.terminal-link-box .terminal-link:hover .imgbox__inner::after {
    opacity: 1;
}
.terminal-link-box h4 {
    margin-bottom: 0;
    font-size: 1.2rem;
}
.terminal-link-box p {
    margin-bottom: 0;
    font-size: 15px;
    line-height: 1;
}
.deco-plane::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/home/plane.png');
    background-size: contain;
    background-position: bottom;
    background-repeat: no-repeat;
    opacity: 0.2;
}
.section-9 .content-box {
    width: 450px;
    height: 450px;
    border-radius: 50%;
    text-align: center;
    box-shadow: 0 0 38px -10px rgb(63 68 68 / 20%);
    border: 1px solid #87e5f5;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s;
}
.section-9 .content-box:hover {
    background-color: #fff !important;
    box-shadow: 0 0 46px -3px rgba(135, 240, 222, 0.4);
}
.section-9 .content-box:hover p,
.section-9 .content-box:hover h2,
.section-9 .content-box:hover .btn {
    color: #0d94b3 !important;
    border-color: #0d94b3 !important;
}
.section-9 .content-box:hover .btn:hover {
    color: #fff !important;
}
.deco-9-l::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/patterns/deco9_left.png');
    background-size: contain;
    background-position: left;
    background-repeat: no-repeat;
}
.deco-9-r::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/patterns/deco9_right.png');
    background-size: contain;
    background-position: right;
    background-repeat: no-repeat;
}

.contact-type {
    background-position: top;
    background-size: cover;
}
.contact-type .btn {
    width: 280px;
    padding-top: 16px;
    padding-bottom: 16px;
    padding-right: 32px;
    font-size: 20px;
}
.arrow-btn {
    position: relative;
}
.arrow-btn::after {
    content: "";
    width: 24px;
    height: 24px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 8%;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url('../img/icons/arrow_right_b.svg');
    transition: all 0.3s;
}
.arrow-btn:hover::after {
    background-image: url('../img/icons/arrow_right_w.svg');
    right: 4%;

}
@media (max-width: 1281px) {
    .section-7 .imgbox-wrapper .l-box {
        width: 100%;

    }
    .section-7 .imgbox-wrapper .r-box {
        width: 100%;
    }
    .section-7 .imgbox4 {
        left: 0px;
    }
    #header .header-body::before {
        width: 780px;
    }
}
@media (max-width: 1199px) {
    .title-wrapper h2 {
        font-size: 30px;
    }
}
@media (max-width: 1025px) {
    #header .header-body::before {
        width: 680px;
    }
    .site-name {
        display: none;
    }
    .title-wrapper h2 {
        font-size: 28px;
    }
    .feature-box .feature-box-info {
        padding-left: 8px;
    }
    .feature-box .feature-box-info h3 {
        font-size: 26px;
    }
    .feature-box .feature-box-info p {
        font-size: 16px;
        line-height: 26px;
    }
    .section-8 .link-item {
        font-size: 18px;
    }
    .section-7 .imgbox-wrapper .r-box {
        width: 90%;
    }
    .section-7 .imgbox-wrapper .l-box {
        width: 90%;
    }
    .section-7 .imgbox4 {
        left: 30px;
    }
    .section-7 .imgbox1 {
        right: 0;
    }
}
@media (max-width: 769px) {
    .terminal-link-box {
        flex-wrap: wrap;
    }
    .terminal-link-box .terminal-link {
        width: 50%;
    }
}
@media (max-width: 430px) {
    #header .header-body::before {
        width: 600px;
        display: none;
    }
    .news-item-box {
        box-shadow: 0 0 8px -1px rgb(0 0 0 / 10%);
    }
    .news-article-wrapper .news-title {
        font-size: 29px;
    }
    footer h5 {
        font-size: 17px;
        font-weight: 600;
        margin-bottom: 24px !important;
    }
    footer a {
        font-size: 16px;
    }
    .light-navbar .header-logo img {
        width: 290px !important;
    }
    .hero-loop .hero-text {
        padding: 6px;
    }
    .news-box {
        flex-direction: column;
    }
    .news-box .news-box-imgbox {
        width: 100%;
    }
    .news-box .news-box-content {
        width: 100%;
        padding: 8px 4px;
    }
    .news-wrapper {
        padding: 0;
        padding-bottom: 24px;
        clip-path: none;
        box-shadow: none;
    }
    .news-box .btn-box {
        width: 100%;
        text-align: right;
    }
    .news-box .btn-box .btn {
        color: #20a8c7;
        font-size: 16px;
    }
    .parallax {
        min-height: 160px;
    } 
    section.section {
        padding: 32px 0;
    } 
    .bg-d4::before {
        background-size: 550px;
        background-position: -20px;
    }
    .bg-t3::before {
        background-image: url('../img/patterns/t3_m.png');
        background-size: 650px;
        background-position: 200px;
    }
    .bg-t4::before {
        background-size: 540px;
        background-position: 230px -50px;
    }
    .section-7 .imgbox-wrapper .l-box {
        margin-top: 0;
    }
    .section-7 .imgbox {
        padding: 4px;
    }
    .section-8 .link-box {
        width: 100%;
    }
    .section-9 .content-box {
        height: auto;
        width: auto;
        border-radius: 0;
        border: 0;
        box-shadow: none;
        background-color: transparent !important;
    }
    .section-9 .content-box p,
    .section-9 .content-box h2,
    .section-9 .content-box .btn {
        color: #0d94b3 !important;
        border-color: #0d94b3 !important;
    }
    .section-9 .content-box:hover {
        background-color: transparent !important;
        box-shadow: none;
    }
    .deco-9-l::before {
        background-position: -130px;
    }
    .deco-9-r::before {
        background-position: 130px;
    }
    .title-slash {
        font-size: 24px;
    }
    .title-slash::after {
        width: 100px;
        margin-left: 6px;
    }
    .title-wrapper h2 {
        font-size: 26px;
    }
    .subtitle.title-slash {
        font-size: 20px;
    }
    
    .overlay-texture {
        width: 100%;
        background-size: cover;
        background-position: left;
        height: 76%;
    }
}
@media (max-width: 400px) {
    #header .header-body::before {
        width: 540px;
    }
}
@media (max-width: 361px) {
    .light-navbar .header-logo img {
        width: 240px !important;
    }
    .hamburger-box .logo {
        top: 20px;
        width: 240px;
    }
    #header .header-body::before {
        width: 520px;
    }
}
@media (max-width: 321px) {
    #header .header-body::before {
        width: 540px;
    }
}
/* timeline */
.timeline {
    position: relative;
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 15px 0;
    background-image: url('../img/about/bgtr.svg');
    background-size: 560px;
    background-position: right;
    background-repeat: repeat;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 2px;
    background: #2050b7;
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1px;
}

.timeline-box {
    padding: 15px 30px;
    position: relative;
    background: inherit;
    width: 50%;
}

.timeline-box.left {
    left: 0;
}

.timeline-box.right {
    left: 50%;
}

.timeline-box::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    top: calc(50% - 8px);
    right: -8px;
    background: #ffffff;
    border: 2px solid #2050b7;
    border-radius: 16px;
    z-index: 1;
}

.timeline-box.right::after {
    left: -8px;
}

.timeline-box::before {
    content: '';
    position: absolute;
    width: 22px;
    height: 2px;
    top: calc(50% - 1px);
    right: 8px;
    background: #2050b7;
    z-index: 1;
}

.timeline-box.right::before {
    left: 8px;
}

.timeline-box .date {
    position: absolute;
    display: inline-block;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
    font-size: 17px;
    font-weight: bold;
    color: #2050b7;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 1;
}

.timeline-box.left .date {
    right: -80px;
}

.timeline-box.right .date {
    left: -80px;
}

.timeline-box .icon {
    position: absolute;
    display: inline-block;
    width: 14px;
    height: 80px;
    top: 50%;
    transform: translateY(-50%);
    background: #e7c38c;
    border-radius: 40px;
    z-index: 1;
}

.timeline-box.left .icon {
    right: 26px;
}

.timeline-box.right .icon {
    left: 26px;
}

.timeline-box .content {
    padding: 22px 40px;
    padding-top: 30px;
    background: #fff;
    position: relative;
    box-shadow: 0 0px 78px -20px rgb(16 31 106 / 20%);
}

.timeline-box .content ul li {
    line-height: 26px;
    margin-bottom: 6px;
}
.timeline-box.left .content {
    margin-left: 32px;
}
.timeline-box.right .content {
    padding: 30px 40px;
    margin-right: 32px;
}

.timeline-box .content h2 {
    margin-bottom: 16px;
    font-size: 35px;
    font-weight: 900;
    color: #e5bd80;
    font-family: 微軟正黑體;
    line-height: 24px;
    position: absolute;
    top: -22px;
    letter-spacing: -0.5px;
    text-shadow: 0 0 16px rgb(255 255 255 / 40%);
}

.timeline-box .content p {
    margin: 0;
    font-size: 16px;
    line-height: 22px;
    color: #000000;
}
.timeline-first-box {
    text-align: center;
}
.timeline-first-box .first-box {
    display: inline-block;
    background-color: #2050b7;
    padding: 16px 32px;
}
.timeline-first-box .first-box h4 {
    font-weight: 500;
    line-height: 24px;
    font-size: 20px;
    margin-bottom: 8px;
}
.timeline-first-box .first-box h2 {
    font-family: 微軟正黑體;
    font-size: 22px;
    margin-bottom: 0;
    font-weight: 600;
    line-height: 24px;
}
.timeline-first-box .first-box h2 span {
    display: block;
    font-weight: 400;
    font-size: 0.8em;
    opacity: 0.8;
}
@media (max-width: 992px) {
    .timeline-box.left .content {
        margin-left: 0;
        padding: 30px 24px 24px 14px;
    }
    .timeline-box.right .content {
        margin-right: 0;
        padding: 30px 24px 24px 14px;
    }
    .timeline-box.left {
        padding-left: 0;
    }
    .timeline-box.right {
        padding-right: 0;
    }
}
@media (max-width: 769px) {
    .timeline::after {
        left: 16px;
    }

    .timeline-box {
        width: 100%;
        padding-left: 20px;
        padding-right: 10px;
    }
    .timeline-box .content h2 {
        font-size: 30px;
    }
    .timeline-box.right {
        left: 0%;
    }
    .timeline-box.left {
        padding-left: 20px;
    }
    .timeline-box.left::after,
    .timeline-box.right::after {
        left: 8px;
    }

    .timeline-box.left::before,
    .timeline-box.right::before {
        left: 22px;
        width: 20px;
    }

    .timeline-box.left .date,
    .timeline-box.right .date {
        right: auto;
        left: 15px;
    }

    .timeline-box.left .icon,
    .timeline-box.right .icon {
        right: auto;
        left: 48px;
    }

    .timeline-box.left .content,
    .timeline-box.right .content {
        padding: 30px 24px 20px 10px;
        margin-right: 0;
        margin-left: 22px;
    }
    .timeline-box .content {
        margin-bottom: 28px;
    }
    .timeline-first-box {
        text-align: left;
        display: inline-block;
    }
    .timeline-first-box .first-box {
        display: flex;
        align-items: center;
    }
    .timeline-first-box .first-box h4 {
        margin-bottom: 0;
        display: inline-block;
    }
    .timeline-first-box .first-box h2 {
        padding-left: 32px;
        display: inline-block;
    }
}
/* page */

.nav-card .span-with-icon {
    display: inline-block;
    line-height: 20px;
}
.nav-card .span-with-icon i {
    font-size: 0.8em;
}
.page-title {
    position: relative;
    padding-top: 24px;
}
.article-time i {
    color: #0d94b3;
}
.widget .title-icon {
    width: 48px;
    left: -24px;
    top: -7px;
}
.widget .title-wrapper {
    border-bottom: 1px solid #a6c8d1;
    margin-bottom: 24px;
    padding: 16px;
}
.widget .title-wrapper .btn{
    padding: 0 12px;
    font-size: 15px;
    line-height: 26px;
    float: right;
    border-width: 1px;
} 
.meta-data {
    color: #aaa;
    font-size: 12px;
    line-height: 16px;
    display: block;
    font-weight: 400;
}
.widget.recent_posts ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}
.widget.recent_posts ul li {
    padding: 0;
    margin-bottom: 8px;
    border: 0;
    font: inherit;
    font-size: 100%;
}
.widget.recent_posts ul li .news-item {
    display: flex;
    text-decoration: none;
    align-items: center;
    padding: 6px;
}

.media-box {
    position: relative;
    display: inline-block;
    width: 30%;
}
.media-box .imgbox__inner {
    width: 100%;
    padding-top: calc(100% * 6 / 9);
    position: relative;
}
.widget.recent_posts ul li .right-box {
    width: 70%;
    padding-left: 10px;
}

.widget.recent_posts ul li h5  {
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
}
.widget.recent_posts ul li h5 a {
    color: #484848;
}

.widget.recent_posts ul li .meta-data.grid-item-meta {
    display: block;
    margin-bottom: 4px;
}
.grid-item-meta {
    margin-bottom: 17px;
    display: block;
}
.widget.recent_posts ul li .news-item:hover {
    background-color: #eef5f7;
}
article .content-box img{
    margin: 4px 0;
}
article .content-box,
article .content-box p {
    font-size: 17px;
    line-height: 30px;
}
@media (max-width: 430px) {
    .page-header .page-title {
        font-size: 30px !important;
    }
    .section-title {
        font-size: 24px;
        margin-bottom: 16px !important;
    }
    .nav-card .card-title {
        font-size: 20px !important;
        margin-bottom: 16px !important;
    }
    .nav-card .card-text {
        font-size: 16px !important;
        line-height: 26px;
        min-height: 0;
    }
    .nav-card .card-body {
        padding: 24px;
    }
    .tabs .nav.nav-list {
        flex-direction: row !important;
    }
    .scroll-outter {
        position: relative;
    }
    .scroll-outter::after {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        width: 32px;
        height: 100%;
        background: linear-gradient(to right,rgba(255, 255, 255, 0), #fff);
        pointer-events: none;
    }
}
.table-responsive {
    width: 100%;
}
.table-responsive {
    min-height: .01%;
    overflow-x: auto;
}
.team>table {
    min-width: 100%;
    padding: 15px;
}
table {
    border-spacing: 0;
    border-collapse: collapse;
}

.team tr {
    height: 80px;
}
.team .table.table-sm tr {
    height: 40px;
}
.team thead tr {
    height: 58px;
}
.team td,
.team th {
    vertical-align: middle !important;
    font-size: 17px;
}
.table thead {
    background-color: #1753b4;
    color: #fff;
}
.team tbody tr:nth-child(even) {
    background-color: #fbfbfb;
}
.team tbody td {
    padding: 12px 16px;
    font-size: 18px;
}
.team tbody td i {
    font-size: 20px;
}
.team thead th {
    border-bottom: 0;
}
.team td>span {
    display: block;
    padding-bottom: 12px;
    line-height: 26px;
}
.table-hover tbody tr:hover {
    color: #212529;
    background-color: #e9f3fd;
}
.table-responsive.team.long-name .teamimg {
    display: block;
}
.team .table.table-sm tbody td:nth-child(even) {
    background-color: #fbfbfb;
}
.table-hint {
    display: none;
    margin-top: 4px;
    font-size: 16px;
}
table ul li,
table ol li {
    line-height: 1.5;
    font-size: 18px;
    padding-bottom: 8px;
}
.certification-wrapper ul li,
.certification-wrapper ol li {
    line-height: 1.5;
    font-size: 18px;
    padding-bottom: 8px;
}
.safety-table {
    background-color: #fff;
}
.safety-table.table td,
.safety-table.table th {
    padding-left: 24px;
}
@media (max-width: 430px) {
    .team>table {
        width: 720px;
    }
    .team>table.table-lg {
        width: 1150px;
    }
    .table-hint {
        display: block;
    }
}
.section-box {
    padding-bottom: 32px;
}
.section-box .title-box {
    font-weight: 600;
    color: #1c7f96;
    border-bottom: 1px solid;
    margin-bottom: 0;
    padding: 0 10px;
    padding-bottom: 24px;
    /* background-image: url(../img/patterns/t4.png); */
    background-size: 800px;
    background-position: right bottom;
    background-repeat: no-repeat;
    display: flex;
    justify-content: space-between;
}
.highlight-title {
    background-color: #0d94b3;
    color: #fff;
    margin-top: 16px;
    margin-bottom: 0;
    padding: 12px;
}
.intro-box p {
    line-height: 34px;
    font-size: 19px;
}  
.intro-box .time-note {
    display: block;
    margin-bottom: 32px;
}
.intro-box img {
    display: inline-block;
    width: 100%;
    max-width: 100%;
    margin: 2px 0;
}
.img-smtext {
    font-size: 16px;
    color: #969696;
    margin-top: 4px;
    line-height: 24px;
}
.intro-box .img-smtext {
    line-height: 24px;
}
.chart-text {
    font-size: 19px;
    line-height: 22px;
}
.sidebar h4 {
    padding-left: 12px;
    position: relative;
    border-left: 10px solid #1c7f96;
    line-height: 22px;
}

.tab-pane .sticky-bar{
    position: sticky;
    position: -webkit-sticky;
    top: 110px;
}
.skew-title {
    position: relative;
    display: inline-block;
}
.skew-title::after {
    content: "";
    position: absolute;
    right: -40px;
    width: 32px;
    height: 100%;
    background-color: #1c7f96;
    -webkit-transform: perspective(100px) rotateX(45deg);
    -webkit-transform-origin: left center;
    -moz-transform: perspective(100px) rotateX(45deg);
    -moz-transform-origin: left center;
}



.sort-destination .avatar-imgbox,
.award-list .avatar-imgbox {
    text-align: center;
    padding-top: 12px;
    display: flex;
    justify-content: center;
}

.sort-destination .avatar-imgbox .imgbox__inner,
.award-list .avatar-imgbox .imgbox__inner {
    display: inline-block;
    width: 180px;
    height: 180px;
    position: relative;
    border-radius: 50%;
    overflow: hidden;
}
.sort-destination .avatar-imgbox .imgbox-outter,
.horizontal-card.card-wrapper .imgbox-outter,
.award-list .imgbox-outter {
    position: relative;
    padding: 26px;
}

.sort-destination .imgbox-outter::after,
.award-list .imgbox-outter::after,
.horizontal-card.card-wrapper .imgbox-outter::after {
    content: "";
    background-image: url(../img/head/award-head-outter.svg);
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: 6px;
    left: 50%;
    transform: translateX(-50%);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    /* opacity: 0.5; */
    z-index: 1;
}
.sort-destination .card-wrapper,
.award-list .card-wrapper {
   background-color: #fff;
    padding: 16px;
    box-shadow: 0 3px 32px -5px rgb(0 0 0 / 10%);
    position: relative;
    margin-left: 8px;
    margin-right: 8px;
}
.sort-destination .card-wrapper__inner,
.horizontal-card.card-wrapper .card-wrapper__inner,
.award-list .card-wrapper__inner {
    background-color: #f3f3f3;
    z-index: 1;
    position: relative;
}
.sort-destination .text-box,
.award-list .text-box {
    padding-bottom: 16px;
}
.sort-destination .text-box .note,
.award-list .text-box .note {
    line-height: 22px;
    padding: 8px;
    margin-left: 6px;
    margin-right: 6px;
    font-size: 16px;
    font-weight: 600;
    background-color: #fff;
}
.sort-destination .award-year-label,
.award-list .award-year-label,
.horizontal-card.card-wrapper .award-year-label {
    background-color: #e1ba80;
    color: #fff;
    line-height: 24px;
    padding: 0 10px;
    display: inline-block;
    border-radius: 32px;
}
.sort-destination .award-year,
.award-list .award-year {
    color: #222;
    font-weight: 600;
    display: block;
    line-height: 20px;
}
.sort-destination hr.dashed:after,
.award-list hr.dashed:after {
    border-top: 1px dashed rgb(0 0 0 / 25%);
}

.award-tab-box .nav.nav-tabs {
    justify-content: flex-start;
    border-bottom: 0;
}
.award-tab-box .nav-item {
    width: 33.33333333%;
    text-align: center;
}
.award-tab-box .nav-item .nav-link i {
    padding-right: 6px;
}
.award-tab-box .nav-tabs li .nav-link {
    font-size: 16px;
    border-radius: 0;
    border-left: 0;
    border-right: 0;
    border-top: 0;
    margin: 2px;
}
.award-tab-box .nav-tabs li.active .nav-link,
.award-tab-box .nav-tabs li.active .nav-link:hover,
.award-tab-box .nav-tabs li.active .nav-link:focus {
    border-top: 0;
}
html body .award-tab-box.tabs .nav-tabs li.active .nav-link {
    background-color: #0d94b3;
    color: #fff;
}
.award-tab-box .tab-content {
    box-shadow: none;
    border: none;
}
.isotope-item .table tr td span.under-text {
    display: block;
    line-height: 26px;
}
.horizontal-card.card-wrapper {
    background-color: #fff;
    padding: 16px;
    box-shadow: 0 3px 32px -5px rgb(0 0 0 / 10%);
    position: relative;
}

.horizontal-card.card-wrapper .card-wrapper__inner {
    display: flex;
    align-items: center;
}
.horizontal-card.card-wrapper .avatar-imgbox {
    padding: 10px;
}
.horizontal-card.card-wrapper .imgbox__inner {
    display: inline-block;
    width: 180px;
    height: 180px;
    /* width: 100%;
    padding-top: 100%; */
    position: relative;
    border-radius: 50%;
    overflow: hidden;
}
.horizontal-card.card-wrapper .text-box {
    padding-left: 24px;
}
.horizontal-card.card-wrapper .award-year {
    display: inline-block;
}
.award-link-list {
    padding: 24px 0;
}
.award-big-title {
    padding-left: 78px;
    position: relative;
}
.award-big-title::before {
    content: "";
    width: 64px;
    height: 64px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    background-image: url(../img/icons/award3.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}
.global-award-big-title.award-big-title::before {
    background-image: url(../img/icons/global_award.svg);
}
.award-link-list .link-item {
    margin: 8px;
    display: inline-block;
}
.award-link-list.link-list .link-item {
    display: block;
}
.award-link-list .link-item a {
    display: inline-block;
    padding: 4px 16px;
    font-size: 19px;
    font-weight: 600;
    position: relative;
    z-index: 0;
    transition: all 0.3s;
}
.award-link-list .link-item a::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 10px;
    height: 76%;
    background-color: #0a9fc0;
    z-index: -1;
    transition: all 0.2s;
}
.award-link-list .link-item a:hover {
    color: #fff;
}
.award-link-list .link-item a:hover::before {
    width: 100%;
}
.award-link-list .link-item a span {
    display: inline-block;
    padding-left: 8px;
    vertical-align: top;
}
@media (max-width: 430px) {
    .intro-box h1 {
        font-size: 28px !important;
        line-height: 32px;
    }
    .intro-box p {
        line-height: 30px;
        font-size: 18px;
    }
    .intro-box .subtitle {
        line-height: 22px;
        font-size: 16px;
        padding-top: 4px;
    }
    .intro-box .img-smtext {
        margin-top: 8px;
        font-size: 16px;
    }
    .section-box {
        padding-bottom: 48px;
    }
    .sort-destination .avatar-imgbox .imgbox__inner,
    .award-list .avatar-imgbox .imgbox__inner {
        width: 110px;
        height: 110px;
    }
    .sort-destination .avatar-imgbox .imgbox-outter,
    .horizontal-card.card-wrapper .imgbox-outter,
    .award-list .imgbox-outter {
        padding: 12px;
    }
    .sort-destination .card-wrapper,
    .award-list .card-wrapper {
        padding: 7px;
        margin-left: 4px;
        margin-right: 4px;
        box-shadow: 0 3px 20px -5px rgb(0 0 0 / 10%);
    }
   
    .sort-destination .text-box p,
    .award-list .text-box p{
        line-height: 24px !important;
        font-size: 16px;
    }
    .sort-destination .text-box,
    .award-list .text-box {
        padding-bottom: 12px;
    }
    .horizontal-card.card-wrapper .avatar-imgbox {
        padding: 0;
        padding-top: 12px;
    }
    .horizontal-card.card-wrapper .text-box {
        padding-left: 12px;
        padding-right: 12px;
        text-align: center;
    }
    .horizontal-card.card-wrapper .card-wrapper__inner {
        flex-direction: column;
    }
    .highlight-title {
        font-size: 25px;
        line-height: 32px;
    }
}
@media (max-width: 321px) {
    .intro-box p {
        line-height: 28px;
        font-size: 17px;
    }
}
.feature-intro {
    background-color: #f1f1f1;
    padding: 16px;

}
.feature-intro .feature-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.feature-intro .feature-header h4 {
    font-size: 18px;
    letter-spacing: 0.4px;
}
.feature-intro .feature-header a {
    flex-shrink: 0;
}
.feature-intro .feature-header .year-badge {
    background-color: #d9ab83;
    padding: 2px 8px;
    margin-right: 6px;
    display: inline-block;
    border-radius: 2px;
    color: #fff;
    
}
.feature-intro .feature-body {
    margin-top: 16px;
}
.feature-body img {
    margin: 4px 0;
}
.toggle-title .date-item {
    color: #484848;
    width: 20%;
}
html .toggle-primary .toggle.active>.toggle-title .date-item {
    color: #fff;
}
.toggle-title .content-item {
    width: 78%;
}
.toggle-content {
    padding: 24px;
    background-color: rgb(247, 247, 247);
    border-left: 6px solid #0093dd;
}
.toggle-content .item {
    margin-bottom: 4px;
    display: flex;
}
.toggle-content .item .label {
    width: 15%;
    font-weight: 600;
}
.toggle-content .item .content {
    width: 85%;
}
.toggle-content .content a {
    text-decoration: underline;
}
@media (max-width: 430px) {
    .toggle-title .d-flex {
        flex-wrap: wrap;
    }
    .toggle-title .date-item {
        font-size: 17px;
        width: 100%;
    }
    .toggle-title .content-item {
        width: 100%;
    }
    .toggle.toggle-minimal .toggle>label,
    .toggle.toggle-minimal .toggle>.toggle-title {
        border-left: 6px solid;
        padding: 6px 10px;
    }
    .toggle-content {
        padding: 16px;
    }
    .toggle-content .item .label {
        width: 60%;
    }
    .toggle-content h4 {
        font-size: 1.2em;
        line-height: 24px;
        letter-spacing: 0.4px;
    }
    .toggle-content.not-toggle .item .label,
    .toggle-content.not-toggle .item .content {
        width: 100%;
    }
    .toggle-content.not-toggle .item {
        flex-wrap: wrap;
        margin-bottom: 8px;
    }
}
.photo-box {
    width: 60%;
    padding: 12px;
    border: 1px solid #acacac;
}
.photo-box img {
    width: 100%;
    max-width: 100%;
}

img.img-auto {
    width: auto;
    display: inline-block;
}

.p-with-icon p strong i {
    background-color: #2baab1;
    color: #fff;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    text-align: center;
    padding: 5px;
    font-size: .8em;
    line-height: 1.3;
    margin-right: 4px;
}
.center-link-box {
    display: block;
    text-align: center;
    transition: all 0.3s;
    /* border: 1px solid; */
    border-radius: 8px;
    box-shadow: 0px 0px 40px -10px rgb(171 191 216 / 60%);
    margin-bottom: 32px;
}
.center-link-box .imgbox {
    padding-top: 18px;
    padding-bottom: 10px;
}
.center-link-box .imgbox__inner {
    position: relative;
    width: 220px;
    height: 170px;
    display: inline-block;
}
.center-link-box .image {
    background-size: contain;
}
.center-link-box .title {
    margin-top: 6px;
    font-size: 26px;
    line-height: 30px;
    min-height: 60px;

}
.center-link-box .intro-box {
    padding: 24px;
    background-color: #0d94b3;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}
.center-link-box .intro {
    line-height: 26px;
    min-height: 104px;
    color: #fff;
    opacity: 0.8;
    
}

.center-link-box .intro-box .span-with-icon {
    color: #fff;
}
.center-link-box .intro-box .title {
    color: #fff;
}
.title-chemi-icon {
    color: #fff;
    background-color: #efa988;
    border-radius: 50%;
    text-align: center;
    padding: 8px;
}
.font-italic {
    font-style: italic;
}
.title-deco-line span {
    position: relative;
    display: inline-block;
    color: #3bb8d5;
    font-size: 40px;
}
.title-deco-line span::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 100%;
    font-size: 40px;
    line-height: 100%;
    width: 82px;
    height: 1px;
    background-color: #3bb8d5;
    transform: translateY(-50%);
    margin-left: 32px;

}
.title-deco-line span::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 100%;
    font-size: 40px;
    line-height: 100%;
    width: 82px;
    height: 1px;
    margin-right: 32px;
    background-color: #3bb8d5;
    transform: translateY(-50%);
}
.deco-spot {
    position: relative;
    z-index: 0;
}
.deco-spot::before {
    content: "";
    position: absolute;
    bottom: -32px;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-image: url('../img/patterns/tiling.png');
    opacity: 0.7;
}
.big-number {
    font-size: 32px;
    font-weight: 900;
    margin-right: 8px;
}
.youtube-box {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
}
.youtube-box iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.youtube-wrapper {
    padding-bottom: 32px;
}
.deco-p {
    position: absolute;
    bottom: -110px;
    right: 0;
    width: 340px;
    opacity: 0.7;
}
.border-left-deco {
    border-left: 6px solid #18b0dd;
    padding-left: 16px;
    margin-left: 4px;
}
.title-bg-box {
    padding: 12px 0;
    background-color: #105087;
    position: relative;
    margin-bottom: 16px;
    border-radius: 0 32px 32px 0;
    overflow: hidden;
}
.title-bg-box::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 36px;
    height: 100%;
    background-color: #44a0ff;
}
.title-bg-box::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 78px;
    height: 100%;
    background-color: #2553ec;
}
.title-bg-box h3 {
    font-size: 32px;
    letter-spacing: 1px;
    line-height: 100%;
}
.title-line {
    position: relative;
}
.title-line::after {
    content: "";
    position: absolute;
    width: 80px;
    height: 1px;
    background-color: #000;
    left: auto;
    top: 50%;
    transform: translateY(-50%);
    margin-left: 16px;
}

.photo-row img {
    height: 300px !important;
    width: auto !important;
}
.oversea-link {
    display: block;
}
.oversea-link .content-box {
    background-image: url('../img/page-header/oversea.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 32px;
    padding-top: 160px;
    border-radius: 10px;
    position: relative;
    z-index: 0;
}
.oversea-link .content-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0.5;
    z-index: -1;
    border-radius: 10px;
    transition: all 0.3s;
}
.oversea-link .content-box h4 {
    color: #fff;
}
.oversea-link .content-box p {
    color: #fff;
}
.oversea-link:hover .content-box::before {
    opacity: 0.2;
}
.oversea-link:hover .btn {
    border-color: rgb(53 214 251) !important;
    background-color: rgb(53 214 251);
    box-shadow: 0 6px 32px -1px rgb(117 238 238 / 40%);
}
.oversea-link:hover .btn i {
    transform: translate3d(10px, 0, 0);
}
.logo-section .logo-item {
    margin: 24px 32px;
}
.logo-section .logo-item img {
    height: 100px !important;

    object-fit: contain;
}
.contact-section-box {
    background-color: #fff;
    padding: 28px;
}

.deco-white-bg::before {
    content: "";
    position: absolute;
    left: -4px;
    top: 50%;
    transform: translateY(-50%) skew(-24deg);
    width: 300px;
    height: 100%;
    box-shadow: -2px 0 8px -1px rgba(0,0,0,0.1);
    background-color: #fff;
}
.letter-box {
    padding: 24px 28px;
    background-color: #fff;
}
.custom-box-shadow-1 {
    box-shadow: 0px 0px 31px -5px rgb(0 0 0 / 14%) !important;
}
.title {
    position: relative;
}
.subtitle {
    line-height: 26px;
}
.title-box {
    text-align: center;
    position: relative;
    z-index: 1;
}
.title-box::before {
    content: "";
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 450px;
    height: 235px;
    background: #fff;
    border-radius: 0 0 230px 230px;
    box-shadow: 0 30px 30px -50px rgb(37 83 157 / 40%);

}
.title-box3 {
    display: flex;
    height: 240px;
}
.title-box3 .left-box {
    width: 36%;
    text-align: right;
    padding-right: 16px;
    padding-bottom: 16px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.title-box3 .right-box {
    width: 65%;
    background-size: cover;
    background-position: center;
}
.title-box.title-box-no-circle::before {
    display: none;
}
.header-en {
    position: absolute;
    right: 0;
    bottom: -50px;
    text-align: center;
    font-family: "Montserrat","Noto Sans TC",sans-serif;
    line-height: 1;
    font-size: 150px;
    font-weight: bold;
    text-transform: uppercase;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #a3ccff;
    -webkit-text-fill-color: transparent;
    max-width: 40%;
}
.title-box .en {
    position: relative;
   display: block;
   font-family: "Montserrat","Noto Sans TC",
   sans-serif;
   text-transform: uppercase;
   font-size: 55px;
   letter-spacing: .02em;
   font-weight: 600;
   line-height: 1.2;
   padding-bottom: 16px;
   color: #1753b4;
   z-index: 0;
}
.title-box .en span {
    position: absolute;
    right: 0;
    bottom: 0;
    text-align: center;
    z-index: -1;
    font-family: "Montserrat","Noto Sans TC",sans-serif;
    line-height: 1;
    font-size: 150px;
    font-weight: bold;
    text-transform: uppercase;
    /* -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #66ceff;
    -webkit-text-fill-color: transparent; */
    opacity: 0.1;
    color: #c4d3da;
}
.title-box2 {
    position: relative;
    text-align: center;
}
.title-box2 .big-text {
    position: relative;
    display: inline-block;
    font-size: 55px;
    letter-spacing: .02em;
    font-weight: 600;
    line-height: 1.2;
    z-index: 0;
}
.title-box2 .not-outline {
    white-space: nowrap;
    font-size: 140px;
    line-height: 100%;
    color: #eee;
    opacity: 0.5;
    position: absolute;
    bottom: -16px;
    left: 70%;
    z-index: -1;
}
.title-box2 h3 {
    color: #c09c71;
    position: relative;
    font-size: 20px;
    font-family: serif;
}
.title-box .en::before {
    /* counter-increment: title;
    content: "0"counter(title); */
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-70%);
    -ms-transform: translateY(-70%);
    transform: translateY(-70%);
    width: 100%;
    text-align: center;
    z-index: -1;
    font-family: "Montserrat","Noto Sans TC",sans-serif;
    line-height: 1;
    font-size: 160px;
    font-weight: bold;
    text-transform: uppercase;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #66ceff;
    -webkit-text-fill-color: transparent;
    opacity: 0.4;
    text-shadow: none;
    
}
.title-box .title {
    position: relative;
    display: inline-block;
    padding: 0 64px;
    font-size: 24px;
}
.title::before,
.title::after {
    content: '';
    position: absolute;
    top: 50%;
    margin-top: -0.5px;
    width: 47px;
    height: 1px;
    background-color: #666;
}
.title::before {
    left: 0;
}
.title::after {
    right: 0;
}
.big-num {
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #359ee9;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    font-weight: 900;
    font-size: 120px;
    line-height: 100%;
    opacity: 0.5;
    font-style: italic;
    display: block;
    text-align: right;
}
.text-outline {
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #359ee9;
    -webkit-text-fill-color: transparent;
}
.title-box.title-box-no-circle h3.font-weight-6 {
    font-family: 微軟正黑體,sans-serif;
}
.under-imgbox {
    z-index: 0;
}
.under-imgbox .imgbox__inner {
    width: 100%;
    padding-top: 24%;
    position: relative;
}
.recruit-intro {

    position: relative;
}
.fluid-imgbox {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
}
.fluid-imgbox .imgbox__inner {
    width: 100%;
    padding-top: 42%;
    position: relative;
}
.vertical-imgbox .imgbox__inner {
    width: 100%;
    height: 900px;
    position: relative;
}
.sub-nav-box ul {
    list-style: none;
    padding: 0;
}
.sub-nav-box li {
    margin-bottom: 24px;
    float: left;
    margin-right: 32px;
}
.sub-nav-box li a {
    display: inline-block;
    vertical-align: top;
    font-size: 18px;
    color: #484848;
    padding-left: 10px;
    padding-bottom: 10px;
    padding-right: 32px;
    position: relative;
    border-bottom: 2px solid #484848;
}
.sub-nav-box li a::after {
    content: '';
    display: block;
    width: 16px;
    height: 16px;
    background-image: url('../img/icons/arrow_down.svg');
    background-repeat: no-repeat;
    background-position: top left;
    background-size: contain;
    position: absolute;
    top: 5%;
    right: 4px;
    transition: all 0.3s;
}
.sub-nav-box li a:hover::after {
    background-image: url('../img/icons/arrow_down_b.svg');
    top: 20%;
}
.sub-nav-box li a:hover {
    color: #2b7fd7;
    border-bottom: 2px solid #2b7fd7;

}
.benefit-wrapper {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    height: 760px;
}
.benefit-box {
    width: 33.3333333%;
    margin-bottom: 24px;
}
.light-text-box .text-light {
    text-shadow: 0 0 25px rgb(0 12 70 / 20%);
}
@media (max-width: 992px) {
    .deco-white-bg::before {
        left: -50px;
    }
    .benefit-wrapper {
        height: 740px;
    }
}
@media (max-width: 769px) {
    .deco-white-bg::before {
        left: -50px;
    }
}
@media (max-width: 430px) {
    .deco-white-bg::before {
        display: none;
    }
    .bg-sm-transparent {
        background-color: transparent !important;
    }
    .deco-5::before {
        opacity: 0.2;
    }
    .line-height-7 {
        line-height: 30px !important;
    }
    article p {
        font-size: 16.5px;
        line-height: 32px;
    }
    article .line-height-7 {
        line-height: 32px !important;
    }

    .photo-box {
        width: 100%;
        padding: 10px;
        margin-bottom: 8px;
    }
    .deco-p {
        width: 280px;
    }
    .title-bg-box h3 {
        font-size: 26px;
    } 

    .title-box .en {
        font-size: 40px;
        letter-spacing: .02em;
        line-height: 1;
        padding-bottom: 8px;
    }
    .title-box .title {
        font-size: 22px;
    }
    .title-box {
        padding: 10px 0;
    }
    .title-box .en span {
        font-size: 100px;
    }
    .title-box::before {
        width: 280px;
        height: 180px;
        border-radius: 0 0 160px 160px;
    }
    .big-num {
        font-size: 80px;
        opacity: 0.3;
        margin-top: -24px;
    }
    .title-box2 .big-text {
        font-size: 32px;
    }
    .title-box2 h3 {
        font-size: 18px;
    } 
    .title-box2 .not-outline {
        font-size: 110px;
    }
    .benefit-wrapper {
        height: 1060px;
    }
    .benefit-box {
        width: 50%;
        margin-bottom: 24px;
    }
    .vertical-imgbox .imgbox__inner {
        height: 200px;
    }
    .contact-section-box .btn {
        width: 100%;
    }
}

@media (max-width: 321px) {
    .letter-box {
        padding: 24px 20px;
    }
    .title-box .en {
        font-size: 32px;
        letter-spacing: .01em;
        padding-bottom: 4px;
    }
    .title-box .title {
        padding: 0 42px;
    }
    .title-box::before {
        height: 150px;
    }
    .title::before,
    .title::after {
        width: 35px;
    }
    .title-slash::after {
        width: 60px;
    }
}
.certification-wrapper {
    position: relative;
}
/* company */

.department-item {
    display: flex;
    padding: 24px 28px;
    border-bottom: 1px solid #c4c4c4;
}
.department-item:nth-child(1) {
    border-top: 1px solid #c4c4c4;
}
.department-item p {
    margin-bottom: 0;
}
.department-item .label {
    width: 15%;
    color: #000;
    flex-shrink: 0;
    font-weight: 600;
    font-size: 18px;
}
.department-item .content {
    line-height: 28px;
}
.department-item .content p {
    display: inline-block;
    margin: 0;
    width: 40%;
}
.supplier-box .department-item .label {
    width: 28%;
}
.supplier-box .department-item .content {
    width: 72%;
}


.year-box .year-item {
    display: flex;
    align-items: center;
}
.year-box .year-item h4 {
    width: 20%;
    margin-bottom: 0;
}
.year-box .year-item .item {
    /* width: 50%; */
    flex: 1;
}
.year-box.few-item .year-item .item{
    flex: none;
}
.year-box .year-item .item a {
    padding: 8px 0;
    margin: 0 16px;
    border-bottom: 2px solid;
    /* border-radius: 24px; */
    /* background-color: #034191; */
    color: #034191;
    border-color: #034191;
    display: inline-block;
    transition: all 0.3s;
}
.year-box .year-item .item a i {
    padding-right: 16px;
    font-size: 22px;
    color: tomato;
}
.year-box hr {
    margin: 32px 0;
}
.m-imgbox .imgbox__inner {
    width: 100%;
    padding-top: 100%;
    position: relative;
    overflow: hidden;
}

/* lightbox */

.mfp-force-scrollbars.mfp-wrap {
    overflow-y: auto !important;
    overflow-x: auto !important;
}
.mfp-force-scrollbars .mfp-img {
    max-width: none;
}
a.lightbox {
    display: block;
}
.lightbox {
    display: flex;
    flex-wrap: wrap;
}
.lightbox .item {
    width: 24%;
    margin: 4px;
    display: block;  
}
.m-imgbox img {
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    background-size: cover;
    background-position: center;
    object-fit: cover;
    transition: all 0.3s;
}
.lightbox .item:hover img {
    transform: scale(1.1);
}
.lightbox-outter {
    margin-bottom: 24px;
}
.lightbox-outter p {
    margin-bottom: 0;
    padding: 4px 0;
}
@media (min-width: 1280px){
    .year-box .year-item .item a:hover {
        color: #6aa4ef;
        border-color: #6aa4ef;
        /* padding: 8px 6px; */
    }
}
@media (max-width: 992px) {
    .lightbox .item {
        width: 24%;
        margin: 2px;
    }
}
@media (max-width: 769px) {
    .lightbox-outter p {
        font-size: 17px;
        line-height: 22px;
    } 
}
@media (max-width: 430px) {
    .year-box .year-item {
        flex-wrap: wrap;
    }
    .year-box .year-item .item {
        width: 50%;
        flex: none;
    }
    .year-box .year-item .item a {
        display: block;
        margin-bottom: 6px;
    }
    .year-box .year-item h4 {
        width: 100%;
        flex: 1 1 auto;
    }
    .lightbox-outter p {
        font-size: 16px;
        line-height: 22px;
    }
    .department-item {
        padding: 16px 12px;
    }
    .department-item .label {
        width: 34%;
        line-height: 26px;
    }
    .department-item .content {
        line-height: 26px;
    }
    .department-box .department-item .label {
        width: 26%;
    }
    .department-box.supplier-box .department-item .label {
        width: 100%;
        margin-bottom: 10px;
    }
    .department-box.supplier-box .department-item {
        flex-wrap: wrap;
    }
    .department-box.supplier-box .department-item .content {
        width: 100%;
    }
    .supplier-box .department-item .content p {
        display: block;
        width: 100%;
    }
    .lightbox .item {
        width: 48%;
    }
    .font-weight-6.line-height-1.text-6 {
        font-size: 1.7em !important;
        line-height: 1.2 !important;
    }
}
/* terminal */
.link-box {
    display: block;
    margin: 16px;
    position: relative;
}
.section-10 .link-box {
    margin: 8px;
}
.link-box.search-link-box {
    margin: 8px;
}
.link-box .text-box {
    padding: 4px 24px;
    position: absolute;
    bottom: 10%;
    left: 0;
    width: 100%;
    z-index: 0;
    transition: all 0.3s;
}
.link-box .text-box p {
    color: #fff;
    font-size: 16px;
    margin-bottom: 0;
    text-shadow: 0 0 16px rgb(0 0 0 / 80%);
}
.link-box .text-box .name {
    display: inline-block;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 0;
    color: #fff;
    position: relative;
    margin-bottom: 8px;
    transition: all 0.3s;
}
.link-box .text-box .name i {
    margin-left: 6px;
    font-size: 16px;
    opacity: 0.7;
}
.link-box .text-box .name::after {
    content: "";
    width: 100px;
    height: 2px;
    margin-left: 6px;
    background-color: #fff;
    position: absolute;
    top: 50%;
    left: 100%;
    transform: translateY(-50%);
    transition: all 0.3s;
}
.link-box.search-link-box .text-box .name::after {
    display: none;
}
.search-link-box .icon {
    color: #fff;
    font-size: 26px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}
.search-link-box:hover .icon {
    opacity: 1;
    visibility: visible;
    margin-bottom: 32px;
}
.link-box .imgbox {
    position: relative;
    border-radius: 7px;
    overflow: hidden;
    transition: all 0.3s;
}

.link-box .imgbox .image {
    z-index: 0;
}
.link-box .imgbox__inner {
    width: 100%;
    padding-top: 70%;
    position: relative;
    transition: all 0.3s;
}
.section-10 .link-box .imgbox__inner {
    padding-top: 56%;
}
.link-box .imgbox__inner::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0b316e;
    opacity: 0.5;
    transition: all 0.3s;
}
/* .link-box .imgbox::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgb(33 40 50 / 63%);
    width: 94%;
    height: 80%;
    transition: all 0.3s;
    opacity: 0;
}
.link-box:hover .imgbox::after {
    opacity: 1;   
} */
.link-box:hover .imgbox {
    transform: scale(1.05);
}
.section-10 .link-box:hover .imgbox {
    transform: scale(1.03);
}
.link-box .btn {
    padding-right: 48px;
    font-size: 15px;
    border: 1px solid #fff;
    color: #fff;
    margin-top: 6px;
    transition: all 0.3s;
}
.link-box .arrow-btn.arrow-btn-sm::after {
    width: 16px;
    height: 16px;
    background-image: url('../img/icons/arrow_right_w.svg');
}
.link-box .btn:hover {
    background-color: #143e99;
}
.link-box:hover .text-box {
    bottom: 15%;
}

.link-box:hover .btn {
    margin-top: 24px;
}
/* .section-10 .link-box .text-box {
    bottom: 0%;
}
.section-10 .link-box:hover .text-box {
    bottom: 10%;
}
.section-10 .link-box .btn {
    opacity: 0;
    visibility: hidden;
}
.section-10 .link-box:hover .btn {
    margin-top: 24px;
    opacity: 1;
    visibility: visible;
} */
.logo-box {
    display: flex;
    flex-wrap: wrap;
    position: relative;
}

.logo-box .item {
    border: 1px solid rgb(231, 231, 231);
    display: inline-block;
    width: 20%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}
.logo-box .item .imgbox {
    width: 100%;

}
.logo-box .item .imgbox__inner {
    width: 100%;
    padding-top: 50%;
    position: relative;
}
.logo-box .item .image {
    background-size: contain;
    transition: all 0.3s;
}
.logo-box .item:hover .image {
    transform: scale(1.08);
}
.location-outter {
    display: flex;
    flex-wrap: wrap;
}
.location-box {
    width: 32%;
    padding: 32px;
    background-color: #eff0f3;
    margin: 6px;
    margin-bottom: 24px;
    border-radius: 8px;
    position: relative;
    transition: all 0.3s;
}
.map-info .location-box {
    width: 100%;
    background-color: transparent;
    padding-right: 0;
    padding-left: 20px;
}
.location-box:hover {
    background-color: #f7f7f7;
}
.map-info .location-box:hover {
    background-color: transparent;
}
.location-box p {
    margin-bottom: 0;
    font-size: 17px;
}
.location-box p a {
    color: #222;
    transition: all 0.3s;
}
.location-box a:hover {
    text-decoration: underline;
    color: #3887e9;
}
.map-info .location-box:hover a {
    color: inherit;
    text-decoration: none;
}
.map-info .location-box a:hover {
    text-decoration: underline;
    color: #3887e9;
}
.location-box .name {
    font-size: 20px;
    line-height: 24px;
    font-weight: 600;
    position: relative;
    margin-bottom: 28px;
}

.location-box .addr {
    line-height: 24px;
    margin-bottom: 12px;
}
.location-box .contact span {
    display: block;
}
.map-info .location-box .name {
    font-size: 24px;
}
.map-info .location-box .addr {
    font-size: 19px;
}
.location-box .contact i {
    color: #484848;
    padding-right: 4px;
}
.location-box:hover .contact i {
    color: #4f7bce;
}
.map-info .location-box:hover .contact i {
    color: inherit;
}
.map-img {
    display: block;
}
.contact-form {
    background-color: #fff;
    padding: 32px;
    border-radius: 14px;
    box-shadow: 0 3px 60px -5px rgb(8 36 86 / 9%);
}
@media (max-width: 430px) {
    .location-box {
        width: 100%;
        margin-bottom: 10px;
        padding: 20px 26px;
    }
    .location-box .name {
        margin-bottom: 16px;
    }
    .link-box {
        margin: 16px 0;
    }
    .logo-box .item {
        width: 33.33333333%;
        padding: 12px;
    }
    .search-link-box .imgbox__inner {
        padding-top: 45%;
    }
}
/* berth */
.hint-box {
    display: flex;
    align-items: center;
    text-align: center;
    margin-bottom: 8px;
}
.hint-box .box {
    display: inline-block;
    background-color: #b1b1b1;
    color: #fff;
    line-height: 16px;
    font-size: 16px;
    padding: 4px 14px;
    border-top-left-radius: 16px 6px;
    border-top-right-radius: 16px 6px;
    border-bottom-left-radius: 16px 6px;
    border-bottom-right-radius: 16px 6px;
    letter-spacing: 0;
    margin-left: 2px;
}
.hint-box .box.box-blue {
    background-color: #75b9fd;
}
.hint-box .box.box-green {
    background-color: #79d15c;
}
.hint-box .box.box-brown {
    background-color: #cd9955;
}
.hint-box .box.box-red {
    background-color: #e34f37;
}
.hint-box .box.box-purple {
    background-color: #bc9be2;
}
.now-btn,
.now-btn:focus {
    border: 1px solid orange;
    color: orange;
    padding: 4px 16px;
    margin-right: 8px;
    flex-shrink: 0;
}
.now-btn span {
    width: 10px;
    height: 10px;
    display: inline-block;
    border-radius: 50%;
    background-color: orange;
    margin-right: 6px;
    box-shadow: 0 0 0 2px rgba(255, 164, 45, 0.4);
}
.now-btn:hover,
.now-btn:active {
    border: 1px solid orange;
    color: orange;
    background-color: rgb(255, 249, 239);
}
#berth {
    min-height: 400px;
    font-family: 微軟正黑體;
}
.fc-scroller::-webkit-scrollbar:horizontal {
    height: 22px;
}

.fc-scroller::-webkit-scrollbar-thumb {
    background-color: rgba(228, 228, 228, 0.5);
    border-radius: 4px;
    border: 2px solid rgba(58, 58, 58, 0.5);
}
.fc-scroller::-webkit-scrollbar-track {
    background-color: rgba(150, 150, 150, 0.1);
}
.fc-license-message {
    display: none;
}
div.fc-toolbar-chunk:last-child {
    display: none;
}

.fc .fc-toolbar.fc-header-toolbar {
    margin-bottom: 0.4em;
    display: none;
}
.fc .fc-toolbar-title {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1.45em;
}
.fc .fc-resource-timeline-divider {
    width: 0;
    height: 0;
    pointer-events: none;
    cursor: none;
    border: 0;
}
.fc-timeline-header table {
    user-select: none;
}
.fc .fc-timeline-slot-cushion {
    font-size: 14px;
    color: #5c5c5c;
    letter-spacing: 0.5px;
}
.fc-timeline-header table tr:nth-child(1) .fc-timeline-slot-cushion {
    font-size: 15px;
}
.fc-timeline-header table tr:nth-child(2) .fc-timeline-slot-cushion {
    padding-left: 2px;
}
.fc-scrollgrid-section td:last-child .fc-scroller.fc-scroller-liquid-absolute{
    /* border: 1px solid blue; */
}
.fc-scrollgrid-section td:last-child .fc-timeline-lane {
    border: 1px solid rgb(210, 218, 228);

}
.fc .fc-timeline-event-harness,
.fc .fc-timeline-more-link {
    padding-top: 6px;
}

.fc-timeline-event {/* 船底色tag */
    border-top-left-radius: 28px 10px;
    border-top-right-radius: 28px 10px;
    border-bottom-left-radius: 28px 10px;
    border-bottom-right-radius: 28px 10px;
    padding: 2px 10px;
    line-height: 22px;
    text-align: center;
    box-shadow: 0 0 0 2px rgb(84 84 84 / 20%);
    border-width: 1px;
    transition: all 0.4s;
}
.fc-timeline-event.not-picked-event {
    opacity: 0.5;
}
.fc-timeline-event.picked-event {
    opacity: 1;
    box-shadow: 0 0 6px 1px rgba(74, 84, 95, 0.3) !important;
}
.fc-scrollgrid tbody td:nth-child(1) .fc-scroller-harness .fc-scrollgrid-sync-table {
    border-bottom: 1px;
}
.fc-scrollgrid tbody td:last-child .fc-scroller-harness .fc-scrollgrid-sync-table {
    background-color: aliceblue;
    border-bottom: 1px;
}
.fc-theme-standard td,
.fc-theme-standard th {
    border-color: rgb(210, 218, 228);
}
.fc .fc-scrollgrid-liquid {
    border: 0;
}
.fc-theme-standard .fc-scrollgrid {
    border: 0;
}
.fc-scrollgrid tbody td:nth-child(1) { /* 碼頭那一列 */
    text-align: center;
    font-size: 16px;
    border-left: 1px solid rgb(210, 218, 228);
}
.fc .fc-timeline-now-indicator-arrow,
.fc .fc-timeline-now-indicator-line {
    border-color: orange;
}
.fc .fc-timeline-now-indicator-arrow {
    border-left-color: transparent;
    border-right-color: transparent;
    margin: 0px -9px;
    border-width: 8px 8px 0;
}
.fc-timeline-header tbody tr:nth-child(1) .fc-timeline-slot-frame {
    border-top: 1px solid rgb(210, 218, 228);
}
.fc-timeline-event:not(.fc-event-end):after,
.fc-timeline-event:not(.fc-event-start):before {
    border: 5px solid #fff;
    border-top-color: transparent;
    border-bottom-color: transparent;
    opacity: 0.8;
}
.fc-event-selected:after,
.fc-event:focus:after {
    background: transparent;
    background: transparent;
    position: relative;
}
.fc-event-selected:before,
.fc-event:focus:before {
    position: relative;
}
.popover.show {
    box-shadow: 0 0 18px -2px rgb(0 0 0 / 20%);
}
.popover-header {
    font-size: 17px;
    font-weight: 600;
    font-family: 微軟正黑體;
    line-height: 20px;
    padding: 10px 10px 0;
    background-color: #fff;
    border-bottom: 0;
}
.popover-header .pop-close {
    color: #484848;
    font-size: 22px;
    font-weight: 400;
    line-height: 12px;
}
.popover-body p {
    margin-bottom: 4px;
    line-height: 18px;
}
.popover-body p .label {
    display: inline-block;
    margin-right: 4px;
    font-size: 15px;
}
.popover-body p .colon {
    display: inline-block;
    margin-right: 4px;
}

@media (max-width: 430px) {
    table.fc-scrollgrid > colgroup col:first-child {
        width: 80px !important;
    }
    .fc-scrollgrid tbody td:nth-child(1) {
        font-size: 14px;
        letter-spacing: 0.2px;
    }
    .now-btn span {
        width: 7px;
        height: 7px;
        border-radius: 50%;
        margin-right: 4px;
        margin-bottom: 2px;
    }
}
@media (max-width: 400px) {
    .hint-box .right-box {
        width: 70%;
    }
    .now-btn,
    .now-btn:focus {
        padding: 2px 12px;
        font-size: 15px;
        margin-right: 0;
        /* width: 30%; */
    }
    .hint-box .box {
        font-size: 15px;
        padding: 4px 10px;
        margin-left: 2px;
    }
}
@media (max-width: 361px) {
    .hint-box {
        flex-wrap: wrap;
    }
    .hint-box .right-box {
        width: 100%;
    }
    .now-btn,
    .now-btn:focus {
        margin-bottom: 8px;
    }
}

.download-box {
    background-color: #f8f8f8;
    margin-bottom: 16px;

}
.download-item {
    display: inline-block;
    padding: 8px 16px;
}

.download-item .icon {
    font-size: 22px;
    margin-right: 4px;
    color: tomato;
}
.download-item .name {
    display: inline-block;
    margin-bottom: 0;
    font-size: 18px;
    color: #0b42a8;
}
.download-item:hover .name {
    text-decoration: underline;
    color: #007bff;
}
.joblist-wrapper {
    padding: 16px;
    background-color: #fff;
    padding-bottom: 24px;
}
.block-box img{
    margin-bottom: 8px;
}
.out-link {
    display: inline-block;
    vertical-align: top;
    font-size: 18px;
    color: #484848;
    padding-left: 10px;
    padding-bottom: 10px;
    padding-right: 32px;
    position: relative;
}
.employee-link-item {
    margin-bottom: 12px;
}
.employee-link-item a {
    font-size: 17px;
    color: #484848;
    display: block;
    padding: 12px 22px;
    background-color: #eee;
    transition: all 0.2s;
}
.employee-link-item a:hover {
    background-color: #2b4aad;
    color: #fff;
}
.btn.btn-gray {
    background-color: #2d93cf;
    color: #fff;
}
