@media (min-width: 600px) {

    /* NAVIGATION */
    nav {
        display: flex;
        flex-direction: row;
        justify-content: end;
    }

    #ham-btn {
        display: none;
    }

    /* HOME PAGE - MAIN */
    #locations-nav, #rental-summary {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-gap: 2rem;
    }

    #locations-nav h3, #rental-summary h3 {
        grid-column: 1/3;
        width: 100%;
    }

    #locations-nav div {
        margin: 0 auto;
    }

    #rental-summary {
        align-items: center;
        justify-content: center;
    }

    #rental-summary img {
        grid-column: 2/3;
        grid-row: 2/4;
    }

    #weather {
        display: flex;
        flex-direction: row;
        justify-content: space-around;
    }

    /* RESERVATIONS PAGE - MAIN */
    #reservations-main img {
        display: block;
    }

    /* CONTACT US PAGE - MAIN */
    #contact-info {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-gap: 2rem;
        align-items: center;
        justify-content: center;
    }
}

@media (min-width: 650px) {

    /* RENTALS PAGE - MAIN */
    #rentals {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-gap: 2rem;
        justify-content: center;
    }
}