#menu_desktop{
	display: flex;
	border: 0px solid black;
	width: auto;
	height: auto;
	background-color: #CF813E;
	padding: 1em;
}
.menu_desktop_sticky{
	position: fixed;
	top:0;
	left:0;
	right: 0;
	box-shadow: 0 0 15px rgba(0,0,0,0.5);
}

.menu_item{
	display: inline-block;
	width: auto;
	margin: 0 auto;
	padding: 1em 2em;
	vertical-align: middle;
	cursor: default;
	border-radius: 10px;
	border: 2px solid;
	border-color: transparent;
	-webkit-transition: border-color 0.5s;
}
.menu_item:hover{
	border-color: #2E2B36;
}

div#menu_btn{
	position: fixed;
	left: 0.1cm;
	top: 0.1cm;
	/* border-left: 2px solid white;
	border-right: 2px solid white;
	border-top: 2px solid transparent;
	border-bottom: 2px solid transparent; */
	background-image: url('../img/menu.png');
	background-repeat: no-repeat;
	background-position: center;
	width: 50px;
	height: 50px;
	border-radius: 20%;
	z-index: 200;
}

div#menu_mobile{
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 90%;
	height: 100%;
	background-color: rgba(207,129,62,0.80);
	z-index: 100;
	text-align: center;
	padding-top: 20%;
	padding-left: 20px;
	padding-right: 20px;
	border: 1px solid black;
}
.menu_mobile_item{
	background-color: rgba(207,129,62,0.80);
	display: inline-block;
	width: 50px;
	height: 50px;
	padding: 1em;
	cursor: default;
	border-radius: 50%;
	margin: 5px;
	border: 0px solid black;
	box-shadow: 0 0 10px rgba(0,0,0,0.75);
}
.menu_mobile_item i{
	border: 0px solid black;
	color: #2E2B36;
}