* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

.header{
	background: #fff;
	position: fixed;
	width: 100%;
	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: #fff;
	position: fixed;
	width: 100%;
	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: 94%;
	margin: auto;
}

.opciones {
	width: 100%;
	display: flex; flex-wrap: wrap; justify-content: space-around; align-items: center;
}

.btn-menu{
	display: none;
	color: #fff;
	text-decoration: none;
	
	font-size: 12pt;
	font-family: NunitoSans-SemiBold, sans-serif;

	padding: 15px;
}

/*========================*/

.enlaces {
	width: 100%;
	height: 80px;
	display: flex; flex-wrap: wrap; justify-content: space-around; align-items: center;
}

.enlaces a{
	color: #BA68C8;
	text-decoration: none;
	text-align: center;
	
	padding: 5px;
	box-sizing: border-box;

	font-size: 11pt;
	font-family: NunitoSans-ExtraBold, sans-serif;	
}

.enlaces a:hover{
	color: #34abb7;
	cursor: pointer;
}

.enlaces2 {
	width: 100%;
	height: 80px;
	display: flex; flex-wrap: wrap; justify-content: space-around; align-items: center;
}

.enlaces2 a{
	color: #BA68C8;
	text-decoration: none;
	text-align: center;

	padding: 5px;
	box-sizing: border-box;

	font-size: 11pt;
	font-family: NunitoSans-ExtraBold, sans-serif;
}

.enlaces2 a:hover{
	color: #56c4cf;
	cursor: pointer;
}

/*========================*/

@media screen and (max-width: 950px) {
	.header{
		background: rgba(0,0,0,0);
		width: 100%;
		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%;
		background: #000000;
	}

	.opciones {
		width: 100%;
		display: flex; flex-wrap: wrap; justify-content: space-around; align-items: center;
		background: #f7f7f7;
	}

	.btn-menu{
		display: block;
		cursor: pointer;
	}

	.enlaces {
		width: 100%;
		height: auto;
		display: flex; flex-wrap: wrap; justify-content: space-around; align-items: center;
	}

	.enlaces a{
		width: 100%;
		color: #56c4cf;
		text-decoration: none;
		text-align: center;

		font-size: 11pt;
		font-family: NunitoSans-ExtraBold, sans-serif;
	}

	.enlaces a:hover{
		color: #34abb7;
		cursor: pointer;
	}
}