@media screen and (max-width: 700px) {

    #open-sidebar-button,
    #close-sidebar-button {
        display: block;
    }

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: min(15rem, 100%);
        z-index: 10;
        border-left: 1px solid var(--hover-color);
        transition: right 300ms ease-in-out;
        background-color: rgba(0, 0, 0, 0.349);
        backdrop-filter: blur(20px);
    }

    nav.show {
        right: 0;
    }

    nav.show~#overlay {
        display: block;
    }

    nav ul {
        width: 100%;
        flex-direction: column;
    }

    nav a {
        width: 100%;
        padding-left: 2.5rem;
    }

    nav a.active-link {
        border-bottom: none;
    }

    nav .home-li {
        margin-right: unset;
    }

    .card-right marquee {
        min-height: 20vh;
    }

    .map{
        display: none;
    }
    
     .status{
    background-color: var(--main-color);
    height: 3.5rem;
    margin-top: -4.8rem;
 }


}


@media screen and (max-width: 600px){
    .k-box{
        flex-direction: column;
        gap: 1rem;
    }
    .form-container {
        max-width: 85%;
    }
}



/* *-----breakpoints----*/
@media (max-width: 1200px) {
    html {
        font-size: 55%;
    }

    .logo_img,
    .main_subhead {
        display: none;
    }

    .title-bar {
        grid-template-columns: 1fr;
        padding: 0 2rem;
    }

    .card {
        grid-template-columns: 100%;
        gap: 0.3rem;
    }

    .card-right,
    .card-left {
        padding: 1rem;
        border-radius: 1rem;
        min-height: 25vh;
    }

    .container-links {
        grid-template-columns: 1fr;
    }

    .mySlides img {
        width: 100%;
        height: 30vh;
        aspect-ratio: 1/ 1;
        object-fit: cover;
    }

    .news-heading {
        grid-template-columns: 100%;
    }

    main {
        padding: min(5rem, 7%);
        min-height: 30vh;
    }

    .director-container {
        padding: 0.3rem;
    }

    .course-container {
        grid-template-columns: 1fr;
        gap: 0.2rem;
    }

    .pic-ctn img {
        height: 200px;
    }

    .container-footer {
        grid-template-columns: 1fr;
        min-height: 10vh;
    }

    .container-footer .box li {
        margin-top: 0.2rem;
    }

    .container-footer .box .post-wrap h5 {
        margin-top: 0.2rem;
    }

}