.menu_footer {
	grid-column: 1;
	font-size: var(--sm);
	grid-row: 4;
	/* margin-bottom: 1rem; */
}
.menu_footer ul {
	/* display: flex; */
	/* flex-direction: column; */
}
.menu_footer ul li {
	
}
.menu_footer ul li:last-of-type {
	border: none;
	
}
.menu_footer ul li a {
	color: var(--color4);
	-webkit-transition: color .3s;
	-moz-transition: color .3s;
	transition: color .3s;
	/* font-size: var(--md); */
}
.menu_footer ul li strong {
	/* color: var(--color2) !important; */
	/* font-family: var(--font-copy); */
}
.menu_footer ul li a:hover {
	color: var(--color1);
}
.menu_footer ul li > * {
	padding-bottom: 0.2rem;
	display: block;
	padding-left: 0rem;
	font-family: var(--font-regular);
}
@media screen and (min-width: 768px){
	.menu_footer {
		/* grid-row: 2; */
		/* margin-top: 4.4rem; */
	}
	.menu_footer ul {
		/* flex-direction: row; */
	}
	.menu_footer ul li {
		position: relative;
		
	}
	.menu_footer ul li:last-of-type:after {
		display: none;
		
	}
	.menu_footer ul li:after {
		content: '';
		position: absolute;
		display: block;
		width: 1px;
		background-color: var(--color4);
		top: 1rem;
		bottom: 1rem;
		right: 0rem;
	}
	.menu_footer ul li:first-of-type a,
	.menu_footer ul li:first-of-type strong {
		padding-left: 0rem;
	
	}
	.menu_footer ul li > * {
		/* padding: 0.7rem; */
		font-size: var(--md);
	}
	
}
@media screen and (min-width: 992px){
	.menu_footer {
		grid-row: 2;
		grid-column: 2;
		
	}

	
}

