gt-block-nfp-moms-header {
  --height: 80px;
  --vertical-padding: 12px;
  --color__grey_lightest: #e1e1e1;
  --color__grey: #7093bb;
  --color__blue: #005488;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  height: var(--height);
  width: 100cqw;
  padding-inline: clamp(20px, calc((100cqw - 1200px) / 2), 100vw);
  font-weight: normal;
}
@media screen and (min-width: 768px) {
  gt-block-nfp-moms-header {
    --height: 111px;
    --vertical-padding: 16px;
  }
}



/* Header left */
gt-block-nfp-moms-header .logo {
  display: flex;
  padding-block: var(--vertical-padding);
}
gt-block-nfp-moms-header .logo img {
  height: calc(var(--height) - ( 2 * var(--vertical-padding) ));
  width: auto;
}
@media screen and (min-width: 768px) {
  gt-block-nfp-moms-header .logo img {
    height: calc(var(--height) - ( 2 * var(--vertical-padding) ));
    width: auto;
  }
}



/* Header right */
gt-block-nfp-moms-header .header-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1rem;
}
gt-block-nfp-moms-header .header-nav-toggle {
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  color: var(--color__grey);
  border: 1px solid var(--color__grey_lightest);
  border-radius: 1px;
  transition: background-color 0.3s, color 0.3s;
}
gt-block-nfp-moms-header .header-nav-toggle svg {
  width: 32px;
  height: 32px;
}
gt-block-nfp-moms-header .header-nav-toggle:hover,
gt-block-nfp-moms-header .header-nav-toggle:focus-visible {
  color: white;
  background-color: var(--color__blue);
}
@media screen and (max-width: 767px) {
  gt-block-nfp-moms-header .header-menu {
    display: flex;
    flex-direction: column;
    position: absolute;
    align-items: flex-end;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transform: translateX(0);
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
    flex-direction: column;
    padding-block: 1em;
    z-index: 1000;
    opacity: 1;
  }
  gt-block-nfp-moms-header .header-nav-close {
    appearance: none;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.25rem;
    margin-right: 16px;
    background-color: var(--color__grey);
    color: white;
    border-radius: 50%;
    height: 32px;
    width: 32px;
    font-size: 32px;
    transition: background-color 0.3s, color 0.3s;
  }
  gt-block-nfp-moms-header .header-menu > ul {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: 0;
    padding: 0;
    font-size: 1.1em;
    font-weight: normal;
  }
  gt-block-nfp-moms-header .header-menu > ul > li {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  gt-block-nfp-moms-header .header-menu > ul li a {
    display: flex;
    width: 100%;
    padding: 0.5em 16px;
    color: inherit;
    background-color: white;
    text-decoration: none;
  }
  gt-block-nfp-moms-header .header-menu > ul li a:hover,
  gt-block-nfp-moms-header .header-menu > ul li a:focus {
    color: white;
    background-color: var(--color__blue);
    text-decoration: none !important;
  }
  gt-block-nfp-moms-header .header-menu > ul li + li,
  gt-block-nfp-moms-header .header-menu > ul li > ul {
    border-top: 1px solid var(--color__grey_lightest);
  }
  gt-block-nfp-moms-header .header-menu:not(.open) {
    transform: translateX(100%);
    opacity: 0;
  }
}
@media screen and (min-width: 768px) {
  gt-block-nfp-moms-header *:is(.header-nav-toggle, .header-nav-close) {
    display: none;
  }
  gt-block-nfp-moms-header .header-menu {
    height: 100%;
  }
  gt-block-nfp-moms-header .header-menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
  }
  gt-block-nfp-moms-header .header-menu > ul {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 100%;
  }
  gt-block-nfp-moms-header .header-menu > ul > li {
    position: relative;
    display: flex;
    align-items: stretch;
    height: 100%;
  }
  gt-block-nfp-moms-header .header-menu > ul > li > a {
    display: flex;
    align-items: center;
    position: relative;
    padding-inline: 1em;
  }
  gt-block-nfp-moms-header .header-menu > ul > li:not(:last-of-type, .espanol, .english) > a:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 100%;
    width: 1px;
    height: 1.3em;
    background-color: var(--color__grey_lightest);
    transform: translateY(-50%);
  }
  gt-block-nfp-moms-header .header-menu > ul > li:hover > a,
  gt-block-nfp-moms-header .header-menu > ul > li > a:focus-visible,
  gt-block-nfp-moms-header .header-menu > ul > li.current-menu-item > a {
    box-shadow: inset 0 -2px 0 0 var(--color__blue);
  }
  gt-block-nfp-moms-header .header-menu > ul li a {
    text-decoration: none;
    font-size: 15px;
    font-weight: bold;
    color: var(--color__blue);
    transition: color 0.3s;
  }
  gt-block-nfp-moms-header .header-menu > ul li a:hover,
  gt-block-nfp-moms-header .header-menu > ul li a:focus {
    color: var(--color__grey);
  }
  gt-block-nfp-moms-header .header-menu ul.sub-menu {
    opacity: 0;
    pointer-events: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background-color: white;
    z-index: 10;
    box-shadow: 0 -2px 0 0 var(--color__blue);
    transition: opacity 0.3s;
  }
  gt-block-nfp-moms-header .header-menu ul.sub-menu a {
    display: block;
    padding: 0.3em 0.7em;
  }
  gt-block-nfp-moms-header .header-menu li:has(> .sub-menu):hover > .sub-menu,
  gt-block-nfp-moms-header .header-menu li:has(> .sub-menu):focus-within > .sub-menu {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }
}
gt-block-nfp-moms-header.is-spanish li.english {
  display: none;
}
gt-block-nfp-moms-header:not(.is-spanish) li.spanish {
  display: none;
}




/* Front end */
gt-block-nfp-moms-header[preview-mode="false"] {}



/* Editor */
gt-block-nfp-moms-header[preview-mode="true"] {
  margin-left: calc(50% - 50cqw);
}
