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

html {
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
}

h1 {
    color: #1F2123;
    font-size: 1.75rem;
    font-weight: 600;
    letter-spacing: 0.02rem;
    line-height: 150%;
    margin-bottom: 1rem;
}

h2 {
    color: #1F2123;
    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: #008250;
    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: 7rem;
    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 {
    display: flex;
    justify-content: center;
    margin-bottom: 10rem;
}




/*HERO--START--*/
.hero {
    width: 100%;
    min-height: 65vh;
    position: relative;
}

.hero .container {
    display: flex;
    align-content: center;
    justify-content: center;
}

.hero svg {
    position: absolute;
    width: 100%;
    height: 90vh;
    z-index: -1;
}

.hero_1 {
    padding: 2rem;
    /*    background-color: antiquewhite;*/
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero_1 img {
    width: 100%;
    max-width: 500px;
    height: auto;
}

.hero_2 {
    padding: 2rem;
    /*    background-color: aquamarine;*/
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: translateY(15%);
}

.hero_2 img {
    width: 100%;
    max-width: 450px;
    height: auto;
    margin-bottom: 2rem;
}

.hero_2 h1,
.hero p {
    margin-bottom: 0;
}

/*HERO--END--*/





/*每個SECTION最左邊的bar*/
.section1 .container-md {
    border-left: 10px solid #008250;
    padding-top: 0;
    padding-bottom: 3rem;
}

.section2 .container-md {
    border-left: 10px solid #E0E6E4;
    padding-top: 0;
    padding-bottom: 3rem;
}

.section3 .container-md {
    border-left: 10px solid #FFE1E1;
    padding-top: 0;
    padding-bottom: 3rem;
}

.section4 .container-md {
    border-left: 10px solid #F88484;
    padding-top: 0;
    padding-bottom: 3rem;
}

.section5 .container-md {
    border-left: 10px solid #D9D9D9;
    padding-top: 0;
    padding-bottom: 3rem;
}

@media (max-width: 576px) {
    .section1 .container-md {
        border-left: 5px solid #008250;
    }

    .section2 .container-md {
        border-left: 5px solid #E0E6E4;
    }

    .section3 .container-md {
        border-left: 5px solid #FFE1E1;
    }

    .section4 .container-md {
        border-left: 5px solid #F88484;
    }

    .section5 .container-md {
        border-left: 5px solid #D9D9D9;
    }
}






.section2Img {
    /*    background-color: brown;*/
    padding: 1rem 3rem;
}

.section2Img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.section2Row3 .section2Img {
    padding-right: 0rem;
}

.section2ImgText {
    /*    background-color: antiquewhite;*/
    padding: 1rem;
    transform: translateY(-4rem);
}

.section2ImgText p {
    color: #808080;
}

.section2Row1 .section2ImgText {
    padding-left: 0;
    padding-right: 5rem;
}

.section2Row2 .section2ImgText {
    padding-left: 5rem;
    padding-right: 0;
}

@media (max-width: 992px) {
    .section2ImgText {
        transform: translateY(0);
    }

    .section2Row1 .section2ImgText {
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .section2Row2 .section2ImgText {
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .section2Row3 .section2Img {
        padding: 1rem 5rem 2rem 5rem;
    }
}


.section3 .section3Row1 span {
    color: #E65353;
}


.section3 .section3Row2 .leftPart {
    display: flex;
    /*        border: 1px solid black;*/
    margin-top: 1rem;
    margin-bottom: 3rem;
}

.section3 .section3Row2 .leftPart h2 {
    color: #E65353;
    margin-bottom: 0.5rem;
}

.section3 .section3Row2 .painPointNum {
    min-width: 50px;
    height: 50px;
    margin: 0 1rem;
    border-radius: 25px;
    background-color: #E65353;
    font-size: 1.5rem;
    color: #FFF;
    display: flex;
    justify-content: center;
    align-items: center;
}

.section3 .section3Row2 .rightPart {
    display: flex;
    /*        border: 1px solid black;*/
    margin-top: 1rem;
    margin-bottom: 2rem;
}

.section3 .section3Row2 .painPointArrow {
    margin: 0 1rem 0 3rem;
}

@media (max-width: 992px) {

    .section3 .section3Row2 .leftPart {
        margin-bottom: 1rem;
    }

    .section3 .section3Row2 .rightPart {
        margin-top: 0rem;
        margin-bottom: 5rem;
    }
}

@media(max-width: 576px) {
    .section3 .section3Row2 .painPointNum {
        min-width: 40px;
        height: 40px;
        margin-left: 0;
        font-size: 1.125rem;
    }

    .section3 .section3Row2 .painPointArrow {
        margin-left: 1.5rem;
    }
}

.section3 .section3Row3 .wireframeArea {
    display: flex;
    margin-top: 1rem;
    margin-bottom: 2rem;
}

.section3 .section3Row3 .wireframeArea .wireframeCard {
    width: 50%;
    /*    border: 1px solid black;*/
    padding: 0 1rem;
    /*    margin: 1rem;*/
    display: flex;
    flex-direction: column;
}

.section3 .section3Row3 .wireframeArea .wireframeCard h2 {
    text-align: center;
    color: #008250;
    margin-bottom: 0.5rem;
    /*    border: 1px solid black;*/
}

.section3 .section3Row3 .wireframeArea .wireframeCard img {
    max-width: 100%;
    object-fit: contain;
    margin-bottom: 1rem;
}

.section3 .section3Row3 .wireframeArea .wireframeCard p {
    text-align: center;
    color: #808080;
}


.section3 .section3Row4 img {
    padding: 1rem 0;
    max-width: 100%;
    /*    margin-bottom: 2rem;*/
}

.section3 .section3Row4 .findingCard {
    /*    border: 1px solid black;*/
    width: auto;
    padding: 0 0.5rem;
}

.section3 .section3Row4 .findingCard h2 {
    color: #E65353;
    text-align: center;
    border-bottom: 1px solid #E65353;
    padding-bottom: 0.5rem;
    margin-bottom: 0.5rem;
}

.section3 .section3Row4 .findingCard p {
    padding: 0 1rem 2rem 1rem;
}

.section3 .section3Row5 img {
    max-width: 100%;
    padding: 1rem 0 1rem 0.5rem;
    margin-bottom: 4rem;
}

.section3 .section3Row5 p {
    margin-bottom: 4rem;
}

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

.section3 .section3Row6 .visualDesignLogo {
    display: flex;
    justify-content: center;
    padding-top: 4rem;
    padding-bottom: 1rem;
}

.section3 .section3Row6 .visualDesignLogo img {
    max-width: 70%;

}

.section3 .section3Row6 .visualDesignLogoText {
    text-align: center;
    padding: 0rem 2rem;
}

.section3 .section3Row6 .visualDesignLogoText,
.section3 .section3Row6 p {
    color: #808080;
    margin-bottom: 0.5rem;
}

.section3 .section3Row6 .redText {
    color: #E40000;
}

.section3 .section3Row6 .greenText {
    color: #008250;
}

.section3 .section3Row6 .leftPart {
    text-align: end;
}

@media (max-width:768px) {

    .section3 .section3Row6 p,
    .section3 .section3Row6 .leftPart {
        text-align: center;
    }

    .section3 .section3Row6 .rightPart {
        margin-bottom: 2rem;
    }
}

.section3 .section3Row6 .visualDesignGif {
    display: flex;
    flex-direction: column;
    align-items: center;
    object-fit: contain;

}

.section3 .section3Row6 .visualDesignGif .gif1 {
    margin: 0.2rem;
    width: 280px;
    max-width: 100%;
}

.section3 .section3Row6 .visualDesignGif .gif2 {
    margin: 1rem;
    width: 480;
    max-width: 100%;
}


.section4 .section4Row1 img {
    max-width: 100%;
}

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

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

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

.section4 .section4Row3 .sitemap {
    max-width: 100%;
    margin-bottom: 4rem;
}

.section4 .section4Row4 .productCard {
    margin-bottom: 2rem;
    position: relative;
    display: flex;
    justify-content: center;
    /*    background-color: antiquewhite;*/
}

.section4 .section4Row4 .productCard img {
    max-width: 80%;
    transition: 0.2s ease;
}

.section4 .section4Row4 .productCard .mobile {
    padding: 20% 20% 0.5rem 20%;
}

.section4 .section4Row4 .productCard .tablet {
    padding: 10% 10% 0.5rem 10%;
}

.section4 .section4Row4 .productCard .laptop {
    padding: 5% 5% 0.5rem 5%;
}

.section4 .section4Row4 .productCard .mobile:hover {
    transform: translateY(-10%) scale(1.1) rotateZ(-5deg);
}

.section4 .section4Row4 .productCard .tablet:hover {
    transform: translateY(-10%) scale(1.1) rotateZ(2.5deg);
}

.section4 .section4Row4 .productCard .laptop:hover {
    transform: translateY(-10%) scale(1.1) rotateZ(2.5deg);
}

.section4 .section4Row4 .productCard::after {
    content: "";
    position: absolute;
    bottom: -5%;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 6px;
    background-color: rgba(220, 220, 220, 1);
    border-radius: 50%;
    filter: blur(3px);
    z-index: -1;
    /* 将元素置于图片底部 */
    transition: 0.2s ease;
}

.section4 .section4Row4 .productCard:hover::after {
    background-color: rgba(220, 220, 220, 0.5);
    width: 40%;
}



.section4 .section4Row5 .nextStepCard {
    width: 90%;
    display: flex;
    margin-bottom: 1rem;
}

.section4 .section4Row5 .nextStepArrow {
    margin: 0 1rem 0 1rem;
}


.section5 .section5Row2 h1,
.section5 .section5Row2 h2 {
    /*    color: #1F2123;*/
    text-align: center;
}





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

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