@media screen and (max-width: 650px) {
    .desktop-header {
        display: none;
    }

    .mobile-header {
        display: block;
    }
    .mobile-header .top-section{
        position: fixed;
        top: 0;
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 5px 20px;
        background-color: var(--light);
        border-bottom: 1px solid var(--theme-color);
        box-shadow: var(--shadow);
        z-index: 1000;
    }
    .nav-btn{
        font-size: 20px;
        padding: 2px;
        background-color: var(--light);
        border: 1px solid var(--dark);
        border-radius: 5px;
    }
    .mobile-header nav{
        position: fixed;
        width: 100%;
        margin-top: 60px;
        background-color: var(--light);
        display: flex;
        flex-direction: column;
        gap: 20px;
        padding: 20px;
        border-bottom: 1px solid var(--theme-color);
        z-index: 100;
    }
    .mobile-header nav a{
        color: var(--dark);
        text-decoration: none;
    }
    #mobile-nav{
        display: none;
    }
    #mobile-nav.active{
        display: flex;
    }
    .mobile-header .m-dropdown{
        display: none;
        flex-direction: column;
        gap: 20px;
        padding: 20px;
        box-shadow: var(--shadow) inset;
    }

    .spacer {
        height: 60px;
    }


    /* Homepage */
    .hero-section{
        padding: 10px;

    }
    .half{
        width: 100%;
    }

    .second-section{
        padding: 10px;
    }
    .second-section .half{
        width: 100%;
    }
    .second-section .text{
        font-size: 12px;
    }

    .jobs{
        padding: 10px;
    }

    #contactForm{
        max-width: 100%;
    }

    .footer-content{
        flex-direction: column;
    }

    .copyright{
        margin: 10px;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
}