

.hamburger-menu {
    width: 40px;
    height: 35px;
    background-color: #262626;
    border-radius: 4px;
    align-items: center;
    position: fixed;
    top: 5%;
    right: 3%;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    box-shadow: 0 2px 16px 0 rgba(0,0,0,0.5);
}

.navbar {
    width: 350px;
    height: 100%;
    background-color: #262626;
    position: fixed;
    top: 0;
    right: -360px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10% 0 0 10%;
    box-shadow: 0 2px 16px 0 rgba(0,0,0,0.8);
    transition: right .8s cubic-bezier(0.075, 0.82, 0.165, 1);
    z-index: 1;
}

.change {
    right: 0;
}

.line {
    width: 80%;
    height: 3px;
    border-radius: 2px;
    background-color: chocolate;
    transition: all 0.8s;
}

.change .line-1 {
    transform: rotateZ(-45deg) translate(-8px, 8px);
}

.change .line-2 {
    opacity: 0;
}

.change .line-3 {
    transform: rotateZ(45deg) translate(-8px, -8px);
}

.nav-list {
    text-align: center;
    margin: 0 !important;
    padding: 0!important;
}

.nav-item {
    list-style: none;
    margin: 2px;
}

.nav-link {
    text-decoration: none;
    padding: .5rem 0;
    font-size: 1.3rem;
    font-weight: 300;
    color: whitesmoke;
    transition: .5s;
}

.nav-link:hover {
    color: tomato;
}

.active {
    color: tomato;
}
.link {
    display:inline-block;
    position: relative;
    cursor: pointer;
  }      
  .icon {
    position: absolute;
    bottom: 15px;
    right: 35px;
    color: #333;
    opacity: 60%;
  }
