.text-left {
  text-align: left;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-justify {
  text-align: justify;
}

.body-wrapper {
  max-width: 100%;
}


@media not screen and (min-width: 48rem) {
  .text-mobile-left {
    text-align: left;
  }
  .text-mobile-center {
    text-align: center;
  }
  .text-mobile-right {
    text-align: right;
  }
  .text-mobile-justify {
    text-align: justify;
  }
}
.text-small {
  font-size: 0.85rem;
}

.text-large {
  font-size: 1.125rem;
}
.icon {
  height: 16px;
  width: 16px;
}
.screen-reader-text {
  position: absolute;
  overflow: hidden;
  clip: rect(0 0 0 0);
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
}

.site-header {
  --menu-pad: 30px;
  --header-height: 100px;
  --hyperlink-hover-color: rgba(0, 127, 153, 1);
  --container-width: 1920px;
  --container-padding: 30px;
  --container-margin: max(var(--container-padding), calc(((100% - var(--container-width)) / 2) + var(--container-padding)));
  display: flex;
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 200;
  background-color: rgba(0,48,94,1);
  font-size: 16px;
  view-transition-name: site-header;
  font-family: Gotham, sans-serif;
}
.site-header .container {
  display: flex;
  justify-content: space-between;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px;
  width: 100%;
}
@media (max-width: 70rem) {
  .site-header .container {
    padding: 0 15px;
  }
}
.site-header__logo, .site-header__cta {
  align-self: center;
}
.site-header__logo svg {
  display: block;
}
.site-header__menu-wrapper {
  flex-grow: 1;
  display: flex;
}
.site-header__menu {
  width: 100%;
}
@media (min-width: 70rem) {
  .site-header__menu {
    display: flex;
    height: 100%;
  }
}
.site-header .search-form {
  padding: var(--menu-pad);
}
@media (min-width: 70rem) {
  .site-header .search-form {
    display: none;
  }
}
.site-header__toggle {
  background-color: transparent;
  background-image: none;
  border-radius: 0;
  border: none;
  font: inherit;
  color: inherit;
  padding: 0;
  cursor: pointer;
  text-align: inherit;
  cursor: pointer;
}
.site-header__toggle--search {
  margin-right: 30px;
  display: block;
  color: #fff;
}
.site-header__toggle--search:hover, .site-header__toggle--search.hover, .site-header__toggle--search:focus-visible, .site-header__toggle--search.focus-visible {
  color: var(--hyperlink-hover-color);
}
@media not screen and (min-width: 70rem) {
  .site-header__toggle--search {
    display: none;
  }
}
.site-header__toggle--menu {
  --line: 2px solid #fff;
  width: 25px;
  height: 17px;
  border-bottom: var(--line);
  border-top: var(--line);
  transition: 0.4s border-color;
  position: relative;
  display: block;
  margin-left: auto;
  align-self: center;
}
@media (min-width: 70rem) {
  .site-header__toggle--menu {
    display: none;
  }
}
.site-header__toggle--menu::after, .site-header__toggle--menu::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  height: 0;
  border-top: var(--line);
  width: 100%;
  margin: auto;
  transition: 0.4s;
  transition-property: transform, border-color;
}
.mobile-menu-active .site-header__toggle--menu {
  border-color: transparent;
}
.mobile-menu-active .site-header__toggle--menu::before, .mobile-menu-active .site-header__toggle--menu::after {
  border-color: #fff;
}
.mobile-menu-active .site-header__toggle--menu::before {
  transform: rotate(45deg);
}
.mobile-menu-active .site-header__toggle--menu::after {
  transform: rotate(-45deg);
}
@media (min-width: 70rem) {
  .search-active .site-header {
    height: calc(var(--header-height) + 40px);
  }
  .search-active .site-header #search-results {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    z-index: 100;
  }
}

.search-active {
  overflow-y: hidden;
}

@media not screen and (min-width: 70rem) {
  .mobile-menu-active {
    overflow-y: hidden;
  }
}

.skip-link {
  position: absolute;
  top: 0;
  line-height: 1;
  margin-top: -1.5em;
  background-color: transparent;
  text-transform: uppercase;
  font-size: 0.8em;
  z-index: 250;
  padding: 0.25em;
  left: 0;
}
.skip-link:not(:focus) {
  position: absolute;
  overflow: hidden;
  clip: rect(0 0 0 0);
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
}
.skip-link:focus {
  margin-top: 0;
}

.primary-navigation {
  --mega-pad: var(--menu-pad);
}
.media-mobile {
  background-color: rgba(10, 29, 62, 1);
  padding: 1rem;
  color: #fff;
  flex-direction: column;
  align-items: baseline !important;
}
@media (min-width: 70rem) {
  .primary-navigation {
    display: flex;
    flex-grow: 1;
    justify-content: right;
  }
  .primary-navigation .hs-menu-item {
    margin: 0;
  }
  .search-mobile,
  .media-mobile {
    display: none !important;
  }
  .primary-navigation .hs-menu-item.hover > .hs-menu-children-wrapper, .primary-navigation .hs-menu-item:focus-visible > .hs-menu-children-wrapper, .primary-navigation .hs-menu-item.focus-visible > .hs-menu-children-wrapper, .primary-navigation .hs-menu-item.open > .hs-menu-children-wrapper {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: all;
  }
  .primary-navigation .hs-menu-item:hover > .hs-menu-link, .primary-navigation .hs-menu-item.hover > .hs-menu-link, .primary-navigation .hs-menu-item:focus-visible > .hs-menu-link, .primary-navigation .hs-menu-item.focus-visible > .hs-menu-link, .primary-navigation .hs-menu-item.open > .hs-menu-link {
    color: var(--hyperlink-hover-color);
  }
  @supports not (selector(:has(:focus-visible))) {
    .primary-navigation .hs-menu-item:focus-within > .hs-menu-link {
      color: var(--hyperlink-hover-color);
    }
  }
  @supports (selector(:has(:focus-visible))) {
    .primary-navigation .hs-menu-item:has(:focus-visible) > .hs-menu-link {
      color: var(--hyperlink-hover-color);
    }
  }
  .primary-navigation .hs-menu-children-wrapper .hs-menu-link {
    padding: calc(var(--menu-pad) / 4) var(--menu-pad);
  }
  .primary-navigation .hs-menu-item-text {
    position: relative;
  }
  .primary-navigation > .hs-menu-item {
    margin: 0 5px;
    display: flex;
    align-items: center;
  }
  .primary-navigation > .hs-menu-item:hover > .hs-menu-item-text > .hs-menu-link,
  .primary-navigation > .hs-menu-item.hover > .hs-menu-item-text > .hs-menu-link,
  .primary-navigation > .hs-menu-item:focus-visible > .hs-menu-item-text > .hs-menu-link,
  .primary-navigation > .hs-menu-item.focus-visible > .hs-menu-item-text > .hs-menu-link,
  .primary-navigation > .hs-menu-item.open > .hs-menu-item-text > .hs-menu-link {
    color: #fff;
    background-color: rgba(255, 255, 255, 0.25);
    padding: 16px 24px;
  }
  @supports not (selector(:has(:focus-visible))) {
    .primary-navigation > .hs-menu-item:focus-within > .hs-menu-item-text > .hs-menu-link {
      color: var(--text-link-color);
      text-decoration-color: var(--text-link-color);
    }
  }
  @supports (selector(:has(:focus-visible))) {
    .primary-navigation > .hs-menu-item:has(:focus-visible) > .hs-menu-item-text > .hs-menu-link {
      color: var(--text-link-color);
      text-decoration-color: var(--text-link-color);
    }
  }
  .primary-navigation > .hs-menu-item > .hs-menu-item-text > .hs-menu-link {
    padding: 16px 24px;
    font-weight: 400;
/*     text-decoration: underline;
    text-decoration-thickness: 4px;
    text-underline-offset: 5px;
    text-decoration-color: transparent; */
  }
  .primary-navigation > .hs-menu-item.hs-item-mega-menu {
    --menu-pad: var(--mega-pad);
    position: static;
  }
  .primary-navigation > .hs-menu-item.hs-item-mega-menu:hover .hs-menu-children-wrapper .hs-menu-children-wrapper, .primary-navigation > .hs-menu-item.hs-item-mega-menu.hover .hs-menu-children-wrapper .hs-menu-children-wrapper, .primary-navigation > .hs-menu-item.hs-item-mega-menu:focus-visible .hs-menu-children-wrapper .hs-menu-children-wrapper, .primary-navigation > .hs-menu-item.hs-item-mega-menu.focus-visible .hs-menu-children-wrapper .hs-menu-children-wrapper, .primary-navigation > .hs-menu-item.hs-item-mega-menu.open .hs-menu-children-wrapper .hs-menu-children-wrapper {
    pointer-events: all;
    visibility: visible;
    padding: 0;
  }
  .primary-navigation > .hs-menu-item.hs-item-mega-menu > .hs-menu-children-wrapper {
    min-width: 0;
    max-width: none;
    width: 100%;
    margin: 0 auto;
    left: 0;
    right: 0;
    padding: 0;
    display: flex;
  }
  .primary-navigation > .hs-menu-item.hs-item-mega-menu > .hs-menu-children-wrapper .hs-menu-child-toggle {
    display: none;
  }
  .primary-navigation > .hs-menu-item.hs-item-mega-menu > .hs-menu-children-wrapper > .hs-menu-children-wrapper-container > .hs-menu-children-list {
    display: grid;
    grid-template-columns: repeat(var(--column-count), minmax(0, 1fr));
    gap: var(--menu-pad) calc(var(--menu-pad) + 70px);
    flex-grow: 1;
    padding: var(--menu-pad);
    padding-left: 0;
    padding-right: 0;
    padding-top: 0;
  }
  .primary-navigation > .hs-menu-item.hs-item-mega-menu > .hs-menu-children-wrapper > .hs-menu-children-list > .hs-menu-item > .hs-menu-item-text > .hs-menu-link {
    text-transform: uppercase;
    font-size: 15px;
    letter-spacing: 0.15em;
    line-height: 1.3333333333;
    color: var(--eyebrow-card-tags-color);
    margin-bottom: 20px;
  }
  .primary-navigation > .hs-menu-item.hs-item-mega-menu > .hs-menu-children-wrapper > .hs-menu-children-list > .hs-menu-item > .hs-menu-item-text > .hs-menu-link:not(a) {
    cursor: default;
  }
  .primary-navigation > .hs-menu-item.hs-item-mega-menu > .hs-menu-children-wrapper > .hs-menu-children-list > .hs-menu-item > .hs-menu-item-text > a:hover, .primary-navigation > .hs-menu-item.hs-item-mega-menu > .hs-menu-children-wrapper > .hs-menu-children-list > .hs-menu-item > .hs-menu-item-text > a.hover, .primary-navigation > .hs-menu-item.hs-item-mega-menu > .hs-menu-children-wrapper > .hs-menu-children-list > .hs-menu-item > .hs-menu-item-text > a:focus-visible, .primary-navigation > .hs-menu-item.hs-item-mega-menu > .hs-menu-children-wrapper > .hs-menu-children-list > .hs-menu-item > .hs-menu-item-text > a.focus-visible {
    color: var(--hyperlink-hover-color);
  }
  .primary-navigation > .hs-menu-item.hs-item-mega-menu > .hs-menu-children-wrapper .hs-menu-link {
    padding: 0;
  }
  .primary-navigation > .hs-menu-item.hs-item-mega-menu > .hs-menu-children-wrapper .hs-mega-menu-cta {
    background-color: #fff;
    width: 100%;
    flex-shrink: 0;
  }
  .primary-navigation > .hs-menu-item.hs-item-mega-menu > .hs-menu-children-wrapper .hs-mega-menu-cta p:first-of-type {
    font-size: 1rem;
  }
  .primary-navigation > .hs-menu-item.hs-item-mega-menu > .hs-menu-children-wrapper .hs-menu-children-wrapper {
    transition: none;
    transform: none;
    box-shadow: none;
    position: static;
    opacity: 1;
    max-width: none;
    min-width: 0;
    width: auto;
  }
  .primary-navigation > .hs-menu-item.hs-item-mega-menu > .hs-menu-children-wrapper .hs-menu-children-wrapper .hs-menu-item:not(:last-child) {
    margin-bottom: var(--menu-pad);
  }
  .hs-item-has-icon {
    display: flex;
    align-items: flex-start;
    gap: 10px;
  }
  .hs-item-has-icon .hs-menu-item-text {
    display: flex;
    flex-direction: column;
  }
  .hs-item-has-icon .hs-menu-item-text .hs-menu-link {
    text-transform: uppercase;
    font-size: 13px;
    line-height: 1.5rem;
    padding: 4px 4px 0 4px;
    font-weight: 400 !important;
    display: flex;
    align-items: center;
    gap: 5px;
  }
  .hs-item-has-icon > .hs-menu-item-text {
    position: initial;
  }
  .hs-item-has-icon .hs-menu-item-text .hs-menu-link:before {
    content: url('data:image/svg+xml,<svg width="14" height="15" viewBox="0 0 14 15" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M2 7.5C2 8.05228 1.55228 8.5 1 8.5C0.447715 8.5 0 8.05228 0 7.5C0 6.94772 0.447715 6.5 1 6.5C1.55228 6.5 2 6.94772 2 7.5Z" fill="%23007F99"/><path d="M6 7.5C6 8.05228 5.55228 8.5 5 8.5C4.44772 8.5 4 8.05228 4 7.5C4 6.94772 4.44772 6.5 5 6.5C5.55228 6.5 6 6.94772 6 7.5Z" fill="%23007F99"/><path d="M10 7.5C10 8.05228 9.55229 8.5 9 8.5C8.44771 8.5 8 8.05228 8 7.5C8 6.94772 8.44771 6.5 9 6.5C9.55229 6.5 10 6.94772 10 7.5Z" fill="%23007F99"/><path d="M14 7.5C14 8.05228 13.5523 8.5 13 8.5C12.4477 8.5 12 8.05228 12 7.5C12 6.94772 12.4477 6.5 13 6.5C13.5523 6.5 14 6.94772 14 7.5Z" fill="%23007F99"/><path d="M8 1.5C8 2.05228 7.55228 2.5 7 2.5C6.44772 2.5 6 2.05228 6 1.5C6 0.947715 6.44772 0.5 7 0.5C7.55228 0.5 8 0.947715 8 1.5Z" fill="%23007F99"/><path d="M8 5.5C8 6.05228 7.55228 6.5 7 6.5C6.44772 6.5 6 6.05228 6 5.5C6 4.94772 6.44772 4.5 7 4.5C7.55228 4.5 8 4.94772 8 5.5Z" fill="%23007F99"/><path d="M8 9.5C8 10.0523 7.55228 10.5 7 10.5C6.44772 10.5 6 10.0523 6 9.5C6 8.94771 6.44772 8.5 7 8.5C7.55228 8.5 8 8.94771 8 9.5Z" fill="%23007F99"/><path d="M8 13.5C8 14.0523 7.55228 14.5 7 14.5C6.44772 14.5 6 14.0523 6 13.5C6 12.9477 6.44772 12.5 7 12.5C7.55228 12.5 8 12.9477 8 13.5Z" fill="%23007F99"/></svg>');
    margin-right: var(--spacing-xxs);
    margin-top: 2px;
    line-height: 1.5rem;
    display: block;
  }
  .hs-item-has-icon .hs-menu-item-text .hs-menu-link:hover {
    background-color: rgba(219, 230, 234, 1);
  }
  .hs-item-has-icon .hs-menu-item-text .hs-menu-item-description {
    order: -1;
    font-family:  "Utopia", "Georgia", "Times", "Times New Roman", serif;
    font-style: italic;
    letter-spacing: 0.5px;
    font-size: 18px;
    line-height: 1.25em;
    margin-bottom: 10px;
  }
  .hs-item-has-icon .hs-menu-item-text .hs-menu-item-description p {
    line-height: 1.25em;
  }
  .hs-item-has-icon .hs-menu-item-text .hs-menu-item-description:before {
    content: '';
    width: 2rem;
    height: 6px;
    background-color: rgba(0, 127, 153, 1);
    display: inline-block;
    margin-bottom: 5px;
  }
  .primary-navigation > .hs-menu-item.hs-item-mega-menu > .hs-menu-children-wrapper .hs-menu-children-wrapper .hs-menu-item-icon {
    position: relative;
    margin-right: 10px;
    top: 0;
    width: 100px;
    height: 100px;
  }
  .primary-navigation > .hs-menu-item.hs-item-mega-menu > .hs-menu-children-wrapper .hs-menu-children-wrapper .hs-menu-link {
    font-weight: bold;
    color: rgba(0, 127, 153, 1) !important;
    margin-bottom: 10px;
  }
  .primary-navigation > .hs-menu-item.hs-item-mega-menu > .hs-menu-children-wrapper .hs-menu-children-wrapper a.hs-menu-link:hover, .primary-navigation > .hs-menu-item.hs-item-mega-menu > .hs-menu-children-wrapper .hs-menu-children-wrapper a.hs-menu-link.hover, .primary-navigation > .hs-menu-item.hs-item-mega-menu > .hs-menu-children-wrapper .hs-menu-children-wrapper a.hs-menu-link:focus-visible, .primary-navigation > .hs-menu-item.hs-item-mega-menu > .hs-menu-children-wrapper .hs-menu-children-wrapper a.hs-menu-link.focus-visible {
    color: var(--hyperlink-hover-color);
  }
  .primary-navigation > .hs-menu-item.hs-item-mega-menu > .hs-menu-children-wrapper .hs-menu-children-wrapper a.hs-menu-link::after {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    content: "";
  }
  .primary-navigation > .hs-menu-item.hs-item-mega-menu > .hs-menu-children-wrapper .hs-menu-children-wrapper .hs-menu-item-description a {
    position: relative;
    z-index: 100;
  }
  .primary-navigation > .hs-menu-item.hs-item-mega-menu > .hs-menu-children-wrapper .hs-menu-children-wrapper .hs-menu-item-description * {
    margin: 0;
  }
  .primary-navigation .hs-menu-child-toggle {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    margin-left: -1em;
    width: 100%;
    height: 100%;
  }
  .primary-navigation .hs-menu-child-toggle:not(:focus) {
    opacity: 0;
  }
  .primary-navigation .hs-menu-children-wrapper {
    position: absolute;
    top: 100%;
    left: calc(-1 * var(--menu-pad));
    padding: calc(var(--menu-pad) * 0.75) 0;
    background-color: #fff;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(calc(-1 * var(--menu-pad)));
    width: -moz-max-content;
    width: max-content;
    min-width: 150px;
    max-width: 200px;
    z-index: 100;
  }
}
@media (min-width: 70rem) and (prefers-reduced-motion: no-preference) {
  .primary-navigation .hs-menu-children-wrapper {
    transition: 0.2s;
  }
}
@media (min-width: 70rem) {
  .primary-navigation .hs-menu-children-wrapper .hs-menu-children-wrapper {
    left: 100%;
    top: calc(-0.75 * var(--menu-pad));
    transform: translateX(calc(-1 * var(--menu-pad)));
  }
  .primary-navigation .hs-menu-children-wrapper .hs-menu-child-toggle {
    right: calc(var(--menu-pad) - 1em);
    transform: rotate(-90deg);
    margin-left: 0;
  }
  .primary-navigation .hs-menu-return,
  .primary-navigation .hs-menu-child-title {
    display: none;
  }
}
@media (min-width: 107.5rem) {
  .primary-navigation {
    --mega-pad: 30px;
  }
}
.primary-navigation button {
  background-color: transparent;
  background-image: none;
  border-radius: 0;
  border: none;
  font: inherit;
  color: inherit;
  padding: 0;
  cursor: pointer;
  text-align: inherit;
}
.primary-navigation .hs-menu-item {
  position: relative;
}
.primary-navigation .hs-menu-children-list, .primary-navigation {
  list-style: none;
  padding-left: 0;
  margin: 0;
}
.primary-navigation .hs-menu-link {
  display: block;
  transition: 0.2s;
  cursor: pointer;
}
.primary-navigation .hs-menu-item:not(:hover):not(:focus-visible):not(.open) > .hs-menu-item-text > .hs-menu-link {
  text-decoration: none;
  color: #fff;
}
.site-header__cta {
  height: var(--header-height);
  clip-path: polygon(100% 0%, 100% 50%, 100% 100%, 0% 100%, 25% 50%, 0% 0%);
  position: relative;
  z-index: 11;
  display: flex;
  background-color: rgba(209, 68, 20, 1);
/*   clip-path: polygon(100% 0%, 100% 50%, 100% 100%, 0% 100%, 10% 50%, 0% 0%); */
  text-transform: uppercase;
/*   margin-right: -2rem; */
  align-items: center;
  color: #fff;
  font-weight: 400;
  justify-content: center;
}

.site-header__cta .cta-button {
  background-color: rgba(209, 68, 20, 1);
  color: #fff;
  border: none;
  background-image: none;
  box-shadow: none;
  padding: 0 24px 0 60px;
  font-size: 16px;
  height: var(--header-height);
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 400;
}

.site-header__cta .cta-button:hover {
  background-color: rgba(186, 60, 18, 1);
}

@media not screen and (min-width: 70rem) {
  .site-header {
    --header-height: 56px;
  }
  .site-header__cta {
    clip-path: polygon(100% 0%, 100% 50%, 100% 100%, 0% 100%, 10% 50%, 0% 0%);
    margin-left: 10px;
  }
  .site-header__cta .cta-button {
    padding: 0 15px 0 24px;
  }
  .site-header__menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 0;
    overflow: hidden;
    transition: 0.4s;
    text-align: center;
    pointer-events: none;
    opacity: 0;
    -webkit-overflow-scrolling: touch;
    background-color: #fff;
  }
  .mobile-menu-active .site-header__menu {
    height: calc(100vh - var(--header-height));
    visibility: visible;
    overflow-y: auto;
    opacity: 1;
    pointer-events: auto;
    background-color: rgba(10, 29, 62, 1);
  }
  .site-header__logo svg {
    width: 165px;
  }
  .search-mobile {
    background-color: #fff;
    padding: 1rem;
  }
  .mobile-menu-active .search-mobile form .search-input {
    background-color: rgba(0, 48, 94, 0.1);
    color: rgba(0, 48, 94, 1);
  }
  .mobile-menu-active .search-mobile form .search-input::placeholder {
    color: rgba(0, 48, 94, 1);
  }
  .primary-navigation {
    text-align: left;
    background-color: #fff;
  }
  .primary-navigation .hs-menu-children-wrapper {
    display: none;
  }
  .primary-navigation .hs-menu-item {
    border-bottom: 1px solid var(--borders-lines-color);
  }
  .primary-navigation .hs-menu-item.has-open-sibling {
/*     display: none; */
  }
  .primary-navigation .hs-menu-item.has-open-descendant {
    border: none;
  }
  .primary-navigation .hs-menu-item.has-open-descendant > .hs-menu-children-wrapper > .hs-menu-return,
  .primary-navigation .hs-menu-item.has-open-descendant > .hs-menu-children-wrapper > .hs-menu-child-title {
    display: none;
  }
  .primary-navigation .hs-menu-item.open {
    border: none;
  }
  .primary-navigation .hs-menu-item.open > .hs-menu-children-wrapper {
    display: block;
    background-color: #F0F9FC;
  }
/*   .primary-navigation .hs-menu-item.open > .hs-menu-item-text {
    display: none;
  } */
  .primary-navigation .hs-menu-item.open .hs-menu-children-wrapper {
    display: block; 
  }
  .primary-navigation .hs-menu-child-title {
    text-transform: uppercase;
    font-size: 0.9375rem;
    letter-spacing: 0.15em;
    line-height: 1.3333333333;
    color: var(--eyebrow-card-tags-color);
    margin: 0;
  }
  .primary-navigation .hs-menu-return .icon {
    transform: rotate(90deg);
    vertical-align: middle;
  }
  .primary-navigation .hs-menu-item-text {
    display: flex;
    align-items: center;
  }
  .primary-navigation .hs-menu-link {
    padding: calc(var(--menu-pad) / 2) var(--menu-pad);
    display: block;
    flex-grow: 1;
    padding-left: 0;
    padding-left: 1rem;
  }
  .primary-navigation .hs-menu-child-toggle {
    transform: rotate(-90deg);
    padding: 1em;
    margin-left: auto;
  }
  .primary-navigation .hs-menu-child-title,
  .primary-navigation .hs-menu-return {
    padding: 0.5em var(--menu-pad);
  }
/*   .primary-navigation .hs-menu-item-icon,
  .primary-navigation .hs-menu-item-description,
  .primary-navigation .hs-mega-menu-cta {
    display: none;
  } */
}
.site-header__utility {
  background-color: rgba(10, 29, 62, 1);
  padding: 10px 0;
  color: #fff;
}

.site-header__utility .container {
  display: flex;
  justify-content: space-between;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px;
  width: 100%;
}

.site-header__utility-media {
  display: flex;
  align-items: center;
  gap: 15px;
}

.site-header__utility-media > span {
  text-transform: uppercase;
}

.site-header__utility-media > span a {
  color: #fff;
  font-weight: 300;
}

.site-header__utility-media ul {
  margin-bottom: 0;
  padding: 0;
  list-style: none;
  display: flex;
}

.site-header__utility-media ul li .social {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  font-size: 20px;
  color: #fff;
  background: transparent;
  text-indent: 2em;
  overflow: hidden;
  transition: opacity 0.2s;
}

.site-header__utility-media ul li {
  margin-right: 15px;
}

.site-header__utility-media ul li .social:after {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  text-align: center;
  text-indent: 0;
}

.site-header__utility-media ul li .social:hover {
  opacity: 0.5;
}

.site-header__utility-media ul li .social--facebook:after {
    content: "";
    background-image: url('data:image/svg+xml,<svg viewBox="0 0 8 14" fill="none" xmlns="http://www.w3.org/2000/svg"><g id="Facebook"><path id="Facebook_2" d="M8 0.393359C8 0.290253 7.96169 0.19137 7.89349 0.118463C7.8253 0.0455561 7.73281 0.00459735 7.63636 0.00459735H5.81818C4.90264 -0.0441604 4.00625 0.296473 3.32489 0.95207C2.64352 1.60767 2.23257 2.52493 2.18182 3.50345V5.60276H0.363636C0.267194 5.60276 0.174702 5.64372 0.106507 5.71662C0.0383116 5.78953 0 5.88841 0 5.99152V8.01308C0 8.11618 0.0383116 8.21507 0.106507 8.28797C0.174702 8.36088 0.267194 8.40184 0.363636 8.40184H2.18182V13.6112C2.18182 13.7143 2.22013 13.8132 2.28832 13.8861C2.35652 13.959 2.44901 14 2.54545 14H4.72727C4.82372 14 4.91621 13.959 4.9844 13.8861C5.0526 13.8132 5.09091 13.7143 5.09091 13.6112V8.40184H6.99636C7.07723 8.40308 7.15617 8.37547 7.22072 8.32337C7.28526 8.27126 7.33171 8.19765 7.35273 8.11416L7.87636 6.0926C7.89083 6.03516 7.89278 5.97493 7.88205 5.91656C7.87132 5.85819 7.8482 5.80323 7.81448 5.75591C7.78076 5.70859 7.73733 5.67018 7.68754 5.64362C7.63774 5.61707 7.58292 5.60309 7.52727 5.60276H5.09091V3.50345C5.109 3.31099 5.19354 3.13266 5.32802 3.00326C5.4625 2.87387 5.63726 2.80271 5.81818 2.80368H7.63636C7.73281 2.80368 7.8253 2.76272 7.89349 2.68981C7.96169 2.61691 8 2.51802 8 2.41492V0.393359Z" fill="%23FFFFFF"/></g></svg>');
    background-repeat: no-repeat;
    background-size: 16px;
    background-position: center;
    background-size: 12px;
}

.site-header__utility-media ul li .social--twitter:after {
    content: "";
    background-image: url('data:image/svg+xml,<svg viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg"><g id="X Twitter" clip-path="url(%23clip0_1483_11415)"><path id="X Twitter_2" d="M8.33187 5.928L13.5437 0H12.3087L7.7833 5.14727L4.16885 0H0L5.46572 7.78352L0 14H1.23515L6.01417 8.56436L9.83127 14H14.0001L8.33175 5.928H8.3321H8.33187ZM6.6402 7.85213L6.08638 7.07711L1.68012 0.909725H3.57712L7.13312 5.8869L7.68693 6.66192L12.3093 13.1315H10.4123L6.64032 7.85225V7.8519L6.6402 7.85213Z" fill="%23FFFFFF"/></g><defs><clipPath id="clip0_1483_11415"><rect width="14" height="14" fill="white"/></clipPath></defs></svg>');
    background-repeat: no-repeat;
    background-size: 16px;
    background-position: center;
}

.site-header__utility-media ul li .social--youtube:after {
    content: "";
    background-image: url('data:image/svg+xml,<svg viewBox="0 0 11 14" fill="none" xmlns="http://www.w3.org/2000/svg"><g id="YouTube"><path id="YouTube_2" d="M0 10.0731C0 9.58607 0.0254916 8.85493 0.0764747 7.87965C0.110331 7.40111 0.272043 7.011 0.560814 6.70847C0.849585 6.40595 1.21921 6.24136 1.6697 6.21428C2.51928 6.169 3.79824 6.14658 5.50617 6.14658C7.21411 6.14658 8.49307 6.169 9.34305 6.21428C9.79314 6.24136 10.1632 6.40595 10.4515 6.70847C10.7407 7.01058 10.902 7.40111 10.9363 7.87965C10.9781 8.69203 11 9.42317 11 10.0731C11 10.7234 10.9781 11.4545 10.9363 12.2669C10.902 12.7455 10.7407 13.136 10.4515 13.4385C10.1628 13.7406 9.79314 13.9052 9.34305 13.9323C8.49307 13.9772 7.21411 14 5.50617 14C3.79824 14 2.51928 13.9772 1.6697 13.9323C1.21961 13.9052 0.849984 13.7406 0.561212 13.4381C0.272043 13.1356 0.110729 12.745 0.076873 12.2665C0.0254916 11.2921 0 10.5609 0 10.0731ZM0.853967 8.16441H1.63146V12.5788H2.38346V8.16441H3.16095V7.41973H0.853967V8.16441ZM1.68244 0H2.44719L2.93153 2.05803H2.98251L3.44136 0H4.2061L3.6198 2.00387C3.42423 2.66266 3.32665 3.00115 3.32665 3.01934V5.15861H2.57465V3.11412C2.55792 2.98761 2.53442 2.87252 2.50454 2.76886C2.47507 2.6652 2.43643 2.54545 2.38983 2.41006C2.34323 2.27466 2.30699 2.16169 2.28149 2.07157L1.68244 0ZM3.16095 11.9826C3.16095 12.4159 3.3139 12.6325 3.6198 12.6325C3.89184 12.6325 4.15074 12.4747 4.39729 12.1586V12.5783H5.06047V8.77369H4.39729V11.6712C4.21885 11.8607 4.08701 11.9559 4.00217 11.9559C3.88348 11.9559 3.82373 11.87 3.82373 11.6987V8.77412H3.16095V11.9826ZM4.16787 4.19729V2.2205C4.16787 1.91375 4.26147 1.6768 4.44827 1.50967C4.63508 1.34254 4.87327 1.25919 5.16204 1.25919C5.44205 1.25919 5.66948 1.34931 5.84354 1.52998C6.018 1.71065 6.10483 1.94971 6.10483 2.24758V4.21083C6.10483 4.53578 6.01999 4.79092 5.84991 4.97582C5.67983 5.16072 5.44205 5.25339 5.13615 5.25339C4.83901 5.25339 4.60282 5.15649 4.42876 4.96228C4.2551 4.76807 4.16787 4.51336 4.16787 4.19729ZM4.85614 4.29207C4.85614 4.4994 4.94974 4.60348 5.13655 4.60348C5.33172 4.60348 5.4297 4.49051 5.4297 4.26499V2.19342C5.4297 2.11219 5.39983 2.04449 5.34008 1.99033C5.28113 1.93617 5.21262 1.90909 5.13615 1.90909C5.05967 1.90909 4.99395 1.93405 4.93859 1.98356C4.88322 2.03306 4.85574 2.09865 4.85574 2.17988L4.85614 4.29207ZM5.71011 12.5783H6.38563V12.2936C6.55571 12.5195 6.76801 12.6325 7.02332 12.6325C7.42242 12.6325 7.62237 12.3524 7.62237 11.793V9.68085C7.62237 9.04026 7.40529 8.71996 6.97194 8.71996C6.75964 8.71996 6.56447 8.84182 6.38563 9.08511V7.41973H5.71011V12.5783ZM6.38563 11.8607V9.47776C6.47923 9.37832 6.57284 9.3284 6.66604 9.3284C6.85284 9.3284 6.94645 9.45491 6.94645 9.70751V11.7114C6.94645 11.928 6.86599 12.0363 6.70428 12.0363C6.58518 12.0368 6.47923 11.9779 6.38563 11.8607ZM6.67878 4.56286V1.35397H7.34157V4.26499C7.34157 4.43635 7.40091 4.52224 7.52001 4.52224C7.63034 4.52224 7.76178 4.42747 7.91512 4.23791V1.35397H8.57791V5.15861H7.91512V4.73888C7.66857 5.05494 7.40928 5.21277 7.13723 5.21277C6.83173 5.21277 6.67878 4.99613 6.67878 4.56286ZM8.1318 11.5087C8.1318 11.8519 8.21266 12.1341 8.37397 12.3549C8.53529 12.5758 8.77746 12.6867 9.10048 12.6867C9.76326 12.6867 10.0943 12.2936 10.0943 11.5087V11.2244H9.40678C9.40678 11.2426 9.40837 11.3035 9.41315 11.4072C9.41714 11.5112 9.41514 11.5857 9.40678 11.6306C9.39841 11.6754 9.38726 11.7368 9.37492 11.8138C9.36177 11.8904 9.33429 11.9445 9.29167 11.9758C9.24945 12.0076 9.1897 12.0232 9.11363 12.0232C8.91806 12.0232 8.82047 11.8425 8.82047 11.4816V10.7644H10.0947V9.78917C10.0947 9.44602 10.0162 9.17565 9.85886 8.97679C9.70152 8.77835 9.46214 8.67934 9.13872 8.67934C8.83242 8.67934 8.58826 8.783 8.40584 8.99033C8.22341 9.19808 8.1318 9.46422 8.1318 9.78917V11.5087ZM8.82008 10.1683V9.76209C8.82008 9.48241 8.91766 9.34236 9.11323 9.34236C9.3084 9.34236 9.40638 9.48241 9.40638 9.76209V10.1683H8.82008Z" fill="%23FFFFFF"/></g></svg>');
    background-repeat: no-repeat;
    background-size: 16px;
    background-position: center;
}

.site-header__utility-media ul li .social--instagram:after {
    content: "";
    background-image: url('data:image/svg+xml,<svg viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg"><g id="Insta"><path id="Insta_2" d="M7 0C5.09707 0 4.85992 0.00918865 4.1152 0.0406926C3.36742 0.0774472 2.86161 0.193399 2.4153 0.366671C1.95499 0.546943 1.56295 0.786286 1.17571 1.17571C0.785848 1.56295 0.544318 1.95499 0.366671 2.4153C0.193399 2.86161 0.0774472 3.36742 0.0406926 4.1152C0.00700088 4.86036 0 5.09707 0 7C0 8.90293 0.00918865 9.14008 0.0406926 9.8848C0.0774472 10.6304 0.193399 11.1384 0.366671 11.5847C0.546943 12.045 0.786286 12.4371 1.17571 12.8243C1.56295 13.2142 1.95499 13.4557 2.4153 13.6333C2.86161 13.8044 3.36961 13.9226 4.1152 13.9593C4.86036 13.993 5.09707 14 7 14C8.90293 14 9.14008 13.9908 9.8848 13.9593C10.6304 13.9226 11.1384 13.804 11.5847 13.6333C12.045 13.4531 12.4371 13.2137 12.8243 12.8243C13.2142 12.4371 13.4557 12.0472 13.6333 11.5847C13.8044 11.1384 13.9226 10.6304 13.9593 9.8848C13.993 9.13964 14 8.90293 14 7C14 5.09707 13.9908 4.85992 13.9593 4.1152C13.9226 3.36961 13.804 2.85898 13.6333 2.4153C13.4531 1.95499 13.2137 1.56295 12.8243 1.17571C12.4371 0.785848 12.0472 0.544318 11.5847 0.366671C11.1384 0.193399 10.6304 0.0774472 9.8848 0.0406926C9.13964 0.00700088 8.90293 0 7 0ZM7 1.26016C8.8688 1.26016 9.09195 1.26935 9.83054 1.30085C10.5118 1.33279 10.8829 1.44656 11.1292 1.54282C11.4578 1.67015 11.6875 1.82067 11.9361 2.06657C12.1798 2.31029 12.3303 2.54263 12.4576 2.87123C12.5539 3.11758 12.6676 3.48862 12.6996 4.1699C12.7311 4.90849 12.7403 5.13208 12.7403 7.00044C12.7403 8.8688 12.7311 9.09239 12.697 9.83098C12.6602 10.5123 12.5464 10.8833 12.4506 11.1296C12.318 11.4582 12.1701 11.688 11.926 11.9365C11.6796 12.1802 11.4451 12.3307 11.1191 12.4581C10.8759 12.5543 10.4996 12.6681 9.81566 12.7C9.07313 12.7315 8.85436 12.7407 6.98075 12.7407C5.10714 12.7407 4.8888 12.7315 4.14539 12.6974C3.46412 12.6606 3.08826 12.5469 2.84192 12.4511C2.50938 12.3185 2.28141 12.1706 2.03725 11.9264C1.79091 11.6801 1.63427 11.4456 1.5135 11.1196C1.41549 10.8763 1.30348 10.5 1.26716 9.8161C1.24222 9.08232 1.2304 8.85479 1.2304 6.98994C1.2304 5.12595 1.24222 4.89799 1.26716 4.15502C1.30348 3.47112 1.41549 3.0957 1.5135 2.85154C1.63427 2.51856 1.79135 2.29104 2.03725 2.04469C2.28097 1.80098 2.50938 1.64346 2.84192 1.52006C3.08826 1.42424 3.45493 1.31048 4.13883 1.27635C4.88136 1.24966 5.10014 1.24003 6.97112 1.24003L7 1.26016ZM7 3.40724C5.01306 3.40724 3.40636 5.01613 3.40636 7.00087C3.40636 8.98781 5.01525 10.5945 7 10.5945C8.98694 10.5945 10.5936 8.98562 10.5936 7.00087C10.5936 5.01394 8.98475 3.40724 7 3.40724ZM7 9.33435C5.71009 9.33435 4.66652 8.29079 4.66652 7.00087C4.66652 5.71096 5.71009 4.6674 7 4.6674C8.28991 4.6674 9.33348 5.71096 9.33348 7.00087C9.33348 8.29079 8.28991 9.33435 7 9.33435ZM11.5786 3.26372C11.5786 3.72884 11.2001 4.10426 10.7372 4.10426C10.272 4.10426 9.89661 3.7284 9.89661 3.26372C9.89661 2.80123 10.2747 2.42493 10.7372 2.42493C11.1997 2.42493 11.5786 2.80123 11.5786 3.26372Z" fill="%23FFFFFF"/></g></svg>');
    background-repeat: no-repeat;
    background-size: 16px;
    background-position: center;
}

.site-header__utility-media ul li .social--linkedin:after {
    content: "";
    background-image: url('data:image/svg+xml,<svg viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg"><g id="&%23240;&%23159;&%23166;&%23134; icon &%2334;LinkedIn In&%2334;"><path id="Vector" d="M3.13382 14H0.231255V4.65292H3.13382V14ZM1.68097 3.37789C0.752829 3.37789 0 2.60912 0 1.68097C6.64327e-09 1.23515 0.177102 0.80759 0.492346 0.492346C0.80759 0.177102 1.23515 0 1.68097 0C2.1268 0 2.55436 0.177102 2.8696 0.492346C3.18485 0.80759 3.36195 1.23515 3.36195 1.68097C3.36195 2.60912 2.60881 3.37789 1.68097 3.37789ZM13.9972 14H11.1009V9.4499C11.1009 8.3655 11.079 6.97484 9.59178 6.97484C8.08268 6.97484 7.85143 8.15299 7.85143 9.37177V14H4.95199V4.65292H7.7358V5.92794H7.77642C8.16393 5.19355 9.11052 4.41854 10.5227 4.41854C13.4603 4.41854 14.0003 6.35295 14.0003 8.86551V14H13.9972Z" fill="%23FFFFFF"/></g></svg>');
    background-repeat: no-repeat;
    background-size: 16px;
    background-position: center;
}

.site-header__utility-media ul li .social--tiktok:after {
    content: "";
    background-image: url('data:image/svg+xml,<svg viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg"><g id="TikTok Icon"><path id="Vector" d="M11.3213 2.9941C11.2295 2.94526 11.1401 2.89173 11.0535 2.83369C10.8017 2.66233 10.5708 2.46042 10.3658 2.23231C9.85288 1.62829 9.66132 1.01553 9.59076 0.586512H9.5936C9.53465 0.230405 9.55902 0 9.56271 0H7.22658V9.29729C7.22658 9.42211 7.22658 9.54548 7.22148 9.66739C7.22148 9.68256 7.22006 9.69656 7.21921 9.71289C7.21921 9.7196 7.21921 9.7266 7.2178 9.7336V9.73885C7.19317 10.0724 7.08927 10.3947 6.91524 10.6772C6.74121 10.9598 6.50238 11.194 6.21976 11.3593C5.92521 11.5317 5.59206 11.6222 5.25317 11.6218C4.16474 11.6218 3.2826 10.7083 3.2826 9.58019C3.2826 8.45208 4.16474 7.53862 5.25317 7.53862C5.45921 7.53843 5.66398 7.5718 5.85988 7.63749L5.86271 5.18937C5.26801 5.1103 4.66385 5.15895 4.08833 5.33223C3.51282 5.50551 2.97844 5.79967 2.51891 6.19615C2.11626 6.55622 1.77774 6.98586 1.5186 7.46571C1.41999 7.6407 1.04792 8.34387 1.00287 9.48511C0.974528 10.1329 1.16354 10.804 1.25365 11.0813V11.0872C1.31032 11.2505 1.52994 11.8078 1.88784 12.2777C2.17644 12.6546 2.5174 12.9857 2.89976 13.2603V13.2544L2.90543 13.2603C4.03637 14.0512 5.2903 13.9993 5.2903 13.9993C5.50736 13.9903 6.23449 13.9993 7.06024 13.5965C7.9761 13.15 8.49751 12.4848 8.49751 12.4848C8.83061 12.0873 9.09548 11.6343 9.28075 11.1452C9.49215 10.5733 9.56271 9.8873 9.56271 9.61314V4.68072C9.59105 4.69822 9.9685 4.95517 9.9685 4.95517C9.9685 4.95517 10.5123 5.3139 11.3607 5.54751C11.9694 5.71376 12.7895 5.74875 12.7895 5.74875V3.36187C12.5021 3.39396 11.9187 3.30063 11.3213 2.9941Z" fill="%23FFFFFF"/></g></svg>');
    background-repeat: no-repeat;
    background-size: 16px;
}

.site-header__utility-search {
  padding-right: 30px;
}

.site-header__utility-search form {
  display: flex;
}

.site-header__utility-search form .search-input {
  background-color: rgba(255, 255, 255, 0.25);
  margin-bottom: 0;
  border-radius: 0;
  border: none;
  border-bottom: 1px solid #fff;
  font-family: "Utopia", "Georgia", "Times", "Times New Roman", serif;
  font-style: italic;
  padding: 0.25rem 0.5rem;
  color: #fff;
  min-width: 240px;
  text-indent: 0;
}
.site-header__utility-search form .search-input::placeholder {
  color: #fff;
}
.site-header__utility-search form .search-button {
  background-color: transparent;
  border-radius: 4px;
  border: 0;
  margin-left: 0.5rem;
  background-color: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.hs-menu-children-wrapper-container {
  display: flex;
  max-width: 1280px;
  margin: 0 auto;
}
.hs-mega-menu-cta h2 {
  font-size: 1.4rem;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  color: #000;
}
.hs-mega-menu-cta p {
  font-size: 16px;
}

.hs-mega-menu-cta .orange-button {
  background-color: rgba(209, 68, 20, 1);
  color: #fff;
  width: 100%;
  text-transform: uppercase;
  font-size: 12px;
  display: block;
  text-align: center;
  font-weight: 400;
  line-height: 1.75;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hs-mega-menu-cta .orange-button:after {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  content: "";
  width: 100%;
  height: 100%;
}
.orange-button:hover {
  background-color: rgba(186, 60, 18, 1);
}
.cta-wrapper {
  border: 1px solid rgba(189, 183, 187, 1);
  display: flex;
  flex-direction: column;
  position: relative;
}
.cta-wrapper__body p {
  line-height: 1.25em;
}
.hs-mega-menu-cta__image {
  width: 100%;
}
.hs-mega-menu-cta__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cta-wrapper__body {
  padding: 1.5rem;
}
.hs-menu-children-wrapper-container {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 40px;
  flex-grow: 1;
  padding: 3rem var(--menu-pad);
}
.hs-item-has-no-icon {
  margin-bottom: 10px !important;
}
.hs-item-has-no-icon .hs-menu-label {
  font-size: 18px;
  text-decoration: underline !important;
  text-underline-offset: 5px;
  line-height: 1.6rem;
}
.hs-item-has-no-icon a {
  font-weight: 400 !important;
  font-family: Gotham Book, Arial, sans-serif;
}
.hs-item-has-no-icon a:hover .hs-menu-label {
  text-decoration: none !important;
}
.site-header.white-header {
  background-color: #fff;
}

.site-header.white-header  .primary-navigation .hs-menu-item:not(:hover):not(:focus-visible):not(.open) > .hs-menu-item-text > .hs-menu-link {
  color: rgba(0, 127, 153, 1);
}

.site-header.white-header .primary-navigation > .hs-menu-item.open > .hs-menu-item-text > .hs-menu-link {
  color: rgba(0, 127, 153, 1);
}

.site-header.white-header .primary-navigation > .hs-menu-item.open > .hs-menu-item-text > .hs-menu-link .hs-menu-label:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: calc(50% - 8px);
  top: 80%;
  width: 16px;
  height: 4px;
  background-color: rgba(0, 127, 153, 1);
}

.site-header.white-header .primary-navigation > .hs-menu-item:hover > .hs-menu-item-text > .hs-menu-link,
.site-header.white-header .primary-navigation > .hs-menu-item.hover > .hs-menu-item-text > .hs-menu-link,
.site-header.white-header .primary-navigation > .hs-menu-item:focus-visible > .hs-menu-item-text > .hs-menu-link,
.site-header.white-header .primary-navigation > .hs-menu-item.focus-visible > .hs-menu-item-text > .hs-menu-link {
  background-color: rgba(219, 230, 234, 1);
  color: rgba(0, 127, 153, 1);
}

.site-header .logo-dark {
  display: none;
}

.site-header.white-header .logo-dark {
  display: block
}

.site-header.white-header .logo-white {
  display: none;
}
.mobile-menu-active .site-header {
  font-size: 16px;
}
.mobile-menu-active .primary-navigation .hs-menu-item:not(:hover):not(:focus-visible):not(.open) > .hs-menu-item-text > .hs-menu-link {
  color: rgba(0,127,153,1);
  font-size: 16px;
  font-weight: 400;
}
.site-header__toggle--menu:hover {
  background-color: transparent !important;
}
.mobile-menu-active .hs-menu-children-wrapper-container {
  display: block;
}
.mobile-menu-active .hs-item-has-icon img {
  display: none;
}
.mobile-menu-active .hs-mega-menu-cta__image {
  display: none;
}
.mobile-menu-active .cta-wrapper {
  background-color: #fff;
  margin-bottom: 20px;
}
.mobile-menu-active .hs-item-has-icon .hs-menu-item-text {
  display: flex;
  flex-direction: column;
  align-items: baseline;
}
.mobile-menu-active .hs-item-has-icon .hs-menu-item-text .hs-menu-link {
  text-transform: uppercase;
  font-size: 13px !important;
  line-height: 1.5rem;
  padding: 4px 4px 0 4px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 5px;
}
.mobile-menu-active .hs-item-has-icon .hs-menu-item-text .hs-menu-link:before {
  content: url('data:image/svg+xml,<svg width="14" height="15" viewBox="0 0 14 15" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M2 7.5C2 8.05228 1.55228 8.5 1 8.5C0.447715 8.5 0 8.05228 0 7.5C0 6.94772 0.447715 6.5 1 6.5C1.55228 6.5 2 6.94772 2 7.5Z" fill="%23007F99"/><path d="M6 7.5C6 8.05228 5.55228 8.5 5 8.5C4.44772 8.5 4 8.05228 4 7.5C4 6.94772 4.44772 6.5 5 6.5C5.55228 6.5 6 6.94772 6 7.5Z" fill="%23007F99"/><path d="M10 7.5C10 8.05228 9.55229 8.5 9 8.5C8.44771 8.5 8 8.05228 8 7.5C8 6.94772 8.44771 6.5 9 6.5C9.55229 6.5 10 6.94772 10 7.5Z" fill="%23007F99"/><path d="M14 7.5C14 8.05228 13.5523 8.5 13 8.5C12.4477 8.5 12 8.05228 12 7.5C12 6.94772 12.4477 6.5 13 6.5C13.5523 6.5 14 6.94772 14 7.5Z" fill="%23007F99"/><path d="M8 1.5C8 2.05228 7.55228 2.5 7 2.5C6.44772 2.5 6 2.05228 6 1.5C6 0.947715 6.44772 0.5 7 0.5C7.55228 0.5 8 0.947715 8 1.5Z" fill="%23007F99"/><path d="M8 5.5C8 6.05228 7.55228 6.5 7 6.5C6.44772 6.5 6 6.05228 6 5.5C6 4.94772 6.44772 4.5 7 4.5C7.55228 4.5 8 4.94772 8 5.5Z" fill="%23007F99"/><path d="M8 9.5C8 10.0523 7.55228 10.5 7 10.5C6.44772 10.5 6 10.0523 6 9.5C6 8.94771 6.44772 8.5 7 8.5C7.55228 8.5 8 8.94771 8 9.5Z" fill="%23007F99"/><path d="M8 13.5C8 14.0523 7.55228 14.5 7 14.5C6.44772 14.5 6 14.0523 6 13.5C6 12.9477 6.44772 12.5 7 12.5C7.55228 12.5 8 12.9477 8 13.5Z" fill="%23007F99"/></svg>');
  margin-right: var(--spacing-xxs);
  margin-top: 2px;
  line-height: 1.5rem;
  display: block;
}
.mobile-menu-active .hs-item-has-icon .hs-menu-item-text .hs-menu-link:hover {
  background-color: rgba(219, 230, 234, 1);
}
.mobile-menu-active .hs-item-has-icon .hs-menu-item-text .hs-menu-item-description {
  order: -1;
  font-family:  "Utopia", "Georgia", "Times", "Times New Roman", serif;
  font-style: italic;
  letter-spacing: 0.5px;
  font-size: 18px;
}
.mobile-menu-active .hs-item-has-icon .hs-menu-item-text .hs-menu-item-description p,
.mobile-menu-active .hs-item-has-icon .hs-menu-item-text .hs-menu-item-description div {
  margin: 0;
  color: #000;
}
.mobile-menu-active .hs-item-has-icon .hs-menu-item-text .hs-menu-item-description:before {
  content: '';
  width: 2rem;
  height: 6px;
  background-color: rgba(0, 127, 153, 1);
  display: inline-block;
  margin-bottom: 0px;
}
.mobile-menu-active .hs-menu-depth-2 > .hs-menu-item-text {
  display: none;
}
.mobile-menu-active .hs-menu-depth-3 {
  margin-bottom: 20px;
}
.mobile-menu-active .hs-item-has-no-icon a {
  padding: 0;
  font-weight: 300 !important;
}
.mobile-menu-active .hs-item-mega-menu.open > .hs-menu-item-text > .hs-menu-link > .hs-menu-label,
.mobile-menu-active .primary-navigation .hs-menu-item:hover {
  color: rgba(0, 127, 153, 1);
  font-weight: 400;
  position: relative;
}
.mobile-menu-active .hs-item-mega-menu.open > .hs-menu-item-text > .hs-menu-link > .hs-menu-label:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: calc(50% - 8px);
  top: 130%;
  width: 16px;
  height: 4px;
  background-color: rgba(0, 127, 153, 1);
}
.mobile-menu-active .site-header__utility-media > span {
  font-size: 12px;
}
.mobile-menu-active .cta-wrapper__body p {
  color: #000;
  font-weight: 300;
}
.mobile-menu-active .hs-menu-depth-3.hs-item-has-no-icon {
  margin-bottom: 10px !important;
}
.mobile-menu-active .hs-menu-children-wrapper-container {
  padding: 16px 32px;
}
.mobile-menu-active .cta-wrapper__body {
  padding: 1rem;
}
@media (min-width: 70rem) {
  .hs-menu-depth-1.hs-item-mega-menu > .hs-menu-item-text {
    text-align: center;
  }
}

@media (max-width: 70rem) {
  .site-header__utility {
    display: none;
  }
  .site-header.white-header {
    background-color: rgba(0, 48, 94, 1);
  }

  .site-header.white-header  .primary-navigation .hs-menu-item:not(:hover):not(:focus-visible):not(.open) > .hs-menu-item-text > .hs-menu-link {
    color: rgba(0, 127, 153, 1);
  }

  .site-header.white-header .primary-navigation > .hs-menu-item.open > .hs-menu-item-text > .hs-menu-link {
    color: rgba(0, 127, 153, 1);
  }

  .site-header.white-header .primary-navigation > .hs-menu-item.open > .hs-menu-item-text > .hs-menu-link .hs-menu-label:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: calc(50% - 8px);
    top: 80%;
    width: 16px;
    height: 4px;
    background-color: rgba(0, 127, 153, 1);
  }

  .site-header.white-header .primary-navigation > .hs-menu-item:hover > .hs-menu-item-text > .hs-menu-link,
  .site-header.white-header .primary-navigation > .hs-menu-item.hover > .hs-menu-item-text > .hs-menu-link,
  .site-header.white-header .primary-navigation > .hs-menu-item:focus-visible > .hs-menu-item-text > .hs-menu-link,
  .site-header.white-header .primary-navigation > .hs-menu-item.focus-visible > .hs-menu-item-text > .hs-menu-link {
    background-color: rgba(219, 230, 234, 1);
    color: rgba(0, 127, 153, 1);
  }

  .site-header .logo-dark {
    display: none;
  }

  .site-header.white-header .logo-dark {
    display: none;
  }

  .site-header.white-header .logo-white {
    display: block;
  }
}
@media (max-width: 1320px) {
  .site-header__logo svg,
  .site-header .logo-dark {
    width: 165px;
  }
  
}