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

html {
    scroll-behavior: smooth;
}

body {}

img {
    max-width: 100%;
}

a {
    text-decoration: none;
}

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


h2 {
    color: #6A6A6A;
    font-size: 1.25rem;
    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: #2cbfbf;*/
    /*    font-size: 1.25rem;*/
    font-weight: 700;
    line-height: 150%;
    margin-bottom: 1rem;
}

.pBoldCyan {
    color: #2cbfbf;
}

.pBoldMagenta {
    color: #EB04FF;
}

.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: 1rem;
}

li:before {
    content: "\2022";
    margin-right: 0.75rem;
    font-size: 2rem;
    color: #4A4A4A;
}

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;
}

.titleImg {
    /*    border: 1px solid black;*/
    display: flex;
    justify-content: center;
}

@media (max-width: 992px) {
    .titleImg {
        margin-bottom: 1rem;
    }
}

.titleImg img {
    max-width: 100%;
    max-height: 42px;
}




@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;
}


.hero {
    /*    background-color: antiquewhite;*/
    height: 800px;
    margin-bottom: 8rem;
    position: relative;
    /*    margin-bottom: 2rem;*/
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero .heroBackground {
    min-height: 100%;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    object-fit: cover;
    z-index: -1;
}

.hero .heroContent {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    /*    border: 1px solid black;*/
    /*    top: 55vh;*/
}

.hero .heroContent .heroImage {
    width: 600px;
    max-width: 80%;
    /*    margin-bottom: 2rem;*/
    /*    border: 1px solid black;*/
}

.hero .heroContent .heroLogo {
    width: 500px;
    max-width: 80%;
    margin-bottom: 2rem;
    /*    border: 1px solid black;*/
}


.hero .heroContent h1,
.hero .heroContent h2,
.hero .heroContent p {
    margin-bottom: 0.25rem;
}











.handheldConsole img {
    margin-top: 1rem;
    margin-bottom: 5rem;
}

.handheldCompare img {
    margin-top: 1rem;
    margin-bottom: 5rem;
}


.painPointTitle {
    display: flex;
    align-items: center;

}

.painPointNum {
    color: #6A6A6A;
    font-size: 1.5rem;
    font-weight: 600;
    width: 3rem;
    height: 3rem;
    position: relative;
    /*    background-color: brown;*/
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 1rem;
}

.painPointNum::before {
    content: "";
    width: 25px;
    height: 25px;
    border-top: 3px solid #0FF;
    border-left: 3px solid #0FF;
    position: absolute;
    top: 4px;
    left: 4px;
}

.painPointNum::after {
    content: "";
    width: 25px;
    height: 25px;
    border-right: 3px solid #EB00FF;
    border-bottom: 3px solid #EB00FF;
    position: absolute;
    bottom: 4px;
    right: 4px;
}

.painPointText {
    /*    background-color: bisque;*/
}

.painPointText h2 {
    margin-bottom: 0;
}

.painPointCard p {
    margin-top: 0.25rem;
    margin-left: 4rem;
}



.painPointPicture {
    /*    border: 1px solid black;*/
}

.painPointPicture img {
    width: 100%;
    margin-bottom: 3rem;
    border-radius: 8px;
}



.designSolutionTitle {
    color: #6A6A6A;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.02rem;
    line-height: 150%;
    margin-bottom: 1rem;
    /*    background-color: brown;*/
    text-align: center;
    position: relative;
    overflow-x: hidden;
}

.designSolutionTitle::before {
    content: "";
    height: 8px;
    width: 200px;
    background: linear-gradient(270deg, #0FF 0%, rgba(217, 217, 217, 0.00) 100%);
    position: absolute;
    top: 50%;
    transform: translateY(-50%) translateX(-105%);
}

.designSolutionTitle::after {
    content: "";
    height: 8px;
    width: 200px;
    background: linear-gradient(90deg, #EB00FF 0%, rgba(217, 217, 217, 0.00) 100%);
    position: absolute;
    top: 50%;
    transform: translateY(-50%) translateX(5%);
}


.designSolutionImage img {
    /*    background-color: brown;*/
    /*    border: 1px solid black;*/
    width: 100%;
    height: auto;
    margin-bottom: 3rem;
    border-radius: 8px;
}

@media (max-width: 992px) {
    .designSolutionImage img {
        margin-bottom: 0.5rem;
    }

    .designSolutionText {
        /*    background-color: brown;*/
        margin-bottom: 3rem;
    }
}





.conceptImage img {
    width: 100%;
    margin-bottom: 1rem;
    border-radius: 8px;
}

.endingImage img {
    width: 100%;
    margin-bottom: 3rem;
    border-radius: 8px;
}



.endingPhase {
    text-align: center;
}









/*OTHER PROJECT SECTION--START--*/
.otherProject {
    border-top: 1px solid #AAA;
    padding: 2rem 0rem;
    /*    background-color: antiquewhite;*/
}

.otherProject h2 {
    color: #1F2123;
}

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

.otherProjectCard {
    /*    margin: 0.5rem 1rem;*/
    height: 100%;
    padding: 0.6rem 1.2rem;
    border-radius: 16px;
    border: 1px solid #FFF;
    background: linear-gradient(150deg, #FFF 11.98%, #FDFCFC 100%);
    display: flex;
    flex-direction: row;
    box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.10);
    transition: 0.3s ease;
    /*    justify-content: space-between;*/
}

.otherProjectCard:hover {
    box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.25);
}

.otherProjectCardImage {
    /*        background-color: blue;*/
    width: 30%;
    height: 100%;
    margin-right: 1rem;
    display: flex;
}

.otherProjectCardImage img {
    max-width: 100%;
    object-fit: contain;
}

.otherProjectCardText {
    width: 80%;
    /*    flex-grow: 1;*/
    /*    background-color: antiquewhite;*/
}

.cardTitle {
    font-weight: bold;
}

/*OTHER PROJECT SECTION--END--*/













/*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: #EEEEEE;
}

.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: #808080;
    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--*/
