.nav{    
    height: 100%;
    color: #000; 
}  

.nav_contenedor{    
    display: flex;
    height: 80px;
    width: 100%;
    margin: 0 auto;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    z-index: 1001;
    background: #fff;
    padding: 0 20px 0 20px;
    top: 40px;
}

.nav_img_logo{
    width: 200px;
}

.nav_chk_menu:checked + .nav_menu{
    background: #fff;
}

.nav_label, .nav_chk_menu{
    display: none;
}

.nav_menu{
    display: grid;
    grid-auto-flow: column;    
    z-index: 1;
}

.nav_items{
    color: #000;
    text-decoration: none;
    font-size: 16px;
}

.nav_menu a{
    padding: 10px 15px 10px 15px;
}

.nav_menu a:hover{
    color: #9c058d;
    transition: color 0.3s ease;
    font-style: oblique;
    box-shadow: 0 2px 1px rgba(156, 5, 141, 0.5);
}

@media only screen and (max-width: 900px) {
    /* Estilos para tabletas y dispositivos con pantallas medianas */
    .nav_menu{
        position: fixed;
        top: 120px;
        bottom: 0;
        width: 100%;
        left: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        clip-path: circle(0 at center);
        transition: clip-path 0s ease-in-out;
    }

    .nav_label{
        display: block;
        cursor: pointer;
    }

    .nav_chk_menu:checked + .nav_menu{
        background: #fbeaea;
        clip-path: circle(100% at center);
    }

    .nav_img_logo{
        width: 180px;
    }

    .nav_menu a{
        padding: 10px 100% 10px 100%;
    }

    .nav_items{
        font-size: 16px;
    }

}

@media only screen and (max-width: 300px) {
    .nav_img_logo{
        width: 140px;
    }
    
}

@media only screen and (max-width: 239px) {
    .nav{   
        margin-top: 90px;
    } 
    
}