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

html {
    scroll-behavior: smooth;
}

body {}

a {
    text-decoration: none;
}

h1 {
    color: #14A9E2;
    font-size: 1.75rem;
    font-weight: 600;
    letter-spacing: 0.02rem;
    line-height: 150%;
    margin-bottom: 1.25rem;
    padding: 0 1rem;
    display: inline-block;
    position: relative;
    background-color: white;
    /*    border: 1px solid red;*/
}

h1::before {
    content: "";
    position: absolute;
    z-index: -1;
    height: 100%;
    width: calc(100% + 8rem);
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    border-bottom: 0.15rem solid #14A9E2;
}


h2 {
    color: #007CB6;
    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;
}



/*HERO--START--*/


.hero {
    width: 100%;
    background-color: antiquewhite;
}

.hero .heroBanner {
    width: 100vw;
    height: 30vh;
    background-color: #14A9E2;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10%;
    overflow: hidden;
}

.hero .heroBanner .heroImage {
    height: 100%;
    /*    object-fit: contain;*/
}

.heroPhotoRef{
    font-size: 0.5rem;
/*    background-color: brown;*/
    position: absolute;
    right: 5px;
    top: calc(30vh - 1.25rem);
    color:white;
}




.section0 .heroTitle {
    color: #14A9E2;
    text-align: center;
    font-size: 5rem;
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
    letter-spacing: 0.1rem;
    /*    background-color: bisque;*/
    margin-bottom: 10%;
}


.section0 .heroDetail1 {
    text-align: center;
    font-size: 1.75rem;
    font-weight: 600;
    letter-spacing: 0.02rem;
    line-height: 150%;
    margin-bottom: 0.25rem;
    padding: 0 1rem;
}

.section0 .heroDetail2 {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.02rem;
    line-height: 150%;
    margin-bottom: 0.25rem;
}

.section0 .projectDate {
    text-align: center;
}


@media(max-width: 576px) {
    .section0 .heroTitle {
        font-size: 3rem;
    }

    .heroDetail1 {
        font-size: 1.375rem;
    }

    .heroDetail2 {
        font-size: 1.125rem;
    }
    
    .heroPhotoRef {
    font-size: 0.5rem;
    }
}







/*HERO--END--*/





.firstP {
    text-align: center;
}

.section2 .listArea,
.section4 .listArea {
    /*    background-color: brown;*/
    display: flex;
    justify-content: center;
}


.section3 {
    height: auto;
    width: 100vw;
    background-color: #14A9E2;
    background-image: url(../images/TaipeiDomeApp/scene_banner.jpg);
    background-position: right;
    background-repeat: no-repeat;
    background-size: auto 100%;
}

.section3 .lineAll {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /*    background-color: antiquewhite;*/
}

.section3 .line1,
.section3 .line2 {
    text-align: center;
    color: white;
    font-size: 1.75rem;
    font-weight: 600;
    letter-spacing: 0.02rem;
    line-height: 150%;
    margin: 3rem 0;
    padding: 1.5 1rem;
    /*    background-color: brown;*/
}

.section3 .line1 {
    margin-bottom: 0;
}

.section3 .line2 {
    margin-top: 1.5rem;
}


.section5 .designProcessArea {
    margin: 2rem 0rem;
    height: auto;
    /*    background-color: antiquewhite;*/
    display: flex;
    justify-content: center;
    align-items: center;
}

.section5 a {
    width: 20%;
    margin: 1rem;
}

.section5 .designProcessCard {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 6rem;
    width: 100%;
    padding: 1rem 0.5rem;
    border-radius: 16px;
    background-color: white;
    box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.10);
    transition: 0.3s ease;
}

.section5 .designProcessCard h2,
.section5 .designProcessCard p {
    text-align: center;
    margin-bottom: 0rem;
}

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

.section5 .designProcessArrowDown {
    display: none;
}

@media (max-width: 1200px) {
    .section5 .designProcessArea {
        flex-direction: column;
    }

    .section5 a {
        width: 50%;
    }

    .section5 .designProcessArrowRight {
        display: none;
    }

    .section5 .designProcessArrowDown {
        display: block;
    }
}

@media (max-width: 576px) {
    .section5 .designProcessCard {
        height: 4rem;
    }

    .section5 .designProcessArea {
        margin: 0;
    }
}



.section6 h2 {
    text-align: center;
    margin-bottom: 0.2rem;
}

.section6 .note {
    color: #1F2123;
}

.personaCol1,
.personaCol2,
.personaCol3 {
    /*    background-color: antiquewhite;*/
    height: auto;
    margin-bottom: 2rem;
    padding: 0.5rem 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.personaCol1 img {
    object-fit: contain;
    width: 200px;
    margin-bottom: 2rem;
    /*    height: 8rem;*/
}


.personaCol3 .goalAndChallenge {
    /*    background-color: brown;*/
    width: 90%;
    margin-bottom: 2rem;
}

.personaCol3 .goalAndChallenge:last-child {
    margin-bottom: 1rem;
}


@media (max-width: 992px) {
    .personaCol3 .goalAndChallenge {
        width: 70%;
    }
}

@media (max-width: 576px) {
    .personaCol3 .goalAndChallenge {
        width: 90%;
    }
}


.section6 .storyBoard {
    padding: 1rem;
    display: flex;
    justify-content: center;
}

.section6 .storyBoard a {
    width: 60%;
}

.section6 .storyBoard a img {
    max-width: 100%;
}

@media (max-width: 992px) {
    .section6 .storyBoard a {
        width: 90%;
    }
}



.section7 .painPointCard {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem 2rem;
}

.section7 .painPointCard h2 {
    margin-bottom: 0.5rem;
}

.section7 .painPointCard .painPointNum {
    min-width: 40px;
    height: 40px;
    margin: 0.5rem 1rem;
    border-radius: 25px;
    background-color: #007CB6;
    font-size: 1.25rem;
    color: #FFF;
    display: flex;
    justify-content: center;
    align-items: center;
}



@media(max-width: 576px) {
    .section7 .painPointCard.painPointNum {
        min-width: 32px;
        height: 32px;
        margin-left: 0;
        font-size: 1em;
    }
}


.section8 .wireframe {
    padding: 0.5rem;
}

.section8 a img {
    max-width: 100%;
}


.section8 .wireframeDescriptionText {
    margin-bottom: 0.5rem;
}

.section8 li {
    margin-left: 1.5rem;
    padding-left: 1rem;
}

.section8 li:before {
    content: "";
}






.section9 h2 {
    text-align: center;
}

.section9 .featureCard {
    background-color: #F6F6F6;
    height: 4rem;
    margin: 0.5rem 0.25rem;
    display: flex;
    align-items: center;
    padding: 0 2rem;
    border-radius: 16px;
}

.section9 .featureCard p {
    margin-bottom: 0;
}

.section9 .findingArea {
    display: flex;
    align-items: center;
}

.section9 .findingArea .findingCircle {
    min-width: 90px;
    height: 90px;
    margin: 0.5rem 1rem;
    border-radius: 50px;
    background-color: #14A9E2;
    font-size: 1.25rem;
    font-weight: 700;
    color: #FFF;
    display: flex;
    justify-content: center;
    align-items: center;
}

.section9 .findingArea .findingText p {
    margin-bottom: 0;
}

.section9 .iterationImg {
    padding: 1rem 1rem 4rem 1rem;
}

.section9 .iterationImg img {
    max-width: 100%;
}

.section10 .visualDesignText {
    padding: 0 2rem;
}

.section10 .visualDesignImg {
    display: flex;
    justify-content: center;
    align-items: center;
}

.section10 .visualDesignImg img {
    max-width: 100%;
    box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.10);
    margin-bottom: 4rem;
}

.section10 .userFlowNum {
    margin-bottom: 0.5rem;
}

.section10 .userFlowImg img {
    max-width: 100%;
    margin-bottom: 4rem;
}


.section10 .iframeArea {
    width: 100%;
    height: 80vh;
    display: flex;
    justify-content: center;
}

.section10 iframe {
    border: 1px solid rgba(0, 0, 0, 0.1);
    width: 100%;
    height: 100%;
}

@media (max-width:768px) {
    .section10 iframe {
        width: 80%;
    }
}



.section13 {
    height: auto;
    width: 100vw;
    background-color: #14A9E2;
}

.section13 .lineAll {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /*    background-color: antiquewhite;*/
}

.section13 .line1,
.section13 .line2 {
    text-align: center;
    color: white;
    font-size: 1.75rem;
    font-weight: 600;
    letter-spacing: 0.02rem;
    line-height: 150%;
    margin: 2rem 0;
    padding: 1.5 1rem;
    /*    background-color: brown;*/
}

.section13 .line2 {
    text-decoration: none;
    font-size: 1.5rem;
}

.section13 a {
    color: white;
}


.section13 .line1 {
    margin-bottom: 0;
}

.section13 .line2 {
    margin-top: 1.5rem;
}




























/*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--*/
