*, *::before, *::after {
  box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden; }

body {
  font-family: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: clamp(1rem, 1.4vw, 1.125rem);
  line-height: 1.5;
  margin: 0;
  padding: 0;
  background: #272d3b;
  color: #2c2c2c;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

img {
  max-width: 100%;
  height: auto;
  display: block; }

h1, h2, h3, h4 {
  line-height: 1.2;
  margin-top: 0;
  overflow-wrap: break-word; }

h1, h2 {
  font-family: "Montserrat", "Open Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.02em; }

strong {
  font-weight: 800; }

section, header, footer {
  margin: 0;
  padding: 0; }

a {
  color: #FFB809;
  text-decoration: none; }

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem; }
  @media (max-width: 580px) {
    .container {
      padding: 6vh 1.5rem; } }

.container-narrow {
  max-width: 43.75rem; }

.section-title,
.action-heading {
  font-family: "Montserrat", "Open Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: clamp(1.9rem, 3.75vw, 2.325rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.02em; }
  .section-title strong,
  .action-heading strong {
    font-weight: 700; }

.section-title {
  color: white;
  margin-bottom: 4rem; }
  .section-title strong {
    color: #ffffff; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  padding: 0.875rem 2rem;
  border-radius: 0.25rem;
  font-family: "Montserrat", "Open Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
  text-decoration: none;
  position: relative;
  overflow: hidden; }
  .btn::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    width: 1em;
    height: 1em;
    background: rgba(0, 0, 0, 0.2);
    clip-path: polygon(100% 0, 100% 100%, 0 100%);
    pointer-events: none; }

.btn-icon {
  width: 1.125rem;
  height: 1.125rem; }

.btn-yellow {
  background: #FFB809;
  color: #272d3b; }
  .btn-yellow .btn-icon {
    filter: brightness(0); }
  .btn-yellow:hover {
    background: #df9f00; }
  .btn-yellow::after {
    background: #e68600; }

.btn-full {
  width: 100%;
  justify-content: center; }

.intro-section {
  position: relative;
  min-height: min(78vh, 800px);
  display: flex;
  align-items: stretch;
  justify-content: center;
  color: #fff;
  overflow: visible;
  background: #1D252C;
  padding: 5rem 0 0;
  text-align: center; }
  @media (max-width: 56.25rem) {
    .intro-section {
      padding: 4.5rem 0 0; } }
  @media (max-width: 580px) {
    .intro-section {
      --mobile-photo-h: clamp(480px, 120vw, 768px);
      padding: 0; } }

.intro-shell {
  width: 90%;
  max-width: 70rem;
  padding: 0 clamp(1.5rem, 4vw, 4rem);
  display: flex;
  align-items: stretch;
  justify-content: flex-end; }
  @media (max-width: 580px) {
    .intro-shell {
      width: 100%;
      padding: 0 1rem;
      justify-content: center; } }

.intro-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 0; }
  @media (max-width: 580px) {
    .intro-bg {
      bottom: auto;
      height: var(--mobile-photo-h);
      background-size: auto 108%;
      background-position: var(--intro-bg-focal-x, 20%) 100%; }
      .intro-bg::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(to bottom, transparent 0 65%, #1D252C 100%);
        pointer-events: none; } }

.intro-content {
  position: relative;
  z-index: 1;
  max-width: 33rem;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-bottom: 4rem;
  max-width: 55%; }
  @media (max-width: 56.25rem) {
    .intro-content {
      padding-bottom: 6rem; } }
  @media (max-width: 580px) {
    .intro-content {
      justify-content: flex-start;
      padding-top: calc(var(--mobile-photo-h) * 0.7 + 1.5rem);
      padding-bottom: 1.75rem;
      max-width: none; } }

.intro-headline {
  position: relative;
  font-family: "Montserrat", "Open Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  font-size: clamp(2.2rem, 4.2vw, 3.2rem);
  line-height: 1.04;
  letter-spacing: -0.01em;
  margin: 0 auto 2.0rem;
  max-width: 15ch; }
  .intro-headline::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 140%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(1.8em);
    -webkit-backdrop-filter: blur(1.8em);
    mask-image: radial-gradient(ellipse closest-side at center, black 60%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse closest-side at center, black 60%, transparent 100%);
    z-index: -1;
    pointer-events: none; }
  @media (max-width: 580px) {
    .intro-headline {
      max-width: none;
      font-size: 2.15rem;
      margin-bottom: 1.25rem; } }
  .intro-headline strong {
    display: inline-block;
    background: #EF4129;
    color: #fff;
    padding: 0.06em 0.22em 0.08em;
    font-weight: 700;
    margin-bottom: 0.05em;
    line-height: 1; }

.intro-section .intro-body {
  position: relative;
  font-family: "Merriweather", Georgia, "Times New Roman", serif;
  font-weight: 300;
  color: #fff;
  font-size: 20px;
  line-height: 1.55;
  letter-spacing: 0.005em;
  margin: 0 auto 2.5rem;
  max-width: 33rem; }
  .intro-section .intro-body.intro-body {
    max-width: 31rem; }
  .intro-section .intro-body::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150%;
    height: 220%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(1.5em);
    -webkit-backdrop-filter: blur(1.5em);
    mask-image: radial-gradient(ellipse closest-side at center, black 55%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse closest-side at center, black 55%, transparent 100%);
    z-index: -1;
    pointer-events: none; }
  @media (max-width: 580px) {
    .intro-section .intro-body {
      max-width: none;
      font-size: 17px; }
      .intro-section .intro-body::before {
        display: none; } }
  .intro-section .intro-body strong {
    font-weight: 900;
    background-image: url("../img/underline.svg");
    background-repeat: no-repeat;
    background-position: 0 100%;
    background-size: 100% 0.45em;
    padding-bottom: 0.18em;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone; }
    @supports (mask-composite: add) and (background: paint(something)) {
      .intro-section .intro-body strong {
        --u-draw: 100%;
        -webkit-mask-image: linear-gradient(black, black), linear-gradient(to right, black calc(var(--u-draw) - 0.5%), transparent var(--u-draw));
        mask-image: linear-gradient(black, black), linear-gradient(to right, black calc(var(--u-draw) - 0.5%), transparent var(--u-draw));
        -webkit-mask-position: 0 0, 0 100%;
        mask-position: 0 0, 0 100%;
        -webkit-mask-size: 100% calc(100% - 0.45em), 100% 0.45em;
        mask-size: 100% calc(100% - 0.45em), 100% 0.45em;
        -webkit-mask-repeat: no-repeat;
        mask-repeat: no-repeat;
        -webkit-mask-composite: source-over;
        mask-composite: add;
        animation: intro-underline-draw 0.9s cubic-bezier(0.65, 0, 0.35, 1) 0.45s both; } }
  .intro-section .intro-body a {
    color: inherit;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px; }

@property --u-draw {
  syntax: '<percentage>';
  inherits: false;
  initial-value: 0%; }
@keyframes intro-underline-draw {
  from {
    --u-draw: 0%; }
  to {
    --u-draw: 100%; } }
@property --cta-bob {
  syntax: '<length>';
  inherits: false;
  initial-value: 0px; }
.intro-cta {
  position: absolute;
  bottom: 0;
  left: 50%;
  z-index: 5;
  transform: translate3d(-50%, calc(30% + var(--cta-bob)), 0);
  will-change: transform;
  backface-visibility: hidden;
  animation: cta-bob 1.1s 1.2s infinite;
  display: inline-block;
  background: #EF4129;
  color: #fff;
  font-family: "Montserrat", "Open Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 0em;
  line-height: 1.1;
  padding: 0.85rem 0.5rem 2.5rem;
  text-align: center;
  max-width: 7em;
  transition: background 0.18s ease;
  clip-path: polygon(0 0, 100% 0, 100% 65%, 50% 100%, 0 65%); }
  .intro-cta:hover {
    background: #BD0C03; }
  @media (max-width: 580px) {
    .intro-cta {
      font-size: 0.9rem;
      padding: 0.7rem 0.85rem 1.85rem;
      max-width: 7.5em;
      transform: translate3d(-50%, calc(50% + var(--cta-bob)), 0); } }
  @media (prefers-reduced-motion: reduce) {
    .intro-cta {
      animation: none; } }

@keyframes cta-bob {
  0%, 100% {
    --cta-bob: 0px;
    animation-timing-function: cubic-bezier(0.33, 0.4, 0.4, 1); }
  50% {
    --cta-bob: -12px;
    animation-timing-function: cubic-bezier(0.6, 0, 0.7, 0.5); } }
body.cta-revealed .intro-cta {
  transform: translate(-50%, -180%);
  animation: none;
  pointer-events: none;
  opacity: 0;
  transition: transform 0.55s ease-in, opacity 0.45s ease-in 0.05s; }

.take-action-section {
  background: white;
  overflow: hidden;
  position: relative;
  min-height: min(82vh, 720px); }
  @media (max-width: 580px) {
    .take-action-section {
      min-height: 0; } }

.action-grid {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  width: 100%;
  min-height: inherit; }
  @media (max-width: 580px) {
    .action-grid {
      flex-direction: column;
      min-height: 0; } }

.action-text {
  flex: 1 1 calc(50% - clamp(0.5rem, 1vw, 1.5rem));
  background: #FFB809;
  position: relative;
  padding: clamp(3rem, 8vh, 6rem) clamp(3rem, 12vh, 7.5rem) clamp(3rem, 8vh, 6rem) clamp(2rem, 7vw, 7rem);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  transform: translateX(-25%);
  transition: transform 1s ease-out; }
  .action-text::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: calc(100% + 0.5px);
    width: 1px;
    background: #fff;
    pointer-events: none;
    z-index: 2; }
  @media (max-width: 580px) {
    .action-text::before {
      display: none; } }
  .is-revealed .action-text {
    transform: translateX(0); }
  @media (max-width: 580px) {
    .action-text {
      flex: 1 1 100%;
      padding: 3rem 1.5rem clamp(5rem, 18vw, 7rem);
      justify-content: center;
      transform: none; }
      .is-revealed .action-text {
        transform: none; } }

.action-text__inner {
  width: 100%;
  max-width: 27rem;
  padding-right: 1em;
  position: relative;
  z-index: 2;
  transform: translateX(-25%);
  opacity: 0;
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.1s, opacity 0.85s ease-out 0.15s; }
  .is-revealed .action-text__inner {
    transform: translateX(0);
    opacity: 1; }
  @media (max-width: 580px) {
    .action-text__inner {
      max-width: none;
      padding-right: 0;
      transform: none;
      opacity: 1;
      transition: none; }
      .is-revealed .action-text__inner {
        transform: none; } }
  @media (prefers-reduced-motion: reduce) {
    .action-text__inner {
      transform: none;
      opacity: 1;
      transition: none; } }

.action-chevron {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: auto;
  pointer-events: none;
  z-index: 1; }
  @media (max-width: 580px) {
    .action-chevron {
      display: none; } }

@media (max-width: 580px) {
  .action-text::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 100vw;
    margin-left: -50vw;
    height: 0;
    padding-bottom: 16vw;
    background: url("../img/svg/pointer-v.svg") center bottom/100% 100% no-repeat;
    z-index: 1;
    pointer-events: none; } }

.action-form {
  flex: 1 1 calc(50% + clamp(0.5rem, 1vw, 1.5rem));
  background: white;
  padding: clamp(3rem, 8vh, 6rem) clamp(2rem, 7vw, 7rem) clamp(3rem, 8vh, 6rem) clamp(1.5rem, 3.5vw, 4rem);
  display: flex;
  align-items: center; }
  @media (max-width: 580px) {
    .action-form {
      flex: 1 1 100%;
      padding: 1.75rem 1.5rem 3rem; } }
  .action-form > * {
    width: 100%;
    max-width: 26rem;
    margin: 0 auto 0 0;
    position: relative;
    z-index: 3; }
  @media (max-width: 580px) {
    .action-form > * {
      margin: 0 auto; } }

.action-heading {
  color: #272d3b !important;
  margin-bottom: 1.25rem; }
  .action-heading strong {
    color: #272d3b !important; }

.action-body {
  color: #272d3b;
  margin-top: 2em;
  font-family: "Merriweather", Georgia, "Times New Roman", serif;
  font-weight: 300;
  line-height: 1.6; }
  .action-body .cta-prompt {
    font-weight: 900;
    color: #272d3b;
    margin: 0.5em 0 1.25em;
    line-height: 1.45; }
    @media (max-width: 580px) {
      .action-body .cta-prompt {
        margin-bottom: 0.5em; } }

.cta-learn-more {
  display: inline-flex;
  align-items: center;
  gap: 0.55em;
  margin-top: 0.75em;
  background: #272d3b;
  color: #ffffff;
  font-family: "Montserrat", "Open Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1;
  padding: 0.85em 1.4em;
  border: none;
  border-radius: 0.25rem;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.18s ease, transform 0.18s ease; }
  .cta-learn-more:hover {
    background: #374054; }
  .cta-learn-more:active {
    transform: translateY(1px); }
  .cta-learn-more:focus-visible {
    outline: 2px solid #272d3b;
    outline-offset: 3px; }
  .cta-learn-more__icon {
    width: 1.15em;
    height: 1.15em;
    flex-shrink: 0; }
  @media (max-width: 580px) {
    .cta-learn-more {
      font-size: 0.72rem;
      padding: 0.65em 1em;
      gap: 0.4em;
      margin-top: 0.15em; } }

.petition-form {
  display: flex;
  flex-direction: column;
  gap: 1rem; }

.action-form .btn-full {
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  padding-top: 1.125rem;
  padding-bottom: 1.125rem;
  border-radius: 0;
  box-shadow: none; }
  @media (max-width: 580px) {
    .action-form .btn-full {
      font-size: 1rem; } }

.btn-check-circle {
  display: inline-block;
  width: 1.15rem;
  min-width: 1.15rem;
  height: 1.15rem;
  flex-shrink: 0;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9) url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 8.5L7 11.5L12 4.5' stroke='%23272d3b' stroke-width='2' stroke-linecap='square' stroke-linejoin='miter'/%3E%3C/svg%3E") center/70% no-repeat;
  vertical-align: middle;
  margin-right: 0.25rem;
  font-size: 0;
  line-height: 0; }

.form-row--half {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem; }

.form-row--address {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 1rem; }
  @media (max-width: 580px) {
    .form-row--address {
      grid-template-columns: 1fr 1fr; }
      .form-row--address .form-field--city {
        grid-column: 1 / -1; } }

.form-field {
  position: relative; }
  .form-field input,
  .form-field select {
    width: 100%;
    padding: 0.75rem 0.775rem;
    font-family: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: #272d3b;
    background: transparent;
    border: 1px solid #272d3b;
    border-radius: 0.1875rem;
    outline: none;
    transition: border-color 0.2s ease; }
    .form-field input:focus,
    .form-field select:focus {
      border-color: #272d3b; }
    .form-field input::placeholder,
    .form-field select::placeholder {
      color: rgba(39, 45, 59, 0.55); }
  .form-field select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%23272d3b' stroke-width='1.5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.775rem center;
    background-color: transparent;
    padding-right: 2.5rem;
    cursor: pointer; }
    .form-field select option {
      background: #ffffff;
      color: #272d3b; }
  .form-field label {
    position: absolute;
    top: 50%;
    left: 0.775rem;
    transform: translateY(-50%);
    font-size: 1rem;
    font-weight: 500;
    color: rgba(39, 45, 59, 0.55);
    pointer-events: none;
    transition: all 0.15s ease; }
  .form-field input:focus + label,
  .form-field input:not(:placeholder-shown) + label,
  .form-field select:focus + label,
  .form-field select:not([value=""]):valid + label {
    top: 0.2rem;
    transform: none;
    font-size: 0.5625rem;
    color: rgba(39, 45, 59, 0.55); }
  .form-field select.has-value + label {
    top: 0.125rem;
    transform: none;
    font-size: 0.5625rem;
    color: rgba(39, 45, 59, 0.55); }

.btn-loading {
  display: inline-flex;
  align-items: center;
  gap: 0.5em; }
  .btn-loading::before {
    content: '';
    display: block;
    box-sizing: border-box;
    width: 1em;
    height: 1em;
    border: 2px solid currentColor;
    border-top-color: transparent;
    border-radius: 50%;
    animation: btnSpin 0.6s linear infinite;
    flex-shrink: 0; }

@keyframes btnSpin {
  to {
    transform: rotate(360deg); } }
.form-privacy {
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.4;
  color: #272d3b;
  margin: 0;
  text-align: center; }
  .form-privacy a {
    color: #272d3b;
    text-decoration: underline; }

.take-action-section .btn-yellow {
  background: #3a4258;
  color: #ffffff; }
  .take-action-section .btn-yellow .btn-icon {
    filter: brightness(0) invert(1); }
  .take-action-section .btn-yellow:hover {
    background-color: #272d3b; }
  .take-action-section .btn-yellow::after {
    background: #1a1f2c; }

.action-step {
  display: none;
  animation: stepFadeIn 0.3s ease; }
  .action-step.is-active {
    display: block; }

@keyframes stepFadeIn {
  from {
    opacity: 0;
    transform: translateY(0.75rem); }
  to {
    opacity: 1;
    transform: translateY(0); } }
.step-nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  margin-bottom: 1.5rem;
  padding: 0.4rem 0.75rem;
  background: #FFB809;
  border-radius: 2rem; }

.step-back {
  background: none;
  border: none;
  font-family: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 0.6875rem;
  font-weight: 700;
  color: #272d3b;
  cursor: pointer;
  padding: 0;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  justify-self: start; }
  .step-back:hover {
    opacity: 0.7; }

.step-indicator {
  font-size: 0.6875rem;
  font-weight: 700;
  color: #272d3b;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-align: center; }

.action-step .step-heading {
  font-family: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  font-weight: 800;
  color: #272d3b;
  margin-bottom: 1.25rem;
  line-height: 1.3; }

#step1-heading,
#step2-heading {
  font-family: "Noto Serif", Georgia, "Times New Roman", serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.5rem, 3.5vw, 1.75rem);
  margin-top: -0.25rem;
  margin-bottom: 2.25rem;
  text-wrap: pretty; }

.cta-form-qualifier {
  font-family: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 0.85rem;
  font-weight: 400;
  line-height: 1.5;
  color: #272d3b;
  margin: -1.25rem 0 1.75rem;
  text-wrap: pretty; }
  .cta-form-qualifier a {
    color: #272d3b;
    text-decoration: underline;
    text-decoration-thickness: 1.5px;
    text-underline-offset: 2px; }
    .cta-form-qualifier a:hover {
      opacity: 0.7; }
  .cta-form-qualifier strong {
    font-weight: 700; }

#step3-heading,
#step4-heading {
  font-family: "Noto Serif", Georgia, "Times New Roman", serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  margin-top: 2rem;
  margin-bottom: 1.3rem;
  text-wrap: pretty; }

.step-text {
  font-family: "Merriweather", Georgia, "Times New Roman", serif;
  font-weight: 300;
  color: #272d3b;
  margin-bottom: 1.5rem;
  line-height: 1.6; }
  .step-text a {
    color: #272d3b;
    text-decoration: underline;
    text-decoration-thickness: 1.5px;
    text-underline-offset: 2px; }
    .step-text a:hover {
      opacity: 0.7; }

[data-step="3"] .step-text {
  margin-bottom: 1.25rem; }
[data-step="3"] .btn-full {
  margin-top: 0.75rem;
  margin-bottom: 0.25rem; }

.step-complete .step-text {
  margin-bottom: 2.2rem; }

.message-compose {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1rem; }

.compose-label {
  display: block;
  font-family: "Noto Serif", Georgia, "Times New Roman", serif;
  font-style: italic;
  font-size: 0.775rem;
  font-weight: 400;
  color: #272d3b;
  margin-bottom: 0; }

.compose-field input {
  width: 100%;
  padding: 0.75rem 0.775rem;
  font-family: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #272d3b;
  background: transparent;
  border: 1px solid #272d3b;
  border-radius: 0.1875rem;
  outline: none;
  transition: border-color 0.2s ease; }
  .compose-field input:focus {
    border-color: #272d3b; }
.compose-field textarea {
  width: 100%;
  padding: 0.775rem;
  font-family: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.35;
  color: #272d3b;
  background: transparent;
  border: 1px solid #272d3b;
  border-radius: 0.1875rem;
  outline: none;
  resize: vertical;
  min-height: 10rem;
  transition: border-color 0.2s ease; }
  .compose-field textarea:focus {
    border-color: #272d3b; }

.ai-disclaimer {
  display: inline; }

.step-helper {
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.4;
  color: #272d3b;
  margin-bottom: 0.25rem; }
  .step-helper a {
    color: #272d3b;
    text-decoration: underline; }

.btn-arrow-right {
  margin-left: 0.25em;
  font-weight: 400; }

.fallback-section {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.625rem; }

.fallback-heading {
  font-family: "Merriweather", Georgia, "Times New Roman", serif;
  font-weight: 300;
  color: #272d3b;
  line-height: 1.5;
  margin-top: 0;
  margin-bottom: 2rem; }

.fallback-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: #f5f5f0;
  border: none;
  font-family: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #272d3b;
  text-decoration: none;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  cursor: pointer;
  text-align: left;
  width: 100%;
  outline: 2px solid transparent;
  transition: outline-color 0.15s ease; }
  .fallback-link:hover {
    outline-color: #272d3b; }

.fallback-icon {
  width: 1.375rem;
  height: 1.375rem;
  flex-shrink: 0; }

.fallback-chevron {
  margin-left: auto;
  flex-shrink: 0;
  transition: transform 0.25s ease, opacity 0.15s ease;
  opacity: 0.35; }

.fallback-link:hover .fallback-chevron {
  opacity: 1; }

.fallback-link.is-open .fallback-chevron {
  transform: rotate(90deg); }

.manual-send-card {
  background: #f5f5f0;
  border-radius: 0.75rem;
  outline: 2px solid transparent;
  transition: outline-color 0.15s ease; }
  .manual-send-card:has(.fallback-link:hover) {
    outline-color: #272d3b; }
  .manual-send-card .fallback-link {
    border-radius: 0.75rem;
    outline: none;
    transition: none; }
    .manual-send-card .fallback-link.is-open {
      border-radius: 0.75rem 0.75rem 0 0; }

.manual-send-divider {
  height: 1px;
  background: rgba(0, 0, 0, 0.08); }

.manual-send-panel {
  padding: 0 1.25rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-radius: 0 0 0.75rem 0.75rem; }
  .manual-send-panel .manual-send-divider {
    margin: 0 -1.25rem; }

.manual-instruction {
  font-family: "Noto Serif", Georgia, "Times New Roman", serif;
  font-style: italic;
  font-size: 0.775rem;
  color: #272d3b;
  margin: 0;
  opacity: 0.7; }

.manual-field {
  display: flex;
  flex-direction: column;
  gap: 0.25rem; }

.manual-label {
  font-family: "Noto Serif", Georgia, "Times New Roman", serif;
  font-style: italic;
  font-size: 0.8125rem;
  color: #272d3b;
  opacity: 0.6; }

.manual-value-wrap {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 0, 0, 0.04);
  border-radius: 0.375rem;
  padding: 0.625rem 0.75rem;
  min-height: 2.5rem; }
  .manual-value-wrap--message {
    align-items: flex-start; }

.manual-value {
  flex: 1;
  font-family: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: #272d3b;
  line-height: 1.4;
  word-break: break-word;
  white-space: pre-wrap; }
  .manual-value--message {
    max-height: 10rem;
    overflow-y: auto; }

.manual-copy-btn {
  flex-shrink: 0;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.375rem;
  border-radius: 0.25rem;
  color: #272d3b;
  opacity: 0.4;
  transition: opacity 0.15s ease;
  display: flex;
  align-items: center;
  justify-content: center; }
  .manual-copy-btn:hover {
    opacity: 0.8; }
  .manual-copy-btn.is-copied {
    opacity: 1;
    color: #4CAF50; }
  .manual-copy-btn--message {
    align-self: flex-start;
    margin-top: 0.125rem; }

.fallback-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.625rem; }

.fallback-tile {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.375rem;
  background: #f5f5f0;
  border-radius: 0.5rem;
  padding: 0.4375rem 0.625rem;
  min-height: 2.75rem;
  text-decoration: none;
  color: #272d3b;
  font-family: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.2;
  outline: 2px solid transparent;
  transition: outline-color 0.15s ease; }
  .fallback-tile:hover {
    outline-color: #272d3b; }

.fallback-tile-icon {
  width: 1.625rem;
  height: 1.625rem;
  flex-shrink: 0; }

.step-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.475rem;
  font-family: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #272d3b;
  background: #FFB809;
  padding: 0.4rem 1rem 0.4rem 0.5rem;
  border-radius: 2rem; }

.badge-check-circle {
  display: inline-block;
  width: 0.9rem;
  min-width: 0.9rem;
  height: 0.9rem;
  flex-shrink: 0;
  border-radius: 50%;
  background: #272d3b url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 8.5L7 11.5L12 4.5' stroke='%23ffffff' stroke-width='2' stroke-linecap='square' stroke-linejoin='miter'/%3E%3C/svg%3E") center/70% no-repeat;
  vertical-align: middle;
  font-size: 0;
  line-height: 0; }

.is-invalid {
  border-color: #d32f2f !important;
  box-shadow: 0 0 0 2px rgba(211, 47, 47, 0.15); }

.site-footer {
  background: #ffffff;
  text-align: center;
  padding: 4.5rem 1.5rem; }
  @media (max-width: 580px) {
    .site-footer {
      padding: 3rem 0.25rem; } }

.footer-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2.5rem; }
  .footer-logos a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 1.5rem; }
  .footer-logos img {
    height: 3rem;
    width: auto;
    display: block;
    object-fit: contain; }
    @media (max-width: 580px) {
      .footer-logos img {
        height: 4.25rem; } }
    @media (min-width: 56.25rem) {
      .footer-logos img {
        height: 4.5rem; } }

.footer-note {
  font-size: 0.8125rem;
  color: rgba(39, 45, 59, 0.6);
  max-width: 43.75rem;
  margin: 0 auto;
  text-wrap: pretty; }

.state-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.18s ease;
  padding: 1.5rem; }
  .state-modal[hidden] {
    display: none; }
  .state-modal.is-open {
    opacity: 1; }
  .state-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(19, 24, 32, 0.6);
    cursor: pointer; }
  .state-modal__card {
    position: relative;
    z-index: 1;
    background: #ffffff;
    border-radius: 0.75rem;
    padding: 2.25rem 2rem 1.75rem;
    max-width: 26rem;
    width: 100%;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    transform: translateY(0.5rem);
    transition: transform 0.2s ease; }
    .is-open .state-modal__card {
      transform: translateY(0); }
  .state-modal__message {
    font-family: "Merriweather", Georgia, "Times New Roman", serif;
    font-weight: 300;
    font-size: 1rem;
    line-height: 1.55;
    color: #272d3b;
    margin: 0 0 1.5rem;
    text-wrap: pretty; }
    .state-modal__message a {
      color: #272d3b;
      text-decoration: underline;
      text-decoration-thickness: 1.5px;
      text-underline-offset: 2px; }
      .state-modal__message a:hover {
        opacity: 0.7; }

.details-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s ease;
  padding: 1.5rem; }
  .details-modal[hidden] {
    display: none; }
  .details-modal.is-open {
    opacity: 1; }
  .details-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(19, 24, 32, 0.65);
    cursor: pointer; }
  .details-modal__card {
    position: relative;
    z-index: 1;
    background: #ffffff;
    border-radius: 0.75rem;
    max-width: 42rem;
    width: 100%;
    max-height: calc(100vh - 3rem);
    max-height: calc(100dvh - 3rem);
    display: flex;
    flex-direction: column;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
    transform: translateY(0.75rem);
    transition: transform 0.22s ease; }
    .is-open .details-modal__card {
      transform: translateY(0); }
  .details-modal__close {
    position: absolute;
    top: 0.6rem;
    right: 0.6rem;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    background: none;
    border: none;
    color: #272d3b;
    cursor: pointer;
    border-radius: 50%;
    opacity: 0.55;
    transition: opacity 0.15s ease, background 0.15s ease; }
    .details-modal__close:hover {
      opacity: 1;
      background: rgba(0, 0, 0, 0.06); }
  .details-modal__body {
    padding: 2.75rem 2.25rem 2rem;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    font-family: "Merriweather", Georgia, "Times New Roman", serif;
    font-weight: 300;
    font-size: 1rem;
    line-height: 1.7;
    color: #272d3b;
    text-wrap: pretty;
    scroll-padding-top: 2rem; }
    .details-modal__body a {
      color: #272d3b;
      text-decoration: underline;
      text-decoration-thickness: 1.5px;
      text-underline-offset: 2px; }
      .details-modal__body a:hover {
        opacity: 0.7; }
    .details-modal__body strong, .details-modal__body b {
      font-weight: 900; }
  @media (max-width: 580px) {
    .details-modal {
      padding: 0.75rem; }
      .details-modal__card {
        max-height: calc(100vh - 1.5rem);
        max-height: calc(100dvh - 1.5rem);
        border-radius: 0.5rem; }
      .details-modal__body {
        padding: 2.5rem 1.25rem 1.5rem;
        font-size: 0.95rem; }
      .details-modal__close {
        top: 0.4rem;
        right: 0.4rem; } }

body.modal-open {
  overflow: hidden; }

@media (max-width: 580px) {
  .take-action-section {
    padding-top: 0; } }
.thl-top-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 150px;
  font-size: 14px;
  line-height: 1;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.5) 28%, rgba(0, 0, 0, 0.25) 48%, rgba(0, 0, 0, 0.1) 70%, rgba(0, 0, 0, 0) 100%);
  z-index: 101;
  pointer-events: none;
  box-sizing: border-box;
  transition: height 0.5s, transform 0.35s ease; }
  .thl-top-nav.is-hidden {
    transform: translateY(-76px); }
    @media (max-width: 1280px) {
      .thl-top-nav.is-hidden {
        transform: translateY(-60px); } }
  @media (max-width: 580px) {
    .thl-top-nav {
      height: 120px;
      background: linear-gradient(to bottom, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.25) 60%, rgba(0, 0, 0, 0.1) 70%, rgba(0, 0, 0, 0) 100%); } }
  .thl-top-nav.is-opaque {
    height: 50px; }
    .thl-top-nav.is-opaque::before {
      opacity: 1; }
  .thl-top-nav::before {
    content: ' ';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 76px;
    background: #1D252C;
    opacity: 0;
    transition: opacity 0.5s; }
    @media (max-width: 1280px) {
      .thl-top-nav::before {
        height: 60px; } }

.thl-top-nav__inner {
  width: 100%;
  box-sizing: border-box;
  display: block;
  justify-content: space-between;
  align-items: center;
  padding: 25px 20px 0 40px;
  overflow: hidden;
  height: 76px;
  position: relative; }
  @media (max-width: 1280px) {
    .thl-top-nav__inner {
      height: 60px;
      padding: 17px 10px 0 40px; } }
  @media (max-width: 1024px) {
    .thl-top-nav__inner {
      padding: 17px 10px 0 24px; } }

.thl-top-nav__logo {
  display: block;
  float: left;
  pointer-events: all;
  position: absolute;
  z-index: 1;
  width: 195px;
  margin-top: 5px; }
  @media (min-width: 768px) {
    .thl-top-nav__logo {
      width: 279px;
      margin-top: 0; } }
  @media (max-width: 580px) {
    .thl-top-nav__logo {
      left: 50%;
      transform: translateX(-50%); } }
  .thl-top-nav__logo img {
    width: 100%;
    height: auto; }

.thl-top-nav__actions {
  display: none; }

.thl-top-nav__share {
  float: right;
  pointer-events: all;
  cursor: pointer;
  color: white;
  text-decoration: none;
  padding: 3px;
  margin: 0 8px;
  transform: translateY(-3px);
  font-size: 180%;
  line-height: 1;
  transition: transform 0.15s; }
  @media (max-width: 1024px) {
    .thl-top-nav__share {
      font-size: 160%;
      padding-top: 4px; } }
  .thl-top-nav__share svg {
    display: block;
    width: 1em;
    height: 1em; }
  .thl-top-nav__share:hover {
    transform: translateY(-3px) scale(1.2); }
  .thl-top-nav__share:last-of-type {
    margin-top: -1px; }

.cms-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  background: #1D252C;
  display: flex;
  align-content: center;
  justify-content: center; }
  .cms-loader__heart {
    position: absolute;
    display: block;
    top: 50%;
    left: 50%;
    margin-left: -33px;
    margin-top: -33px;
    width: 66px;
    height: 66px;
    animation: cms-loader 2s ease-out infinite; }
  .cms-loader.is-hidden {
    animation: cms-loader-out 0.7s linear forwards;
    pointer-events: none; }

@keyframes cms-loader {
  0% {
    transform: scale(0.85);
    opacity: 0.7; }
  50% {
    transform: scale(1);
    opacity: 1; }
  100% {
    transform: scale(0.85);
    opacity: 0.7; } }
@keyframes cms-loader-out {
  0% {
    opacity: 1; }
  99% {
    opacity: 0; }
  100% {
    opacity: 0;
    display: none; } }
@media (prefers-reduced-motion: reduce) {
  .cms-loader__heart {
    animation: none; } }
.thl-footer {
  position: relative;
  background: #1D252C url("../img/footer-heart-bg.svg") center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 7rem 1.5rem 3rem;
  min-height: 27rem; }
  @media (max-width: 600px) {
    .thl-footer {
      padding: 4.5rem 1.5rem 2rem; } }

.thl-footer__inner {
  max-width: 56rem;
  margin: 0 auto; }

.thl-footer__logo {
  display: block;
  margin: 0 auto;
  width: 60%;
  max-width: 22rem; }
  @media (max-width: 600px) {
    .thl-footer__logo {
      width: 75%; } }
  .thl-footer__logo img {
    width: 100%;
    height: auto;
    display: block; }

.thl-footer__mission {
  font-family: "Noto Serif", Georgia, "Times New Roman", serif;
  font-style: italic;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  margin: 2.5em 1em 2em;
  color: #fff; }

.thl-footer__donate {
  display: inline-block;
  background: #EF4129;
  color: #fff;
  font-family: "Montserrat", "Open Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1;
  text-transform: uppercase;
  text-decoration: none;
  padding: 1.4em 2.2em;
  border-radius: 0;
  transition: background 0.2s ease;
  position: relative;
  overflow: hidden; }
  .thl-footer__donate::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    width: 1em;
    height: 1em;
    background: rgba(0, 0, 0, 0.2);
    clip-path: polygon(100% 0, 100% 100%, 0 100%);
    pointer-events: none; }
  .thl-footer__donate:hover {
    background: #BD0C03; }

.thl-sub-footer {
  background: #000;
  color: #fff;
  font-size: 0.75rem;
  line-height: 1.5; }

.thl-sub-footer__inner {
  display: flex;
  align-items: center;
  min-height: 60px;
  width: 100%;
  padding: 0 1.5rem; }
  .thl-sub-footer__inner > * {
    flex: 1 1 0;
    min-width: 0;
    text-align: center; }
  .thl-sub-footer__inner > *:first-child {
    text-align: left; }
  .thl-sub-footer__inner > *:last-child {
    text-align: right;
    color: #adadad; }
  @media (max-width: 1100px) {
    .thl-sub-footer__inner {
      display: block;
      padding: 2.5rem 1.5rem 2rem;
      text-align: center; }
      .thl-sub-footer__inner > * {
        text-align: center !important;
        padding-bottom: 1rem; }
        .thl-sub-footer__inner > *:first-child {
          padding-bottom: 1.25rem; }
        .thl-sub-footer__inner > *:last-child {
          padding-top: 1rem;
          padding-bottom: 0; } }

.thl-social {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  margin: 0;
  padding: 0;
  list-style: none; }
  @media (max-width: 1100px) {
    .thl-social {
      justify-content: center;
      width: 100%; } }
  .thl-social li {
    display: inline-flex; }
  .thl-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    color: #fff;
    opacity: 0.7;
    text-decoration: none;
    transition: opacity 0.2s ease; }
    .thl-social a:hover {
      opacity: 1; }
    .thl-social a svg {
      display: block; }

.thl-sub-footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4em 1.4em; }
  .thl-sub-footer__links a {
    color: #fff;
    text-decoration: none;
    cursor: pointer; }
    .thl-sub-footer__links a:hover {
      text-decoration: underline; }

header.at-markup, header.at-title {
  display: none; }

label.Prefix, label.City {
  display: none !important; }

fieldset.at-fieldset {
  padding: 0 !important;
  margin: 0;
  border: 0; }

label.at-text,
label.at-select,
label.at-check {
  margin-left: 0 !important;
  margin-right: 0 !important; }

.at-fields {
  display: flex;
  flex-direction: column; }

.at-row {
  order: 10; }

.at-row.AddressLine1 {
  display: none !important; }
.at-row.FirstName.LastName {
  order: 1; }
.at-row.EmailAddress {
  order: 2; }
.at-row.AddressLine1 {
  order: 3; }
.at-row.PostalCode.StateProvince {
  order: 4; }
.at-row.FirstName.LastName, .at-row.PostalCode.StateProvince {
  display: flex;
  gap: 1em;
  align-items: flex-start; }
  .at-row.FirstName.LastName > label,
  .at-row.FirstName.LastName > .at-text, .at-row.PostalCode.StateProvince > label,
  .at-row.PostalCode.StateProvince > .at-text {
    flex: 1 1 0;
    min-width: 0; }
.at-row.PostalCode.StateProvince > .StateProvince {
  flex: 0 0 7rem; }
.at-row.YesSignMeUpForUpdatesForBinder {
  order: 99; }

.at-row.HomePhone-relocated {
  order: 50; }

.FastAction, .UpdateMyProfile, legend.at-legend {
  display: none !important; }

.grecaptcha-badge {
  visibility: hidden !important; }

.ngp-form {
  font-family: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; }
  .ngp-form label.at-text,
  .ngp-form label.at-select {
    display: block;
    position: relative;
    margin: 0;
    height: 2.96875rem;
    background: transparent;
    border: 1px solid #272d3b;
    border-radius: 0.1875rem;
    padding: 0.2rem 0.775rem 0;
    font-family: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif !important;
    font-size: 0.5625rem !important;
    font-weight: 500 !important;
    color: rgba(39, 45, 59, 0.55) !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    line-height: 1 !important;
    cursor: text;
    transition: padding 0.15s ease, font-size 0.15s ease, border-color 0.2s ease; }
    .ngp-form label.at-text small,
    .ngp-form label.at-select small {
      font-size: inherit;
      color: inherit;
      font-weight: 500;
      text-transform: none;
      letter-spacing: 0;
      margin-left: 0.2em; }
    .ngp-form label.at-text input,
    .ngp-form label.at-text select,
    .ngp-form label.at-select input,
    .ngp-form label.at-select select {
      position: absolute;
      left: 0.775rem;
      top: 50%;
      transform: translateY(-50%);
      width: calc(100% - 1.55rem) !important;
      margin: 0 !important;
      padding: 0 !important;
      border: 0 !important;
      background: transparent !important;
      outline: none !important;
      box-shadow: none !important;
      font-family: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif !important;
      font-size: 1rem !important;
      font-weight: 500 !important;
      line-height: 1.2 !important;
      color: #272d3b !important;
      height: auto; }
      .ngp-form label.at-text input::placeholder,
      .ngp-form label.at-text select::placeholder,
      .ngp-form label.at-select input::placeholder,
      .ngp-form label.at-select select::placeholder {
        color: transparent !important; }
    .ngp-form label.at-text:focus-within,
    .ngp-form label.at-select:focus-within {
      border-color: #272d3b !important; }
  .ngp-form label.at-text:not(:focus-within):has(input:placeholder-shown) {
    padding-top: 0.85rem;
    font-size: 1rem !important;
    line-height: 1.2 !important; }
  .ngp-form label.at-text.error:not(:focus-within):has(input:placeholder-shown) {
    padding-top: 0.2rem !important;
    font-size: 0.5625rem !important;
    line-height: 1 !important; }
  .ngp-form label.at-textarea {
    display: block;
    position: relative;
    margin: 0;
    background: transparent;
    border: 1px solid #272d3b;
    border-radius: 0.1875rem;
    padding: 0.4rem 0.775rem 0.5rem;
    font-family: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif !important;
    font-size: 0.5625rem !important;
    font-weight: 500 !important;
    color: rgba(39, 45, 59, 0.55) !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    line-height: 1.45 !important;
    cursor: text;
    transition: border-color 0.2s ease; }
    .ngp-form label.at-textarea textarea {
      display: block !important;
      width: 100% !important;
      margin: 0.25rem 0 0 !important;
      padding: 0 !important;
      border: 0 !important;
      background: transparent !important;
      outline: none !important;
      box-shadow: none !important;
      font-family: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif !important;
      font-size: 1rem !important;
      font-weight: 500 !important;
      line-height: 1.4 !important;
      color: #272d3b !important;
      resize: vertical; }
    .ngp-form label.at-textarea:focus-within {
      border-color: #272d3b !important; }
  .ngp-form label.at-select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%23272d3b' stroke-width='1.5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.775rem center; }
    .ngp-form label.at-select select {
      padding-right: 1.5rem !important;
      appearance: none !important;
      -webkit-appearance: none !important;
      -moz-appearance: none !important;
      cursor: pointer; }
      .ngp-form label.at-select select option {
        background: #ffffff;
        color: #272d3b; }
  .ngp-form .at-row {
    margin-bottom: 1rem; }
  .ngp-form .at-row:has(> input[type="hidden"]),
  .ngp-form .at-row:has(> div.at-markup),
  .ngp-form .at-row:has(input[name="PersonalUrl"]) {
    display: none !important; }
  .ngp-form label.at-check {
    display: flex;
    align-items: center;
    margin: 0 0 0.25rem;
    padding: 0;
    font-family: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 0.8rem;
    color: #272d3b;
    cursor: pointer; }
    .ngp-form label.at-check .at-checkbox-title-container {
      padding-left: 1.5em !important; }
      .ngp-form label.at-check .at-checkbox-title-container::before {
        width: 0.95rem !important;
        height: 0.95rem !important;
        top: 50% !important;
        left: 0 !important;
        transform: translateY(-50%) !important;
        background: #272d3b !important;
        border-color: #272d3b !important;
        border-radius: 0.1875rem !important; }
      .ngp-form label.at-check .at-checkbox-title-container::after {
        content: "\2714\fe0e" !important;
        font-variant-emoji: text;
        color: #fff !important;
        font-size: 0.7rem !important;
        line-height: 1 !important;
        top: 50% !important;
        left: 0.475rem !important;
        transform: translate(-50%, -50%) !important;
        width: auto !important;
        height: auto !important; }
  .ngp-form .at-form-submit {
    padding: 0 !important;
    position: relative; }
    .ngp-form .at-form-submit::after {
      content: '';
      position: absolute;
      right: 0;
      bottom: 0.5rem;
      width: 1em;
      height: 1em;
      font-size: 1.4rem;
      background: #e68600;
      clip-path: polygon(100% 0, 100% 100%, 0 100%);
      pointer-events: none; }
    @media (max-width: 580px) {
      .ngp-form .at-form-submit::after {
        font-size: 1.15rem; } }
  .ngp-form input[type="submit"],
  .ngp-form button[type="submit"],
  .ngp-form .at-submit input,
  .ngp-form .at-submit button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5em;
    box-sizing: border-box;
    width: 100% !important;
    float: none !important;
    padding: 1.125rem 2rem !important;
    margin: 0 0 0.5rem !important;
    background: #FFB809 url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231D252C' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z'/%3E%3C/svg%3E") no-repeat !important;
    background-position: calc(50% - 3.5em) center !important;
    background-size: 1.3rem 1.3rem !important;
    color: #272d3b !important;
    font-family: "Montserrat", "Open Sans", -apple-system, BlinkMacSystemFont, sans-serif !important;
    font-size: 1.4rem !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    line-height: normal !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    cursor: pointer;
    transition: background-color 0.18s ease;
    text-shadow: none !important; }
    .ngp-form input[type="submit"]:hover,
    .ngp-form button[type="submit"]:hover,
    .ngp-form .at-submit input:hover,
    .ngp-form .at-submit button:hover {
      background-color: #E5A100 !important; }
    .ngp-form input[type="submit"]:active,
    .ngp-form button[type="submit"]:active,
    .ngp-form .at-submit input:active,
    .ngp-form .at-submit button:active {
      transform: translateY(1px); }
    @media (max-width: 580px) {
      .ngp-form input[type="submit"],
      .ngp-form button[type="submit"],
      .ngp-form .at-submit input,
      .ngp-form .at-submit button {
        font-size: 1.15rem !important;
        background-size: 1.15rem 1.15rem !important;
        background-position: calc(50% - 3.25em) center !important; } }
  .ngp-form label.at-text.error,
  .ngp-form label.at-select.error,
  .ngp-form label.at-textarea.error {
    border-color: #EF4129 !important;
    color: #EF4129 !important; }
  .ngp-form .at-row:has(label.error) {
    margin-bottom: 2.25rem; }
  .ngp-form label.at-text small.error,
  .ngp-form label.at-select small.error,
  .ngp-form label.at-textarea small.error {
    position: absolute;
    top: 100%;
    left: 0;
    width: max-content;
    max-width: calc(100vw - 2rem);
    display: block;
    margin: 0.1rem 0 0 !important;
    padding: 0 !important;
    color: #EF4129 !important;
    font-size: 0.8125rem !important;
    font-weight: 500;
    font-family: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif !important;
    line-height: 1.4 !important;
    text-transform: none;
    letter-spacing: 0 !important;
    white-space: normal; }
  .ngp-form .at-error-console:not(:empty) {
    background: rgba(239, 65, 41, 0.08);
    border-left: 3px solid #EF4129;
    color: #EF4129;
    font-family: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.4;
    padding: 0.75rem 1rem;
    margin: 0 0 1rem;
    border-radius: 0.1875rem; }
  .ngp-form .at-error-console > * {
    color: inherit;
    margin: 0; }

.thl-footer > .footer-disclaimer {
  position: absolute;
  left: 1.5rem;
  right: 1.5rem;
  bottom: 1rem;
  margin: 0 auto;
  max-width: 36rem;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.6);
  text-align: center; }
  .thl-footer > .footer-disclaimer a {
    color: inherit;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px; }
    .thl-footer > .footer-disclaimer a:hover {
      color: rgba(255, 255, 255, 0.95); }

#fastaction-signup-hustle {
  display: none !important; }

html.has-overlay {
  overflow: auto !important; }
