nav{
    position: absolute;
    top: 100px;
    right: 50px;
    width: 100px;
    
    
}
a, a:visited {
    color: inherit;
  }

  a:hover {
    color: #2c6d75;
  }

  a:link {
    text-decoration: none;
}

.navigation{
    position: absolute;
    position: fixed;
    left: -380px;
    width: 175px;
    height: 100%;
    background-color: #000;
    transition: .5s;
    
}

.navigation ul li{
    
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    list-style-type: none;
    font-size: 1em;
    padding: 20px 30px;
    border-bottom: 1pt solid #252525;
}

.hamburger, .bar{
    position: fixed;
}

.hamburger{
    
    display: block;
    top: 5%;
    right: 95%;
    width: 30px;
    height: 30px;
    transform: translateY(-50%);
    border: 0;
    background: 0 0;
}

.bar{
    top: 3px;
    background: #000;
    width: 100%;
    height: 4px;
    transition: all .3s ease-in;
}

#bar2{
    top: 11px;
}

#bar3{
    top: 19px;
}

.navigation.active{
    left: 0;
}

.hamburger.open #bar1{
    background-color: #fff;
    transform: rotate(45deg) translate(6px, 5px);
}

.hamburger.open #bar2{
    background-color: transparent;
}

.hamburger.open #bar3{
    background-color: #fff;
    transform: rotate(-45deg) translate(6px, -5px);
}