.footer-nav {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 3px;
}

.navigation-footer {
	color: white;
	margin: 0;
	padding: 0;
	list-style: none;
	background-color: var(--orange);

	border-top-left-radius: 20px;
	padding: 10px 0 7px 14px;
	margin-left: 3px;


	display: flex;
	flex-wrap: wrap;
	justify-content: left;
	flex-direction: row;
	flex-flow: row wrap;
	align-content: flex-end;
}

.navigation-footer li {
	width: 50%;
	line-height: 1em;
	margin-bottom: 2px;
}

@media (min-width:400px) {
	.navigation-footer li {
		width: 33.33%;
	}
}

.navigation-footer a {
	display: inline-block;
	font-size: 12px;
	font-family: var(--font-heading);
	color: inherit;
	text-transform: uppercase;
	font-weight: 500;
	padding: 2px 5px;
}

.navigation-footer a:hover {
	color: inherit;
	text-decoration: none;
}

@media (min-width: 40em) {
	.navigation-footer {
		max-width: none;
		border-top-left-radius: 5px;
	}

	.navigation-footer li,
	.navigation-footer li:nth-child(3n){
		width: auto;
		margin-bottom: 0;
	}

	.navigation-footer a {
		font-size: 15px;
		letter-spacing: 0.01em;
		padding: 10px 13.5px;
	}
}

@media (min-width: 64em) {
	.footer-nav {
		margin-bottom: 6px;
	}

	.navigation-footer {
		flex-direction: row;
		padding: 0 38px 0 24px;
		max-width: none;
		border-top-left-radius: 5px;
	}

	.navigation-footer a {
		padding: 14px 13.5px;
	}
}
