@import url('https://fonts.googleapis.com/css?family=Raleway|Roboto+Condensed');
@import url(logos_clientes.css);

html, body {
  overflow-x: hidden;
}

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

/* INICIO MENU PRINCIPAL */
header nav {
	display: none;
}

.menu_principal {
	margin-top: 76px;
	margin: 0;
	padding: 0;
	list-style: none;
	background: #E2E2E2;
}

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

.menu_principal li a {
	color: #000;
	text-decoration: none;
	line-height: 3;
	display: block;
	padding-left: .7em;
	font-size: 1.2em;
}

.menu_principal li a:hover {
	color: #0B3861;
	/*box-shadow: 0px 2px 0px #8E2008 inset;*/
	
	/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#000000+0,000000+100&0.1+0,0+100;Neutral+Density */
background: -moz-linear-gradient(top,  rgba(0,0,0,0.1) 0%, rgba(0,0,0,0) 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(top,  rgba(0,0,0,0.1) 0%,rgba(0,0,0,0) 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to bottom,  rgba(0,0,0,0.1) 0%,rgba(0,0,0,0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1a000000', endColorstr='#00000000',GradientType=0 ); /* IE6-9 */

}

.menu_bar {
	display: block;
	margin-top: 76px;
	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;

}
/* FIN MENU PRINCIPAL */

/* MEDIA QUERYS */

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

	.contenedor {
		width: 100%;
	}

	header nav {
		display: block;
	}

	.menu_bar {
		display: none;
	}

	.menu_principal {
		display: flex;
		margin-top: 76px;
		background: transparent;
	}

	.menu_principal li {
		flex: auto;
		text-align: center;
		border-bottom: 0;
	}
	.menu_principal li a {
		padding-left: 0;
		line-height: 3.9;
		color: #fff;
	}

	.menu_principal li a:hover {
		color: #A9E2F3;
	}

}

@media (min-width: 1128px) {

	.contenedor {
		width: 1128px;
	}

	header nav {
		display: block;
	}

	.menu_bar {
		display: none;
	}

	.menu_principal {
		display: flex;
		margin-top: 76px;
		background: transparent;
	}

	.menu_principal li a {
		line-height: 3.9;
		color: #fff;
	}

	.menu_principal li a:hover {
		color: #A9E2F3;
	}

}