nav {
    overflow:hidden;
    z-index:100;
    position: fixed;
    height: 70px;
    width: 100%;
    background: white;
    transition: 0.3s ease;
}

    nav a {
        -webkit-transition: all 0.2s linear;
        -moz-transition: all 0.2s linear;
        -ms-transition: all 0.2s linear;
        -o-transition: all 0.2s linear;
        transition: all 0.2s linear;
        text-decoration: none;
        line-height: 70px;
        margin-right: 30px;
        text-transform: uppercase;
        color: rgba(0,0,0,0.7);
        float: right;
        letter-spacing: 3px;
        cursor: pointer;
        font-size:0.9em;
    }
    nav a:hover{
        color:black;
        font-weight:300;
    }
    nav a.nav-link-highlight {
        color: #4a7c59;
        font-weight: 600;
    }
    nav a.nav-link-highlight-dark {
        color: #2c5530;
        font-weight: 600;
    }

    nav .logo {
        transition: 0.3s ease;
        height: 180px;
        cursor: pointer;
        margin:-55px 0 -20px 15px;
        float: left;
    }
