aside {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 59, 113, 0.9);
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease;
  z-index: 9999;
}
.sub-nav-text{
	position:absolute;
	font-size:1rem;
	font-weight:500;
	bottom:-1.35rem;
	left:0;
	right:0;
	letter-spacing:0px;
	color:rgba(255,255,255,0.5);
	text-transform:none;
}
.open {
  opacity: 1;
  visibility: visible;
}

nav {
  text-align: center;
  height: 95vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
nav li a{
	font-size:4rem;
	color:#fff;
	font-weight:900;
	text-transform:uppercase;
	font-size:3rem;
	line-height:4.25rem;
	padding-bottom:0.5rem;
	width:500px;
	max-width:100%;
}
nav li a:hover {
  color: rgba(255, 255, 255, 0.9);
  -moz-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -o-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.close {
  position: fixed;
  top: 40px;
  right: 60px;
  z-index: 99999999;
  cursor: pointer;
  font-family: sans-serif;
	z-index:999999;
}

.close span,
.close span:before,
.close span:after {
  position: absolute;
  display: block;
  content: "";
}

.outer-close {
  position: absolute;
  right: 0;
  top: 0;
  width: 65px;
  height: 65px;
  cursor: pointer;
	z-index:999999;
}

.toggle-overlay {
	 top: 2.5rem;
    right: 2.5rem;
	position:relative;
  float:right;
  width: 65px;
  height: 65px;
  cursor: pointer;
  background: transparent;
  border: none;
  color: #fff;
    transform: translateZ(9999px); /* Moves it visually above other content */
  z-index: 99999;
}

.sticky-active .toggle-overlay {
    position: fixed;
    top: 2.5rem;
    right: 2.5rem;
}

.sticky-active #sticky-nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9998;
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}


.bar,
.bar:after,
.bar:before {
  width: 65px;
  height: 5px;
  margin-bottom: 5px;
  margin-top: 5px;
  color: #fff;
}
.bar:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 10px;
  background: #6785a9;
  transition: bottom 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1),
    transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
}

.bar:after {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  background: #6785a9;
  transition: top 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1),
    transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
}
.bar {
  position: relative;
  transform: translateY(20px);
  background: #6785a9;
  transition: all 0ms 300ms;
}

.bar.animate:after {
  top: 0;
  -moz-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: top 300ms cubic-bezier(0.23, 1, 0.32, 1),
    transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
}

.bar.animate:before {
  bottom: -10px;
  -moz-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: bottom 300ms cubic-bezier(0.23, 1, 0.32, 1),
    transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
}

.bar.animate {
  background: rgba(0, 0, 0, 0);
}

.hvr-underline-from-center:before{
	background:#fe7f19 !important;
}

.delete, .modal-close {
    background-color: rgba(10,10,10,.5);
}

@media screen and (max-width:500px){
.sub-nav-text{font-size:0.65rem;}
}