#footer{
    background-color: #fdf9cf;
	display: flex;
	flex-direction: row;
	padding: 40px;
	font-size: 12px;
}
#footer .contact,
#footer .footerLogo,
#footer .social{
	flex: 1;
}

#footer .contact{
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	align-items: flex-end;
	justify-content: center;
}

#footer .contact div{
	margin-right: 10px;
}
#footer .footerLogo{
	display: flex;
	align-items: flex-end;
	justify-content: center;
}
#footer .social{
	display: flex;
	align-items: flex-end;
	justify-content: flex-end;
}
#footer .social a{
	display: block;
	padding: 0px 10px;
}
@media (max-width: 768px) {
	#footer{
		flex-direction: column;
	}
	#footer .contact{
		flex-direction: column;
		align-items: center;
		justify-content: center;
		margin-top: 20px;
		order: 1;
	}
	#footer .social{
		margin-top: 20px;
		align-items: center;
		justify-content: center;
		order: 2;
	}
	#footer .footerLogo{
		margin-top: 20px;
		order: 3;
	}
}
#footer a{
	color: #891d03;
}