
body > .footer{
	width: 100%;
	padding-left: 50px;
	background-color: #151717;
	display: flex;
	margin-top: 50px;
	padding-bottom: 30px;
}

body > .footer img.logo{
	height: 40px;
	padding-right: 50px;
	margin-top: 30px;
}

body > .footer .sections{
	display: flex;
	flex-wrap: wrap;
	flex-grow: 100;
}

body > .footer .section{
	display: block;
	min-width: 150px;
	padding-right: 40px;
	margin-top: 30px;
}
body > .footer .section:last-of-type{
	padding-right: 0;
}
body > .footer .section .header{
	font-size: 16px;
	font-weight: 500;
	color: white;
}
body > .footer .section .block{
	height: 2px;
	width: 80px;
	max-width: 80px;
	margin: 10px 0;
	/* margin: 20Cpx 0; */
	/* margin-bottom: 15px; */
	/* background-color: #292c2c; */
	/* background-color: #151717; */
}
body > .footer .section > .link:nth-child(1){
	padding-top: 0;
}
body > .footer .section .link{
	display: block;
	color: #f0f0f0;
	padding: 5px 0;
}

body > .footer .socials{
	display: block;
	padding-right: 50px;
	margin-top: 30px;
}
body > .footer .socials .link{
	display: block;
	color: white;
	padding: 10px;
	font-size: 16px;
	height: 40px;
	width: 40px;
	margin-bottom: 10px;
	background-color: #292c2c;
	border-radius: 40px;
	text-align: center;
}
body > .footer .socials .link i.icon{
	margin: 0;
}

@media screen and (max-width: 650px){
	body > .footer{
		display: block;
	}
	body > .footer .socials{
		display: flex;
	}
	body > .footer .socials .link{
		margin-right: 10px;
	}
}