.navbar{
    position: fixed;
    min-width: 500px;
    height: auto;
    margin-top: -100%;
    margin-left: -8.5%;
    z-index: 1;
    transition: all 500ms ease 0ms;
}

.navIn{
    margin-top: 2%;
}

.navOut{
    margin-top: -100%;
}


.nav-logo{
    width: auto;
    height: 50px;
    vertical-align: middle;
    box-shadow: none;
}

.nav{
    display: inline-block;
    background-color: #34fdb4;
/*    padding: 1%;*/
    margin-left: 2%;
    border-radius: 0.1em;
    -moz-border-radius: 0.1em;
    -webkit-border-radius: 0.1em;
}

.nav ul li{
    display: inline-block;
    color: #0C0619;
    margin-bottom: 0px;
    font-family: "Raleway", sans-serif;
    font-weight: 700;
    text-transform: uppercase;
}

.nav a{
    display: inline-block;
    height: auto;
    padding: 10px 20px;
}

.navbar .nav a:hover{
    background: #25bd87;
    border-radius: 0.1em;
    -moz-border-radius: 0.1em;
    -webkit-border-radius: 0.1em;
    transition: all 0.5s;
    -webkit-transition: all 0.35s;
    -moz-transition: all 0.35s;

}