@media screen and (min-width: 1000px) {
    nav .section {
        display: flex;
    }

    nav .section ul {
        display: none;
    }

    nav .icon {
        display: inline-block;
        cursor: pointer;
        /*margin-left: calc(245 / 1370 * 100%);*/
    }

    nav {
        position: sticky;
        width: 100%;
        left: 0;
        top: 0;
        min-height: 45px;
        height: auto;
        background: #CC461C;
        color: #fff;
        box-shadow: 0px 8px 10px 0px rgba(0,0,0,0.1);
        z-index: 99;
    }
    nav ul {
        padding: 0px 0 20px 0;
        margin: 0;
        list-style-type: none;
    }

    nav ul li {
        margin: 12px 40px 0px 20px;
        font-weight: 700;
        font-style: italic;
        display: block;
    }

    nav ul li a {
        color: #fff;
    }
    nav ul li a:hover {
        opacity: .8;
        text-decoration: none;
    }

    /* Style the navigation menu */
    nav .section {
        overflow: hidden;
        position: relative;
        min-height: 45px;
    }

    /* Hide the links inside the navigation menu (except for logo/home) */
    nav .section ul {
        display: none;
    }

    /* Style navigation menu links */
    nav .section span {
        color: white;
        padding: 11px 8px;
        text-decoration: none;
        font-size: 60px;
        display: block;
        position: absolute;
        right: 0;
        top: 0;
        height: 45px;
        box-sizing: border-box;
    }
}