.nav-custom {
    display: flex;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
}

#menu-mobile {
    background: transparent;
    border: none;
    display: none;
    justify-content: center;
    align-items: center;
    border-radius: 999px;
    padding: 5px;
    transition: 0.4s ease;
    position: absolute;
    left: 30px;
    cursor: pointer;

    & > img {
        width: 30px;
        height: 30px;
    }
}

#menu-mobile:hover {
    background: #3a3a3a23;
    border-radius: 999px;
    transition: 0.4s ease;
}


.menu-mobile-ul {
    display: none;
}

@media (max-width: 770px) {
    #menu-mobile {
        display: flex;
    }

    .menu-mobile-ul {
        position: fixed;
        left: -700px;
        background-color: #fff;
        width: 100%;
        height: 100%;
        z-index: 10000;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 30px;
        transition: left 0.4s ease;

        & > ul {
            width: 100%;
            height: 100%;
            display: flex;
            gap: 30px;
            list-style: none;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 0;
            
            transition: 0.4s ease;
        }

        & > ul > li > a {
            color: #757575;
        }

        & > ul > li > a:hover {
            color: #c21500;
            transition: 0.4s ease;
        }
    }

    #close-button {
        position: absolute;
        width: 30px;
        height: 30px;
        top: 20px;
        right: 20px;
        cursor: pointer;
    }
}