.nav__logo {
  width: 200px;
  transition: width .2s ease-in-out
}
.nav__container {
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  padding: 1em 2em;
  background: #fff;
  z-index: 1000;
  position: absolute;
}
body.home .nav__container {
  top: calc(100vh - 120px);
  // border-top: 1px solid rgba(0,0,0,.5);
}
.nav__container.nav--fixed {
  position: fixed;
  top: 0!important;
  margin-top: 0;
  background: #fff;
  border-bottom: 1px solid #ccc;
  border-top: none;
  z-index: 1;
  box-shadow: 0 0 20px rgba(0,0,0,.5);;
}
.admin-bar .nav__container.nav--fixed {
  // top: 32px;
}
.nav__container.nav--fixed .nav__logo {
  width: 100px;
}
.nav__container a {
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  padding: .5em;
  color: #052754;
  font-weight: 800;
  font-size: 1em;
}

.nav__container a.btn {
}
.nav__links {
  margin: 0;
  padding: 0;
  list-style: none;
  float: right;
}
.nav__link,
.menu-item {
  display: inline-block;
}
.nav__link a:hover,
.menu-item a:hover {
  background: #eee;
}
.nav__sublinks {
  position: absolute;
  display: none;
  margin-left: -.5em;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,.1);
  z-index: 3;
}
.nav__link:hover .nav__sublinks,
.nav__link:active .nav__sublinks {
  display: block;
}
.nav__sublink {
  display: block;
}
.nav__sublink a {
  display: block;
  padding: 1em 1em .5em;
}
.nav__burger {
  display: none;
}

@media (max-width: 600px) {
  .nav__container a {
    font-size: 0.8em;
  }
}

@media (max-width: 550px) {
  .nav__container {
    position: fixed!important;
    top: 0!important;
    margin-top: 0;
    background: #fff;
    border-bottom: 1px solid #ccc;
    border-top: none;
    z-index: 1;
    box-shadow: 0 0 20px rgba(0,0,0,.5);;
  }
  .nav__logo {
    width: 100px;
  }
  .nav__burger {
    width: 30px;
    min-width: 30px;
    padding: 0;
    margin: 0;
    margin-left: 10px;
    outline: none;
    border: none;
    background-color: #fff;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    display: block;
  }
  .nav__burger--bun,
  .nav__burger--patty {
    width: 27px;
    height: 3px;
    background-color: #012C53;
    position: absolute;
  }
  .nav__burger--bun:nth-child(1) {
    margin-top: -10px;
  }
  .nav__burger--bun:nth-child(3) {
    margin-top: 10px;
  }

  .active .nav__burger--bun:nth-child(1) {
    transform: rotate(45deg);
    transform-origin: bottom left;
    transition: transform .4s ease-out;
  }
  .active .nav__burger--patty {
    transform: scaleX(0);
    transition: transform .1s ease-in;
  }
  .active .nav__burger--bun:nth-child(3) {
    transform: rotate(-45deg);
    transform-origin: top left;
    transition: transform .3s ease-in-out;
  }
  .nav--full {
    display: none;
  }
  .active .nav--full {
    display: block;
    position: fixed;
    background: rgba(255,255,255,.8);
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100vh;
    text-align: center;
    padding-top: 20vh;
  }
  .active .nav--full .menu-item {
    display: block;
    font-size: 2em;
  }
}