.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: 'Raleway', sans-serif !important;}

.logo{
	background-image: url("img/logo.svg");
	width: 185px;
	height: 35px;
	margin-left: 30px;
		cursor: pointer;

}
.calendario {
	    background-image:url("img/calendario.svg");
	    background-position: center center;
	    background-repeat: no-repeat;
	    background-size: cover;
	    width: 25px;
	height: 25px;
	display: inline-block;
	vertical-align: middle;
	cursor: pointer;

}
.calendario:hover {
  background-image:url("img/calendario.svg");
	    background-position: center center;
	    background-repeat: no-repeat;
	    background-size: cover;
	    width: 25px;
	height: 25px;
	display: inline-block;
	vertical-align: middle;
		cursor: pointer;

}

nav{
   background: rgb(255,0,200);
background: linear-gradient(-45deg, rgba(255,0,200,1) 0%, rgba(0,150,255,1) 100%);
  height: 80px;
  width: 100%;
	align-items: center;
	justify-content: space-between;
	display: flex;
	position: fixed;
	z-index: 310;
	border-bottom: 1px solid #ff00c8;
}
nav ul{
  float: right;
  margin-right: 30px;
	
}
nav li{
    display: inline-block;
    border-radius: 3px;
    margin: 5px;
}
nav li a{
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  padding: 7px 15px;
  text-transform: uppercase;
  display: block;
}

nav li.active, li:hover{
  background: rgba(255, 255, 255, .07);
  transition: .5s;
}


.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;
  }
	
	nav{
   background: #0096ff;

}
	
  nav ul{
    position: fixed;
    width: 100%;
    height: 100vh;
    background: rgb(255,0,200);
background: linear-gradient(-45deg, rgba(255,0,200,1) 0%, rgba(0,150,255,1) 100%);
    top: 80px;
    left: -100%;
    text-align: left;
    transition: all .5s;
  }
  nav ul li{
    display: block;
    padding: 10px 0px 0px 0px;
    line-height: 30px;	  

  }
  nav ul li a {
    font-size: 25px;
	  color:#fff;
	  text-align: left;
	  border-bottom: 1px solid #fff;
	  padding: 10px ;
	  
  }



	
nav li a{
  
	font-weight: 300;
  
}
  
  #check:checked ~ ul{
    left: 0;
  }
	
nav li:hover{
  background: rgba(255,255,255,.3);
  transition: .5s;
	display: block; 
}
	


	
}




