﻿body {
    background: #ddd;
    /*font-family: 'Raleway', sans-serif;*/
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif'Open sans';
}

/*MENU*/

.menu {
    list-style: none;
    line-height: 25px;
    /*margin: 2em auto;*/
    /*outline: 1px solid red;*/
    padding-left: 0;
    width: 18em;
}

    .menu a {
        color: #ddd;
        display: block;
        text-decoration: none;
        text-transform: uppercase;
        width: 100%;
    }

        .menu a:hover {
            margin-left: 1em;
            -webkit-transition: all .4s;
            -o-transition: all .4s;
            transition: all .4s;
        }

    .menu li {
        box-shadow: 3px 0 rgb(19, 86, 137) inset;
        /*border-left: 3px solid rgba(255,255,255,.2); Se coloca este o el shadow*/
        margin-bottom: 5px;
        padding-left: 1.5em;
        /*outline: 1px solid green;*/
        -webkit-transition: all .4s;
        -o-transition: all .4s;
        transition: all .4s;
    }

        .menu li:hover {
            box-shadow: 18em 0 rgb(19, 86, 137) inset;
        }

        .menu li ul {
            display: none;
        }

        .menu li:hover > ul {
            display: block;           
        }

/*FIN MENU*/

/*POSICION RESPONSIVE MENU*/

nav {
    background: rgba(0,0,0,.8);
    box-sizing: border-box;
    left: -18em;
    height: 100%;
    padding-right: .30em;
    padding-top: 3em;
    position: absolute;
    top: 0;
    transition: all .3s;
    z-index: 20;
}

    nav.mostrar {
        left: 0;
    }

#mostrar-nav {
    cursor: pointer;
    left: .5em;
    position: absolute;
    top: 3.7em;
    z-index: 30;
}

#Footer {
    text-align: center;
}