
html, body {
  overflow-x: hidden;
}

body {
	margin: 0;
	padding: 0;
	position: relative;
	font-family: 'Roboto Condensed', sans-serif;
	/* background: url(../imagenes/bg_1.jpg) no-repeat fixed center top; */
}

#espacio {
	width: 100%;
	height: 91px;
}

header {
	width: 100%;
	background-color: rgb(0, 0, 0);
	position: fixed;
	z-index: 100;
	font-family: 'Noto Serif Display', serif;
}

.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: 80px;
}

/* MODIFICAR LAS CARXACTERÏSTICAS DEL LOGO
.menu li:first-child {
	padding: 5px;
	padding-top: 10px;
	height: 50px;
}  */

.menu li a {
	color: rgb(255, 255, 255);
	text-decoration: none;
	line-height: 4;
	display: block;
	padding-left: .7em;
	font-size: 1.1em;

	transition: .2s ease all;
}

.menu li a:hover {
	color: rgb(208, 211, 212);

	transform: translateY(-8px);
}

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;

}

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

.space_top2 {
	height: 64px;
	width: 100%;
}

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

	header .contenedor .menu_bar {
		display: block;
	}
}
@media screen and (min-width: 768px) {

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

	.space_top2 {
		height: 84px;
		width: 100%;
	}

	.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: 5;
	}

}

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

	header .contenedor .menu_bar {
		display: none;
	}

}