@import url('https://fonts.googleapis.com/css?family=Titillium+Web:300,400,600,700');
body,html{width:100%;height:100%;font-family: 'Titillium Web', sans-serif; font-weight:400;}

*{padding:0;outline:0}

iframe{display:block;border:none}

*{
    margin: 0;
    padding: 0;
}

header, nav{
    display: block;
}

/* Definimos un ancho 100% y una altura fija para nuestro menú */
header{position: absolute;
    background: rgba(18,23,29,1);
    height:60px;
    width: 100%;
    z-index: 2
}

/* El logo sera flotado a la izquierda */
#logosh{
    background: url(logo.png) no-repeat 0 0;
    display: block;
    float: left;
	margin-left:20px;
	margin-top:5px;
    width: 210px;
    height: 50px;
    text-indent: -9999px
}

/* Nuestro nav con id #menu lo flotaremos a la derecha*/
#menu{float: right;
font-family: normal;font-family: 'Titillium Web', sans-serif;
}   

    /* Quitamos estilos por defecto de el tag UL */
    #menu ul{
        list-style: none;
        font-size: 16px;
    }
        
        /* Centramos y ponemos los textos en mayuscula */
        #menu li{
           display: block;
           float: left;
           text-transform: uppercase;
           text-align: center;
        }
            
            /* Damos estilo a nuestros enlaces */
            #menu li a{
                display: block;
                color: #000000;
                text-decoration: none;
                height: 60px;
                line-height: 60px;
                padding: 0 26px;
            }
            #menu li a:hover{
                background:rgba(18,23,29,0.7);
                color: #ffffff;
            }
    
    /* Estilos #nav-mobile y lo ocultamos */
    #nav-mobile{
        display: none;
        background: url(nav.png) no-repeat center center;
        float: right;
        width: 40px;
        height: 40px;
        position: absolute;
        right: 0;
        top:12px;
        opacity: 1;

    }   
        /* Agregaremos esta clase a #nav-mobile, cuando el menu mobile haya sido desplegado */
        #nav-mobile.nav-active{
            opacity:.6;
        }



@media only screen and (max-width: 3000px) {
        
    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{
                background: rgba(34,38,42,0.8);
                border-bottom: 1px solid #ffffff;
                float: none;
            }

            /* Quitamos el borde del ultimo item del menú */
            #menu li:last-child{ border-bottom: 0;}
                #menu li a{
                    padding: 15px 0;
                    height: auto;
                    line-height: normal;color:#ffffff;
                }
                #menu li a:hover{background:rgba(34,38,42,0.8); color:#eb5c05;}

        /* Agregamos una animación al despligue del menú */
        #menu ul.open-menu{
            max-height: 3000px;
            -webkit-transition: max-height 1s;
            -moz-transition: max-height 1s;
            -ms-transition: max-height 1s;
            -o-transition: max-height 1s;
            transition: max-height 1s;
        }
}


