/* INICIO FOOTER */

footer.contenedorFooter {
	display:flex;
	flex-direction:column;
	justify-content:center;
	/* background:var(--brandPrimary); */
	padding:2em;
	/* color:rgb(220,220,220); */
	margin-top:3em;
}

footer.contenedorFooter .btn-fullstite {
	color: white;
	background-color: #0298E4;
    font-weight: bold;
    border-radius: 0;
	padding: 0.5rem 0.8rem;
    margin: 1rem 0;
}

footer.contenedorFooter a {
	text-decoration:none;
	font-weight:600;
	/* color:white !important; */
}

footer.contenedorFooter a:hover {
	/* color:var(--brandPrimaryLight) !important; */
}

.footerDatos {
	display:flex;
	justify-content:space-evenly;
	flex-wrap:wrap;
}

.footerDatos div {
    display:flex;
    width:100%;
    justify-content:center;
    padding:0em;
    text-align:center;
    flex-direction:column;
    padding:.5em;
}

.footerDerechos {
	display:flex;
	flex-direction:column;
	justify-content:center;
	margin-top:1em;
	text-align:center;
	font-size:.8em;
}

.linkPoweredBy {

}

.linkPoweredBy img {
	/* filter:brightness(1000) saturate(0); */
	margin-left:.5em;
	width:5em;
}

.footerLogo {
    margin-bottom:1em;
}

.footerLinkRed img {
	height:1.25em;
	margin:.70em;
	transition:transform ease-in-out .15s;
	/* filter:saturate(0) brightness(10); */
}

.footerLinkRed img:hover {
    transform:scale(1.2);
}

@media screen and (min-width:992px) {
	footer.contenedorFooter {
		display:flex;
		flex-direction:column;
		justify-content:center;
		background:none;
		color:black;
		margin-top: 3em;
		padding-bottom: 10em;
		background-image: url("fotoFooter.jpg");
		background-size:cover;
		background-position:50% 20%;
		background-repeat:no-repeat;
	}
	footer.contenedorFooter a {
		/* color:var(--brandPrimary) !important; */
	}
	.footerLinkRed img {
		filter:none;
	}
	.linkPoweredBy img {
		/* filter:none; */
	}
	.footerDatos {
		flex-direction:row;
		flex-wrap:nowrap;
	}
	.footerDatos div {
		width:auto;
		justify-content:flex-start;
		align-items:flex-start;
		text-align:left;
	}
	.footerDerechos {
		flex-direction:row;
		align-items:center;
		color:var(--brandPrimary);
		margin-top:2em;
		font-size:1em;
	}
}

/* FINAL FOOTER */
