.mobile-nav-wrapper{
    z-index: 200;
    opacity: 0%;
    position: fixed;
    padding: 30px;
    height: 100%;
    width: 200px;
    display: flex;
    align-items: flex-start;
    background-color: black;
    transition: all .2s ease-in-out;
    transform: translateX(-100%);
}

.mobile-nav {
    display: flex;
    flex-direction: column;
}

.mobile-nav-link {
    color: white;
    position: relative;
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 2px;
    padding: 10px 10px;
    text-transform: lowercase;
    text-decoration: none;
    border: 2px solid transparent;
    mix-blend-mode: difference;
    transition: background-color 0.3s;
    text-transform: uppercase;
    transition: all 0.3s ease-in-out;
}
.mobile-nav-link:hover {
    color: black;
}

.mobile-nav-link::after {
    content: "";
    position: absolute;
    top: 0;
    right: 100%;
    bottom: 0;
    width: 0%;
    background-color: white;
    transition: all 0.3s;
    z-index: -1;
}
.mobile-nav-link:hover::after {
    right: 0%;
    width: 100%;
}

.mobile-nav-close{
    color: black;
    margin-left: auto;
    cursor: pointer;
    padding: 7px 10px;
    border-radius: 100%;
    transition: all .2s ease-in-out;
    background-color: rgba(255, 255, 255, 0.532);
}
.mobile-nav-close:hover {
    background-color: rgba(255, 255, 255, 0.999);
}