
	#header {
		background: #444;
		color: #bbb;
		cursor: default;
		height: 3.25em;
		left: 0;
		line-height: 3.25em;
		position: fixed;
		top: 3em;
		width: 100%;
		z-index: 10000;
	}

		#header .container {
			position: relative;
		}

        #header .logo {
            position: absolute;
            top: -1em;
            width: 8em;
            left: 0;
            border-bottom: none;
			z-index: 10001;
			height: 7em;
        }

            #header .logo img{
                width: 100%;
            }

        #header nav {
			display: none;
		}

        #header ul {
            position: absolute;
            right: 2.5em;
            top: 3em;
			margin: 0;
        }

            #header ul li {
                display: inline-block;
                text-transform: uppercase;
            }

            #header ul li a {
                color: #ffffff;
                border-bottom-color: transparent;
                font-weight: 300;
                margin-right: 1.5em;
            }

                #header ul li a:hover {
                    color: var(--color-amarillo);
                }

            #header ul li:last-child a {
                color: var(--color-amarillo);
            }

                #header ul li:last-child a:hover {
                    color: #ffffff;
                }

		#header .button {
			position: absolute;
			top: 1em;
			right: 0.5em;
			width: initial;
			width: fit-content;
			width: -moz-fit-content;
		}

/* Nav */

	#page-wrapper {
		-moz-backface-visibility: hidden;
		-webkit-backface-visibility: hidden;
		-ms-backface-visibility: hidden;
		backface-visibility: hidden;
		-moz-transition: -moz-transform 0.5s ease;
		-webkit-transition: -webkit-transform 0.5s ease;
		-ms-transition: -ms-transform 0.5s ease;
		transition: transform 0.5s ease;
		padding-bottom: 1px;
	}

	#navButton {
		-moz-backface-visibility: hidden;
		-webkit-backface-visibility: hidden;
		-ms-backface-visibility: hidden;
		backface-visibility: hidden;
		-moz-transition: -moz-transform 0.5s ease;
		-webkit-transition: -webkit-transform 0.5s ease;
		-ms-transition: -ms-transform 0.5s ease;
		transition: transform 0.5s ease;
		display: block;
		position: absolute;
		top: 3em;
		right: 0;
		width: 3.5em;
		height: 3.5em;
		z-index: 10001;
	}

        #navButton .toggle {
            position: absolute;
            text-decoration: none;
            width: 100%;
            height: 100%;
            top: 0;
            right: 0;
            border: 0;
            outline: 0;
        }

			#navButton .toggle:before {
				-moz-osx-font-smoothing: grayscale;
				-webkit-font-smoothing: antialiased;
				display: inline-block;
				font-style: normal;
				font-variant: normal;
				text-rendering: auto;
				line-height: 1;
				text-transform: none !important;
				font-family: 'Font Awesome 5 Free';
				font-weight: 900;
			}

			#navButton .toggle:before {
				color: #ffffff;
                opacity: 0.6;
				content: '\f0c9';
				display: block;
				font-size: 2em;
				top: 0;
				right: 0;
				line-height: 1.75em;
				position: absolute;
				text-align: center;
				width: 1.75em;
			}

            #navButton:hover .toggle:before {
                opacity: 1;
            }

		#navPanel {
			-moz-backface-visibility: hidden;
			-webkit-backface-visibility: hidden;
			-ms-backface-visibility: hidden;
			backface-visibility: hidden;
			-moz-transform: translateX(275px);
			-webkit-transform: translateX(275px);
			-ms-transform: translateX(275px);
			transform: translateX(275px);
			-moz-transition: -moz-transform 0.5s ease;
			-webkit-transition: -webkit-transform 0.5s ease;
			-ms-transition: -ms-transform 0.5s ease;
			transition: transform 0.5s ease;
			display: block;
			height: 100%;
			right: 0;
			overflow-y: auto;
			position: fixed;
			top: 0;
			width: 275px;
			z-index: 10002;
			background: var(--color-negro);
			color: #ffffff;
		}

			#navPanel .link {
				border-bottom: 0;
				border-top: solid 1px rgba(255, 255, 255, 0.05);
				color: #bbb;
				display: block;
				height: 44px;
				line-height: 44px;
				padding: 0 1em 0 1em;
				text-decoration: none;
			}

					#navPanel .link:first-child {
						border-top: 0;
					}

					#navPanel .link.depth-0 {
						color: #fff;
					}

					#navPanel .link .indent-1 {
						display: inline-block;
						width: 1em;
					}

					#navPanel .link .indent-2 {
						display: inline-block;
						width: 2em;
					}

					#navPanel .link .indent-3 {
						display: inline-block;
						width: 3em;
					}

					#navPanel .link .indent-4 {
						display: inline-block;
						width: 4em;
					}

					#navPanel .link .indent-5 {
						display: inline-block;
						width: 5em;
					}

			body.navPanel-visible #page-wrapper {
				-moz-transform: translateX(-275px);
				-webkit-transform: translateX(-275px);
				-ms-transform: translateX(-275px);
				transform: translateX(-275px);
			}

			body.navPanel-visible #navPanel {
				-moz-transform: translateX(0);
				-webkit-transform: translateX(0);
				-ms-transform: translateX(0);
				transform: translateX(0);
			}

		#header .container {
			position: relative;
		}

			#header .container h1 {
				left: 0;
			}

			#header .container nav {
				right: 0;
			}

		#header.reveal {
			-moz-animation: reveal-header 0.5s;
			-webkit-animation: reveal-header 0.5s;
			-ms-animation: reveal-header 0.5s;
			animation: reveal-header 0.5s;
		}

		#header.alt {
			-moz-animation: none;
			-webkit-animation: none;
			-ms-animation: none;
			animation: none;
			background: none;
			color: rgba(255, 255, 255, 0.75);
			position: absolute;
		}

	@media screen and (max-width: 480px) {
		
			#header ul li {
				display: none;
			}

			#header ul li:last-child {
				display: block;
			}

		#header .logo {
            width: 8em;
			height: 5.6em;
        }
	}