.container {
    width: 1080px;
    margin: 30px auto 0 auto;
    padding-right: 40px;
}

.text-center {
    text-align: center;
}

header .logo {
    height: 150px;
    padding: 45px 0;
}

.logo a {
    border: 0;
}

.logo img {
    height: 150px;
    display: inline-block;
}

.nav ul {
    list-style: none;
    background-color: #343538;
    text-align: center;
    padding: 0;
    margin: 0;
}
.nav li {
    line-height: 153px;
    height: 153px;
}

.nav a {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    display: block;
    padding: 0 30px;
    text-decoration: none;
    color: #e2e2e2;
    font-weight: bold;
    transition: all 0.4s ease;
}

.nav a:hover {
    background-color: #77B21D;
}

.nav a.active {
    cursor: default;
}

@media screen and (min-width: 600px) {
    .nav li {
        border-bottom: none;
        height: 53px;
        line-height: 53px;
        font-size: 13px;
    }

    /* Option 1 - Display Inline */
    .nav li {
        display: inline-block;
        margin-right: -4px;
    }

}

.user-nav ul {
    list-style: none;
    background-color: #616265;
    text-align: center;
    padding: 0;
    margin: 0;
}
.user-nav li {
    line-height: 153px;
    height: 153px;
}

.user-nav a {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    display: block;
    padding: 0 30px;
    text-decoration: none;
    color: #fff;
    transition: all 0.4s ease;
}

.user-nav a:hover {
    background-color: #77B21D;
}

.user-nav a.active {
    cursor: default;
}

@media screen and (min-width: 600px) {
    .user-nav li {
        border-bottom: none;
        height: 35px;
        line-height: 35px;
        font-size: 11px;
    }

    /* Option 1 - Display Inline */
    .user-nav li {
        display: inline-block;
        margin-right: -4px;
    }

}