/*
*
* GENERALES
*
*/
@import url('https://fonts.googleapis.com/css?family=Source+Sans+Pro');
@import url(fontello.css);

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
body {
	font-family: 'Source Sans Pro', sans-serif;
    background: rgba(242,246,248,1);
    background: -moz-linear-gradient(top, rgba(242,246,248,1) 0%, rgba(216,225,231,1) 76%, rgba(181,198,208,1) 100%);
    background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(242,246,248,1)), color-stop(76%, rgba(216,225,231,1)), color-stop(100%, rgba(181,198,208,1)));
    background: -webkit-linear-gradient(top, rgba(242,246,248,1) 0%, rgba(216,225,231,1) 76%, rgba(181,198,208,1) 100%);
    background: -o-linear-gradient(top, rgba(242,246,248,1) 0%, rgba(216,225,231,1) 76%, rgba(181,198,208,1) 100%);
    background: -ms-linear-gradient(top, rgba(242,246,248,1) 0%, rgba(216,225,231,1) 76%, rgba(181,198,208,1) 100%);
    background: linear-gradient(to bottom, rgba(242,246,248,1) 0%, rgba(216,225,231,1) 76%, rgba(181,198,208,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f2f6f8', endColorstr='#b5c6d0', GradientType=0 );
    display: inline-block;
}

/*
*
* HEADER
*
*/
header {
	width: 98%;
	height: 50px;
	/*posicion enfrente*/
	position: fixed;
	top:0;
	left: 0;
	z-index: 100;
	background: rgb(96, 125, 139,0.5);
}
header .logo {
	display: none;
}
header label {
	float: right;
	font-size: 20px;
	margin: 6px	0px;
	color: gray;
}

header .contenedor {
	display: table;
	margin-top: 5px;
}
/*
*
* MENU
*
*/

#menu-bar{
	display: none;
}

.menu {
	position: absolute;
	top: 30px;
	left: 5px;
	width: 80%;
	height: 90vh;
	background: rgba(51,51,51,0.9);
	border-radius: 6px;
	transition: all 0.5s;
	transform: translateX(-120%);
}
.menu a {
	display: block;
	color:white;
	height: 50px;
	text-decoration: none;
	padding: 15px;
	border-bottom: 1px solid rgba(255,255,255,0.5);
	/*border-radius: 6px;*/
}
.active{
    background: rgba(242,246,248,1);
    background: -moz-linear-gradient(top, rgba(242,246,248,1) 0%, rgba(216,225,231,1) 51%, rgba(224,239,249,1) 100%);
    background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(242,246,248,1)), color-stop(51%, rgba(216,225,231,1)), color-stop(100%, rgba(224,239,249,1)));
    background: -webkit-linear-gradient(top, rgba(242,246,248,1) 0%, rgba(216,225,231,1) 51%, rgba(224,239,249,1) 100%);
    background: -o-linear-gradient(top, rgba(242,246,248,1) 0%, rgba(216,225,231,1) 51%, rgba(224,239,249,1) 100%);
    background: -ms-linear-gradient(top, rgba(242,246,248,1) 0%, rgba(216,225,231,1) 51%, rgba(224,239,249,1) 100%);
    background: linear-gradient(to bottom, rgba(242,246,248,1) 0%, rgba(216,225,231,1) 51%, rgba(224,239,249,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f2f6f8', endColorstr='#e0eff9', GradientType=0 );
    
}
.menuP:hover{
    text-decoration: none;
    background: rgba(242,246,248,1);
    background: -moz-linear-gradient(top, rgba(242,246,248,1) 0%, rgba(216,225,231,1) 51%, rgba(224,239,249,1) 100%);
    background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(242,246,248,1)), color-stop(51%, rgba(216,225,231,1)), color-stop(100%, rgba(224,239,249,1)));
    background: -webkit-linear-gradient(top, rgba(242,246,248,1) 0%, rgba(216,225,231,1) 51%, rgba(224,239,249,1) 100%);
    background: -o-linear-gradient(top, rgba(242,246,248,1) 0%, rgba(216,225,231,1) 51%, rgba(224,239,249,1) 100%);
    background: -ms-linear-gradient(top, rgba(242,246,248,1) 0%, rgba(216,225,231,1) 51%, rgba(224,239,249,1) 100%);
    background: linear-gradient(to bottom, rgba(242,246,248,1) 0%, rgba(216,225,231,1) 51%, rgba(224,239,249,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f2f6f8', endColorstr='#e0eff9', GradientType=0 );
    color: darkblue;
}
#menu-bar:checked ~ .menu{
	transform: translateX(0%);
}
/*
*
* FOOTER
*
*/
footer{
	margin-top: 10px;
    display: flex;
    justify-content: center;
    height: auto;
    width: 100%;
}

footer .contenedor{
    width: 98%;
    display: flex;
    font-size: 13px;
    justify-content: center;
    height: auto;
}

footer #redessocialescontenedor{
    width: auto;
    float: right;
    list-style: none;
    margin-right: 0;
    height: auto;
}

#redes-sociales li{
    float: right;
    display:inline-block;
    list-style: none;
}

#redes-sociales li:first-child{ 
    margin-right: 0;
    padding-left: 5px;
}

#redes-sociales li a{
    display: block;
    -webkit-transition:opacity 0.35s ease-in;
    -moz-transition:opacity 0.35s ease-in; 
    -o-transition:opacity 0.35s ease-in; 
    transition:opacity 0.35s ease-in; 
}

#redes-sociales li a:hover{ 
    opacity: 0.75; 
}

#redes-sociales li a img{ 
    -webkit-box-shadow: 0px 0px 3px rgba(100, 100, 100, 0.75); 
    -moz-box-shadow: 0px 0px 3px rgba(100, 100, 100, 0.75); 
    box-shadow: 0px 0px 3px rgba(100, 100, 100, 0.75); 
}

.firma{
    text-align: right;
    background-color: #313131;    
}

.firma a{
    padding: 2px;
    text-decoration: none;
    color: white;
}

/*
*
* GENERALES
*
*/
.contenedor {
	width: 98%;
	margin: auto;
}

@media(min-width:1024px) {
    *{
        max-width: 1024px;
        margin-right: auto;
        margin-left: auto;
    }
    .menu {
        position: static;
        width: auto;
        height: auto;
        transform: translateX(0%);
        float: right;
        display: flex;
        margin-top: 30px;
        margin-right: 30px;
    }
    .menu a {
        border: none;
    }
    header .contenedor
    {
        width: 1024px;
        margin-left: auto;
        margin-right: auto;
    }
    header {
        position: static;
        height: auto;
        max-width: 1024px;
        background: none;
    }
    header label 
    {
        display: none;
    }
    header .logo {
        display: inline;
    }
    footer .contenedor
    {
        width: 1024px;
    }
    #dieccion  {
        margin-left: 12px;
    }

}