header.static:before{
	width: 100%;
	height: 50px; 
	background: #4d4e4e;
	content: "";
	display: block;
}
header{
	width: 100%;
	background: white;
	z-index: 100;
	border-bottom: 1px solid #c7c7c7;
	/*border-bottom: 1px solid red;*/
}
	#header{
		width: 1500px;
		margin: auto;
		padding: 20px 0px 20px;
		display: flex;
	}
		#header>a{
			margin: auto;
			display: block;
			margin-left: 0px;
		}
			#header>a>img{
				height: 40px;
				filter: invert(1);
				max-width: calc(100% - 10px);
			}
		#header>nav{
			margin: auto;
		}
			#header>nav ul{
				list-style: none;
				width: 500px;
				/*background: red;*/
				display: flex;
			}
				#header>nav ul li{
					margin: auto;
				}
					#header>nav ul li a{
						display: block;
						font-family: gothamrounded-book;
						text-decoration: none;
						color: #828181;
					}
					#header>nav ul li:last-child{
						display: none;
					}
					#header>nav ul li a[href="#cerrar"]{
						background: rgba(0,0,0,0.1)
					}
		#header>div.social-media-rwd{
			display: none;
		}
		#header>div.social-media{
			margin: auto;
		}
			#header>div.social-media>a{
				margin-left: 10px;
			}
			#header>div.social-media>a>img{
				width: 30px;
				filter:invert(1);
			}
		#header>div#rwdButton{
			width: 40px;
			height: 40px;
			position: relative;
			margin: auto;
			cursor: pointer;
			display: none;
		}
			#header>div#rwdButton>figure{
				width: 100%;
				height: 10px;
				background: black;
				position: absolute;
				left: 0px;
			}
				#header>div#rwdButton>figure:nth-child(1){
					top: 0px;
				}
				#header>div#rwdButton>figure:nth-child(2){
					top: 50%;
					margin-top: -5px;
				}
				#header>div#rwdButton>figure:nth-child(3){
					bottom: 0px;
				}