@charset "utf-8";
/* CSS Document */

footer{
	float:left; position:relative; width:90%; height:auto;padding: 100px 5% 100px 5%; overflow: hidden; background-color:rgb(24,50,82); color:rgb(255,255,255);
	
	display: -webkit-flex;
	display: -ms-flex;
    display: flex;
	
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
	
	-webkit-flex-direction: row;
	-ms-flex-direction: row;
	flex-direction: row;
	
    -webkit-justify-content: space-between;
    -ms-flex-pack: space-between;
    justify-content: space-between;
	
    -webkit-align-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
	
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
	}
.foo-col{
	position:relative; width: 48%;
}
.foo-item{
	float:left; position:relative; width: 100%; margin-bottom: 5px;
}
.foo-item:last-of-type{
	margin-bottom: 0px;
}
.foo-item h3{
	font-size: 25px; margin-bottom: 20px;
}
.foo-item img{
	width: 32px; height: 32px; margin-right: 10px; vertical-align: middle;
}
.foo-item p{
	width: auto; height: 32px; line-height: 32px; margin: auto;
}
.redes-sociales{
	position:relative; width: 100%; text-align: right;
}
.redes-sociales img{
	position:relative; width: 40px; height: 40px; margin-left:5px; cursor:pointer;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	border-radius: 20px;
}
.redes-sociales img:hover{
	background-color: rgb(50,154,255);
}


.btn-sbr{
	position:fixed; width:60px; height:60px; top:100%; right:0px; margin:10px; z-index:301; background:rgba(29,44,52,0.8); cursor: pointer;
	-webkit-border-radius: 10%;
	-moz-border-radius: 10%;
	border-radius: 10%;
	-webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
	}
.btn-sbr:hover{
	background:rgba(29,44,52,1);
    }
.btn-sbr-ver{
	top:calc(100% - 80px);
	-webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
	}


@media all and (max-width: 1200px) {
	.foo-col{
		width: 100%; 
	}
	.foo-item{
		text-align: center;
	}
	.redes-sociales{
		text-align: center; margin-top: 20px;
	}
}
