.nav-hamburger-menu-icon {
    display: none;
    color: #fff;
    cursor: pointer;
    font-size: 30px;
    padding: 10px;
    background-color: rgb(34, 34, 34);
    border-radius: 50%;
    outline: none;
    border: 0px;
    transform: translate(10px, 10px);
    height: 50px;
    width: 50px;

    -webkit-tap-highlight-color: transparent;
}

@media screen and (max-width: 800px){
    nav {
        height: calc(60px);
        width: 100%;
    }

    nav * {
        /* text selection disabled */
        user-select: none;
    }

    .nav-hamburger-menu-icon {
        display: block;
        position: relative;
    }

    .nav-hamburger-menu-icon > svg {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .nav-wrapper {
        margin: 0px;
        padding: 10px;
        pointer-events: none;
        opacity: 0;
        overflow: hidden;

        position: absolute;
        top: 5px;
        left: 5px;

        display: flex;
        flex-direction: column;
        width: calc(100% - 10px);
        user-select: none;
        
        max-height: 0px;
        transition: .6s height, .1s opacity, .6s padding, .6s max-height;
    }

    nav:focus-within .nav-wrapper {
        pointer-events: all;
        max-height: 1000px;
        overflow: visible;
        opacity: 1;
        z-index: 998;
        user-select: all;

        padding: 10px;
    }

    .nav-wrapper > .logo {
        width: 100%;
        margin: 0px;
        text-align: left;
        pointer-events: none;
    }

    .nav-wrapper > .buttons {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 0px;
        padding: 10px;
        width: 100%;
        gap: 5px;
    }

    .nav-wrapper > .buttons > button {
        margin: 0px;
        text-align: left;
    }

    .nav-wrapper > .buttons > button.selected::before {
        content: "";
        position: absolute;
        height: 40%;
        width: 5px;
        background-color: #999999;
        bottom: 50%;
        transform: translateY(50%);
        left: -5px;
        border-radius: 5px;
        z-index: 1;
        transition: .3s all;
    }

    .nav-wrapper > .buttons > button:hover:not(.selected)::before {
        content: "";
        position: absolute;
        height: 4px;
        width: 7%;
        background-color: #999999;
        bottom: 0px;
        left: 0px;
        border-radius: 5px;
        z-index: 1;
        transition: .3s all;
    }

    .nav-wrapper > .buttons > button {
        display: inline-block;
        font-size: 20px;
        font-weight: 600;
        color: #fff;
        text-decoration: none;
        cursor: pointer;
        padding: 5px 10px;
        border-radius: 5px;
        background-color: rgb(12, 12, 12);
        outline: none;
        border: 0px;
        position: relative;
    }

    .app-lancer {
        position: absolute;
        pointer-events: all;
        right: 5px;
        top: 5px;
    }
}
