.footer {
	color: white;
	background: rgb(26, 25, 25);
	width: 100%;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	font-size: 12px;
}

.footer :first-child {
	display: flex;
	align-items: center;
}

.footer p {
	margin-top: 8px;

}

.footer__div {
	padding: 0.5em;

}

.footer__iconos {
	display: flex;

}

.footer__iconos img {
	width: 30px;
	display: block;
	margin: 10px 15px 10px 0px;
	border-radius: 8px;
	background-color: rgb(145, 192, 192);
}


.footer__logo {
	display: block;
	margin: auto;
	width: 6em;
}

.footer__tituFooter {
	text-shadow: 1px 1px 2px white;
	font-family: "open sans";
	padding-bottom: 1em;
}

.footer__mp {
	width: 120px;
	background-color: rgba(169, 169, 169, 0.425);
	border-radius: 5px;
	margin-top: 10px;
}



/* Media Queries */
@media (max-width: 768px) {
	.footer {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
	}
	.footer__logo{
		padding: 10px;
	}

	.footer__div {
		text-align: center;

	}
	.footer :first-child {
		display: inline	;
	}
	.footer__iconos {
		display: flex;
		justify-content: space-around;

	}
	

	.footer__sobre img {
		width: 70px;
		padding: 1px 10px;
		background-color: rgba(169, 169, 169, 0.425);
	}
}