.display-muygrande {
	display: none;
}

.display-grande {
	display: none;
}

.display-mediano {
	display: none;
}

.display-chico {
	display: none;
}

body{
	width:100%;
	height:100%;
}
    




/*----------------------------
	 HEADER
-----------------------------*/	
*{
  padding: 0;
  margin: 0;
  text-decoration: none;
  list-style: none;
  box-sizing: border-box;
}
body{
font-family: 'Work Sans', sans-serif;}

nav{
  background: #052376;
  height: 80px;
  width: 100%;
	align-items: center;
	justify-content: space-between;
	display: flex;
	position: fixed;
	z-index: 310;
}
label.logo{
  color: #ebe3d6;
  font-size: 35px;
  line-height: 80px;
  padding: 0 30px;
  font-weight: bold;
	cursor: pointer;
}
nav ul{
  float: right;
  margin-right: 30px;
	
}
nav li{
    display: inline-block;
    border-radius: 3px;
    margin: 5px;
}
nav li a{
  color: #ebe3d6;
  font-size: 13px;
  padding: 7px 15px;
  text-transform: uppercase;
	 display: block;
}
nav li.active, li:hover{
  background: rgba(255, 255, 255, .07);
  transition: .5s;
}
nav li.outline{
  border: 1px solid #ebe3d6;
}

.checkbtn{
  font-size: 30px;
  color: white;
  float: right;
  line-height: 80px;
  margin-right: 40px;
  cursor: pointer;
  display: none;
}
#check{
  display: none;
}


@media (max-width: 952px){
  label.logo{
    font-size: 30px;
    padding-left: 30px;
  }
  nav ul li a{
    font-size: 16px;
  }
}
@media (max-width: 1000px){
  .checkbtn{
    display: block;
	  z-index: 400;
  }
	
}
  ul{
    position: fixed;
    width: 100%;
    height: 100vh;
    background-color: #fff;
    top: 80px;
    left: -100%;
    text-align: center;
    transition: all .5s;
	overflow: scroll;
  }
  nav ul li{
    display: block;
    margin: 10px 0px 0px 30px;
    line-height: 30px;
  }
  nav ul li a{
    font-size: 20px;
	  color:#052376;
	  text-align: left;
  }

  
  #check:checked ~ ul{
    left: 0;
  }
	
nav li:hover{
  background: rgba(255,255,255,.3);
  transition: .5s;
	display: block;
}
nav li.outline{
border: none;
	}
	
}


