.pie_p{
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 1px;
	width: 100%;
}
.pie_p .contactos_info{
	background-color: white;
	height: auto;
	align-items: center;
	justify-content: center;
	padding: 5% 10%;
}
.pie_p .contactos_info h3{
	color: #76B059;
	font-size: 130%;
	border-bottom: 2px solid #DEE9A6;
	width: 25%;

}
.pie_p h4{
	color: #76B059;
	margin-top: 20px;
}
.pie_p a{
	font-size: 100%;
	color: #3A6C22;
}
/*contenedor letras*/
.logo2{
	justify-content: space-between;
	align-items: center;
	text-align: center;
}
/*icono*/
.logo2 img {
	height: 80%;
	width:  50%;
}
/*contenedor logo*/
#lg2 {	
}
/*imagen*/
#lg2 img{
	height: 40%;
	width: 20%;
	margin-bottom: 10px;
	animation: rotate 10s linear infinite;
}
/*agregamos una animacion para la img LG*/
@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
@media(max-width:600px){
		/*icono*/
	.logo2 img {
		height: 70%;
		width:  90%;
	}
	/*contenedor logo*/
	#lg2 {

		
	}
	/*imagen*/
	#lg2 img{
		height: 50%;
		width: 30%;
		margin-bottom: 10px;
	}
	.pie_p .contactos_info h3{
		font-size: 3vw;
	}
	.pie_p p{
		font-size: 3vw;
	}
	.pie_p h4{
		font-size: 3vw;
	}
}