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

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

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

header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  background: #ffffff;
  margin: 32px 0;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  max-height: 64px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

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

header .logo {
  width: 48px;
  height: 48px;
  padding: 8px 16px;
}

header .title {
  color: #202124;
  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-family: 'Google', Arial, Helvetica, sans-serif;
}

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

header .hidden-before-scroll.logo,
header .hidden-before-scroll.title {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 0;
}

header .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 .nav a {
  text-decoration: none;
  color: #202124;
  font-size: 24px;
  line-height: 32px;
  margin: auto;
  height: 32px;
  padding: 16px;
}

header .nav a:hover {
  color: #20212488;
}

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

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

header.sticky {
  -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 .logo,
header.sticky .title {
  opacity: 1;
}

header.sticky {
  background: #ffffff;
  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);
}

ul#navigationMenu {
  position: fixed;
  top: 64px;
  right: 0;
  background-color: #ffffff;
  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: 930px) {
  ul#navigationMenu {
    display: none;
  }
}

ul#navigationMenu li {
  width: 100%;
}

ul#navigationMenu li a {
  text-decoration: none;
  color: #202124;
  font-size: 24px;
  line-height: 56px;
  margin: auto;
  padding: 16px;
  text-align: center;
}

ul#navigationMenu li a:hover {
  color: #20212488;
}

.active {
  font-weight: 700;
}

.hidden {
  display: none;
}

.hidden-mobile {
  display: none;
}

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