.navigation-footer {
	margin: 0 auto;
	padding: 0;
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	row-gap: 16px;
	justify-content: center;
	align-items: center;
	max-width: 280px;
}

.navigation-footer .item {
	position: relative;
	padding: 0 14px;
}

.navigation-footer .item::after {
	content: "";
    border-right: 1px solid var(--gray-800);
    display: block;
    position: absolute;
	top: 5px;
	left: 0;
	height: 18px;
	width: 100%;
	pointer-events: none;
}

.navigation-footer .item.row-3::after,
.navigation-footer .item.last::after {
	display: none;
}

.navigation-footer a {
	color: var(--gray-800);
	font-size: 15px;
    font-weight: 500;
}

.navigation-footer a:hover {
	color: var(--gray-800);
	text-decoration: none;
}

@media (min-width: 64em) {
	.navigation-footer {
		max-width: unset;
		margin-top: -32px;
	}

	.navigation-footer a {
		font-size: 1rem;
	}

	.navigation-footer .item.row-3::after {
		display: block;
	}

	.navigation-footer .item.last::after {
		display: none;
	}
}

@media screen and (min-width: 90em) {
	.navigation-footer {
		margin-top: -42px;
	}
}