#footer {
	background-image: url('../img/footer.jpg');
	justify-content: center;
	padding: 80px 40px 0 40px;
}
.footer-main {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-bottom: 25px;
	border-bottom: solid 1px rgba(255,255,255,0.1);
}

.footer-column {
	display: flex;
	flex-direction: column;
	max-width: 460px;
}

.footer-column:last-child {
	align-items: flex-end;
}

.footer-logo {
	width: 220px;
	transform: translate3d(-8%, 0, 0);
	-webkit-transform: translate3d(-8%, 0, 0);
	-moz-transform: translate3d(-8%, 0, 0);
	-ms-transform: translate3d(-8%, 0, 0);
}

.contact-line {
	display: flex;
	align-items: center;
	margin: 5px 0;
}

.contact-line img {
	width: 20px;
	margin-right: 10px;
}

.contact-line p {
	color: white;
}

.social-wrapper {
	display: flex;
	align-items: center;
	margin-top: 15px;
}

.social-link {
	width: 26px;
	margin-right: 10px;
	cursor: pointer;
}

.footer-navigation-item {
	color: white;
	margin-bottom: 30px;
	font-size: 18px;
}

.footer-navigation-item:hover {
	color:#c1a8ff;
}

.footer-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	height: 60px;
}

.footer-bottom p {
	font-size: 14px;
	color: white;
	text-transform: uppercase;
}

.footer-mentions {
	display: flex;
	align-items: center;
}

.footer-mentions a  {
	text-decoration: underline;
	font-size: 14px;
	color: white;
}

@media all and (max-width: 1023px) {
	#footer {
		padding: 40px 20px 30px 20px;
	}
	.footer-logo {
		transform: translate3d(0, 0, 0);
		-webkit-transform: translate3d(0, 0, 0);
		-moz-transform: translate3d(0, 0, 0);
		-ms-transform: translate3d(0, 0, 0);
	}
	.footer-column {
		align-items: center;
		text-align: center;
	}
	.footer-column > p,
	.contact-line {
		display: none;
	}
	.social-link {
		width: 40px;
	}
	.footer-navigation-item {
		display: none;
	}
	.footer-bottom {
		flex-direction: column;
		padding: 20px 0 0 0;
	}
	.footer-mentions {
		margin-top: 10px;
	}
}