.menu-bar {
  background: #004364;
  padding: 1rem 1rem 1rem 20px;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

#open {
  position: relative;
  display: inline-block;
  padding-top: 0.5rem;
  width: 1.75rem;
  height: 1.25rem;
  cursor: pointer;
  outline: none;
  float: right;
}

#open span {
  display: block;
  position: absolute;
  width: 100%;
  height: 3px;
  background-color: white;
  transition: -webkit-transform .35s;
  transition: transform .35s;
  transition: transform .35s, -webkit-transform .35s;
}
#open span.top {
  -webkit-transform: translateY(-0.5rem);
          transform: translateY(-0.5rem);
}
#open span.bottom {
  -webkit-transform: translateY(0.5rem);
          transform: translateY(0.5rem);
}

.mobile-menu-open #open span.top {
  -webkit-transform: translateY(0) rotate(45deg);
          transform: translateY(0) rotate(45deg);
}
.mobile-menu-open #open span.middle {
  background-color: transparent;
}
.mobile-menu-open #open span.bottom {
  -webkit-transform: translateY(0) rotate(-45deg);
          transform: translateY(0) rotate(-45deg);
}

#mobile-nav {
  display: block;
  width: 100%;
  right: -100%;
  transition: right ease-in-out 0.35s;
  height: 100%;
  z-index: 1000;
  position: fixed;
  top: 0;
  outline: none;
}
#mobile-nav.menu-open {
  right: 0;
}
#mobile-nav nav.mobile-menu {
  background: #004364;
  opacity:0.95;
  padding-bottom: 6rem;
  text-decoration: none;
  overflow-y: scroll;
}
#mobile-nav ul {
  background: transparent;
  list-style: none;
  text-align: left;
  padding-left:20px;
  font-size: 24px;
  line-height: 2;
  
}
#mobile-nav a {
  color: #FFF;
  text-transform: uppercase;
  text-decoration: none;
  display: block;
}

div.social-links a{
  display: inline-block !important;
}

#mobile-nav a:hover, #mobile-nav a:focus, #mobile-nav a:active {
  text-decoration: none;
  
}

.mobile-menu-open {
  overflow-y: auto;
}

.mobile-menu li{
  border: solid;
  border-width: 0 0 2px 0;
  border-color: rgba(255,255,255,0.5);
  margin: 10px 0 0 0;
}

.mobile-menu .social-links{
  display: inline-block;
 padding: 20px 0 20px 20px;
}

.menu-bar .logo{
  cursor: pointer;
}

.mobile-menu .header-top-center__img{
  max-height: 100px;
  width: 280px;
  display: block;
}

