body {
    overflow-x: hidden;
    zoom: 100%;
    /* touch-action: none; */
}

.fv {
    max-width: 1920px;
    font-size: 16px;
    margin: 0 auto;
    font-family: Arial, '微軟正黑體';
    line-height: 16px;
}

.fv h2 {
    margin-bottom: 48px;
    font-size: 2rem;
    color: #0070B3;
    font-weight: 600;
    line-height: 2rem;
    letter-spacing: 2px;
    text-align: center;
    display: flex;
    justify-content: center;
    
}

.fv h3 {
    font-size: 1.25rem;
    line-height: 1.625rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.fv h4 {
    font-size: 1rem;
    line-height: 1.3125rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 4px;
}

.fv p {
    font-size: 0.875rem;
    line-height: 1.1875rem;
    letter-spacing: 2px;
    margin-bottom: 24px;
}
.fv h2 img {
    margin-right: 8px;
    margin-left: 8px;
}
.fv .blue {
    color: #0070B3;
}

.fv .white {
    color: #ffffff;
}

@media screen and (max-width: 1200px) {
    .fv h2 {
        font-size: 1.5rem;
        line-height: 1.5rem;
        letter-spacing: 2px;
    }
}

@media screen and (max-width: 425px) {
    .fv h2 {
        font-size: 1.5rem;
    }

    .fv h2 img {
        width: 10%;
    }
}

.fv .Apply {
    display: block;
    position: fixed;
    width: 80px;
    right: 20px;
    z-index: 30;
    bottom: 300px;
    -webkit-animation: pulse infinite;
    animation: pulse infinite;
    /* referring directly to the animation's @keyframe declaration */
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
    /* don't forget to set a duration! */
}

/*# sourceMappingURL=main.css.map */

.nav-bar {
    display: flex;
    justify-content: center;
}

.nav-bar nav {
    width: 100%;
    max-width: 1440px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-bar .logo {
    text-align: start;
}

.nav-bar .language {
    color: #ffffff;
    font-size: 1.25rem;
    width: 50%;
    text-align: right;
}

.nav-bar .language .dropdown-item {
    color: #9d9d9d;
    border: 0;
}

.nav-bar .language .dropdown-item:hover {
    color: #0070B3;
    background: none;
}

.nav-bar .language .dropdown-item.selected {
    color: #000000;
}

.head-banner {
    text-align: center;
    margin-bottom: 48px;
}

.head-banner-bg {
    width: 100%;
    height: 800px;
    -webkit-clip-path: polygon(0 0, 100% 0%, 100% 80%, 50% 100%, 0 80%);
    clip-path: polygon(0 0, 100% 0%, 100% 80%, 50% 100%, 0 80%);
    background-image: url(../images/kv/kv-bg.png);
    background-position: center;
    position: relative;
    overflow: hidden;
    background-size: cover;
}

.head-banner-mask {
    /* visibility: visible;
    top: 0;
    position: absolute;
    width: 100%;
    -webkit-clip-path: polygon(0 0, 100% 0%, 100% 90%, 50% 100%, 0 90%);
    clip-path: polygon(0 0, 100% 0%, 100% 90%, 50% 100%, 0 90%);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 20%, rgb(59, 114, 182, 0.6) 60%, rgba(32, 96, 173, 1) 100%); */
    position: absolute;
    width: 100%;
    top: 27%;
    -webkit-clip-path: polygon(0 0, 100% 0%, 100% 90%, 50% 100%, 0 90%);
    clip-path: polygon(0 0, 100% 0%, 100% 90%, 50% 100%, 0 90%);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 20%, rgb(184 184 184 / 60%) 60%, rgb(0 0 0) 100%);
    height: 700px;
    visibility: visible;
}



.head-banner-people {
    display: grid;
    grid-template-columns: 300px 300px 300px;
    justify-content: center;
    position: relative;
    justify-items: center;
}

.head-banner-title-layout {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

.head-banner-title-box {
    bottom: 20%;
    position: absolute;
    text-align: end;
}

.head-banner-title {
    filter: drop-shadow(5px 5px 4px #0000004f);
    display: flex;
    justify-content: center;
    -webkit-animation: backInUp;
    animation: backInUp;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
}

.head-banner-arrows {
    position: absolute;
}

.head-banner-arrows.arrow-1 {
    z-index: -100;
    top: 10%;
    left: 12%;
}

.head-banner-arrows.arrow-2 {
    z-index: -100;
    top: 30%;
    left: 18%;
}

.head-banner-arrows.arrow-3 {
    z-index: -100;
    top: 20%;
    right: 13%;
}

.head-banner-people .person-1 {
    transform: translate(5%, 0%);
}
.head-banner-people .person-2 {
    transform: translate(0%, 6%);
}
.head-banner-people .person-3 {
    transform: translate(-5%, 0%);
}

.head-banner-title img {
    width: 50%;
}

.head-banner-title-logo {
    -webkit-animation: backInDown;
    animation: backInDown;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
}

.head-banner-godown {
    transform: translate(0%, -100px);
    animation: godown 0.5s infinite;
}

@keyframes godown {

    0% {
        -webkit-transform: translate3d(0, -90px, 0);
        transform: translate3d(0, -90px, 0)
    }

    50% {
        -webkit-transform: translate3d(0, -100px, 0);
        transform: translate3d(0, -100px, 0)
    }

    100% {
        -webkit-transform: translate3d(0, -90px, 0);
        transform: translate3d(0, -90px, 0)
    }
}

@media screen and (max-width: 1200px) {
    .head-banner {
        margin-bottom: 120px;
    }

    .head-banner-bg {
        -webkit-clip-path: polygon(0 0, 100% 0%, 100% 90%, 50% 100%, 0 90%);
        clip-path: polygon(0 0, 100% 0%, 100% 90%, 50% 100%, 0 90%);
        height: 750px;
    }

    .head-banner-mask {
        top: 27%;
        -webkit-clip-path: polygon(0 0, 100% 0%, 100% 90%, 50% 100%, 0 90%);
        clip-path: polygon(0 0, 100% 0%, 100% 90%, 50% 100%, 0 90%);
        background: linear-gradient(180deg, rgba(255, 255, 255, 0) 20%, rgb(184 184 184 / 60%) 60%, rgb(0 0 0) 100%);
        height: 550px;
        visibility: visible;
    }

    .nav-bar .logo img {
        width: 60%;
    }

    /* .head-banner-people img {
        width: 50vw;
    } */
    .head-banner-people .person-1 {
        transform: translate(29%, 0%);
    }
    .head-banner-people .person-2 {
        transform: translate(-9%, 6%);
    }
    .head-banner-people .person-3 {
        transform: translate(-36%, 0%);
    }
    .head-banner-arrows.arrow-1 {
        display: none;
    }

    .head-banner-arrows.arrow-2 {
        z-index: -100;
        top: 30%;
        left: 4%;
    }

    .head-banner-arrows.arrow-3 {
        z-index: -100;
        top: 20%;
        right: 4%;
    }

    .head-banner-title-box {
        bottom: 10%;
    }

    .head-banner-title {
        align-items: center;
        flex-direction: column;
    }

    .head-banner-title-box {
        text-align: center;
    }

    .head-banner-title img {
        width: 70%;
    }

    .head-banner-title-logo {
        width: 70%;
    }

    .head-banner-godown {
        transform: translate(0%, 50px);
    }

    @keyframes godown {

        0% {
            -webkit-transform: translate3d(0, 30px, 0);
            transform: translate3d(0, 30px, 0)
        }

        50% {
            -webkit-transform: translate3d(0, 50px, 0);
            transform: translate3d(0, 50px, 0)
        }

        100% {
            -webkit-transform: translate3d(0, 30px, 0);
            transform: translate3d(0, 30px, 0)
        }
    }
}

@media screen and (max-width: 575px) {
    .head-banner-bg {
        -webkit-clip-path: polygon(0 0, 100% 0%, 100% 95%, 50% 100%, 0 95%);
        clip-path: polygon(0 0, 100% 0%, 100% 95%, 50% 100%, 0 95%);
        height: 580px;
    }
    .head-banner-people {
        grid-template-columns: 230px 230px 230px;
    }
    .head-banner-mask {
        top: 20%;
        -webkit-clip-path: polygon(0 0, 100% 0%, 100% 95%, 50% 100%, 0 95%);
        clip-path: polygon(0 0, 100% 0%, 100% 95%, 50% 100%, 0 95%);
        height: 530px;
        visibility: visible;
    }
}

.people-carousel {
    background-image: url(../images/people-carousel-bg.svg);
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: bottom;
    max-width: 1920px;
    margin: 0 auto;
    margin-bottom: 96px;
}

@media screen and (max-width: 1023px) {
.people-carousel {
    background-image: url(../images/people-carousel-bg.svg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    max-width: 1920px;
    margin: 0 auto;
    margin-bottom: 96px;
}
}

.activity-carousel {
    max-width: 1440px;
    margin: 0 auto;
    margin-bottom: 96px;
}

.recruit {
    margin-top: 178px;
    padding-top: 56px;
    padding-bottom: 48px;
    background-color: #0070B3;
    position: relative;
    background-image: url(../images/Foreign/bg.png);
    background-size: cover;
    background-repeat: no-repeat;
}

.recruit::before {
    content: "";
    width: 100%;
    height: 500px;
    background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='utf-8'%3F%3E%3C!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --%3E%3C!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'%3E%3Csvg version='1.1' id='圖層_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' width='1920px' height='365.578px' viewBox='0 0 1920 365.578' enable-background='new 0 0 1920 365.578' xml:space='preserve'%3E%3Cg%3E%3Cpath fill='%230070B3' d='M860.056,241.085C488.336,226.773,170.331,133.257,0,0.511v240.573V243v125.578h1920V243v-1.915V0.192 c-170.23,132.917-488.448,226.57-860.465,240.893H860.056z'/%3E%3C/g%3E%3C/svg%3E");
    background-repeat: no-repeat no-repeat;
    background-position: center center;
    background-size: 100%;
    position: absolute;
    top: -350px;
    left: 0px;
    z-index: -1;
}

.recruit-title {
    max-width: 992px;
    margin: 0 auto;
}

.recruit-box {
    padding-top: 48px;
    max-width: 1440px;
    margin: 0 auto;
    padding-bottom: 48px;
}

.recruit-box p {
    margin-bottom: 4px;
}

.recruit-box .content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: 32px;
}

.recruit-box img {
    max-width: 100%;
    height: 100%;
}

.recruit .cta {
    display: flex;
    border: 1px solid #ffffff;
    border-radius: 10px;
    color: #ffffff;
    width: fit-content;
    padding: 16px;
    margin: 0 auto;
    margin-top: 48px;
    margin-bottom: 48px;
    align-items: center;
}

@media screen and (max-width: 1200px) {
    .recruit::before {
        top: -320px;
        left: 0;
    }

}

@media screen and (max-width: 1200px) {
    .recruit {
        background-size: inherit;
    }

    .recruit::before {
        top: -280px;
        left: 0;
    }

}

@media screen and (max-width: 575px) {
    .recruit-box img {
        max-width: 20vh;
    }

    .recruit-box .content {
        align-self: center;
        justify-content: flex-start;
    }

}

.worldwide {
    margin-top: -1px;
    padding-top: 48px;
    padding-bottom: 80px;
    background: #0070B3;
}

.worldwide .worldwide-title {
    width: 90%;
    max-width: 1440px;
    border-bottom: 4px solid #ffffff;
    margin: 0 auto;
}

.worldwide-content {
    min-height: 500px;
    background-color: #0070B3;
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    margin-top: 48px;
    background-image: url(../images/map/map-bg.png);
    background-size: 1200px;
    align-items: center;
    background-position: center;
    background-repeat: no-repeat;
}

.worldwide-content .nav {
    justify-content: center;
}

.worldwide-content-title {
    color: #ffffff;
    font-size: 96px;
    line-height: 96px;
    letter-spacing: 24px;
    margin-bottom: 48px;
}

.worldwide-content .tab-pane {
    width: 500px;
    border-radius: 20px;
    padding: 16px;
    background: #ffffffb8;
}

.worldwide-content .tab-buttons {
    width: 50%;
    align-self: start;
    text-align: center;
}

.worldwide-content .nav-tabs .nav-link.active {
    color: #0070B3;
    background-color: #fff;
    border-color: #dee2e6 #dee2e6 #fff;
}

.worldwide-content .tab-buttons button {
    width: 120px;
    border-radius: 5px;
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
    background: #BDBDBD;
    padding: 16px;
}

.worldwide-content .tab-content {
    margin-right: 32px;
    margin-left: 32px;
}

.worldwide-content .nav-tabs {
    border-bottom: none;
    flex-wrap: nowrap;
}

@media screen and (max-width: 1200px) {
    .worldwide-content-title {
        display: none;
    }

    .worldwide-content {
        flex-direction: column;
    }

    .worldwide-content .tab-buttons {
        width: 100%;
    }

    .worldwide-content .tab-content {
        width: 90%;
    }

    .worldwide-content .tab-pane {
        width: 100%;
    }

    .worldwide-content {
        margin-top: 32px;
    }

    .worldwide-content .tab-buttons {
        margin-bottom: 32px;
    }

}

@media screen and (max-width: 577px) {
    .worldwide-content .tab-buttons button {
        width: 80px;
        border-radius: 5px;
        font-size: 1.25rem;
        font-weight: 600;
        color: #ffffff;
        background: #BDBDBD;
        padding: 12px 8px;
    }

    /* .worldwide-content .tab-content {
        width: 80%;
    } */
}

.QA {
    margin-top: -16px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    background: #E3F0FF;
    padding-top: 48px;
    padding-bottom: 48px;
}

.QA .process-box {
    margin: 0 auto;
    max-width: 1440px;
    font-size: 1.25rem;
}

.QA .process-block {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around;
}

@media screen and (max-width: 1200px) {
    .fv .QA .process-block {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
    }
}

/*@media all and (min-width: 320px) and (max-width: 768px) {
    .novatek .process .process-block {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -webkit-flex-direction: column;
          -ms-flex-direction: column;
              flex-direction: column;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center;
    }
  }*/
.QA .process-block .process-item {
    margin-bottom: 48px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}

/*@media all and (min-width: 320px) and (max-width: 768px) {
    .novatek .process .process-block .process-item {
      padding-bottom: 40px;
    }
  }*/
.QA .process-block .process-item .pic {
    background-color: #FFF;
    border-radius: 50%;
    padding: 10px;
    margin: 0 20px;
    -webkit-filter: drop-shadow(3px 3px 3px rgba(0, 0, 0, 0.3));
    filter: drop-shadow(3px 3px 3px rgba(0, 0, 0, 0.3));
}

.QA .process-block .process-item .info {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 15px;
    background-image: url(../images/process/arrow.svg);
    background-repeat: no-repeat;
    background-position: right center;
}

@media screen and (max-width: 1200px) {
    .QA .process-block .process-item .info {
        background-image: url(../images/process/arrow-d.svg);
        background-position: center bottom;
        padding-bottom: 30px;
    }
}

/*@media all and (min-width: 320px) and (max-width: 768px) {
    .novatek .process .process-block .process-item .info {
      background-image: url(../images/process/arrow-d.svg);
      background-position: center bottom;
      padding-bottom: 30px;
    }
  }*/
.QA .process-block .process-item .info .info-txt {
    color: #2060AD;
    font-weight: 700;
}

/*0730*/
.QA .process-block .process-item .info .info-txt {
    text-align: center;
}

.QA .process-block .process-item .infonorrow {
    background-image: none;
}

.QA .question-box {
    max-width: 960px;
    margin: 0 auto;
}

.QA .qa-title {
    padding: 32px;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
}

.QA .qa-block {
    background-color: #ffffff;
    border-radius: 20px;
    padding-bottom: 32px;
}

.QA .qa-block .accordion-button {
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 1px;
}

.QA .qa-block .accordion-button:after {
    display: none;
}

.QA .qa-block .accordion-button:not(.collapsed) {
    color: #2060AD;
}

.QA .accordion-body {
    text-align: left;
    letter-spacing: 1px;
    line-height: 24px;
}

.QA .accordion-item {
    border-right: none;
    border-left: none;
    border-top: none;
    border-bottom: 1px solid #888888;
}

.QA .accordion-item:last-child {
    border-bottom: 1px solid #ffffff;
}

.QA .accordion-button:not(.collapsed) {
    background-color: #CFE2FF;
    border: 1px solid #B1EDFD;
}

.QA .accordion-button:focus {
    background-color: #CFE2FF;
    box-shadow: none;
}



.fv footer {
    background-color: #3C3C3C;
    padding-top: 20px;
}

.fv footer .content {
    margin: 0 auto;
    max-width: 1440px;
}

.fv footer .footer-block {
    margin-bottom: 16px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
}

@media all and (min-width: 768px) and (max-width: 1200px) {
    .fv footer .footer-block {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

@media all and (min-width: 320px) and (max-width: 768px) {
    .fv footer .footer-block {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

.fv footer .footer-block .footer-logo {
    max-width: 130px;
}

@media all and (min-width: 768px) and (max-width: 1200px) {
    .fv footer .footer-block .footer-logo {
        padding-bottom: 20px;
    }
}

@media all and (min-width: 320px) and (max-width: 768px) {
    .fv footer .footer-block .footer-logo {
        padding-bottom: 20px;
    }
}

.fv footer .footer-block .footer-txt {
    text-align: center;
    color: #ffffff;
    font-size: 14px;
}

.fv footer .footer-block .footer-share {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    width: 125px;
}

.fv footer .footer-block .footer-share .share-icon {
    max-width: 20px;
}