@import url('https://fonts.googleapis.com/css?family=Raleway|Roboto+Condensed');
/*font-family: 'Roboto Condensed', sans-serif;
font-family: 'Raleway', sans-serif;*/

html, body {
  overflow-x: hidden;
}

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

header {
	width: 100%;
	background-color: #0d71d6;
	position: fixed;
	z-index: 100;
	font-family: 'Raleway', 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: #000;
}

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

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

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

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

.menu li a:hover {
	color: rgb(149, 148, 185);
}

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: 65px;
	width: 100%;
}
/*MEDIA QUERYS*/
@media screen and (min-width: 600px) {

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

	.menu {
		background-color: #0d71d6;
	}
	header .contenedor .menu_bar {
		display: block;
	}

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

	.menu li a:hover {
		color: rgb(14, 10, 114);
	}

	.space_top {
		height: 140px;
		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: 8;
	}

}

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

	header .contenedor .menu_bar {
		display: none;
	}

}