@import "https://fonts.googleapis.com/css?family=Fira+Sans:300,400";
@import "https://fonts.googleapis.com/icon?family=Material+Icons";
/* SVG */
.mgz-header-svg svg {
  display: block;
  width: 100%; }

.nav-drill ul {
  list-style-type: none;
  padding: 0px; }
.nav-drill a {
  text-decoration: none; }

.top-spacer {
  width: 100%; }

.mgz-nav-top-04 {
  /* large screen functionality */ }
  .mgz-nav-top-04 {
    position: fixed;
    z-index: 99;
    border-bottom-width: 6px;
    border-bottom-style: solid;
    padding: 0px 0px;
    width: 100%; }
  .mgz-nav-top-04 .mgz-nav-wrapper-04 {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    align-items: center;
    width: 100%;
    border-bottom-width: 2px;
    border-bottom-style: solid; }
    .mgz-nav-top-04 .mgz-nav-wrapper-04 .mgz-nav-top-items {
      display: -webkit-box;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      flex-direction: column;
      -webkit-box-flex: 3;
      flex-grow: 3;
      -webkit-box-align: space-between;
      align-items: space-between;
      -webkit-box-pack: center;
      justify-content: center;
      padding: 5px 0px; }
      .mgz-nav-top-04 .mgz-nav-wrapper-04 .mgz-nav-top-items .mgz-nav-svg-items {
        display: -webkit-box;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        flex-direction: row;
        -webkit-box-pack: space-evenly;
        justify-content: space-evenly;
        -webkit-box-flex: 1;
        flex-grow: 1; }
      .mgz-nav-top-04 .mgz-nav-wrapper-04 .mgz-nav-top-items .mgz-nav-menu-items {
        display: -webkit-box;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        flex-direction: row;
        justify-content: space-around;
        -webkit-box-flex: 1;
        flex-grow: 1; }
  .mgz-nav-top-04 .nav-menu-item {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    align-content: center;
    -webkit-box-pack: end;
    justify-content: flex-end; }
  .mgz-nav-top-04 .nav-menu-item a {
    /* margin-block-end: 1em; */
    text-decoration: none;
    padding-bottom: 5px; }
  .mgz-nav-top-04 .nav-menu-item-header {
    cursor: pointer;
    font-size: 16px; }
  .mgz-nav-top-04 .nav-dropdown-items {
    position: absolute;
    /* top: 78px; */
    display: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column; }
  .mgz-nav-top-04 .nav-dropdown-items > a {
    text-decoration: none;
    font-size: 1.2rem;
    padding: 5px 20px 5px 5px; }
  .mgz-nav-top-04 .nav-menu-item:hover .nav-dropdown-items {
    display: -webkit-box;
    display: flex; }
  .mgz-nav-top-04 .nav-wrapper-small {
    display: none; }
  .mgz-nav-top-04 .hamburger {
    padding: 20px;
    visibility: hidden; }
    .mgz-nav-top-04 .hamburger span {
      visibility: hidden; }
  .mgz-nav-top-04 svg {
    max-height: 30px; }
  .mgz-nav-top-04 body {
    font-size: 16px;
    line-height: 1.875em; }
    .mgz-nav-top-04 body::after {
      content: '';
      position: absolute;
      z-index: 99;
      height: 100vh;
      width: 100vw;
      -webkit-transition: 0.4s;
      transition: 0.4s;
      opacity: 0;
      visibility: hidden; }

.nav-drill {
  -webkit-transform: translateX(100%);
  transform: translateX(100%); }

.nav-is-toggled .nav-drill {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  visibility: visible; }
.nav-is-toggled::after {
  opacity: 1;
  visibility: visible; }

.nav-drill {
  display: -webkit-box;
  display: flex;
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  width: 300px;
  height: 100vh;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  -webkit-transition: 0.45s;
  transition: 0.45s; }
.nav-items {
  -webkit-box-flex: 0;
  flex: 0 0 100%; }
.nav-link {
  display: block;
  padding: 0.875em 1em;
  font-size: 1rem;
  line-height: 1.5em;
  font-weight: 300; }
.nav-expand-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  visibility: hidden; }
  .nav-expand-content .nav-item:not(:last-child) {
    border-bottom-style: solid;
    border-bottom-width: 1px; }
  .nav-expand-content .nav-back-link {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center; }
    .nav-expand-content .nav-back-link::before {
      margin-right: 0.5em; }
.nav-expand-link {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between; }
  .nav-expand-link::after {
    -webkit-box-flex: 0;
    flex: 0 1 auto; }
.nav-expand.active > .nav-expand-content {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  visibility: visible; }

@media screen and (min-width: 0px) and (max-width: 767px) {
  .mgz-nav-top-04 .hamburger {
    cursor: pointer;
    visibility: visible; }
    .mgz-nav-top-04 .hamburger span {
      visibility: visible; }
  .mgz-nav-top-04 .mgz-nav-top-items {
    display: none; }
    .mgz-nav-top-04 .mgz-nav-top-items div {
      display: none; }
    .mgz-nav-top-04 .mgz-nav-top-items svg {
      width: 80px; } }

/*# sourceMappingURL=mgz-nav04.css.map */
