
html, body {
  overflow-x: hidden;
  background-color: rgb(255, 255, 255);
}

body {
	margin: 0;
	padding: 0;
	position: relative;
	/* background: url(../imagenes/secciones_5.jpg) no-repeat fixed center top; */
	/* background-image: url("../imagenes/bg_hdy.png"); */
	font-family: 'Questrial', sans-serif;
}

header {
	width: 100%;
	position: fixed;
	z-index: 100;
	font-family: 'Rajdhani', sans-serif;

	background-color:
	/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#2ddfe5+0,27a1d1+23,7420c9+90,7f36d8+100 */
background: #2ddfe5; /* Old browsers */
background: -moz-linear-gradient(left, #2ddfe5 0%, #27a1d1 23%, #7420c9 90%, #7f36d8 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(left, #2ddfe5 0%,#27a1d1 23%,#7420c9 90%,#7f36d8 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to right, #2ddfe5 0%,#27a1d1 23%,#7420c9 90%,#7f36d8 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#2ddfe5', endColorstr='#7f36d8',GradientType=1 ); /* IE6-9 */
	;
}

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

header nav {
	display: none;
}

.menu {
	padding-left: 0;
	margin-top: 0;
	margin-bottom: 0;
	list-style: none;
	/* background-color: #0033a1; */
}

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

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

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

.menu li:first-child a:hover{
	transform: translateY(0px);
}

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

	transition: .2s ease all;
	line-height: 4;
}

.menu li a:hover {
	color: #ffffff;

	transform: translateY(-8px);
}

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

header .contenedor .menu_bar .bt-menu {
	display: block;
	padding: 20px;
	background: #1852ce;
	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(139, 116, 116, 0.3);
	}

	.menu li:first-child {
		display: block;
	}
}
@media screen and (min-width: 768px) {

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

}

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

	header .contenedor .menu_bar {
		display: none;
	}

}