@font-face {
    font-family: "Roboto";
    src: url("../FONTS/RobotoFlex-VariableFont_GRAD,XOPQ,XTRA,YOPQ,YTAS,YTDE,YTFI,YTLC,YTUC,opsz,slnt,wdth,wght.ttf")
        format("truetype");
    font-weight: 100;
    font-style: normal;
}

.MenuDesplegable {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    background-color: #808285;
    height: 100%;
    z-index: 4;
    transition: width 0.25s ease-in-out, opacity 0.25s ease-in-out;
    opacity: 0;
    font-family: "Roboto", sans-serif;
    visibility: hidden;
}
.MenuDesplegable ul {
    list-style-type: none;
    padding: 0;
    width: 80%;
    margin: 15% 10% 0% 10%;
    height: 85%;
}
.MenuDesplegable ul li {
    margin: 10% 0;
    font-size: 3vw;
}
.MenuDesplegable ul li:hover {
    transform: scale(1.1);
    transition: transform 0.3s ease-in-out;
    border-bottom: 1px solid white;
}
.MenuDesplegable ul li a {
    text-decoration: none;
    color: #f7931d;
    font-weight: 800;
}
.MenuDesplegable ul li a:hover {
    color: white;
    transition: color 0.3s ease-in-out;
}
.MenuDesplegable ul li a::before {
    content: "» ";
}
.menu-activo {
    rotate: 90deg;
    transition: all 0.3s ease-in-out;
}
.menu-inactivo {
    rotate: 0deg;
    transition: all 0.3s ease-in-out;
}
.activoMD {
    width: 28%;
    opacity: 1;
    visibility: visible !important;
    transition: width 0.25s ease-in-out, opacity 0.25s ease-in-out;
}
#btn-cerrar {
    visibility: hidden;
    position: relative;
    top: 3.5%;
    left: 6%;
    width: 7vw;
    height: auto;
    cursor: pointer;
}
@media screen and (max-width: 600px) {
    .activoMD {
        width: 95%;
    }
    #btn-cerrar {
        top: 11%;
        left: 10%;
        width: 17vw;
    }
    .MenuDesplegable ul {
        margin: 30% 10% 0% 10%;
        height: 70%;
    }
    .MenuDesplegable ul li {
        font-size: 10vw;
    }
}
