/* MENU */
.header{
	background-color: #303030;
	height: 80px;
	position: fixed;
	width: 100%;
	top: 0;
	left: 0;
	font-family: 'Rubik', sans-serif;
}
.nav{
	display: flex;
	justify-content: space-between;
	max-width: 992px;
	margin: 0 auto;
}
.nav-link{
	color: white;
	text-decoration: none;
}
.logo{
	font-size: 20px;
	font-weight: bold;
	padding: 0 40px;
	line-height: 80px;
}
.nav-menu{
	display: flex;
	margin-right: 40px;
	list-style:none;
}
.nav-item{
	font-size: 20px;
	margin: 0 10px;
	line-height: 80px;
	text-transform: uppercase;
	width: max-content;
	font-family: 'Rubik', sans-serif;
}
.nav-menu-link{
	padding: 8px 12px;
	border-radius: 5px;
}
.nav-menu-link:hover{
	background-color: #000000;
	transition: 1s;
}

/*Botones*/
.cont-botones{
	width: 100%;
	margin-top: 2%;
	text-align: center;
}
.cont-botones .a{
	text-decoration: none;
	color: black;
	padding: 20px;
	background-color: rgba(117, 118, 117, 0.305);
	border-radius: 10px;
}
.a:hover{
	background-color: #000000;
	transition: .8s;
	color: white;
}