

#main-logo{
    width: 30%;
}

header {
    position: relative;
    display: flex;
    align-items: center;
    padding: 1rem;
    gap: 1rem;
}

.hamburger-menu {
    position: relative;
    display: inline-block;
}

.hamburger-icon {
    width: 30px;
    height: 24px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: none;
    border: none;
    padding: 0;
}

.hamburger-icon span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #1A1919;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    border: 2px solid #F9D5C7;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    min-width: 280px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    list-style: none;
    padding: 0;
    margin: 0;
    margin-top: 10px;
}

.hamburger-menu:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown li {
    border-bottom: 1px solid #F9D5C7;
}

.nav-dropdown li:last-child {
    border-bottom: none;
}

.nav-dropdown a {
    display: block;
    padding: 12px 20px;
    color: #1A1919;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: background-color 0.2s ease;
}

.nav-dropdown a:hover {
    background-color: #F9D5C7;
    color: #1A1919;
}

.right-align-menu {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.right-align-menu a {
    text-decoration: none;
    color: #1A1919;
    padding: 0.5rem;
    border-radius: 4px;
    transition: background-color 0.2s ease;
}

.right-align-menu a:hover {
    background-color: #F9D5C7;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border: 2px solid #1A1919;
    border-radius: 6px;
    font-size: 16px;
    font-weight: bold;
    background-color: white;
    transition: all 0.2s ease;
}

.download-btn:hover {
    background-color: #1A1919;
    color: white;
}
#main-content{
    max-width: 1600px;
    width:100%;
    margin: 0 auto;
    border: 1px solid #F9D5C7;
}
.page-2-container-row{
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center;
    margin:auto;
    width: 82%;
    aspect-ratio: 2.92;
    position: relative;
    margin-top: -3%;
}
#page-2-container-row-1{background-image: url("../images/row1.png");}
#page-2-container-row-2{background-image: url("../images/row2.png");}
#page-2-container-row-3{background-image: url("../images/row3.png");}
#page-2-container-row-4{background-image: url("../images/row4.png");}
.bg-block{
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center;
    position: absolute;
}
.page-section{
    position: relative;
    display: block;
    width: 100%;
    overflow: hidden;
    border: 1px solid #F9D5C7;
}
#page-1{
    aspect-ratio: 2;


}
#page-1-bg{
    background-image: url("../images/P1_bg.jpg");
    width: 100%;
    aspect-ratio: 2;
    top: 0;
    left: 0;
    background-size: 100%;
    background-position: center 45%;
}
#page-1-bg,#page-1{
    aspect-ratio: 1;
}
#page-1{aspect-ratio: 1.25;}
#page-1{aspect-ratio: 2;}
#page-1-title{
    background-image: url("../images/P1_title.png");
    width: 35%;
    aspect-ratio: 2.23;
    bottom: 0;
    right: 0;
}
#page-1-title-2{
    background-image: url("../images/P1_title_2.png");
    width: 40%;
    aspect-ratio: 3;
    left:0;
    top:0;
    bottom: 0;
    right: 0;
    z-index: 2;
    margin:auto;
}
#page-1-logo{
    background-image: url("../images/main_logo.png");
    width: 80%;
    aspect-ratio: 4.05;
    left:0;
    top:0;
    bottom: 0;
    right: 0;
    z-index: 1;
    margin:auto;
}

#page-1-logo,
#page-1-bg,
#page-1-title {
    opacity: 0;
    visibility: hidden;
}

#page-1-logo {
    animation: logoSequence 1.5s ease-in-out forwards;
}

#page-1-bg {
    animation: bgZoomIn 2s ease-out 1.8s forwards, colorChange 3s 1 2s;
    transform: scale(3);
}

#page-1-title {
    animation: titleSlideIn 0.5s ease-out 3.5s forwards;
    transform: translateX(100%);
}

@keyframes logoSequence {
    0% {
        opacity: 0;
        visibility: hidden;
        transform: scale(0.5);
    }
    66.67% {
        opacity: 1;
        visibility: visible;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        visibility: hidden;
        transform: scale(1);
    }
}

@keyframes bgZoomIn {
    0% {
        opacity: 0;
        visibility: hidden;
        rotate: -30deg;
        transform: scale(10);
    }
    10% {
        opacity: 100;
    }
    100% {
        opacity: 1;
        rotate: -0deg;
        visibility: visible;
        transform: scale(1);
    }
}

@keyframes titleSlideIn {
    0% {
        opacity: 0;
        visibility: hidden;
        transform: translateX(100%);
    }
    100% {
        opacity: 1;
        visibility: visible;
        transform: translateX(0);
    }
}

@keyframes colorChange {
    0% {
        filter: hue-rotate(0deg);
    }
    50% {
        filter: hue-rotate(360deg);
    }
    100% {
        filter: hue-rotate(0deg);
    }
}

@keyframes infiniteRotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes fadeInZoom {
    0% {
        opacity: 0;
        transform: scale(1.2) translateX(18%);
    }
    10% {
        opacity: 1;
        transform: scale(1.1) translateX(-18%);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateX(0);
    }
}

@keyframes infiniteZoom {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes slideInFromLeft {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes infiniteRotateReverse {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(-360deg);
    }
}

@keyframes fadeInZoomIn {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}
#page-2-bg{
    width: 100%;
    top: 0;
    left: 0;
    background-size: 100%;
    position: relative;
    padding-top:13%;padding-bottom: 5%;
}
#page-2a{
    padding-top:5%;padding-bottom: 5%;
}
#page-2-title{
    background-image: url("../images/P2_title.png");
    aspect-ratio: 4.46;
    width: 50%;
    top: 5%;
    left: 9.5%;
    right: 0;
    margin: auto 0;
}
html[lang="en-US"] #page-2-title {
    background-image: url("../images/P2_title_en.png");
    aspect-ratio: 14.1;
    top: 5%;
}
html[lang="zh-Hant"] #page-2-title
{
    background-image: url("../images/P2_title_tc_2.jpg");
    aspect-ratio: 3.73;
    top: 5%;
    width:25%;
}
html[lang="zh-Hans"] #page-2-title
{
    background-image: url("../images/P2_title_sc_2.jpg");
    aspect-ratio: 3.73;
    top: 5%;
    width:30%;
}

#page-2-icon{
    background-image: url("../images/P2_icon.png");
    aspect-ratio: 1;
    z-index: 1;
    width: 11%;
    top: 52%;
    left: 43.5%;
    animation: infiniteZoom 2s ease-in-out infinite;
}
.page-2-statistic-container{
    position: absolute;
    text-align: center;
    width: 39.5%;
    aspect-ratio: 1.65;
}

#page-3-bg{
    background-image: url("../images/P6_bg.png");
    width: 100%;
    aspect-ratio: 1.56;
    top: 0;
    left: 0;
    background-size: 100%;
    position: relative;
    scale: 1.3;
}

#page-3-title{
    background-image: url("../images/P6_title_en.png");
    aspect-ratio: 12.3;
    width: 30%;
    top: 25%;
    left: 34.5%;
    right: 0;
    margin: auto 0;

}
html[lang="zh-Hant"] #page-3-title
{
    background-image: url("../images/P6_title_tc.png");
    aspect-ratio: 4;
    width: 10%;left:44.5%;
}
html[lang="zh-Hans"] #page-3-title{
    background-image: url("../images/P6_title_sc.png");
    aspect-ratio: 4;
    width: 10%;left:44.5%;
}
#page-3-icon-1{
    background-image: url("../images/P6_icon1.png");
    aspect-ratio: 1;
    z-index: 1;
    width: 8.9%;
    top: 36.7%;
    left: 21.5%;
    opacity: 0;
    transform: scale(1.2);
}
#page-3-icon-2{
    background-image: url("../images/P6_icon2.png");
    aspect-ratio: 1;
    z-index: 1;
    width: 8.9%;
    top: 36.7%;
    left: 52%;
    opacity: 0;
    transform: scale(1.2);
}
#page-3-icon-3{
    background-image: url("../images/P6_icon3.png");
    aspect-ratio: 1;
    z-index: 1;
    width: 8.9%;
    top: 56.1%;
    left: 21.5%;
    opacity: 0;
    transform: scale(1.2);
}
#page-3-icon-4{
    background-image: url("../images/P6_icon4.png");
    aspect-ratio: 1;
    z-index: 1;
    width: 8.9%;
    top: 56.1%;
    left: 52%;
    opacity: 0;
    transform: scale(1.2);

}
.visible #page-3-icon-1,
.visible #page-3-icon-2,
.visible #page-3-icon-3,
.visible #page-3-icon-4
{
    animation: fadeInZoom 0.8s ease-out 0.6s forwards;
}
#page-3-icon-5{
    background-image: url("../images/P6_icon5.png");
    aspect-ratio: 1;
    z-index: 1;
    width: 6.5%;
    top: 70.5%;
    left: 50%;
    animation: infiniteZoom 2s ease-in-out infinite;
}
#page-3-icon-6{
    background-image: url("../images/P6_icon6.png");
    aspect-ratio: 1;
    z-index: 1;
    width: 4.5%;
    top: 72.5%;
    left: 43.5%;
    animation: infiniteRotate 2s linear infinite;
}

.page-3-statistic-container{
    position: absolute;
    text-align: center;
    width: 16%;
    aspect-ratio: 1.85;

}
.page-3-statistic-container .statistic-inner-container{
    padding-top: 5%;
    box-sizing: border-box;
    text-align: left;
    padding-left: 3%;
}
.page-3-statistic-container .statistic-title-1{
    color:#777776;
    font-weight: bold;
}
.page-3-statistic-container .statistic-title-2{
    color:#777776;
    font-weight: bold;
    line-height: 0.9rem;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}
.page-3-statistic-container .statistic-number{
    font-size: 1.3rem;
    top: 0%;
    bottom: 0%;
    margin: auto;
    height: 1.3rem;
    line-height: 1.3rem;
    text-align: left;
    color: #EB8B2C;
}
.page-3-statistic-container .statistic-number-container-outer{
    position: absolute;
    top: 59%;
    width: 80%;
    aspect-ratio: 5;
}
.page-3-statistic-container .statistic-number-container-inner{
    position: relative;
    width: 100%;
    height: 100%;
}
.page-3-statistic-container .statistic-number.money_prefix{
    padding-left: 1.5rem;
}
.page-3-statistic-container .statistic-number.money_prefix:before{
    display: block;
    content: "$";
    font-size:2rem;
    height:2rem;
    position: absolute;
    left:0;
    top:0;
    bottom:0;
    margin: 0 auto;
}
.page-3-statistic-container .statistic-number.million_suffix:after{
    display: inline;
    color:#81817F;
    content: " million";
    font-size:0.8rem;
    font-weight: normal;;
    height:1rem;

    left:0;
    top:0;
    bottom:0;
    margin: 0 auto;
}

html[lang="zh-Hant"] .page-3-statistic-container .statistic-number.million_suffix:after{
    content:" 百萬元";
}

html[lang="zh-Hans"] .page-3-statistic-container .statistic-number.million_suffix:after{
    content:" 百万元";
}

.page-3-statistic-container .statistic-number.percentage_suffix:after{
    display: inline;
    color:#81817F;
    content: " %";
    font-size:0.8rem;
    font-weight: normal;;
    height:1rem;

    left:0;
    top:0;
    bottom:0;
    margin: 0 auto;
}
#page-3-statistic-1{top: 37%;left: 31%;}
#page-3-statistic-2{top: 37%;left: 61.5%;}
#page-3-statistic-3{top: 56.5%;left: 31%;}
#page-3-statistic-4{top: 56.5%;left: 61.5%;}
.statistic-inner-container{position: relative;top:0;left:0;width: 100%;height: 100%;}
.orange{color:#EB8C2E;}
.lightgreen{color:#6CB971;}
.lightpink{color:#E98A8B;}
.lightblue{color:#6390BF;}
.statistic-content{
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 50%;
    text-align: center;
    color: #1A1919;
    font-size: 1.2rem;
    line-height: 2rem;
}
.statistic-number{
    font-size: 3.5rem;
    font-weight: bold;
    position: absolute;
    top: 14%;
    width: 100%;
    text-align: center;
}
#page-2-statistic-1,
#page-2-statistic-3,
#page-2-statistic-5,
#page-2-statistic-7
{
    top: 10%;
    left: 6%;
}
#page-2-statistic-2,
#page-2-statistic-4,
#page-2-statistic-6,
#page-2-statistic-8
{
    top: 10%;
    right: 6%;
}


#page-1{opacity: 1 !important;}
.page-section {
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.page-section.visible{
    opacity: 1;
}

#page-8-bg{
    background-image: url("../images/P5_bg.jpg");
    width: 100%;
    aspect-ratio: 0.69;
    top: 0;
    left: 0;
    background-size: 100%;
    position: relative;
}
#page-8-title{
    background-image: url("../images/P5_title.png");
    aspect-ratio: 7.76;
    width: 40%;
    top: 12%;
    left: 0;
    right: 0;
    margin: auto;
}
#page-8-table-container{
    position: absolute;
    width: 71%;
    top: 21%;
    left: 16%;
    aspect-ratio: 2.1;
}
#page-8-table{width: 100%;height: 100%;table-layout: fixed;font-size: 1.2rem;}
#page-8-table td{vertical-align: middle;}

#page-8-table td {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

#page-8-table td.cell-visible {
    opacity: 1;
    transform: translateY(0);
}

.p5-report-logo{width:80%;aspect-ratio: 1;position: unset;;display: block;}
#page-8-logo-1{background-image: url("../images/P5_icon1.png");}
#page-8-logo-2{background-image: url("../images/P5_icon2.png");}
#page-8-logo-3{background-image: url("../images/P5_icon3.png");}
#page-8-logo-4{background-image: url("../images/P5_icon4.png");}
#page-8-logo-5{background-image: url("../images/P5_icon5.png");}
#page-8-logo-6{background-image: url("../images/P5_icon6.png");}
.p5-report-link{color: #1A1919;text-decoration: none;}
.p5-report-link{display: block;}
.p5-report-link:hover{text-decoration: underline;}




#page-4-bg{
    background-image: url("../images/P7_ref.png");
    background: none;
    width: 100%;
    aspect-ratio: 1.58;
    top: 0;
    left: 0;
    background-size: 100%;
    position: relative;
}

#page-4-bg-1{
    background-image: url("../images/P7_bg.png");
    aspect-ratio: 0.68;
    background-size: 100%;
    position: absolute;
    top: 22.5%;
    left: 28.5%;
    width: 27%;
    opacity: 0;
}

#page-4-bg-2{
    background-image: url("../images/P7_bg2.png");
    aspect-ratio: 1.56;
    background-size: 100%;
    position: absolute;
    top: 0%;
    left: 0%;
    width: 100%;
    transform: translateX(-100%);
}

.visible #page-4-bg-2 {
    animation: slideInFromLeft 1s ease-out forwards;
}

.visible #page-4-bg-1 {
    animation: fadeIn 0.8s ease-out 1s forwards;
}

.visible #page-4-icon-1 {
    animation: fadeIn 0.6s ease-out 1.8s forwards;
}

.visible #page-4-title {
    animation: fadeIn 0.6s ease-out 2.1s forwards;
}

.visible #page-4-content-container {
    animation: fadeIn 0.6s ease-out 2.4s forwards;
}

.visible #page-4-footer-content {
    animation: fadeIn 0.6s ease-out 2.7s forwards;
}

.visible #page-5-icon-1 {
    animation: fadeIn 0.6s ease-out forwards;
}

.visible #page-5-title {
    animation: fadeIn 0.6s ease-out 0.3s forwards;
}

.visible #page-5-content-container {
    animation: fadeIn 0.6s ease-out 0.6s forwards;
}

.visible #page-6-bg-2 {
    animation: fadeIn 0.6s ease-out forwards, colorChange 4s infinite;
}

.visible #page-6-icon-1 {
    animation: fadeIn 0.6s ease-out 0.3s forwards;
}

.visible #page-6-title {
    animation: fadeIn 0.6s ease-out 0.6s forwards;
}

.visible #page-6-button-1 {
    animation: fadeInZoomIn 0.4s ease-out 0.9s forwards;
}

.visible #page-6-button-2 {
    animation: fadeInZoomIn 0.4s ease-out 1.0s forwards;
}

.visible #page-6-button-3 {
    animation: fadeInZoomIn 0.4s ease-out 1.1s forwards;
}

.visible #page-6-button-4 {
    animation: fadeInZoomIn 0.4s ease-out 1.2s forwards;
}

.visible #page-6-button-5 {
    animation: fadeInZoomIn 0.4s ease-out 1.3s forwards;
}

.visible #page-6-button-6 {
    animation: fadeInZoomIn 0.4s ease-out 1.4s forwards;
}

.visible #page-6-button-7 {
    animation: fadeInZoomIn 0.4s ease-out 1.5s forwards;
}

.visible #page-6-button-8 {
    animation: fadeInZoomIn 0.4s ease-out 1.6s forwards;
}

.visible #page-6-button-9 {
    animation: fadeInZoomIn 0.4s ease-out 1.7s forwards;
}

.visible #page-6-learn-more-container {
    animation: fadeIn 0.6s ease-out 2.1s forwards;
}
#page-4-content-container{
    position: absolute;
    aspect-ratio: 2.1;
    width: 47%;
    background-image: url("../images/P7_frame.png");
    background-size: 100%;
    box-sizing: border-box;
    top: 18%;
    left: 52%;
    padding-left: 2%;
    padding-bottom: 1%;
    padding-right: 5%;
    padding-top: 2.5%;
    font-size: 0.9rem;
    color:#1A1919;
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: justify;
    z-index: 3;
}
html[lang="zh-Hant"] #page-4-content-container,
html[lang="zh-Hant"] #page-4-footer-content,
html[lang="zh-Hant"] #page-5-content-container,
html[lang="zh-Hant"] .page-6-inner-centre-text,
html[lang="zh-Hans"] #page-4-content-container,
html[lang="zh-Hans"] #page-4-footer-content,
html[lang="zh-Hans"] #page-5-content-container,
html[lang="zh-Hans"] .page-6-inner-centre-text
{
    line-height: 1.5rem;
}
html[lang="zh-Hant"] #page-4-content-container,
html[lang="zh-Hans"] #page-4-content-container,
html[lang="zh-Hans"] #page-4-footer-content span,
html[lang="zh-Hant"] #page-4-footer-content,
html[lang="zh-Hans"] #page-4-footer-content,
html[lang="zh-Hans"] #page-4-footer-content span,
html[lang="zh-Hant"] #page-5-content-container,
html[lang="zh-Hans"] #page-5-content-container
{
    font-size:1.2rem;
}
#page-4-icon-1{
    background-image: url("../images/P7_icon.png");
    aspect-ratio: 1.34;
    z-index: 1;
    width: 5.8%;
    top: 10.5%;
    left: 51.5%;
    opacity: 0;
}
#page-4-title{
    background-image: url("../images/P7_title_en.png");
    aspect-ratio: 12.34;
    z-index: 1;
    width: 31.5%;
    top: 12.5%;
    left: 57.5%;
    opacity: 0;
}
html[lang="zh-Hant"] #page-4-title{
    background-image: url("../images/P7_title_tc.png");
    aspect-ratio: 4.98;
    width: 11%;
}
html[lang="zh-Hans"] #page-4-title{
    background-image: url("../images/P7_title_sc.png");
    aspect-ratio: 4.98;
    width: 11%;
}
#page-4-footer-content{
    position: absolute;
    width: 47%;
    top: 53%;
    left: 52%;
    padding-left: 2%;
    padding-bottom: 1%;
    padding-right: 5%;
    padding-top: 2.5%;
    font-size: 0.9rem;
    opacity: 0;
    left: 0%;
    top: 100%;
    position: absolute;
    width: 100%;
}
#page-4-footer-content span{
    font-weight: bold;
    color:#605593;
    font-size:1rem;
}

#page-5-bg{
    background-image: url("../images/P8_BG.png");
    width: 100%;
    aspect-ratio: 1.6;
    top: 0;
    left: 0;
    background-size: 100%;
    position: relative;
}
#page-5-title{
    background-image: url("../images/P8_title_en.png");
    aspect-ratio: 12.27;
    z-index: 1;
    width: 32%;
    top: 16%;
    left: 14%;
    opacity: 0;
}
html[lang="zh-Hant"] #page-5-title{
    background-image: url("../images/P8_title_tc.png");
    aspect-ratio: 4.98;
    width: 11%;
}
html[lang="zh-Hans"] #page-5-title{
    background-image: url("../images/P8_title_sc.png");
    aspect-ratio: 4.98;
    width: 11%;
}
#page-5-icon-2{
    background-image: url("../images/P8_icon2.png");
    aspect-ratio: 1;
    z-index: 1;
    width: 9.56%;
    top: 52.5%;
    left: 62.5%;
    animation: infiniteRotate 2s linear infinite;
}
#page-5-icon-3{
    background-image: url("../images/P8_icon3.png");
    aspect-ratio: 1;
    z-index: 1;
    width: 5.1%;
    top: 64.5%;
    left: 58.5%;
    animation: infiniteRotateReverse 2s linear infinite;
}
#page-5-icon-1{
    background-image: url("../images/P8_icon1.png");
    aspect-ratio: 0.94;
    z-index: 1;
    width: 3.97%;
    top: 15.5%;
    left: 9%;
    opacity: 0;
}
#page-5-content-container{
    width: 41%;
    top: 25%;
    left: 9%;
    opacity: 0;
    text-align: justify;
}
#page-5-content-container{font-size:0.9rem;}

#page-6-bg{
    background-image: url("../images/P9_ref.png");
    background: none;
    width: 100%;
    aspect-ratio: 1.6;
    top: 0;
    left: 0;
    background-size: 100%;
    position: relative;
}
#page-6-bg-1{
    background-image: url("../images/P9_bg1.png");
    width: 100%;
    aspect-ratio: 1.56;
    top: -1%;
    left: 0;
    background-size: 104%;
    position: absolute;
}
#page-6-bg-2{
    background-image: url("../images/P9_bg2.png");
    width: 16%;
    aspect-ratio: 0.8;
    top: 14.5%;
    left: 20.7%;
    background-size: 100%;
    position: absolute;
    opacity: 0;
    animation: colorChange 1s infinite;
}
#page-6-title{
    background-image: url("../images/P9_title_en.png");
    aspect-ratio: 6.68;
    z-index: 1;
    width: 17.7%;
    top: 16%;
    left: 40%;
    opacity: 0;
}
html[lang="zh-Hant"] #page-6-title{
    background-image: url("../images/P9_title_tc.png");
    aspect-ratio: 4;
    width: 10%;
}
html[lang="zh-Hans"] #page-6-title{
    background-image: url("../images/P9_title_sc.png");
    aspect-ratio: 4;
    width: 10%;
}
#page-6-icon-1{
    background-image: url("../images/P9_icon.png");
    aspect-ratio: 0.94;
    z-index: 1;
    width: 3.97%;
    top: 15.5%;
    left: 34%;
    opacity: 0;
}
.page-6-button{
    background-image: url("../images/P9_frame.png");
    aspect-ratio: 1.10;
    z-index: 1;
    width: 10.51%;
    top: 25.5%;
    left: 40%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.8);
}

.page-6-inner-centre-text{
    text-align: center;
    color: #1A1919;
    font-weight: bold;
    line-height: 1.2;
    font-size: 0.8rem;
    padding: 0 5%;
}
#page-6-button-2{left:51%;}
#page-6-button-3{left:62%;}
#page-6-button-4{left:73%;}
#page-6-button-5{top:42%;}
#page-6-button-6{top:42%;left:51%;}
#page-6-button-7{top:42%;left:62%;}
#page-6-button-8{top:42%;left:73%;}
#page-6-button-9{top:42%;left:84%;}
#page-6-learn-more-container{position: absolute;left:40%;top:60%;opacity: 0;}

.learn-more-btn{text-decoration: underline;color: #000;font-weight: bold;}
html[lang="en-US"] .statistic-title-1{display: none;}
html[lang="zh-Hant"] .statistic-title-2 {
    display: none;
}
html[lang="zh-Hans"] .statistic-title-2 {
    display: none;
}
.page-3-statistic-container .statistic-number-container-outer{top:50%;}
html {
    font-size: 20px;
}
#page-4-bg-2{z-index: 1;}
#page-4-content-container{
    background-position: center bottom;
    background-size: 100% auto;
}
.page-2-scale-container{scale: 0.85;}
@media screen and (max-width: 1200px) {
    html {
        font-size: 16px;
    }
    #page-4-content-container,#page-4-footer-content{font-size:0.8rem;line-height: 1rem;}
    .learn-more-btn{font-size: 0.8rem;}
    #page-5-content-container{font-size:0.8rem;line-height: 1rem;}

}

@media screen and (max-width: 1350px) {
    html[lang="zh-Hant"] #page-4-content-container,
    html[lang="zh-Hans"] #page-4-content-container,
    html[lang="zh-Hans"] #page-4-footer-content span,
    html[lang="zh-Hant"] #page-4-footer-content,
    html[lang="zh-Hans"] #page-4-footer-content,
    html[lang="zh-Hans"] #page-4-footer-content span,
    html[lang="zh-Hant"] #page-5-content-container,
    html[lang="zh-Hans"] #page-5-content-container
    {
        font-size:1rem;
    }
}
@media screen and (max-width: 1250px) {
    html[lang="zh-Hant"] #page-4-content-container,
    html[lang="zh-Hans"] #page-4-content-container,
    html[lang="zh-Hans"] #page-4-footer-content span,
    html[lang="zh-Hant"] #page-4-footer-content,
    html[lang="zh-Hans"] #page-4-footer-content,
    html[lang="zh-Hans"] #page-4-footer-content span,
    html[lang="zh-Hant"] #page-5-content-container,
    html[lang="zh-Hans"] #page-5-content-container
    {
        font-size:0.9rem;
    }
}
@media screen and (max-width: 1024px) {
    html {
        font-size: 15px;
    }
    .statistic-content{font-size: 1.2rem;}
    #page-3-bg{width: 140%;left:-20%;scale: 1;}
    #page-4-content-container,#page-4-footer-content{font-size:0.7rem;line-height: 1rem;}
    .page-2-scale-container{scale: 0.9;}

}

@media screen and (max-width: 900px) {
    .statistic-content{font-size: 1.1rem;}
}
@media screen and (max-width: 860px) {
    html {
        font-size: 13px;
    }
}


@media screen and (max-width: 768px) {
    html {
        font-size: 12px;
    }
    #page-3-bg{width: 150%;left:-25%;}

}
@media screen and (max-width: 700px) {
    html {
        font-size: 11px;
    }
    html[lang="zh-Hant"] #page-4-content-container,
    html[lang="zh-Hans"] #page-4-content-container,
    html[lang="zh-Hans"] #page-4-footer-content span,
    html[lang="zh-Hant"] #page-4-footer-content,
    html[lang="zh-Hans"] #page-4-footer-content,
    html[lang="zh-Hans"] #page-4-footer-content span,
    html[lang="zh-Hant"] #page-5-content-container,
    html[lang="zh-Hans"] #page-5-content-container
    {
        font-size:0.8rem;
    }
}

@media screen and (max-width: 640px) {
    html {
        font-size: 10px;
    }
    #page-8-bg{width: 120%;left:-10%;}
    .page-2-container-row{width: 90%;}
    #page-2-title{left:6%;}
    #page-2-bg{padding-top:15%;}


    #page-6-icon-1{top:7.5%}
    #page-6-title{top:9%;}
    .page-6-button{top:14.5%;width:12.5%;}
    #page-6-button-2{left:54%;}
    #page-6-button-3{left:68%;}

    #page-6-button-4{top:34%;left:40%;}
    #page-6-button-5{top:34%;left:54%}
    #page-6-button-6{top:34%;left:68%;}

    #page-6-button-7{top:53.5%;left:40%;}
    #page-6-button-8{top:53.5%;left:54%;}
    #page-6-button-9{top:53.5%;left:68%;}
    #page-6-learn-more-container{left:83%;}

    #page-3-statistic-3 .statistic-number-container-outer,
    #page-3-statistic-4 .statistic-number-container-outer
    {top:69%;}
    .page-2-scale-container{scale: 1;}
}
@media screen and (max-width: 550px) {
    #page-4-bg{aspect-ratio: 1;}
    #page-4-content-container{

    }
    #page-4-bg{background-color: #f9f9fa;}
    #page-4-bg-1{left:78.5%;top:unset;bottom: 8%;}
    #page-4-bg-2{top: unset;bottom:0;}
    #page-4-content-container, #page-4-footer-content{font-size: 1rem;line-height: 1.5rem;}
    #page-4-content-container{left: 10%;
        width: 80%;
        padding-right: 7%;
    }
    #page-4-footer-content{top: 110%;
        left: 30%;
        width: 50%;
        padding-left:4%;padding-right:8%;
    }
    #page-4-icon-1{left:10%;}
    #page-4-title{left:15.5%;}
    #page-5-content-container{width: 61%;background-color: rgba(255,255,255,0.3);
        z-index: 2;
        border-radius: 5px;
        font-size: 0.9rem;
        line-height: 1.4rem;
    }
    .statistic-number{
        font-size: 3rem;
    }
    .statistic-content{font-size:1rem;}

    html[lang="zh-Hant"] #page-4-content-container,
    html[lang="zh-Hans"] #page-4-content-container,
    html[lang="zh-Hans"] #page-4-footer-content span,
    html[lang="zh-Hant"] #page-4-footer-content,
    html[lang="zh-Hans"] #page-4-footer-content,
    html[lang="zh-Hans"] #page-4-footer-content span,
    html[lang="zh-Hant"] #page-5-content-container,
    html[lang="zh-Hans"] #page-5-content-container
    {
        font-size: 1.2rem;
        line-height: 2rem;
    }
    html[lang="zh-Hant"] #page-5-content-container{
        line-height: 1.5rem;
    }
    html[lang="zh-Hans"] #page-5-content-container{
        line-height: 1.5rem;
    }
}

@media screen and (max-width: 480px) {
    html {
        font-size: 8px;
    }
    .page-3-statistic-container .statistic-number.money_prefix:before{font-size:1.8rem;}
    .statistic-number-container-outer{top:66%;}
    .page-3-statistic-container .statistic-title-2{

    }
    .page-6-button{font-size: 0.8rem;width:13.5%;letter-spacing: -0.1rem;}
}
@media screen and (max-width: 420px) {
    #page-4-footer-content{bottom: 18%;}
    #page-4-content-container, #page-4-footer-content{font-size: 0.85rem;}
    #page-5-content-container{width: 80%;font-size:0.8rem;}
    html[lang="zh-Hant"] .statistic-content,
    html[lang="zh-Hans"] .statistic-content
    {
        line-height: 1.6rem;
        top:55%;
    }
    html[lang="zh-Hant"] #page-4-content-container,
    html[lang="zh-Hant"] #page-4-footer-content,
    html[lang="zh-Hant"] #page-5-content-container,
    html[lang="zh-Hant"] .page-6-inner-centre-text,
    html[lang="zh-Hans"] #page-4-content-container,
    html[lang="zh-Hant"] #page-5-content-container,
    html[lang="zh-Hans"] #page-4-footer-content
    {
        line-height: 1.6rem;
    }
    html[lang="zh-Hans"] #page-5-content-container,
    html[lang="zh-Hans"] .page-6-inner-centre-text
    {
        line-height: 1.3rem;
    }

    html[lang="zh-Hant"] #page-5-content-container,
    html[lang="zh-Hant"] .page-6-inner-centre-text
    {
        line-height: 1.3rem;
    }
    html[lang="zh-Hant"] #page-4-content-container,
    html[lang="zh-Hant"] #page-4-footer-content,
    html[lang="zh-Hant"] #page-5-content-container,
    html[lang="zh-Hant"] .page-6-inner-centre-text,
    html[lang="zh-Hans"] #page-4-content-container,
    html[lang="zh-Hans"] #page-4-footer-content,
    html[lang="zh-Hant"] #page-5-content-container,
    html[lang="zh-Hans"] #page-5-content-container{
        font-size: 1rem;
    }
    html[lang="zh-Hant"] #page-5-content-container{
        font-size: 0.9rem;
    }
    html[lang="zh-Hans"] #page-5-content-container{
        font-size: 0.9rem;
    }
}
@media screen and (max-width: 380px) {
    .statistic-number{font-size: 2.8rem;}
    .statistic-content{font-size:0.9rem;}
    #page-5-content-container{line-height: 1.2rem;}
}
@media screen and (max-width: 340px) {
    #page-5-content-container{line-height: 1.2rem;font-size:0.7rem;}
    #page-4-content-container, #page-4-footer-content{
        line-height: 1.2rem;
    }
    .statistic-number{font-size: 2.8rem;}
    .statistic-content{font-size:0.8rem;}

}

/* ================================================== */