/*GENERAL SETTING--START--*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #eeebe2;
}

a {
    text-decoration: none;
}

h1 {
    color: #656565;
    font-size: 1.75rem;
    font-weight: 500;
    letter-spacing: 0.02rem;
    line-height: 150%;
    margin-bottom: 1.25rem;
    padding: 0 1rem;
    text-align: center;
    /*        border: 1px solid red;*/
}

h2 {
    color: #1c1c1c;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.02rem;
    line-height: 150%;
    /*    margin-bottom: 1rem;*/
}

p {
    color: #1F2123;
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 150%;
    margin-bottom: 1rem;
    text-align: justify;
}

/*span粗體使用*/
/*
.pBold {
    color: #F98600;
    font-size: 1.25rem;
    font-weight: bold;
    line-height: 150%;
    margin-bottom: 1rem;
}
*/

.note {
    color: #808080;
    font-size: 1rem;
    font-weight: 400;
    line-height: 150%;
    margin-bottom: 0.5rem;
}

/*同行文字內塞圖，logo使用*/
p img {
    height: 1.25rem;
    object-fit: contain;
}


ul {
    list-style-type: none;
    padding-left: 2em;

}

li:before {
    content: "\2022";
    margin-right: 1rem;
    font-size: 2rem;
}

li {
    color: #1F2123;
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 150%;
    text-indent: -1.5rem;
    text-align: justify;
}

li a img {
    margin-left: 0.5rem;
}




@media(max-width: 576px) {
    h1 {
        font-size: 1.375rem;
    }

    h2 {
        font-size: 1.125rem;
    }

    p {
        font-size: 1rem;
    }

    .pBold {
        font-size: 1rem;
    }

    .note {
        font-size: 0.75rem;
    }

    li {
        font-size: 1rem;
    }
}

.divider {
    height: 4rem;
    width: auto;
}




/*GENERAL SETTING--END--*/






/*NAVBAR(Responsive)--START--*/
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 0 10%;
    display: flex;
    z-index: 100;
    justify-content: flex-end;
    align-items: center;
    font-size: 1rem;
    font-weight: 500;
    /*    background-color: grey;*/
}

.navbarLink {
    display: flex;
    align-items: center;
    /*    background-color: brown;*/
}

.navbarHome {
    width: auto;
    height: auto;
    margin: 1rem 0.5rem;
    padding: 0.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 2rem;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: linear-gradient(149deg, rgba(255, 255, 255, 0.21) 0%, rgba(239, 239, 239, 0.7) 100%);
    box-shadow: 0px 2px 5px -1px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(3px);
    transition: 0.3s ease;
}

.navbarHome:hover {
    box-shadow: 0 3px 0.4rem rgba(106, 106, 106, 0.5);
}

.navbarHome .navbarHomeLogo {
    width: 3rem;
    height: 1.2rem;
    margin-right: 0.1rem;
    background-image: url(../images/navbarHomeLogo.png);
    background-size: contain;
    /* 图像大小适应元素并覆盖 */
    background-repeat: no-repeat;
    /* 不重复显示背景图像 */
    background-position: center center;
    /* 图像在元素中心居中显示 */
}

.navbarHome .navbarHomeText {
    color: #6d6d6d;
    margin-right: 0.2rem;
}

.langIcon {
    width: auto;
    height: auto;
    margin: 1rem 0.5rem;
    padding: 0.5rem 0.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 2rem;
    position: relative;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: linear-gradient(149deg, rgba(255, 255, 255, 0.21) 0%, rgba(239, 239, 239, 0.7) 100%);
    box-shadow: 0px 2px 5px -1px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(3px);
    transition: 0.3s ease;
}

.langIcon:hover {
    box-shadow: 0 3px 0.4rem rgba(106, 106, 106, 0.5);
}


.langOptions {
    position: absolute;
    top: 100%;
    right: 7.5%;
    min-width: calc(5% + 3rem);
    height: 0;
    border-radius: 16px;
    background: linear-gradient(149deg, rgba(255, 255, 255, 0.6) 0%, rgba(239, 239, 239, 0.8) 100%);
    box-shadow: 0px 2px 5px -1px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0);
    /*    backdrop-filter: blur(3px);*/
    transition: 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0);
}

.langOptions a {
    color: #6d6d6d;
    text-decoration: none;
    cursor: pointer;
    user-select: none;
    height: 2.5rem;
    margin: 1rem 0;
    padding: 0 1.25rem;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateY(-30px);
    opacity: 0;
    transition: 0.2s ease;
}

.langOptions a:hover {
    color: #2266ff;
}

#langCheck {
    display: none;
}

#langCheck:checked ~ .langOptions {
    height: 8rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(3px);
}

#langCheck:checked ~ .langOptions a {
    transform: translateY(0);
    opacity: 1;
}

/*BREAKPOINT FOR NAVBAR*/
@media (max-width: 992px) {
    .navbar {
        padding: 0 5%;
    }

    .langOptions {
        right: 2%;
    }
}

/*NAVBAR(Responsive)--END--*/





/*GO TO TOP BUTTON--START--*/
.goTopBtn {
    width: 2.33rem;
    height: 2.33rem;
    padding: 0.5rem 0.5rem;
    display: flex;
    z-index: 100;
    justify-content: center;
    align-items: center;
    border-radius: 2rem;
    position: fixed;
    bottom: 1.5rem;
    right: calc(10% + 0.5rem);
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: linear-gradient(149deg, rgba(255, 255, 255, 0.21) 0%, rgba(239, 239, 239, 0.7) 100%);
    box-shadow: 0px 2px 5px -1px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(3px);
    transition: 0.3s ease;
}

/*BREAKPOINT FOR GO TO TOP BUTTON*/
@media (max-width: 992px) {
    .goTopBtn {
        right: calc(5% + 0.5rem);
    }
}

.goTopBtn:hover {
    box-shadow: 0 3px 0.4rem rgba(106, 106, 106, 0.5);
}

/*GO TO TOP BUTTON--END--*/




.section {
    margin-bottom: 14rem;
}

@media (max-width: 576px) {
    .section {
        margin-bottom: 10rem;
    }
}

.sectionTitle {
    display: flex;
    justify-content: center;
}




.spinImage {
    display: flex;
    justify-content: center;
}

.spinImage img {
    width: 100%;
    max-width: 500px;
}


.downArrow {
    display: flex;
    justify-content: center;
}




.card {
    border: 1px solid #ffffff;
    border-radius: 16px;
    /*    padding: 8px;*/
    text-align: center;
    transition: 0.3s ease;
    margin-bottom: 2.5rem;
}

.card:hover {
    box-shadow: 0px 4px 14px 0px rgba(0, 0, 0, 0.15);
}

.card h2 {
    margin: 0.5rem auto;
}

.cardImg {
    width: 100%;
    height: 160px;
    background-color: rgba(255, 255, 255, 0.4);
    border-radius: 16px 16px 0 0;
    overflow: hidden;
    display: flex;
    justify-content: center;
}

.cardImg img {
/*    object-fit: cover;*/
}


.h2_notyet {
    color: #969696;
}







.copyRightText {
    text-align: center;
    color: #3d3d3d;
    font-size: 0.75rem;
}

.imgLogo {
    width: 80px;
    margin: 0.5rem auto;
}

.imgLogo img {
    max-width: 100%;
}


.blenderImage {
    display: none;
}








/*FOOTER--START--*/
.footer {
    width: 100%;
    height: 10vw;
    position: relative;
    background-color: rgba(255, 255, 255, 0.1);
}

svg {
    width: 100%;
    height: 100%;
    /*    z-index: -1;*/
}

svg text {
    font-family: "Roboto";
    font-size: 7vw;
    font-weight: bold;
}

svg rect {
    height: 100%;
    fill: white;
}

svg > rect {
    -webkit-mask: url(#mask);
    mask: url(#mask);
    fill: #e1e5e4;
}

.footer .footerInfo {
    display: flex;
    align-items: center;
    position: absolute;
    left: 20%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    /*        background-color: #15674b;*/

}

.footer .footerInfo .footerLogo {
    margin-right: 15%;
    /*        background-color: #5e1567;*/
}

.footer .footerInfo .footerLogo .logo {
    height: 7rem;
    /*            background-color: #f5357f;*/
}

.footer .footerInfo .footerText p {
    color: #2e2e2e;
    white-space: nowrap;
    font-size: 0.75rem;
    line-height: 1.2rem;
    /*    background-color: #2c2886;*/
    align-items: center;
}

@media (max-width: 768px) {
    .footer {
        height: 25vw;
    }

    .footer .footerInfo {
        flex-direction: column;
        position: absolute;
        left: 50%;
        top: 40%;
        transform: translate(-50%, -50%);
    }

    .footer .footerInfo .footerLogo {
        margin-right: 0;
        height: 3rem;

    }

    .footer .footerInfo .footerLogo .logo {
        height: 4rem;
    }

    .footer .footerInfo .footerText {
        text-align: center;
        font-size: 0.5rem;
        line-height: 1rem;
    }
}

/*FOOTER--END--*/
