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

html {
    scroll-behavior: smooth;
}

body {
/*    background-color: #FDFAEC;*/
    background-image: radial-gradient(rgba(187, 187, 187, 0.5) 0.9px, transparent 0.9px), radial-gradient(rgba(187, 187, 187, 0.5) 0.9px, #fffdf7 0.9px);
    background-size: 36px 36px;
    background-position: 0 0, 18px 18px;

}

a {
    text-decoration: none;
}

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

.section1 h1::before,
.section2 h1::before,
.section3 h1::before,
.section4 h1::before,
.section5 h1::before {
    content: "";
    position: absolute;
    z-index: -1;
    height: 80%;
    width: calc(100% + 2.25rem);
    left: -1rem;
    bottom: -0.25rem;
    border-radius: 3rem 3rem 10rem 5rem;
    border-right: 0.25rem solid #FFD700;
    border-bottom: 0.25rem solid #FFD700;
}


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: #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: 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;
    background-image: url(../images/SkaterBoi/heroBand.svg);
    background-repeat: no-repeat;
    background-position: bottom right;
    background-size: 100% auto;
    /*        background-color: antiquewhite;*/
}

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

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

.hero_1 {
    padding: 1rem;
    /*            background-color: #b18345;*/
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateY(20%);
}

.hero_1 img {
    width: 100%;
    max-width: 800px;
    height: auto;
    /*    transform: translateY(20%);*/
}

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

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

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

/*HERO--END--*/








/*Follower*/
.follower {
    position: fixed;
    pointer-events: none; /* 防止图像干扰鼠标事件 */
    z-index: 100;
}











/*每個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;
}


.section2 .section2Row2 .personaArea {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
}

.section2 .section2Row2 .personaImg {
    padding-bottom: 1rem;
}

.section2 .section2Row2 .personaImg img {
    max-width: 100%;
}

.section2 .section2Row2 .personaArea p {
    margin: 0 25%;
}

.section2 .section2Row2 .personaQuote {
    text-align: center;
    margin-bottom: 2rem;
}

.section2 .section2Row2 .personaQuote h2 {
    color: #4D565B;
}

.section2 .section2Row2 .personaGoalChallenge {
    display: flex;
    margin-bottom: 2rem;
}

.section2 .section2Row2 .personaGoalChallenge p {
    text-align: center;
    font-weight: 600;
    border-bottom: 4px solid #FFEF9E;
    margin-bottom: 0.5rem;
}

.section2 .section2Row2 .personaGoalChallenge li{
margin-bottom: 0.5rem;
}

.section2 .section2Row2 .personaGoal {
    width: 50%;
    padding: 0 1.5rem 1rem 0;
/*    background-color: aquamarine;*/
}

.section2 .section2Row2 .personaChallenge {
    width: 50%;
    padding: 0 1.5rem 1rem 0;
/*    background-color: #3b9174;*/
}

.section2 .section2Row2 .personaStory {
    padding: 1rem 1.5rem 0.5rem 1.5rem;
    position: relative;
}

.section2 .section2Row2 .storyQuotation_1{
    position: absolute;
    top: 0;
    left: 0;
    width: 2rem;
    height: 2rem;
    border-top: 4px solid #FFD700;
    border-left: 4px solid #FFD700;
    border-radius: 16px 0 0 0;
}

.section2 .section2Row2 .storyQuotation_2{
    position: absolute;
    top: 0;
    right: 0;
    width: 2rem;
    height: 2rem;
    border-top: 4px solid #FFD700;
    border-right: 4px solid #FFD700;
    border-radius: 0 16px 0 0;
}

.section2 .section2Row2 .storyQuotation_3{
    position: absolute;
    bottom: 0;
    right: 0;
    width: 2rem;
    height: 2rem;
    border-bottom: 4px solid #FFD700;
    border-right: 4px solid #FFD700;
    border-radius: 0 0 16px 0;
}

.section2 .section2Row2 .storyQuotation_4{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 2rem;
    height: 2rem;
    border-bottom: 4px solid #FFD700;
    border-left: 4px solid #FFD700;
    border-radius: 0 0 0 16px;
}


@media (max-width: 576px) {
    .section2 .section2Row2 .personaGoalChallenge {
        flex-direction: column;
        margin-bottom: 2rem;
    }

    .section2 .section2Row2 .personaGoal {
        width: 100%;
    }

    .section2 .section2Row2 .personaChallenge {
        width: 100%;
    }
}








.section3 img{
    max-width: 100%;
    border-radius: 16px;
}

.section3 .section3Row2 img {
    max-width: 80%;
    display: block;
    margin: 0 auto;
}


.section3 .section3Row3 .customizing {
    max-width: 75%;
    display: block;
    margin: 0 auto;
}

.section3 .section3Row3 h2 {
    text-align: center;
    color: #4D565B;
}






.section3 .section3Row4 .flipGif {
    display: flex;
    flex-direction: column;
}

.section3 .section3Row4 .flipText {
    text-align: center;
}

.section3 .section3Row4 .flipImg {
    padding: 1rem 1rem 0 1rem;
}

/*
@media (max-width:576px){
    .section3 .sectioneRow4 img {
        width: 100%;
    }
}
*/








.section4 .section4Row1 img {
    max-width: 100%;
    padding: 0 0.25rem;
}

.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 .nextStepCard {
    width: 90%;
    display: flex;
    margin-bottom: 1rem;
}

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






.section6 .section6Row1 h1,
.section6 .section6Row1 h2 {
    /*    color: #1F2123;*/
    display: block;
    text-align: center;
}


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









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