/*Header*/
header {
	background-color: #f4992e;
	font-size: 16px;	
}

header .inner-header {
	position: relative;
	display: flex;
	margin: 0 auto;
	justify-content: flex-end;
	align-items: center;
	flex-direction: column;
	padding: 15px 0 0;
}

header nav {
	display: none;
	width: 100%;
}

header nav li a {
	color: white;
}

header nav li a:hover {
	color: #efecec;
}

header nav li {
	font-family: 'Roboto Condensed', sans-serif;
	font-size: 1em;
	font-weight: 700;
	display: inline-block;
	padding: 5px 0;
	width: 100%;
	border-top: 1px solid white;
	text-align: center;
}

header nav li:first-child {
	font-family: 'daysregular';
	font-size: 1.4em;
}

header nav li:first-child > a{
	color:#019934;
	text-shadow: rgb(255, 255, 255) 1px 0px 0px, rgb(255, 255, 255) 0.540302px 0.841471px 0px, rgb(255, 255, 255) -0.416147px 0.909297px 0px, rgb(255, 255, 255) -0.989992px 0.14112px 0px, rgb(255, 255, 255) -0.653644px -0.756802px 0px, rgb(255, 255, 255) 0.283662px -0.958924px 0px, rgb(255, 255, 255) 0.96017px -0.279415px 0px;
}

/*header nav li:last-child {
	font-family: 'daysregular';
	font-size: 1.4em;
}*/

.menu-mobile {
	align-self: flex-end;
	width: 35px;
	margin: 10px 10px 15px 0;
}

.redes-sociales{
	position: absolute;
    top: 178px;
    left: 10px;
}

.redes-sociales a {
	margin-left: 7px;
}

.redes-sociales img {
	width: 40px;
}

.header-logo {
	width: 160px;
}

@media (min-width: 768px) {
	header .inner-header {
		max-width: 720px;
	}

	.menu-mobile {
		display: none;
	}

	.header-logo {
		z-index: 999;
	}

	header nav {
		display: block !important;
		width: inherit;
	}

	header nav li {
		border: 0;
		width: inherit;
		margin: 0 10px;
	}

	.redes-sociales {
		top: 15px;
    	right: 10px;
    	left: inherit;
	}

}

@media (min-width: 992px) {
	
	header .inner-header {
		max-width: 960px;
		flex-direction: row;
		padding: 30px 0;
	}

	header nav li {
		margin: 0 12px;
	}

	.redes-sociales {
		position: static;
	}

	.header-logo {
		position: absolute;
		top: 10px;
		left: 0;
		width: 155px;
	}
}

@media (min-width: 1200px) {

	header {
		font-size: 20px;
	}

	header .inner-header{
		max-width: 1140px;
	}

}

@media (min-width: 1550px) {

	header .inner-header {
		max-width: 1500px;
	}

	header nav li {
		margin: 0 30px;
	}

	.header-logo {
		width: 170px;
	}

	.redes-sociales img {
		width: 70px;
	}

}
/*End Header*/