@media (max-width: 768px) {
    /* ============================ */
    /* ========== NAVBAR ========== */
    /* ============================ */
    nav h1 {
        text-wrap: nowrap;
    }

    /* ================================== */
    /* ========== LANDING PAGE ========== */
    /* ================================== */
    .landingPage{
        margin-top: 0 !important;
        padding: 0;
        height: fit-content;
        flex-wrap: wrap;
    }
    
    .left h1{
        margin: 1.5rem 0 0rem 0;
        font-size: 3rem;
        text-align: center;
    }
    .left button{
        display: none;
    }

    .slider-wrapper{
        width: 100%;
    }

    .button_container{
        padding-bottom: 20px;
    }


    .mobileButton {
        display: block; 
        margin: 0 auto;
        margin-bottom: 3rem;
        padding: 10px 20px;
        background-color: var(--mainGreen);
        border: none;
        border-radius: 5px;
        font-size: 1.5rem;
        transition: all 0.3s ease-in;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.529);
    }
    .mobileButton a{
        color: white;
        text-decoration: none;
    }

    .mobileButton:active{
        color: var(--walnut);
    }
    /* ================================== */
    /* ========== ABOUT US ============== */
    /* ================================== */
    .profile{
        width: 80%;
    }

    .middleRow {
        flex-wrap: wrap; 
        justify-content: center;
        gap: 0.5rem;
        max-width: 500px; 
    }
    .middleRow .skill {
        flex: 1 1 40%;
        min-width: 150px;
        text-align: center;
    }

    /* ================================== */
    /* ========== ABOUT US ============== */
    /* ================================== */
    .profile .topRow img{
        height: 100px;
    }

    .gridWrapper {
        grid-template-columns: 1fr;
    }

    /* ================================== */
    /* ============= FAQ ================ */
    /* ================================== */
    .faq_section {
        width: 80%;
        margin: 0 auto;
        text-align: center; 
    }

    /* ============================================ */
    /* ============= PHOTO GALLERY ================ */
    /* ============================================ */

        .grid-wrapper {
            grid-template-columns: 1fr; 
            grid-auto-rows: auto; 
        }
    
        .grid-wrapper .wide,
        .grid-wrapper .tall,
        .grid-wrapper .big {
            grid-column: auto; 
            grid-row: auto;
        }
}