.nav-modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background: rgba(0, 0, 0, 0.7);
	z-index: 999;
}
.nav-modal__content {
	box-sizing: border-box;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 90%;
	/* height: 70%; */
	height: 0;
	background: #fff;
	transition: 0.5s;
}

.nav-modal__content ul {
	width: 100%;
	height: 100%;
	overflow-y: scroll;
}
.nav-modal__content li {
	/* margin-bottom: 10px; */
	text-align: center;
}
.nav-modal__content li a {
	display: block;
	padding: 15px 0;
	/* border-top: solid 1px var(--black); */
	border-bottom: solid 1px var(--black);

	color: var(--black);
	font-size: var(--font-size-h3);
	font-weight: 700;
	line-height: var(--font-lh-h3);
	letter-spacing: var(--font-ls-h3);
}
