* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

.header{
	background: rgba(0,0,0,0);
	position: fixed;
	width: 100%;
	top: 0;
	z-index:301;

	-webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.header2{
	background: #ff7a00;
	position: fixed;
	width: 100%;
	top: 0;
	z-index:301;
	border-bottom: solid 1px #ff7a00;

	-webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.menu{
	width: 96%;
	margin: auto;
}

.opciones {
	width: 100%;
	display: block;
	background: transparent;
	cursor: pointer;
}

.logo{
	display: block;
}

.btn-menu{
	display: none;
	color: #fff;
	text-decoration: none;
	
	font-size: 12pt;
	font-family: NunitoSans-SemiBold, sans-serif;

	padding: 15px;
}

/*========================*/
.menu .enlaces{
	display: inline-block;
}

.menu .enlaces a{
	color: #ffffff;
	text-decoration: none;
	padding: 1em;
	padding-top: 20px;
	padding-bottom: 20px;
	text-align: center;

	font-size: 11pt;
	font-family: NunitoSans-ExtraBold, sans-serif;	
}

.menu .enlaces a:hover{
	background: #f2f2f2;
	color: #ff7a00;
}

#logo_didac:hover{
	background: transparent;
}

/************************/
.menu .enlaces_right{
	display: inline-block;
}

.menu .enlaces_right a{
	color: #ffffff;
	text-decoration: none;
	/*display: inline-block;*/
	padding: 1em;
	padding-top: 20px;
	padding-bottom: 20px;
	text-align: center;

	font-size: 11pt;
	font-family: NunitoSans-ExtraBold, sans-serif;	
}

.menu .enlaces_right a:hover{
	background: #f2f2f2;
	color: #ff7a00;
}
/*----------------------*/

.menu .enlaces2{
	display: inline-block;
}

.menu .enlaces2 a{
	color: #fff;
	text-decoration: none;
	padding: 1em;
	padding-top: 20px;
	padding-bottom: 20px;
	text-align: center;

	font-size: 11pt;
	font-family: NunitoSans-ExtraBold, sans-serif;
}

.menu .enlaces2 a:hover{
	background: #f2f2f2;
	color: #444;
}
/*========================*/

#lkbregistro {
	background: #6633cc;
	margin-top: 12px;
	padding-top: 7px;
	padding-bottom: 7px;
	border: solid 2px #ffffff;
	color: #ffffff;
	float: right;
}

@media screen and (max-width: 700px) {
	.header{
		background: rgba(0,0,0,0);
		width: 100%;
		top: 0;
		z-index:301;

		-webkit-transition: all 0.5s ease;
    	-moz-transition: all 0.5s ease;
    	-ms-transition: all 0.5s ease;
    	-o-transition: all 0.5s ease;
    	transition: all 0.5s ease;
	}

	.menu{
		width: 100%;
		margin: auto;
	}

	.opciones {
		width: 100%;
		display: flex; flex-wrap: wrap; justify-content: space-around; align-items: center;
		background: #f7f7f7;
	}

	.btn-menu{
		display: block;
		cursor: pointer;
	}

	.menu .enlaces a{
		width: 100%;

		color: #6633cc;
		text-decoration: none;
		padding: 1em;
		padding-top: 20px;
		padding-bottom: 20px;
		text-align: center;

		font-size: 11pt;
		font-family: NunitoSans-ExtraBold, sans-serif;
	}
}