.header {
  z-index: 101;
  position: relative;
  background-color: #ffffff;
}
@media screen and (max-width: 768px) {
  .header {
    position: fixed;
    top: 0;
    width: 100%;
  }
}
.header__nav {
  border-bottom: 1px solid #cccccc;
  background-color: #ffffff;
  z-index: 111;
  position: relative;
  width: 100%;
}
.header__nav--container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .header__nav--container {
    flex-direction: column;
    align-items: unset;
    padding-right: 0;
  }
  .header__nav--container.portal-nav {
    padding-right: 3rem;
  }
}
.header__nav--top-bar {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .portal-nav .header__nav--top-bar {
    justify-content: flex-start;
    margin-top: 15px;
  }
}
.header__nav--top-bar .header__nav--menu-toggle {
  display: none;
  border: none;
  cursor: pointer;
  background: transparent;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .header__nav--top-bar .header__nav--menu-toggle {
    display: block;
    padding: 30px;
    margin-left: 0;
    font-size: 3rem;
  }
}
.header__nav--backbutton {
  padding-right: 2rem;
}
.header__nav--logo {
  max-width: 500px;
  min-width: 250px;
}
@media screen and (max-width: 768px) {
  .header__nav--logo {
    width: 250px;
  }
}
.portal-nav .header__nav--logo {
  max-width: 500px;
  min-width: 250px;
}
@media screen and (max-width: 768px) {
  .portal-nav .header__nav--logo {
    width: 250px;
  }
}

.header__nav--logo img {
  display: none;
}
@media screen and (max-width: 768px) {
  .header__nav--logo img.mobile {
    display: block;
  }
}
@media screen and (min-width: 769px) {
  .header__nav--logo img.desktop {
    display: block;
  }
}
.header__nav--egos-button .mss-btn--round {
  border-radius: 2rem;
  padding: 0.5rem 3rem;
  margin: 2.7rem 0;
  line-height: unset;
  min-height: unset;
}
@media screen and (max-width: 768px) {
  .header__nav--desktop {
    display: none;
  }
}
.header__nav--desktop > .menu {
  display: flex;
  align-items: baseline;
  margin: 0 1rem;
}
.header__nav--desktop > .menu > .menu-item {
  font-weight: bold;
}
.header__nav--desktop > .menu > .menu-item.menu-item--active-trail a {
  color: #01579b;
}
.header__nav--desktop > .menu > .menu-item.menu-item--active-trail::after {
  content: "";
  background-color: #01579b;
  bottom: -1px;
  display: block;
  height: 5px;
  position: absolute;
  width: 100%;
  left: 0;
}
.header__nav--desktop > .menu > .menu-item:nth-child(n+5):hover::after {
  display: none;
}
.header__nav--desktop > .menu > .menu-item:hover::after {
  content: "";
  width: 0;
  height: 0;
  background: transparent;
  border-top: 15px solid transparent;
  border-right: 15px solid transparent;
  border-bottom: 15px solid #f0f2f3;
  border-left: 15px solid transparent;
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translate(-50%, -50%);
}
.header__nav--desktop > .menu .menu {
  flex-direction: column;
  display: none;
  background-color: #f0f2f3;
  margin-left: 0;
  padding: 1rem;
}
.header__nav--desktop > .menu .menu .menu-item {
  width: 100%;
  font-weight: normal;
}
.header__nav--desktop > .menu .menu .menu-item a {
  padding: 1rem;
}
.header__nav--desktop > .menu .menu .menu-item a:hover {
  background-color: #01579b;
  color: #ffffff;
}
.header__nav--desktop > .menu .menu-item {
  list-style: none;
  position: relative;
  margin: 0;
}
.header__nav--desktop > .menu .menu-item:hover .menu {
  display: flex;
  position: absolute;
  margin-top: -7px;
  z-index: 99;
}
.header__nav--desktop > .menu .menu-item .fa-plus {
  display: none;
}
.header__nav--desktop > .menu .menu-item a {
  display: block;
  font-size: 1.8rem;
  padding: 1rem 1rem 3.2rem;
  white-space: nowrap;
  color: #1b2b34;
}
.header__nav--desktop > .menu .menu-item a:hover {
  text-decoration: none;
}
@media screen and (min-width: 769px) {
  .header__nav--desktop > .menu .menu-item .login-button,
  .header__nav--desktop > .menu .menu-item .logout-button,
  .header__nav--desktop > .menu .menu-item .egos-signup-link {
    background-color: #428533;
    color: #ffffff;
    border-radius: 2rem;
    padding: 0.5rem 2rem;
    margin-left: 1rem;
    font-size: 1.6rem;
  }
}
.user-logged-in .header__nav--desktop > .menu .menu-item .login-button {
  display: none;
}

.header__nav--mobile {
  display: none;
  right: 0;
  bottom: 0;
  top: 0;
  position: fixed;
  background: #ffffff;
  border-right: 0;
  flex-direction: column;
  overflow-y: auto;
  padding: 1rem 0 7rem;
  width: 100%;
  z-index: 500;
}
@media screen and (max-width: 768px) {
  .header__nav--mobile.menu--open {
    animation: slidein-left 0.6s ease-in-out;
    display: flex;
  }
  .header__nav--mobile.menu--open .fa-xmark {
    display: inline-block;
    text-align: right;
    font-size: 5.4rem;
    padding: 0 3rem 2rem;
  }
}
.header__nav--mobile .header__contact--search {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .header__nav--mobile .header__contact--search {
    margin: 0 40px 0 14px;
  }
}
.header__nav--mobile > .menu {
  margin: 2rem 0 0;
  padding-bottom: 120px;
}
.header__nav--mobile > .menu > .menu-item {
  display: flex;
  align-items: center;
  width: 100%;
  font-size: 2rem;
  border-top: 1px solid #f0f2f3;
  padding-top: 0;
  flex-wrap: wrap;
}
.header__nav--mobile > .menu > .menu-item > a {
  display: block;
  font-weight: bold;
  padding: 0.5rem 0 0.5rem 1rem;
  margin: 0.5rem 0 0.5rem 3rem;
  flex: 1;
  color: #1b2b34;
}
.header__nav--mobile > .menu > .menu-item > a.my-account-link {
  flex: unset;
}
.header__nav--mobile > .menu > .menu-item > a.my-account-link.is-active {
  color: #1a2b34;
  border: 0.2rem solid #1a2b34;
}
.header__nav--mobile > .menu > .menu-item--active-trail > a {
  border-left: 5px solid #01579b;
  color: #01579b;
}
.header__nav--mobile > .menu > .menu-item span {
  display: none;
}
.header__nav--mobile > .menu > .menu-item--expanded > span {
  display: inline-block;
  font-size: 2rem;
  padding: 1rem 4rem;
  margin-left: auto;
  cursor: pointer;
}
.header__nav--mobile .menu {
  display: block;
  align-items: baseline;
  list-style: none;
}
.header__nav--mobile .menu .menu-item {
  line-height: 1.8;
}
.header__nav--mobile .menu .menu {
  display: none;
  width: 100%;
}
.header__nav--mobile .menu .menu--open {
  display: block;
}
.header__nav--mobile .menu .menu--open::before {
  display: none;
}
.header__nav--mobile .menu .menu--open a {
  display: block;
  padding: 5px 0;
  margin-left: 36px;
  font-size: 1.8rem;
  color: #1b2b34;
}
.header__nav--mobile .menu .menu--open a:visited {
  color: #1b2b34;
}
.header__nav--mobile .menu .menu--open a:hover {
  color: #54278f;
}
.header__nav--mobile .menu .menu--open a:active, .header__nav--mobile .menu .menu--open a.is-active {
  color: #01579b;
}
.header__usa-banner.banner--open .header__usa-banner-header .header__usa-banner-inner .header__usa-banner-content {
  display: flex;
  z-index: 101;
}
@media screen and (max-width: 768px) {
  .header__usa-banner.banner--open .header__usa-banner-header .header__usa-banner-inner .header__usa-button {
    visibility: hidden;
  }
}
@media screen and (max-width: 768px) {
  .header__usa-banner.banner--open .header__usa-banner-header .header__usa-banner-inner .header__usa-mobile-banner-button {
    display: inline-block;
    cursor: pointer;
  }
}
.header__usa-banner .header__usa-banner-header {
  background-color: #1b2b34;
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 768px) {
  .header__usa-banner .header__usa-banner-header .header__usa-banner-inner {
    padding: 1.12rem 0;
  }
}
.header__usa-banner .header__usa-banner-header .header__usa-banner-inner img {
  height: 2rem;
  width: 2rem;
}
.header__usa-banner .header__usa-banner-header .header__usa-banner-inner span {
  font-size: 1.2rem;
  margin-left: 1rem;
  color: #ffffff;
}
@media screen and (max-width: 768px) {
  .header__usa-banner .header__usa-banner-header .header__usa-banner-inner span {
    font-size: 1.34rem;
    margin-left: 3.34rem;
  }
}
.header__usa-banner .header__usa-banner-header .header__usa-banner-info {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .header__usa-banner .header__usa-banner-header .header__usa-banner-info {
    position: relative;
    flex-wrap: wrap;
  }
  .header__usa-banner .header__usa-banner-header .header__usa-banner-info > img {
    position: absolute;
  }
}
.header__usa-banner .header__usa-banner-header .header__usa-banner-info .header__usa-button {
  padding: 0;
  margin-left: 1.5rem;
  position: relative;
  background-color: transparent;
  border: none;
  display: flex;
  align-items: center;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .header__usa-banner .header__usa-banner-header .header__usa-banner-info .header__usa-button {
    margin-left: 0;
  }
}
.header__usa-banner .header__usa-banner-header .header__usa-banner-info .header__usa-button .header__usa-banner-button-text {
  color: #a1d3ff;
  font-size: 1.2rem;
  letter-spacing: 0;
}
@media screen and (max-width: 768px) {
  .header__usa-banner .header__usa-banner-header .header__usa-banner-info .header__usa-button .header__usa-banner-button-text {
    font-size: 1.34rem;
  }
}
.header__usa-banner .header__usa-banner-header .header__usa-banner-info .header__usa-button .fa-angle-down {
  height: 4.8rem;
  width: 4.8rem;
  color: #a1d3ff;
  display: flex;
  align-items: center;
  margin-left: 7px;
}
@media screen and (max-width: 768px) {
  .header__usa-banner .header__usa-banner-header .header__usa-banner-info .header__usa-button .fa-angle-down {
    height: 2rem;
  }
}
.header__usa-banner .header__usa-banner-header .header__usa-banner-info .header__usa-mobile-banner-button {
  display: none;
  border: none;
  font-size: 1.2rem;
  padding: 0.5rem;
  margin-left: auto;
}
.header__usa-banner .header__usa-banner-header .header__usa-banner-content {
  display: none;
  background-color: #1b2b34;
  color: #ffffff;
  position: relative;
  padding: 3rem 2rem;
  max-width: 1200px;
}
@media screen and (max-width: 768px) {
  .header__usa-banner .header__usa-banner-header .header__usa-banner-content {
    flex-direction: column;
    padding: 0;
    margin: 1rem 0;
  }
}
.header__usa-banner .header__usa-banner-header .header__usa-banner-content .header__usa-banner-guidance {
  display: flex;
  margin: 0 1rem;
  width: 75%;
}
@media screen and (max-width: 768px) {
  .header__usa-banner .header__usa-banner-header .header__usa-banner-content .header__usa-banner-guidance {
    width: 100%;
    margin: 0;
  }
}
.header__usa-banner .header__usa-banner-header .header__usa-banner-content .header__usa-banner-guidance .header__usa-banner-icon {
  height: 4rem;
  width: 4rem;
  align-self: flex-start;
}
.header__usa-banner .header__usa-banner-header .header__usa-banner-content .header__usa-banner-guidance .header__usa-banner-guidance-body {
  margin-left: 0.8rem;
}
.header__usa-banner .header__usa-banner-header .header__usa-banner-content .header__usa-banner-guidance .header__usa-banner-guidance-body p {
  margin: 0;
}
@media screen and (max-width: 768px) {
  .header__usa-banner .header__usa-banner-header .header__usa-banner-content .header__usa-banner-guidance .header__usa-banner-guidance-body {
    margin: 0.5rem 0 0.5rem 0.8rem;
  }
}
.header__contact {
  display: flex;
  background-color: #ffffff;
}
@media screen and (max-width: 768px) {
  .header__contact {
    background-color: #f0f2f3;
    padding: 10px;
  }
}
.header__contact--container {
  display: flex;
  flex-direction: row;
}
@media screen and (max-width: 768px) {
  .header__contact--container {
    padding: 0;
    justify-content: space-around;
  }
}
@media screen and (min-width: 769px) {
  .header__contact--container {
    flex-direction: row;
    align-items: center;
  }
}
@media screen and (max-width: 768px) {
  .header__contact--links {
    padding: 0.25rem;
  }
}
@media screen and (max-width: 768px) {
  .header__contact--links span:nth-child(1) a {
    margin: 0;
  }
}
.header__contact--search {
  margin-right: 4.8rem;
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .header__contact--search {
    margin-right: 1rem;
  }
}
@media screen and (max-width: 768px) {
  .header__contact--search {
    display: none;
  }
}
.header__contact--search .custom-search {
  z-index: 9999;
  color: #01579b;
  margin-left: -4.5rem;
}
.header__contact--search .block-views-exposed-filter-blockacquia-search-page {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.header__contact--search .block-views-exposed-filter-blockacquia-search-page h2 {
  display: none;
}
.header__contact--search .block-views-exposed-filter-blockacquia-search-page label {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}
@media screen and (max-width: 768px) {
  .header__contact--search .block-views-exposed-filter-blockacquia-search-page {
    width: 100%;
  }
  .header__contact--search .block-views-exposed-filter-blockacquia-search-page form,
  .header__contact--search .block-views-exposed-filter-blockacquia-search-page form .form-item-search {
    width: 100%;
    margin: 0;
  }
}
.header__contact--search .block-views-exposed-filter-blockacquia-search-page #edit-search,
.header__contact--search .block-views-exposed-filter-blockacquia-search-page #edit-search--2,
.header__contact--search .block-views-exposed-filter-blockacquia-search-page #edit-search--3,
.header__contact--search .block-views-exposed-filter-blockacquia-search-page #edit-search-api-fulltext,
.header__contact--search .block-views-exposed-filter-blockacquia-search-page #edit-search-api-fulltext--2,
.header__contact--search .block-views-exposed-filter-blockacquia-search-page #edit-search-api-fulltext--3 {
  width: 20rem;
  color: #1b2b34;
  font-size: 1.3rem;
  border-radius: 20rem;
  padding: 1rem 3rem 1rem 1.3rem;
  outline: none !important;
}
@media screen and (max-width: 768px) {
  .header__contact--search .block-views-exposed-filter-blockacquia-search-page #edit-search,
  .header__contact--search .block-views-exposed-filter-blockacquia-search-page #edit-search--2,
  .header__contact--search .block-views-exposed-filter-blockacquia-search-page #edit-search--3,
  .header__contact--search .block-views-exposed-filter-blockacquia-search-page #edit-search-api-fulltext,
  .header__contact--search .block-views-exposed-filter-blockacquia-search-page #edit-search-api-fulltext--2,
  .header__contact--search .block-views-exposed-filter-blockacquia-search-page #edit-search-api-fulltext--3 {
    width: 100%;
    font-size: 1.56rem;
  }
}
.header__contact--search .block-views-exposed-filter-blockacquia-search-page #edit-submit-acquia-search,
.header__contact--search .block-views-exposed-filter-blockacquia-search-page #edit-submit-acquia-search--2,
.header__contact--search .block-views-exposed-filter-blockacquia-search-page #edit-submit-acquia-search--3,
.header__contact--search .block-views-exposed-filter-blockacquia-search-page #edit-reset--2,
.header__contact--search .block-views-exposed-filter-blockacquia-search-page #edit-sort-by,
.header__contact--search .block-views-exposed-filter-blockacquia-search-page #edit-sort-by--2,
.header__contact--search .block-views-exposed-filter-blockacquia-search-page #edit-sort-by--3 {
  display: none;
}
.header__contact a {
  font-size: 1.7rem;
  color: #1b2b34;
  text-decoration: none;
  margin: 0 1rem;
}
.header .hidden-text {
  font-size: 0;
}

.region-lms-header .header .agency-banner {
  display: block;
}
.region-lms-header .header .agency-banner--logos img {
  height: 1.9rem;
}
.region-lms-header .header .logged-out {
  display: block;
}
.region-lms-header .header a.logged-in {
  display: none;
}
.region-lms-header .header .sign-up-link {
  color: #ffffff !important;
  background-color: #1a2b34;
  border: 3px solid #1a2b34;
  border-radius: 16px;
  padding: 0 15px !important;
  flex: unset !important;
  margin-left: 10px;
}
@media (max-width: 1024px) {
  .region-lms-header .header .sign-up-link {
    margin-top: 10px !important;
    border-radius: 18px;
  }
}
@media screen and (max-width: 768px) {
  .region-lms-header .header .sign-up-link {
    margin-left: 0;
  }
}
.region-lms-header .header .my-account-link {
  color: #ffffff;
  background-color: #fff;
  border: 0.2rem solid #1a2b34;
  border-radius: 16px;
  padding: 0 15px !important;
  margin-left: 15px;
}
.region-lms-header .header .my-account-link::before {
  content: "\f007";
  font: normal normal normal 14px/1 "Font Awesome 6 Pro";
  margin-right: 5px;
}
.region-lms-header .header .block-lms-branding {
  padding: 1.5rem 0;
}
.region-lms-header .header__nav--desktop .menu > .menu-item.menu-item--active-trail a {
  color: #1a2b34;
}
.region-lms-header .header__nav--desktop .menu > .menu-item.menu-item--active-trail::after {
  background-color: transparent;
}
.region-lms-header .header__nav--desktop > .menu > .menu-item:hover::after {
  display: none;
}
.region-lms-header .header__nav--desktop > .menu .menu-item a {
  padding: 1rem;
}
.region-lms-header .header__nav--desktop > .menu .menu-item a::after {
  content: none;
}
.region-lms-header .header__nav--mobile .agency-banner {
  display: none;
}

.user-logged-in .header .header__nav--desktop .logged-in,
.user-logged-in .header .header__nav--mobile .logged-in {
  display: block;
}
.user-logged-in .header .header__nav--desktop .logged-out,
.user-logged-in .header .header__nav--mobile .logged-out {
  display: none;
}

@keyframes slidein-left {
  from {
    transform: translateX(768px);
  }
  to {
    transform: translateX(0);
  }
}