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

@media only screen and (min-width: 931px)  {

nav ul {
    list-style-type:none;
	width: auto;
	margin-top: 40px;
	position: relative;
	margin-right: 50px;
	float: right;
	font-size: 14px;
	font-family: 'Poppins', sans-serif;
}

}
@media screen and (max-width : 930px){
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-right:12px;
    padding-left:12px;
    height: 30px;
    text-align: center;
    line-height: 30px;
	border-left: 3px solid transparent;
	color: #FFF;
 
}

.active {
	border-left: 3px solid #3B636F;
	color: #3B636F;
}
/*Style for dropdown links*/
li:hover ul a {
    background: #f3f3f3;
    color: #2f3036;
    height: 40px;
    line-height: 40px;
}
/*Hover state for dropdown links*/
li:hover ul a:hover {
    background: #19c589;
    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;
    padding: 0 20px;
}
/*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-color:#415961;
    text-align: center;
    padding: 10px 0;
    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 : 931px){
/*Hover state for top level links*/
li:hover a {
	border-left: 3px solid #3B636F;
	color: #3B636F;
}
}

@media screen and (max-width : 930px){
	
	#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;
		border-left: none;
			background-color:#415961;

    }
	
.active {
	border-left: none;
	color: white;
}	
	
li a:hover {
	color: white;
	background-color:#7B9BA6;
	height: 80px;
    line-height: 80px;
	border-left: none;
}

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