@media only screen and (max-width: 1024px) {

    header {
        display: none;
    }

    /* mobile header */
    .mobileHeader {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 20px;
        background: transparent;
        color: white;
        position: relative;
        z-index: 1000;
        position: absolute;
        width: 100%;
    }

    .mobileHeader.fixed {
        position: fixed;
        top: 0;
        width: 100%;
        background: #3f3854;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    }

    .breadcrumb-btn {
        background: none;
        border: none;
        color: white;
        font-size: 18px;
        cursor: pointer;
    }

    .mobile-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: #3f3854;
        color: white;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 9999;
        overflow-y: auto;
    }

    .mobile-menu.visible {
        transform: translateX(0);
    }

    .close-btn {
        background: none;
        border: none;
        color: white;
        font-size: 24px;
        padding: 10px 20px;
        cursor: pointer;
        float: right;
    }

    .menu-list {
        list-style: none;
        padding: 20px;
    }

    .menu-list li {
        margin: 15px 0;
        font-size: 18px;
        cursor: pointer;
        font-weight: 500;
        border-bottom: 0.8px solid #dddddd63;
        padding-bottom: 10px;
    }

    .menu-footer {
        position: absolute;
        bottom: 20px;
        left: 0;
        right: 0;
        padding: 20px;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .menu-btn {
        padding: 10px;
        font-size: 16px;
        border: none;
        cursor: pointer;
        border-radius: 10px;
        font-weight: 500;
        background: var(--ac-secondary);
        color: #fff;

    }

    .menu-btn.primary {
        background-color: var(--ac-primary);
        color: #fff;
    }



    .contact-info .info-text a {
        font-size: 12px;
    }
}

@media only screen and (max-width: 768px) {}

@media only screen and (min-width: 1025px) {

    .mobileHeader,
    .mobile-menu {
        display: none;
    }
}

@media screen and (max-width: 1024px) {


    .theme_btn {
        font-size: 16px;
    }

    .bannerH {
        font-size: 42px;
    }

    .bannerH2 {
        font-size: 30px;
    }

    .bannerH3 {
        font-size: 18px;
    }

    .programTitle {
        font-size: 1.8rem;
    }

}

@media screen and (max-width: 767px) {
    .overlay {
        align-items: start;
    }

    .search_modal {
        margin-top: 20%;
        padding: 15px;
    }

    .search_modal .tabs {
        gap: 5px;
    }

    .tabs button {
        padding: 10px 10px;
        font-size: 12px;
    }

    .searchBar {
        display: auto;
        width: 100%;
    }

    .searchBar input {
        flex: auto;
    }

    .searchItem p,
    .searchItem strong {
        font-size: 12px;
    }

    .theme_btn {
        font-size: 14px;
    }

    .bannerH {
        font-size: 32px;
    }

    .bannerH2 {
        font-size: 26px;
    }

    .bannerH2 {
        font-size: 16px;
    }

    .logo {
        width: 60px;
    }

    .bannerP {
        font-size: 16px;
        line-height: 26px;
    }

    .programTitle {
        font-size: 1.5rem;
    }

    .disclaimer_img {
        border-radius: 24px;
    }

}

@media screen and (max-width: 362px) {
    .bannerH {
        font-size: 30px;
    }
}