.page-hero {
  padding-block: 64px 48px;
}
.page-hero__container {
  display: flex;
  align-items: flex-start;
}
.page-hero__copy {
  max-width: 720px;
}
.page-hero--with-image {
  padding-block: 40px;
}
.page-hero--with-image .page-hero__container {
  display: grid;
  grid-template-columns: minmax(0, 550px) minmax(420px, 550px);
  align-items: center;
  justify-content: center;
  gap: 64px;
}
.page-hero--with-image .page-hero__copy {
  max-width: 550px;
}
.page-hero--crisis {
  padding-block: 80px;
}
.page-hero--crisis .page-hero__container {
  align-items: center;
}
.page-hero--crisis .page-hero__content-stack {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 48px;
}
.page-hero--crisis .page-hero__image-wrap {
  justify-self: end;
}
.page-hero h1 {
  margin: 0 0 16px;
  color: #0b5f99;
  font-family: "Roboto Condensed", "Roboto", Arial, sans-serif;
  font-size: 72px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
}
.page-hero p {
  margin: 0;
  color: #0d517f;
  font-size: 18px;
  line-height: 1.5;
}
.page-hero .button, .page-hero__actions {
  margin-top: 24px;
}
.page-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.page-hero__image-wrap {
  overflow: hidden;
  aspect-ratio: 550/500;
  width: 100%;
  border-radius: 16px;
  background: #fec75a;
}
.page-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.page-hero__callout {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  max-width: 550px;
  min-height: 104px;
  padding: 20px;
  border: 1px solid #fed37b;
  border-radius: 12px;
  background: #fff5e1;
}
.page-hero__callout p {
  color: #006672;
}
.page-hero__callout-icon {
  display: inline-flex;
  flex: 0 0 64px;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #007987;
}
.page-hero__callout-icon img {
  display: block;
  width: auto;
  max-width: 24px;
  max-height: 35px;
}

@media (max-width: 767px) {
  .page-hero {
    padding-block: 24px;
  }
  .page-hero--with-image {
    padding-block: 24px 32px;
  }
  .page-hero--with-image .page-hero__container {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
  }
  .page-hero--crisis {
    padding-block: 24px 32px;
  }
  .page-hero--crisis .page-hero__container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .page-hero--crisis .page-hero__content-stack {
    display: contents;
  }
  .page-hero--crisis .page-hero__copy {
    order: 1;
  }
  .page-hero--crisis .page-hero__image-wrap {
    order: 2;
  }
  .page-hero--crisis .page-hero__callout {
    order: 3;
  }
  .page-hero h1 {
    font-size: 32px;
    line-height: 1.1;
    max-width: 320px;
  }
  .page-hero p {
    color: #004457;
    font-size: 16px;
  }
  .page-hero .button, .page-hero__actions {
    margin-top: 16px;
  }
  .page-hero__actions {
    display: grid;
    grid-template-columns: repeat(2, max-content);
    justify-content: center;
    gap: 16px 8px;
    padding-inline: 0;
  }
  .page-hero__actions .button {
    min-height: 40px;
    padding-inline: 18px;
  }
  .page-hero__actions .button:nth-child(3) {
    grid-column: 1/-1;
    justify-self: center;
  }
  .page-hero__image-wrap {
    aspect-ratio: 550/500;
  }
  .page-hero__callout {
    min-height: 96px;
    padding: 12px;
  }
  .page-hero__callout p {
    font-size: 16px;
  }
  .page-hero__callout-icon {
    flex-basis: 56px;
    width: 56px;
    height: 56px;
  }
  .page-hero__callout-icon img {
    max-height: 30px;
  }
}
.support-types {
  padding-top: 16px;
}
.support-types__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  align-items: start;
}
.support-types__column {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 40px;
}

.support-type {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 24px;
  order: var(--support-type-order, 0);
}
.support-type * {
  min-width: 0;
  overflow-wrap: anywhere;
}
.support-type h3 {
  margin: 0;
  color: #0d517f;
  font-family: "Roboto Condensed", "Roboto", Arial, sans-serif;
  font-size: 38px;
  font-weight: 600;
  line-height: 1.1;
}
.support-type p {
  margin: 8px 0 0;
  color: #004457;
  font-size: 18px;
  line-height: 1.5;
}
.support-type__details {
  margin-top: auto;
  padding: 24px 40px;
  border: 1px solid #1996de;
  border-radius: 24px;
  background: #fff;
  overflow: hidden;
}
.support-type__details summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid #e2f1fc;
  color: #004457;
  cursor: pointer;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
  list-style: none;
}
.support-type__details summary::-webkit-details-marker {
  display: none;
}
.support-type__details:not([open]) summary {
  padding-bottom: 0;
  border-bottom-color: transparent;
}
.support-type__details:not([open]) .support-type__icon--closed {
  display: inline-grid;
}
.support-type__details:not([open]) .support-type__icon--open,
.support-type__details .support-type__icon--closed {
  display: none;
}
.support-type__icon {
  display: inline-grid;
  flex: 0 0 48px;
  place-items: center;
  width: 48px;
  height: 48px;
  color: #2389ee;
}
.support-type__icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}
.support-type__intro {
  min-height: 132px;
}
.support-type__body {
  padding-top: 8px;
  color: #004457;
  font-size: 18px;
  line-height: 1.5;
}
.support-type__body ul {
  margin: 0 0 18px;
  padding-left: 24px;
}
.support-type__body li + li {
  margin-top: 8px;
}
.support-type__body p {
  margin: 0 0 16px;
}

.has-js .support-type__body {
  max-height: 0;
  overflow: hidden;
  padding-top: 0;
  opacity: 0;
  transition: max-height 260ms ease, padding-top 260ms ease, opacity 180ms ease;
}
.has-js .support-type__details[open] .support-type__body {
  padding-top: 8px;
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .has-js .support-type__body {
    transition: none;
  }
}
@media (max-width: 767px) {
  .support-types {
    padding-block: 24px;
  }
  .support-types__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .support-types__column {
    display: contents;
  }
  .support-type {
    gap: 16px;
  }
  .support-type__intro {
    min-height: 0;
  }
  .support-type h3 {
    font-size: 28px;
  }
  .support-type p, .support-type__body {
    font-size: 16px;
  }
  .support-type__details {
    padding: 20px;
    border-radius: 16px;
  }
  .support-type__details summary {
    font-size: 18px;
    white-space: normal;
  }
  .support-type__icon {
    flex-basis: 32px;
    width: 32px;
    height: 32px;
  }
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #004457;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  text-decoration: underline;
}
.text-link svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.number-cards h2,
.resource-panel h2 {
  margin: 0 0 24px;
  color: #0b5f99;
  font-family: "Roboto Condensed", "Roboto", Arial, sans-serif;
  font-size: 54px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0;
}

.number-cards__grid,
.resource-panel__grid,
.info-videos__grid {
  display: grid;
  gap: 20px;
}

.number-cards__grid,
.resource-panel__grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.number-card {
  min-height: 260px;
  padding: 24px 20px;
  border-radius: 16px;
  background: #0d517f;
  color: #fff;
}
.number-card * {
  min-width: 0;
  overflow-wrap: anywhere;
}
.number-card strong {
  display: block;
  margin-bottom: 24px;
  color: #bde2fa;
  font-family: "Roboto Condensed", "Roboto", Arial, sans-serif;
  font-size: 72px;
  font-weight: 600;
  line-height: 1;
}
.number-card__icon {
  width: 64px;
  height: 64px;
  margin-bottom: 32px;
  object-fit: contain;
}
.number-card h3 {
  margin: 0;
  color: #fff;
  font-family: "Roboto Condensed", "Roboto", Arial, sans-serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.1;
}
.number-card p {
  margin: 8px 0 0;
  font-size: 18px;
  line-height: 1.5;
}

.resource-panel__inner {
  padding: 40px;
  border: 1px solid #1996de;
  border-radius: 24px;
  background: #fff;
}

.resource-panel__grid {
  margin-bottom: 32px;
  gap: 16px;
}

.resource-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
  border: 1px solid #bde2fa;
  border-radius: 12px;
  background: #fff;
}
.resource-card * {
  min-width: 0;
  overflow-wrap: anywhere;
}
.resource-card h3 {
  margin: 0;
  color: #004457;
  font-family: "Roboto Condensed", "Roboto", Arial, sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.1;
}
.resource-card p {
  margin: 0;
  color: #004457;
  font-size: 16px;
  line-height: 1.5;
}

.crisis-card-grid {
  padding-block: 64px 0;
  background: #fff;
}
.crisis-card-grid + .crisis-card-grid {
  padding-top: 64px;
  padding-bottom: 64px;
}

.crisis-card-grid__container {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.crisis-card-grid__title {
  display: flex;
  align-items: center;
  min-height: 48px;
  border-bottom: 1px solid #e2f1fc;
}
.crisis-card-grid__title h2 {
  margin: 0;
  color: #0b5f99;
  font-family: "Roboto Condensed", "Roboto", Arial, sans-serif;
  font-size: 46px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0;
}

.crisis-card-grid__cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.crisis-card {
  display: flex;
  min-width: 0;
  min-height: 335px;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  padding: 32px 40px;
  border: 1px solid #1996de;
  border-radius: 24px;
  background: #fff;
}
.crisis-card * {
  min-width: 0;
  overflow-wrap: anywhere;
}
.crisis-card h3 {
  margin: 0;
  color: #004457;
  font-family: "Roboto Condensed", "Roboto", Arial, sans-serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0;
}
.crisis-card p {
  margin: 0;
  color: #004457;
  font-size: 18px;
  line-height: 1.5;
}

.crisis-card__icon {
  width: auto;
  max-width: 85px;
  height: 56px;
  object-fit: contain;
}

.crisis-card__content {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 24px;
}

.crisis-card__link,
.crisis-card__note {
  margin-top: auto;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
}

.crisis-card__note {
  color: #004457;
}

.structured-signs {
  padding-block: 64px;
  background: #fffcf7;
}

.structured-signs__container {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.structured-signs__title {
  display: flex;
  align-items: center;
  min-height: 48px;
  border-bottom: 1px solid #e2f1fc;
}
.structured-signs__title h2 {
  margin: 0;
  color: #0b5f99;
  font-family: "Roboto Condensed", "Roboto", Arial, sans-serif;
  font-size: 46px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0;
}

.structured-signs__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.structured-sign-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 224px;
  padding: 32px 20px 25px;
  border-radius: 16px;
  background: #0d517f;
  color: #fff;
}
.structured-sign-card * {
  min-width: 0;
  overflow-wrap: anywhere;
}
.structured-sign-card p {
  margin: 32px 0 0;
  color: #fff;
  font-family: "Roboto Condensed", "Roboto", Arial, sans-serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0;
}

.structured-sign-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #1996de;
}
.structured-sign-card__icon img {
  display: block;
  width: auto;
  max-width: 32px;
  max-height: 32px;
}

.structured-care {
  padding-block: 64px;
  background: #fff;
}

.structured-care__container {
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.structured-care__title {
  display: flex;
  align-items: center;
  min-height: 48px;
  border-bottom: 1px solid #e2f1fc;
}
.structured-care__title h2 {
  margin: 0;
  color: #0b5f99;
  font-family: "Roboto Condensed", "Roboto", Arial, sans-serif;
  font-size: 54px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0;
}

.structured-care__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 64px;
  align-items: start;
}

.structured-care__items {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 40px;
}

.structured-care-item {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 24px;
}
.structured-care-item * {
  min-width: 0;
  overflow-wrap: anywhere;
}

.structured-care-item__intro h3 {
  margin: 0;
  color: #0d517f;
  font-family: "Roboto Condensed", "Roboto", Arial, sans-serif;
  font-size: 38px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0;
}
.structured-care-item__intro p {
  margin: 8px 0 0;
  color: #004457;
  font-size: 18px;
  line-height: 1.5;
}

.structured-care-item__details {
  width: 100%;
}

.structured-care__media {
  width: 100%;
  max-width: 550px;
  justify-self: end;
  overflow: hidden;
  border-radius: 16px;
  background: #fec75a;
}
.structured-care__media img {
  display: block;
  width: 100%;
  aspect-ratio: 550/500;
  object-fit: cover;
}

.help-cta {
  padding-block: 64px;
  background: #fff;
}

.help-cta__card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
  padding: 40px;
  border: 1px solid #1996de;
  border-radius: 24px;
  background: #e2f1fc;
}
.help-cta__card * {
  min-width: 0;
  overflow-wrap: anywhere;
}

.help-cta__copy {
  display: flex;
  max-width: 550px;
  flex-direction: column;
  gap: 16px;
}
.help-cta__copy h2 {
  margin: 0;
  color: #0b5f99;
  font-family: "Roboto Condensed", "Roboto", Arial, sans-serif;
  font-size: 46px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0;
}
.help-cta__copy p {
  margin: 0;
  color: #004457;
  font-size: 18px;
  line-height: 1.5;
}

.help-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.connection-cta {
  padding-block: 64px;
  background: #fff;
}

.connection-cta__container {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 64px;
  align-items: stretch;
}

.connection-cta__image {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border-radius: 16px;
  object-fit: cover;
}

.connection-cta__cards {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 24px;
}

.connection-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  padding: 40px;
  border: 1px solid #1996de;
  border-radius: 24px;
  background: #fff;
}
.connection-card * {
  min-width: 0;
  overflow-wrap: anywhere;
}
.connection-card h2 {
  margin: 0;
  color: #0b5f99;
  font-family: "Roboto Condensed", "Roboto", Arial, sans-serif;
  font-size: 38px;
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: 0;
}
.connection-card p {
  margin: 24px 0 0;
  color: #0d517f;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.45;
}

.connection-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

@media (max-width: 767px) {
  .number-cards h2,
  .resource-panel h2 {
    font-size: 28px;
    line-height: 1.1;
  }
  .number-cards__grid,
  .info-videos__grid,
  .resource-panel__grid {
    grid-template-columns: 1fr;
  }
  .number-card {
    min-height: 0;
  }
  .number-card h3 {
    font-size: 24px;
  }
  .number-card__icon {
    margin-bottom: 24px;
  }
  .number-card p {
    font-size: 16px;
  }
  .info-videos p,
  .resource-card p {
    font-size: 16px;
  }
  .resource-panel__inner {
    padding: 20px;
    border-radius: 16px;
  }
  .crisis-card-grid,
  .crisis-card-grid + .crisis-card-grid {
    padding-block: 24px;
  }
  .crisis-card-grid__container {
    gap: 24px;
    width: min(100% - 32px, 550px);
  }
  .crisis-card-grid__title {
    min-height: 31px;
  }
  .crisis-card-grid__title h2 {
    font-size: 28px;
    line-height: 1.1;
  }
  .crisis-card-grid__cards {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .crisis-card {
    min-height: 0;
    gap: 16px;
    padding: 16px 24px 16px 16px;
    border-radius: 24px;
  }
  .crisis-card h3 {
    font-family: "Roboto", Arial, sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5;
  }
  .crisis-card p {
    font-size: 16px;
  }
  .crisis-card__icon {
    max-width: 61px;
    height: 40px;
  }
  .crisis-card__content {
    gap: 16px;
  }
  .crisis-card__link,
  .crisis-card__note {
    font-size: 14px;
  }
  .structured-signs {
    padding-block: 24px;
  }
  .structured-signs__container {
    gap: 24px;
  }
  .structured-signs__title {
    min-height: 0;
    border-bottom: 0;
  }
  .structured-signs__title h2 {
    font-size: 28px;
    line-height: 1.1;
  }
  .structured-signs__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .structured-sign-card {
    min-height: 214px;
    padding: 24px 20px 26px;
    gap: 24px;
  }
  .structured-sign-card p {
    margin-top: auto;
    font-size: 24px;
    line-height: 1.1;
  }
  .structured-sign-card__icon {
    width: 64px;
    height: 64px;
  }
  .structured-sign-card__icon img {
    max-height: 48px;
    max-width: 48px;
  }
  .structured-care {
    padding-block: 24px;
  }
  .structured-care__container {
    gap: 24px;
  }
  .structured-care__title {
    min-height: 31px;
  }
  .structured-care__title h2 {
    font-size: 28px;
    line-height: 1.1;
  }
  .structured-care__layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .structured-care__items {
    gap: 40px;
  }
  .structured-care-item {
    gap: 24px;
  }
  .structured-care-item__intro h3 {
    font-size: 24px;
    line-height: 1.1;
  }
  .structured-care-item__intro p {
    font-size: 16px;
  }
  .structured-care-item__details {
    padding: 16px;
    border-radius: 24px;
  }
  .structured-care-item__details summary {
    font-size: 18px;
  }
  .structured-care__media {
    max-width: none;
  }
  .help-cta {
    padding-block: 24px;
  }
  .help-cta__container {
    width: min(100% - 32px, 550px);
  }
  .help-cta__card {
    gap: 24px;
    padding: 24px 16px;
    border-radius: 24px;
  }
  .help-cta__copy {
    gap: 8px;
  }
  .help-cta__copy h2 {
    font-size: 24px;
    line-height: 1.1;
  }
  .help-cta__copy p {
    font-size: 16px;
  }
  .help-cta__actions {
    display: grid;
    grid-template-columns: repeat(2, max-content);
    justify-content: center;
    gap: 16px 8px;
    width: 100%;
    padding-inline: 12px;
  }
  .help-cta__actions .button {
    padding-inline: 20px;
  }
  .help-cta__actions .button--blue {
    grid-column: 1/-1;
    justify-self: center;
  }
  .connection-cta {
    padding-block: 24px 32px;
  }
  .connection-cta__container {
    grid-template-columns: 1fr;
    gap: 24px;
    width: min(100% - 32px, 550px);
  }
  .connection-cta__image {
    min-height: 0;
    aspect-ratio: 550/500;
  }
  .connection-cta__cards {
    gap: 24px;
  }
  .connection-card {
    padding: 24px 16px;
    border-radius: 24px;
  }
  .connection-card h2 {
    font-size: 24px;
    line-height: 1.12;
  }
  .connection-card p {
    margin-top: 8px;
  }
  .connection-card__actions {
    display: grid;
    grid-template-columns: repeat(2, max-content);
    justify-content: center;
    gap: 16px 8px;
    width: 100%;
  }
  .connection-card__actions .button {
    padding-inline: 12px;
  }
  .connection-card__actions .button--blue {
    grid-column: 1/-1;
    justify-self: center;
  }
}
.info-videos {
  padding-block: 64px;
}

.info-videos__container {
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.info-videos__copy {
  max-width: 550px;
}

.info-videos h2 {
  margin: 0 0 16px;
  color: #0b5f99;
  font-family: "Roboto Condensed", "Roboto", Arial, sans-serif;
  font-size: 46px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0;
}

.info-videos__media-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  width: 100%;
}

.info-videos__media-group h3 {
  margin: 0;
  color: #0b5f99;
  font-family: "Roboto Condensed", "Roboto", Arial, sans-serif;
  font-size: 38px;
  font-weight: 600;
  line-height: 1.1;
  text-align: center;
}

.info-videos__grid {
  grid-template-columns: repeat(2, minmax(0, 550px));
  justify-content: center;
  gap: 32px;
  width: 100%;
}

.info-videos .video-prompt {
  gap: 24px;
  width: 100%;
}

.info-videos .video-prompt__media {
  aspect-ratio: 550/328;
  width: 100%;
  border-radius: 8px;
}

.info-videos .video-prompt figcaption {
  width: 100%;
  margin: 0;
  color: #004457;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
}

.info-videos p {
  margin: 8px 0 0;
  font-size: 18px;
  line-height: 1.5;
}

.info-videos * {
  min-width: 0;
  overflow-wrap: anywhere;
}

@media (max-width: 767px) {
  .info-videos__grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .info-videos h2 {
    font-size: 24px;
    line-height: 1.1;
  }
  .info-videos__container {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }
  .info-videos__media-group {
    align-items: stretch;
    gap: 24px;
  }
  .info-videos__media-group h3 {
    font-size: 20px;
    text-align: left;
  }
  .info-videos .video-prompt__media {
    aspect-ratio: 328/240;
    border-radius: 16px;
  }
  .info-videos .video-prompt figcaption {
    font-size: 16px;
  }
}
.community-events {
  padding-block: 16px !important;
  background: #fff;
}
.community-events__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.event-card {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  padding: 40px;
  border: 1px solid #1996de;
  border-radius: 24px;
  background: #fff;
  color: #004457;
}
.event-card * {
  min-width: 0;
  overflow-wrap: anywhere;
}
.event-card h3 {
  margin: 0;
  color: #004457;
  font-family: "Roboto Condensed", "Roboto", Arial, sans-serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0;
}
.event-card__date {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #0b5f99;
  text-align: center;
  white-space: nowrap;
}
.event-card__date-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: "Roboto Condensed", "Roboto", Arial, sans-serif;
  font-weight: 600;
  line-height: 1;
}
.event-card__date-main strong {
  color: #2389ee;
  font-size: 72px;
  line-height: 1;
}
.event-card__date-main span {
  color: #0b5f99;
  font-size: 54px;
  font-weight: 600;
  line-height: 1.1;
}
.event-card__date small {
  color: #0b5f99;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}
.event-card__format {
  margin: 0;
  color: #004457;
  font-size: 16px;
  line-height: 1.5;
}
.event-card__time, .event-card__description p, .event-card__registration {
  margin: 0;
  font-size: 18px;
  line-height: 1.5;
}
.event-card__description p + p {
  margin-top: 8px;
}
.event-card__time {
  color: #1673bc;
  font-weight: 700;
}
.event-card__body {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 24px;
  padding-left: 24px;
  border-left: 1px solid #e2f1fc;
}
.event-card__heading {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: #004457;
}
.event-card__details {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

@media (max-width: 767px) {
  .community-events {
    padding-block: 24px 32px;
  }
  .community-events__list {
    gap: 24px;
  }
  .event-card {
    grid-template-columns: 1fr;
    gap: 24px;
    justify-items: center;
    padding: 40px 16px;
    border-radius: 24px;
  }
  .event-card h3 {
    font-size: 24px;
    line-height: 1.1;
  }
  .event-card__date {
    gap: 0;
  }
  .event-card__date-main {
    flex-direction: row;
    gap: 8px;
    line-height: 1.1;
  }
  .event-card__date-main strong {
    font-size: 32px;
    line-height: 1.1;
  }
  .event-card__date-main span {
    font-size: 32px;
    line-height: 1.1;
  }
  .event-card__body {
    width: 100%;
    gap: 16px;
    padding-left: 0;
    border-left: 0;
  }
  .event-card__time, .event-card__description p, .event-card__registration {
    font-size: 16px;
  }
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #fffcf7;
  color: #004457;
  font-family: "Roboto", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
}

img,
svg {
  display: block;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

button,
input,
textarea,
select {
  font: inherit;
}

:focus-visible {
  outline: 3px solid #2389ee;
  outline-offset: 3px;
}

.screen-reader-text,
.skip-link:not(:focus) {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  position: fixed;
  z-index: 1000;
  top: 16px;
  left: 16px;
  padding: 10px 14px;
  background: #fff;
  color: #0d517f;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(11, 43, 70, 0.16);
}

.container {
  width: calc(100% - 32px);
  max-width: 1168px;
  margin-inline: auto;
}

.section {
  padding-block: 64px;
}

.section--cream {
  background: #fffcf7;
}

.section--white {
  background: #fff;
}

@media (max-width: 1024px) {
  .support-types__grid,
  .resource-panel__grid,
  .info-videos__container {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 767px) {
  .section {
    padding-block: 24px;
  }
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  gap: 6px;
  width: fit-content;
  max-width: 100%;
  min-width: 146px;
  min-height: 48px;
  padding: 12px 24px;
  border: 0;
  border-radius: 999px;
  color: #0d517f;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0;
  text-decoration: none;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
  text-align: center;
}

.button svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  flex: 0 0 auto;
}

.button:hover {
  transform: translateY(-1px);
}

.button--small {
  min-width: 0;
  min-height: 40px;
  padding: 8px 20px;
  font-size: 16px;
}

.button--small svg {
  width: 18px;
  height: 18px;
}

.button--yellow {
  background: #fec75a;
}

.button--yellow:hover {
  background: #fed37b;
}

.button--blue {
  background: #1673bc;
  color: #fffcf7;
}

.button--pale {
  background: #e2f1fc;
  color: #0b2b46;
}

.button--pale:hover {
  background: #bde2fa;
}

.button--full {
  width: fit-content;
}

.site-header {
  position: relative;
  z-index: 10;
  background: #fff;
}

.site-header__top {
  border-bottom: 1px solid #e7eeef;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: calc(100% - 160px);
  max-width: 1280px;
  min-height: 100px;
  margin-inline: auto;
  gap: 32px;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  width: 172px;
  height: 60px;
  text-decoration: none;
}

.site-logo__mark {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  background-image: url("../build/logo.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.site-logo__piece {
  display: none;
}

.site-header__actions {
  display: flex;
  align-items: flex-start;
  gap: 30px;
}

.site-header__crisis-actions {
  display: grid;
  grid-template-columns: repeat(3, auto);
  justify-content: center;
  gap: 8px;
}

.site-header__emergency {
  grid-column: 1/-1;
  margin: 4px 0 0;
  color: #142b3d;
  font-size: 12px;
  line-height: 1.5;
  text-align: center;
}

.language-switcher__button,
.site-header__menu-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 68, 87, 0.1);
  background: transparent;
  color: #0d517f;
  border-radius: 999px;
  cursor: pointer;
}

.language-switcher {
  position: relative;
}

.language-switcher__button {
  gap: 6px;
  height: 40px;
  padding-inline: 16px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.6;
}

.language-switcher__button svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.language-switcher__menu {
  position: absolute;
  z-index: 30;
  top: calc(100% + 6px);
  right: 0;
  display: none;
  min-width: 92px;
  padding: 6px;
  border: 1px solid rgba(0, 68, 87, 0.12);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(11, 43, 70, 0.14);
}

.language-switcher.is-open .language-switcher__menu {
  display: grid;
  gap: 2px;
}

.language-switcher__option {
  display: block;
  padding: 8px 12px;
  border-radius: 8px;
  color: #004457;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
}

.language-switcher__option:hover,
.language-switcher__option:focus,
.language-switcher__option.is-current {
  background: rgba(255, 190, 64, 0.22);
  color: #0d517f;
}

.site-header__menu-button {
  display: none;
  width: 40px;
  height: 40px;
  background: #004457;
  color: #fff;
  border-color: #004457;
}

.site-header__menu-button svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.site-header__mobile-crisis {
  display: none;
}

.primary-nav {
  border-bottom: 1px solid #e7eeef;
}

.primary-nav__inner {
  display: flex;
  align-items: center;
  gap: 30px;
  width: calc(100% - 160px);
  max-width: 1280px;
  min-height: 56px;
  margin-inline: auto;
}

.primary-nav__link {
  color: #004457;
  font-weight: 500;
  letter-spacing: 0;
  text-decoration: none;
}

.primary-nav__link:hover,
.primary-nav__link.is-active {
  color: #1673bc;
}

@media (max-width: 1024px) {
  .site-header__inner,
  .primary-nav__inner,
  .site-footer__container {
    width: calc(100% - 32px);
    max-width: 900px;
  }
}
@media (max-width: 767px) {
  .site-header__inner {
    min-height: 72px;
  }
  .site-logo {
    width: 115px;
    height: 40px;
  }
  .site-header__crisis-actions,
  .primary-nav {
    display: none;
  }
  .primary-nav.is-open {
    display: block;
    position: absolute;
    inset-inline: 0;
    top: 134px;
    background: #fff;
    box-shadow: 0 16px 32px rgba(11, 43, 70, 0.12);
  }
  .primary-nav__inner {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    min-height: 0;
    padding-block: 8px;
  }
  .primary-nav__link {
    padding: 14px 0;
  }
  .site-header__actions {
    align-items: center;
    gap: 12px;
  }
  .site-header__menu-button {
    display: inline-flex;
  }
  .site-header__mobile-crisis {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    min-height: 62px;
    padding: 8px 16px;
    background: #fec75a;
    color: #004457;
  }
  .site-header__mobile-links {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2px;
    width: 100%;
  }
  .site-header__mobile-links a {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 2px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0;
    white-space: nowrap;
  }
  .site-header__mobile-links svg,
  .site-header__mobile-link-icon {
    display: block;
    width: 14px;
    height: 14px;
    object-fit: contain;
    flex: 0 0 14px;
  }
  .site-header__mobile-links svg {
    fill: currentColor;
  }
  .site-header__mobile-crisis p {
    margin: 0;
    font-size: 12px;
    line-height: 1.5;
  }
}
.hero {
  padding-block: 80px;
}

.hero__content {
  display: grid;
  grid-template-columns: minmax(0, 550px) minmax(420px, 550px);
  grid-template-areas: "copy image" "callout image";
  align-items: center;
  justify-content: center;
  gap: 48px 64px;
}

.hero__copy {
  grid-area: copy;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  min-width: 0;
}

.hero__title,
.section-heading h2,
.early-support h2,
.support-card h3 {
  margin: 0;
  font-family: "Roboto Condensed", "Roboto", Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0;
}

.hero__title {
  color: #0b5f99;
  font-size: 72px;
  line-height: 1;
  max-width: 100%;
}

.hero__text,
.callout p,
.early-support p {
  margin: 0;
}

.hero__text {
  color: #004457;
  font-size: 18px;
  line-height: 1.5;
  max-width: 100%;
}

.hero__image-wrap {
  grid-area: image;
  overflow: hidden;
  aspect-ratio: 550/500;
  width: 100%;
  background: #fec75a;
  border-radius: 16px;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero__callout {
  grid-area: callout;
}

.callout {
  padding: 20px;
  border: 1px solid #fed37b;
  border-radius: 12px;
  background: #fff5e1;
  color: #005969;
  font-size: 18px;
  line-height: 1.5;
}

.support-options {
  padding-top: 64px;
}

.section-heading {
  display: flex;
  align-items: center;
  min-height: 48px;
  margin-bottom: 32px;
  border-bottom: 1px solid #e2f1fc;
}

.section-heading h2 {
  color: #0b5f99;
  font-size: 54px;
  line-height: 1.1;
}

.support-options__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.support-card {
  display: flex;
  min-width: 0;
  min-height: 320px;
  flex-direction: column;
  justify-content: space-between;
  gap: 32px;
  padding: 24px 20px;
  background: #0d517f;
  border-radius: 16px;
  color: #fff;
}

.support-card h3 {
  color: #fff;
  font-size: 32px;
  line-height: 1.1;
}

.support-card p {
  margin: 8px 0 0;
  font-size: 14px;
}

.support-card .button--full {
  width: 100%;
}

.early-support__container {
  display: grid;
  grid-template-columns: minmax(0, 550px) minmax(420px, 550px);
  align-items: center;
  gap: 64px;
}

.early-support__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  min-width: 0;
}

.early-support h2 {
  color: #0b5f99;
  font-size: 46px;
  line-height: 1.1;
}

.early-support p {
  color: #004457;
  font-size: 18px;
}

@media (max-width: 1024px) {
  .hero__content,
  .early-support__container {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .hero__title {
    font-size: 56px;
  }
  .support-options__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 767px) {
  .hero {
    padding-block: 24px 48px;
  }
  .hero__content {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
  }
  .hero__copy {
    align-items: flex-start;
    gap: 16px;
  }
  .hero__title {
    font-size: 32px;
    line-height: 1.1;
  }
  .hero__text {
    font-size: 16px;
  }
  .hero__image-wrap {
    aspect-ratio: 550/500;
  }
  .hero__image {
    object-position: center;
  }
  .callout {
    font-size: 16px;
  }
  .support-options {
    padding-block: 24px;
  }
  .section-heading {
    min-height: 0;
    margin-bottom: 24px;
  }
  .section-heading h2 {
    font-size: 28px;
    line-height: 1.1;
  }
  .support-options__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .support-card {
    min-height: 0;
    gap: 24px;
    padding: 24px 20px;
  }
  .support-card h3 {
    font-size: 24px;
  }
  .support-card p {
    font-size: 16px;
  }
  .early-support {
    background: #fffcf7;
    padding-block: 24px 48px;
  }
  .early-support__container {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
  }
  .early-support__copy {
    align-items: flex-start;
  }
  .hero__title,
  .hero__text,
  .callout p,
  .early-support h2,
  .early-support p,
  .support-card h3,
  .support-card p {
    overflow-wrap: anywhere;
  }
  .early-support h2 {
    font-size: 24px;
  }
  .early-support p {
    font-size: 16px;
  }
}
.video-prompt {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  margin: 0;
}

.video-prompt__media {
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 550/328;
  background: #9e9e9e;
  border-radius: 8px;
  color: #fec75a;
  text-decoration: none;
}

.video-prompt__cover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-prompt__play {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  color: #fec75a;
  filter: drop-shadow(0 1px 0 #fff) drop-shadow(0 -1px 0 #fff) drop-shadow(1px 0 0 #fff) drop-shadow(-1px 0 0 #fff);
}

.video-prompt__play svg {
  width: 56px;
  height: 56px;
  fill: currentColor;
}

.video-prompt figcaption {
  color: #004457;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
}

.video-prompt__media {
  aspect-ratio: 343/240;
  border-radius: 12px;
}

.video-prompt figcaption {
  font-size: 16px;
  font-weight: 400;
}

.has-video-modal {
  overflow: hidden;
}

.video-modal[hidden] {
  display: none;
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 24px;
}

.video-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
}

.video-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 960px);
  max-height: calc(100vh - 48px);
  overflow: visible;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.video-modal__close {
  position: absolute;
  top: -45px;
  right: -45px;
  z-index: 2;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 2px solid #0b5f99;
  border-radius: 999px;
  background: #fff;
  color: #0b5f99;
  cursor: pointer;
  font-size: 32px;
  line-height: 1;
}

.video-modal__close:hover,
.video-modal__close:focus-visible {
  background: #fec75a;
}

.video-modal__frame {
  aspect-ratio: 16/9;
  background: #0b1f2a;
  border-radius: inherit;
  overflow: hidden;
}

.video-modal__frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 767px) {
  .video-modal {
    padding: 16px;
  }
  .video-modal__dialog {
    max-height: calc(100vh - 32px);
    border-radius: 8px;
  }
  .video-modal__close {
    top: -45px;
    right: 0;
  }
}
.site-footer {
  padding-block: 64px 48px;
  border-top: 1px solid #2389ee;
  background: #f5fafe;
  color: #142b3d;
}

.site-footer__container {
  width: calc(100% - 160px);
  max-width: 1280px;
  margin-inline: auto;
}

.site-footer__container--main {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 64px;
}

.site-footer__about {
  flex: 1 1 auto;
  max-width: 970px;
}

.site-footer__logos {
  display: flex;
  align-items: center;
  gap: 31px;
  margin-bottom: 32px;
}

.site-footer__brand-logo {
  display: block;
  width: 143px;
  height: auto;
}

.site-footer__brand-logo--mobile {
  display: none;
}

.site-footer__brand-logo--desktop {
  align-self: flex-end;
  margin-bottom: 24px;
}

.site-footer__live-well {
  width: 76px;
}

.site-footer p {
  max-width: 376px;
  margin: 0 0 32px;
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.site-footer__links a {
  font-weight: 600;
  text-decoration: none;
}

.site-footer__links a:hover,
.resource-link:hover,
.social-links a:hover {
  color: #1673bc;
}

.site-footer__resources {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.site-footer__resources h2 {
  margin: 0 0 16px;
  font-family: "Roboto", Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  text-align: right;
}

.resource-link {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 48px;
  margin-bottom: 16px;
  color: #142b3d;
  text-decoration: none;
  width: 100%;
}

.resource-link__icon {
  position: relative;
  flex: 0 0 60px;
  width: 60px;
  height: 48px;
}

.resource-link__icon img {
  position: absolute;
  inset: 0;
  width: 52px;
  height: 48px;
  object-fit: contain;
}

.resource-link__image {
  flex: 0 0 60px;
  width: 53px;
  height: 56px;
  object-fit: contain;
}

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid rgba(0, 68, 87, 0.1);
}

.site-footer__bottom p {
  max-width: none;
  margin: 0;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.social-links a {
  color: #0d517f;
  text-decoration: none;
}

.social-links svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

@media (max-width: 767px) {
  .site-footer {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding-block: 48px;
  }
  .site-footer__container {
    width: calc(100% - 32px);
  }
  .site-footer__container--main {
    flex-direction: column;
    gap: 64px;
    margin-bottom: 32px;
  }
  .site-footer__logos {
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    margin-bottom: 24px;
  }
  .site-footer__brand-logo--mobile {
    display: block;
  }
  .site-footer__brand-logo--desktop {
    display: none;
  }
  .site-footer__live-well {
    width: 76px;
  }
  .site-footer p {
    max-width: none;
  }
  .site-footer__about p {
    font-style: italic;
  }
  .site-footer__links {
    flex-direction: column;
    gap: 32px;
  }
  .site-footer__resources {
    align-items: flex-start;
    width: 100%;
    margin-bottom: 32px;
  }
  .site-footer__resources h2 {
    text-align: left;
  }
  .resource-link {
    margin-bottom: 16px;
  }
  .resource-link:last-child {
    margin-bottom: 0;
  }
  .site-footer__bottom {
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 24px;
    padding-top: 32px;
    border-color: #e9eaeb;
  }
  .site-footer__bottom p {
    white-space: normal;
  }
}:root, :host {
  --fa-font-solid: normal 900 1em/1 'Font Awesome 7 Free';
  --fa-font-regular: normal 400 1em/1 'Font Awesome 7 Free';
  --fa-font-light: normal 300 1em/1 'Font Awesome 7 Pro';
  --fa-font-thin: normal 100 1em/1 'Font Awesome 7 Pro';
  --fa-font-duotone: normal 900 1em/1 'Font Awesome 7 Duotone';
  --fa-font-duotone-regular: normal 400 1em/1 'Font Awesome 7 Duotone';
  --fa-font-duotone-light: normal 300 1em/1 'Font Awesome 7 Duotone';
  --fa-font-duotone-thin: normal 100 1em/1 'Font Awesome 7 Duotone';
  --fa-font-brands: normal 400 1em/1 'Font Awesome 7 Brands';
  --fa-font-sharp-solid: normal 900 1em/1 'Font Awesome 7 Sharp';
  --fa-font-sharp-regular: normal 400 1em/1 'Font Awesome 7 Sharp';
  --fa-font-sharp-light: normal 300 1em/1 'Font Awesome 7 Sharp';
  --fa-font-sharp-thin: normal 100 1em/1 'Font Awesome 7 Sharp';
  --fa-font-sharp-duotone-solid: normal 900 1em/1 'Font Awesome 7 Sharp Duotone';
  --fa-font-sharp-duotone-regular: normal 400 1em/1 'Font Awesome 7 Sharp Duotone';
  --fa-font-sharp-duotone-light: normal 300 1em/1 'Font Awesome 7 Sharp Duotone';
  --fa-font-sharp-duotone-thin: normal 100 1em/1 'Font Awesome 7 Sharp Duotone';
  --fa-font-slab-regular: normal 400 1em/1 'Font Awesome 7 Slab';
  --fa-font-slab-press-regular: normal 400 1em/1 'Font Awesome 7 Slab Press';
  --fa-font-slab-duo-regular: normal 400 1em/1 'Font Awesome 7 Slab Duo';
  --fa-font-slab-press-duo-regular: normal 400 1em/1 'Font Awesome 7 Slab Press Duo';
  --fa-font-pixel-regular: normal 400 1em/1 'Font Awesome 7 Pixel';
  --fa-font-mosaic-solid: normal 900 1em/1 'Font Awesome 7 Mosaic';
  --fa-font-vellum-solid: normal 900 1em/1 'Font Awesome 7 Vellum';
  --fa-font-whiteboard-semibold: normal 600 1em/1 'Font Awesome 7 Whiteboard';
  --fa-font-thumbprint-light: normal 300 1em/1 'Font Awesome 7 Thumbprint';
  --fa-font-notdog-solid: normal 900 1em/1 'Font Awesome 7 Notdog';
  --fa-font-notdog-duo-solid: normal 900 1em/1 'Font Awesome 7 Notdog Duo';
  --fa-font-etch-solid: normal 900 1em/1 'Font Awesome 7 Etch';
  --fa-font-graphite-thin: normal 100 1em/1 'Font Awesome 7 Graphite';
  --fa-font-jelly-regular: normal 400 1em/1 'Font Awesome 7 Jelly';
  --fa-font-jelly-fill-regular: normal 400 1em/1 'Font Awesome 7 Jelly Fill';
  --fa-font-jelly-duo-regular: normal 400 1em/1 'Font Awesome 7 Jelly Duo';
  --fa-font-chisel-regular: normal 400 1em/1 'Font Awesome 7 Chisel';
  --fa-font-utility-semibold: normal 600 1em/1 'Font Awesome 7 Utility';
  --fa-font-utility-duo-semibold: normal 600 1em/1 'Font Awesome 7 Utility Duo';
  --fa-font-utility-fill-semibold: normal 600 1em/1 'Font Awesome 7 Utility Fill';
}

.svg-inline--fa {
  box-sizing: content-box;
  display: var(--fa-display, inline-block);
  height: 1em;
  overflow: visible;
  vertical-align: -0.125em;
  width: var(--fa-width, 1.25em);
}
.svg-inline--fa.fa-2xs {
  vertical-align: 0.1em;
}
.svg-inline--fa.fa-xs {
  vertical-align: 0em;
}
.svg-inline--fa.fa-sm {
  vertical-align: -0.0714285714em;
}
.svg-inline--fa.fa-lg {
  vertical-align: -0.2em;
}
.svg-inline--fa.fa-xl {
  vertical-align: -0.25em;
}
.svg-inline--fa.fa-2xl {
  vertical-align: -0.3125em;
}
.svg-inline--fa.fa-pull-left,
.svg-inline--fa .fa-pull-start {
  float: inline-start;
  margin-inline-end: var(--fa-pull-margin, 0.3em);
}
.svg-inline--fa.fa-pull-right,
.svg-inline--fa .fa-pull-end {
  float: inline-end;
  margin-inline-start: var(--fa-pull-margin, 0.3em);
}
.svg-inline--fa.fa-li {
  width: var(--fa-li-width, 2em);
  inset-inline-start: calc(-1 * var(--fa-li-width, 2em));
  inset-block-start: 0.25em; /* syncing vertical alignment with Web Font rendering */
}

.fa-layers-counter, .fa-layers-text {
  display: inline-block;
  position: absolute;
  text-align: center;
}

.fa-layers {
  display: inline-block;
  height: 1em;
  position: relative;
  text-align: center;
  vertical-align: -0.125em;
  width: var(--fa-width, 1.25em);
}
.fa-layers .svg-inline--fa {
  inset: 0;
  margin: auto;
  position: absolute;
  transform-origin: center center;
}

.fa-layers-text {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transform-origin: center center;
}

.fa-layers-counter {
  background-color: var(--fa-counter-background-color, #ff253a);
  border-radius: var(--fa-counter-border-radius, 1em);
  box-sizing: border-box;
  color: var(--fa-inverse, #fff);
  line-height: var(--fa-counter-line-height, 1);
  max-width: var(--fa-counter-max-width, 5em);
  min-width: var(--fa-counter-min-width, 1.5em);
  overflow: hidden;
  padding: var(--fa-counter-padding, 0.25em 0.5em);
  right: var(--fa-right, 0);
  text-overflow: ellipsis;
  top: var(--fa-top, 0);
  transform: scale(var(--fa-counter-scale, 0.25));
  transform-origin: top right;
}

.fa-layers-bottom-right {
  bottom: var(--fa-bottom, 0);
  right: var(--fa-right, 0);
  top: auto;
  transform: scale(var(--fa-layers-scale, 0.25));
  transform-origin: bottom right;
}

.fa-layers-bottom-left {
  bottom: var(--fa-bottom, 0);
  left: var(--fa-left, 0);
  right: auto;
  top: auto;
  transform: scale(var(--fa-layers-scale, 0.25));
  transform-origin: bottom left;
}

.fa-layers-top-right {
  top: var(--fa-top, 0);
  right: var(--fa-right, 0);
  transform: scale(var(--fa-layers-scale, 0.25));
  transform-origin: top right;
}

.fa-layers-top-left {
  left: var(--fa-left, 0);
  right: auto;
  top: var(--fa-top, 0);
  transform: scale(var(--fa-layers-scale, 0.25));
  transform-origin: top left;
}

.fa-1x {
  font-size: 1em;
}

.fa-2x {
  font-size: 2em;
}

.fa-3x {
  font-size: 3em;
}

.fa-4x {
  font-size: 4em;
}

.fa-5x {
  font-size: 5em;
}

.fa-6x {
  font-size: 6em;
}

.fa-7x {
  font-size: 7em;
}

.fa-8x {
  font-size: 8em;
}

.fa-9x {
  font-size: 9em;
}

.fa-10x {
  font-size: 10em;
}

.fa-2xs {
  font-size: calc(10 / 16 * 1em); /* converts a 10px size into an em-based value that's relative to the scale's 16px base */
  line-height: calc(1 / 10 * 1em); /* sets the line-height of the icon back to that of it's parent */
  vertical-align: calc((6 / 10 - 0.375) * 1em); /* vertically centers the icon taking into account the surrounding text's descender */
}

.fa-xs {
  font-size: calc(12 / 16 * 1em); /* converts a 12px size into an em-based value that's relative to the scale's 16px base */
  line-height: calc(1 / 12 * 1em); /* sets the line-height of the icon back to that of it's parent */
  vertical-align: calc((6 / 12 - 0.375) * 1em); /* vertically centers the icon taking into account the surrounding text's descender */
}

.fa-sm {
  font-size: calc(14 / 16 * 1em); /* converts a 14px size into an em-based value that's relative to the scale's 16px base */
  line-height: calc(1 / 14 * 1em); /* sets the line-height of the icon back to that of it's parent */
  vertical-align: calc((6 / 14 - 0.375) * 1em); /* vertically centers the icon taking into account the surrounding text's descender */
}

.fa-lg {
  font-size: calc(20 / 16 * 1em); /* converts a 20px size into an em-based value that's relative to the scale's 16px base */
  line-height: calc(1 / 20 * 1em); /* sets the line-height of the icon back to that of it's parent */
  vertical-align: calc((6 / 20 - 0.375) * 1em); /* vertically centers the icon taking into account the surrounding text's descender */
}

.fa-xl {
  font-size: calc(24 / 16 * 1em); /* converts a 24px size into an em-based value that's relative to the scale's 16px base */
  line-height: calc(1 / 24 * 1em); /* sets the line-height of the icon back to that of it's parent */
  vertical-align: calc((6 / 24 - 0.375) * 1em); /* vertically centers the icon taking into account the surrounding text's descender */
}

.fa-2xl {
  font-size: calc(32 / 16 * 1em); /* converts a 32px size into an em-based value that's relative to the scale's 16px base */
  line-height: calc(1 / 32 * 1em); /* sets the line-height of the icon back to that of it's parent */
  vertical-align: calc((6 / 32 - 0.375) * 1em); /* vertically centers the icon taking into account the surrounding text's descender */
}

.fa-width-auto {
  --fa-width: auto;
}

.fa-fw,
.fa-width-fixed {
  --fa-width: 1.25em;
}

.fa-canvas-square {
  padding-block: 0.125em;
  margin-block-end: -0.125em;
}

.fa-canvas-roomy {
  padding-block: 0.25em;
  padding-inline: 0.125em;
  margin-block-end: -0.25em;
  box-sizing: content-box;
}

.fa-ul {
  list-style-type: none;
  margin-inline-start: var(--fa-li-margin, 2.5em);
  padding-inline-start: 0;
}
.fa-ul > li {
  position: relative;
}

.fa-li {
  inset-inline-start: calc(-1 * var(--fa-li-width, 2em));
  position: absolute;
  text-align: center;
  width: var(--fa-li-width, 2em);
  line-height: inherit;
}

/* Heads Up: Bordered Icons will not be supported in the future!
  - This feature will be deprecated in the next major release of Font Awesome (v8)!
  - You may continue to use it in this version *v7), but it will not be supported in Font Awesome v8.
*/
/* Notes:
* --@{v.$css-prefix}-border-width = 1/16 by default (to render as ~1px based on a 16px default font-size)
* --@{v.$css-prefix}-border-padding =
  ** 3/16 for vertical padding (to give ~2px of vertical whitespace around an icon considering it's vertical alignment)
  ** 4/16 for horizontal padding (to give ~4px of horizontal whitespace around an icon)
*/
.fa-border {
  border-color: var(--fa-border-color, #eee);
  border-radius: var(--fa-border-radius, 0.1em);
  border-style: var(--fa-border-style, solid);
  border-width: var(--fa-border-width, 0.0625em);
  box-sizing: var(--fa-border-box-sizing, content-box);
  padding: var(--fa-border-padding, 0.1875em 0.25em);
}

.fa-pull-left,
.fa-pull-start {
  float: inline-start;
  margin-inline-end: var(--fa-pull-margin, 0.3em);
}

.fa-pull-right,
.fa-pull-end {
  float: inline-end;
  margin-inline-start: var(--fa-pull-margin, 0.3em);
}

.fa-beat {
  animation-name: fa-beat;
  animation-delay: var(--fa-animation-delay, 0s);
  animation-direction: var(--fa-animation-direction, normal);
  animation-duration: var(--fa-animation-duration, 1s);
  animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  animation-timing-function: var(--fa-animation-timing, ease-in-out);
}

.fa-bounce {
  animation-name: fa-bounce;
  animation-delay: var(--fa-animation-delay, 0s);
  animation-direction: var(--fa-animation-direction, normal);
  animation-duration: var(--fa-animation-duration, 1s);
  animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.28, 0.84, 0.42, 1));
}

.fa-fade {
  animation-name: fa-fade;
  animation-delay: var(--fa-animation-delay, 0s);
  animation-direction: var(--fa-animation-direction, normal);
  animation-duration: var(--fa-animation-duration, 1s);
  animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  animation-timing-function: var(--fa-animation-timing, ease-in-out);
}

.fa-beat-fade {
  animation-name: fa-beat-fade;
  animation-delay: var(--fa-animation-delay, 0s);
  animation-direction: var(--fa-animation-direction, normal);
  animation-duration: var(--fa-animation-duration, 1s);
  animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  animation-timing-function: var(--fa-animation-timing, ease-in-out);
}

.fa-flip {
  animation-name: fa-flip;
  animation-delay: var(--fa-animation-delay, 0s);
  animation-direction: var(--fa-animation-direction, normal);
  animation-duration: var(--fa-animation-duration, 1.5s);
  animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  animation-timing-function: var(--fa-animation-timing, ease-in-out);
}

.fa-flip-360 {
  animation-name: fa-flip-360;
  animation-delay: var(--fa-animation-delay, 0s);
  animation-direction: var(--fa-animation-direction, normal);
  animation-duration: var(--fa-animation-duration, 1s);
  animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  animation-timing-function: var(--fa-animation-timing, ease-in-out);
}

.fa-shake {
  animation-name: fa-shake;
  animation-delay: var(--fa-animation-delay, 0s);
  animation-direction: var(--fa-animation-direction, normal);
  animation-duration: var(--fa-animation-duration, 0.75s);
  animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  animation-timing-function: var(--fa-animation-timing, ease-in-out);
}

.fa-spin {
  animation-name: fa-spin;
  animation-delay: var(--fa-animation-delay, 0s);
  animation-direction: var(--fa-animation-direction, normal);
  animation-duration: var(--fa-animation-duration, 2s);
  animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  animation-timing-function: var(--fa-animation-timing, linear);
}

.fa-spin-reverse {
  --fa-animation-direction: reverse;
}

.fa-pulse,
.fa-spin-pulse {
  animation-name: fa-spin;
  animation-direction: var(--fa-animation-direction, normal);
  animation-duration: var(--fa-animation-duration, 1s);
  animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  animation-timing-function: var(--fa-animation-timing, steps(8));
}

.fa-spin-snap {
  animation-name: fa-spin-snap;
  animation-delay: var(--fa-animation-delay, 0s);
  animation-direction: var(--fa-animation-direction, normal);
  animation-duration: var(--fa-animation-duration, 3s);
  animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  animation-timing-function: var(--fa-animation-timing, linear);
}

.fa-spin-snap-4 {
  animation-name: fa-spin-snap-4;
  animation-delay: var(--fa-animation-delay, 0s);
  animation-direction: var(--fa-animation-direction, normal);
  animation-duration: var(--fa-animation-duration, 2.4s);
  animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  animation-timing-function: var(--fa-animation-timing, linear);
}

.fa-spin-snap-8 {
  animation-name: fa-spin-snap-8;
  animation-delay: var(--fa-animation-delay, 0s);
  animation-direction: var(--fa-animation-direction, normal);
  animation-duration: var(--fa-animation-duration, 4s);
  animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  animation-timing-function: var(--fa-animation-timing, linear);
}

.fa-buzz {
  animation-name: fa-buzz;
  animation-delay: var(--fa-animation-delay, 0s);
  animation-direction: var(--fa-animation-direction, normal);
  animation-duration: var(--fa-animation-duration, 0.6s);
  animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  animation-timing-function: var(--fa-animation-timing, linear);
}

.fa-wag {
  animation-name: fa-wag;
  animation-delay: var(--fa-animation-delay, 0s);
  animation-direction: var(--fa-animation-direction, normal);
  animation-duration: var(--fa-animation-duration, 0.9s);
  animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  animation-timing-function: var(--fa-animation-timing, ease-out);
  transform-origin: bottom center;
}

.fa-float {
  animation-name: fa-float;
  animation-delay: var(--fa-animation-delay, 0s);
  animation-direction: var(--fa-animation-direction, normal);
  animation-duration: var(--fa-animation-duration, 3s);
  animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  animation-timing-function: var(--fa-animation-timing, ease-in-out);
  will-change: transform;
}

.fa-swing {
  animation-name: fa-swing;
  animation-delay: var(--fa-animation-delay, 0s);
  animation-direction: var(--fa-animation-direction, normal);
  animation-duration: var(--fa-animation-duration, 1.2s);
  animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  animation-timing-function: var(--fa-animation-timing, ease-out);
  transform-origin: top center;
}

.fa-jello {
  animation-name: fa-jello;
  animation-delay: var(--fa-animation-delay, 0s);
  animation-direction: var(--fa-animation-direction, normal);
  animation-duration: var(--fa-animation-duration, 0.9s);
  animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  animation-timing-function: var(--fa-animation-timing, ease-out);
}

@media (prefers-reduced-motion: reduce) {
  .fa-beat,
  .fa-bounce,
  .fa-fade,
  .fa-beat-fade,
  .fa-flip,
  .fa-flip-360,
  .fa-pulse,
  .fa-shake,
  .fa-spin,
  .fa-spin-pulse,
  .fa-buzz,
  .fa-float,
  .fa-jello,
  .fa-spin-snap,
  .fa-spin-snap-4,
  .fa-spin-snap-8,
  .fa-swing,
  .fa-wag {
    animation: none !important;
    transition: none !important;
  }
}
@keyframes fa-beat {
  0% {
    transform: scale(1);
  }
  25% {
    transform: scale(calc(1.25 * var(--fa-beat-scale, 1.25)));
  }
  45% {
    transform: scale(calc(1.22 * var(--fa-beat-scale, 1.22)));
  }
  65% {
    transform: scale(calc(1.25 * var(--fa-beat-scale, 1.25)));
  }
  90% {
    transform: scale(1);
  }
}
@keyframes fa-bounce {
  0% {
    transform: scale(1, 1) translateY(0);
    animation-timing-function: var(--fa-animation-timing);
  }
  14% {
    transform: scale(var(--fa-bounce-start-scale-x, 1.06), var(--fa-bounce-start-scale-y, 0.94)) translateY(var(--fa-bounce-anticipation, 3px));
    animation-timing-function: cubic-bezier(0.33, 0, 0.66, 0.33);
  }
  32% {
    transform: scale(var(--fa-bounce-jump-scale-x, 0.94), var(--fa-bounce-jump-scale-y, 1.12)) translateY(calc(-1 * var(--fa-bounce-height, 0.5em)));
    animation-timing-function: cubic-bezier(0.33, 0.66, 0.66, 1);
  }
  52% {
    transform: scale(1, 1) translateY(calc(-1 * var(--fa-bounce-height, 0.5em) * 1.1));
    animation-timing-function: cubic-bezier(0.5, 0, 1, 0.5);
  }
  70% {
    transform: scale(var(--fa-bounce-land-scale-x, 1.06), var(--fa-bounce-land-scale-y, 0.92)) translateY(0);
    animation-timing-function: cubic-bezier(0.33, 0.33, 0.66, 1);
  }
  85% {
    transform: scale(0.98, 1.04) translateY(calc(-2px * var(--fa-bounce-rebound, 1)));
    animation-timing-function: cubic-bezier(0.33, 0, 0.66, 1);
  }
  100% {
    transform: scale(1, 1) translateY(0);
  }
}
@keyframes fa-fade {
  0% {
    opacity: 1;
    transform: scale(1);
    animation-timing-function: cubic-bezier(0.2, 0, 0.4, 1);
  }
  40% {
    opacity: var(--fa-fade-opacity, 0.4);
    transform: scale(0.98);
    animation-timing-function: cubic-bezier(0.4, 0, 0.6, 1);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes fa-beat-fade {
  0% {
    opacity: var(--fa-beat-fade-opacity, 0.4);
    transform: scale(1);
    animation-timing-function: cubic-bezier(0.2, 0, 0.4, 1);
  }
  25% {
    opacity: calc(var(--fa-beat-fade-opacity, 0.4) + 0.4);
    transform: scale(var(--fa-beat-fade-scale, 1.28));
    animation-timing-function: cubic-bezier(0.4, 0, 0.6, 1);
  }
  45% {
    opacity: 1;
    transform: scale(var(--fa-beat-fade-scale, 1.25));
    animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  }
  65% {
    opacity: calc(var(--fa-beat-fade-opacity, 0.4) + 0.4);
    transform: scale(var(--fa-beat-fade-scale, 1.28));
    animation-timing-function: cubic-bezier(0.4, 0, 0.6, 1);
  }
  100% {
    opacity: var(--fa-beat-fade-opacity, 0.4);
    transform: scale(1);
  }
}
@keyframes fa-flip {
  0% {
    transform: perspective(2em) scale(1) rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), 0deg);
    animation-timing-function: cubic-bezier(0.2, 0, 0.4, 1);
  }
  8% {
    transform: perspective(2em) scale(var(--fa-flip-anticipation-scale, 0.95)) rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), 0deg);
    animation-timing-function: cubic-bezier(0.33, 0, 0.66, 0.33);
  }
  35% {
    transform: perspective(2em) scale(1) rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), calc(var(--fa-flip-angle, -360deg) * 0.6));
    animation-timing-function: linear;
  }
  65% {
    transform: perspective(2em) scale(1) rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), calc(var(--fa-flip-angle, -360deg) * 0.5));
    animation-timing-function: cubic-bezier(0.33, 0.66, 0.66, 1);
  }
  92% {
    transform: perspective(2em) scale(1) rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), calc(var(--fa-flip-angle, -360deg) * var(--fa-flip-overshoot, 1.04)));
    animation-timing-function: cubic-bezier(0.33, 0, 0.66, 1);
  }
  100% {
    transform: perspective(2em) scale(1) rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -360deg));
  }
}
@keyframes fa-flip-360 {
  0% {
    transform: perspective(2em) scale(1) rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), 0deg);
    animation-timing-function: cubic-bezier(0.2, 0, 0.4, 1);
  }
  8% {
    transform: perspective(2em) scale(var(--fa-flip-anticipation-scale, 0.95)) rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), 0deg);
    animation-timing-function: cubic-bezier(0.33, 0, 0.66, 0.33);
  }
  50% {
    transform: perspective(2em) scale(1) rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), calc(var(--fa-flip-angle, -360deg) * 0.6));
    animation-timing-function: cubic-bezier(0.33, 0.66, 0.66, 1);
  }
  80% {
    transform: perspective(2em) scale(1) rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), calc(var(--fa-flip-angle, -360deg) * var(--fa-flip-overshoot, 1.04)));
    animation-timing-function: cubic-bezier(0.33, 0, 0.66, 1);
  }
  100% {
    transform: perspective(2em) scale(1) rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -360deg));
  }
}
@keyframes fa-shake {
  0% {
    transform: rotate(0deg);
    animation-timing-function: cubic-bezier(0.2, 0, 0.8, 1);
  }
  8% {
    transform: rotate(35deg) translateX(1px);
    animation-timing-function: cubic-bezier(0.3, 0, 0.7, 1);
  }
  20% {
    transform: rotate(-22deg) translateX(-1px);
    animation-timing-function: cubic-bezier(0.3, 0, 0.7, 1);
  }
  35% {
    transform: rotate(15deg) translateX(1px);
    animation-timing-function: cubic-bezier(0.3, 0, 0.7, 1);
  }
  50% {
    transform: rotate(-9deg);
    animation-timing-function: cubic-bezier(0.4, 0, 0.6, 1);
  }
  65% {
    transform: rotate(5deg);
    animation-timing-function: cubic-bezier(0.4, 0, 0.6, 1);
  }
  78% {
    transform: rotate(-3deg);
    animation-timing-function: cubic-bezier(0.4, 0, 0.6, 1);
  }
  90% {
    transform: rotate(1deg);
    animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes fa-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes fa-spin-snap {
  0% {
    transform: rotate(0deg);
    animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
  }
  12% {
    transform: rotate(60deg);
    animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
  }
  16.67% {
    transform: rotate(60deg);
    animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
  }
  28.67% {
    transform: rotate(120deg);
    animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
  }
  33.33% {
    transform: rotate(120deg);
    animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
  }
  45.33% {
    transform: rotate(180deg);
    animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
  }
  50% {
    transform: rotate(180deg);
    animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
  }
  62% {
    transform: rotate(240deg);
    animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
  }
  66.67% {
    transform: rotate(240deg);
    animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
  }
  78.67% {
    transform: rotate(300deg);
    animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
  }
  83.33% {
    transform: rotate(300deg);
    animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
  }
  95.33% {
    transform: rotate(360deg);
    animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes fa-spin-snap-4 {
  0% {
    transform: rotate(0deg);
    animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
  }
  15% {
    transform: rotate(90deg);
    animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
  }
  25% {
    transform: rotate(90deg);
    animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
  }
  40% {
    transform: rotate(180deg);
    animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
  }
  50% {
    transform: rotate(180deg);
    animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
  }
  65% {
    transform: rotate(270deg);
    animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
  }
  75% {
    transform: rotate(270deg);
    animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
  }
  90% {
    transform: rotate(360deg);
    animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes fa-spin-snap-8 {
  0% {
    transform: rotate(0deg);
    animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
  }
  9% {
    transform: rotate(45deg);
    animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
  }
  12.5% {
    transform: rotate(45deg);
    animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
  }
  21.5% {
    transform: rotate(90deg);
    animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
  }
  25% {
    transform: rotate(90deg);
    animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
  }
  34% {
    transform: rotate(135deg);
    animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
  }
  37.5% {
    transform: rotate(135deg);
    animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
  }
  46.5% {
    transform: rotate(180deg);
    animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
  }
  50% {
    transform: rotate(180deg);
    animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
  }
  59% {
    transform: rotate(225deg);
    animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
  }
  62.5% {
    transform: rotate(225deg);
    animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
  }
  71.5% {
    transform: rotate(270deg);
    animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
  }
  75% {
    transform: rotate(270deg);
    animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
  }
  84% {
    transform: rotate(315deg);
    animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
  }
  87.5% {
    transform: rotate(315deg);
    animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
  }
  96.5% {
    transform: rotate(360deg);
    animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes fa-buzz {
  0% {
    transform: translateX(0) rotate(0deg);
    animation-timing-function: cubic-bezier(0.1, 0, 0.9, 1);
  }
  5% {
    transform: translateX(var(--fa-buzz-distance, 4px)) rotate(0.5deg);
  }
  10% {
    transform: translateX(calc(-1 * var(--fa-buzz-distance, 4px))) rotate(-0.5deg);
  }
  15% {
    transform: translateX(var(--fa-buzz-distance, 4px)) rotate(0.3deg);
  }
  20% {
    transform: translateX(calc(-1 * var(--fa-buzz-distance, 4px))) rotate(-0.3deg);
  }
  25% {
    transform: translateX(calc(var(--fa-buzz-distance, 4px) * 0.7)) rotate(0.2deg);
  }
  30% {
    transform: translateX(calc(-1 * var(--fa-buzz-distance, 4px) * 0.7)) rotate(-0.2deg);
  }
  35% {
    transform: translateX(calc(var(--fa-buzz-distance, 4px) * 0.4)) rotate(0.1deg);
  }
  40% {
    transform: translateX(0) rotate(0deg);
  }
  100% {
    transform: translateX(0) rotate(0deg);
  }
}
@keyframes fa-wag {
  0% {
    transform: rotate(0deg);
    animation-timing-function: cubic-bezier(0.2, 0, 0.6, 1);
  }
  12% {
    transform: rotate(var(--fa-wag-angle, 12deg));
    animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  }
  24% {
    transform: rotate(2deg);
    animation-timing-function: cubic-bezier(0.2, 0, 0.6, 1);
  }
  36% {
    transform: rotate(calc(var(--fa-wag-angle, 12deg) * 0.85));
    animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  }
  48% {
    transform: rotate(1deg);
    animation-timing-function: cubic-bezier(0.2, 0, 0.6, 1);
  }
  58% {
    transform: rotate(calc(var(--fa-wag-angle, 12deg) * 0.6));
    animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  }
  68% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes fa-float {
  0% {
    transform: translateY(0) translateX(0) rotate(0deg) scale(var(--fa-float-squash-x, 1.02), var(--fa-float-squash-y, 0.98));
    animation-timing-function: cubic-bezier(0.33, 0, 0.66, 0.33);
  }
  15% {
    transform: translateY(calc(-0.4 * var(--fa-float-height, 6px))) translateX(var(--fa-float-drift, 1px)) rotate(var(--fa-float-tilt, 1deg)) scale(1, 1);
    animation-timing-function: cubic-bezier(0.33, 0.66, 0.66, 1);
  }
  35% {
    transform: translateY(calc(-1 * var(--fa-float-height, 6px))) translateX(0) rotate(0deg) scale(var(--fa-float-stretch-x, 0.98), var(--fa-float-stretch-y, 1.03));
    animation-timing-function: cubic-bezier(0.5, 0, 0.5, 0);
  }
  50% {
    transform: translateY(calc(-0.92 * var(--fa-float-height, 6px))) translateX(calc(-0.5 * var(--fa-float-drift, 1px))) rotate(calc(-0.5 * var(--fa-float-tilt, 1deg))) scale(0.995, 1.01);
    animation-timing-function: cubic-bezier(0.33, 0, 0.66, 0.33);
  }
  70% {
    transform: translateY(calc(-0.3 * var(--fa-float-height, 6px))) translateX(calc(-1 * var(--fa-float-drift, 1px))) rotate(calc(-1 * var(--fa-float-tilt, 1deg))) scale(1, 1);
    animation-timing-function: cubic-bezier(0.33, 0.66, 0.66, 1);
  }
  90% {
    transform: translateY(calc(0.05 * var(--fa-float-height, 6px))) translateX(0) rotate(0deg) scale(var(--fa-float-squash-x, 1.02), var(--fa-float-squash-y, 0.98));
    animation-timing-function: cubic-bezier(0.33, 0, 0.66, 1);
  }
  100% {
    transform: translateY(0) translateX(0) rotate(0deg) scale(var(--fa-float-squash-x, 1.02), var(--fa-float-squash-y, 0.98));
  }
}
@keyframes fa-swing {
  0% {
    transform: rotate(0deg);
    animation-timing-function: cubic-bezier(0.2, 0, 0.8, 1);
  }
  8% {
    transform: rotate(var(--fa-swing-angle, 22deg));
    animation-timing-function: cubic-bezier(0.3, 0, 0.7, 1);
  }
  18% {
    transform: rotate(calc(-1 * var(--fa-swing-angle, 22deg) * 0.85));
    animation-timing-function: cubic-bezier(0.3, 0, 0.7, 1);
  }
  28% {
    transform: rotate(calc(var(--fa-swing-angle, 22deg) * 0.65));
    animation-timing-function: cubic-bezier(0.35, 0, 0.65, 1);
  }
  38% {
    transform: rotate(calc(-1 * var(--fa-swing-angle, 22deg) * 0.45));
    animation-timing-function: cubic-bezier(0.4, 0, 0.6, 1);
  }
  48% {
    transform: rotate(calc(var(--fa-swing-angle, 22deg) * 0.25));
    animation-timing-function: cubic-bezier(0.4, 0, 0.6, 1);
  }
  56% {
    transform: rotate(calc(-1 * var(--fa-swing-angle, 22deg) * 0.1));
    animation-timing-function: cubic-bezier(0.4, 0, 0.6, 1);
  }
  64% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes fa-jello {
  0% {
    transform: scale(1, 1);
    animation-timing-function: cubic-bezier(0.2, 0, 0.8, 1);
  }
  12% {
    transform: scale(var(--fa-jello-scale-x, 1.15), calc(2 - var(--fa-jello-scale-x, 1.15)));
    animation-timing-function: cubic-bezier(0.3, 0, 0.7, 1);
  }
  24% {
    transform: scale(calc(2 - var(--fa-jello-scale-y, 1.12)), var(--fa-jello-scale-y, 1.12));
    animation-timing-function: cubic-bezier(0.3, 0, 0.7, 1);
  }
  36% {
    transform: scale(calc(1 + (var(--fa-jello-scale-x, 1.15) - 1) * 0.5), calc(2 - (1 + (var(--fa-jello-scale-x, 1.15) - 1) * 0.5)));
    animation-timing-function: cubic-bezier(0.4, 0, 0.6, 1);
  }
  48% {
    transform: scale(calc(2 - (1 + (var(--fa-jello-scale-y, 1.12) - 1) * 0.3)), calc(1 + (var(--fa-jello-scale-y, 1.12) - 1) * 0.3));
    animation-timing-function: cubic-bezier(0.4, 0, 0.6, 1);
  }
  58% {
    transform: scale(1.02, 0.98);
    animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  }
  68% {
    transform: scale(1, 1);
  }
  100% {
    transform: scale(1, 1);
  }
}
.fa-rotate-90 {
  transform: rotate(90deg);
}

.fa-rotate-180 {
  transform: rotate(180deg);
}

.fa-rotate-270 {
  transform: rotate(270deg);
}

.fa-flip-horizontal {
  transform: scale(-1, 1);
}

.fa-flip-vertical {
  transform: scale(1, -1);
}

.fa-flip-both,
.fa-flip-horizontal.fa-flip-vertical {
  transform: scale(-1, -1);
}

.fa-rotate-by {
  transform: rotate(var(--fa-rotate-angle, 0));
}

.svg-inline--fa .fa-primary {
  fill: var(--fa-primary-color, currentColor);
  opacity: var(--fa-primary-opacity, 1);
}

.svg-inline--fa .fa-secondary {
  fill: var(--fa-secondary-color, currentColor);
  opacity: var(--fa-secondary-opacity, 0.4);
}

.svg-inline--fa.fa-swap-opacity .fa-primary {
  opacity: var(--fa-secondary-opacity, 0.4);
}

.svg-inline--fa.fa-swap-opacity .fa-secondary {
  opacity: var(--fa-primary-opacity, 1);
}

.svg-inline--fa mask .fa-primary,
.svg-inline--fa mask .fa-secondary {
  fill: black;
}

.svg-inline--fa.fa-inverse {
  fill: var(--fa-inverse, #fff);
}

.fa-stack {
  display: inline-block;
  height: 2em;
  line-height: 2em;
  position: relative;
  vertical-align: middle;
  width: 2.5em;
}

.fa-inverse {
  color: var(--fa-inverse, #fff);
}

.svg-inline--fa.fa-stack-1x {
  --fa-width: 1.25em;
  height: 1em;
  width: var(--fa-width);
}
.svg-inline--fa.fa-stack-2x {
  --fa-width: 2.5em;
  height: 2em;
  width: var(--fa-width);
}

.fa-stack-1x,
.fa-stack-2x {
  inset: 0;
  margin: auto;
  position: absolute;
  z-index: var(--fa-stack-z-index, auto);
}