.nav_main {
	display: flex;
	flex-direction: column;
	gap: 16px;
	border-top: 1px solid var(--secondary-yellow, #EADFA5);
	border-bottom: 1px solid var(--secondary-yellow, #EADFA5);
	min-width: 312px;
	padding-block: 16px;
}

.nav_main a {
	display: flex;
	align-items: center;
	width: 100%;
	padding: 8px;
	min-height: 32px;
	text-decoration: none;
	color: var(--secondary-yellow, #EADFA5);
	font-style: normal;
	font-weight: 700;
	line-height: 130%;
	/* 26px */
	background: linear-gradient(to right, var(--navy) 0%, var(--navy) 100%);
	background-size: 0% 100%;
	background-repeat: no-repeat;
	transition: background-size 1500ms ease;
}


@media(max-height: 620px){

	.nav_main{
		gap: 8px;
	}

	.nav_main a{
		min-height: 20px;
	}
}

.nav_main a:hover {
	background-size: 100% 100%;
}

.nav_butt {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	border: none;
	background: none;
	cursor: pointer;
	color: white;
	text-transform: uppercase;
	align-items: end;
}
.nav_butt > span{
	padding-bottom: 2px;
}

.nav_close_row {
	display: flex;
	align-items: center;
	justify-content: end;
	gap: var(--gap);
}

.nav_close svg {
	transition: rotate 500ms ease;
}

.nav_close:hover svg {
	rotate: 80deg;
}

.nav_show:hover {
	color: var(--secondary-yellow);
}


@media(min-width: 992px) {

	.nav_close,
	.nav_show {
		display: none !important;
	}
}

.nav_social{
	display: flex;
	flex-direction: column;
	gap: var(--gap-small);
	padding-block: var(--gap);
}

.nav_social h2{
	color: var(--secondary-blue, #7DAAB2);
	font-size: var(--step-0);
	font-weight: 700;
}

.nav_social_links{
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.nav_social_links a{
	display: flex;
	gap: var(--gap-small);
	align-items: center;
	color: var(--secondary-yellow);
	text-decoration: none;
}

.nav_social_links a:hover{
	text-decoration: underline;
}