/*HEADER*/

.header {
	width: 100%;
	display: flex;
	justify-content: center;
}

.h_container a,
.h_container div,
.h_container ul {
	margin: 0px 60px;
}

.btn_menu a {
	color: #fff;
	transition: .5s;
}

.btn_menu a:hover {
	color: #00de9a;
	transition: .5s;
}

.h_container {
	position: relative;
	font-family: 'AbadiMTPro';
	font-size: .3rem;
	letter-spacing: 1px;
	display: flex;
	align-items: flex-end;
	z-index: 99999;
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 80%;
	/*padding: 20px;*/

}

.navbar {
	width: 80%;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.h_logo {
	width: 150px;
	height: 80px;
	text-indent: -9999px;
	background: url('../themes/images/logo.png') no-repeat;
	display: block;
	background-size: contain;
	background-position: center;
	z-index: 99;
	margin: 5px;
	transition: .5s;
}

.h_logo:hover {
	transition: .5s;
	filter: grayscale(1);
}


a {
	color: #fff;
	text-decoration: none;
}

.hamburguer {
	width: 30px;
	height: 30px;
	border-radius: 5px;
	border: 0;
	position: absolute;
	cursor: pointer;
	display: none;
}

.hamburguer:after {
	content: "";
	content: "";
	display: block;
	position: absolute;
	top: 35%;
	right: 0;
	width: 70%;
	height: 10%;
	border-radius: 5px;
	background-color: #fff;
	z-index: 11000;
}

.hamburguer:before {
	content: "";
	display: block;
	position: absolute;
	top: 55%;
	right: 0;
	width: 70%;
	height: 12%;
	border-radius: 5px;
	background-color: #fff;
}

.menu {
	list-style: none;
	display: flex;
	align-items: center;
	height: 40px;
	margin-top: 20px;

}

li {
	margin-left: 10px;

}

.menu li {
	border: 3px solid var(--color-verde);
	border-radius: 10px;
}

.menu a {
	display: block;
	text-decoration: none;
	color: #fff;
	transition: 0.5s ease;
	font-family: 'Product Sans';
	font-size: 0.8rem;
	font-style: normal;
	font-weight: 400;
	margin: 0px 1px;
}


a:hover {
	color: var(--color-verde);
}


/**************menu idioma*******************/
.menu_idioma {
	list-style: none;
	position: relative;
	margin-left: 10px;
	width: 80px;
	font-family: 'ProductSans';
	letter-spacing: 1px;
}

.menu_idioma span {
	padding: 5px 10px;
	margin-left: 0px;
	display: inline-block;
	width: 100%;
	display: flex;
	align-items: center;
	color: #fff;
	border-radius: 10px;
	margin-bottom: 2px;
	text-transform: capitalize;
	font-size: 0.8rem;
	border: 2px solid #ffffff;
}

.menu_idioma span img {
	width: 25px;
	margin-right: 10px;
}

.menu_idioma div {
	position: absolute;
	color: #fff;
	width: 100%;
	z-index: 10;
	display: none;
}

.menu_idioma div span {
	padding: 5px 10px;
	margin-left: 0px;
	display: inline-block;
	width: 100%;
	cursor: pointer;
	display: flex;
	align-items: center;
	margin: 10px 0px;
	transition: .5s;
}

.menu_idioma div span:hover {
	color: #00de9a;
	background: #fff;
}

.menu_idioma div span img {
	width: 25px;
	margin-right: 10px;
}

.menu_mobile{
	display: none;
}

/***********************************/


@media screen and (max-width: 920px) {
	.h_container {
		align-items: center;
		width: 100%;
	}

	.logo {
		background-size: 80%;
		background-position: center;
	}

	.h_logo {
		width: 120px;
		height: 70px;
	}

	.menu_idioma {
		margin-top: 10px;
	}
	.menu_mobile{
		display: block;
	}

	.menu li {
		margin: 5px;
	}

	.h_container a,
	.h_container div,
	.h_container ul {
		margin: initial;
	}

}


@media screen and (max-width: 920px) {
	.hamburguer {
		display: none;
		z-index: 9999;
		right: 20px;
	}
	.fecha {
		display: block !important;
	}
}


@media screen and (max-width: 919px) {

	.menu {
		position: fixed;
		top: 0;
		right: 0;
		height: 100vh;
		margin: 0;
		background-color: #242424;
		width: 100%;
		max-width: 200px;
		flex-direction: column;
		padding: 100px 20px;
		font-size: 0.8em;
		transition: 0.5s ease;
		z-index: 9;
		-webkit-box-shadow: -8px 9px 10px -4px rgba(0, 0, 0, 0.27);
		box-shadow: -8px 9px 10px -4px rgba(0, 0, 0, 0.27);
	}

	.menu.active {
		right: -100%;
	}

	.btn_menu {
		margin-left: 0px;
	}

	#idioma {
		margin-left: 0px;
		margin-top: 10px;
	}
}

.clear {
	clear: both;
}