
/*MENU CELULAR*/
.header {
	position: relative;
	background: none;
	z-index: 1000;
  max-width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 70px;
	transition: all .4s;
}
.grupo-header {
  width: 100%;
  max-width: 1500px;
  display: flex;
	justify-content: center;
}
.header .columna {
	overflow: hidden;
}

.fixed {
	background: rgba(0,0,0,0.7);
  position: fixed;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
  width: 100%;
	margin: auto;
  top: 0;
  left: 0;
}
.barra {
	width: 24px;
	cursor: pointer;
}
.uno, .dos, .tres {
	background: #fff;
	width: 100%;
	height: 4px;
	transition: all .4s;
}
.dos {
	margin: 4px 0;
}
.mostrar .dos {
	opacity: 0;
}
.mostrar .uno{
	transform: rotate(45deg) translate(4px, 5px);
	background: #fff;
}
.mostrar .tres {
	transform: rotate(-45deg) translate(6px, -8px);
	background: #fff;
}
.nav {
	position: absolute;
	z-index: 2500;
	width: 90%;
	top: 80px;
	transition: all 0.4s;
	left: -100%;
  background: #999;
	backdrop-filter: blur(7px);
}
.menu {
	padding: 0 20px;
}
.menu li {
	text-align: left;
	transition: all 0.4s;
	border-bottom: 1px dashed rgba(255,255,255,0.5);
}
.menu li:last-child {
	border-bottom: none;
}
.menu__link {
	font-family: "Poppins", sans-serif;
  font-size: 0.9em;
	font-weight: 400;
  color: #fff;
	padding: 15px 20px;
  transition: all 0.7s;
}

.slide_right:hover {
  box-shadow: inset 500px 0 0 0 rgba(0, 0, 0, 0.3);
	color: #ffffff;
}
.select {
	background: rgba(0, 0, 0, 0.3)
}
.mostrar {
	left: 0;
}

/*-------------ESTILOS RESPONSIVE WEB DESIGN-------------*/

@media (min-width: 768px) {
	
}

@media (min-width: 1024px) {
/*MENU LAPTOP*/
.header {

}
.fixed {

}
.grupo-header {
	
}
.menu {
	display: flex;
	justify-content: center;
}
.nav {
	position: static;
	width: auto;
	backdrop-filter: blur(0px);
	box-shadow: none;
	background: none;
}
.barra {
 display: none;
}
.menu li {
	border-bottom: none;
	transition: all 0.4s;
	background: none;
}
.menu__link {
	background: none;
	color: #fff;
	padding: 7px 10px;
	margin: 0 20px;
}
.select {
	border-bottom: 2px solid rgba(255,255,255,0.5);
}
}