@font-face {
  font-family: Google;
  src: url(../fonts/Google-Sans-Font/GoogleSans-Regular.ttf);
}

@font-face {
  font-family: Roboto;
  src: url(../fonts/Roboto/Roboto-Regular.ttf);
}

@font-face {
  font-family: Roboto-light;
  src: url(../fonts/Roboto/Roboto-Light.ttf);
}

header {
  position: absolute;
  margin: 32px 0;
  width: 100%;
  color: #212121;
  max-height: 64px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (min-width: 980px) {
  header {
    padding: 0 32px;
    width: calc(100% - 64px);
  }
}

header div.header-content {
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  width: 980px;
  max-width: 100%;
}

header div.header-content .logo {
  width: auto;
  height: 56px;
  padding: 4px;
  opacity: 0;
}

header div.header-content .title {
  font-size: 24px;
  line-height: 32px;
  padding: 16px;
  margin: 0;
  min-width: -webkit-min-content;
  min-width: -moz-min-content;
  min-width: min-content;
  white-space: nowrap;
  text-align: center;
  width: 100%;
  font-weight: 300;
}

@media (min-width: 980px) {
  header div.header-content .title {
    text-align: left;
    width: auto;
    font-size: 32px;
  }
}

header div.header-content .nav {
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  height: 32px;
  padding: 16px;
  min-width: 32px;
  margin: auto 0 auto auto;
}

header div.header-content .nav a {
  text-decoration: none;
  font-size: 24px;
  line-height: 32px;
  margin: auto;
  height: 32px;
  padding: 16px;
}

header div.header-content .nav ul {
  position: absolute;
  top: 100%;
  right: 0;
  list-style: none;
  margin: 0;
  padding: 16px;
  -webkit-box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
          box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

@media (min-width: 980px) {
  header div.header-content .nav ul {
    display: none;
  }
}

header div.header-content .nav ul li {
  width: 100%;
}

header div.header-content .nav ul li a {
  text-decoration: none;
  font-size: 24px;
  line-height: 56px;
  margin: auto;
  padding: 16px;
  text-align: center;
}

header div.header-content .nav .hamburger {
  color: #212121;
  position: absolute;
  right: 16px;
  height: 32px;
  float: right;
  margin: 0;
}

@media (min-width: 980px) {
  header div.header-content .nav .hamburger {
    display: none;
  }
}

header.sticky {
  color: #fff;
  position: fixed;
  top: 0;
  margin-top: 0;
  z-index: 100;
  -webkit-box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
          box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

header.sticky div .logo {
  opacity: 1;
}

.active {
  font-weight: 700;
}

.hidden {
  display: none;
}

.hidden-mobile {
  display: none;
}

@media (min-width: 980px) {
  .hidden-mobile {
    display: inline;
  }
}
