/*Strip the ul of padding and list styling*/

@media only screen and (min-width: 951px)  {
    nav{
	
        padding-top: 20px;
        padding-bottom: 5px;
    } 
    
nav ul {
    list-style-type:none;
	width: auto;
	position: relative;
	margin-right: 50px;
	float: right;
	font-size: 16px;
    font-family: 'Work Sans', sans-serif;
	z-index: 4444;
	margin-top: 15px;
 
}

}
@media screen and (max-width : 950px){
    nav{
	
        padding-bottom: 5px;
    }

    nav ul {
    list-style-type:none;
	width: auto;
	position: relative;
	margin-top: 20px;
	font-size: 14px;
}



}
/*Create a horizontal list with spacing*/
li {
    display:inline-block;

}
/*Style for menu links*/
li a {
    display:block;
    padding: 20px;
    text-align: center;
	height: 30px;
    line-height: 30px;
    color: white;
}



/*Style for dropdown links*/
li:hover ul a {
    background-color: black;   
    height: 40px;
    line-height: 40px;
}
/*Hover state for dropdown links*/
li:hover ul a:hover {
    background: gray;
    color: #fff;
}
/*Hide dropdown links until they are needed*/
li ul {
    display: none;
}
/*Make dropdown links vertical*/
li ul li {
    display: block;
    float: none;
}
/*Prevent text wrapping*/
li ul li a {
    width: auto;
    min-width: 100px;

  
}
/*Display the dropdown on hover*/
ul li a:hover + .hidden, .hidden:hover {
    display: block;
    
}
/*Style 'show menu' label button and hide it by default*/
.show-menu {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    text-decoration: none;
    color: #fff;
    background: #c8995d;
    text-align: center;
    padding: 20px;
    display: none;
	cursor: pointer;
}
/*Hide checkbox*/
input[type=checkbox]{
    display: none;

}
/*Show menu when invisible checkbox is checked*/
input[type=checkbox]:checked ~ #menu{
    display: block;
}
/*Responsive Styles*/


@media screen and (min-width : 951px){
/*Hover state for top level links*/
li:hover a {
    background-color:#c8995d;
    padding: 20px;
}
	
.active {
    background-color:#c8995d;
    padding: 20px;
}	
}

@media screen and (max-width : 950px){
	

	
#iconos-sociales{
	
	display: none;
}
	
    /*Make dropdown links appear inline*/
    nav ul {
	margin-top:0px;
    display: none;
    }

    /*Make all menu links full width*/
    nav ul li, li a {
    width: 100%;
	text-align: center;
	  height: 80px;
   		line-height: 80px;
		clear: both;
		padding-right:0px;
    	padding-left:0px;
		background-color: #2b3e51;
	    padding: 0px;

    }
	
li a:hover {
	color: white;
    background-color:#c8995d;

}

	
    /*Display 'show menu' link*/
    .show-menu {
        display:block;
    }
}
        
