*{
    margin: 0;
    padding: 0;
}
header, nav{
    display: block;
	background-color:#004a89
}

/* Definimos un ancho 100% y una altura fija para nuestro menú */
header{
	width: 100%;
	max-width:1176px;
	height: 60px;
	position: relative;
	z-index: 100;
	text-align: center;
	margin:210px auto;
	}

/* El logo sera flotado a la izquierda */
#logo{
	visibility:hidden;
	display:none;
}


 #nav-mobile-face{
    display: block;
    float: right;
    margin: 5px 50px 0px 0px;	
    width: 44px;
    height: 44px;
	visibility:visible;
	
} 


 #nav-mobile-inst{
    display: block;
    float: right;
    margin: 5px 0px 0px 0px;	
    width: 44px;
    height: 44px;
	visibility:visible;	
}

/* Nuestro nav con id #menu lo flotaremos a la derecha*/
#menu{float: left;}   

    /* Quitamos estilos por defecto de el tag UL */
    #menu ul{
        list-style: none;
    }
        
        /* Centramos y ponemos los textos en mayuscula */
        #menu li{
           display: block;
           float: left;
           text-align: center;
        }
            
            /* Damos estilo a nuestros enlaces */
            #menu li a{
                display: block;
                color: #fff;
                text-decoration: none;
                height: 60px;
                line-height: 60px;
                padding: 0px;
            }
            #menu li a:hover{
                background: #01356f;
                color: #ffc700;
            }
    
    /* Estilos #nav-mobile y lo ocultamos */
    #nav-mobile{
        display: none;
        background: url(nav.png) no-repeat center center;
        float: right;
        width: 60px;
        height: 60px;
        position: absolute;
        right: 0;
        top:0;
        opacity: .6;
    }   
        /* Agregaremos esta clase a #nav-mobile, cuando el menu mobile haya sido desplegado */
        #nav-mobile.nav-active{
            opacity: 1;
        }

/* Content */
#content{
    width: 100%;
    margin: 0px;
    text-align: center;
    overflow: hidden;
}

/*
    MEDIA QUERY
*/

@media only screen and (min-width: 1179px) and (max-width: 2800px) {
	 #nav-mobile-face{ display: none; }
	#nav-mobile-inst{ display: none; }

}

@media screen and (max-width: 1179px) {
 #logo{
    display: block;
    float: left;
    margin: 0px 0px 0;
    width: 60px;
    height: 58px;
	visibility:visible;	
}       
    h2{font-size: 40px;}
    
    /* mostramos #nav-mobile */
    #nav-mobile{ display: block; }
	
	

    /* Fijamos nuestro nav en 100% ancho y dejamos de flotarlo  */
    #menu{
        width: 100%;
        float: none;
        padding-top: 60px;
    }
        /* Convertimos nuestra lista de enlaces en un menú horizontal */
        #menu ul{
            -webkit-box-shadow: 0 1px 2px rgba(0,0,0,.5);
            -moz-box-shadow: 0 1px 2px rgba(0,0,0,.5);
            box-shadow: 0 1px 2px rgba(0,0,0,.5);
            max-height: 0;
            overflow: hidden;
        }
            /* estilos para los LI del menu */
            #menu li{
                border-bottom: 0px solid #282b30;
                float: none;
            }

            /* Quitamos el borde del ultimo item del menú */
            #menu li:last-child{ border-bottom: 0;}
                #menu li a{
                    padding: 0px 0;
                    height: auto;
                    line-height: normal;
                }
                #menu li a:hover{background:#333663b}

        /* Agregamos una animación al despligue del menú */
        #menu ul.open-menu{
            max-height: 558px;
            -webkit-transition: max-height .4s;
            -moz-transition: max-height .4s;
            -ms-transition: max-height .4s;
            -o-transition: max-height .4s;
            transition: max-height .4s;
        }
header{
	margin:0px auto;
	}