:root {
    --pearson-purple:#512eabff;
    --pearson-purple-bright:#7a53dd;
    --pearson-primary-purple-dark:#0d004d;
    --pearson-primary-purple-light:#c1bfff;
    --pearson-primary-purple-light-grey:#edecf6;
    --fuchsia: #DF41CF;
    --amber: #FFCE00;
    --turquoise: #56E2E1;
    --green: #9fce62;
    --amber-tint: #FFE67F;

    --context-text-color-primary:#595959;

    --typefamily-fallback: Helvetica, Verdana, sans-serif;
    --typefamily-primary: "Plus Jakarta Sans", var(--typefamily-fallback);

    --black: #000;
    --white:#FFF;
}

*{
    transition: 0.2s;
}
body,html{
    margin: 0px;
    font-size: 18px;
    color: var(--context-text-color-primary);
}
body{
    font-family: 'Noto+Sans+TC', 'Noto Sans TC', sans-serif;
    font-weight: 400;
}
body.en{
    
    font-family: Arial, 'Noto+Sans+TC', 'Noto Sans TC', sans-serif;
}
h1{
    font-weight: 400;
    text-align: center;
    color: var(--context-text-color-primary);
    font-size: 2.5rem;
    letter-spacing: 0rem;
    margin: 2rem 1rem 1.5rem 1rem;
}
.en h1{
    font-size: 2.4rem;
}
h2{
    color: var(--context-text-color-primary);
    font-weight: 400;
    font-size: 2rem;
    text-align: center;
    margin:2rem 1rem 2rem 1rem;
}
.container{
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 2rem 0;
    box-sizing: border-box;
}
#banner{
    margin-top: 50px;
    background-image: url(../images/20251204-banner.jpg); 
    width: 100%; 
    background-repeat: no-repeat; 
    background-size: cover;
    display: grid;
    align-content: center;
    min-height: 500px;
    background-position: center;
}
.banner-content{
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    color: #FFF;
    text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}
.banner-para{
    padding: 0px 16px;
}
.banner-para .title{
    font-size: 2.5em;
    margin-bottom: 0.2em;
}
.banner-para .description{
    font-size: 1.7em;
    letter-spacing: 0px;
    color: var(--pearson-primary-purple-light);
}

.zh-hk .banner-para .title{
    font-size: 3.5em;
    margin-bottom: 0.2em;
    line-height: 1em;
}

.zh-hk .banner-para .description{
    font-size: 2.5em;
    letter-spacing: 0px;
}

.banner-icon{
    margin-top: 20px;
    padding: 0px 16px;
}
.banner-icon > img{
    max-width: 125px;
    max-height: 125px;
}
#top-bar{
    height: 50px;
    background-color: #FFF;
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.2);
    z-index: 1;
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    box-sizing: border-box;
}
#top-bar .container{
    padding: 10px 16px;
}
.logo{
    height: 25px;
}
.lang-btn{
    float: right;
    background-image: url(../images/language.svg);
    padding-left: 28px;
    background-repeat: no-repeat;
    background-position: left center;
    color:#505759;
    font-size: 16px;
    text-decoration: none;
    height: 24px;
}
.lang-btn:hover{
    color: var(--pearson-purple);
    background-image: url(../images/language-hover.png);
}
/*------------*/
#slider{
    height: 550px;
    position: relative;
    margin-top: 50px;
}
.slider-content{
    height: 100%;
    width: 100%;
    background-color: #FFF;
}
.slider-content .sc-item{
    display: block;
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    color: #FFF;
    font-size: 3rem;
    text-shadow: 0px 1px 10px rgba(0, 0, 0, 0.4);
    font-weight: 100;
    overflow: hidden;
}
.slider-content .sc-item .sc-item-container{
    height: 100%;
    width: 100%;
    
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
    align-items: center;
    
}
.sc-item .title{
    font-size: 1em;
    margin-bottom: 0.4em;
}
.sc-item .description{
    font-size: 0.7em;
    letter-spacing: 1px;
}
.sc-item .description{
    font-size: 0.5em;
}
.slider-content .sc-item#sc-item-0{background-image: url(../images/slider-bg-0.png);}
.slider-content .sc-item#sc-item-1{background-image: url(../images/slider-bg-1.png);}
.slider-content .sc-item#sc-item-2{background-image: url(../images/slider-bg-2.png);}
.slider-content .sc-item#sc-item-3{background-image: url(../images/slider-bg-3.png);}
.slider-circle{
    position:absolute;
    bottom: 0px;
    left: 0px;
    width: 100%;
    height: 50px;
}
.slider-circle-group{
    display: flex;
    justify-content: center;
}
.slider-circle-group a{
    display: block;
    height: 12px;
    width: 12px;
    border-radius: 8px;
    border: 1px solid #FFF;
    margin: 8px;
    cursor: pointer;
}
.slider-circle-group a:hover{
    background-color:rgba(255, 255, 255, 0.2);
}
.slider-circle-group a.current{
    background-color:rgba(255, 255, 255, 0.8);
}
/*-----------*/
#first-intro .container{
    padding-bottom: 0;
}
.image-text{
    display: flex;
    width: 90%;
    margin: auto;
    flex-direction: row-reverse;
}
.image-text .it-image img{
    width: 300px;
    display: block;
    margin: auto;
}
.image-text .it-text{
    flex-basis: 70%;
}
.image-text .it-text div{
    width: 90%;
    margin: auto;
}
.image-text .it-text h1{
    text-align: left;
    margin: 0px;
    margin-bottom: 2rem;
}
.intro-text{
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}
.intro-text.large{
    font-size: 1.5rem;
}
.en .intro-text{
    line-height: 1.4rem;
}
.introduction-box-group{
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
}
.introduction-box-group .ibg{
    text-align: center;
    display: block;
    background-size: cover;
    background-position: bottom;
    flex-basis: 31%;
    margin: 0 1%;
    padding: 20px 16px 36px 16px;
    max-width: 300px;
    color: var(--context-text-color-primary);
    box-sizing: border-box;
    margin-bottom: 1rem;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.01);
    background-color: var(--white);
    /*border-radius: 12px;*/
    /*text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);*/
}
.en .introduction-box-group .ibg{
    padding: 20px 2px 36px 2px;
}
/*
.introduction-box-group .ibg-1{background-image: url(../images/intro-bg_blue.png);}
.introduction-box-group .ibg-2{background-image: url(../images/intro-bg_orange.png);}
.introduction-box-group .ibg-3{background-image: url(../images/intro-bg_pink.png);}
.introduction-box-group .ibg-4{background-image: url(../images/intro-bg_green.png);}
*/

.introduction-box-group .ibg-img img{
    display: block;
    margin: 8px auto;
    height: 60px;
}
.introduction-box-group .ibg .ibg-title{
    font-size: 1.4rem;
    margin-bottom: 0.2rem;
}
.introduction-box-group .ibg .ibg-character{
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
}
.en .introduction-box-group .ibg .ibg-character{
    font-size: 1.15rem;
    font-weight: bold;
}
.introduction-box-group .ibg .ibg-nubmer{
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
    font-weight: 900;
    letter-spacing: 1px;
}
.introduction-box-group .ibg .ibg-content{
    font-size: 1rem;
    display: flex;
    flex-wrap: wrap;
}
.introduction-box-group .ibg .ibg-content>div{
    flex-basis: 50%;
}
.introduction-box-group .ibg .ibg-content>div.full{
    flex-basis: 90%;
    margin: auto;
}
.introduction-box-group .ibg .ibg-content>div.full .remark{
    margin-top: 0.4rem;
    font-size: 0.8rem;
}

#teaching{
    background-color: #F5F5F5;
}

.teaching-point-group{
    display: flex;
    flex-direction: row;
    flex-wrap:wrap;
}
.teaching-point-group .tpg{
    flex: 1;
    text-align: center;
    min-width: 150px;
    margin-bottom: 48px;

}
.teaching-point-group .tpg img{
    display: block;
    margin: 0 auto;
    margin-bottom: 1rem;
}
.teaching-point-group .tpg-green{color: #99CA30;}
.teaching-point-group .tpg-orange{color: #EDB744;}
.teaching-point-group .tpg-pink{color: #FF8387;}
.teaching-point-group .tpg-blue{color: #21C7F7;}


.column-2-layout{
    margin: auto;
    margin-top: 16px;
    display: flex;
    flex-direction: row;
    max-width: 1100px;
    gap: 32px;
}
.ai-character-container{
    max-width: 180px;
    width: 100%;
}
.ai-character{
    width: 100%;
}
.column-2-layout .flow-item-group .fig-item{
    flex-basis:48%;
}

.ai-cta-btn{
    margin: auto;
    display: block;
    width: fit-content;
    max-width: 600px;
    background-color: var(--amber);
    color: var(--black);
    padding: 16px 32px;
    font-size: 1.4rem;
    border-radius: 45px;
    text-decoration: none;
    text-align: center;
}
.ai-cta-btn:hover{
    background-color: var(--amber-tint);
}
.flow-item-group{
    display: flex;
    flex-wrap: wrap;
    margin-top: 48px;
}
.fig-item{
    flex: 1;
    text-align: center;
}
#app-download{
    background-color: var(--pearson-primary-purple-dark);
    /*
    background-image: url(../images/download-bg.png);
    background-size: cover;
    height: 550px;
    background-position:center;
    */
}
#app-download h1, #app-download .text-intro-center.text-large{
    color: #FFF;
}
.text-intro-center{
    max-width: 800px;
    width: 96%;
    margin: auto;
    text-align: center;
    margin-bottom: 1rem;
    margin-top: 0.5rem;
}
.text-intro-center.text-large{
    font-size: 1.5rem;
    color: #505759;
}
.qr-code{
    margin: auto;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: row;
    flex-grow:0;
    justify-content:center;
    align-items:center;
    gap: 24px;

}
.qr-code .qr-code-img img{
    width: 200px;
    margin: auto;
    margin-top: 16px;
    margin-bottom: 0.5rem;
    border-radius: 4px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}
.qr-code .qr-code-app-store img.store{
    height: 50px;
    border: 1px solid #FFF;
    border-radius: 8px;
    overflow: hidden;
}
.qr-code .qr-code-app-store a:hover{
    opacity: 0.8;
}
.qr-code-text{
    color: #80C127;
    font-size: 1.4rem;
    margin-top: 2rem;
    letter-spacing: 1px;
}
#app-download .download-pdf-button{
    display: flex;
    align-items: center;
    flex-direction: row;
    flex-wrap: nowrap;
    margin: auto;
    margin-top: 1rem;
    width:fit-content;
    cursor: pointer;
    padding-left: 24px;
    padding-right: 24px;
}
.download-pdf-button .pdf-icon{
    padding: 0px 8px;    
}
.download-pdf-button .pdf-text{
    white-space: nowrap;
    padding-right: 8px;
}
.en .download-pdf-button .pdf-text{
    white-space: normal;
}
.download-pdf-button img{
    height: 36px;
}
/*----*/
#student-app .container{
    padding-bottom: 0;
}
.student-app-group{
    display: flex;
    justify-content: center;
}
.student-app-group .sag-item{
    text-align: center;
    color: #99CA30;
    font-size: 1.3rem;
    margin: 0 1%;
}
.student-app-group .sag-item img{
    display: block;
    margin: auto;
    margin-top: 1rem;
    width: 85%;
}

/*------*/
#learning{
    /*background-color: #FFFFEE;*/
}
#report{
    /*background-color: #EAFFFF;*/
}
#ai-screens{
    background-color: #ffF6F6;
}
.flow-item-group{
    justify-content: center;
    flex-wrap: wrap;
}
.flow-item-group .fig-item{
    margin: 0 1%;
    display: flex;
    flex: 0;
    margin-bottom: 2rem;
    flex-basis: 40%;
}
.flow-item-group.report-screen{
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
}
.flow-item-group.report-screen .fig-item{
    margin: 0 1%;
    display: flex;
    flex: 0;
    margin-bottom: 2rem;
    flex-basis: 48%;
}
.flow-item-group.report-screen .fig-item.vertical{
    flex-basis: 25%;
}
.flow-item-group hr{
    width: 100%;
    border: 0;
}
.flow-item-group .fig-item img{
    display: block;
    margin: auto;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 4px;
    width: 100%;
}
.flow-item-group.qr-code .fig-item img{
    width: 50px;
}
/*------*/
#template{
    /*background-color: #F1F8E9;*/
}
.flow-item-group.template{
    flex-wrap: nowrap;
    justify-content:center;
}
.flow-item-group.template .fig-item{
    color: #505759;
    font-size: 1rem;
    margin-top: 1rem;
    flex: 0;
    padding: 0 1rem;
    flex-basis: 33.33%;
    margin-bottom: 1rem;
    box-sizing: border-box;
}
.flow-item-group.template .fig-item img{
    display: block;
    /*margin-bottom: 1rem;*/
}

/*------*/
#flow{
    padding-bottom: 120px;
}
#flow h2{
    margin-top: 4rem;
    margin-bottom: 1.5rem;
}
.flow-item-group.flow{
    justify-content: center;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}
.flow-item-group.flow .fig-item{
    text-align: center;
    flex: 1;
    width: 23%;
    margin: 1%;
    color: #666;
}
.flow-item-group.flow .fig-item img{
    display: block;
    margin: auto;
    margin-bottom: 1rem;
}
#introduction{
    background-color: var(--pearson-primary-purple-light-grey);
}
#ai{
    background-color: var(--pearson-purple-bright);
    color: var(--white);
}
#ai h1 {
    color: #FFF;
    font-size: 2rem;
    margin-left: 16px;
    margin-right: 16px;
}
#ai .intro-text{
    width: auto;
    max-width: 1200px;
    margin-left: 24px;
    margin-right: 24px;
}
#pricing{
    background-color: var(--pearson-primary-purple-light);
}
#pricing h1{
    margin-bottom: 8px;
}
.pricing-intro{
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 2rem;
}
.rate-card{
    max-width: 800px;
    margin: auto;
    margin-bottom: 2rem;
}
.rate-card .remark{
    text-align: right;
    margin-top: 0.5rem;
    font-size: 0.9rem;
    width: 98%;
    margin-left: auto;
    margin-right: auto;
}
.price-table{
    margin: auto;
    width: 98%;
    max-width: 800px;
    border-radius: 8px;
    overflow: hidden;
    background-color: #FFF;
    box-shadow: 0px 4px 4px rgba(0,0,0,0.2);
    border-spacing: 0px;
    border-collapse: separate;
    border: 4px solid #FFF;
}
.price-table th, .price-table td{
    text-align: left;
    padding: 12px;
    border-right: 1px solid #FFF;
    border-bottom: 1px solid #FFF;
}
.price-table th{
    background-color: var(--pearson-purple-bright);
    color: #FFF;
    white-space: nowrap;
}
.price-table tr td:first-child{
    white-space: nowrap;
    
}
.en .price-table tr td:first-child{
    /*white-space: normal;*/
}
.price-table tr td:last-child, .price-table tr th:last-child{
    border-right: 0;
    white-space: nowrap;
}
.en .price-table tr td:last-child, .en .price-table tr th:last-child{
    white-space: normal;
}
.price-table tr:nth-child(even){
    background-color: var(--table-cell-bg-even);
}
.price-table tr:nth-child(odd){
    background-color: var(--table-cell-bg-odd);
}
.price-table .original{
    text-decoration: line-through;
    color: #999;
}
.price-table .highlight{
    color: #FF8387;
    font-weight: bold;
}
.price-table .result{
    text-align: center;
}
.price-table .check{
    color: #80C127;
    text-align: center;
}
.price-table .price-old, .price-table .price-new, .price-table .price-regular{
    text-align: center;
    width: 30%;
    white-space: nowrap;
}
.price-table td.price-old{
    text-decoration: line-through;
}
.price-table td.price-new{
    font-weight: bold;
    font-size: 1.1rem;
    color: var(--pearson-purple-bright);
}
.price-table td.price-regular{
    color: #000;
}
#poster{
    background-color: #FFF;
}
.poster-desktop{
    margin: auto;
    width: 94%;
    /*max-width: 1000px;*/
    max-width: 700px;
    display: block;
}
.poster-mobile{
    margin: auto;
    width: 94%;
    display: none;
}
#ending{
    background-color: #F5F5F5;
}
/*------*/
#footer{
    background-color: var(--pearson-primary-purple-dark);
    color: #FFF;
    font-size: 0.8rem;
}
#footer a{
    color: #FFF;
}
#footer .container, #copyright .container{
    padding: 1rem;
}
.company_name{
    font-size: 1.1rem;
    margin-bottom: 0.1rem;
}
.footer_table{
    display: flex;
    flex-wrap: wrap;
}
.footer_title{
    flex-basis: 100px;
    word-break:keep-all;
}
.en .footer_title{
    flex-basis: 180px;
}
.footer_content{
    flex: 1;
}
#copyright{
    background-color: var(--pearson-primary-purple-dark);
    color: #FFF;
    font-size: 0.7rem;
}

body.gse-body, #gse{
    background-color: #FDF8DB;
}
#gse .container{
    padding-top: 0.1rem;
}
#gse h1{
    margin-bottom: 2rem;
}
#gse.gse-en h1{
    font-size: 1.9rem;
}
.gse-context{
    max-width: 960px;
    width: 98%;
    margin: 1rem auto;
}
table.gse-mapping-table{
    max-width: 960px;
    width: 98%;
    margin: auto;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0px 4px 4px rgba(0,0,0,0.2);
    border-spacing: 1px;
    border: 4px solid #FFF;
    border-collapse: separate;
    background-color: #FFF;
}

table.gse-mapping-table tr td, table.gse-mapping-table tr th{
    padding: 12px;
    vertical-align: top;
}

table.gse-mapping-table.en-table tr td{
    padding: 8px;
}
table.gse-mapping-table.en-table tr.title td{
    font-size: 1.1rem;
}
table.gse-mapping-table tr td:first-child{
    color: #FFF;
    text-align: center;
    white-space: nowrap;
}

table.gse-mapping-table tr.gmt-item-0 td:first-child, table.gse-mapping-table tr.gmt-item-0.title td{background-color: #008BC3;}
table.gse-mapping-table tr.gmt-item-1 td:first-child, table.gse-mapping-table tr.gmt-item-1.title td{background-color: #08B5A3;}
table.gse-mapping-table tr.gmt-item-2 td:first-child, table.gse-mapping-table tr.gmt-item-2.title td{background-color: #E75457;}
table.gse-mapping-table tr.gmt-item-3 td:first-child, table.gse-mapping-table tr.gmt-item-3.title td{background-color: #A00287;}
table.gse-mapping-table tr.gmt-item-4 td:first-child, table.gse-mapping-table tr.gmt-item-4.title td{background-color: #80C127;}
table.gse-mapping-table tr.gmt-item-5 td:first-child, table.gse-mapping-table tr.gmt-item-5.title td{background-color: #BDCF1C;}
table.gse-mapping-table tr.gmt-item-6 td:first-child, table.gse-mapping-table tr.gmt-item-6.title td{background-color: #F5BF0F;}

table.gse-mapping-table tr.gmt-item-0 td{background-color: #CDE9F3;}
table.gse-mapping-table tr.gmt-item-1 td{background-color: #CCEFEA;}
table.gse-mapping-table tr.gmt-item-2 td{background-color: #F9DDDD;}
table.gse-mapping-table tr.gmt-item-3 td{background-color: #EACBDB;}
table.gse-mapping-table tr.gmt-item-4 td{background-color: #E7F2D4;}
table.gse-mapping-table tr.gmt-item-5 td{background-color: #EFF7D0;}
table.gse-mapping-table tr.gmt-item-6 td{background-color: #FCF4CD;}

table.gse-mapping-table tr.gmt-title, table.gse-mapping-table tr.en-format td:first-child{
    background-color: #1D2D4F;
    color: #FFF;
}
table.gse-mapping-table tr.en-format td:first-child{
    text-align: left;
}

/*-----------------*/
#button-group{
    background-color: #F5F5F5;
}
.text-description{
    text-align: center;
    width: 98%;
    margin: auto;
    font-size: 1.5rem;
    color: var(--context-text-color-primary);
    margin-bottom: 2rem;
}
.page-button{
    display: flex;
    justify-content:center;
}
.page-button.back-button{
    justify-content: start;
    max-width: 960px;
    width: 98%;
    margin: auto;
}
.page-button a, .download-pdf-button{
    display: block;
    background-color:var(--pearson-purple-bright);
    color: #FFF;
    padding: 12px 8px;
    text-decoration: none;
    width: 33%;
    text-align: center;
    margin: 4px;
    border-radius:40px;
    font-size: 1.2rem;
    box-sizing: border-box;
}
.en .page-button a, .en .download-pdf-button{
    width: 45%;
}
.page-button.back-button a{
    width: auto;
}
.page-button a:hover, .download-pdf-button:hover{
    background-color: var(--pearson-purple);
}
.learning-step{
    display: flex;
    flex-direction: row;
    margin: auto;
}
.mobile-img{
    flex-basis: 40%;
}
.mobile-img img{
    width: 85%;
    margin: auto;
    display: block;
}
.nine-items{
    display: flex;
    flex-direction: column;
    flex-basis: 60%;
}
.nine-items .item{
    display: flex;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid #DDD;
}
.nine-items .item .item-icon{
    width: 50px;
    height: 50px;
    margin-right: 8px;
}
.nine-items .item .item-title{
    margin-right: 8px;
    width: 80px;
}
.en .nine-items .item .item-title{
    width: 90px;
}
.nine-items .item .item-details{
    flex: 1;
}
.nine-items .item .item-details .item-number, .nine-items .item .item-details .item-text{
    display: inline;
}
/*-----------------*/

/*----------------------------------------------------------------*/
@media screen and (max-width: 1300px) {
    
}
@media screen and (max-width: 1100px) {
    .introduction-box-group .ibg .ibg-content>div{
        flex-basis: 100%;
    }
    .image-text .it-text h1{
        font-size: 1.9rem;
    }
    .image-text .it-image img{
        width: 260px;
    }
    #banner{
        min-height: 380px;
    }
    
}
@media screen and (max-width: 800px) {
    body,html{
        font-size: 16px;
    }
    h1{
        font-size: 1.8rem;
        margin-left: 4px;
        margin-right: 4px;

    }
    #poster h1{
        font-size: 1.5rem;
    }

    h2{
        font-size: 1.5rem;
    }
    #slider{
        height: 350px;
    }
    
    .teaching-point-group .tpg{
        width: 50%;
    }
    /*-----*/
    .column-2-layout{
        flex-direction: column;
        align-items: center;
    }
    .flow-item-group.learning-screen{
        flex-wrap: wrap;
    }
    .flow-item-group.learning-screen .fig-item{
        flex-basis: 45%;
        margin-left: 1%;
        margin-right: 1%;
    }
    
    
    /*-----*/
    .flow-item-group.template{
        flex-wrap: wrap;
    }
    .flow-item-group.template .fig-item{
        flex-basis: 50%;
        padding: 0 0.3rem;
        font-size: 0.6rem;
    }
    .mobile-img{
        flex-basis: 25%;
    }
    .nine-items{
        flex-basis: 75%;
    }
    .text-intro-center.text-large{
        font-size: 1.2rem;
    }
    
    #banner{
        min-height: 300px;
    }

    .banner-para{
    
    }
    .banner-para .title{
        font-size: 1.7em;
    }
    .banner-para .description{
        font-size: 1.2em;
    }
    .banner-icon{
        
    }
    .banner-icon > img{
        max-width: 60px;
        max-height: 60px;
    }
    
    .zh-hk .banner-para .title{
        font-size: 2.5em;
        margin-bottom: 0.2em;
    }

    .zh-hk .banner-para .description{
        font-size: 1.5em;
    }
    .en .price-table tr td:first-child{
        white-space: normal;
    }
    .en .price-table th{
        white-space: normal;
    }
    
}
@media screen and (max-width: 650px) {
    #slider{
        height: 250px;
    }
    .slider-content .sc-item{
        font-size: 1.65rem;
    }
    .introduction-box-group .ibg{
        flex-basis: 48%;
        flex-grow: 0;
    }
    .introduction-box-group .ibg .ibg-content>div{
        flex-basis: 50%;
        font-size: 1rem;
    }
    .image-text{
        flex-direction: column;
        text-align: center;
        width: 90%;
    }
    .image-text .it-text h1{
        text-align: center;
        font-size: 1.5rem;
    }
    #student-app h2{
        margin-bottom: 0rem;
    }
    .student-app-group{
        flex-direction: column;
    }
    .student-app-group .sag-item{
        margin-top: 2rem;
        font-size: 1.2rem;
    }
    .student-app-group .sag-item img{
        width: 300px;
    }
    .flow-item-group.template .fig-item{
        flex-basis: 90%;
    }
    .flow-item-group.report-screen .fig-item{
        margin: 0 1%;
        display: flex;
        flex: 0;
        margin-bottom: 2rem;
        flex-basis: 48%;
    }
    .flow-item-group.report-screen .fig-item.vertical{
        flex-basis: 25%;
    }
    .flow-item-group.template .fig-item.multiple-img img{
        width: 100%;
        height: auto;
        
    }
    .flow-item-group.flow .fig-item{
        flex-basis: 48%;
    }
    .column-2-layout .flow-item-group .fig-item{
        flex-basis:100%;
    }
    .poster-desktop{
        display: none;
    }
    .poster-mobile{
        display: block;
    }
    .page-button{
        flex-direction: column;
        align-items: center;
    }
    .page-button.back-button{
        align-items: flex-start;
    }
    .text-description{
        font-size: 1.3rem;
        width: 80%;
    }
    .page-button a, .en .page-button a{
        width: 96%;
        margin-left: 0;
        margin-right: 0;
    }
    /*---------------*/
    table.gse-mapping-table{
        border-radius: 12px;
    }
    table.gse-mapping-table tr td, table.gse-mapping-table tr th{
        padding: 4px;
        font-size: 0.5rem;
    }
    table.gse-mapping-table.en-table tr.title td{
        font-size: 1rem;
    }
    table.gse-mapping-table.en-table tr td{
        font-size: 0.8rem;
    }
    /*--------------*/
    .price-table{
        border-radius: 4px;
        border-collapse: separate;
    }
    .price-table th, .price-table td {
        padding: 6px;
        font-size: 0.9rem;
    }
    .en .price-table th, .price-table td{
        padding: 6px;
    }
    .flow-item-group.learning-screen .fig-item{
        flex-basis: 80%;
    }
    .flow-item-group.report-screen .fig-item{
        flex-basis: 80%;
    }
    .flow-item-group.report-screen .fig-item.vertical{
        flex-basis: 35%;
    }
    .learning-step{
        flex-direction: column;
        width: 96%;
    }
    .mobile-img img{
        width: 75%;
    }
    .mobile-img{
        margin-bottom: 0.8rem;
    }

    #banner{
        min-height: 250px;
    }
    .qr-code{
        flex-direction: column;
    }
}

@media screen and (max-width: 500px) {
    .banner-content {
        width: 100%;
    }
    #banner {
        background-position: 30% center;
    }
    .ai-cta-btn{
        padding: 12px 16px;
        font-size: 1.2em;
    }
}
@media screen and (max-width: 340px) {
    .en h1 {
        font-size: 1.6rem;
    }
    .en .introduction-box-group .ibg .ibg-character{
        font-size: 1rem;
    }
    .en .price-table th, .price-table td{
        padding: 2px;
        font-size: 0.8rem;
    }
}
