.nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 80%;
    max-width: 35rem;
    height: 100%;
    z-index: 10;
    background: #fff;
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.5, 0, 0, 0.75);
}

.nav.is--active{
    transform: translateX(0%);
}

.nav ul {
    width: 80%;
    margin: 0 auto;
}

.nav ul li {
    width: 100%;
    padding: 1.2rem 0;
    padding-left: 2rem;
    margin-bottom: 0.5rem;
    cursor: pointer;
    border-radius: 1.2rem;
    list-style-type: none;
    transition: background 0.33s ease;
}

.nav-link {
    color: #393c41;
    font-weight: 600;
    font-size: 1.5rem;
    text-transform: capitalize;
    text-decoration: none;
}

.nav ul li:hover {
    background: #0000000d;
}

.close-btn {
    text-align: right;
    margin: 2rem 3rem;
}

.nav-close-btn {
    width: 3rem;
    cursor: pointer;
}

.blur-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(1rem);
}

.blur-overlay.is--active{
    display: block;
}