*,
*:after,
*::before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.hmr-Menu {
	position: fixed;
	top: 0;
	left: 0;
	width:100%;
	height: 0;
	border-width: 0;
	border-style: solid;
	border-color: #333333;
	background-color: rgba(0,0,0,0);
	-webkit-backface-visibility: hidden;
	-webkit-transition: border-width 0.3s, background-color 0.3s, height 0s 0.3s;
	transition: border-width 0.3s, background-color 0.3s, height 0s 0.3s;
}

.hmr-Menu.openIt {
	height: 100%;
	z-index: 1001;
	border-width: 0px 225px 0px 0px;
	background-color: rgba(0,0,0,0.3);
	-webkit-transition: border-width 0.3s, background-color 0.3s;
	transition: border-width 0.3s, background-color 0.3s;
}

.MenuOverlay {
	position: absolute;
	width: 100%;
}

.openIt .MenuOverlay {
	height: 100%;
}

.menuTrigger {
	position: fixed;
	top: 10px;
	right: 20px;
	z-index: 100;
	display: block;
	width: 50px;
	height: 50px;
	cursor: pointer;
}

.menuTrigger span {
	position: absolute;
	top: 50%;
	left: 0;
	display: block;
	width: 100%;
	height: 8%;
	background-color: #007CC2;
	font-size: 0px;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-transition: background-color 0.3s;
	transition: background-color 0.3s;
}

.menuTrigger span:before,
.menuTrigger span:after {
position: absolute;
left: 0;
width: 100%;
height: 100%;
background-color: #007CC2;
content: '';
-webkit-transition: -webkit-transform 0.3s;
transition: transform 0.3s;
}

.menuTrigger span:before {
	-webkit-transform: translateY(-250%);
	transform: translateY(-250%);
}

.menuTrigger span:after {
	-webkit-transform: translateY(250%);
	transform: translateY(250%);
}

.openIt .menuTrigger span:before {
	-webkit-transform: translateY(-300%);
	transform: translateY(-300%);
}

.openIt .menuTrigger span:after {
	-webkit-transform: translateY(300%);
	transform: translateY(300%);
}

.hmr-Menu ul {
position: fixed;
margin: 0;
padding: 0;
list-style: none;
width: 220px;
}

.hmr-Menu ul {
	top: 75px;
	right: 0;
}

.hmr-Menu ul li,
.hmr-Menu ul li a {
	display: flex;
	width: 100%;
}

.hmr-Menu ul li {
	visibility: hidden;
	opacity: 0;
	-webkit-transition: -webkit-transform 0.3s, opacity 0.2s, visibility 0s 0.3s;
	transition: transform 0.3s, opacity 0.2s, visibility 0s 0.3s;
}

.hmr-Menu.openIt ul li {
	visibility: visible;
	opacity: 1;
	-webkit-transition: -webkit-transform 0.3s, opacity 0.3s 0.1s;
	transition: transform 0.3s, opacity 0.3s;
}

.hmr-Menu ul li {
	height: 50px;
	line-height: 50px;
	-webkit-transform: translate3d(200%,100%,0);
	transform: translate3d(200%,100%,0);
}

.hmr-Menu.openIt ul li {
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}

.hmr-Menu ul li a {
padding: 0 20px;
box-shadow: inset 0 1px rgba(0,0,0,0.2);
color: #fff;
font-size: 16px;
-webkit-transition: color 0.2s;
transition: color 0.2s;
text-decoration: none;
justify-content: flex-end;
font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, sans-serif;
}

.hmr-Menu ul li:last-child a {
	box-shadow: inset 0 1px rgba(0,0,0,0.2), inset 0 -1px rgba(0,0,0,0.2);
}

.hmr-Menu ul li a:hover,
.hmr-Menu ul li a:focus {
	color: #487ee0;
}
@media only screen and (min-width: 500px) {
  #hmr-Menu {
    display: none;
  }
  .nav-ul {
    display: flex;
    flex-direction: row;
  }
}