.navigation-footer {
	display: flex;
	flex-direction: row;
	justify-content: center;
	flex-wrap: wrap;
	margin: 0;
	padding: 0;
	list-style: none;
}

.navigation-footer li {
	border-bottom: 1px solid #aed3da;
	margin: 20px 17px 2px;
	line-height: 16px;
}
.navigation-footer a {
	font-size: 16px;
	line-height: 16px;
	font-family: var(--font-display);
	color: inherit;
	text-transform: uppercase;
}

.navigation-footer a:hover {
	color: inherit;
	text-decoration: none;
}

@media (min-width: 64em) {
	.navigation-footer li {
		transition: border-color ease 0.4s;
	}
	
	.navigation-footer li:hover,
	.navigation-footer li:hover a {
		border-color: var(--blue);
		color: var(--blue);
	}
}
