#toggle-nav {
    position: fixed;
    z-index: 10;
    background-color: rgba(0, 0, 0, 0.5);
    border: 0.1rem #fff solid;
    text-transform: uppercase;
    color: #fff;
    cursor: pointer;
    font-size: 14px;
    padding: 0.6rem 1.5rem;
    left: 1rem;
    top: 1rem;
    transition: all 0.3s ease-out;
    display: block;
}

nav {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9;
    background-color: rgba(0, 0, 0, 1);
    bottom: 0;
    text-align: center;
    transition: all 0.3s ease-out;
    left: -300px;
    width: 300px;
}


#toggle-nav.nav-active {
    transform: translateX(300px);
}
nav.nav-active {
    transform: translateX(300px);
}

nav img {
    padding: 2.5rem 1rem;
    width: 100%;
}

nav ul, nav ul li {
    display: block;
    list-style: none;
    margin: 0;
    padding: 0;
}

nav a {
    text-decoration: none;
    transition: all 0.3s ease-out;
    margin-bottom: 1rem;
    display: block;
    padding: 0.5rem;
    text-transform: uppercase;
    font-weight: bold;
}

nav a:hover, nav a.active {
    color: rgba(255, 255, 255, 1);
}

nav .social {
    margin-top: 2.5rem;
}

nav .social a {
    display: inline-block;
}
