#sectionsPied{
	display:flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-evenly;
	align-items: stretch;
}
#sectionsPied div{
	padding:10px;
}
@media (max-width: 699px) {
	#sectionsPied{
		display:block;
	}
	#sectionsPied div{
		width:100%;
	}
}