/*HEADER*/

.menu_mobile{
	display: none;
}
.btn_menu {
	background-color: #fa134d;
	border-radius: 20px;
	margin-left: 30px;
	transition: .5s;
}

.btn_menu a {
	color: #000;
	transition: .5s;
}

.btn_menu a:hover {
	color: #000 !important;
	transition: .5s;
}

.btn_menu:hover {
	background-color: #fff;
	border-radius: 10px;
	transition: .5s;
}


.h_container {
	position: relative;
	background: #fff;
}

.navbar {
	margin: 0 auto;
	display: flex;
	align-items: center;
	/* padding: 0 20px; */
}

.h_logo {
	width: 200px;
	height: 70px;
	text-indent: -9999px;
	display: block;
	background: url('../themes/images/logo.png') no-repeat;
	background-size: contain;
	background-position: center;
	z-index: 9999;
	margin: 5px;

}

a {
	color: #fff;
	text-decoration: none;
}

.hamburguer {
	width: 30px;
	height: 30px;
	border-radius: 5px;
	border: 0;
	position: relative;
	cursor: pointer;
	display: none;
}

.hamburguer:after {
	content: "";
	content: "";
	display: block;
	position: absolute;
	top: 35%;
	left: 15%;
	width: 70%;
	height: 10%;
	border-radius: 5px;
	background-color: #000;
}

.hamburguer:before {
	content: "";
	display: block;
	position: absolute;
	top: 55%;
	left: 15%;
	width: 70%;
	height: 10%;
	border-radius: 5px;
	background-color: #000;
}

.menu {
	list-style: none;
	display: flex;
	align-items: center;
	margin: 0;
}

li {
	margin-left: 10px;

}

.menu a {
	display: block;
	padding: 3px 20px;
	text-decoration: none;
	color: #000;
	transition: 0.5s ease;
}


a:hover {
	color: #f0c300;
}

@media screen and (max-width: 650px) {
	.logo {
		background-size: 80%;
		background-position: center;
	}

	.h_logo {
		width: 120px;
		height: 70px;
	}
	.menu_idioma {
		margin-top: 10px;
	}
	.menu_mobile{
		display: block;
	}

}


@media screen and (max-width: 650px) {
	.hamburguer {
		display: block;
		z-index: 9999;
	}

	.navbar {
		justify-content: space-between;
	}

	.fecha {
		display: block !important;
	}
}


@media screen and (max-width: 648px) {

	.menu {
		position: fixed;
		top: 0;
		right: 0;
		height: 100vh;
		margin: 0;
		background-color: #fff;
		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;
	}

	.form-banner{
		margin-top: 100px;
	}
	
}

.clear {
	clear: both;
}