html.set_contrast {
  mix-blend-mode: difference;
  background-color: #fff;
  filter: none;
}

body {
  max-width: 1600px;
  margin: 0 auto !important;
}
body .container-fluid {
  padding-left: 0;
  padding-right: 0;
}
body .container-fluid .row {
  margin-right: 0;
  margin-left: 0;
  display: flex;
}
body .container-fluid .col-auto,
body .container-fluid .col {
  padding-left: 0;
  padding-right: 0;
}
body .outelement {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

#page-wrapper,
#page {
  max-width: 1600px;
  margin: 0 auto !important;
  width: 100%;
}

#main-wrapper {
  width: 100%;
  margin: 0 auto !important;
  max-width: 1600px;
}
#main-wrapper #main.container {
  max-width: 100% !important;
  padding-left: 15px;
  padding-right: 15px;
}

.container,
.container-fluid {
  max-width: 1600px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.layout-main-wrapper {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto !important;
}

@media (min-width: 280px) and (max-width: 767px) {
  body {
    max-width: 100% !important;
  }
  .container,
  .container-fluid {
    max-width: 100% !important;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  body {
    max-width: 100% !important;
  }
  .container,
  .container-fluid {
    max-width: 100% !important;
  }
}
@media (min-width: 1025px) {
  body {
    max-width: 1600px !important;
  }
  .container,
  .container-fluid {
    max-width: 1600px !important;
  }
}
.header {
  background-color: var(--ra-bg-brand);
  color: var(--ra-text-primary);
}

.header a {
  color: var(--ra-text-primary);
}

.header a:hover {
  color: var(--ra-color-hover);
}

.header {
  position: relative;
  z-index: 100;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.header__search {
  display: flex;
  align-items: center;
}
.header__search form {
  display: flex;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  background: var(--ra-bg-primary);
  border-radius: 999px;
  overflow: hidden;
  align-items: center;
  box-shadow: var(--ra-shadow-sm);
  height: 32px;
  border: none;
  outline: none;
}
.header__search form:focus-within {
  box-shadow: var(--ra-shadow-sm);
  border: none;
  outline: none;
}
.header__search input[type=search],
.header__search input[type=text] {
  flex: 1;
  height: 100%;
  padding: 0 1rem;
  border: none;
  background: transparent;
  font-size: 1.125rem; /* 18px -> rem */
  color: var(--ra-text-primary);
  line-height: 32px;
  box-sizing: border-box;
  vertical-align: middle;
  outline: none !important;
  box-shadow: none !important;
}
.header__search input[type=search]::placeholder,
.header__search input[type=text]::placeholder {
  color: var(--ra-text-secondary);
  line-height: 32px;
  vertical-align: middle;
}
.header__search input[type=search]:focus,
.header__search input[type=text]:focus {
  outline: none !important;
  border: none !important;
  box-shadow: none !important;
}
.header__search input[type=search]:focus-visible,
.header__search input[type=text]:focus-visible {
  outline: none !important;
  border: none !important;
  box-shadow: none !important;
}
.header__search button[type=submit],
.header__search input[type=submit] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  margin-right: 0.5rem;
  border-radius: 50%;
  border: 2px solid rgba(0, 0, 0, 0.06);
  background-color: grey;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 26px 26px;
  color: #ffffff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Ccircle cx='11' cy='11' r='6' stroke='%23ffffff' stroke-width='2'/%3E%3Cpath d='m20 20-3.5-3.5' stroke='%23ffffff' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  font-size: 0;
  cursor: pointer;
  flex-shrink: 0;
  appearance: none;
}
.header__search button[type=submit]:hover,
.header__search input[type=submit]:hover {
  background-color: var(--ra-color-tropical-blue);
  color: white;
}
.header__search .form-item,
.header__search .form-actions {
  display: flex;
  align-items: center;
  height: 100%;
  margin: 0;
}
.header__search .form-item-keys {
  flex: 1;
  margin: 0;
  position: static;
  top: auto;
  padding: 0;
}
.header__search fieldset.js-form-item {
  width: 94%;
}
.header__search input[type=search] + button[type=submit],
.header__search input[type=text] + button[type=submit] {
  margin-left: 0;
}

@media (max-width: 767px) {
  .header__search form {
    max-width: 100%;
    height: 32px;
  }
  .header__search button[type=submit] {
    width: 32px;
    height: 32px;
    margin-right: 0.5rem;
  }
}
@media (min-width: 1025px) {
  .header__search form {
    max-width: 1100px;
    height: 32px;
  }
  .header__search input[type=search],
  .header__search input[type=text] {
    font-size: 18px;
  }
  .header__search button[type=submit] {
    width: 32px;
    height: 32px;
    margin-right: 0.5rem;
  }
}
.user-menu {
  display: flex;
  align-items: center;
  position: relative;
}
.user-menu__login {
  background-color: transparent;
  border: 2px solid #0943B5;
  color: #4C4C4C;
  padding: 0.5em 1em;
  border-radius: 4px;
  text-decoration: none;
  transition: background-color 0.3s, color 0.3s;
}
.user-menu__login:hover {
  background-color: #0943B5;
  color: white;
}
.user-menu__dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  background-color: white;
  border: 1px solid #ccc;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  display: none;
}
.user-menu__dropdown--active {
  display: block;
}
.user-menu__dropdown__item {
  padding: 0.5em 1em;
  color: #4C4C4C;
  text-decoration: none;
  display: block;
}
.user-menu__dropdown__item:hover {
  background-color: #f0f0f0;
}

.header {
  width: 100%;
  height: 8.46rem;
}
.header__top-bar {
  background-color: var(--ra-header-top-bg);
  width: 100%;
  padding: 0.4rem 0;
}
.header__container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: 40px;
}
.header__gov-logo {
  flex-shrink: 0;
}
.header__gov-logo a {
  display: block;
  line-height: 0;
}
.header__gov-logo img {
  height: 20px;
  width: auto;
  display: block;
  position: relative;
  top: 2px;
}
.header__search {
  flex: 1;
  max-width: 1100px;
  margin: 0 auto;
}
.header__search form {
  display: flex;
  width: 100%;
  height: 32px;
  align-items: center;
  overflow: visible;
}
.header__search input[type=search],
.header__search input[type=text] {
  line-height: 32px;
  padding-top: 0;
  padding-bottom: 0;
}
.header__search button[type=submit],
.header__search input[type=submit] {
  width: 32px;
  height: 32px;
  margin-right: 0.5rem;
}
.header__user-menu {
  flex-shrink: 0;
}
.header__login-button {
  background-color: transparent;
  color: var(--ra-header-text-light);
  border: 2px solid var(--ra-header-text-light);
  padding: 0.25rem 1rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.875rem; /* 14px -> rem */
  display: inline-block;
  transition: all 0.3s ease;
}
.header__login-button:hover {
  background-color: var(--ra-header-text-light);
  color: var(--ra-color-havelock-blue);
  text-decoration: none;
}
.header__top-bar .header__login-button {
  color: var(--ra-header-text-light);
  border-color: var(--ra-header-text-light);
}
.header__bottom-bar {
  background-color: var(--ra-bg-primary);
  width: 100%;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.header__bottom-bar .header__container {
  align-items: center;
  gap: 2.5rem;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}
@media (min-width: 1440px) {
  .header__bottom-bar .header__container {
    padding-left: 3.5rem;
    padding-right: 3.5rem;
  }
}
@media (max-width: 991px) {
  .header__bottom-bar .header__container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    flex-wrap: wrap;
    row-gap: 1rem;
  }
}
.header__brand {
  flex-shrink: 0;
}
.header__brand-link {
  display: block;
  line-height: 0;
}
.header__brand-logo {
  height: 56px;
  width: auto;
  display: block;
}
.header__mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-direction: column;
  gap: 4px;
}
.header__mobile-toggle-bar {
  width: 25px;
  height: 3px;
  background-color: white;
  border-radius: 2px;
  transition: all 0.3s ease;
}
@media (max-width: 991px) {
  .header__mobile-toggle {
    display: flex;
  }
}

.header-nav {
  flex: 1;
}
.header-nav__menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  justify-content: flex-end;
  flex-direction: row;
}
.header-nav__item {
  position: relative;
}
.header-nav__item--dropdown .header-nav__arrow {
  margin-left: 0.25rem;
  font-size: 0.8em;
  transition: transform 0.3s ease;
}
.header-nav__item--dropdown[aria-expanded=true] .header-nav__arrow {
  transform: rotate(180deg);
}
.header-nav__link {
  color: var(--ra-header-text-light);
  text-decoration: none;
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 4px;
  transition: background-color 0.3s ease;
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--ra-text-primary);
  white-space: nowrap;
}
.header-nav__link:hover {
  background-color: transparent;
  text-decoration: none;
  color: var(--ra-color-havelock-blue);
}
.header-nav__icon {
  font-size: 1.2em;
}
.header-nav__icon-img {
  height: 26px;
  width: auto;
  display: inline-block;
  vertical-align: middle;
}
@media (max-width: 991px) {
  .header-nav {
    display: none;
  }
  .header-nav--active {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--ra-color-blue-dark);
    z-index: 1000;
    padding: 1rem;
  }
  .header-nav__menu {
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
  }
  .header-nav__link {
    width: 100%;
    justify-content: flex-start;
  }
}

.header-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: transparent;
  border-radius: 0px;
  box-shadow: none;
  z-index: 1001;
  min-width: 380px;
  margin-top: 0.5rem;
}
.header-dropdown__inner {
  padding: 0;
  display: flex;
  gap: 0;
  align-items: stretch;
}
.header-dropdown__image {
  flex-shrink: 0;
  width: auto;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border: solid;
  border-color: #afc3e7;
  border-radius: 0 0 10px 10px;
}
.header-dropdown__image img {
  width: 150px;
  height: auto;
  border-radius: 4px;
}
.header-dropdown__content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 0;
  width: fit-content;
  min-width: 0;
}
.header-dropdown__title {
  color: var(--ra-color-blue-dark);
  font-size: 1.25rem;
  margin: 0 0 1rem 0;
  font-weight: 700;
}
.header-dropdown__list {
  list-style: none;
  margin: 0;
  padding: 0;
  background: #f4f1ee;
  border-top: 9px;
  border: solid #4c4c4c;
  border-left: none;
  border-right: none;
}
.header-dropdown__list-item {
  margin-bottom: 0.5rem;
}
.header-dropdown__link {
  color: #333;
  text-decoration: none;
  padding: 0.5rem;
  display: block;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}
.header-dropdown__link:hover {
  background-color: #f0f0f0;
  text-decoration: none;
}

.header__user-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  background-color: white;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  min-width: 200px;
  margin-top: 0.5rem;
  z-index: 1001;
}
.header__user-dropdown-link {
  display: block;
  padding: 0.75rem 1rem;
  color: #333;
  text-decoration: none;
}
.header__user-dropdown-link:hover {
  background-color: #f0f0f0;
  text-decoration: none;
}

.header__backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
}
.header__backdrop[hidden] {
  display: none;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

#main-wrapper {
  width: 100%;
  margin: 0 auto;
}

.main-content {
  width: 100%;
}
.main-content .region-content {
  width: 100%;
}

.layout-sidebar-first .main-content,
.layout-sidebar-second .main-content,
.layout-two-sidebars .main-content {
  padding: 20px 15px;
}

.layout-no-sidebars .main-content {
  width: 100%;
}
