@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: #c9ad7e; */
	/* background-color: #dabf55; */
	background-color: #f3d044;
	position: fixed;
	z-index: 100;
	/* font-family: 'IBM Plex Sans Condensed', sans-serif; */
	font-family: "New Rocker", system-ui;
}

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

header nav {
	display: none;
}

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

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

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

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

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

.menu li a:hover {
	color: rgb(65, 62, 237);
}

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

header .contenedor .menu_bar .bt-menu {
	display: block;
	padding: 20px;
	background-color: #f3d044;
	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;

}

.space_top {
	height: 60px;
	width: 100%;
}

@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: 7;
	}

	.space_top {
		height: 75px;
		width: 100%;
	}

}

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

	header .contenedor .menu_bar {
		display: none;
	}

}