header {
  height: 80px;
  background-color: #617780;
  display: flex;
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 20;
}
header .main-navigation {
  width: 100%;
}
header .site-title {
  font-size: 1.2em;
  font-weight: 380;
  width: 300px;
  margin-left: 100px;
}
header .site-title a {
  color: white;
}
header nav {
  position: relative;
}
header ul {
  display: flex;
  justify-content: flex-end;
  margin-right: 7%;
  z-index: 12;
  list-style-type: none;
}
header li {
  margin-right: 35px;
  font-size: 1.1em;
  font-weight: 370;
}
header li a {
  color: white;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  text-decoration: none;
}
header li a:hover,
header li a:focus {
  text-decoration: none;
}
header li a:focus-visible,
.menu-toggle:focus-visible {
  outline: 2px solid white;
  outline-offset: 5px;
}

.site-title {
  font-size: 1.1em;
  line-height: 80px;
}

.skip-link {
  display: none;
}

.menu-toggle {
  display: none;
}

.children-links {
  font-size: 14px;
  margin-left: 0%;
  margin-top: 0px;
  display: flex;
  background-color: transparent;
  height: 40px;
  justify-content: flex-end;
}
.children-links ul {
  display: flex;
  margin-left: 8px;
  align-items: center;
  margin-right: 6%;
  font-size: 14px;
}
.children-links li {
  margin-right: 20px;
  margin-left: 20px;
}
.children-links a {
  color: #617780;
}
.children-links a:hover {
  text-decoration: underline;
}

.parent-link-list {
  list-style: none;
}
.parent-link-list a {
  text-decoration: none;
}

.parent-link {
  margin-right: 0px;
}
.parent-link a {
  line-height: 40px;
  font-weight: 400;
  font-size: 14px;
  text-decoration: none;
}
.parent-link a:hover {
  text-decoration: underline;
}

.dropdown {
  display: none;
}

.sub-menu-seperator {
  color: #617780;
  margin-left: 30px;
  line-height: 40px;
  margin-right: 5px;
  font-size: 12px;
}

.site-branding {
  width: 200px;
  margin-left: 5%;
  display: flex;
  justify-content: flex-end;
}

.site-branding img {
  height: 55px;
  width: auto;
  vertical-align: middle;
}

.site-branding-mobile {
  display: none;
}

.menu-item-type-custom {
  margin-right: 15px !important;
  font-size: 20px;
}

@media only screen and (max-width: 950px) {
  .site-title {
    display: none;
  }
  .site-branding {
    display: none;
  }
  .menu-item-type-custom {
    font-size: 36px;
  }
  .site-branding-mobile {
    height: 50px;
    width: 100%;
    display: flex;
    justify-content: flex-end;
    margin-right: 10%;
  }
  .site-branding-mobile img {
    height: 50px;
    width: auto;
  }
  .parent-link a {
    font-size: 16px;
  }
  .menu-toggle {
    display: block;
  }
  .menu-primary-menu-container {
    width: 0;
  }
  header .main-navigation {
    width: 150px;
  }
  nav {
    flex-wrap: wrap;
    height: 100%;
    z-index: 1000;
  }
  nav ul {
    flex-direction: column;
    position: fixed;
    top: 80px;
    bottom: 0;
    left: 0;
    margin-top: 0;
    margin-right: 0;
    background-color: #617780;
    box-shadow: none;
    transition: transform 0.4s ease;
    display: block;
    transform: translateX(-300px);
    height: auto;
    isolation: isolate;
    overflow-y: auto;
    width: 300px;
    opacity: 1;
    pointer-events: none;
    visibility: hidden;
    z-index: 1000;
  }
  nav li {
    background-color: #617780;
    display: block;
    margin-left: 50px;
    line-height: 70px;
    margin-right: 0;
    position: relative;
    width: 200px;
    z-index: 1;
  }
  nav a {
    background-color: #617780;
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    line-height: 70px;
    min-height: 70px;
    opacity: 1;
    position: relative;
    width: 100%;
    z-index: 1;
  }
  nav .menu-item-object-page > a::after {
    content: "";
    border-bottom: 2px solid white;
    border-right: 2px solid white;
    flex: 0 0 auto;
    height: 8px;
    margin-left: auto;
    opacity: 1;
    transform: rotate(-45deg);
    width: 8px;
  }
  nav .menu-item-1883 > a::after {
    content: none;
  }
  .menu-item-object-custom {
    display: none;
  }
  .toggled ul {
    transition: transform 0.4s ease;
    transform: translateX(0px);
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
  }
  .hamburger-icon {
    width: 50px;
    height: 50px;
    margin-top: 15px;
    margin-left: 34px;
    padding: 10px;
    background-color: transparent;
    border: none;
    outline: none;
    cursor: pointer;
  }
  .hamburger-icon span {
    height: 2px;
    width: 30px;
    background-color: white;
    display: block;
    margin: 5px 0px 5px 0px;
    transition: all 0.3s ease;
  }
  .hamburger-icon .line2 {
    width: 24px;
    height: 2px;
  }
  .toggled .hamburger-icon .line2 {
    opacity: 0;
  }
  .toggled .hamburger-icon .line3 {
    transform: rotate(-45deg) translate(3px, -7px);
  }
  .toggled .hamburger-icon .line1 {
    transform: rotate(45deg) translate(3px, 7px);
  }
  .children-links {
    display: none;
  }
  .dropdown {
    display: block;
    width: 100%;
  }
  .dropbtn {
    background-color: white;
    font-family: "ubuntu";
    color: #617780;
    padding: 16px;
    font-size: 1em;
    border: none;
    cursor: pointer;
    width: 100%;
    height: 50px;
  }
  .dropbtn i {
    margin-left: 6px;
  }
  .dropbtn:hover,
  .dropbtn:focus {
    background-color: white;
  }
  .dropdown {
    position: relative;
    display: inline-block;
  }
  .dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    z-index: 1;
    width: 100%;
  }
  .dropdown-content li {
    text-decoration: none;
    display: block;
    text-align: center;
    font-family: "ubuntu";
    font-size: 1em;
    padding: 10px;
    line-height: 40px;
    border-bottom: solid lightgray 0.5px;
  }
  .dropdown-content li a {
    color: #617780;
    display: inline-block;
    text-decoration: none;
    width: 100%;
  }
  .dropdown-content li a:hover {
    text-decoration: underline;
  }
  .parent-link {
    text-decoration: none;
    display: block;
    text-align: center;
    font-family: "ubuntu";
    font-size: 1em;
  }
  .show {
    display: block;
  }
}
@media only screen and (max-width: 400px) {
  .site-branding-mobile {
    margin-left: 10%;
  }
}/*# sourceMappingURL=nav.css.map */
