@-webkit-keyframes slideInLeft {
  0% {
    -webkit-transform: translate3d(-50px, 0.4s ease);
            transform: translate3d(-50px, 0.4s ease);
    visibility: visible;
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInLeft {
  0% {
    -webkit-transform: translate3d(-50px, 0.4s ease);
            transform: translate3d(-50px, 0.4s ease);
    visibility: visible;
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
@-webkit-keyframes slideOutLeft {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(-0px, 0.4s ease);
            transform: translate3d(-0px, 0.4s ease);
    visibility: hidden;
  }
}
@keyframes slideOutLeft {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(-0px, 0.4s ease);
            transform: translate3d(-0px, 0.4s ease);
    visibility: hidden;
  }
}
* {
  box-sizing: border-box;
}



.b-nav {
  position: absolute;
  z-index: 11;
  background: rgb(255, 255, 255); /* Fall-back for browsers that don't support rgba */
  background: rgba(255, 255, 255, .7);
  top:92px;
  right:1%;
  border:#000 0px solid;
  padding:5px;
  font-family: 'PT Sans Narrow', sans-serif;
}
.b-nav:not(.open) {
  visibility: hidden;
}
.b-nav li {
  font-family: 'PT Sans Narrow', sans-serif;
  font-size:11px;
  color: #444444;
  list-style-type: none;
  padding: 5px;
  text-align: right;
}
.b-nav li:not(.open) {
  -webkit-animation-duration: 0.4s;
          animation-duration: 0.4s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-name: slideOutLeft;
          animation-name: slideOutLeft;
}
.b-nav li:first-child {
  padding-top: 10px;
}
.b-nav.open {
  visibility: visible;
}
.b-nav.open li {
  -webkit-animation-duration: 0.4s;
          animation-duration: 0.4s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-name: slideInLeft;
          animation-name: slideInLeft;
}

.b-link {
  background: transparent;
  color: #000;
  font-family: 'PT Sans Narrow', sans-serif;
  font-size:19px;
  font-weight: 300;
  margin-left: 30px;
  text-decoration: none;
  width: auto;
}
.b-link:hover, .b-link--active {
  border-right: #444444 solid 0px;
  padding-left: 0px;
  font-family: 'PT Sans Narrow', sans-serif;
}

.b-menu {
  background: transparent;
  border: #666 solid 0px;
  border-radius: 0%;
  cursor: pointer;
  display: inline-block;
  height: 40px;
  padding-left: 6.5px;
  padding-top: 8.5px;
  position: relative;
  float:right;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  width:95px;
  z-index: 12;
  font-family: 'PT Sans Narrow', sans-serif;

}
.b-menu:hover {
  border: #444444 solid 0px;
  font-family: 'PT Sans Narrow', sans-serif;
}

.b-bun {
  background: #444444;
  position: relative;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.b-bun--top {
  height: 2px;
  top: 0;
  width: 25px;
}
.b-bun--mid {
  height: 2px;
  top: 6px;
  width: 25px;
}
.b-bun--bottom {
  height: 2px;
  top: 12px;
  width: 25px;
}

.b-brand {
  color: #333;
  font-family: 'PT Sans Narrow', sans-serif;
  font-size: 17px;
  margin-right: 0px;
  position: relative;
  text-decoration: none;
  top:-30px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  z-index: 13;
  color:#333;
  text-align:left;
}

.b-container {
  height: 100%;
  width:100%;
  right: 0px;
  top: 0px;
}
.b-container:hover:not(.open) .bun-top,
.b-container:hover:not(.open) .bun-mid,
.b-container:hover:not(.open) .bun-bottom {
  background: white;
}
.b-container.open .b-main {
  border: #444444 solid 0px;
}
.b-container.open .b-bun--top {
  background: #444444;
  top: 9px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.b-container.open .b-bun--mid {
  opacity: 0;
}
.b-container.open .b-bun--bottom {
  background: #444444;
  top: 5px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.b-container.open .b-brand {
  color: #444444;
}
.no-bullets, .no-bullets li {
    list-style-type: none;
}

