@media only screen and (max-width: 1000px) {

    /* Header & Sticky Header */

    header, header.sticky {
        padding: 20px 50px;
    }

    .menu-button {
        width: 40px;
        height: 40px;
        background: url('images/menu/open.png') no-repeat center;
        background-size: 30px;
        cursor: pointer;
    }

    header.sticky .menu-button {
        filter: invert(1);
    }

    nav {
        position: fixed;
        top: 75px;
        left: -100%;
        width: 100%;
        height: 100vh;
        border-top: 1px solid rgba(0, 0, 0, 0.2);
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        transition: 0.5s;
        background-color: #fff;
    }

    nav ul {
        display: block;
        text-align: center;
    }

    nav ul li {
        margin: 50px 0;
    }

    nav ul li a {
        font-size: 24px;
        color: #111;
    }

    nav ul li a:hover {
        color: #555;
    }

    nav ul li a:active {
        color: #aaa;
    }

    /* Menu Open */

    .menu-button.active {
        background: url('images/menu/close.png') no-repeat center;
        background-size: 25px;
    }

    nav.active {
        left: 0;
    }


    /* Sections */

    section {
        padding: 100px 50px;
    }

    .heading {
        margin-bottom: 50px;
    }

    .heading h2 {
        font-size: 28px;
    }

    .heading p {
        font-size: 20px;
    }

    .content {
        flex-direction: column;
    }

    .content h3 {
        font-size: 20px;
    }

    .content p {
        font-size: 16px;
    }

    .button {
        padding: 10px 20px;
        font-size: 16px;
    }


    /* Home */

    #home .text-box {
        width: 100%;
        margin-top: 40px;
        text-align: center;
    }

    #home h2 {
        font-size: 2em;
    }

    #home h3 {
        font-size: 1.5em;
    }

    #home .button {
        margin-top: 20px;
    }

    #home img {
        max-width: 300px;
        height: 400px;
        margin-top: 60px;
    }


    /* About */

    #about .text-box {
        width: 100%;
        margin-bottom: 50px;
        padding-right: 0;
    }

    #about .images {
        width: 100%;
        flex-wrap: nowrap;
    }

    #about .images img {
        width: 40%;
        height: 60vh;
        margin-top: 0;
    }


    /* Work */

    #work .text-box {
        width: 100%;
        margin-bottom: 50px;
    }

    #work .content h3 {
        font-size: 50px;
    }

    #work .button {
        margin-top: 10px;
    }

    #work .video {
        width: 100%;
    }


    /* Contact */

    #contact .heading {
        margin-bottom: 50px;
    }

    /* Contact Info */

    #contact .info {
        margin-bottom: 50px;
    }

    #contact .info .fields {
        display: flex;
        flex-wrap: wrap;
    }

    #contact .info .field {
        padding: 20px 20px;
    }

    /* Contact Form */

    #contact form {
        width: 100%;
    }
}

@media (max-width: 600px) {

    /* Header & Sticky Header */

    header, header.sticky {
        padding: 20px 20px;
    }


    /* Sections */

    section {
        padding: 80px 20px;
    }


    /* Home */

    #home h2 {
        font-size: 1.5em;
    }

    #home span {
        display: inline-block;
        margin: 10px 0;
        line-height: 1.3;
    }

    #home h3 {
        font-size: 1em;
    }

    #home img {
        max-width: 250px;
        height: 350px;
    }


    /* About */

    #about .images {
        flex-wrap: wrap;
    }

    #about .images img {
        max-width: 200px;
        height: 300px;
        margin-bottom: 20px;
    }

    /* Services */

    #services .text-box {
        width: 90%;
    }

    #services .text-box img {
        max-width: 100px;
        height: 100px;
    }


    /* Work */

    #work .content h3 {
        font-size: 8vw;
    }
}