@import url('https://fonts.googleapis.com/css?family=Barlow:300|IBM+Plex+Sans+Condensed');
/*font-family: 'IBM Plex Sans Condensed', sans-serif;
font-family: 'Barlow', sans-serif;*/

html, body {
  overflow-x: hidden;
}

body {
	margin: 0;
	padding: 0;
	position: relative;
	font-family: 'Barlow', sans-serif;
}

header {
	width: 100%;
	background-color: #406098;
	/*position: fixed;
	z-index: 100;*/
	font-family: 'IBM Plex Sans Condensed', sans-serif;
}

.contenedor {
	width: 100%;
	margin: auto;
}

header nav {
	display: none;
}

.menu {
	padding-left: 0;
	margin-top: 0;
	margin-bottom: 0;
	list-style: none;
	background-color: #406098;
}

.menu li {
	border-bottom: 1px solid rgba(255,255,255,.3);
}

.menu li a img {
	height: 50px;
}

/*FIRST CHILD
.menu li:first-child {
	padding: 10px;
	padding-top: 17px;
	height: 50px;
}*/

.menu li a {
	color: #eee;
	text-decoration: none;
	line-height: 4;
	display: block;
	padding-left: .7em;
	font-size: 1em;

	border-right: 1px solid rgba(255,255,255,.3);
}

.menu li a:hover {
	color: #e6e6e6;
	background-color: #193058;
}

header .contenedor .menu_bar {
	display: block;
	width: 100%;
	background: #ccc;
}

header .contenedor .menu_bar .bt-menu {
	display: block;
	padding: 20px;
	background: black;
	color: #fff;
	text-decoration: none;
	font-weight: bold;
	font-size: 1em;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.menu_bar span {
	float: right;
	font-size: 22px;

}

@media screen and (min-width: 600px) {

	header .contenedor .menu_bar {
		display: block;
	}

	header {
		border-bottom: 1px solid rgba(255,255,255,.3);
	}
}
@media screen and (min-width: 768px) {

	.contenedor {
		width: 100%;
	}

	header nav {
		display: block;
	}

	header .contenedor .menu_bar {
		display: none;
	}

	.menu {
		display: flex;
	}

	.menu li {
		flex: auto;
		text-align: center;
		border-bottom: 0;
	}
	.menu li a {
		padding-left: 0;
		line-height: 3;
	}

}

@media (min-width: 1280px) {
	.contenedor {
		width: 1280px;
	}
	header nav {
		display: block;
	}

	header .contenedor .menu_bar {
		display: none;
	}

}