
#nav-menu{

    position:fixed;
    top: 0px;
    left: 0px;
    height: 80px;
    width: 100%;
    background-color: var(--rojo);
    z-index: 98;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 5%;
    
    }
    
    #cont-nav-logo{
    
        display: flex;
        flex-direction: column;
    
        justify-content: center;
    
        position: absolute;
        left: 0;
        height: 130%;
        width: 300px;
        background-color: white;
        clip-path: polygon(0 0, 100% 0%, 80% 100%, 0% 100%);
    
        border: 1px solid rgb(224, 224, 224);
    
    }
    
    #nav-logo{
    
    margin-left: 35px;
        
    }
    
    #nav-menu a{
        
        color: whitesmoke;
        text-decoration: none;
        transition: all 0.1s ease-in;
        font-weight: 550;
        font-size: 1em;
    
    }
    
    #nav-menu a:hover{
    
        color: #fff;
        transform: scale(110%);
    
    }

    
#cont-menu-burger{

    display: flex;
    flex-direction: column;
    justify-content: center;
    position: fixed;
    height: 100vh;
    width: 100vw;
    top: 0;
    left: 0;
    z-index: 99;
    background-color: rgba(0, 0, 0, 0.4);

}

#menu-burger{

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 97%;
    width: 75%;
    background-color: #fff;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;

}

#tachita i{

    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 2em;
    color: #ffffff;

}

#tachita:hover{

    color: rgb(35, 167, 35);

}   

#menu-burger img{

    width: 50%;

}

#burger{

    display: none;

}

    @media (max-width:768px) {
    
        .linka{
        
            display: none;
        
        }

        #nav-menu{

            justify-content: end;

        }

        #burger{

            font-size: 2.7em;
            color: #fff;
            margin-right: 25px;

        }

        #burger:hover{

            color: var(--ama);

        }

        #menu-burger a{

            margin-top: 20px;
            font-size: 0.95rem;
            color: black;
            
        }

        #burger{

            display: block;

        }

        .cliente-img{
            width: 20px;
        }

    }