img {
    -webkit-user-drag: none;
}

:root {
    --bs-container-sm: 540px;
    --bs-container-md: 720px;
    --bs-container-lg: 1000px;
    --bs-container-xl: 1200px;
    --bs-container-xxl: 1360px;
}

@media (min-width: 1400px) {
    .container, .container-sm, .container-md, .container-lg, .container-xl, .container-xxl {
        max-width: var(--bs-container-xxl);
    }
}

.container, 
.container-fluid, 
.container-lg, 
.container-md, 
.container-sm, 
.container-xl, 
.container-xxl {
    padding: 0px;
}

.row {
    margin-left: 0%;
    margin-right: 0%;
}

.row > * {
    padding-left: 0%;
    padding-right: 0%;
}

.main-area-title {
    font-family: Roboto;
    font-size: 100px;
    line-height: 110%;
    font-weight: bold;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.title-blue {
    color: #0055B8;
}

.title-white {
    color: #ffffff;
}

/* =========================================== Header =========================================== */

.logo-white-img {
    cursor: pointer;
}

.header-list {
    letter-spacing: 0.54px;
    font-family: Roboto;
    font-size: 18px;
    font-weight: 900;
    color: #000000;
    font-style: normal;
    font-variant: normal;
    line-height: 24px;
}

.header-list li {
    align-content: center;
}

.link-dark:hover {
    color: #0055B8 !important;
}

.header-img {
    max-width: 138px;
    margin-left: 20px;
    margin-right: 120px;
    cursor: pointer;
}

.header-lang {
    padding-right: 30px;
    display: flex;
    gap: 3px;
}

.header-lang-btn-e {
    padding: 10px 7px;
    line-height: 100%;
    width: 36px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
}

.header-lang-btn-c {
    padding: 10px 10px;
    line-height: 100%;
    width: 36px;
    font-size: 16px;
    font-weight: 600;
    font-family: Hurme Geometric;
    cursor: pointer;
}

.lang-active {
    background: #0155B8;
    color: #FFFFFF;
}

.s-header {
    position: fixed;
    z-index: 5;
}

.header-padding {
    margin-top: 0px;
}

.row-header {
    backdrop-filter: blur(30px);
    background:#ffffff60;
    -webkit-backdrop-filter: blur(30px);

    margin-top: 10px;
    margin-left: 10px;
    margin-right: 10px;

    height: 70px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.header-dropdown-img {
    margin-left: 8px;
}

.dropdown-padding {
    padding: 23px 20px !important;
}

.header-dropdown:hover > .header-dropdown-menu {
    visibility: visible;
    opacity: 1;
    /*transition: opacity 0.3s ease;*/
}

.header-dropdown-menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: absolute;
    background-color: #FFFFFF;
    list-style: none;
    padding: 5px 0px;
    margin: 0;
    width: 218px;
    left: -35%;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s;
}

.header-dropdown-menu li {
    padding: 5px 0px;
    margin: 5px 0px;
}

.header-dropdown-menu li a {
    color: #000000;
    font-size: 18px;
    font-weight: 500;
    font-family: Roboto;
    text-decoration: none;
    cursor: pointer;
}

.header-dropdown-menu li a:hover {
    color: #0155B8;
}

.nav-item {
    position: relative;
}

.header-mobile {
    display: none;
}

.header-mobile-img {
    width: 181px;
    cursor: pointer;
}

.header-mobile-btn {
    width: 28px;
    aspect-ratio: 1 / 1;
}

.header-svg {
    width: 28px;
    height: 28px;
}

.lang-mobile-padding {
    padding-right: 0px !important;
    padding-top: 35px;
}

.header-mobile-dropdown {
    cursor: pointer;
}

.header-mobile-dropdown svg {
    transition: all 0.3s ease;
}

.line {
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.header-mobile-dropdown.active .line:nth-child(1) {
    animation: toX_1 0.3s ease forwards;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform-origin: center;
}

.header-mobile-dropdown:not(.active) .line:nth-child(1) {
    animation: toLine_1 0.3s ease forwards;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform-origin: center;
}

.header-mobile-dropdown.active .line:nth-child(2) {
    opacity: 0;
}

.header-mobile-dropdown.active .line:nth-child(3) {
    animation: toX_3 0.3s ease forwards;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform-origin: center;
}

.header-mobile-dropdown:not(.active) .line:nth-child(3) {
    animation: toLine_3 0.3s ease forwards;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform-origin: center;
}

@keyframes toX_1 {
    0% { transform: translateX(0px) translateY(0) rotate(0); }
    100% { transform: translateX(-3px) translateY(3px) rotate(45deg); }
}
  
@keyframes toLine_1 {
    0% { transform: translateX(-3px) translateY(3px) rotate(45deg); }
    100% { transform: translateX(0px) translateY(0) rotate(0); }
}

@keyframes toX_3 {
    0% { transform: translateX(0px) translateY(0) rotate(0); }
    100% { transform: translateX(-3px) translateY(-6px) rotate(-45deg); }
}
  
@keyframes toLine_3 {
    0% { transform: translateX(-3px) translateY(-6px) rotate(-45deg); }
    100% { transform: translateX(0px) translateY(0) rotate(0); }
}

.header-mobile-dropdown-menu {
    display: none;
    flex-direction: column;
    align-items: center;
    
    background-color: #0155B8;
    list-style: none;
    padding: 35px 0px;
    margin: 0;
    width: 100%;
    max-height: 657px;

    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s;
    z-index: auto;
    overflow-y: auto;
}

.header-mobile-dropdown-menu li {
    margin: 15px 0px;
}

.header-mobile-dropdown-menu li a {
    color: #FFFFFF;
    font-size: 18px;
    line-height: 24px;
    font-weight: bold;
    font-family: Roboto;
    text-decoration: none;
    cursor: pointer;
}

@media (max-width: 1660px) {
    .s-header {
        z-index: 20;
    }
    .header-desktop {
        display: none !important;
    }
    .header-mobile {
        display: flex;
        margin: 0px;
        height: auto;
        background-color: #FFFFFF;
        padding: 15px;
    }
    .home-banner-header {
        display: none !important;
    }
    .about-head {
        display: none !important;
    }

}

/* =========================================== Footer =========================================== */

.footer_line1-switch_mobile {
    display: none;
    visibility: hidden;
}

.footer_line2-switch_mobile {
    display: none;
    visibility: hidden;
}

.footer {
    display:flex;
    font-family: "Roboto";
    position: relative;
}

footer {
    position: relative;
    z-index: 5;
    background: #FFFFFF;
}

/* line 1 */
.footer_line1 {
    display:flex;
    justify-content: space-between;
    margin-top: 30px;
    padding-left: 30px;
}

.footer_line1_left {
    display:flex;
    gap: 30px;
}

.footer_line1_left_sub2 {
    font-size: 14px;
    color: #B1B1B1;
    gap: 7px;
    display: flex;
    flex-direction: column;
    line-height: 19px;
}

.footer_line1_left_divider {
    height: 70px;
    border: 1px solid #015BA5;
}


/* line 2 */
.footer_line2 {
    display:flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: 63px;
    padding-left: 30px;
    padding-right: 30px;
}

.footer_line2_left {
    display:flex;
    gap: 20px;
    font-size: 12px;
    color: #B1B1B1;
    text-decoration: underline;
}

.footer_line2_right {
    display:flex;
    font-size: 20px;
    font-weight: Bold;
    color: #B1B1B1;
    gap: 10px;
}

.footer_line2_right_icon {
    display:flex;
    gap: 8px;
    margin-left: 24px;
}


/* line 3 */
.footer_line3 {
    background: #0055B8;
    font-size: 12px;
    color: #FFFFFF;
    text-align: center;
    margin-top: 30px;
}
.footer_line3_text {
    padding-top: 6px;
    padding-bottom: 8px;
}

@media (max-width: 1100px) {
    .footer_line1-switch_desktop {
        display: none !important;
        visibility: hidden  !important;
    }
    .footer_line1-switch_mobile {
        display: flex;
        visibility: unset;
        font-size: 20px;
        font-weight: Bold;
        color: #B1B1B1;
        gap: 10px;
        flex-direction: column;
        align-items: center;
    }
    .footer_line1-switch_mobile .footer_line2_right_icon{
        margin-left: 0px;
    }
    .footer_line2-switch_desktop {
        display: none !important;
        visibility: hidden  !important;
    }
    .footer_line2-switch_mobile {
        display: flex;
        font-size: 20px;
        font-weight: Bold;
        color: #B1B1B1;
        gap: 10px;
        visibility: unset;
        height: 30px;
    }
    .footer_line1 {
        align-items: center;
        flex-direction: column;
        padding-left: 0px;
        gap: 40px;
    }
    .footer_line1_left {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }
    .footer_line1_left_divider {
        height: 1px;
        width: 60px;
    }
    .footer_line1_left_sub2 {
        text-align: center;
    }
    .footer_line2 {
        padding-right: 0px;
    }
}
@media (max-width: 500px) {
    .footer_line1_left {
        width: 274px;
    }
}

/* =========================================== Home Page =========================================== */


/* ========================= Animation =========================  */
.about-animation {
    animation: about-slide 1s ease-in-out forwards;
}
    
@keyframes about-slide {
    0% {
        background-position: -25% 0, 150% 0;
        opacity: 0.3;
    }
    100% {
        background-position: top left,top right;
        opacity: 1;
    }
}

.skills-animation {
    animation: skills-slide 1s ease-in-out forwards;
}
    
@keyframes skills-slide {
    0% {
        background-position: -25% 0, 150% 0;
        opacity: 0.3;
    }
    100% {
        background-position: 0% 50%, 130% -30%;
        opacity: 1;
    }
}
/* ========================= Modal (POPUP) =========================  */
.modal-fullscreen {
    padding: 30px 30px 0px 30px;
}

.mbd-op {
    opacity: 0 !important;
}

.modal-backdrop {
    background-color: #ffffff00; /* 移除默認的半透明黑色 */
    opacity: 1 !important;
    backdrop-filter: blur(8px); /* 添加模糊效果 */
    -webkit-backdrop-filter: blur(8px); /* 兼容 Safari */
}

.modal-slide-up .modal-dialog {
    transform: translateY(100%); /* 初始位置在底部下方 */
    transition: transform 0.3s ease-out; /* 滑動動畫 */
}

.modal-slide-up.show .modal-dialog {
    transform: translateY(0); /* 顯示時滑到正常位置 */
}

/* Modal 關閉時向下滑動 */
.modal-slide-down .modal-dialog {
    transform: translateY(100%) !important; /* 關閉時滑回底部 */
    transition: transform 0.3s ease-in; /* 關閉動畫 */
}

/* 移除 Modal 背景淡入效果 */
.modal-slide-up {
    transition: none; /* 禁用背景淡入 */
}

.modal-flex-btn {
    display: flex;
    gap: 15px;
    align-items: center;
    color: #0055B8;
    font-family: Roboto;
    font-size: 16px;
    line-height: 100%;
    font-weight: 900;
    background: transparent;
    border: 0;
    padding: 3px 6px;
}

.home-popup-close {
    background: transparent;
    border: 0;
}

.home-popup-close img {
    width: 30px;
}

.home-popup {
    border-top: 1px solid #015BA5 !important;
    border-bottom: 0  !important;
    border-left: 1px solid #015BA5 !important;
    border-right: 1px solid #015BA5 !important;
}

.modal-header {
    border: 0;
    position: absolute;
    width: 100%;
    z-index: 99;
}

.popup-content {
    display: flex;
    justify-content: center;
}

.popup-content-flex {
    width: 1360px;
    display: flex;
    flex-direction: column;
    margin-top: 100px;
    margin-bottom: 100px;
}

.popup-content-title {
    margin-bottom: 35px;
    color: #0055B8;
    font-family: Roboto;
    font-size: 60px;
    line-height: 117%;
    font-weight: 900;
    width: 1000px;
}

.popup-content-award {
    display: flex;
    flex-direction: column;
    margin-bottom: 60px;
    gap: 15px;
    width: 50%;
}

.popup-content-award-row {
    display: flex;
}

.popup-content-award-row-title {
    width: 28%;
    color: #000000;
    font-family: Roboto;
    font-size: 16px;
    line-height: 21px;
    font-weight: 500;
}

.popup-content-award-row-main {
    width: 72%;
    color: #000000;
    font-family: Roboto;
    font-size: 20px;
    line-height: 26px;
    font-weight: 900;
}

.popup-content-detail {
    display: flex;
    justify-content: space-between;
}

.popup-content-detail-desc {
    display: flex;
    flex-direction: column;
    flex: 0 0 45%;
    gap: 30px;
}

.popup-content-detail-desc-top {
    display: flex;
    align-items: center;
    gap: 22px;
    color: #0055B8;
    font-size: 24px;
    font-family: Roboto;
    font-weight: 900;
    line-height: 110%;

    border-left: 7px solid #0055B8;
    padding-left: 15px;
}

.popup-content-detail-desc-bottom {
    color: #000000;
    font-size: 16px;
    font-family: Roboto;
    font-weight: 500;
    line-height: 26px;
}

.popup-content-detail-swiper {
    flex: 0 0 45%;
}

.popup-content-detail-swiper img {
    width: 100%;
    aspect-ratio: 630 / 600;
    object-fit: contain;
}

/* ========================= Image Container =========================  */
.nav-link {
    padding: 8px 20px;
    cursor: pointer;
}

.image-container-L::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 486px;
    max-width: 40%;
    height: 100%;
    background: transparent linear-gradient(90deg, #E81F76 0%, #E81F76 19%, #E81F7600 100%) 0% 0% no-repeat padding-box;
    pointer-events: none; /* 避免影響圖片交互 */
    z-index: 2;
    opacity: 1; /* 初始透明度 */
    transition: background,opacity,width 0.3s ease; /* 設置過渡效果 */
}

.image-container-L.hovered::before,
.image-container-L:hover::before {
    opacity: 1; /* 滑鼠懸停時漸層消失 */
    transition: background,opacity,width 0.3s ease; /* 設置過渡效果 */
    width: 70%;
    max-width: 70%;
    background: transparent linear-gradient(90deg, #E81F76 0%, #E81F76 50%, #E81F7600 100%) 0% 0% no-repeat padding-box;
}

.image-container-R::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 486px;
    max-width: 40%;
    height: 100%;
    background: transparent linear-gradient(270deg, #0055B8 0%, #0055B8 19%, #E81F7600 100%) 0% 0% no-repeat padding-box;
    pointer-events: none; /* 避免影響圖片交互 */
    z-index: 2;
    opacity: 1; /* 初始透明度 */
    transition: background,opacity,width 0.3s ease; /* 設置過渡效果 */
}

.image-container-R.hovered::before,
.image-container-R:hover::before {
    opacity: 1; /* 滑鼠懸停時漸層消失 */
    transition: background,opacity,width 0.3s ease; /* 設置過渡效果 */
    width: 70%;
    max-width: 70%;
    background: transparent linear-gradient(270deg, #0055B8 0%, #0055B8 50%, #E81F7600 100%) 0% 0% no-repeat padding-box;
}

/* ========================= Student Achievements =========================  */

.mySwiper {
    width: 100%; /* 相對於父容器 */
    height: 440px;
}

.swiper-slide-stu {
    flex: 0 0 440px;
    height: 440px;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 0px;
    cursor: pointer;
    aspect-ratio: 1 / 1;
}

.swiper-slide-detail {
    position: absolute;
    top: 0;
    left: 0;
    padding: 30px;
    height: 100%;
    width: 100%;
    background: #00000080;
    transition: opacity 0.3s ease; /* 設置過渡效果 */
    opacity: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.swiper-slide-detail span {
    display: flex;
    font-size: 40px;
    font-family: Roboto;
    font-weight: bold;
    color: #ffffff;
    line-height: 120%;
}

.swiper-slide-detail-img {
    display: flex;
    width: 30px;
    margin-left: auto;
}

.swiper-slide-detail:hover {
    opacity: 1;
}

.swiper-slide img {
    width: 100%;
    object-fit: cover;
}

.df-img {
    width: unset !important;
    object-fit: unset !important;
}

.home-stu_achm-container {
    display: flex;
    justify-content: center;
}

.home-stu_achm {
    display:flex;
    flex-direction: column;
    max-width: 1360px;
    gap: 62px;
    margin-top: 100px;
    margin-bottom: 100px;

}

.home-stu_achm-range {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    position: relative;
    width: 1360px;
}

.home-stu_achm-title {
    display:flex;
    align-items: center;
    color: #0055B8;
    font-family: Roboto;
    font-size: 40px;
    line-height: 50px;
    font-weight: 900;
    gap: 22px;
}

.home-stu_achm-title-btn {
    font-size: 16px;
    font-family: Roboto;
    font-weight: 500;
    color: #ffffff;
    padding: 10px 18px;
    background: #0055B8;
    max-width: 275px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    max-height: 41px;
    line-height: 21px;
    align-items: center;
}

.home-stu_achm-swiper {
    display: flex;
    padding-bottom: 10px;
    justify-content: center;
    align-items: center;
    margin-left: 0px;
    margin-right: 0px;
    
    /* Temp */
    width: 100%;
    /*
    width: 2000px;
    width: 104%;
    */
}


/* ========================= Scheme =========================  */
.home-scheme-container{
    display: flex;
    background: #FFFFFF;
    justify-content: center;

    /* 
    height: 586px;
    可能唔洗,上面食左25px,呢度(home-scheme)補
    margin-top: -25px;
    */
}
.home-scheme {
    display: flex;
    margin-top: 70px;
    margin-bottom: 70px;
    margin-left: 70px;
    margin-right: 70px;
    width: 100%;
}
.home-scheme-flex {
    display: flex;
    width: 100%;
    height: 100%;
    position: relative;
    flex: 0 0 50%;
    padding: 50px;
    aspect-ratio: 890 / 446;
    cursor: pointer;
    /*
    background-image: url("/themes/hkiit/images/1_home/scheme_bg.png");
    background-repeat: no-repeat;
    background-size: cover;
    */
}
.home-scheme-main-L {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 3;
}

.home-scheme-main-R {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 3;
}

.home-scheme-range {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}
.home-scheme-range-title {
    font-size: clamp(24px, 3vw, 40px);
    /*
    font-size: 40px;
    */
    line-height: 120%;
    font-family: Roboto;
    font-weight: bold;
    max-width: 475px;
    color: #FFFFFF;
    text-shadow: 0px 0px 10px #00000029;
}

.title-right {
    text-align: end;
}

.range-R {
    justify-content: flex-end !important;
}

.home-scheme-range-btn img {
    width: 30px;
}

.home-scheme-flex-bg {
    z-index: 1;
    position: absolute;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    height: 100%;
    min-height: 100%;
    max-height: 100%;
    inset: 0;
    -o-object-fit: none;
    object-fit: cover;

}

/* ========================= IT Skills =========================  */
.home-skills-container {
    margin-top: -50px;
    background: #0155B8;
    z-index: 1;
    position: relative;
}

.home-skills {
    background-image: url("/themes/hkiit/images/1_home/type_bg2.svg"),url("/themes/hkiit/images/1_home/type_bg1.svg");
    background-repeat: no-repeat,no-repeat;
    position: relative;
    background-position: -25% 0, 150% 0;
    /*
    background-position: 0% 50%, 120% -300px;
    */
}

.home-skills-flex {
    display: flex;
    justify-content: center;
}

.home-skills-main {
    display: flex;
    flex-direction: column;
    max-width: 1360px;
    margin-top: 300px;
    margin-bottom: 195px;
}

.home-skills-col-divider {
    width: 0px;
    height: 85px;
    border: 3.5px solid #FFFFFF;
}

.home-skills-title {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #FFFFFF;
    font-size: 40px;
    font-family: Roboto;
    font-weight: bold;
    line-height: 50px;
    max-width: 242px;
    margin-bottom: 34px;
}

.home-skills-desc {
    font-size: 16px;
    font-family: Roboto;
    font-weight: 300;
    line-height: 26px;
    max-width: 500px;
    letter-spacing: 0.48px;
    color: #FFFFFF;
    margin-left: 140px;
    margin-bottom: 100px;
}

.home-skills-desc-btn {
    font-size: 16px;
    font-family: Roboto;
    font-weight: 500;
    color: #0055B8;
    padding: 10px 18px;
    background: #FFFFFF;
    max-width: 260px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    margin-top: 30px;
}

.home-skills-content {
    margin-left: 140px;
    display: flex;
    flex-wrap: wrap;
    max-width: 1220px;
    gap: 20px;
}

.home-skills-items {
    position: relative;
    display: flex;
    flex: 1 0 18%;
    max-width: 220px;
}

.home-skills-items-content {
    position: relative;
    display: flex;
    flex-direction: column;
    margin: 20px 0px;
    gap: 15px;
    /*aspect-ratio: 244 / 238;*/
    cursor: pointer;
}

.home-skills-items-img {
    padding-bottom: 52%;
    width: 100%;
    min-height: 145px;
    min-width: 166px;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    overflow: hidden;
    /*aspect-ratio: 224 / 145;*/
    max-height: 145px;
    max-width: 224px;
}

.home-skills-items-img .icon {
    z-index: 2;
    position: absolute;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    height: 100%;
    min-height: 100%;
    max-height: 100%;
    inset: 0;
    -o-object-fit: none;
    object-fit: none;
}

.home-skills-items-img .bg {
    position: absolute;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    height: 100%;
    min-height: 100%;
    max-height: 100%;
    inset: 0;
    -o-object-fit: cover;
    object-fit: cover;
}

.home-skills-items-lable {
    font-size: 20px;
    font-family: Roboto;
    font-weight: 500;
    color: #FFFFFF;
    line-height: 26px;
}

.long-word-bread span{
    word-break: break-all;
}

/* ========================= Programmes =========================  */
.home-programmes-container {
    height: 646px;
    background: linear-gradient(
        to bottom,transparent 0% 50px,#E81F76 50px 596px,transparent 596px 100%
    );
}
.home-programmes {
    background-image: url("/themes/hkiit/images/1_home/programmes_img1.png"),url("/themes/hkiit/images/1_home/programmes_img2.png");
    background-position: 30% 0%, 72% 100%;
    background-repeat: no-repeat,no-repeat;
    height: 646px;
    z-index: 2;
    position: relative;
    transition: background-position 0.3s ease;
}
.home-programmes-flex {
    display: flex;
    justify-content: center;
    height: 100%;
    align-items: center;
}
.home-programmes-main {
    display: flex;
    max-width: 1560px;
    gap: 468px;
}
.home-programmes-range {
    display: flex;
    flex-direction: column;
    max-width: 546px;
}
.home-programmes-range-title {
    font-family: Roboto;
    font-size: 60px;
    line-height: 70px;
    font-weight: bold;
    color: #FFFFFF;
    margin-bottom: 20px;
}
.home-programmes-range-content {
    font-family: Roboto;
    font-size: 16px;
    line-height: 26px;
    font-weight: 300;
    color: #FFFFFF;
    margin-bottom: 30px;
    max-width: 520px;
}
.home-programmes-range-btn {
    font-family: Roboto;
    font-size: 16px;
    line-height: 21px;
    font-weight: 600;
    color: #015BA5;

    padding: 10px 18px;
    background: #FFFFFF;
    max-width: 164px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}
/* ========================= Achievement =========================  */
.home-achievement-container {
    display: flex;
    justify-content: center;
    margin-bottom: 210px;
}
.home-achievement {
    display:flex;
    flex-direction: column;
    max-width: 1360px;
    gap: 62px;
    overflow-x: auto;
}
.home-achievement-title {
    display:flex;
    align-items: center;
    color: #0055B8;
    font-family: Roboto;
    font-size: 40px;
    line-height: 50px;
    font-weight: 900;
    gap: 22px;
}

.home-achievement-content {
    display: flex;
    gap: 53px;
    overflow-x: auto;
}
.home-achievement-content-group {
    min-width: 300px;
    max-width: 300px;
}
.achievement-1 {
    font-family: Roboto;
    font-weight: 900;
    font-size: 28px;
    line-height: 36px;
    height: 73px;
    margin-bottom: 40px;
}
.achievement-2 {
    font-family: Roboto;
    font-weight: 900;
    font-size: 16px;
    line-height: 21px;
}
.achievement-3 {
    font-family: Roboto;
    font-weight: bold;
    font-size: 90px;
    line-height: 100px;
    color: #E81F76;
}
.achievement-4 {
    font-family: Roboto;
    font-weight: 900;
    font-size: 16px;
    line-height: 21px;
}

/* ========================= Main =========================  */

.home-banner {
    /*
    background-image: url("/themes/hkiit/images/1_home/banner.jpg");
    background-size: cover;
    */
    width: 100%;
}

.img-test-top {
    /* z-index: 10; */
    position: relative;
}
.img-test-top-desc {
    color: #0055B8;
    font-size: 120px;
    font-family: Roboto;
    font-weight: 900;
}

.home-content-col-divider {
    width: 0px;
    height: 85px;
    border: 3.5px solid #0055B8;
}

/* ========================= About =========================  */
.home-about {
    display: flex;
    align-items: flex-start;
    background:url("/themes/hkiit/images/1_home/about_pink.svg"),url("/themes/hkiit/images/1_home/about_img.png");
    background-repeat: no-repeat,no-repeat;
    margin-bottom: 50px;
    justify-content: center;
    background-position: -25% 0, 150% 0;
    opacity: 0.5;
    margin-top: -8px;
    /*
    background-position: top left,top right;
    */
}

.home-about-desc {
    width: -webkit-fill-available;
    display: flex;
    flex-direction: column;
    margin-top: 150px;
    margin-bottom: 250px;
    max-width: 1360px;
    /*
    max-width: 684px;
    margin-right: auto;
    margin-left: 280px;
    */
}

.home-about-desc-title {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #0055B8;
    font-size: 40px;
    font-family: Roboto;
    font-weight: 900;
    line-height: 50px;
    max-width: 574px;
}

.home-about-desc-content {
    margin-top: 54px;
    font-size: 16px;
    font-family: Roboto;
    font-weight: 400;
    line-height: 26px;
    max-width: 500px;
    letter-spacing: 0.48px;
    color: #000000;
    margin-left: 180px;
}

.inen-about-desc-content {
    font-size: 16px;
    font-family: Roboto;
    font-weight: 400;
    line-height: 26px;
    max-width: 500px;
    letter-spacing: 0.48px;
    color: #000000;
    margin-left: 180px;
}

.home-about-desc-btn {
    margin-top: 40px;
    font-size: 16px;
    font-family: Roboto;
    font-weight: 500;
    color: #ffffff;
    padding: 10px 18px;
    background: #0055B8;
    max-width: 170px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

@media (max-width:1650px) {
    .home-page {
        padding-top: 80px;
    }
}

.home-banner-header {
    background: #ffffff00;
    height: 70px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    margin: 30px;
    width: 97%;
    width: -webkit-fill-available;
    z-index: 10;
}

.home-banner-swiper {
    width: 100%;
}

.banner-swiper-slide {
/*
    flex: 0 0 440px;
    height: 440px;
    cursor: pointer;
    aspect-ratio: 1 / 1;
*/
    width: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 0px;
    z-index: 10;
}

.banner-swiper-slide video {
    width: 100%;
    object-fit: cover;
    aspect-ratio: 1920 / 980;
}

.swiper-slide-text {
    position: absolute;
    bottom: 65px;
    left: 100px;
    max-width: 60%;
    color: #0055B8;
    font-family: Roboto;
    font-size: 120px;
    line-height: 110%;
    font-weight: bold;
    text-shadow: 0px 0px 25px #B9FAFF88;
}

.swiper-button-next {
    right: 30px;
}

.swiper-button-prev {
    left: 30px;
}

.swiper-button-next, .swiper-button-prev {
    color: #FFFFFF;
}

.swiper-button-next:after, .swiper-button-prev:after {
    font-size: 30px;
}

.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
    opacity: 0;
}

.custom-pagination {
    position: absolute;
    bottom: 75px;
    right: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 5px 10px;
    background: #ffffff00;
    border: 0;
    color: #fff;
    z-index: 15;
}

.pagination-line {
    display: flex;
    align-items: center;
    gap: 6px;
    position: relative;
}

.pagination-dot {
    width: 15px;
    height: 4px;
    background: #fff;
    display: inline-block;
    transition: background 0.3s, width 0.3s;
    position: relative;
}

.pagination-dot.active {
    width: 25px;
    background: #007aff;
}

.dot-number {
    position: absolute;
    top: -20px; /* 數字顯示在點上方 */
    left: 50%;
    transform: translateX(-50%);
    color: #0055B8;
    font-family: Roboto;
    font-size: 14px;
    line-height: 100%;
    font-weight: 500;
    opacity: 0;
    transition: opacity 0.3s;
}

.pagination-dot.active .dot-number {
    opacity: 1;
}


.mb-custom-pagination {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 5px 10px;
    background: #ffffff00;
    border: 0;
    color: #ccc;
    z-index: 4;
}

.mb-pagination-line {
    display: flex;
    align-items: center;
    gap: 6px;
    position: relative;
}

.mb-pagination-dot {
    width: 15px;
    height: 4px;
    background: #ccc;
    display: inline-block;
    transition: background 0.3s, width 0.3s;
    position: relative;
}

.mb-pagination-dot.active {
    width: 25px;
    background: #007aff;
}

.mb-dot-number {
    position: absolute;
    top: -20px; /* 數字顯示在點上方 */
    left: 50%;
    transform: translateX(-50%);
    color: #0055B8;
    font-family: Roboto;
    font-size: 14px;
    line-height: 100%;
    font-weight: 500;
    opacity: 0;
    transition: opacity 0.3s;
}

.mb-pagination-dot.active .mb-dot-number {
    opacity: 1;
}

/* =========================================== About Page =========================================== */

.about-page {
    background-image: url("/themes/hkiit/images/2_about/banner_bg3.svg"),url("/themes/hkiit/images/2_about/banner_bg2.svg");
    background-position: 0% 0%, 100% 100%;
    background-repeat: no-repeat,no-repeat;
    background-attachment: fixed;
    z-index: auto;
}

.inen-page {
    background-image: url("/themes/hkiit/images/2_about/banner_bg3.svg"),url("/themes/hkiit/images/2_about/banner_bg2.svg");
    background-position: 0% 0%, 100% 100%;
    background-repeat: no-repeat,no-repeat;
    background-attachment: fixed;
    z-index: auto;
}

.about-head {
    width: 100%;
    display: flex;
    height: 130px;
    align-items: center;
    background: #0155B8;
    position: absolute;
    z-index: 15;
}

/* ================= About Page - [header Part] ================= */

.about-header {
    background: #ffffff00;
    height: 70px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    margin: 30px;
    width: 97%;
    width: -webkit-fill-available;
    z-index: 15;
}

.link-white {
    color: #FFFFFF;
    font-weight: bold;
}

.link-white:hover {
    color: #FFFFFF;
    opacity: 0.5;
}

.dropdown-invert {
    filter: invert(1);
}

.header-dropdown:hover a > .header-dropdown-img {
    -moz-transform:scaleY(-1);
    -webkit-transform:scaleY(-1);
    -o-transform:scaleY(-1);
    transform:scaleY(-1);
    transform:scaleY(-1);
    animation: scale-move 0.5s;
}

@keyframes scale-move {
    0%   { transform:scaleY(1); }
    100% { transform:scaleY(-1); }
}

.header-lang-white {
    margin-right: -8px;
    padding-right: 17px;
    display: flex;
    gap: 3px;
}

.header-lang-btn-e-white {
    padding: 10px 7px;
    line-height: 100%;
    width: 36px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
}

.header-lang-btn-c-white {
    padding: 10px 10px;
    line-height: 100%;
    width: 36px;
    font-size: 16px;
    font-weight: 600;
    font-family: Hurme Geometric;
    color: #FFFFFF;
    cursor: pointer;
}

.lang-active-white {
    background: #FFFFFF;
    color: #0155B8;
}

/* ================= About Page - [About Part] ================= */

.about-about {
    height: 836px;
    background: #0155B8;
    background: linear-gradient(
        to bottom,#0155B8 0px 746px,transparent 746px 100%
    );
}

.about-about-img {
    width: 100%;
    height: 100%;
    /*
    background-image: url("/themes/hkiit/images/2_about/banner_img_mask_mix.png");
    background-position: 100% 100%;
    background-repeat: no-repeat;
    */
    display: flex;
}

.about-about-desc {
    flex: 0 0 47%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 140px;
}

.about-about-desc-content {
    color: #FFFFFF;
    font-family: Roboto;
    font-size: 16px;
    line-height: 26px;
    font-weight: bold;
    letter-spacing: 0.5px;
    margin-left: auto;
    margin-top: 33px;
    max-width: 630px;
}

.about-about-right_img {
    flex: 0 0 50%;
    display: flex;
    justify-content: flex-end;
    max-width: 882px;
    margin-left: auto;
}

.about-about-right_img img {
    width: 100%;
    object-fit: contain;
    object-position: right bottom;
}

/* ================= About Page - [Ambition Part] ================= */

.about-ambition {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    margin-bottom: 124px;
}

.about-ambition-main {
    display:flex;
    flex-direction: column;
    max-width: 1360px;
    gap: 44px;
    margin-left: 20px;
    margin-right: 20px;
    width: 1360px;
}

.about-ambition-main-title {
    display:flex;
    align-items: center;
    color: #0055B8;
    font-family: Roboto;
    font-size: 40px;
    line-height: 100%;
    font-weight: 900;
    gap: 15px;
}

.about-ambition-main-title .title-divider {
    border-left: 7px solid;
    height: 100%;
}

.about-ambition-main-sub_title {
    display:flex;
    align-items: center;
    color: #0055B8;
    font-family: Roboto;
    font-size: 80px;
    line-height: 90px;
    font-weight: 900;
    max-width: 834px;
}

.about-ambition-main-content {
    display:flex;
    align-items: flex-start;
    color: #000000;
    font-family: Roboto;
    font-size: 16px;
    line-height: 26px;
    font-weight: 500;
    gap: 40px;
    margin-left: auto;
    letter-spacing: 0.5px;
}

.about-ambition-main-content-col {
    max-width: 500px;
    min-width: 353px;
}

.ambition-content-margin-bottom {
    margin-bottom: 40px;
}

/* ================= About Page - [Objectives Part] ================= */

.about-objectives {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    background-color: #F5F5F5;
    background-image: url("/themes/hkiit/images/2_about/objectives_bg1.svg"),url("/themes/hkiit/images/2_about/objectives_bg2.svg");
    background-position: -4% 40%,100% 100%;
    background-repeat: no-repeat,no-repeat;
}

.about-objectives-main {
    display:flex;
    flex-direction: column;
    max-width: 1360px;
    gap: 31px;
    margin-left: 20px;
    margin-right: 20px;
    margin-top: 80px;
    margin-bottom: 135px;
    width: 1360px;
}

.about-objectives-main-title {
    display:flex;
    align-items: center;
    color: #0055B8;
    font-family: Roboto;
    font-size: 40px;
    line-height: 100%;
    font-weight: 900;
    gap: 15px;
}

.about-objectives-main-title .title-divider {
    border-left: 7px solid;
    height: 100%;
}

.about-objectives-main-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-left: auto;
    gap: 40px;
}

.objectives-content-grid {
    max-width: 500px;
    padding-top: 10px;
    display: flex;
    gap: 28px;
}

.grid-img {
    max-width: 147px;
    min-width: 147px;
}

.grid-img img {
    width: 100%;
    aspect-ratio: 1 / 1;
}

.grid-text {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.grid-num {
    color: #E81F76;
    font-family: Roboto;
    font-size: 40px;
    line-height: 100%;
    font-weight: bold;
}

.grid-desc {
    max-width: 325px;
    color: #000000;
    font-family: Roboto;
    font-size: 20px;
    line-height: 30px;
    font-weight: bold;
}

/* ================= About Page - [Programme Part] ================= */

.about-programme {
    display: flex;
    justify-content: center;
    background-image: url("/themes/hkiit/images/2_about/banner_our_programme.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    cursor: pointer;
}

.about-programme-main {
    display:flex;
    justify-content: space-between;
    align-items: center;
    margin-left: 130px;
    margin-right: 130px;
    margin-top: 122px;
    margin-bottom: 122px;
    height: 106px;
    width: 100%;
    color: #FFFFFF;
    text-shadow: 0px 0px 30px #00000067;
    font-family: Roboto;
    font-size: 80px;
    line-height: 90px;
    font-weight: bold;
}

.about-programme-main img {
    width: 50px;
}

.inen-right-img {
    flex: unset !important;
}

/* ================= About Page - [Responsive Part] ================= */

@media (max-width:1600px) {
    .about-about-right_img img {
        object-position: right;
    }
    .about-programme-main {
        margin-left: 50px;
        margin-right: 50px;
    }
    .inen-about-desc {
        padding-left: 40px;
    }
}

@media (max-width:1400px) {
    .inen-about-desc {
        padding-left: 20px;
    }
}

@media (max-width:1100px) {
    .about-about {
        padding-top: 100px;
        height: auto;
        background: #0155B8 !important;
    }
    .about-about-img {
        flex-direction: column-reverse;
        gap: 50px;
    }
    .about-about-desc {
        padding: 0px 20px !important;
    }
    .about-about-desc-content {
        margin-bottom: 100px;
        margin-left: unset;
    }
    .about-ambition-main-content {
        flex-direction: column;
        margin-left: unset;
    }
    .about-objectives-main-content {
        grid-template-columns: repeat(1, 1fr);
    }
    .about-ambition-main {
        margin-top: 100px;
    }
    .about-about-right_img img {
        width: 80%;
    }
    .about-programme {
        justify-content: flex-start;
    }
    .about-programme-main {
        margin: 30px 30px;
        flex-direction: column;
        height: 238px;
        width: 40%;
        align-items: flex-start;
        font-size: 40px;
        line-height: 50px;
    }
    .about-programme-main img{
        width: 30px;
    }
    .objectives-content-grid {
        max-width: none;
    }
    .grid-desc {
        max-width: none;
    }
    .about-ambition-main-content-col {
        max-width: 800px;
    }
    .about-ambition-main-sub_title {
        font-size: 40px;
        line-height: 50px;
    }
}

@media (max-width:785px) {
    .about-programme {
        background-image: url(/themes/hkiit/images/2_about/banner_our_programme_m.jpg);
        background-size: cover;
        height: 280px;
    }
}

@media (max-width:500px) {
    .footer_line2 {
        padding-left: 8px;
    }
}

@media (max-width:400px) {
    .about-page {
        background-position: -100% 0%, -570% 100%;
    }
    .inen-page {
        background-position: -100% 0%, -570% 100%;
    }
}


/* =========================================== Contact Us Page =========================================== */

.contact-page {
    background-color: #0155B8;

    background-image: url("/themes/hkiit/images/4_contact & articulation pathway/contact_bg1.svg"),
                      url("/themes/hkiit/images/4_contact & articulation pathway/contact_bg2.svg"),
                      url("/themes/hkiit/images/4_contact & articulation pathway/contact_bg3.svg");
    background-position: 0% 0%, 88.8% -10%, 100% 100%;
    background-repeat: no-repeat,no-repeat,no-repeat;
    background-attachment: fixed;
    z-index: auto;
}

.contact-head {
    width: 100%;
    display: flex;
    height: 130px;
    align-items: center;
    background-color: #0155B8;
    position: absolute;
    z-index: 15;
    background-image: url("/themes/hkiit/images/4_contact & articulation pathway/contact_bg1.svg"),
                      url("/themes/hkiit/images/4_contact & articulation pathway/contact_bg2.svg");
    background-position: 0% 0%, 88.8% -10%;
    background-repeat: no-repeat,no-repeat;
    background-attachment: fixed;
}

.contact-header {
    background: #ffffff00;
    height: 70px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    margin: 30px;
    width: 97%;
    width: -webkit-fill-available;
    z-index: 15;
}

/* ================= Contact Us Page - [about Part] ================= */



.contact-about-img {
    width: 100%;
    height: 100%;
    display: flex;
}

.contact-about-desc {
    flex: 0 0 48%;
    display: flex;
    flex-direction: column;
    padding-left: 140px;
    max-width: 960px;
    margin-top: 254px;
}

.contact-about-right_img {
    flex: 0 0 50%;
    display: flex;
    justify-content: flex-end;
    max-width: 882px;
    margin-left: auto;
    margin-top: 254px;
}

.contact-about-right_img img {
    width: 100%;
    object-fit: contain;
    object-position: right top;
}

.contact-about-desc-content {
    color: #FFFFFF;
    font-family: Roboto;
    font-size: 16px;
    line-height: 26px;
    font-weight: bold;
    letter-spacing: 0.5px;
    margin-left: auto;
    margin-top: 33px;
    max-width: 630px;
    margin-right: 50px;
}

.contact-about-desc-sub_title {
    color: #FFFFFF;
    font-family: Roboto;
    font-size: 40px;
    line-height: 100%;
    font-weight: bold;
    letter-spacing: 0px;
    margin-left: auto;
    margin-top: 100px;
    max-width: 630px;
    width: 630px;
    display: flex;
    gap: 15px;
    margin-right: 50px;
}

.contact-about-desc-sub_title .title-divider {
    border-left: 7px solid;
    height: 100%;
}

.contact-about-desc-address {
    color: #FFFFFF;
    font-family: Roboto;
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 0.5px;
    margin-left: auto;
    margin-top: 35px;
    max-width: 680px;
    width: 680px;
    display: flex;
    justify-content: space-between;
}

.address-left {
    max-width: 366px;
    font-weight: 400;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.address-right {
    font-weight: bold;
    text-decoration: underline;
}

/* ================= Contact Us Page - [Transport Part] ================= */

.contact-about-desc-table {
    display: flex;
    flex-direction: column;
    max-width: 680px;
    width: 680px;
    margin-top: 30px;
    margin-left: auto;
}

.contact-table-title {
    margin-bottom: 20px;
    color: #FFFFFF;
    font-family: Roboto;
    font-weight: bold;
    font-size: 24px;
    line-height: 32px;
}

.contact-table-content {
    width: 100%;
    display: flex;
    padding: 10px 15px;
    background-color: #FFFFFF;
    margin-top: 1px;
}

.bus-num {
    flex: 0 0 20%;
    color: #000000;
    font-family: Roboto;
    font-weight: bold;
    font-size: 16px;
    line-height: 21px;
    letter-spacing: 0.5px;
}

.bus-routes {
    flex: 0 0 80%;
    color: #000000;
    font-family: Roboto;
    font-weight: 400;
    font-size: 16px;
    line-height: 21px;
    letter-spacing: 0.5px;
}

/* ================= Contact Us Page - [contact method Part] ================= */

.contact-about-desc-contact {
    max-width: 680px;
    width: 680px;
    margin-top: 50px;
    margin-bottom: 100px;
    margin-left: auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-left {
    color: #FFFFFF;
    font-family: Roboto;
    font-weight: bold;
    font-size: 16px;
    line-height: 21px;
    letter-spacing: 0.5px;
}

.contact-right {
    color: #FFFFFF;
    font-family: Roboto;
    font-weight: 400;
    font-size: 16px;
    line-height: 21px;
    letter-spacing: 0.5px;
}


/* ================= Contact Us Page - [Responsive Part] ================= */

@media (max-width:1660px) {
    .contact-head {
        display: none !important;
    }
    .contact-about-img {
        flex-direction: column-reverse;
        gap: 50px;
    }
    .contact-about-right_img {
        margin-top: 154px;
    }
    .contact-about-right_img img {
        width: 85%;
        object-position: right bottom;
    }
    .contact-about-desc {
        padding-left: 0;
        margin: 0px 20px;
    }
    .contact-about-desc > *{
        margin-left: 0px;
        margin-right: 0px;
    }
    .contact-about-desc-sub_title {
        font-size: 30px;
    }
    .contact-about-desc-sub_title .title-divider {
        height: auto;
    }
}

@media (max-width:800px) {
    .contact-about-desc > * {
        width: auto;
    }
    .contact-page {
        background-size: 125px auto, 400px, 210px auto;
        background-position: 0% 0%, 200px -10%, 100% 100%;
    }
}

@media (max-width:800px) {
    .contact-about-desc-address {
        flex-direction: column;
        gap: 10px;
    }
    .address-right {
        margin-left: 42.5px;
    }
}

/* =========================================== Articulation Pathway Page =========================================== */

.pathway-page {
    background-color: #0155B8;

    background-image: url("/themes/hkiit/images/4_contact & articulation pathway/contact_bg1.svg"),
                      url("/themes/hkiit/images/4_contact & articulation pathway/contact_bg2.svg"),
                      url("/themes/hkiit/images/4_contact & articulation pathway/contact_bg3.svg");
    background-position: 0% 0%, 88.8% -10%, 100% 100%;
    background-repeat: no-repeat,no-repeat,no-repeat;
    background-attachment: fixed;
    z-index: auto;
}

.pathway-head {
    width: 100%;
    display: flex;
    height: 130px;
    align-items: center;
    background-color: #0155B8;
    position: absolute;
    z-index: 15;
    background-image: url("/themes/hkiit/images/4_contact & articulation pathway/contact_bg1.svg"),
                      url("/themes/hkiit/images/4_contact & articulation pathway/contact_bg2.svg");
    background-position: 0% 0%, 88.8% -10%;
    background-repeat: no-repeat,no-repeat;
    background-attachment: fixed;
}

.pathway-header {
    background: #ffffff00;
    height: 70px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    margin: 30px;
    width: 97%;
    width: -webkit-fill-available;
    z-index: 15;
}

/* ================= Articulation Pathway Page - [main Part] ================= */

.pathway-main {
    
}

.pathway-main-flex {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
}

.pathway-main-area {
    display: flex;
    flex-direction: column;
    margin-top: 254px;
    margin-bottom: 188px;
    max-width: 1640px;
    width: 100%;
    margin-left: 20px;
    margin-right: 20px;
}

.pathway-main-area-content {
    max-width: 1360px;
    display: flex;
    gap: 50px;
    margin-top: 120px;
    margin-left: auto;
    margin-right: auto;
}

.pathway-detail {
    flex: 0 0 auto;
    width: 33%;
    max-width: 420px;
    min-width: 280px;
    display: flex;
    flex-direction: column;
    opacity: 0;
}

.pathway-detail-part {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 30px;
    padding-bottom: 30px;
    align-items: center;
    background-color: #FFFFFF;
    margin-bottom: 2px;
    height: 100%;
    text-align: center;
    position: relative;
}

.part-triangle::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -20px;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 14px 0 14px 24px; /* 調整三角形大小 */
    border-color: transparent transparent transparent white; /* 三角形顏色與背景一致 */
}

.part-triangle-red {
    --pt-after-color: transparent;
  }

.part-triangle-red::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -30px;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 14px 0 14px 24px; /* 調整三角形大小 */
    border-color: transparent transparent transparent var(--pt-after-color); /* 三角形顏色與背景一致 #E81F76 */
    transition: border-color 0.7s ease;
}

.pathway-font-year {
    color: #000000;
    font-family: Roboto;
    font-size: 16px;
    line-height: 21px;
    font-weight: bold;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
}

.pathway-font-year img {
    margin-right: 10px;
}

.pathway-font-edu_short {
    color: #0055B8;
    font-family: Roboto;
    font-size: 60px;
    line-height: 70px;
    font-weight: bold;
}

.pathway-font-edu_full {
    color: #000000;
    font-family: Roboto;
    font-size: 16px;
    line-height: 21px;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-align: center;
}

.pathway-grap-part {
    width: 100%;
    padding: 0px 20px;
    margin-top: 20px;
}

.pathway-font-sub_part {
    margin-bottom: 5px;
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    width: 100%;
    background-color: #F5F5F5;
    flex-wrap: wrap;
    padding: 10px 0px;
}

.pathway-font-sub_part img {
    max-width: 80px;
}

.pathway-font-sub_part span {
    max-width: 188px;
    width: 188px;
    color: #000000;
    font-family: Roboto;
    font-size: 16px;
    line-height: 21px;
    font-weight: bold;
    letter-spacing: 0.5px;
    text-align: center;
}

.pathway-font-sub_part ,.pathway-sub_part-flex {
    width: 100%;
    display: flex;
    justify-content: center;
}

.pathway-sub_part-btn {
    width: 164px;
    height: 41px;
    background-color: #0055B8;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-family: Roboto;
    font-size: 16px;
    line-height: 21px;
    font-weight: 500;
    letter-spacing: 0.5px;
    gap: 10px;
    padding: 10px 10px;
    cursor: pointer;
    margin-bottom: 10px;
}

.pathway-border {
    /*border: 10px solid #E81F76;*/
    transition: border 0.7s;
}

.pathway-extra-padding {
    padding-top: 40px;
    padding-bottom: 50px;
}

@keyframes fadeIn {
    0% {
        -webkit-transform: translate3d(-100px, 0, 0);
        -ms-transform: translate3d(-100px, 0, 0);
        transform: translate3d(-100px, 0, 0);
        opacity: 0;
    }
    100% {
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
        opacity: 1;
    }
}

/* ================= Articulation Pathway Page - [Popup Part] ================= */

.modal-header-center {
    justify-content: center;
}

.modal-content {
    border-radius: 0;
}

.pathway-popup-content-flex {
    display: flex;
    flex-direction: column;
    margin-top: 100px;
    margin-bottom: 100px;
    align-items: center;
}

.pathway-popup-content-title {
    color: #0055B8;
    font-family: Roboto;
    font-size: 60px;
    line-height: 70px;
    font-weight: bold;
    letter-spacing: 0px;
    text-align: center;
    margin-bottom: 53px;
}

.pathway-popup-content-col {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.pathway-popup-content-row {
    display: flex;
    align-items: center;
    gap: 60px;
}

.pathway-popup-content-row img {
    width: 140px;
}

.pathway-popup-content-row-title {
    margin-bottom: 15px;
    color: #000000;
    font-family: Roboto;
    font-size: 24px;
    line-height: 32px;
    font-weight: bold;
    letter-spacing: 0px;
}

.pathway-popup-content-row-content {
    color: #000000;
    font-family: Roboto;
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.pathway-popup {
    border-bottom: 1px solid #015BA5 !important;
}

/* ================= Articulation Pathway Page - [Responsive Part] ================= */

@media (min-width: 1500px) {
    .modal-xl {
        --bs-modal-width: 1360px;
    }
}

@media (max-width:1660px) {
    .pathway-head {
        display: none !important;
    }
}

@media (max-width:1400px) {
    .pathway-main-area {
        margin-top: 180px;
    }
    .pathway-main-area-content {
        flex-direction: column;
        align-items: center;
    }
    .pathway-detail {
        width: 100%;
        max-width: 750px;
    }
    .pathway-main-area {
        margin-left: auto;
        margin-right: auto;
        width: 90%;
    }
    .part-triangle:nth-child(-n+2)::after {
        content: none;
    }
    .part-triangle::after {
        top: 100%;
        right: unset;
        left: 50.5%;
        border-width: 20px 14px 0 14px;
        transform: translateX(-50%);
        border-color: #FFFFFF transparent transparent transparent;
    }
    .part-triangle-red::after {
        top: unset;
        right: unset;
        bottom: -30px;
        left: 50.5%;
        border-width: 20px 14px 0 14px;
        transform: translateX(-50%);
        border-color: var(--pt-after-color) transparent transparent transparent;
    }
}

@media (max-width: 992px) {
    .pathway-popup-content-col {
        gap: 40px;
    }
    .pathway-popup-content-row {
        align-items: flex-start;
        gap: 20px;
        flex-direction: column;
    }
    .pathway-popup-content-title {
        font-size: 40px;
        line-height: 50px;
    }
}

@media (max-width:800px) {
    .pathway-page {
        background-size: 125px auto, 400px, 210px auto;
        background-position: 0% 0%, 200px -10%, 100% 100%;
    }
}

@media (max-width: 576px) {
    .modal-dialog-ap {
        margin-top: 20px;
        margin-left: 20px;
        margin-right: 20px;
        margin-bottom: 20px;
    }
}

/* =========================================== Our Facilities Page =========================================== */

.esri-view .esri-view-surface:focus:after {
    z-index: 5 !important;
    outline: none !important;
}

.facilities-page {
    display: flex;
    flex-direction: row;
    height: 100vh;
}

.facilities-main {
    flex: 0 0 50%;
    background-color: #0155B8;
    background-image: url("/themes/hkiit/images/4_contact & articulation pathway/contact_bg2.svg"),
                      url("/themes/hkiit/images/4_contact & articulation pathway/contact_bg3.svg");
    background-position: 88.8% -10%, 100% 100%;
    background-repeat: no-repeat,no-repeat;
    background-attachment: fixed;
    z-index: auto;
}

.facilities-map {
    flex: 0 0 50%;
    z-index: auto;
}

/* ================= Our Facilities - [Map Part] ================= */

#map-area {
    width: 100%;
    height: 100%;
}

.esri-attribution {
    background-color: transparent;
}

.esri-attribution__powered-by {
    display: none;
}

.esri-attribution a {
    color: black;
}

.esri-attribution {
    background-color: transparent;
    font-size: 12px;
    font-family: sans-serif;
    color: black;
}

.copyright-url {
    position: absolute;
    bottom: 5px;
    right: 5px;
    padding: 0 4px;
    font-family: sans-serif;
    font-size: 12px;
}

.copyright-logo {
    position: absolute;
    bottom: 5px;
    right: 10px;
    width: 28px;
    height: 28px;
    display: inline-flex;
    background: url(https://api.hkmapservice.gov.hk/mapapi/landsdlogo.jpg);
    background-size: 28px;
}

/* ================= Our Facilities - [Block Part] ================= */

/* 新增的高亮樣式 */
.facilities-main-area-block.active-location {
    border: 2px solid #4FC3F7;
    box-shadow: 0 0 12px #4FC3F7;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.block-divider {
    margin-top: 100px;
}

.facilities-main-flex {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    overflow-y: auto;
}

.facilities-main-flex {
    -ms-overflow-style: none;  /* Internet Explorer 10+ */
    scrollbar-width: none;  /* Firefox */
}
.facilities-main-flex::-webkit-scrollbar { 
    display: none;  /* Safari and Chrome */
}

.facilities-main-area {
    display: flex;
    flex-direction: column;
    /*margin-top: 254px;*/
    margin-top: 144px;
    margin-bottom: 188px;
    max-width: 810px;
    width: 100%;
    margin-left: 20px;
    margin-right: 20px;
    gap: 74px;
}

.facilities-main-area-content {
    max-width: 1360px;
    display: flex;
    gap: 50px;
    margin-top: 120px;
    margin-left: auto;
    margin-right: auto;
}


.facilities-main-area-blocks {
    display: flex;
    gap: 40px;
    flex-direction: column;
}

.facilities-main-area-block {
    display: flex;
    flex-wrap: wrap;
    padding: 30px;
    background-color: #FFFFFF;
    width: 100%;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}
/*
.facilities-main-area-block::before {
    content: "01";
    position: absolute;
    top: -3%;
    left: -2%;
    font-size: 300px;
    color: #f3f3f3;
    line-height: 70%;
    font-family: Roboto;
    font-weight: bold;
    z-index: 1;
}
*/
.facilities-block-left {
    display: flex;
    flex-direction: column;
    flex: 0 0 65%;
    position: relative;
    z-index: 1;
}

.facilities-block-left-title {
    color: #0055B8;
    font-family: Roboto;
    font-size: 40px;
    line-height: 100%;
    font-weight: bold;
    letter-spacing: 0px;
    display: flex;
    gap: 15px;
    z-index: 2;
}

.facilities-block-left-title .title-divider {
    border-left: 7px solid;
    height: 100%;
    z-index: 2;
}

.facilities-block-left-address {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #0055B8;
    font-family: Roboto;
    font-size: 16px;
    line-height: 23px;
    font-weight: bold;
    letter-spacing: 0.5px;
    margin-top: 16px;
    z-index: 2;
    cursor: pointer;
}

.facilities-block-left-address img {
    width: 17px;
}

.facilities-block-left-desc {
    color: #000000;
    font-family: Roboto;
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    letter-spacing: 0.5px;
    margin-top: 30px;
    z-index: 2;
}

.facilities-block-right {
    display: flex;
    flex: 0 0 30%;
    max-width: 30%;
}

.facilities-block-right-img img {
    width: 100%;
    object-fit: cover;
    cursor: pointer;
}

.facilities-main-area-block-btn {
    flex: 0 0 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    margin-top: 40px;
}

.facilities-main-area-block-btn img {
    width: 30px;
    cursor: pointer;
}

/* ================= Our Facilities - [Popup Part] ================= */

.facilities-popup-content-flex {
    display: flex;
    flex-direction: column;
    margin-top: 100px;
    margin-bottom: 100px;
    align-items: center;
    z-index: 3;
}

.facilities-popup-content-banner {
    width: 100%;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    overflow: hidden;
    margin-left: 50px;
    margin-right: 50px;
    height: 450px;
    margin-top: 30px;
    margin-bottom: 100px;
    cursor: pointer;
}

.facilities-popup-content-banner .icon {
    z-index: 2;
    position: absolute;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    height: 100%;
    min-height: 100%;
    max-height: 100%;
    inset: 0;
    -o-object-fit: none;
    object-fit: none;
    transform: scale(0.5);
    z-index: 3;
}
.facilities-popup-content-banner .bg {
    position: absolute;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    height: 100%;
    min-height: 100%;
    max-height: 100%;
    inset: 0;
    -o-object-fit: cover;
    object-fit: cover;
    object-position: 50% 80%;
    z-index: 2;
}

.facilities-popup-content-col {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 800px;
}

.facilities-popup-content-col-title {
    display: flex;
    width: 100%;
    color: #0055B8;
    font-family: Roboto;
    font-size: 80px;
    line-height: 90px;
    font-weight: bold;
    letter-spacing: 0px;
    z-index: 2;
}

.facilities-popup-content-col-address {
    display: flex;
    width: 100%;
    flex-direction: column;
    margin-top: 15px;
    gap: 12px;
    z-index: 2;
}

.address-area {
    display: flex;
    width: 100%;
    color: #0055B8;
    font-family: Roboto;
    font-size: 16px;
    line-height: 21px;
    font-weight: bold;
    letter-spacing: 0.5px;
    gap: 12px;
    align-items: flex-end;
    z-index: 2;
}

.address-area img {
    width: 16px;
}

.address-detail {
    display: flex;
    width: 100%;
    justify-content: space-between;
    padding-left: 28px;
}

.address-detail-position {
    display: flex;
    color: #000000;
    font-family: Roboto;
    font-size: 16px;
    line-height: 100%;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.address-detail-direction {
    display: flex;
    color: #000000;
    font-family: Roboto;
    font-size: 16px;
    line-height: 100%;
    font-weight: bold;
    letter-spacing: 0.5px;
    text-decoration: underline;
    cursor: pointer;
}

.facilities-popup-content-col-sub_title {
    display: flex;
    width: 100%;
    margin-top: 60px;
    color: #0055B8;
    font-family: Roboto;
    font-size: 24px;
    line-height: 32px;
    font-weight: bold;
    letter-spacing: 0px;
    gap: 23px;
}

.facilities-popup-content-col-sub_title .title-divider {
    border-left: 7px solid;
    height: 100%;
}

.facilities-popup-content-col-content {
    display: flex;
    width: 100%;
    margin-top: 30px;
    color: #000000;
    font-family: Roboto;
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.modal-content-of::before {
    content: "01";
    position: absolute;
    top: -3%;
    left: -2%;
    font-size: 500px;
    color: #f3f3f3;
    line-height: 70%;
    font-family: Roboto;
    font-weight: bold;
    z-index: 1;
    letter-spacing: 15px;
}

.modal-content {
    overflow: hidden;
}

/* 隱藏 ArcGIS 預設的標題和關閉按鈕 */
.esri-popup__header {
    display: none;
}

.esri-popup__content {
    margin: 0 !important;
}

/* 標題樣式 */
.custom-popup-title {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 5px;
    color: #1a73e8; /* Google Maps 藍色 */
}

/* 描述樣式 */
.custom-popup-content {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

/* ================= Our Facilities Page - [Responsive Part] ================= */

@media (max-width: 1200px) {
    .facilities-page {
        flex-direction: column;
    }
    .facilities-map {
        margin-top: 80px;
    }
}

@media (max-width: 768px) {

    .facilities-main-area-blocks {
        margin-left: 20px;
        margin-right: 20px;
    }
    .facilities-main-area-block {
        flex-wrap: nowrap;
        flex-direction: column-reverse;
        padding: 0px;
    }
    .facilities-block-left {
        flex: unset;
        margin: 20px;
    }
    .facilities-block-right {
        flex: unset;
        max-width: unset;
        width: 100%;
        z-index: 2;
    }
    .facilities-block-right-img {
        width: 100%;
    }
    .facilities-main-area-block-btn {
        flex: unset;
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        margin: 20px;
    }
    .facilities-main-area-block:nth-child(n)::before {
        display: none;
    }
    .facilities-popup-content-col-title {
        font-size: 30px;
        line-height: 36px;
        display: flex;
        gap: 15px;
    }
    .facilities-popup-content-col-title .title-divider {
        border-left: 7px solid;
        height: 100%;
    }
}

@media (max-width: 600px) {
    .address-detail {
        flex-direction: column;
    }
}


/* =========================================== Studnet Achievement Page =========================================== */

.stu_ach-page {
    background-color: #FFFFFF;
    background-image: url("/themes/hkiit/images/8_student_achievement_listing/bg.svg");
    background-position: 100% 100%;
    background-repeat: no-repeat;
    background-attachment: fixed;
    z-index: auto;
}

.stu_ach-head {
    width: 100%;
    display: flex;
    height: 130px;
    align-items: center;
    background-color: #FFFFFF;
    position: absolute;
    z-index: 15;
}

.stu_ach-header {
    background: #ffffff00;
    height: 70px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    margin: 30px;
    width: 97%;
    width: -webkit-fill-available;
    z-index: 15;
}


.stu_ach-main-flex {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
}

.stu_ach-main-area {
    display: flex;
    flex-direction: column;
    margin-top: 254px;
    margin-bottom: 188px;
    max-width: 1640px;
    width: 100%;
    margin-left: 20px;
    margin-right: 20px;
    padding-left: 20px;
    padding-right: 20px;
}

.stu_ach-main-area-flex {
    overflow: hidden;
    min-height: 500px;
}

.stu_ach-main-area-content {
    max-width: 1640px;
    display: flex;
    gap: 50px;
    margin-top: 120px;
    margin-left: auto;
    margin-right: auto;
}

.stu_ach-content-flex {
    display: flex;
    width: 100%;
}
.stu_ach-content-flex-left {
    flex: 0 0 20%;
    z-index: 5;
}
.stu_ach-content-flex-right {
    flex: 0 0 80%;
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.stu_ach-content-flex-right-img {
    max-width: 440px;
}
.stu_ach-content-flex-right-img img {
    width: 100%;
    cursor: pointer;
}
.stu_ach-content-flex-right-desc {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 60px;
    gap: 15px;
    background-color: #F7F7F7;
}
.stu_ach-content-flex-right-desc-title {
    display: flex;
    gap: 15px;
    color: #0055B8;
    font-family: Roboto;
    font-size: 28px;
    line-height: 100%;
    font-weight: bold;
    letter-spacing: 0px;
    margin-bottom: 15px;
}
.stu_ach-content-flex-right-desc-title .title-divider {
    border-left: 7px solid;
    /*height: 100%;*/
}
.stu_ach-content-flex-right-desc-content {
    display: flex;
}

.stu_ach-right-desc-content-left {
    color: #000000;
    font-family: Roboto;
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    letter-spacing: 0.5px;
    width: 187px;
    text-align: left;
}
.stu_ach-right-desc-content-right {
    color: #000000;
    font-family: Roboto;
    font-size: 20px;
    line-height: 30px;
    font-weight: bold;
    letter-spacing: 0px;
    width: 70%;
}

.stu_ach-content-flex-right-desc-btn {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    margin-top: auto;
}

.stu_ach-content-flex-right-desc-btn img {
    width: 30px;
    cursor: pointer;
}

.stu_ach-right-blocks {
    display: flex;
    width: 100%;
}

.stu_ach-right-end {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.stu_ach-right-end-btn {
    display: flex;
    color: #0055B8;
    font-family: Roboto;
    font-size: 16px;
    line-height: 21px;
    font-weight: bold;
    letter-spacing: 0.5px;
    align-items: center;
    gap: 35px;
    margin-right: 30px;
}

.stu_ach-right-end-btn img {
    width: 30px;
}

.news-right-end {
    display: flex;
    justify-content: space-between;
    width: 100%;
    color: #FFFFFF;
    font-family: Roboto;
    font-size: 16px;
    line-height: 21px;
    font-weight: bold;
    letter-spacing: 0.5px;
    align-items: center;
    gap: 15px;
    /*neo*/
    max-width: 1360px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 50px;
}

.news-right-end-btn {
    display: flex;
    color: #FFFFFF;
    font-family: Roboto;
    font-size: 16px;
    line-height: 21px;
    font-weight: bold;
    letter-spacing: 0.5px;
    align-items: center;
    gap: 15px;
    cursor: pointer;
}

.news-right-end-btn-X img {
    width: 30px;
    transform: scaleX(-1);
}

.news-right-end-btn img {
    width: 30px;
}

/* ================= Articulation Pathway Page - [Responsive Part] ================= */

@media (max-width: 1660px) {
    .stu_ach-head {
        display: none !important;
    }
}

@media (max-width: 1200px) {
    .stu_ach-content-flex-left {
        /*display: none;*/
        position: fixed;
        bottom: -3px;
        left: 0;
        width: -webkit-fill-available;
        margin: 0px !important;
        background-color: #ffffff;
        padding: 20px;
        font-size: 16px;
        font-weight: bold;
        font-family: 'Roboto';
        box-shadow: 0px -4px 8px rgba(0, 0, 0, 0.2);
        padding-bottom: 0;
    }
    .mb-hide {
        display: none;
    }
    .dropdown-header .arrow-img {
        width: 18px;
    }
    .stu_ach-content-flex-right {
        flex: 0 0 100%;
    }
    .stu_ach-dropdown-section {
        max-width: 100% !important;
    }
    .stu_ach-dropdown-content {
        background-color: #FFFFFF !important;
    }
    .dropdown-content label {
        margin: 10px 0 !important;
        font-size: 16px !important;
        font-weight: bold;
        font-family: 'Roboto';
        line-height: 21px;
        font-weight: bold;
    }
    .dropdown-section {
        margin-bottom: 0px !important;
        max-width: unset !important;
    }
    .dropdown-content {
        border-top: #DBDBDB solid 1px;
        padding-top: 20px !important;
    }
    .dropdown-header {
        padding-bottom: 20px !important;
        /*border-bottom: #DBDBDB solid 1px;*/
    }
}

@media (max-width: 1000px) {
    .stu_ach-content-flex-right-img {
        max-width: 100%;
    }
    .stu_ach-content-flex-right-desc-content {
        flex-direction: column;
    }
    .stu_ach-right-desc-content-right{
        width: unset;
    }
    .stu_ach-content-flex-right-desc {
        padding: 30px;
    }
    .stu_ach-right-end {
        /*display: none;*/
    }
}

@media (max-width: 730px) {
    .stu_ach-right-blocks {
        flex-direction: column;
    }
    .stu_ach-content-flex-right-desc-btn {
        margin-top: 150px;
    }
}



/* =========================================== News & Events Page =========================================== */

.news-page {
    background-color: #0155B8;
    background-image: url("/themes/hkiit/images/7_news_events/bg_pink.svg"),url("/themes/hkiit/images/7_news_events/bg_blue.svg");
    background-position: -5% 75%, 100% 100%;
    background-repeat: no-repeat,no-repeat;
    background-attachment: fixed;
    z-index: auto;
}

.news-head {
    width: 100%;
    display: flex;
    height: 130px;
    align-items: center;
    background: #0155B8;
    position: absolute;
    z-index: 15;
}

.news-header {
    background: #ffffff00;
    height: 70px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    margin: 30px;
    width: 97%;
    width: -webkit-fill-available;
    z-index: 15;
}

.news-main-flex {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    padding: 20px;
}

.news-main-area {
    display: flex;
    flex-direction: column;
    margin-top: 254px;
    margin-bottom: 188px;
    max-width: 1640px;
    width: 100%;
    margin-left: 20px;
    margin-right: 20px;
}

.news-main-area-content {
    max-width: 1360px;
    display: flex;
    gap: 50px;
    margin-top: 120px;
    margin-left: auto;
    margin-right: auto;
    flex-direction: column;
}

.news-content-flex {
    display: flex;
    width: 100%;
    gap: 35px;
    flex-wrap: wrap;
    justify-content: center;
}

.news-block {
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
    max-width: 430px;
    flex: 0 0 30%;
}

.news-block-img {
    max-width: 430px;
    min-width: 300px;
    cursor: pointer;
}
.news-block-img img {
    width: 100%;
    cursor: pointer;
}
.news-block-title {
    display: flex;
    gap: 15px;
    color: #0055B8;
    font-family: Roboto;
    font-size: 24px;
    line-height: 32px;
    font-weight: bold;
    letter-spacing: 0px;
    padding-top: 30px;
    padding-left: 30px;
    padding-right: 30px;
}
.news-block-title .title-divider {
    border-left: 7px solid;
    height: 100%;
}
.news-block-date {
    color: #000000;
    font-family: Roboto;
    font-size: 16px;
    line-height: 21px;
    font-weight: bold;
    letter-spacing: 0.5px;
    margin-top: 15px;
    display: flex;
    align-items: center;
    padding-left: 30px;
    padding-right: 30px;
    display: flex;
    gap: 15px;
}
.news-block-content {
    color: #000000;
    font-family: Roboto;
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    letter-spacing: 0.5px;
    margin-top: 25px;
    padding-left: 30px;
    padding-right: 30px;
}
.news-block-btn {
    display: flex;
    cursor: pointer;
    flex-direction: column;
    align-items: flex-end;
    margin-top: 30px;
    padding-left: 30px;
    padding-right: 30px;
    padding-bottom: 30px;
}
.news-popup-content-title {
    margin-bottom: 35px;
    color: #0055B8;
    font-family: Roboto;
    font-size: 60px;
    line-height: 117%;
    font-weight: 900;
    max-width: 1080px;
}
.news-popup-content-detail-desc {
    display: flex;
    flex-direction: column;
    flex: 0 0 46%;
    gap: 30px;
}
.news-desc-top {
    line-height: 32px !important;
}
.news-popup-swiper img {
    object-fit: cover;
}
.img-M {
    display: none;
}

.news-custom-pagination {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 5px 10px;
    background: #ffffff00;
    border: 0;
    color: #ccc;
    z-index: 4;
}

.news-pagination-line {
    display: flex;
    align-items: center;
    gap: 6px;
    position: relative;
}

.news-pagination-dot {
    width: 15px;
    height: 4px;
    background: #ccc;
    display: inline-block;
    transition: background 0.3s, width 0.3s;
    position: relative;
}

.news-pagination-dot.active {
    width: 25px;
    background: #E81F76;
}

.news-dot-number {
    position: absolute;
    top: -20px; /* 數字顯示在點上方 */
    left: 50%;
    transform: translateX(-50%);
    color: #E81F76;
    font-family: Roboto;
    font-size: 14px;
    line-height: 100%;
    font-weight: 500;
    opacity: 0;
    transition: opacity 0.3s;
}

.news-pagination-dot.active .news-dot-number {
    opacity: 1;
}

/* ================= News & Events Page - [Responsive Part] ================= */

@media (max-width: 1660px) {
    .news-head {
        display: none !important;
    }
}

@media (max-width: 1200px) {
    .popup-content-detail-swiper {
        flex: unset;
        margin-bottom: 50px;
    }
    .news-popup-content-detail-desc {
        flex: unset;
    }
    .news-popup-content-title {
        font-size: 30px;
        line-height: 36px;
    }
    .popup-content-detail-desc {
        flex: unset;
    }
    .popup-content-title {
        font-size: 30px;
        line-height: 36px;
        width: auto;
    }
    .popup-content-award-row {
        flex-direction: column;
    }
    .img-D {
        display: none;
    }
    .img-M {
        display: block;
    }
    .popup-content-detail {
        flex-direction: column-reverse;
    }
    .progarmme-right-blocks {
        justify-content: center;
    }
}

@media (max-width: 1010px) {
    .news-block {
        flex: 0 0 45%;
    }
}

@media (max-width: 800px) {
    .popup-content-award {
        width: auto;
    }
}

@media (max-width: 675px) {
    .news-block {
        flex: 0 0 100%;
    }
}

/* =========================================== Our Programmes Page =========================================== */

.progarmme-page {
    background-color: #FFFFFF;
    background-image: url("/themes/hkiit/images/5_our_programmes_&_skillup/bg.svg");
    background-position: 100% 100%;
    background-repeat: no-repeat;
    background-attachment: fixed;
    z-index: auto;
}

.skillsup-page {
    background-color: #FFFFFF;
    background-image: url("/themes/hkiit/images/5_our_programmes_&_skillup/bg.svg");
    background-position: 100% 100%;
    background-repeat: no-repeat;
    background-attachment: fixed;
    z-index: auto;
}

.progarmme-right-blocks {
    flex: 0 0 80%;
    display: flex;
    gap: 30px;
    flex-direction: row;
    flex-wrap: wrap;
}

.progarmme-block {
    display: flex;
    flex-direction: column;
    max-width: 340px;
    border-bottom: #E81F76 solid 7px;
}
.progarmme-block-code {
    display: flex;
    gap: 5px;
    margin-top: 15px;
}
.progarmme-block-code-left {
    color: #000000;
    font-family: Roboto;
    font-size: 12px;
    line-height: 26px;
    font-weight: 400;
    letter-spacing: 0.4px;
}
.progarmme-block-code-right {
    color: #000000;
    font-family: Roboto;
    font-size: 12px;
    line-height: 26px;
    font-weight: bold;
    letter-spacing: 0.4px;
}
.progarmme-block-desc {
    color: #000000;
    font-family: Roboto;
    font-size: 24px;
    line-height: 30px;
    font-weight: bold;
    letter-spacing: 0px;
    margin-top: 5px;
    margin-bottom: auto;
}
.progarmme-block-campus {
    display: flex;
    flex-direction: column;
    margin-top: 44px;
    gap: 6px;
}
.progarmme-block-campus-desc {
    color: #000000;
    font-family: Roboto;
    font-size: 12px;
    line-height: 26px;
    font-weight: 400;
    letter-spacing: 0.4px;
}
.progarmme-block-campus-each {
    display: flex;
    margin-bottom: 20px;
    gap: 5px;
}

.progarmme-block-img {
    padding-bottom: 52%;
    width: 100%;
    min-height: 180px;
    min-width: 340px;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    overflow: hidden;
    max-height: 180px;
    max-width: 353px;
    cursor: pointer;
}
.progarmme-block-img .icon {
    z-index: 2;
    position: absolute;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    height: 100%;
    min-height: 100%;
    max-height: 100%;
    inset: 0;
    -o-object-fit: none;
    object-fit: none;
}
.progarmme-block-img .bg {
    position: absolute;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    height: 100%;
    min-height: 100%;
    max-height: 100%;
    inset: 0;
    -o-object-fit: cover;
    object-fit: cover;
}

.campus-each-ball {
    background-color: #0055B8;
    border-radius: 50%;
    padding: 10px;
    color: #FFFFFF;
    font-family: Roboto;
    font-size: 12px;
    line-height: 16px;
    font-weight: bold;
    letter-spacing: 0.4px;
}

.programme-fullscreen {
    padding: 0 !important;
}

.arrow_scaleX {
    transform: scaleX(-1);
    width: 20px;
}

.programme-modal-header {
    background-color: #0055B8;
    background-image: url("/themes/hkiit/images/5_our_programmes_&_skillup/banner.jpg");
    background-position: 100% 100%;
    background-repeat: no-repeat;
    background-attachment: fixed;
    height: 380px;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 110px;
    padding: 80px;
    flex-wrap: wrap;
}

.programme-header-title {
    max-width: 800px;
    max-height: 220px;
    color: #FFFFFF;
    font-family: Roboto;
    font-size: 60px;
    line-height: 70px;
    font-weight: bold;
    letter-spacing: 0px;
}

.programme-modal-btn {
    color: #FFFFFF;
    font-family: Roboto;
    font-size: 16px;
    line-height: 21px;
    font-weight: bold;
    letter-spacing: 0.5px;
}

.programme-modal-close {
    display: flex;
    gap: 15px;
    align-items: center;
    padding-top: 10px;
}

.programme-popup-content-flex {
    margin-top: 80px;
    gap: 80px;
}

.progarmme-block-dummy {
    width: 340px;
}

.aims-flex {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    gap: 50px;
    flex-wrap: wrap;
}
.aims-flex-left {
    display: flex;
    flex-direction: column;
    max-width: 630px;
}
.aims-title {
    color: #000000;
    font-family: Roboto;
    font-size: 24px;
    line-height: 30px;
    font-weight: bold;
    letter-spacing: 0px;
}
.aims-sub_title {
    color: #0055B8;
    font-family: Roboto;
    font-size: 24px;
    line-height: 32px;
    font-weight: bold;
    letter-spacing: 0px;
    margin-top: 30px;
    display: flex;
    gap: 15px;
    align-items: center;
}

.aims-sub_title .title-divider {
    border-left: 7px solid;
    height: 95%;
}

.aims-content {
    color: #000000;
    font-family: Roboto;
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    letter-spacing: 0.5px;
    margin-top: 50px;
}
.aims-flex-right {
    display: flex;
    flex-direction: column;
    max-width: 400px;
}

.programme-modal-body {
    padding: 0 !important;
}

.aims-right-it_code {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.aims-right-it_code-title {
    color: #000000;
    font-family: Roboto;
    font-size: 16px;
    line-height: 21px;
    font-weight: bold;
    letter-spacing: 0.5px;
}
.aims-right-it_code-desc {
    color: #000000;
    font-family: Roboto;
    font-size: 16px;
    line-height: 21px;
    font-weight: 400;
    letter-spacing: 0.5px;
}
.aims-right-time {
    color: #000000;
    font-family: Roboto;
    font-size: 16px;
    line-height: 21px;
    font-weight: bold;
    letter-spacing: 0.5px;
    display: flex;
    gap: 10px;
    align-content: center;
    margin-top: 40px;
}
.aims-right-location {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}
.aims-right-location-img {

}
.aims-right-location-desc {
    display: flex;
    flex-direction: column;
    gap: 9px;
}
.aims-right-location-name {
    color: #000000;
    font-family: Roboto;
    font-size: 16px;
    line-height: 21px;
    font-weight: bold;
    letter-spacing: 0.5px;
}
.aims-right-location-address {
    color: #000000;
    font-family: Roboto;
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    letter-spacing: 0.5px;
}
.aims-right-location-direc {
    color: #000000;
    font-family: Roboto;
    font-size: 16px;
    line-height: 26px;
    font-weight: bold;
    letter-spacing: 0.5px;
    text-decoration: underline;
    cursor: pointer;
}
.aims-right-scheme {
    margin-top: 40px;
    color: #000000;
    font-family: Roboto;
    font-size: 16px;
    line-height: 21px;
    font-weight: bold;
    letter-spacing: 0.5px;
}
.aims-right-vplus {
    margin-top: 10px;
}
.aims-right-km {
    margin-top: 10px;
    color: #000000;
    font-family: Roboto;
    font-size: 16px;
    line-height: 26px;
    font-weight: bold;
    letter-spacing: 0.5px;
    text-decoration: underline;
    cursor: pointer;
}
.aims-right-btn {
    margin-top: 40px;
    color: #FFFFFF;
    font-family: Roboto;
    font-size: 16px;
    line-height: 21px;
    font-weight: 500;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background-color: #0055B8;
    max-width: 160px;
    justify-content: center;
    cursor: pointer;
}

.modules-flex {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    gap: 50px;
    flex-wrap: wrap;
}

.modules-flex-left {
    display: flex;
    flex-direction: column;
    max-width: 630px;
    width: 630px;
}

.modules-flex-left-title {
    color: #000000;
    font-family: Roboto;
    font-size: 24px;
    line-height: 30px;
    font-weight: bold;
    letter-spacing: 0px;
}
.modules-flex-divider {
    width: 100%;
    border: #808080 solid 1px;
    margin-top: 25px;
    margin-bottom: 25px;
}
.modules-flex-li {
    color: #000000;
    font-family: Roboto;
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.modules-flex-right {
    display: flex;
    flex-direction: column;
    max-width: 630px;
    width: 630px;
}

.remark-flex {
    padding-left: 20px;
    padding-right: 20px;
}

.remark-block {
    width: 100%;
    padding: 40px;
    color: #000000;
    font-family: Roboto;
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    letter-spacing: 0.5px;
    background-color: #F7F7F7;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.remark-row {
    display: flex;
    gap: 3px;
}

.graduate-content {
    background-color: #F7F7F7;
}

.graduate-divider {
    width: 100%;
    border: #E81F76 solid 5px;
}

.graduate-popup-content-flex {
    margin-top: 0px;
    gap: 65px;
    margin-left: 20px;
    margin-right: 20px;
}

.case-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.case-flex-left {
    display: flex;
    flex-direction: column;
    max-width: 630px;
    padding: 40px;
    background-color: #ffffff;
    gap: 30px;
}

.case-flex-right {
    display: flex;
    flex-direction: column;
    max-width: 630px;
    gap: 50px;
}

.case-left-profile-top {
    display: flex;
    gap: 40px;
}

.case-left-profile-img {
    max-width: 160px;
}

.case-left-profile-img img {
    width: 100%;
}

.case-left-profile-data {
    display: flex;
    flex-direction: column;
}
.profile-name {
    color: #0055B8;
    font-family: Roboto;
    font-size: 28px;
    line-height: 36px;
    font-weight: bold;
    letter-spacing: 0px;
}
.profile-data {
    margin-top: 20px;
}
.profile-data-title {
    color: #000000;
    font-family: Roboto;
    font-size: 16px;
    line-height: 26px;
    font-weight: 500;
    letter-spacing: 0.5px;
}
.profile-data-school {
    color: #0155B8;
    font-family: Roboto;
    font-size: 16px;
    line-height: 26px;
    font-weight: bold;
    letter-spacing: 0.5px;
    margin-top: 5px;
}
.profile-data-suject {
    color: #000000;
    font-family: Roboto;
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    letter-spacing: 0.5px;
    margin-top: 3px;
}
.graduate-title {
    display: flex;
    gap: 15px;
    color: #0155B8;
    font-family: Roboto;
    font-size: 40px;
    line-height: 100%;
    font-weight: bold;
    letter-spacing: 0px;
}

.graduate-title .title-divider {
    border-left: 7px solid;
    height: 100%;
}

.case-left-profile-bottom {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.case-left-profile-bottom img {
    width: 60px;
}

.profile-bottom-content {
    color: #000000;
    font-family: Roboto;
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.case-right {
    display: flex;
    flex-direction: column;
}
.case-right-title {
    display: flex;
    gap: 15px;
    color: #000000;
    font-family: Roboto;
    font-size: 24px;
    line-height: 30px;
    font-weight: bold;
    letter-spacing: 0px;
    align-items: center;
}
.case-right-divider {
    width: 100%;
    border: #B7B7B7 solid 1px;
    margin-top: 25px;
    margin-bottom: 25px;
}
.case-right-desc {
    color: #000000;
    font-family: Roboto;
    font-size: 16px;
    line-height: 26px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.case-right-li {
    color: #000000;
    font-family: Roboto;
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    letter-spacing: 0.5px;
    margin-top: 30px;
}

.case-right-suject {
    display: flex;
    flex-direction: column;
    margin-top: 30px;
    gap: 10px;
}

.suject-col {
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.suject-col-school {
    color: #0155B8;
    font-family: Roboto;
    font-size: 16px;
    line-height: 26px;
    font-weight: bold;
    letter-spacing: 0.5px;
}
.suject-col-suject {
    color: #000000;
    font-family: Roboto;
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.dropdown-header.mb {
    content: "FILTER";
}
.dh-mb {
    display: none;
}
@media (max-width: 1200px) {
    .programme-modal-header {
        gap: 60px;
        padding-top: 30px;
        padding-left: 20px;
        padding-right: 20px;
        flex-direction: column;
    }
    .programme-header-title {
        font-size: 36px;
        line-height: 48px;
    }
    .aims-flex {
        flex-direction: column-reverse;
    }
    .case-flex {
        gap: 53px;
    }
    .modules-flex-left {
        width: 100%;
    }
    .modules-flex-right {
        width: 100%;
    }
    .case-left-profile-top {
        flex-direction: column;
    }
    .dropdown-header {
        color: #000000 !important;
    }
    .dh-mb {
        display: block;
    }
    .container .dropdown-section:nth-child(3) .dropdown-header {
        display: none;
    }
    .programemes-dropdown-section .dropdown-divider {
        display: none;
    }
}

@media (max-width: 380px) {
    .programme-header-title {
        font-size: 30px;
    }
}


.dropdown-section {
    margin-bottom: 20px;
    max-width: 233px;
}

.stu_ach-dropdown-section {
    max-width: 143px;
}

.stu_ach-dropdown-content {
    background-color: #F7F7F7;
}

.stu_ach-dropdown-content label {
    color: #000000;
    font-family: Roboto;
    font-size: 16px;
    line-height: 20px;
    font-weight: bold;
    letter-spacing: 0.5px;
}

.programemes-dropdown-section {
    margin-right: 20px;
}

.dropdown-divider {
    max-width: 233px;
    width: 100%;
    border: #f7f7f7 solid 1px;
    margin-bottom:20px;
}

.dropdown-header {
    font-weight: bold;
    font-size: 16px;
    color: #000000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0;
    cursor: pointer;
}
.dropdown-header .arrow-img {
    width: 12px;
    height: 12px;
    transition: transform 0.3s ease;
}
.dropdown-header .arrow-img.rotated {
    transform: rotate(180deg);
}
.dropdown-content {
    display: block; /* 預設顯示 */
    padding: 5px 0;
    transition: all 0.3s ease;
}
.dropdown-content.collapsed {
    display: none;
}
.dropdown-content label {
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: bold;
    color: #0056b3;
    margin: 5px 0;
    cursor: pointer;
}
.dropdown-content input[type="checkbox"] {
    margin-right: 10px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    border: 2px solid #0056b3; /* 藍色邊框 */
    background-color: white;
    position: relative;
    vertical-align: middle;
}
.dropdown-content input[type="checkbox"]:checked::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    background-color: #0056b3; /* 藍色填充 */
}

.home-mobile-banner {
    padding: 30px 20px;
    display: none;
}

.home-mobile-banner-desc {
    color: #0055B8;
    font-family: Roboto;
    font-size: 40px;
    line-height: 44px;
    font-weight: bold;
    letter-spacing: 0px;
}

.home-mobile-banner-ctrl {
    margin-top: 100px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.banner-ctrl-grey {
    transform: scaleX(-1);
}

.home-scheme-container-mobile {
    display: none;
    padding: 20px;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 50px;
    justify-content: center;

}
.mobile-scheme-img img {
    width: 100%;
}
.mobile-scheme-desc {
    display: flex;
    flex-direction: column;
    gap: 30px;
    color: #ffffff;
    font-family: Roboto;
    font-size: 40px;
    line-height: 50px;
    font-weight: bold;
    letter-spacing: 0px;
    background-color: #E81F76;
    padding: 30px;
    min-height: 250px;
    justify-content: space-between;
}
.mobile-scheme-desc img {
    width: 30px;
}
.mobile-scheme {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    /*
    max-width: 500px;
    */
    max-width: 100vh;
    width: 100%;
}
.bg-blue {
    background-color: #0155B8;
}

.news-dummy {
    max-width: 430px;
    min-width: 430px;
    background-color: transparent;
    height: 0px;
}

@media (max-width: 1650px) {

    .home-programmes-range-content {
        max-width: fit-content;
    }

    .home-programmes-range {
        max-width: 846px;
    }

    .swiper-slide-text {
        display: none;
    }
    .swiper-button-prev {
        display: none;
    }
    .swiper-button-next {
        display: none;
    }
    .custom-pagination {
        display: none;
    }

    .home-banner {
        height: auto;
    }
    .home-about-desc {
        margin-left: 20px;
        margin-right: 20px;
    }
    
    .home-about-desc-content {
        margin-left: 0px;
    }
    .inen-about-desc-content {
        margin-left: 0px;
    }
    .home-achievement {
        margin: 20px;
    }

    .home-programmes-main {
        
        gap: 200px;
        flex-direction: column;
        
        margin-left: 20px;
        margin-right: 20px;
        gap: 100px;
    }

    .home-skills-main {
        margin-left: 20px;
        margin-right: 20px;
    }

    .home-programmes-container {
        
        height: 1358px;
        
        background: linear-gradient(to bottom, transparent 0% 50px, #E81F76 50px 100%);
    }

    .home-skills-desc {
        margin-left: 0px;
    }

    .home-skills-content {
        margin-left: 0px;
        /*justify-content: center;*/
    }

    .home-skills-container {
        margin-top: 0px;
    }

    .items-dummy {
        flex: 1 0 18%;
        max-width: 220px;
        min-width: 166px;
    }

    :root {
        --min-width: 1200px;
        --max-width: 1650px;
        --viewport-width: clamp(var(--min-width), 100vw, var(--max-width));
        --ratio: calc((var(--max-width) - var(--viewport-width)) / (var(--max-width) - var(--min-width)));
      }
      
    .home-programmes {
        /*
        background-position: calc(30% - var(--ratio) * 30%) 0%, calc(72% + var(--ratio) * calc(100% - 72%)) 100%;
        */
    }

    .home-programmes {
        
        height: 1358px;
        background-position: 50% 0%, 50% 72%;
        
    }

    .home-programmes-range-title {
        margin-top: 200px;
    }
    

    @keyframes about-slide {
        0% {
            background-position: -25% 0, 200% 100%;
            opacity: 0.3;
        }
        100% {
            background-position: top left,150% 100%;
            opacity: 1;
        }
    }
}

.mobile-stu_achm-title-btn {
    display: none !important;
}

.dots_part {
    position: relative;
    display: inline-block;
}

.count_number {
    position: absolute;
    top: -20px; /* 調整數字與點的間距 */
    left: 1px;
    font-size: 14px;
    font-family: Roboto;
    color: #0055B8; /* 藍色，與圖片匹配 */
    font-weight: bold;
    z-index: 1; /* 確保數字在點之上 */
}

.dots {
    display: flex;
    align-items: center;
    gap: 5px; /* 點之間的間距 */
}

.dot {
    width: 10px;
    height: 3px;
    background-color: #ccc; /* 灰色點 */
}

.line {
    width: 20px;
    height: 3px;
    background-color: #0055B8; /* 藍色線條 */
    margin-right: 5px;
}

.line_red {
    background-color: #E81F76;
}

.num_red {
    color: #E81F76;
}

.dot_white {
    background-color: #FFFFFF;
}

.stu_ach-dropdown-header {
    color: #000000;
}

.news-right-end-btn-mobile {
    display: none;
}

.news-right-end-btn-mobile img {
    cursor: pointer;
}

.mb-next,.mb-prev {
    cursor: pointer;
}

.div_break {
    width: 20px;
}

.stu_ach_btn_margin{
    display: flex;
    gap: 15px;
    cursor: pointer;
}


.stu_ach-custom-pagination {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 5px 10px;
    background: #ffffff00;
    border: 0;
    color: #ccc;
    z-index: 4;
}

.stu_ach-pagination-line {
    display: flex;
    align-items: center;
    gap: 6px;
    position: relative;
}

.stu_ach-pagination-dot {
    width: 15px;
    height: 4px;
    background: #ccc;
    display: inline-block;
    transition: background 0.3s, width 0.3s;
    position: relative;
}

.stu_ach-pagination-dot.active {
    width: 25px;
    background: #007aff;
}

.stu_ach-dot-number {
    position: absolute;
    top: -20px; /* 數字顯示在點上方 */
    left: 50%;
    transform: translateX(-50%);
    color: #007aff;
    font-family: Roboto;
    font-size: 14px;
    line-height: 100%;
    font-weight: 500;
    opacity: 0;
    transition: opacity 0.3s;
}

.stu_ach-pagination-dot.active .stu_ach-dot-number {
    opacity: 1;
}

.stu_ach-btn-area {
    display: flex;
    margin-top: 31px;
}

.inen-title-flex {
    display: flex;
    flex-direction: column;
}

.inen-title-name {
    font-size: 28px;
    line-height: 36px;
    font-weight: bold;
}
.inen-title-wha {
    margin-top: 6px;
    font-size: 16px;
    line-height: 22px;
    font-weight: bold;
    letter-spacing: 0.5px;
}
.inen-title-whe {
    margin-top: 3px;
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.inen-desc-content {
    color: #000000;
    font-family: Roboto;
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.inen-bg {
    background-color: #FFFFFF !important;
    border-bottom: 10px solid #E81F76;
}

.inen-feedback-bg {
    background-color: #F98BAA !important;
}

.inen-graduate-bg {
    background-color: #0055B8 !important;
}

.inen-title {
    color: #FFFFFF !important;
}

.inen-title .home-content-col-divider {
    border-color: #FFFFFF !important;
}

.inen-img img {
    height: -webkit-fill-available;
    min-width: 440px;
}

.inen-custom-pagination {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 5px 10px;
    background: #ffffff00;
    border: 0;
    color: #fff;
    z-index: 4;
    justify-content: center;
}

.inen-pagination-line {
    display: flex;
    align-items: center;
    gap: 6px;
    position: relative;
}

.inen-pagination-dot {
    width: 15px;
    height: 4px;
    background: #fff;
    display: inline-block;
    transition: background 0.3s, width 0.3s;
    position: relative;
}

.inen-pagination-dot.active {
    width: 25px;
    background: #007aff;
}

.inen-dot-number {
    position: absolute;
    top: -20px; /* 數字顯示在點上方 */
    left: 50%;
    transform: translateX(-50%);
    color: #0055B8;
    font-family: Roboto;
    font-size: 14px;
    line-height: 100%;
    font-weight: 500;
    opacity: 0;
    transition: opacity 0.3s;
}

.inen-pagination-dot.active .inen-dot-number {
    opacity: 1;
}

.inen-graduate-divider {
    height: 40px !important;
}

.inen-grad-custom-pagination {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 5px 10px;
    background: #ffffff00;
    border: 0;
    color: #fff;
    z-index: 4;
    justify-content: center;
}

.inen-grad-pagination-line {
    display: flex;
    align-items: center;
    gap: 6px;
    position: relative;
}

.inen-grad-pagination-dot {
    width: 15px;
    height: 4px;
    background: #fff;
    display: inline-block;
    transition: background 0.3s, width 0.3s;
    position: relative;
}

.inen-grad-pagination-dot.active {
    width: 25px;
    background: #E81F76;
}

.inen-grad-dot-number {
    position: absolute;
    top: -20px; /* 數字顯示在點上方 */
    left: 50%;
    transform: translateX(-50%);
    color: #E81F76;
    font-family: Roboto;
    font-size: 14px;
    line-height: 100%;
    font-weight: 500;
    opacity: 0;
    transition: opacity 0.3s;
}

.inen-grad-pagination-dot.active .inen-grad-dot-number {
    opacity: 1;
}

.skill_type {
    z-index: 3;
    position: absolute;
    font-size: 12px;
    color: #FFFFFF;
    top: 11px;
    left: 10px;
    /*width: 26px;*/
    padding-left: 5px;
    padding-right: 5px;
    text-align: center;
    font-family: Roboto;
    font-weight: 500;
    background-color: #0055B8;
}

.skillup_DL_flex {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
    background-color: #F7F7F7;
    max-width: 233px;
}

.skillup_DL_TEXT {
    color: #000000;
    font-family: Roboto;
    font-size: 24px;
    line-height: 100%;
    font-weight: bold;
}

.skillup_DL {
    font-size: 16px;
    font-family: Roboto;
    font-weight: 500;
    color: #ffffff;
    padding: 10px 18px;
    background: #0055B8;
    max-width: 140px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.skillup_DL_flex_desc {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.skillup_DL_flex_mb {
    display: none;
    gap: 20px;
    background-color: #F7F7F7;
    margin-top: 40px;
    max-width: 340px;
}

.skillup_DL_flex_mb_img {
    width: 120px;
}

.mb_skill_desc {
    padding-top: 19px;
    padding-bottom: 18px;
}

@media (max-width:1400px) {
    .inen-page .main-area-title {
        font-size: 80px;
    }
}

@media (max-width: 1400px) {
    .news-right-end {
        width: 895px;
    }
    .home-stu_achm {
        margin-left: 20px;
        margin-right: 20px;
        max-width: -webkit-fill-available;
    }
}

@media (max-width: 934px) {
    .news-right-end {
        width: 430px;
        justify-content: space-between;
    }
    .news-right-end-btn {
        display: none;
    }
    .news-right-end-btn-mobile {
        display: flex;
        gap: 5px;
    }
    .inen-img img {
        min-width: unset;
    }
}

@media (max-width: 1360px) {
    .home-stu_achm-range {
        width: auto;
        justify-content: unset;
    }
    .desktop-stu_achm-title-btn {
        display: none;
    }
    .mobile-stu_achm-title-btn {
        display: flex;
    }
    .home-stu_achm-swiper {
        width: 100%;
    }
}

@media (max-width: 1300px) {
    .home-about {
        background-size: 20%, 80%;
        height: 1200px;
    }
}

@media (max-width: 1200px) {
    .home-scheme-container-mobile {
        display: flex;
    }
    .home-scheme-container {
        display: none;
    }
    .skillup_DL_flex_dt {
        display: none;
    }
    .skillup_DL_flex_mb {
        display: flex;
    }
}

@media (max-width: 1000px) {
    .home-about {
        background-size: 40%, 80%;
        height: 1000px;
    }
}

@media (max-width: 800px) {
    .home-programmes {
        background-size: 100%;
    }
}

@media (max-width: 770px) {
    .home-skills-main {
        margin-top: 100px;
    }
}

@media (max-width: 730px) {
    .inen-img img {
        
    }
}

@media (max-width: 700px) {
    .modal-content-of::before {
        font-size: 300px;
    }
    .facilities-popup-content-banner {
        height: 300px;
    }
}

@media (max-width: 600px) {
    .home-programmes {
        background-size: contain;
    }
    .home-about {
        background-size: 40%, 90%;
    }
}

@media (max-width: 560px) {
    .home-content-col-divider {
        height: 135px;
    }
}

@media (max-width: 500px) {
    .home-programmes-container {
        height: 1408px;
    }
    .facilities-popup-content-banner {
        height: 250px;
    }
}

@media (max-width: 400px) {
    .about-programme-main img {
        display: none;
    }
    .modal-content-of::before {
        font-size: 200px;
    }
}

.facilities-title {
    max-width: 693px;
}

@media (max-width: 768px) {

    .main-area-title {
        font-size: 40px !important;
        line-height: 44px;
        letter-spacing: 0px;
        text-transform: capitalize;
    }

    .facilities-title {
        margin-left: 20px;
        max-width: auto;
    }

    .home-mobile-banner {
        display: flex;
        flex-direction: column;
    }

}

@media (max-width: 390px) {
    .home-skills-items-img {
        padding-bottom: 65%;
        max-width: unset;
        width: 330px;
    }
}
@media (max-width: 360px) {
    .home-skills-items-img {
        width: 300px;
    }
}
@media (max-width: 330px) {
    .home-skills-items-img {
        width: 270px;
    }
}
@media (max-width: 290px) {
    .home-skills-items-img {
        width: 240px;
    }
}