.menu__dropdown {
    display: none;
}

@media (max-width: 1022px){
    .menu__dropdown.menu__active{
        top: 0;
      }

    .menu__dropdown {
        display: flex;
        justify-content: center;
        text-align: center;
        width: 100vw;
        height: 100vh;
        position: absolute;
        top: -2000px;
        left: 0;
        background-color: var(--greyDrakLighter);
        /* background: url(/public/noisemenu.svg);
        background-repeat: no-repeat ;
         background-size: cover; */
        z-index: -2210;
        padding-top: 4rem;
        transition: top 0.2s ease-in-out;
    }

    .active {
        left: 0;
    }
    .menu__dropdown > ol> li > a {
        padding-top: 3rem;
        font-weight: 600;
        font-size: 21px;
    }
    /* ANIMACION HOVER */

.header__nav-list-menu > li > a {
    position: relative;
    display: inline-block;
    text-decoration: none;
    padding-bottom: 2px; 
    border-radius: 1px;
}

.header__nav-list-menu > li > a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: var(--verdeOscuro600);
    transition: width 0.3s ease; 
}

.header__nav-list-menu > li > a:hover{
    color: var(--verdeOscuro600);
}
/* .header__nav-list-menu > li > a:hover::after {
    width: 100%; 
} */
}
