@charset "utf-8";

/* CSS Document */
@import url(https://fonts.googleapis.com/earlyaccess/notosanstc.css);

/* Move down content because we have a fixed navbar that is 50px tall */

html,
body {
    scroll-behavior: smooth;
}

.no-webp body {
    background-image: url(../img/bg-grid.png);
    background-repeat: repeat;
}

.webp body {
    background-image: url(../img/bg-grid.png);
    background-repeat: repeat;
}

body,
td,
th {
    /* 黑體 */
    font-family: 'Noto Sans TC', sans-serif !important;
    text-align: justify;
    font-size: 18px;
    color: #282828;
}

a:link {
    color: #000;
    text-decoration: none;
}

a:visited {
    text-decoration: none;
    color: #000;
}

a:hover {
    text-decoration: none;
    color: #000;
}

a:active {
    text-decoration: none;
    color: #000;
}

/* --------------------------- */
/* NAVBAR */
/* --------------------------- */
.navbar-custom {
    height: 100px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, .2);
    background-color: #fff;
}

@media (max-width:991px) {
    .navbar-custom {
        height: auto;
        background-color: #F93E35;
    }
}

.navbar-brand img {
    height: 45px;
}

@media (max-width:991px) {
    .navbar-brand img {
        height: 30px;
    }
}

.navbar-nav {
    margin: 0 0 0 auto;
}

.navbar .nav-link {
    font-size: 20px;
    margin: 0 12px;
    font-weight: 500;
    position: relative;
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
}

@media (max-width:1399px) {
    .navbar .nav-link {
        margin: 0 5px;
    }
}

@media (max-width:1199px) {
    .navbar .nav-link {
        font-size: 16px;
        margin: 0 2px;
    }
}

@media (max-width:991px) {
    .navbar .nav-link {
        color: white;
        font-size: 20px;
        margin: 3px 0 3px 20px;
    }
}

.navbar .nav-link:hover {
    color: #F93E35;
}

@media (max-width:991px) {
    .navbar .nav-link:hover {
        color: yellow;
    }
}

.navbar .nav-link:after {
    content: '';
    display: block;
    width: 0;
    height: 4px;
    border-radius: 2px;
    background-color: #F93E35;
    margin-top: 8px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
}

.navbar .nav-link:hover:after {
    width: 50%;
}

.navbar-toggler {
    background-color: white;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(28, 28, 28, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E")
}

.cta-nav {
    color: #F93E35 !important;
}

@media (max-width: 991px) {
    .cta-nav {
        color: yellow !important;
    }

    .navbar-collapse ul {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .navbar .nav-link {
        font-weight: 400;
    }
}

/* --------------------------- */
/* NAVBAR */
/* --------------------------- */

/* --------------------------- */
/* SIDEMENU */
/* --------------------------- */

.side-line {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-image: url(../img/line.jpg);
    background-size: 80%;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #fff;
    border: 3px solid #63ce66;
    position: fixed;
    bottom: 30px;
    right: 30px;
    cursor: pointer;
    z-index: 999;
}

.sidemenu {
    position: fixed;
    top: 25%;
    right: 30px;
    text-align: center;
    z-index: 999;
}

.side-btn {
    border-radius: 8px;
    font-size: 22px;
    font-weight: 500;
    line-height: 26px;
    padding: 20px 16px;
    margin-top: 10px;
    background-color: #F93E35;
    color: #ffffff;
    -webkit-transition: all 0.1s linear;
    -moz-transition: all 0.1s linear;
}

.side-btn:hover {
    background-color: #c41007 !important;
}

.sidemenu-m {
    position: fixed;
    bottom: 35px;
    left: 30px;
    color: #fff;
    background-color: #F93E35;
    font-size: 22px;
    text-align: center;
    padding: 8px 50px;
    z-index: 999;
    border-radius: 8px;
}

/* --------------------------- */
/* SIDEMENU */
/* --------------------------- */

/* --------------------------- */
/* COMMON */
/* --------------------------- */

#banner,
#job,
#step,
#register,
#footer {
    overflow: hidden;
}

.chapter-title {
    font-size: 48px;
    font-weight: 700;
    color: #222;
    text-align: center;
    letter-spacing: 3px;
}

.chapter-btn-box {
    text-align: center;
    margin-top: 80px;
}

.chapter-btn {
    font-size: 28px;
    font-weight: 500;
    letter-spacing: 2px;
    color: #fff;
    background-color: #222;
    padding: 12px 36px;
    display: inline-block;
    border-radius: 36px;
    margin: 8px;
    -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
}

.chapter-btn:hover {
    background-color: #bda7a6 !important;
}

.color-black {
    color: #222 !important;
}

.color-bg-black {
    background-color: #222 !important;
}

.color-white {
    color: #fff !important;
}

.color-red {
    color: #F93E35 !important;
}

.color-bg-red {
    background-color: #F93E35 !important;
}

.color-border-red {
    background-color: #fff;
    border: 2px solid #F93E35;
}

/* --------------------------- */
/* COMMON */
/* --------------------------- */

/* --------------------------- */
/* BANNER */
/* --------------------------- */
.banner-bg {
    background: url(../img/bannerimg-bg.png);
    background-size: cover;
    border-bottom: 2px #F35E36 solid;
}

.banner-area {
    padding-top: 100px;
    position: relative;
}

@media (max-width:991px) {
    .banner-area {
        padding-top: 60px;
        position: relative;
    }
}

.banner-area img {
    width: 100%;
}


.banner-decoration {
    position: absolute;
    top: 100px;
    left: 0;
    z-index: 1;
}

@media (min-width:1440px) {
    .banner-area {
        width: 80%;
        margin: 0 auto;
    }
}

/* --------------------------- */
/* BANNER */
/* --------------------------- */

/* --------------------------- */
/* STEP */
/* --------------------------- */
.step-area {
    padding: 120px 0;
    background-image: url(../img/grid.jpg);
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
}

@media (max-width: 767px) {
    .step-area {
        padding: 80px 0;
        background-image: none;
    }

    .step-area::before {
        content: '';
        z-index: -1;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background-image: url(../img/grid.jpg);
        background-size: cover;
        position: fixed;
        background-position: center;
    }
}

.step-content {
    font-size: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.step-box {
    margin: 30px;
    position: relative;
    min-width: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media (max-width: 991px) {
    .step-box {
        min-width: 240px;
    }
}

.step-icon {
    font-size: 66px;
    height: 150px;
    width: 150px;
    border-radius: 100px;
}

.step-text {
    font-size: 24px;
    font-weight: 500;
    text-align: center;
}

.step-box:not(:last-child):after {
    content: '';
    position: absolute;
    right: -40px;
    background: url(../img/arrow-right-short.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 30px;
    height: 30px;
    top: 40%;
    transform: translateY(-50%);
}

@media (max-width: 767px) {
    .step-box {
        margin: 0 auto;
        padding: 24px;
    }

    .step-box:not(:last-child):after {
        display: none;
    }

    .step-icon {
        margin: 0 auto;
    }

    .step-text {
        display: block;
    }
}

/* --------------------------- */
/* STEP */
/* --------------------------- */

/* --------------------------- */
/* JOB */
/* --------------------------- */
.job-area {
    padding: 120px 0;
    background: url(../img/portfoliobg.jpg);
    background-attachment: fixed;
}

@media (max-width: 767px) {

    .job-area {
        padding: 80px 0;
    }

}

.nav-pills .nav-link {
    font-size: 24px;
    color: #222 !important;
    font-weight: 400;
    text-align: center;
}

.nav-pills .nav-link:hover {
    color: #fff !important;
    background-color: #db261d;
}

.nav-pills .nav-link.active,
.show > .nav-pills .nav-link {
    color: #fff !important;
    background-color: #F93E35 !important;
    font-weight: 500;
}

.job-box {
    margin: 12px;
    border-radius: 16px !important;
    font-size: 18px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .2);
}

.job-img-box {
    background-size: cover;
    background-repeat: no-repeat;
    height: 260px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 16px 16px 0 0;
}

.job-1-1 {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../img/job-1-1.png);
}

.job-1-2 {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../img/job-1-2.png);
}

.job-1-3 {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../img/job-1-3.png);
}

.job-2-1 {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../img/job-2-1.png);
}

.job-2-2 {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../img/job-2-2.png);
}

.job-2-3 {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../img/job-2-3.png);
}

.job-2-4 {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../img/job-2-4.png);
}

.job-2-5 {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../img/job-2-5.png);
}

.job-3-1 {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../img/job-3-1.png);
}

.job-3-2 {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../img/job-3-2.png);
}

.job-3-3 {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../img/job-3-3.png);
}

.job-3-4 {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../img/job-3-4.png);
}

.job-3-5 {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../img/job-3-5.png);
}

.job-3-6 {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../img/job-3-6.png);
}

.job-3-7 {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../img/job-3-7.png);
}

.job-type {
    font-size: 24px;
    font-weight: 500;
    text-align: center;
    color: #fff;
    letter-spacing: 2px;
    padding: 85px 0;
}

.job-place {
    padding: 12px 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
}

.job-place p {
    font-size: 20px;
    color: #fff;
}

.job-content {
    padding: 12px 24px;
}

.job-text {
    display: block;
    padding: 4px 0;
    line-height: 36px;
}

.job-text span {
    color: #fff;
    background-color: #222;
    padding: 4px 8px;
    border-radius: 4px;
    margin-right: 12px;
    font-weight: 500;
    letter-spacing: 2px;
}

.btn-arrow {
    color: #F93E35 !important;
    font-size: 28px;
}

/* --------------------------- */
/* JOB */
/* --------------------------- */

/* --------------------------- */
/* FOOTER */
/* --------------------------- */

.footer-line {
    height: 10px;
    background-color: #F93E35;
}

.footer-bg {
    padding: 50px 0;
    background-color: #222;
}

.copyright {
    color: #fff;
    text-align: right;
    font-size: 18px;
}

/* --------------------------- */
/* FOOTER */
/* --------------------------- */
