/* menu */


.container_menu {
	width: calc(15rem - 5rem);
	min-height: calc(100vh - 5rem);
	padding: 2.5rem;
	display: flex;
	flex-direction: column;
	position: fixed;
	top: 0;
	left: 0;
	background-color: var(--grey-light);
}

.menu_logo {
	width: calc(100% - 0rem);
	margin: 0 auto 2.5rem;
	display: flex;
	justify-content: flex-start;
	align-items: center;
}

.menu_logo img {
	height: calc(3.125rem - 0rem);
}

#menu-logo-mobile {
	display: none;
}

.menu_links {
	width: calc(100% - 0rem);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	flex-grow: 1;
}

.menu_links ul {
	width: calc(100% - 0rem);
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.menu_links ul li {
	width: calc(100% - 0rem);
	height: calc(3.125rem - 0rem);
	display: flex;
	flex-direction: row;
	align-items: center;
	color: var(--text-menu);
	cursor: pointer;
}

.menu_links ul li a {
	width: calc(100% - 0rem);
	height: calc(100% - 0rem);
	display: flex;
  	flex-direction: row;
  	align-items: center;
  	color: var(--text-menu);
  	cursor: pointer;
  	text-decoration: none;
}

.menu_links ul li a:hover {
	color: var(--text-menu-hover);
	cursor: pointer;
}

.menu_links ul li a span {
	margin: 0 0 0 1rem;
	font-size: 0.875em;
	font-weight: 500;
	cursor: pointer;
}

.menu_links ul li a i {
	width: calc(1rem - 0rem);
	height: calc(1rem - 0rem);
	display: flex;
	align-items: center;
	font-size: 1em;
	cursor: pointer;
	text-align: center;
}

.menu_links_active a {
	color: var(--text-menu-active) !important;
	cursor: pointer;
}


/* menu_m */
.container_menu_m {
	z-index: 100;
	display: none;
}


@media only screen and (max-width: 1024px) {}


@media only screen and (max-width: 768px) {


 	/* menu */
	.container_menu {
		display: none;
  	}


	/* menu_m */
	.container_menu_m {
		width: calc(100% - 2.5rem);
		height: calc(4rem - 0rem);
		padding: 0 1.25rem;
		display: flex;
		flex-direction: column;
		position: fixed;
		bottom: 0;
		left: 0;
		background-color: var(--grey);
	}

	.menu_links_m {}

	.menu_links_m ul {
		width: calc(100% - 0rem);
		display: flex;
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
	}

	.menu_links_m ul li {
		width: calc(4rem - 0rem);
		height: calc(4rem - 0rem);
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}

	.menu_links_m ul li a {
		width: calc(100% - 0rem);
		display: flex;
		flex-direction: column;
		align-items: center;
		color: var(--text-menu);
		text-decoration: none;
	}

	.menu_links_m ul li a:hover {
		color: var(--text-menu-hover);
		
	}

	.menu_links_m ul li a i {
		width: 1.5rem;
		height: 1.5rem;
		font-size: 1.5em;
	}

	.menu_links_m ul li a span {
		width: calc(100% - 0rem);
		margin: 0.25rem 0 0;
		font-size: 0.75em;
		text-align: center;
	}


}


/* menu */