/* ------------------ Menu Bottom ------------------ */
footer ul.nav {
}

nav[class^="m-foot"] ul.ul-nav {
	list-style: none;
	padding: 0;
	justify-content: space-around;
	display: flex;
	justify-content: space-between;
	flex-wrap: nowrap;
}

nav[class^="m-foot"] .ul-nav > li {
	padding: 1rem;
}

nav[class^="m-foot"] .ul-nav > li > a {
	font-size: 0.925rem;
	background-color: var(--menuBkg3);
}

nav[class^="m-foot"] li[data-level="1"] > a {
	color: var(--menu3);
	display: block;
	padding: 0.325rem 1rem;
	font-weight: bold;
	text-transform: uppercase;
}
nav[class^="m-foot"] li[data-level="2"] {
	margin-bottom: 0.225rem;
}

nav[class^="m-foot"] li[data-level="2"] > a {
	color: var(--text6);
	padding: 0.325rem 1rem;
	font-size: 0.755rem;
	line-height: 1.4;
	display: inline-block;
}

footer ul.ul-nav li[data-level="2"] a:hover {
	background: white;
	color: var(--menu3hov);
	text-decoration: none;
}

@media (max-width: 992px) {
	nav[class^="m-foot"] .ul-nav > li {
		padding: 1rem 0;
	}
}

@media (max-width: 768px) {
	nav[class^="m-foot"] ul.ul-nav {
		flex-direction: column;
	}
	nav[class^="m-foot"] ul.ul-nav > li:not(:first-of-type) {
		margin-top: 2rem;
	}
}
