header {
  color: var(--prim-color);
  height: 10vh;
  background-color: var(--bg);
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 10%;
  width: 100%;
}

header .name {
  line-height: 0.9em;
  font-family: Starout, Montserrat, Arial;
  font-weight: 500;
}

.ham {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 16px;
  width: 30px;
}

.ham.open .ham__line {
  width: 100%;
  -webkit-transform-origin: left;
          transform-origin: left;
}

.ham.open .ham__line--1 {
  -webkit-transform: rotate(35deg);
          transform: rotate(35deg);
}

.ham.open .ham__line--2 {
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  opacity: 0;
}

.ham.open .ham__line--3 {
  -webkit-transform: rotate(-35deg);
          transform: rotate(-35deg);
}

.ham__line {
  position: relative;
  width: 100%;
  height: 1px;
  background-color: white;
  border-radius: 10px;
  -webkit-transition: 750ms all cubic-bezier(0.68, -0.55, 0.27, 1.55), 500ms width cubic-bezier(0.68, -0.55, 0, 2.18);
  transition: 750ms all cubic-bezier(0.68, -0.55, 0.27, 1.55), 500ms width cubic-bezier(0.68, -0.55, 0, 2.18);
}

.ham__line--1, .ham__line--3 {
  width: 85%;
  -ms-flex-item-align: start;
      -ms-grid-row-align: start;
      align-self: start;
}

.ham__line--2 {
  width: 70%;
  opacity: 1;
}

.ham__line--3 {
  -ms-flex-item-align: end;
      -ms-grid-row-align: end;
      align-self: end;
}

.ham:hover .ham__line {
  width: 100%;
}
/*# sourceMappingURL=navbar.css.map */