@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=El+Messiri:wght@400;700&family=Noto+Sans+TC:wght@300;400;500;600;700;900&display=swap');
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Noto Sans TC', sans-serif;
}


/* Grid System */

.container-fluid {
    width: 100%;
}

/* header */
.header-sec {
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 100;
    padding: 20px 50px 20px 20px;
    transition: 0.3s;
}
.header-sec.sticky {
    position: fixed;
    background-color: rgba(0, 0, 0, 0.15);
}
.header-cnt {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.mobile-navi-btn {
    display: none;
}
.logo {
    display: block;
    width: 240px;
}
.navi-ul {
    display: flex;
}
.navi-ul > li {
    list-style: none;
    margin: 0 80px 0 0;
}
.navi-ul > li:nth-last-child(1) {
    margin: 0;
}
.navi-ul > li > a {
    font-size: 24px;
    color: #002855;
    text-decoration: none;
    transition: 0.3s;
}
.navi-ul > li > a:hover {
    color: #255388;
}

/* banner */
.banner-sec {
    position: relative;
}
.banner-sec > picture {
    width: 100%;
    padding-bottom: 49.8%;
    overflow: hidden;
}
.banner-sec > picture .banner-pic {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}
.banner-words {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    top: 35.67%;
    left: 6.77%;
    z-index: 2;
}
.banner-words > h2 {
    font-size: 60px;
    color: #fff;
    text-shadow: 4px 0 #255388;
    margin: 0 0 14px 0;
}
.banner-words > p {
    font-weight: 700;
    font-size: 40px;
    color: #FFC814;
    margin: 0 0 55px 0;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5),0 0 15px rgba(0, 0, 0, 0.5),0 1px 0px rgba(0, 0, 0, 0.2);
}
.banner-words > a {
    display: block;
    text-decoration: none;
    padding: 14px 52px;
    color: #fff;
    font-size: 24px;
    background: linear-gradient(90deg, #070E20, #255388);
    border-radius: 32px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
    transition: 0.3s;
}
.banner-words > a:hover {
    background: linear-gradient(90deg, #FFC300, #FFC814);;
    color: #255388;
    box-shadow: 0 6px 6px rgba(0, 0, 0, 0.16);
    transform: translateY(-2px);
}

/* 服務項目 */
.service-sec {
    padding: 120px 13.59375% 210px 13.59375%;
    display: flex;
    justify-content: center;
    position: relative;
    background-image: url(/asset/img/bg_1.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}
.service-cnt {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    position: relative;
    justify-content: space-between;
}
.srv-box {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: calc((100% - 60px) / 3);
    padding: 30px 30px 32px 30px;
    margin: 0 0 30px 0;
    background-color: rgba(228, 229, 233, 0.8);
    box-shadow: 0 3px 10px rgba(7, 14, 32, 0.1);
}
.srv-box > img {
    display: block;
    margin: 0 0 8px 0;
}
.srv-box > h3 {
    font-size: 36px;
    font-weight: 700;
    color: #070E20;
    margin: 0 0 15px 0;
}
.srv-box > p {
    font-size: 24px;
    font-weight: 400;
    color: #070E20;
}
.srv-box.double-column {
    width: calc((100% - 30px) / 3 * 2);
    margin-left: 30px;
    flex-grow: 1;
}
.srv-box.title {
    width: calc((100% - 60px) / 3);
    background-color: transparent;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 0 transparent;
}
.srv-box.title > h3 {
    font-size: 50px;
    font-weight: 700;
    color: #255388;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.srv-box.title > h3::after {
    display: block;
    content: '';
    width: 52px;
    height: 6px;
    background-color: #BDD0DE;
    transform: skewX(-30deg);
}
.srv-box.sky-blue {
    background-color: rgba(65,125,194,0.8);
}
.srv-box.sky-blue > h3 {
    color: #fff;
}
.srv-box.sky-blue > p {
    color: #fff;
}
.srv-box.sea-blue {
    background-color: rgba(37,83,136,0.8);
}
.srv-box.sea-blue > h3 {
    color: #fff;
}
.srv-box.sea-blue > p {
    color: #fff;
}

/* 關於我們 */
.aboutus-sec {
    position: relative;
    width: 100%;
    display: flex;
}
.aboutus-cnt {
    width: 60%;
    background-color: #234D7E;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    z-index: 2;
    transform: translateY(-24%);
    border-right: 1px solid #234D7E;
}
.aboutus-cnt::after {
    width: 24.65%;
    height: 100%;
    display: block;
    content: '';
    clip-path: polygon(50% 0%, 0 0, 0 99%);
    background-color: #234D7E;
    position: absolute;
    top: 0;
    left: 100%;
}
.aboutus-cnt > h3 {
    width: 100%;
    font-size: 50px;
    font-weight: 700;
    color: #fff;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 132px 80px 40px 80px;
}
.aboutus-cnt > h3::after {
    display: block;
    content: '';
    width: 52px;
    height: 6px;
    background-color: #FFC814;
    transform: skewX(-30deg);
}
.aboutus-cnt > p {
    font-size: 24px;
    color: #BDD0DE;
    width: 100%;
    margin: 0 80px 123px 80px;
}
.aboutus-cnt > p > span {
    font-size: 34px;
    font-weight: 500;
    color: #FFC300;
    display: inline-block;
    margin-right: 8px;
}
.aboutus-bg {
    display: block;
    position: absolute;
    height: 100%;
    z-index: 1;
    top: 0;
    right: 0;
}

/* 合作洽談 */
.contact-sec {
    display: flex;
    justify-content: center;
    padding: 120px 13.5%;
    position: relative;
    width: 100%;
}
.contact-cnt {
    width: 100%;
    box-shadow: 0 3px 10px rgba(7,14,32,0.2);
    display: flex;
    position: relative;
}
.contact-cnt::before {
    width: 32.68%;
    display: block;
    content: '';
    background-image: url(/asset/img/bg_3.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    flex-shrink: 0;
}
.form-wrapper {
    padding: 50px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-grow: 1;
}
.form-wrapper > h3 {
    width: 100%;
    font-size: 50px;
    font-weight: 700;
    color: #255388;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 0 40px 0;
}
.form-wrapper > h3::after {
    display: block;
    content: '';
    width: 52px;
    height: 6px;
    background-color: #BDD0DE;
    transform: skewX(-30deg);
}
.form-wrapper > span {
    font-size: 24px;
    color: #BDD0DE;
    position: absolute;
    top: 50px;
    right: 50px;
    display: flex;
}
.form-wrapper > span::before {
    display: block;
    content: '* ';
    color: #FFC814;
}
.contact-form {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.contact-form > ul {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    position: relative;
}
.form-item {
    list-style: none;
    width: calc((100% - 50px) / 2);
    position: relative;
    display: flex;
    flex-wrap: wrap;
    margin: 0 0 20px 0;
}
.form-item.full-w {
    width: 100%;
}
.form-item.haveto > label::after {
    display: block;
    content: ' *';
    color: #FFC814;
}
.form-item > label {
    width: 100%;
    font-size: 24px;
    color: #333333;
    margin: 0 0 13px 0;
    display: flex;
}
.form-item > input {
    width: 100%;
    font-size: 24px;
}
.form-item > textarea {
    width: 100%;
    font-size: 24px;
}
.form-item > input[type="text"],
.form-item > input[type="email"],
.form-item > textarea {
    padding: 20px;
    background-color: #F8F8F8;
    border: 0;
}
.form-item > div {
    display: flex;
    flex-wrap: wrap;
}
.form-item > div > span {
    display: flex;
    margin: 0 20px 19px 0;
    align-items: center;
}
.form-item > div > span > input[type="checkbox"] {
    display: none;
}
.form-item > div > span > input[type="checkbox"]  + label {
    display: flex;
    align-items: center;
    cursor: pointer;
}
.form-item > div > span > input[type="checkbox"]  + label::before {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    content: '';
    margin: 0 10px 0 0;
    width: 24px;
    height: 24px;
    border: 2px solid #fff;
    background-color: #f8f8f8;
    transition: 0.3s;
}
.form-item > div > span > input[type="checkbox"]:checked  + label::before {
    background: linear-gradient(0deg, #070E20, #255388);
    content: '✓';
    color: #fff;
}
.submit-btn {
    border: 0;
    display: block;
    padding: 14px 52px;
    color: #fff;
    font-size: 24px;
    background: linear-gradient(90deg, #070E20, #255388);
    border-radius: 32px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
    cursor: pointer;
    transition: 0.3s;
}
.submit-btn:hover {
    background: linear-gradient(90deg, #FFC300, #FFC814);;
    color: #255388;
    box-shadow: 0 6px 6px rgba(0, 0, 0, 0.16);
    transform: translateY(-2px);
}

/* footer */
.footer-sec {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 90px 17.7% 86px 17.7%;
    position: relative;
    background-image: url(/asset/img/bg_4.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    flex-wrap: wrap;
}
.footer-cnt {
    display: flex;
    position: relative;
    width: 100%;
}
.footer-com-cis {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    margin: 0 12.1875% 0 0;
}
.footer-com-cis > img {
    display: block;
    width: 120px;
    margin: 0 0 16px 0;
}
.footer-com-cis > h3 {
    font-size: 50px;
    color: #fff;
    font-weight: 700;
}
.footer-com-cis > h6 {
    font-size: 30px;
    color: #fff;
    font-weight: 700;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    white-space: nowrap;
    width: 100%;
}
.footer-com-cis > h6::before, 
.footer-com-cis > h6::after {
    display: block;
    content: '';
    width: calc(29.6% - 12px);
    height: 2px;
    background-color: #fff;
}
.base-info {
    display: flex;
    flex-direction: column;
    margin: 0 0 24px 0;
}
.base-info > li {
    font-size: 24px;
    color: #BDD0DE;
    list-style: none;
    margin: 0 0 16px 0;
}
.base-info > li > span {
    display: inline-block;
    font-size: 30px;
    color: #fff;
    margin: 0 20px 0 0;
}
.social-set {
    display: flex;
}
.social-ico {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    border-radius: 5px;
    background-color: #FFC300;
    transition: 0.3s;
    margin: 0 20px 0 0;
}
.social-ico:hover {
    background-color: #255388;
}
.copyright {
    width: 100%;
    background-color: #070E20;
    padding: 25px 10px 28px 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    color: #BDD0DE;
}
.gotop-btn {
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 0;
    background-color: #255388;
    color: #fff;
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 100;
    cursor: pointer;
    font-size: 20px;
    font-weight: 700;
    line-height: 22px;
    transition: 0.3s;
}
.gotop-btn:hover {
    background-color: #FFC300;
}

/* Media Query */
@media (max-width: 1219.98px) {
    .header-sec {
        padding: 10px 30px 10px 30px;
    }
    .logo {
        width: 180px;
    }
    .navi-ul > li > a {
        font-size: 20px;
    }
    .service-sec {
        padding: 120px 30px 210px 30px;
    }
    .srv-box {
        padding: 20px;
    }
    .srv-box > h3 {
        font-size: 32px;
    }
    .srv-box > p {
        font-size: 18px;
    }
    .aboutus-cnt > h3 {
        margin: 60px 30px 40px 30px;
    }
    .aboutus-cnt > p {
        font-size: 18px;
        margin: 0 30px 60px 30px;
    }
    .aboutus-cnt > p > span {
        font-size: 28px;
        margin-right: 4px;
    }
    .contact-sec {
        padding: 120px 30px;
    }
    .form-wrapper > span {
        font-size: 18px;
    }
    .form-item {
        align-self: flex-start;
    }
    .form-item > label {
        font-size: 18px;
        margin: 0 0 8px 0;
        align-self: flex-start;
    }
    .form-item > input {
        font-size: 18px;
        align-self: flex-start;
    }
    .form-item > input[type="text"], 
    .form-item > input[type="email"], 
    .form-item > textarea {
        padding: 10px;
    }
    .form-item > textarea {
        font-size: 18px;
    }
    .footer-sec {
        padding: 90px 30px;
    }
    .footer-cnt {
        justify-content: space-around;
    }
    .footer-com-cis {
        margin: 0 24px 0 0;
    }
    .footer-com-cis > h3 {
        font-size: 42px;
    }
    .footer-com-cis > h6 {
        font-size: 26px;
    }
    .base-info > li {
        font-size: 18px;
        margin: 0 0 10px 0;
    }
    .base-info > li > span {
        font-size: 24px;
    }
    .copyright {
        font-size: 16px;
        padding: 16px 10px;
    }
}
@media (max-width: 1019.98px) {
    .navi-ul > li {
        margin: 0 40px 0 0;
    }
}
@media (max-width: 991.98px) {
    .header-sec {
        padding: 10px 20px;
    }
    .banner-words {
        top: 25%;
        left: 30px;
    }
    .banner-words > h2 {
        font-size: 48px;
        margin: 0 0 8px 0;
    }
    .banner-words > p {
        font-size: 28px;
        margin: 0 0 14px 0;
    }
    .banner-words > a {
        padding: 10px 20px;
        font-size: 16px;
    }
    .srv-box.title > h3 {
        font-size: 42px;
    }
    .service-sec {
        padding: 60px 20px 120px 20px;
    }
    .srv-box {
        width: calc((100% - 40px) / 3);
        margin: 0 0 20px 0;
    }
    .srv-box.title {
        width: calc((100% - 40px) / 3);
    }
    .srv-box.double-column {
        width: calc((100% - 40px) / 3 * 2);
        flex-grow: 1;
        margin-left: 20px;
    }
    .aboutus-cnt {
        width: 80%;
        transform: translateY(-60px);
        background-color: RGBA(35, 77, 126, 0.9);
        border-right: 1px solid RGBA(35, 77, 126, 0.01);
    }
    .aboutus-cnt::after {
        background-color: RGBA(35, 77, 126, 0.9);
    }
    .aboutus-cnt > h3 {
        margin: 40px 20px 30px 20px;
        font-size: 42px;
    }
    .aboutus-cnt > p {
        margin: 0 20px 40px 20px;
    }
    .aboutus-bg {
        width: auto;
    }
    .contact-sec {
        padding: 60px 20px;
        background-image: url(/asset/img/bg_3.jpg);
        background-size: cover;
        background-position: 50% 50%;
    }
    .contact-cnt::before {
        position: absolute;
        z-index: 1;
        width: 100%;
        opacity: 0.2;
    }
    .form-wrapper {
        z-index: 2;
        padding: 20px;
        background-color: rgba(255,255,255,0.9);
        backdrop-filter: blur(5px);
    }
    .form-wrapper > h3 {
        font-size: 42px;
    }
    .form-wrapper > span {
        top: 20px;
        right: 20px;
    }
    .form-item {
        width: 100%;
    }
    .form-item > input[type="text"], 
    .form-item > input[type="email"], 
    .form-item > textarea {
        background-color: #efefef;
    }
    .form-item > div > span > input[type="checkbox"] + label::before {
        background-color: #efefef;
    }
    .submit-btn {
        padding: 10px 20px;
        font-size: 16px;
    }
    .footer-sec {
        padding: 60px 20px;
    }
    .footer-com-cis > h3 {
        font-size: 32px;
    }
    .footer-com-cis > h6 {
        font-size: 20px;
    }
    .base-info > li > span {
        font-size: 18px;
        margin: 0 8px 0 0;
    }
}
@media (max-width: 775.98px) {
    .mobile-navi-btn {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 40px;
        height: 40px;
        background-color: rgba(255,255,255,0.9);
        cursor: pointer;
        position: relative;
        z-index: 101;
        transition: 0.3s;
    }
    .mobile-navi-btn > span {
        display: block;
        width: 26px;
        height: 1px;
        background-color: #002855;
        position: relative;
    }
    .mobile-navi-btn > span::before,
    .mobile-navi-btn > span::after {
        display: block;
        content: '';
        width: 26px;
        height: 1px;
        background-color: #002855;
        transition: 0.3s;
    }
    .mobile-navi-btn > span::before {
        transform: translateY(-8px) rotate(0);
    }
    .mobile-navi-btn > span::after {
        transform: translateY(8px) rotate(0);
    }
    .mobile-navi-btn.active {
        background-color: transparent;
    }
    .mobile-navi-btn.active > span {
        width: 1;
        height: 1;
        background-color: transparent;
    }
    .mobile-navi-btn.active > span::before {
        transform: translateY(0px) rotate(45deg);
    }
    .mobile-navi-btn.active > span::after {
        transform: translateY(0px) rotate(-45deg);
    }
    .navi-ul {
        display: flex;
        flex-direction: column;
        transform: scale(0);
        transform-origin: top right;
        transition: 0.3s;
        position: fixed;
        top: 0px;
        right: 0px;
        opacity: 0;
        transition: 0.3s;

    }
    .navi-ul.active {
        padding: 40px;
        background-color: rgba(255,255,255,0.5);
        backdrop-filter: blur(5px);
        box-shadow: 0 0 10px rgba(0,0,0,0.1);
        padding: 80px 80px 60px 60px;
        transform: scale(1);
        opacity: 1;
    }
    .navi-ul > li {
        margin: 0 0 40px 0;
    }
    .navi-ul > li > a {
        padding: 8px 32px;
        border-radius: 30px;
        background: linear-gradient(90deg, #070E20, #255388);
        color: #fff;
        font-size: 16px;
    }
    .srv-box.title {
        width: 100%;
    }
    .srv-box.double-column {
        width: 100%;
        margin-left: 0;
    }
    .srv-box {
        width: calc((100% - 20px) / 2);
    }
}
@media (max-width: 697.98px) {
    .logo {
        width: 120px;
    }
    .banner-words > h2 {
        font-size: 36px;
    }
    .banner-words > p {
        font-size: 22px;
    }
    .service-sec {
        padding: 40px 20px 100px 20px;
    }
    .srv-box.title > h3 {
        font-size: 36px;
        margin: 0 0 10px 0;
    }
    .srv-box > h3 {
        font-size: 28px;
    }
    .srv-box > p {
        font-size: 16px;
    }
    .aboutus-cnt > h3 {
        font-size: 36px;
    }
    .aboutus-cnt > p {
        font-size: 16px;
    }
    .footer-cnt {
        flex-direction: column;
    }
    .footer-com-cis {
        margin: 0 0 24px 0;
    }
    .footer-com-cis > h6 {
        justify-content: center;
    }
    .footer-com-cis > h6::before, 
    .footer-com-cis > h6::after {
        flex-shrink: 1;
    }
    .footer-com-cis > h6::before {
        margin: 0 6px 0 0;
    }
    .footer-com-cis > h6::after {
        margin: 0 0 0 6px;
    }
    .base-info {
        align-items: center;
    }
    .social-set {
        justify-content: center;
    }
    .social-ico:nth-last-child(1) {
        margin: 0;
    }
    .copyright {
        font-size: 12px;
    }
}
@media (max-width: 539.98px) {
    .banner-sec > picture .banner-pic {
        width: 100%;
        height: 500px;
    }
    .srv-box {
        width: 100%;
    }
}
@media (max-width: 421.98px) {
    .navi-ul.active {
        width: 100%;
        align-items: center;
    }
    .gotop-btn {
        font-size: 14px;
        width: 40px;
        height: 40px;
        line-height: 16px;
    }
}
@media (max-width: 351.98px) {}
@media (max-width: 279.98px) {}