
.topheader{

    background-color: var(--fondo-color);
    position: fixed;
    justify-content: end;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 10;

}
.superior{
    padding-left: 10px;
    display:inline-flex;
    margin-left: 0;
    opacity: 1;
}


.topnav{
    display: flex;
    justify-content:space-between;
    padding: 5px;
    max-width: 95%;
    margin: 0 auto;
}

.menu{
    display: flex;
    list-style:none;
    margin: 0;
    padding: 0;
}

.menu  li {
    padding:  15px;
    margin: 0;
    list-style: none;
}

.menu  li:hover {
    background-color: rgba(163, 177, 164, 0.361);
 }

.menu  a{
    color: var(--color-texto);
    font-size: 14px;
    font-weight: 900;
    text-decoration: none; 
}

.open-menu, .close-menu{
    display: none;
    padding: 5px;
}

 .phidias{
        height:100px;
     }



@media( max-width: 934px ){
 
        .menu{
        flex-direction: column;
        position: fixed;
        left: 0;
        top: 50px;
        align-items: center;
        width: 100%;
        z-index: 200;
        background-color: rgb(255, 255, 255);
            height: calc(100% - 50px);
            overflow-y: auto;
            left: 100%;
            pointer-events: none;
            transition: opacity 0.3s;
            transition: left 0.3s;
            z-index: 500;
        }

        .menu li {
            padding:  15px;
            margin: 0;
        }

        .menu  a{
            color: var( --color-texto);
            line-height: 30px;
            font-weight: 900;
            font-size: 14px;
            text-decoration: none;
        }

        .menu  a:hover{
          font-weight: bold;
            line-height: 30px;
            font-size: 14px;
        }


        .open-menu{
            display: block;
            border: none;
            background: none;
            cursor: pointer;
        }

        .menu_abierto{
        opacity: 1;
        left:0;
        pointer-events:all;
        transition: left 0.3s;
        }


         .phidias{
        height:100px;
     }
}

