@media only screen and (max-width: 1024px) {

    h1 {
        font-size: 36px;
    }

    h2 {
        font-size: 34px;
    }

}

@media only screen and (max-width: 768px) {

    /* menu overlay */

    .menu {
        position: fixed;
        width: 100%;
        left: -100%;
        top: 0;
        bottom: 0;
        z-index: 999;
        background: #fff;
        flex-direction: column;
        padding: 80px 40px;
        transition: all 0.2s ease-out;
    }

    .menu.open {
        left: 0;
    }

    .open-menu-icon {
        display: block;
    }

    .close-menu-icon {
        display: block;
        position: fixed;
        z-index: 1000;
        top: 28px;
        right: -56px;
        transition: all 0.2s ease-out;
    }

    .close-menu-icon.open {
        right: 22px;
    }

    .menu-item {
        padding: 24px;
        font-size: 24px;
    }


    /* columns */

    .columns-wrapper {
        max-width: 530px;
    }

    .column {
        flex-basis: 100%;
    }

    .column.mobile-order-1 {
        order: -1;
    }

}


@media only screen and (max-width: 576px) {

    #header {
        padding-left: 16px;
    }

}