/* 大筆電 */
@media (max-width: 1600px) {
}

/* 筆電 */
@media (max-width: 1440px) and (min-width: 991px) {

}

/* 大橫式平板(例: iPad Pro/Air) */
@media (max-width: 1200px) and (min-width: 992px) {
    
}

/* 平板（<=992px） */
@media (max-width: 992px) {

    /* #region -----Hero Section----- */

    .hero{
        margin-top: 70px;
    }

    .hero-container{
        padding: 0px;;
    }

    .hero-text{
        padding: 33px 20px 0px 20px;
    }

    .hero-text [name="title"] {
        margin-bottom: 20px;
    }

    .hero-text [name="content"] {
        margin-bottom: 0;
    }

    .hero-img{
        padding: 0;
    }

    .hero-img img[name="Background"] {
        width: 100%;
        height: auto;
    }

    /* #endregion */ 

    /* #region -----Quote Section----- */

    .quote{
        height: unset;
        padding: 65px 0;
        background: linear-gradient(111deg, var(--Primary-Blue) -12.17%, var(--White, #FFFFFF) 201.57%);
    }

    .quote .text-header{
        font-size: 21px;
        margin-bottom: 25px;
    }

    .quote-button-container{
        margin-top: 25px;
        margin-bottom: 20px;
    }

    /* #endregion */ 

    /* #region -----Chips Section----- */
    .chips{
        padding: 16px 0;
    }

    .chips [name="title"] {
        padding: 0 15%;
    }

    .chips-container{
        margin-top: 25px;
        padding: 30px 23px !important
    }

    .chips-image{
        padding: 0;
        margin-bottom: 25px;
    }

    .chips-image img {
        width: 100%;
        flex-shrink: 0;
        aspect-ratio: 255/152;
    }

    .chips-content{
        padding: 0;
    }

    .chips-text h5{
        margin-bottom: 11px
    }

    /* #endregion */ 

    /* #region -----Commitment Section----- */
    .commitment {
        padding: 43px 0;
    }

    .commitment-controls{
        gap: 50px;
        align-items: end;
    }

    .commitment-controls h2{
        margin-bottom: 0;
    }

    .commitment .card {
        padding: 24px 20px !important;
    }

    .commitment .card-content {
        flex-direction: column;
        flex-wrap: wrap;
        align-items: flex-start;
        gap: 21px;
    }

    .commitment .text-content{
        max-width: 100%;
        padding-right: 0;
    }

    .commitment h5{
        margin-bottom: 21px;
    }

    .commitment p{
        margin-bottom: 0;
    }

    .commitment .image-content{
        order: -1;
        max-width: 5rem;
    }
    /* #endregion */ 
    
    /* #region -----Report Section----- */
    .report-text{
        padding: 48px;
    }

    .report-text .btn_more_blue{
        margin-bottom: 8px;
    }
    /* #endregion */ 
    
}

/* 小平板或大手機（<=768px） */
@media only screen and (max-width: 768px) {
    
}

/* 小型手機（<=576px） */
@media (max-width: 576px) {
    
}