<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* about */
.about-box {
    width: 80%;
}

.page-section h3.about-text {
    font-style: inherit;
    letter-spacing: 0.2rem;
    line-height: revert;
}

.service-container {
    background-color: #edeeef;
    margin: 1%;
    width: 31%;
    padding: 1.5rem;
    font-family: 'Noto Serif TC';
}

.service-num {
    display: flex;
    justify-content: right;
    opacity: 0.8;
}

.service-num .title {
    margin-right: 1rem;
}

.service-num .num {
    width: 4vw;
    height: 4vw;
    font-size: 2vw;
    line-height: 3.5vw;
    border: 1px solid #0000008c;
}

.service-icon {
    margin: 2rem auto;
    opacity: 0.8;
    width: 100px;
}

.service-icon img {
    width: 100%;
}

.service-item {
    text-align: left;
    opacity: 0.8;
}

.service-heading {
    border-bottom: 1px solid #fff;
}

.service-heading .title {
    font-size: 2vw;
    margin-bottom: 0.2rem;
}

.service-heading .subtitle {
    font-size: 1vw;
    margin-bottom: 1rem;
}

.service-content {
    list-style: none;
    margin: 1rem 0;
    padding: 0;
    font-size: 15px;
}

.service-content li {
    display: inline-block;
    margin-right: 0.5rem;
}

@media (max-width: 1200px) {
    .service-container {
        position: relative;
        display: flex;
        justify-content: space-between;
    }

    .service-num {
        justify-content: space-between;
        position: absolute;
        top: 1.5rem;
        width: calc(100% - 3rem);
    }

    .service-icon {
        /* margin: 2rem 2rem 2rem 1rem; */
        width: 30%;
        display: flex;
        align-items: center;
    }

    .service-icon img {
        width: 100%;
    }

    .service-item {
        margin-top: 2rem;
        margin-left: 1rem;
        width: 60%;
    }
}

@media (max-width: 960px) {
    .service-container {
        position: relative;
        display: block;
    }

    .service-num {
        justify-content: right;
        position: relative;
        top: 0;
        width: 100%;
    }

    .service-icon {
        width: 80px;
        display: flex;
        align-items: center;
    }

    .service-item {
        margin-top: 2rem;
        margin-left: 0;
        width: 100%;
    }

    .service-heading .title {
        font-size: 3vw;
    }
}

@media (max-width: 768px) {
    .about-box {
        width: 80%;
        margin: 0 auto;
    }

    .service-container {
        width: 100%;
    }

    .service-container {
        position: relative;
        display: flex;
        justify-content: space-between;
    }

    .service-num {
        justify-content: space-between;
        position: absolute;
        top: 1.5rem;
        width: calc(100% - 3rem);
    }

    .service-icon {
        /* margin: 2rem 2rem 2rem 1rem; */
        width: 30%;
        display: flex;
        align-items: center;
    }

    .service-icon img {
        width: 100%;
    }

    .service-item {
        margin-top: 2rem;
        margin-left: 1rem;
        width: 60%;
    }

    /* font-size */
    .service-num .num {
        width: 60px;
        height: 60px;
        font-size: 36px;
        line-height: 53px;
    }

    .service-heading .title {
        font-size: 30px;
    }

    .service-heading .subtitle {
        font-size: 14px;
    }
}


/* awards */
.awards-container {
    position: absolute;
    width: 100%;
}

.awards-list {}

.awards-items {
    background-color: #FBB03B;
    padding: 5px 10px;
    font-weight: 900;
    font-family: 'Noto Serif TC';
}

.awards-items:nth-child(2) {
    background-color: #FBD285;
}

.bg-awards {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
}

.bg-awards::before {
    content: ' ';
    display: block;
    position: absolute;
    left: 2rem;
    top: 2rem;
    width: calc(100% - 4rem);
    height: calc(100% - 4rem);
    opacity: 0.2;
    /*background-image: url(../images/header-bg.png);*/
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

/* hiring */
.bg-hiring {
    background-image: url(../images/bg-dark-cloud.jpg);
    background-size: cover;
}

.hiring-container .section-title {
    margin: 0 auto;

}

.hiringcaption-heading {
    font-size: 18px;
    font-family: 'Noto Serif TC';
    color: #fff;
    text-decoration: none;
}

.hiringcaption-subheading {
    color: #FBD285;
    text-decoration: none;
}

.hiringitem {
    padding: 2.5rem 1rem;
    border-radius: 5px;
    background-color: #00000057;
    box-shadow: 0 0 8px #ffffff9c;
}

.hiringitem:hover {
    cursor: pointer;
    background-color: #fbb03b36;
    box-shadow: 0 0 0px #ffd073cf;
}

@media(max-width: 575px) {
    .hiringitem {
        max-width: 350px;
        margin: 0 auto;
    }

}</pre></body></html>