:root {
  --neutral-1000: #202327;
  --black: black;
  --text--secondary: #4f5762;
  --moss-700: #087a5c;
  --moss-1000: #042c2f;
  --neutral-50: #f9fafb;
  --green: #58d269;
  --moss-900: var(--neon-900);
  --moss-50: #ecf9f4;
  --white: white;
  --green-800: #077017;
  --neutral-400: #d6d9de;
  --neutral-800: #4f5762;
  --neutral-700: #656f7d;
  --moss-600: #099465;
  --green-600: #0dae25;
  --neutral-200: #fff;
  --transparent: #fff0;
  --neutral-900: #3c414a;
  --green-200: #b9eebe;
  --neutral-100: #f7f8f9;
  --neutral-500: #adb3bd;
  --moss-800: #065b4e;
  --moss-300: #64c9a4;
  --neutral-600: #87909e;
  --moss-100: #d3f4e7;
  --moss-500: #0bc87d;
  --neon-600: #0aa970;
  --moss-400: #56d8a5;
  --neon-200: #baeeda;
  --neutral-300: #e8eaed;
  --neon-1000: #042c2f;
  --moss-200: #baeeda;
  --neutral-1100: #0b0e0c;
  --neon-700: #087a5c;
  --green-300: #88e094;
  --neutral-1050: #121416;
  --neon-400: #56d8a5;
  --light-green: var(--moss-900);
  --green-1000: #003308;
  --neon-50: #ecf9f4;
  --neon-900: #053c41;
  --neon-800: #065b4e;
  --neon-500: #0bc87d;
  --neon-300: #88e3bf;
  --neon-100: #d3f4e7;
  --green-900: #03520f;
  --green-700: #0a8f1e;
  --green-500: #3fcb54;
  --green-400: #58d269;
  --green-100: #d1f5d4;
  --green-50: #e9fce9;
}

.w-layout-hflex {
  flex-direction: row;
  align-items: flex-start;
  display: flex;
}

.w-layout-vflex {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.w-pagination-wrapper {
  flex-wrap: wrap;
  justify-content: center;
  display: flex;
}

.w-pagination-previous {
  color: #333;
  background-color: #fafafa;
  border: 1px solid #ccc;
  border-radius: 2px;
  margin-left: 10px;
  margin-right: 10px;
  padding: 9px 20px;
  font-size: 14px;
  display: block;
}

.w-pagination-previous-icon {
  margin-right: 4px;
}

.w-pagination-next {
  color: #333;
  background-color: #fafafa;
  border: 1px solid #ccc;
  border-radius: 2px;
  margin-left: 10px;
  margin-right: 10px;
  padding: 9px 20px;
  font-size: 14px;
  display: block;
}

.w-pagination-next-icon {
  margin-left: 4px;
}

.w-page-count {
  text-align: center;
  width: 100%;
  margin-top: 20px;
}

.w-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.w-form-formrecaptcha {
  margin-bottom: 8px;
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

@media screen and (max-width: 991px) {
  .w-layout-blockcontainer {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
  }
}

body {
  color: #333;
  background-color: #f8f9fa;
  font-family: DM Sans, Arial, Helvetica Neue, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 20px;
}

h1 {
  color: var(--neutral-1000);
  margin-top: 44px;
  margin-bottom: 24px;
  margin-right: 44px;
  font-family: DM Sans, sans-serif;
  font-size: 48px;
  font-weight: 300;
  line-height: 130%;
}

h2 {
  color: var(--neutral-1000);
  margin-top: 60px;
  margin-bottom: 10px;
  font-family: DM Sans, sans-serif;
  font-size: 32px;
  font-weight: 300;
  line-height: 130%;
}

h3, h4 {
  font-family: DM Sans, sans-serif;
  font-weight: 300;
}

h5 {
  color: var(--black);
  margin-top: 60px;
  margin-bottom: 10px;
  font-family: DM Sans, sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 110%;
}

h6 {
  margin-bottom: 0;
  font-family: DM Sans, sans-serif;
  font-size: 12px;
  line-height: 18px;
}

p {
  color: var(--text--secondary);
  margin-bottom: 0;
  font-family: DM Sans, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

a {
  cursor: pointer;
  font-weight: 500;
}

a:hover {
  text-decoration: underline;
}

ol {
  margin-top: 0;
  margin-bottom: 10px;
  padding-left: 40px;
}

li {
  color: var(--moss-1000);
  margin-bottom: 8px;
  font-family: DM Sans, sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 150%;
}

strong {
  font-weight: 300;
}

blockquote {
  border-left: 5px solid #e2e2e2;
  margin-bottom: 10px;
  padding: 10px 20px;
  font-size: 18px;
  line-height: 22px;
}

.section {
  background-color: var(--moss-1000);
}

.section.white {
  background-color: #fff;
  padding: 24px;
}

.section.white.round-container {
  background-color: var(--neutral-50);
  padding: 24px;
}

.section.white.round-container.no-bottom-padding {
  background-color: #f9fafb;
  flex-flow: column;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 100px;
  display: flex;
}

.section.white.round-container.no-bottom-padding.white-section {
  background-color: #fff;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 0;
  padding-bottom: 0;
}

.section.white.round-container.lightgray {
  background-color: #f9fafb;
  padding: 32px 56px;
  display: none;
}

.section.white.round-container.inner-padding {
  padding-bottom: 60px;
}

.section.green {
  background-color: var(--green);
}

.section.green.fixed-height {
  height: 600px;
}

.section.formation {
  background-color: var(--moss-900);
  background-image: url('../images/Thumbprint.png');
  background-position: 0 0;
  background-size: cover;
}

.section.formation.bg-image {
  background-image: linear-gradient(90deg, #ecf9f478, #fff0 46%), url('../images/thom-holmesaf-J2e34-1CVVs-unsplash.jpg');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
}

.section.formation.bus-id__main-section {
  background-image: url('../images/op-business-identity-banner-background.png');
  background-position: 30%;
  background-repeat: repeat-x;
  background-size: cover;
  background-attachment: scroll;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.section.formation.or-mainsection {
  background-color: var(--moss-900);
  background-image: none;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.section.light-gray {
  background-color: #f9fafb;
}

.section.light-gray.innerpadding {
  padding-bottom: 60px;
}

.section.light-gray.padding-60 {
  padding-top: 60px;
  padding-bottom: 60px;
}

.section.light-gray.padding-60._0-padding-mobile {
  -webkit-text-stroke-color: var(--moss-900);
}

.section.light-gray.padding-60.no-padding-mobile.bus-id__lsection {
  justify-content: center;
  align-items: center;
  padding-top: 76px;
  padding-bottom: 76px;
  display: flex;
}

.section.light-gray.padding-60.no-padding-mobile.or-section {
  justify-content: center;
  align-items: center;
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
}

.section.light-gray.padding-60.no-padding-mobile.or-section.or-section--green {
  background-color: var(--moss-50);
}

.section.light-gray.padding-60.no-padding-mobile.or-section.or-section--green.wt {
  background-color: var(--white);
}

.section.light-gray.padding-60.no-padding-mobile.or-section.or-map-section {
  background-color: #013136;
  flex-flow: column;
  padding: 7.5rem;
  display: block;
}

.section.burst {
  background-image: none;
  background-position: 0 0;
  background-repeat: repeat;
  background-size: auto;
}

.section.burst.tighter {
  background-image: url('../images/g8zVIMeGcOCcoS1tc1BEfsAd6Q.svg');
  background-position: -500px 320px;
  background-repeat: no-repeat;
  background-size: auto 150%;
}

.section.inner-padding-60 {
  padding-top: 60px;
  padding-bottom: 60px;
}

.section.inner-padding-60.extra-top-padding {
  background-color: #053c41;
  padding-top: 100px;
}

.section.boi-background {
  position: relative;
  overflow: hidden;
  padding-top: 80px !important;
}

.section.padding {
  background-color: var(--neutral-50);
  padding-top: 100px;
  padding-bottom: 100px;
}

.navbar {
  background-color: #ddd0;
  background-image: linear-gradient(#0000, #0000);
  justify-content: space-between;
}

.btn-secondary {
  color: #acfc45;
  letter-spacing: .5px;
  background-color: #3898ec00;
  background-image: url('../images/right-arrow-green.svg');
  background-position: 86%;
  background-repeat: no-repeat;
  background-size: 14px;
  border: 1px solid #acfc45;
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  padding: 15px 46px 15px 24px;
  font-family: Inter, sans-serif;
  font-size: 15.5px;
  font-weight: 300;
  display: flex;
}

.btn-secondary:hover {
  text-decoration: none;
}

.container {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  grid-template-rows: auto;
  grid-template-columns: .5fr 1.75fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  place-items: stretch center;
  width: 100%;
  max-width: 1800px;
  padding-left: 90px;
  padding-right: 90px;
  display: flex;
}

.container.less-right-padding {
  padding-left: 0;
  padding-right: 90px;
}

.container.less-right-padding.left-padding {
  background-color: #f5f5f5;
  padding-left: 90px;
}

.container.center {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  max-width: 1000px;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.container.center.wide {
  max-width: 1600px;
}

.container.center.narrow-container {
  max-width: 800px;
  margin-bottom: 20px;
}

.container.cta {
  padding-right: 0;
  overflow: hidden;
}

.container.header {
  justify-content: space-between;
}

.container.header.no-padding-mobile {
  flex-flow: row;
}

.container.header.no-padding-mobile.bus-id__main-section__cont {
  flex-flow: row;
  align-items: center;
  position: relative;
}

.container.header.no-padding-mobile.or-mainsection-container {
  grid-column-gap: 2.5rem;
  grid-row-gap: 2.5rem;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  height: 25rem;
  padding-top: 7.5rem;
  padding-bottom: 7.5rem;
  position: relative;
}

.container.header.boir-header {
  justify-content: space-between;
  align-items: center;
}

.container.header.typeform-header {
  justify-content: space-between;
  align-items: flex-start;
  height: auto;
  padding-top: 40px;
  padding-bottom: 20px;
}

.container.left-align {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 24px;
}

.container._10-padding-mobile.middle-aligned {
  align-items: center;
}

.container._10-padding-mobile.middle-aligned.bus-id__lsection__cont {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  flex-flow: row;
  justify-content: center;
  align-items: center;
  padding-left: 140px;
  padding-right: 140px;
}

.container._10-padding-mobile.middle-aligned.or-container.or-container--vertical {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  flex-flow: column;
  padding: 80px;
}

.container._10-padding-mobile.middle-aligned.or-container.or-howwework-container {
  grid-column-gap: 160px;
  grid-row-gap: 160px;
}

.container._10-padding-mobile.middle-aligned.or-container {
  grid-column-gap: 10rem;
  grid-row-gap: 10rem;
  flex-flow: row;
  justify-content: space-between;
  align-items: center;
  padding: 7.5rem;
}

.container._10-padding-mobile.middle-aligned.or-container.or-container--vertical, .container._10-padding-mobile.middle-aligned.or-container.or-ourvalues-container {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-flow: column;
}

.container._10-padding-mobile.middle-aligned.or-container.or-map-container {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  -webkit-text-fill-color: inherit;
  background-image: url('../images/or-map-background-transparent.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  background-attachment: scroll;
  background-clip: border-box;
  flex-flow: column;
  height: calc(100vh - 15rem);
  padding: 0;
  display: block;
}

.container._10-padding-mobile.middle-aligned.or-container.or-roles-container {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-flow: column;
  padding: 5rem 7.5rem;
}

.container._10-padding-mobile.middle-aligned.ar-war {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  border: 1px solid #0000001a;
  border-radius: 56px;
  padding: 40px;
}

.container.boi-header {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  justify-content: flex-start;
  align-items: center;
  max-width: none;
  min-height: 700px;
  padding-left: 80px;
  padding-right: 80px;
}

.container.top-alignment {
  align-items: flex-start;
}

.image-home {
  background-image: url('../images/QvH3HvSLrB96AWPOGapFoSmrmos.avif');
  background-position: 50% 30%;
  background-repeat: no-repeat;
  background-size: contain;
  width: 100%;
  max-width: 594px;
  height: 784px;
}

.left-content {
  width: 90%;
}

.left-content.flex-stretch {
  flex-flow: column;
  justify-content: space-between;
  align-items: stretch;
  width: 90%;
  max-width: 700px;
  display: flex;
}

.left-content.flex-stretch.bus-id__main-section__text-cont {
  z-index: 2;
  width: 483px;
  height: 100%;
  margin-top: 0;
}

.left-content.indent, .left-content.flex-center {
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.left-content._70 {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  flex-flow: column;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.left-content.middle-align {
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  padding-left: 40px;
  display: flex;
}

.left-content.flex-vertical {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.left-content.flex-vertical.padding-mobile.center {
  justify-content: flex-start;
  align-items: center;
}

.left-content.no-stretch {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.left-content.no-stretch.ar-tfc {
  background-color: #f8f9fa;
  border: 1px solid #0000001a;
  border-radius: 20px;
  padding: 20px;
}

.left-content.bus-id__lsection__text {
  grid-column-gap: 22px;
  grid-row-gap: 22px;
  flex-flow: column;
  width: 100%;
  display: flex;
}

.content {
  flex: 1;
}

.content.inner-padding {
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  padding-top: 24px;
  display: flex;
}

.content.center-vertically {
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.small-text-green {
  color: #c0fd71;
  font-family: DM Sans, sans-serif;
  font-size: 16px;
  line-height: 90%;
}

.flex-left {
  flex-flow: row;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.flex-left.bottom-padding-24 {
  margin-bottom: 24px;
}

.flex-left.wrap {
  flex-flow: wrap;
}

.flex-left.wrap.center-align, .flex-left.center {
  justify-content: flex-start;
  align-items: center;
}

.flex-left.center.bottom-padding-24 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  margin-bottom: 0;
}

.tiny-logo {
  background-image: url('../images/Zd130DBm9EBYcFDmGJ0o3eDBqKw.svg');
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: contain;
  width: 63px;
  height: 18px;
  margin-top: -1px;
  margin-left: 7px;
  margin-right: 7px;
}

.btn-primary {
  color: #121416;
  letter-spacing: .5px;
  background-color: #c0fd71;
  background-image: none;
  background-repeat: repeat;
  background-size: auto;
  border: 8px solid #396147;
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  width: 235px;
  height: 88px;
  margin-top: 18px;
  margin-bottom: 32px;
  padding-left: 32px;
  padding-right: 32px;
  font-family: DM Sans, sans-serif;
  font-size: 17px;
  font-weight: 400;
  display: flex;
}

.btn-primary:hover {
  text-decoration: none;
}

.btn-primary.offset {
  background-position: 86%;
  background-size: 14px;
  width: auto;
  margin-left: -7px;
  padding-left: 60px;
  padding-right: 60px;
  font-weight: 400;
}

.btn-primary.offset:hover {
  text-decoration: none;
}

.btn-primary.offset.top-padding60 {
  background-image: none;
  background-position: 0 0;
  background-repeat: repeat;
  background-size: auto;
  align-self: flex-start;
  margin-top: 60px;
  font-weight: 500;
}

.btn-primary.brighter {
  background-color: #acfc45;
  background-image: none;
  background-position: 0 0;
  background-repeat: repeat;
  background-size: auto;
  margin-bottom: 18px;
  font-family: DM Sans, sans-serif;
  font-size: 15px;
  font-weight: 400;
}

.btn-primary.brighter.green-border {
  background-color: #befa66;
  background-position: 84%;
  border-color: #88d873;
  width: auto;
  margin-left: 16px;
  font-size: 15px;
  font-weight: 500;
}

.btn-primary.brighter.green-border:hover {
  text-decoration: none;
}

.u-header-tab {
  color: #58d269;
  text-align: left;
  background-color: #065b4e;
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  justify-content: space-between;
  align-items: center;
  width: 588px;
  height: 100px;
  margin-left: 0;
  padding: 28px 20px;
  font-family: DM Sans, sans-serif;
  font-size: 18px;
  display: flex;
}

.u-green-header-text {
  width: 60%;
  font-weight: 400;
  line-height: 140%;
}

.btn-secondary-nav {
  color: #88e3bf;
  letter-spacing: .5px;
  background-color: #3898ec00;
  border: 1px solid #88e3bf;
  border-radius: 100px;
  max-height: 56px;
  padding: 19px 32px 16px;
  font-family: DM Sans, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 90%;
}

.btn-secondary-nav:hover {
  text-decoration: none;
}

.btn-secondary-nav.alt {
  border-color: var(--green-800);
  color: var(--green-800);
}

.u-round-outline {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  border: 1px solid #d7d9dd;
  border-radius: 60px;
  flex-flow: column;
  justify-content: center;
  height: 450px;
  padding-bottom: 0;
  padding-left: 90px;
  padding-right: 90px;
  display: flex;
}

.u-round-outline.green {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  background-color: #ebf9f4;
  border-style: none;
  border-radius: 80px;
  align-items: flex-start;
  height: auto;
  padding: 80px;
}

.round-shape {
  color: #053c41;
  background-color: #d2b1ff;
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  padding: 20px 28px;
  font-family: DM Sans, sans-serif;
  font-size: 24px;
  font-weight: 300;
  display: flex;
}

.round-shape.dark-green {
  background-color: var(--moss-900);
  color: var(--green);
}

.u-light-gray-headling {
  color: #87909e;
  justify-content: flex-start;
  align-items: center;
  margin-left: 24px;
  font-family: DM Sans, sans-serif;
  font-size: 24px;
  font-weight: 300;
  display: flex;
}

.card {
  text-align: left;
  background-color: #d3f4e7;
  border-radius: 48px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 33%;
  height: 200px;
  padding-top: 40px;
  padding-left: 40px;
  padding-right: 40px;
  display: flex;
}

.card.outline {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  border: 1px solid var(--neutral-400);
  background-color: #fff;
  align-self: stretch;
  height: auto;
  padding: 3.5rem 3rem;
}

.flex-block {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  align-items: stretch;
}

.green-icon {
  background-image: url('../images/wAJqZU3FCt1hbPPVOJaLg62PHNw.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  width: 56px;
  height: 56px;
  margin-bottom: 10px;
}

.green-icon._2 {
  background-image: url('../images/rX4ionazxWfKc2gwdtuHALQcdg.svg');
}

.green-icon._3 {
  background-image: url('../images/lightning.svg');
}

.paragraph {
  color: #4f5762;
  font-size: 20px;
  font-weight: 400;
}

.paragraph.small {
  color: var(--neutral-800);
  margin-bottom: 4px;
  font-size: 1.125rem;
  line-height: 130%;
}

.short-container {
  flex-flow: column;
  justify-content: center;
  height: 150px;
  padding-left: 90px;
  padding-right: 90px;
  display: flex;
}

.dark-headline {
  color: var(--moss-900);
  justify-content: flex-start;
  align-items: center;
  margin-left: 24px;
  font-family: DM Sans, sans-serif;
  font-size: 24px;
  font-weight: 300;
  display: flex;
}

.image-inform {
  background-image: url('../images/zVj1i3oVsSQxNDifCvYgL8CV4SA.avif');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  width: 100%;
  height: 650px;
}

.gray-container {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  background-color: #f0f1f3;
  border-radius: 32px;
  flex-flow: column;
  margin-top: 40px;
  padding: 32px;
  display: flex;
}

.arrow-up {
  background-image: url('../images/arrow-up.svg');
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: auto;
  width: 13px;
  height: 13px;
  margin-top: 8px;
}

.text-percent {
  width: 98.5402%;
  margin-bottom: 0;
  margin-left: 30px;
}

.image-connect {
  background-image: url('../images/NXJrw004AH02n7BZbHdgllU21A.avif');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  width: 100%;
  height: 710px;
}

.right-content {
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  width: 90%;
  padding-left: 40px;
  display: flex;
}

.right-content.phone {
  background-image: url('../images/lb4RJh54CYfI9sJYKpFyGLe0aw.avif');
  background-position: 100%;
  background-repeat: no-repeat;
  background-size: contain;
}

.image-control {
  background-image: url('../images/aVUGDxM98EyUMka1AhZ5oB4VjzM.avif');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  width: 100%;
  height: 710px;
}

.green-banner {
  background-color: var(--moss-900);
  border-radius: 80px;
  flex-flow: row;
  justify-content: space-between;
  align-items: center;
  padding: 60px 90px;
  display: flex;
}

.green-text {
  color: var(--green);
  margin-bottom: 10px;
  font-size: 24px;
}

.small-text {
  opacity: .88;
  color: var(--moss-900);
  font-family: DM Sans, sans-serif;
  font-size: 1.125rem;
  line-height: 130%;
}

.small-text.gray {
  opacity: .65;
  color: var(--text--secondary);
}

.image-fins {
  background-image: url('../images/fins.svg');
  background-position: 110%;
  background-repeat: no-repeat;
  background-size: auto;
  width: 100%;
  height: 650px;
  margin-right: -27px;
}

.h1-white {
  color: #fff;
  font-size: 56px;
}

.medium-green-text {
  color: #c0fd71;
  font-family: DM Sans, sans-serif;
  font-size: 32px;
  font-weight: 300;
  line-height: 90%;
}

.medium-logo {
  background-image: url('../images/Zd130DBm9EBYcFDmGJ0o3eDBqKw.svg');
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: contain;
  width: 110px;
  height: 32px;
  margin-top: 4px;
  margin-left: 10px;
  margin-right: 10px;
}

.footer-container {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  background-color: var(--moss-1000);
  flex-flow: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: auto;
  padding: 40px 30px 60px;
  display: flex;
}

.footer-container.new {
  background-color: var(--white);
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  padding: 48px;
}

.footer-block {
  background-color: #f0f1f4;
  border-radius: 56px;
  flex-flow: column;
  justify-content: space-between;
  width: 50%;
  height: 262px;
  padding: 56px;
  display: flex;
}

.phone-icon {
  background-image: url('../images/phone.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: auto;
  width: 25px;
  height: 25px;
}

.flex-horizontal {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  border-top-width: 2px;
  border-top-color: var(--moss-900);
  flex-flow: row;
  justify-content: space-between;
  display: flex;
}

.flex-horizontal.center {
  grid-column-gap: 23px;
  grid-row-gap: 23px;
  align-items: center;
}

.flex-horizontal.center.tighter {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
}

.flex-horizontal.vertical-tablet {
  align-items: center;
}

.flex-horizontal.top-line {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  border-top: 1px solid var(--neutral-700);
}

.flex-horizontal.left-align {
  justify-content: flex-start;
}

.flex-horizontal.left-align.boi-header {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  justify-content: flex-start;
  align-items: stretch;
}

.flex-horizontal.left-align.stacked-mobile {
  flex: 0 auto;
  align-items: stretch;
}

.flex-horizontal.no-gap {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.text-secondary {
  color: var(--text--secondary);
  font-family: Inter, sans-serif;
  font-size: 22px;
  line-height: 24px;
}

.image-up-arrow {
  background-image: url('../images/arrow-up-large.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: auto;
  width: 36px;
  height: 36px;
}

.envelope-icon {
  background-image: url('../images/mail.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: auto;
  width: 25px;
  height: 25px;
}

.avatar {
  background-image: url('../images/icon-darker.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: auto;
  width: 80px;
  height: 80px;
  margin-right: 20px;
}

.left-footer {
  align-items: center;
  display: flex;
}

.footer-links {
  color: #1f2227;
  font-family: DM Sans, sans-serif;
  text-decoration: none;
}

.social-icon {
  background-color: #adfc48;
  border-radius: 100px;
  width: 72px;
  height: 72px;
}

.social-icon.insta {
  background-image: url('../images/instagram.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 40%;
  width: 56px;
  height: 56px;
}

.social-icon.facebook {
  background-image: url('../images/facebook.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 40%;
}

.tight-mobile {
  line-height: 120%;
}

.tight-mobile.larger-mobile-text {
  color: var(--moss-900);
  -webkit-text-stroke-color: var(--moss-900);
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 400;
}

.tight-mobile.larger-mobile-text.bottompadding-30 {
  font-size: 36px;
}

.privacy-header {
  color: var(--moss-1000);
  margin-top: 0;
  font-size: 64px;
  font-weight: 400;
}

.light-gray-text {
  color: #88909e;
  letter-spacing: .3px;
  line-height: 150%;
}

.light-gray-text.font-18 {
  color: var(--moss-1000);
  font-size: 16px;
}

.light-gray-text.font-18.tight {
  margin-bottom: 0;
  font-size: 18px;
  line-height: 130%;
}

.link {
  color: var(--moss-600);
  text-decoration: none;
}

.link.white {
  color: #d8d9dd;
  font-family: DM Sans, sans-serif;
  font-size: 20px;
  font-weight: 500;
}

.link.white.underline-bold {
  color: var(--moss-1000);
  font-size: 18px;
  line-height: 30%;
  display: block;
}

.link.white.bottom-padding-12 {
  color: var(--moss-1000);
  margin-bottom: 12px;
  font-size: 18px;
  display: block;
}

.link.white.bottom-padding-12.tighter {
  margin-bottom: 0;
}

.link.bold {
  color: var(--green-600);
  font-weight: 500;
}

.link.bold.read-more {
  padding-left: 8px;
  font-family: DM Sans, sans-serif;
  font-weight: 600;
  text-decoration: none;
  transition: all .25s;
}

.link.bold.read-more:hover {
  color: #053c41;
}

.white-text {
  color: #fff;
}

.white-text.bright-white {
  color: #fff;
  margin-top: 10px;
  margin-bottom: 30px;
  font-size: 18px;
  line-height: 130%;
}

.white-text.bright-white.large {
  max-width: 400px;
  font-size: 24px;
}

.underline {
  text-decoration: underline;
}

.underline.unbold {
  font-weight: 300;
}

.lighter-gray-text {
  color: var(--moss-1000);
  letter-spacing: .3px;
  -webkit-text-stroke-color: #d6d9de;
  font-size: 16px;
  font-weight: 300;
  line-height: 150%;
}

.lighter-gray-text.no-bottom-padding.semi-bold {
  color: var(--moss-50);
  font-size: 16px;
  font-weight: 500;
  line-height: 120%;
}

.lighter-gray-text.top-padding {
  margin-top: 30px;
}

.lighter-gray-text.top-padding.white-text {
  color: var(--moss-50);
}

.text-span {
  font-style: italic;
}

.indent {
  padding-left: 69px;
}

.indent.first {
  margin-top: -34px;
}

.indent.indent-more {
  margin-top: -32px;
  padding-left: 100px;
}

.indent.indent-less {
  padding-left: 50px;
}

.no-bottom-padding {
  margin-bottom: 0;
}

.table {
  border-radius: 30px;
  flex-flow: column;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  display: flex;
  overflow: hidden;
}

.table-titles {
  border-radius: NaNpx;
  text-align: left;
  background-color: #065b4e;
  border: 0 #000;
  justify-content: flex-start;
  align-items: center;
  width: 33.3%;
  height: auto;
  padding: 10px;
  display: flex;
}

.table-titles.middle {
  border: 0 solid #000;
}

.table-titles.main-title {
  justify-content: center;
  align-items: center;
  width: 100%;
}

.font-16 {
  font-size: 16px;
}

.font-16.percent {
  width: 91.27%;
  margin-bottom: 0;
  margin-left: 10px;
}

.font-16.light {
  letter-spacing: .3px;
  margin-top: 12px;
  font-weight: 300;
}

.font-16.checks {
  opacity: .75;
  color: #fff;
  width: 93%;
  margin-bottom: 0;
  margin-left: 10px;
  font-size: 18px;
}

.font-16.checks.gray {
  opacity: 1;
  color: #4f5762;
  margin-top: -1px;
  margin-left: 35px;
  font-size: 20px;
}

.font-16.checks.gray.whitetext {
  color: #fff;
}

.table-cell {
  background-color: var(--neutral-200);
  border-right: 0 #000;
  justify-content: flex-start;
  align-items: center;
  width: 33.3%;
  padding: 10px 10px 10px 20px;
  display: flex;
}

.table-cell.middle {
  text-align: left;
  border: 0 solid #000;
  display: block;
}

.white {
  color: #fff;
  letter-spacing: .3px;
  font-weight: 300;
}

.table-list {
  padding-left: 20px;
}

.table-list-item {
  color: var(--moss-1000);
  margin-bottom: 0;
}

.no-green {
  color: var(--moss-1000);
}

.bold-text {
  color: var(--moss-1000);
  font-weight: 700;
}

.bold-text-2, .bold-text-3 {
  color: var(--moss-1000);
}

.font-60 {
  color: var(--green);
  font-size: 60px;
  line-height: 120%;
}

.larger {
  font-size: 38px;
  line-height: 30%;
}

.dark-green-text {
  color: var(--moss-1000);
  text-align: left;
  font-weight: 300;
}

.dark-green-text.top-padding-20 {
  font-size: 42px;
  font-weight: 400;
}

.dark-green-text.font-32 {
  line-height: 40px;
}

.dark-green-text.font-32.quote {
  font-weight: 500;
}

.dark-green-text.font-32.no-top-padding {
  margin-top: 0;
}

.dark-green-text.font-16.banner-text {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 0;
  margin-right: 7px;
  line-height: 110%;
  display: flex;
}

.dark-green-text.font-16.banner-text.bold {
  font-weight: 600;
}

.dark-green-text.font-60 {
  font-size: 46px;
  font-weight: 500;
}

.dark-green-text.new-block {
  word-break: break-all;
  font-size: 56px;
  font-weight: 400;
}

.dark-green-text.medium {
  font-weight: 400;
}

.image-formation-spacer {
  height: 748px;
}

.image-formation-spacer.bus-id__img-spacer {
  height: 690px;
}

.font-32 {
  font-family: DM Sans, sans-serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 30px;
}

.large {
  font-size: 28px;
}

.large.dark-green-text {
  margin-bottom: 0;
  font-size: 1.75rem;
  font-weight: 400;
}

.large.dark-text {
  color: var(--neutral-1000);
  margin-bottom: 0;
  font-size: 1.75rem;
  font-weight: 400;
}

.pricing-checkbox {
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 9px;
  display: flex;
}

.check {
  background-image: url('../images/LtYooJLJInTfQvS66GuyVu9Ks.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  width: 22px;
  height: 22px;
}

.check.green-check {
  background-image: url('../images/ArrowRight.svg');
}

.check-text {
  color: #fff;
  text-align: left;
  letter-spacing: .3px;
  -webkit-text-stroke-color: #4b8be2;
  margin-bottom: 0;
  margin-left: 8px;
  font-size: 17px;
  font-weight: 300;
}

.check-text.dark-green-text {
  color: var(--moss-1000);
  font-weight: 400;
}

.llc-quote {
  color: #4f5762ab;
  text-align: center;
  max-width: 80%;
  margin-top: 40px;
  font-size: 20px;
}

.stars {
  color: #053c41;
  background-image: url('../images/Screenshot-2024-10-08-at-1.07.00-PM.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  font-family: DM Sans, sans-serif;
  font-size: 24px;
  font-weight: 300;
  display: flex;
}

.green-headline {
  color: var(--moss-900);
  justify-content: flex-start;
  align-items: center;
  font-family: DM Sans, sans-serif;
  font-size: 36px;
  font-weight: 300;
  line-height: 110%;
  display: flex;
}

.step {
  color: var(--moss-900);
  text-align: left;
  background-color: #f1ffe1;
  border-radius: 100px;
  align-self: flex-start;
  margin-bottom: 0;
  font-family: DM Sans, sans-serif;
  font-size: 20px;
  display: block;
}

.text-block {
  border-radius: 20px;
  padding: 10px 16px;
  display: inline-block;
}

.dark-green-btn {
  background-color: var(--moss-900);
  color: #b1e2b5;
  letter-spacing: .5px;
  background-image: url('../images/Screenshot-2024-10-08-at-3.23.19-PM.png');
  background-position: 86%;
  background-repeat: no-repeat;
  background-size: 16px;
  border-radius: 100px;
  align-self: flex-start;
  margin-right: 80px;
  padding: 20px 62px 20px 40px;
  font-family: Inter, sans-serif;
  font-size: 15px;
  font-weight: 500;
}

.dark-green-btn:hover {
  text-decoration: none;
}

.image-peace {
  background-color: var(--transparent);
  background-image: url('../images/Design-For-Website.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  border-radius: 56px;
  width: 100%;
  height: 500px;
}

.image-peace.bus-id__section__img {
  background-image: url('../images/bussiness-id-section-1-image.png');
  background-size: contain;
  height: 100%;
}

.image-peace.bus-id__section-2__img {
  background-image: url('../images/bussiness-id-section-2-image.png');
  background-size: contain;
  height: 650px;
}

.image-peace.bus-id__section-3__img {
  background-image: url('../images/bussiness-id-section-3-image.png');
  background-size: contain;
  height: 650px;
}

.image-peace.bus-id__section-4__img {
  background-image: url('../images/bussiness-id-section-4-image.png');
  background-size: contain;
  height: 650px;
}

.image-peace.bus-id__section-5__img {
  background-image: url('../images/bussiness-id-section-5-image.png');
  background-size: contain;
  height: 650px;
}

.image-join {
  background-image: url('../images/6705942e52d3cc971bd8b652_4d4mO3B2hhxLiQjecpunHc9Oj48.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 56px;
  width: 100%;
  height: 580px;
}

.bior-image {
  background-image: url('../images/knZ5SqdtVZIRkiagJ40DHzOK4.avif');
  background-position: 50% 30%;
  background-repeat: no-repeat;
  background-size: contain;
  width: 80%;
  height: 784px;
}

.boi-icon {
  background-image: url('../images/Screenshot-2024-10-08-at-2.57.23-PM.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  width: 30px;
}

.fincen-image {
  background-image: url('../images/FINCENpartner.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  flex: none;
  width: 363px;
  height: 182px;
}

.curved-gray {
  background-color: #f0f1f3;
  border-radius: 54px;
}

.check-image {
  background-image: url('../images/yJam9eKXCi8eC2GF1WgWZx0JE.avif');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  width: 100%;
  height: 650px;
}

.boi-check-container {
  flex-flow: row;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  margin-top: 20px;
  margin-bottom: 20px;
  display: flex;
}

.boi-check-container.partner-checks {
  background-image: url('../images/right-arrow-green.svg');
  background-position: 6px;
  background-repeat: no-repeat;
  background-size: 18px;
  margin-top: 10px;
  margin-bottom: 10px;
}

.boi-check {
  background-image: url('../images/Screenshot-2024-10-08-at-2.11.28-PM.png');
  background-position: 50%;
  background-size: contain;
  width: 32px;
  height: 32px;
}

.font-56 {
  max-width: 553px;
  color: var(--white);
  flex: 0 auto;
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 14px;
  font-size: 3.5rem;
  line-height: 110%;
  display: inline;
}

.outline-button {
  color: #88e3bf;
  letter-spacing: .5px;
  background-color: #3898ec00;
  background-image: url('../images/Screenshot-2024-10-08-at-3.23.19-PM.png');
  background-position: 86%;
  background-repeat: no-repeat;
  background-size: 20px;
  border: 1px solid #88e3bf;
  border-radius: 100px;
  margin-top: 32px;
  margin-bottom: 32px;
  margin-right: 80px;
  padding: 18px 60px 18px 40px;
  font-family: Inter, sans-serif;
  font-size: 15.5px;
  font-weight: 300;
}

.outline-button:hover {
  text-decoration: none;
}

.outline-button.wider {
  text-align: center;
  width: 40%;
  max-width: 300px;
  font-family: DM Sans, sans-serif;
  font-size: 18px;
  font-weight: 400;
}

.palm-icon {
  background-image: url('../images/icon-darker.svg');
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: auto;
  width: 40px;
  height: 40px;
  margin-right: 10px;
}

.utility-page-wrap {
  background-color: #f9fafb;
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  display: flex;
}

.utility-page-content {
  text-align: center;
  flex-direction: column;
  width: 260px;
  display: flex;
}

.cloud {
  background-image: url('../images/ySb7h3V0UIYs6fgdLBfnZe5Mz2o.webp');
  background-position: 50%;
  background-size: cover;
  border-radius: 80px;
  justify-content: space-between;
  width: 90%;
  height: 90%;
  display: flex;
  overflow: hidden;
}

._404 {
  color: #fff;
  font-family: DM Sans, sans-serif;
  font-size: 150px;
  font-weight: 800;
  line-height: 100%;
}

.bright-green-text {
  color: #cafe88;
}

.top-padding-20 {
  margin-top: 20px;
}

.faq-divider {
  border-top: 1px dashed #ffffff40;
  height: 0;
}

.faq-q-text {
  color: var(--moss-1000);
  font-family: DM Sans, sans-serif;
  font-size: 32px;
  font-weight: 300;
}

.c-faq-a {
  perspective-origin: 50% 0;
  transform-origin: 50% 0;
  overflow: hidden;
}

.c-faq {
  max-width: none;
  margin-left: auto;
  margin-right: auto;
  padding-top: 4px;
  padding-left: 20px;
}

.c-faq-icon {
  justify-content: center;
  align-items: center;
  padding: 20px;
  position: relative;
}

.c-faq-q {
  background-color: #f8f9fa;
  border-bottom: 1px solid #f9fafb;
  align-items: center;
  display: flex;
}

.faq-stripe-1 {
  background-color: #065b4e;
  width: 2px;
  height: 100%;
}

.c-faq-a-text {
  background-color: #f9fafb;
  padding: 20px;
}

.c-faq-q-text {
  background-color: #f8f9fa;
  flex: 1;
  padding: 20px;
}

.c-faq-divider {
  padding-left: 20px;
  padding-right: 20px;
}

.faq-a-text {
  font-size: 20px;
  line-height: 1.6em;
}

.cloneable-area {
  margin-bottom: 32px;
}

.c-faq-item {
  border-bottom: 1px solid var(--green);
  cursor: pointer;
  background-color: #f8f9fa;
  border-left: 3px #2ea07c;
  margin-bottom: 10px;
  font-size: 1.2em;
  line-height: 1.6em;
}

.faq-stripe-2 {
  background-color: #065b4e;
  width: 100%;
  height: 2px;
  position: absolute;
}

._w-faq-icon {
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  display: flex;
  position: relative;
}

.top-bottom-padding {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-flow: column;
  margin-top: 0;
  margin-bottom: 0;
  display: flex;
}

.top-bottom-padding.small-text {
  opacity: 1;
  color: var(--neutral-800);
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 20px;
  font-size: 1.125rem;
}

.utility-page-form {
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

.white-body {
  background-color: #f9fafb;
}

.larger-mobile-text.white-text {
  color: var(--neutral-200);
}

.larger-mobile-text.medium {
  font-weight: 400;
}

.italic-text, .italic-text-2, .italic-text-3, .italic-text-4, .italic-text-5, .italic-text-6, .italic-text-7, .italic-text-8, .italic-text-9 {
  text-decoration: underline;
}

.blog-header {
  padding-left: 60px;
  padding-right: 60px;
}

.blog-header.gray {
  background-color: #e9e9e9ad;
}

.blog-feature {
  background-color: #fff;
  border: 1px solid #0000004a;
  border-radius: 20px;
  max-width: 1400px;
  margin: 40px auto 60px;
  padding: 40px 60px;
}

.feature-item {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  justify-content: space-between;
  align-items: stretch;
  display: flex;
  position: relative;
}

.feature-item.contain {
  padding-left: 30px;
  padding-right: 30px;
}

.feature-photo {
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-size: cover;
  border-radius: 40px;
  width: 50%;
  min-width: 440px;
  height: 350px;
}

.feauture-content {
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-start;
  width: 50%;
  display: flex;
}

.feauture-content.article-header {
  width: 96%;
}

.click {
  z-index: 2000;
  cursor: pointer;
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  inset: auto 0% 0%;
}

.click:hover {
  background-color: #00000008;
}

.author-block {
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.author-image {
  border-radius: 100px;
  width: 50px;
  height: 50px;
  margin-right: 10px;
}

.author-image.jesseca {
  background-image: url('../images/k455UziMInVbyY2gJnAIu3LmKs.avif'), url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%, 0 0;
  background-repeat: no-repeat, repeat;
  background-size: cover, auto;
}

.author-image.connor {
  background-image: url('../images/ToxjY4SwBNafF1bVWu3lubbUDM.avif');
  background-position: 50%;
  background-size: cover;
}

.author-image.evan {
  background-image: url('../images/kWEfmCcmOIOcBrz1TywIUS08Jiw.avif');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.author-text {
  color: #505762;
  margin-top: 3px;
  margin-bottom: 3px;
  font-family: DM Sans, sans-serif;
  font-size: 16px;
  font-weight: 300;
}

.featured-left-content {
  flex-flow: column;
  width: 100%;
  display: flex;
}

.blog-list {
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 20px;
  padding-left: 50px;
  padding-right: 50px;
}

.blog-list.bottom-padding-10 {
  padding-bottom: 10px;
}

.blog-list.no-bottom-padding {
  max-width: 1400px;
  padding-bottom: 0;
}

.blog-list.full-width {
  width: 100%;
}

.collection-list {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex-flow: wrap;
  justify-content: center;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.collection-list.center {
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.collection-list.max-width {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.blog-item {
  background-color: #fff;
  border: 1px solid #0000003b;
  border-radius: 20px;
  width: 31%;
  height: auto;
  margin: 10px 10px 22px;
  padding: 10px 20px 20px;
  display: block;
  position: relative;
  overflow: hidden;
}

.blog-item.n-flex-blog {
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.blog-item.center-items {
  background-color: #ecf9f4;
  border-style: none;
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.blog-item-image {
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-size: cover;
  border-radius: 20px;
  height: 200px;
  margin-top: 10px;
  margin-bottom: 30px;
}

.blog-item-title {
  color: #0b0e0c;
  letter-spacing: -.2px;
  padding-left: 8px;
  font-size: 22px;
  font-weight: 500;
  line-height: 130%;
}

.blog-item-descriptor {
  color: #4f5762f2;
  padding-left: 8px;
  font-size: 16px;
  font-weight: 300;
}

.blog-article-header {
  background-color: #f0f1f300;
  border-radius: 60px;
  max-width: 1200px;
  margin-bottom: 60px;
  margin-left: auto;
  margin-right: auto;
  padding: 60px 0;
}

.blog-article-header.auto {
  height: auto;
}

.ad {
  color: #fff;
  background-color: #58d269;
  border-radius: 30px;
  width: 350px;
  height: auto;
  padding: 24px;
  font-family: DM Sans, sans-serif;
}

.ad.sticky {
  margin-bottom: 200px;
  position: sticky;
  top: 40px;
}

.article {
  width: 90%;
  max-width: 800px;
  margin-bottom: 80px;
}

.article p {
  font-size: 18px;
  line-height: 180%;
}

.article h1 {
  color: var(--moss-900);
}

.article h2 {
  text-align: left;
}

.article-copy {
  margin-bottom: 80px;
}

.article-copy p {
  margin-bottom: 20px;
  font-size: 18px;
  line-height: 180%;
}

.article-copy h1 {
  color: var(--moss-900);
}

.article-copy h2 {
  text-align: left;
  margin-top: 60px;
  margin-bottom: 20px;
}

.font-24 {
  font-size: 24px;
  font-weight: 300;
  line-height: 120%;
}

.palmtree {
  background-image: url('../images/Screenshot-2024-10-10-at-3.24.11-PM.png');
  background-position: 50%;
  background-size: cover;
  width: 30px;
  height: 30px;
  margin-bottom: 10px;
}

.click-feature {
  cursor: pointer;
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  inset: 0%;
}

.click-feature:hover {
  background-color: #0000;
}

.div-block-3 {
  justify-content: space-between;
  padding: 2rem 5rem;
  display: flex;
}

.heading-5 {
  max-width: 553px;
  color: var(--neutral-200);
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 4px;
  font-size: 1.25rem;
  font-weight: 400;
  display: inline;
}

.button-text {
  color: var(--neutral-900);
  margin-bottom: 0;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5rem;
  text-decoration: none;
}

.button-text.green {
  color: var(--green-200);
}

.button-text.green.primary.typeform {
  color: var(--white);
  font-size: 1.5rem;
}

.button {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  -webkit-text-stroke-color: var(--transparent);
  background-image: linear-gradient(#fff, #fff);
  border-radius: 999px;
  align-self: flex-start;
  padding: 1.25rem 3rem;
  display: flex;
}

.button:hover {
  background-image: linear-gradient(to bottom, var(--neutral-100), var(--neutral-100));
  color: var(--transparent);
}

.button:active {
  background-image: linear-gradient(to bottom, var(--white), var(--white));
  box-shadow: 0 0 0 5px var(--neutral-500);
}

.button.brand {
  background-image: linear-gradient(to bottom, var(--moss-900), var(--moss-900));
}

.button.brand.medium {
  max-height: 64px;
  padding-left: 3.5rem;
  padding-right: 3.5rem;
}

.button.brand.medium:hover {
  background-image: linear-gradient(to bottom, var(--moss-1000), var(--moss-1000));
}

.button.brand.medium:active {
  background-image: linear-gradient(to bottom, var(--moss-900), var(--moss-900));
  box-shadow: 0 0 0 3px var(--neutral-500);
}

.button.typeform {
  background-image: linear-gradient(to bottom, var(--moss-800), var(--moss-800));
  color: var(--transparent);
  align-self: center;
  padding: 1rem 1.25rem;
}

.button-image {
  align-self: center;
  width: 20px;
  height: 20px;
}

.button-image.primary.typeform {
  display: none;
}

.image {
  z-index: 1;
  background-image: url('../images/Frame-1618870907-min.jpg');
  background-position: 0 0;
  background-size: auto;
  width: 1200px;
  max-width: none;
  height: 1200px;
  position: absolute;
  bottom: -65%;
  right: -26%;
}

.left-flex {
  z-index: 4;
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  flex-flow: column;
  flex: 1;
  display: flex;
  position: relative;
}

.div-block-5 {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-flow: column;
  align-self: flex-start;
  display: flex;
}

.heading-6 {
  color: var(--neutral-200);
}

.navbar-logo {
  align-self: center;
  width: 126px;
  height: 36px;
}

.link-block {
  align-self: center;
}

.div-block-7 {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-flow: column;
  display: flex;
}

.partner {
  z-index: 4;
  flex-flow: column;
  flex: 0 auto;
  justify-content: flex-start;
  align-items: flex-start;
  width: 524px;
  height: 470px;
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
  position: relative;
}

.image-2 {
  object-fit: cover;
  border-radius: 36px;
  flex: none;
  width: 360px;
  height: 360px;
  box-shadow: 0 0 0 18px #ffffff26;
}

.chat-bubble {
  background-color: var(--white);
  max-width: 370px;
  color: var(--neutral-1000);
  border-radius: 12px;
  padding: 24px;
  font-family: DM Sans, sans-serif;
  font-size: 1.125rem;
  line-height: 140%;
  text-decoration: none;
}

.chat-bubble.secondary {
  max-width: none;
  color: var(--transparent);
  align-self: auto;
}

.chat-bubble-text {
  color: var(--neutral-1000);
  margin-bottom: 0;
  font-size: 1.125rem;
  font-weight: 400;
  text-decoration: none;
}

.chat-bubbles {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  flex: none;
  position: absolute;
  top: auto;
  bottom: 31px;
  left: 30%;
}

.text-span-2 {
  color: var(--green-600);
}

.form-embed {
  text-align: center;
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 1440px;
  height: 100vh;
}

.form-embed.full-width {
  max-width: none;
}

.feathery-section {
  justify-content: center;
  align-items: center;
  display: flex;
}

.body-2 {
  background-color: var(--white);
}

.typeform-like-header {
  text-align: center;
  height: 100vh;
  padding-top: 32px;
  padding-bottom: 32px;
}

.div-block-8 {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  text-align: center;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding-left: 2rem;
  padding-right: 2rem;
  display: flex;
}

.text-block-2 {
  color: var(--moss-300);
  font-family: DM Sans, sans-serif;
  font-size: 2.25rem;
  line-height: 130%;
}

.text-block-3 {
  color: var(--moss-300);
  font-family: DM Sans, sans-serif;
  font-size: 1.25rem;
  line-height: 130%;
}

.n-section {
  background-color: #f9fafb;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-top: 80px;
  padding-bottom: 80px;
  display: flex;
}

.n-section.home {
  background-image: url('../images/Palm-Header2-desktop.webp');
  background-position: 10%;
  background-size: cover;
  padding-top: 130px;
  padding-bottom: 130px;
}

.n-section.home.color-test {
  background-image: url('../images/Palm-Header-Mobile-Color-Change.jpg');
}

.n-section.center-layout {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 100px;
  display: flex;
}

.n-section.center-layout._120 {
  padding-top: 120px;
  padding-bottom: 120px;
}

.n-section.center-layout.resources-header {
  padding-top: 60px;
  padding-bottom: 0;
}

.n-section.center-layout.color-test-white {
  background-color: #fff;
}

.n-section.green-container {
  justify-content: center;
  align-items: center;
  padding-top: 80px;
  display: flex;
}

.n-section.green-container.less-top-padding {
  padding-top: 60px;
}

.n-section.cta {
  background-image: url('../images/67173486c0a7cbe6e6020c5d_Section-1.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  height: 700px;
}

.n-section.cta.bus-id__last-section {
  background-image: url('../images/op-business-id-last-section-banner.png');
  height: 750px;
}

.n-section.cta.ar {
  background-color: var(--moss-1000);
  background-image: url('../images/cta-bg.webp');
  background-position: 50% 0;
  background-size: cover;
  background-attachment: scroll;
  height: 600px;
  box-shadow: inset 0 2px 137px 94px #0000004d;
}

.n-section.no-bottom-padding {
  padding-bottom: 0;
}

.n-section.no-bottom-padding.margin-mobile {
  padding-top: 150px;
}

.n-section.boi-home {
  background-image: url('../images/asdfa.jpg');
  background-position: 10%;
  background-size: cover;
  padding-top: 130px;
  padding-bottom: 130px;
}

.n-section.boi-home.landing-page {
  background-image: url('../images/faddg.jpg');
  background-position: 0%;
}

.n-section.boi-home.landing-page.statement {
  background-image: url('../images/statement.jpg');
  background-position: 100%;
  background-size: 120%;
}

.n-section.mobile-form {
  display: none;
}

.n-section.banner {
  border-bottom: 1px solid var(--neutral-600);
  padding-top: 35px;
  padding-bottom: 30px;
}

.n-section.flex-vertical {
  justify-content: space-between;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
}

.n-section.flex-vertical.hide-padding {
  padding-top: 0;
}

.n-section.flex-vertical.green {
  background-color: var(--moss-100);
}

.n-section.flex-vertical.top-padding-60 {
  margin-top: 60px;
}

.n-section.flex-vertical.no-padding-top, .n-section.no-top-padding {
  padding-top: 0;
}

.n-section.no-top-padding.background-color {
  background-color: var(--neutral-200);
  border-top: 1px solid #00000061;
  padding-top: 80px;
}

.n-section.padding-10 {
  padding-top: 10px;
  padding-bottom: 10px;
}

.n-section.qbp-hero {
  background-image: url('../images/qbp-hero-background.webp');
  background-size: cover;
  min-height: 50px;
  padding-top: 130px;
  padding-bottom: 130px;
}

.n-section.ar-war {
  background-color: var(--white);
  padding: 80px;
  overflow-x: clip;
}

.n-nav.is-sticky {
  z-index: 999999;
  position: sticky;
  inset: 0% 0% auto;
}

.n-nav.is-sticky.transparent {
  float: right;
  background-color: var(--transparent);
  width: 100%;
  display: block;
}

.n-nav.is-sticky.transparent.main {
  float: none;
  position: sticky;
}

.palm-logo {
  filter: brightness(90%);
  background-image: url('../images/Logo_1.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  width: 110px;
  height: 60px;
}

.palm-logo.w--current {
  filter: brightness(90%);
  background-image: url('../images/Logo_1.svg');
}

.palm-logo.apple-green {
  background-image: url('../images/Logo.svg');
  width: 183px;
  height: 50px;
}

.palm-logo.apple-green.w--current {
  width: 130px;
}

.palm-logo.apple-green.palm-logo--small {
  filter: none;
  background-image: none;
  width: auto;
  height: 53px;
}

.palm-logo.color-test {
  filter: saturate(88%) hue-rotate(49deg) brightness(80%);
}

.palm-logo.transparent.w--current {
  color: var(--moss-500);
}

.palm-logo.transparent.dev {
  background-image: url('../images/dev-nav-logo.webp');
}

.palm-logo.white {
  background-image: url('../images/Logo-1.svg');
}

.palm-logo.white.small {
  width: 112px;
  height: 32px;
}

.palm-logo.black {
  color: var(--black);
  background-image: url('../images/black-logo.svg');
}

.palm-logo.black.small.w--current {
  width: 112px;
  height: 32px;
}

.palm-logo.moss {
  flex: none;
  height: 32px;
}

.palm-logo.moss.w--current {
  filter: none;
  background-image: url('../images/black-logo.svg');
}

.palm-logo.moss.small.w--current {
  width: 98px;
  height: 28px;
  color: var(--black);
}

.n-button {
  background-color: var(--neon-600);
  letter-spacing: .3px;
  border-radius: 60px;
  order: 0;
  justify-content: center;
  align-self: auto;
  align-items: center;
  padding: 16px 28px;
  font-family: DM Sans, sans-serif;
  font-size: 18px;
  font-weight: 400;
  text-decoration: none;
  display: flex;
}

.n-button:hover {
  background-color: var(--green-800);
  text-decoration: none;
}

.n-button.nav {
  color: var(--neutral-50);
  background-color: #043c41;
  margin-left: 20px;
  padding: 16px 24px;
  font-size: 16px;
  transition: all .25s;
}

.n-button.nav:hover {
  background-color: #022d30;
}

.n-button.top-padding-20 {
  transition: all .25s;
}

.n-button.top-padding-20:hover {
  color: var(--neutral-50);
  background-color: #178b76;
}

.n-button.top-padding-20.center {
  align-self: flex-start;
  margin-top: 0;
}

.n-button.top-padding-20.wide-btn {
  width: 260px;
}

.n-button.top-padding-20.wide-btn.dark-green-btn {
  color: #fff;
  background-color: #043c41;
}

.n-button.top-padding-20.wide-btn.ar-cta {
  background-color: var(--moss-400);
  color: var(--moss-1000);
  font-size: 20px;
  font-weight: 700;
  line-height: 27px;
}

.n-button.top-padding-20.wide-btn.ar-war {
  background-color: var(--moss-400);
  width: 165px;
  color: var(--moss-1000);
  margin-top: 0;
  padding: 12px 21px;
  font-size: 20px;
  font-weight: 700;
  line-height: 27px;
}

.n-button.top-padding-20.color-test {
  color: #fff;
  background-color: #1fa088;
}

.n-button.n-dark-green-btn {
  cursor: pointer;
  background-color: #053c41;
  transition: all .25s;
}

.n-button.n-dark-green-btn:hover {
  background-color: #022d30;
}

.n-button.n-dark-green-btn.wide {
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 20px;
  display: flex;
}

.n-button.n-dark-green-btn.wide-btn {
  width: 260px;
}

.n-button.n-dark-green-btn.wide-btn.bottom-padding-10 {
  margin-bottom: 6px;
}

.n-button.n-dark-green-btn.top-padding60 {
  margin-top: 60px;
}

.n-button.n-dark-green-btn.top-padding60.outline {
  color: #202327;
  background-color: #053c4100;
  border: 1px solid #20232770;
  padding-top: 15px;
  padding-bottom: 15px;
}

.n-button.outline.top-padding-20 {
  border: 2px solid var(--neutral-500);
  color: var(--neutral-200);
  cursor: pointer;
  background-color: #0a140b6e;
  padding-top: 19px;
  padding-bottom: 19px;
}

.n-button.outline.top-padding-20:hover {
  background-color: #0a140bcc;
}

.n-button.outline.top-padding-20.dark {
  border-color: var(--moss-1000);
  color: var(--moss-1000);
  background-color: #ffffff6e;
}

.n-button.top-padding-40 {
  align-self: center;
  margin-top: 40px;
  display: none;
}

.n-button.white-text {
  color: #fff;
}

.n-button.white-text:hover {
  background-color: #0b9720;
}

.n-button.download {
  color: #fff;
  background-image: url('../images/file-1.png');
  background-position: 34px;
  background-repeat: no-repeat;
  background-size: auto 40px;
  width: 250px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 30px;
  padding-bottom: 30px;
  padding-left: 77px;
}

.n-button.download:hover {
  background-color: #0b9720;
}

.n-button.form-download-button {
  background-image: url('../images/file-1.png');
  background-position: 30px;
  background-repeat: no-repeat;
  background-size: auto 30px;
  padding-left: 66px;
}

.n-button.bottom-padding-20.qbp-hero__btn {
  margin-bottom: 0;
  display: flex;
}

.n-button.or-mainsection-button {
  background-color: var(--moss-300);
  color: var(--moss-1000);
  padding: 10px 2rem;
  font-size: 16px;
  font-weight: 600;
  line-height: 27px;
}

.n-button.or-roles-tag {
  background-color: var(--neon-200);
  color: var(--neutral-900);
  padding: 0 12px;
  font-size: .75em;
  font-weight: 700;
}

.n-button.or-roles-button {
  background-color: var(--moss-300);
  min-height: 42px;
  color: var(--moss-1000);
  padding: 5px 32px;
  font-size: 16px;
  font-weight: 600;
}

.n-button.pag-button {
  line-height: 80%;
}

.n-button.home_title-button {
  background-color: var(--moss-300);
  color: #042c2f;
  align-self: auto;
  min-height: 56px;
  padding: 12px 64px;
  font-size: 16px;
  font-weight: 700;
}

.n-button.home_title-button.new {
  padding-top: 16px;
  padding-bottom: 16px;
}

.n-button.home_title-button.btn-short {
  justify-content: center;
  align-items: center;
  min-height: auto;
  margin-top: 20px;
  padding: 18px 24px;
  display: inline-block;
}

.n-button.jta_btn {
  background-color: var(--moss-600);
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
}

.n-button.jta_btn.new {
  flex: 0 auto;
  justify-content: center;
  align-self: flex-start;
  align-items: center;
  min-height: 56px;
  display: block;
}

.n-button.jta_btn.new.dev-btn, .n-button.jta_btn.new.dev {
  font-size: 1em;
}

.n-button.jta_btn.new.pt-hero_btn {
  font-size: 16px;
  line-height: 24px;
}

.n-button.jta_btn.new.pt-hero_btn.ar {
  background-color: var(--moss-400);
  color: var(--moss-1000);
  font-size: 20px;
  font-weight: 700;
  line-height: 27px;
}

.n-button.oneid_title-button {
  background-color: var(--moss-300);
  color: #042c2f;
  align-self: flex-start;
  padding: 16px 24px;
  font-size: 16px;
  font-weight: 700;
}

.n-button.oneid_title-button.new {
  min-height: 56px;
}

.n-button.monitor_title-button {
  background-color: var(--moss-300);
  color: #042c2f;
  align-self: flex-start;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 700;
}

.n-button.monitor_title-button.new {
  min-height: 56px;
  padding-top: 16px;
  padding-bottom: 16px;
}

.n-button.monitor_title-button.new.why-palm {
  font-size: 1em;
}

.n-button.dev-submit {
  background-color: var(--moss-1000);
  order: 0;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
}

.n-button.ryb {
  color: var(--moss-1000);
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
}

.n-button.ryb.header.free {
  background-color: var(--transparent);
  border: 1px solid #64c9a4;
}

.n-button.ryb.header.paid {
  background-color: var(--moss-300);
}

.n-button.act-ps {
  width: 100%;
  max-width: 325px;
  color: var(--moss-1000);
  background-color: #64c9a4;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
}

.n-button.hiw {
  color: var(--black);
  background-color: #baeeda;
  padding-top: 12px;
  padding-bottom: 12px;
  font-weight: 500;
  line-height: 24px;
}

.n-button.void {
  background-color: var(--transparent);
  color: var(--white);
  border-bottom: 2px solid #fff;
  border-radius: 0;
  padding-bottom: 8px;
  padding-left: 0;
  padding-right: 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 27px;
}

.n-button.ar-tfc-c3 {
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  width: 58%;
  height: 9%;
  color: var(--moss-1000);
  background-color: #d3f4e7;
  font-weight: 700;
  position: absolute;
  inset: 50% auto auto 0%;
  overflow: visible;
}

.n-button.hp-btn-dark {
  background-color: var(--moss-1000);
  display: block;
}

.n-button.feb-button {
  border: 1px solid var(--neutral-500);
  background-color: var(--white);
  color: var(--moss-1000);
  padding: .75rem 1.5rem;
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
  display: inline-block;
}

.n-button.feb-button.ghost {
  border: 1px solid var(--neutral-600);
  background-color: var(--transparent);
  color: var(--neutral-50);
  font-weight: 400;
}

.n-button.feb-button.custom {
  display: none;
}

.n-button.feb-button.test {
  font-size: 18px;
}

.n-button.secondary {
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  border: 1px solid var(--neutral-600);
  background-color: var(--transparent);
  height: 52px;
  padding: .75rem 1.25rem;
}

.n-button.secondary.nav {
  height: auto;
  margin-left: 0;
  padding: .5rem 1rem;
}

.n-button.secondary.nav:hover, .n-button.secondary.nav.white {
  background-color: var(--white);
}

.nav-link {
  color: var(--moss-1000);
  font-family: DM Sans, sans-serif;
  font-size: 16px;
  font-weight: 400;
  transition: all .25s;
}

.nav-link:hover {
  color: var(--moss-700);
  text-decoration: none;
}

.nav-link.w--current {
  color: var(--moss-1000);
  text-decoration: none;
}

.nav-menu {
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  background-color: #0000;
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.nav-container {
  width: 100%;
  max-width: 1920px;
  padding-left: 30px;
  padding-right: 30px;
}

.nav-container.no-right-padding {
  border-radius: 0;
  justify-content: space-between;
  align-items: center;
  margin-top: 0;
  padding-left: 80px;
  padding-right: 80px;
  display: flex;
  position: static;
}

.nav-container.no-right-padding.partners {
  padding: 24px 32px;
}

.header-text {
  color: #fff;
  margin-top: 0;
  font-size: 50px;
  font-weight: 300;
}

.header-text.tighter {
  font-size: 55px;
  font-weight: 400;
  line-height: 105%;
}

.header-text.larger {
  font-size: 60px;
  line-height: 105%;
}

.header-text.larger.dark-green-text {
  color: var(--moss-1000);
}

.header-text.larger.smaller-mobile {
  font-size: 50px;
}

.header-text.dark-green-text {
  color: #0b0e0c;
  font-size: 60px;
}

.header-text.dark-green-text.no-padding {
  margin-bottom: 0;
  margin-right: 0;
}

.header-text.dark-green-text.no-padding.smaller {
  font-size: 48px;
}

.header-text.dark-green-text.no-padding.smaller.green {
  color: #0dae25;
}

.header-text.bus-id__header-text {
  text-align: left;
  margin-right: 0;
  font-size: 60px;
  line-height: 105%;
}

.header-text.qbp-hero__header {
  margin-bottom: 0;
  font-size: 3em;
}

.half-container {
  width: 100%;
  max-width: 600px;
}

.half-container.narrow {
  max-width: 400px;
  height: 100vh;
  padding-top: 176px;
}

.half-container.narrow.qbp-scroll__card {
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  padding-top: 0;
  display: flex;
}

.half-container.video3 {
  z-index: 6;
  opacity: 1;
  border-radius: 60px;
  width: 90%;
  height: 80%;
  display: block;
  position: absolute;
}

.half-container.video3.auto {
  width: auto;
  max-width: none;
  height: auto;
}

.half-container.video2 {
  z-index: 9;
  opacity: 1;
  border-radius: 60px;
  width: 90%;
  height: 80%;
  display: block;
  position: absolute;
}

.half-container.video2.auto {
  width: auto;
  max-width: none;
  height: auto;
}

.half-container.video4 {
  z-index: 4;
  background-color: #df4a4a00;
  border-radius: 60px;
  width: 90%;
  height: 80%;
  display: block;
  position: absolute;
}

.half-container.video1 {
  z-index: 10;
  opacity: 1;
  border-radius: 60px;
  width: 90%;
  height: 80%;
  display: block;
  position: absolute;
}

.half-container.video1.auto {
  width: auto;
  max-width: none;
  height: auto;
}

.half-container.typeform-padding {
  padding-top: 100px;
  padding-bottom: 254px;
}

.half-container.width {
  width: 483px;
}

.half-container.width.main-banner_container__half {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  text-align: center;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.half-container.qbp-hero__container {
  grid-column-gap: 2.5rem;
  grid-row-gap: 2.5rem;
  flex-flow: column;
  justify-content: space-around;
  align-items: stretch;
  width: 483px;
  display: flex;
  position: relative;
}

.half-container.qbp-scroll__sticky {
  z-index: 10;
  opacity: 1;
  border-radius: 60px;
  width: 90%;
  height: 80%;
  display: block;
  position: absolute;
}

.half-container.qbp-scroll__sticky.qbp-scroll__sticky--10 {
  opacity: 1;
  mix-blend-mode: normal;
}

.half-container.qbp-scroll__sticky.qbp-scroll__sticky--9 {
  z-index: 9;
  opacity: 100;
}

.half-container.qbp-scroll__sticky.qbp-scroll__sticky--8 {
  z-index: 8;
  opacity: 100;
}

.container-2x {
  width: 100%;
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 30px;
  padding-right: 30px;
}

.container-2x.header-indent {
  padding-left: 60px;
}

.container-2x.relative {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  flex-flow: row;
  justify-content: center;
  align-items: flex-start;
  max-width: 1920px;
  margin-bottom: 0;
  display: flex;
  position: relative;
}

.container-2x.relative.is-large {
  justify-content: center;
  align-items: flex-start;
  width: 80rem;
  max-width: 80rem;
  padding-left: 0;
  padding-right: 0;
}

.container-2x.qbp-hero__context {
  grid-column-gap: 5rem;
  grid-row-gap: 5rem;
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-start;
  padding-left: 7.5rem;
  display: flex;
}

.home-header-copy {
  color: #fff;
  letter-spacing: .3px;
  max-width: 450px;
  font-size: 18px;
  font-weight: 300;
}

.home-header-copy.dark-green-text {
  color: #0b0e0c;
  max-width: 520px;
  font-size: 20px;
  font-weight: 400;
}

.home-header-copy.dark-green-text.smaller {
  text-align: center;
  align-self: center;
  max-width: 260px;
  padding-top: 4px;
  font-size: 18px;
}

.home-header-copy.dark-green-text.smaller.indent {
  align-self: flex-start;
  padding-left: 61px;
}

.home-header-copy.dark-green-text.smaller.center {
  width: 100%;
  max-width: none;
}

.home-header-copy.dark-green-text.smaller.center.white {
  color: #b7c6bc;
  margin-top: 10px;
}

.home-header-copy.dark-green-text.smaller {
  text-align: center;
  max-width: 260px;
  padding-top: 4px;
  font-size: 18px;
}

.home-header-copy.dark-green-text.smaller.center {
  object-fit: fill;
  align-self: flex-start;
  width: 100%;
  max-width: none;
  padding-left: 0;
  padding-right: 92px;
}

.light-green-shape {
  background-color: #d3f4e7;
  border-radius: 60px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 90%;
  padding: 60px 20px;
  display: flex;
}

.narrow-container {
  flex-flow: column;
  align-items: center;
  max-width: 500px;
  margin-bottom: 60px;
  display: flex;
}

.narrow-container.less-padding {
  margin-bottom: 30px;
}

.center-text {
  text-align: center;
  font-weight: 400;
}

.center-text.dark {
  color: #0b0e0c;
  letter-spacing: -.6px;
  margin-top: 0;
  margin-right: 0;
}

.center-text.dark.bottom-padding-60 {
  margin-bottom: 60px;
}

.center-text.dark.extra-large {
  margin-bottom: 0;
  font-size: 60px;
  font-weight: 400;
}

.center-text.dark.bottom-padding {
  margin-bottom: 100px;
}

.center-text.n-h2.background-photo {
  color: #fff;
  text-align: center;
  max-width: 800px;
}

.center-text.n-h2.background-photo.larger {
  font-size: 55px;
}

.center-text.no-top-padding {
  margin-top: -10px;
}

.n-green-text {
  color: var(--green-600);
}

._3x-container {
  grid-column-gap: 18px;
  grid-row-gap: 18px;
  flex-flow: row;
  justify-content: center;
  align-items: flex-start;
  max-width: 1200px;
  margin-bottom: 40px;
  display: flex;
}

._3x-container.more-space {
  margin-top: 40px;
}

._3x-block {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 32%;
  display: flex;
}

.big-number {
  color: #0c0e0c;
  height: 50px;
  font-family: DM Sans, sans-serif;
  font-size: 50px;
  font-weight: 400;
}

.bottom-padding-20 {
  margin-bottom: 30px;
}

.bottom-padding-20.normal {
  font-weight: 400;
}

.bottom-padding-20.normal.max-width {
  width: 220px;
}

.bottom-padding-20.less-padding {
  margin-top: 0;
}

.bottom-padding-20.ar-war {
  color: #1b4b47;
  margin-bottom: 24px;
  font-size: 18px;
  font-weight: 400;
  line-height: 150%;
}

.n-h2 {
  color: #0b0e0c;
  text-align: left;
  letter-spacing: -.3px;
  text-transform: none;
  margin-top: 30px;
  font-size: 45px;
  font-weight: 400;
  line-height: 110%;
}

.n-h2.bus-id__section__header {
  margin-top: 0;
  margin-bottom: 0;
}

.n-h2.ar-war {
  color: #1b4b47;
  margin-top: 0;
  margin-bottom: 24px;
  line-height: 120%;
}

.tag {
  color: #0000008a;
  letter-spacing: .5px;
  font-size: 14px;
  font-weight: 800;
}

.tag.bottom-padding-40 {
  color: #000000b3;
  border-radius: 999px;
  margin-bottom: 40px;
  padding: 8px 16px;
}

.tag.white-text {
  color: #fff;
  margin-bottom: 20px;
  font-family: DM Sans, sans-serif;
  font-weight: 600;
}

.n-body {
  background-color: var(--neutral-50);
}

.palm-pro-container {
  -webkit-text-stroke-color: #fff;
  background-color: #0000001a;
  border: 1px solid #fff;
  border-radius: 20px;
  justify-content: center;
  align-items: center;
  width: 100px;
  margin-top: 6px;
  margin-bottom: 16px;
  margin-left: 7px;
  padding-top: 1px;
  padding-bottom: 1px;
  padding-left: 0;
  font-size: 13px;
  display: flex;
}

.coming-soon {
  color: #0009;
  text-align: left;
  letter-spacing: 1px;
  margin-bottom: 0;
  font-size: 10px;
  font-weight: 700;
}

.n-container {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  max-width: 1920px;
  font-family: DM Sans, sans-serif;
  display: flex;
}

.n-container.narrow-center {
  text-align: center;
  max-width: 550px;
}

.n-container.narrow-center._900 {
  max-width: 900px;
}

.n-container.narrow-center._900.bus-is__last-section__cont {
  grid-column-gap: 25px;
  grid-row-gap: 25px;
  max-width: 428px;
}

.n-container.blog-container {
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 1200px;
  margin-bottom: 20px;
  padding-left: 60px;
  padding-right: 60px;
}

.n-container.max-width-1000 {
  max-width: 1000px;
}

.n-h1-white {
  color: #fff;
  margin-top: 0;
  margin-right: 0;
  font-size: 56px;
  font-weight: 400;
}

.n-h1-white.bus-id__last-section__header {
  width: 550px;
  max-width: 550px;
  color: var(--white);
  margin-bottom: 0;
  font-size: 56px;
  font-weight: 400;
}

.n-h1-white.ar {
  margin-bottom: 20px;
  font-size: 45px;
  line-height: 120%;
}

.footer {
  background-color: var(--moss-1000);
}

.footer-footnote {
  float: left;
  color: var(--neutral-800);
  text-align: right;
  letter-spacing: .4px;
  padding-bottom: 20px;
  padding-left: 20px;
  font-family: DM Sans, sans-serif;
  font-size: 13px;
  font-weight: 300;
}

.content-5x {
  flex-flow: column;
  align-items: flex-start;
  width: 25%;
  height: 200px;
  display: flex;
}

.content-5x.right-padding {
  margin-right: 60px;
}

.content-5x.right-padding.footer-logos {
  height: 249px;
}

.content-5x.right-padding.footer-logos.new {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  border-top: 0px none var(--neutral-300);
  flex-flow: row;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  height: auto;
  margin-right: 0;
  padding-top: 0;
}

.content-5x.new {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  height: auto;
  padding-top: 0;
}

.flex-social {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  margin-top: 20px;
  margin-bottom: 20px;
  display: flex;
}

.flex-social.new {
  margin-top: 20px;
  margin-bottom: 0;
}

.instagram {
  opacity: .8;
  background-image: url('../images/icon-button-1.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  width: 56px;
  height: 56px;
  transition: all .25s;
}

.instagram:hover {
  opacity: 1;
}

.instagram.new {
  background-image: url('../images/ig.svg');
  width: 28px;
  height: 28px;
}

.facebook {
  opacity: .8;
  background-image: url('../images/icon-button.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  width: 56px;
  height: 56px;
  transition: all .25s;
}

.facebook:hover {
  opacity: 1;
}

.facebook.new {
  background-image: url('../images/fb.svg');
  width: 28px;
  height: 28px;
}

.footer-header {
  color: #d6d9de;
  margin-bottom: 16px;
  font-family: DM Sans, sans-serif;
  font-size: 17px;
  font-weight: 500;
}

.footer-header.new {
  color: var(--black);
  margin-bottom: 4px;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
}

.footer-link {
  color: var(--neutral-500);
  letter-spacing: .3px;
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: DM Sans, sans-serif;
  font-size: 16px;
  font-weight: 300;
  text-decoration: none;
  transition: all .25s;
  display: block;
}

.footer-link:hover {
  color: var(--neutral-100);
  -webkit-text-stroke-color: var(--white);
  align-self: flex-start;
  text-decoration: none;
}

.footer-link.new {
  color: var(--neutral-600);
  margin-top: 0;
  margin-bottom: 0;
  line-height: 24px;
}

.footer-link.new:hover {
  color: var(--neutral-900);
}

.footer-link.new.nested-1 {
  border-style: solid;
  border-width: 0 0 0 1px;
  border-color: black black black var(--neutral-400);
  padding-top: 6px;
  padding-bottom: 6px;
  padding-left: 16px;
}

.footer-link.new.nested-1.first {
  padding-top: 4px;
}

.footer-link.new.nested-1.first.hidden, .footer-link.new.nested-1.hidden, .footer-link.new.hidden {
  display: none;
}

.sticky-container {
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  max-width: 650px;
  height: 90vh;
  display: flex;
  position: sticky;
  top: 5%;
}

.sticky-container.qbp-scroll__imgs {
  top: 1%;
}

.scrolling {
  grid-column-gap: 120px;
  grid-row-gap: 120px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.home-buttons {
  grid-column-gap: 22px;
  grid-row-gap: 22px;
  flex-flow: row;
  justify-content: flex-start;
  display: flex;
}

.tag-container {
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.text-block-4 {
  color: #d6d9de80;
  letter-spacing: .2px;
  margin-top: 10px;
  font-family: DM Sans, sans-serif;
  font-weight: 300;
}

.nav-lightbox-combined {
  position: relative;
}

.nav-lightbox-combined.is-sticky {
  z-index: 99999999;
  position: sticky;
  inset: 0% 0% auto;
}

.bold {
  text-align: left;
  letter-spacing: -.2px;
  font-size: 16px;
  font-weight: 600;
}

.bold.medium {
  color: #333;
  font-size: 24px;
}

.bold.less-top-padding {
  margin-top: 10px;
  margin-bottom: 20px;
  font-weight: 500;
}

.bold.text-size-regular {
  font-weight: 700;
}

.background-video {
  border-radius: 60px;
  height: 100%;
  display: block;
}

.background-video.hide-desktop {
  display: none;
}

.background-video-2 {
  border-radius: 60px;
  height: 100%;
}

.background-video-2.hide-desktop {
  display: none;
}

.background-video-3 {
  border-radius: 60px;
  height: 100%;
}

.background-video-3.hide-desktop {
  display: none;
}

.background-video-4 {
  border-radius: 60px;
  height: 100%;
}

.background-video-4.hide-desktop {
  display: none;
}

.desktop-scroll {
  background-color: #f9fafb;
  justify-content: center;
  align-items: center;
  padding-top: 80px;
  padding-bottom: 80px;
  display: flex;
}

.desktop-scroll.less-inner-padding {
  padding-top: 30px;
}

.mobile-scoll-section {
  display: none;
}

.bold-space {
  font-weight: 400;
  line-height: 180%;
}

.small-business {
  background-image: url('../images/adsf.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 56px;
  width: 100%;
  height: 500px;
}

.small-business.shorter-mobile.new-photo {
  filter: saturate(91%);
  background-image: url('../images/owner.jpg');
}

.small-business.shorter-mobile.new-photo.ar-war {
  background-image: none;
  justify-content: center;
  align-items: center;
  height: auto;
  padding: 50px;
  display: flex;
  overflow: clip;
}

.small-business.shorter-mobile.new-photo.ar-tfc {
  background-image: none;
  height: fit-content;
  position: relative;
}

.filing {
  background-image: url('../images/bruce-mars-FWVMhUa_wbY-unsplash.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 56px;
  width: 100%;
  height: 580px;
}

.filing.financing {
  background-image: url('../images/afsd.jpg');
  background-position: 30%;
}

._4x-container {
  grid-column-gap: 26px;
  grid-row-gap: 26px;
  flex-flow: row;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  margin-top: 40px;
  padding-left: 30px;
  padding-right: 30px;
  display: flex;
}

._4by-item {
  text-align: center;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 25%;
  max-width: 250px;
  display: flex;
}

.small-image {
  background-image: url('../images/adsf.jpg');
  background-position: 50%;
  background-size: cover;
  border-radius: 20px;
  width: 200px;
  height: 200px;
  margin-bottom: 20px;
}

.small-image._1 {
  background-image: url('../images/phone.avif');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: auto 70%;
}

.small-image._1.color-test2 {
  background-image: url('../images/Screenshot-2024-11-14-at-10.50.17-PM.png');
  background-position: 50% 40%;
  background-size: auto 65%;
  margin-bottom: 0;
}

.small-image._1.color-test2.a {
  filter: saturate(95%);
  background-image: url('../images/Illustration-Exploration2s.jpg');
  background-size: auto 70%;
}

.small-image._1.color-test2._4 {
  background-image: url('../images/Screenshot-2024-11-20-at-1.13.17-PM.png');
  background-size: auto 70%;
}

.small-image._2 {
  background-image: url('../images/gearb.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: auto 70%;
}

.small-image._2.color-test2 {
  background-image: url('../images/Screenshot-2024-11-14-at-10.50.24-PM.png');
  margin-bottom: 0;
}

.small-image._2.color-test2.b {
  background-image: url('../images/Illustration-Exploratione.jpg');
}

.small-image._2.color-test2._4 {
  background-image: url('../images/Screenshot-2024-11-20-at-1.13.20-PM.png');
  background-size: auto 75%;
}

.small-image._3 {
  background-image: url('../images/bell.avif');
  background-position: 50% 45%;
  background-repeat: no-repeat;
  background-size: 65%;
  width: 180px;
}

.small-image._3.color-test-3 {
  background-image: url('../images/Screenshot-2024-11-14-at-10.50.29-PM.png');
  background-position: 50% 40%;
  background-size: 60%;
  margin-bottom: 0;
}

.small-image._3.color-test-3.c {
  background-image: url('../images/Illustration-Explorationf.jpg');
  background-size: 70%;
}

.small-image._3.color-test-3._2 {
  background-image: url('../images/Screenshot-2024-11-20-at-1.13.24-PM.png');
  background-size: 65%;
}

.small-image._4 {
  background-image: url('../images/auto.avif');
  background-repeat: no-repeat;
  background-size: auto 70%;
  width: 200px;
  height: 200px;
  margin-bottom: 20px;
  position: static;
}

.small-image._4.colortest-4 {
  background-image: url('../images/Screenshot-2024-11-14-at-10.50.33-PM.png');
  margin-bottom: 0;
}

.small-image._4.colortest-4.f {
  background-image: url('../images/Illustration-Explorationg.jpg');
}

.small-image._4.colortest-4.f.e {
  background-image: url('../images/Screenshot-2024-11-20-at-1.13.28-PM.png');
  background-size: auto 80%;
}

.nav-link-2 {
  color: #042c2f;
  font-family: DM Sans, sans-serif;
  font-size: 16px;
  font-weight: 400;
  transition: all .25s;
}

.nav-link-2:hover {
  text-decoration: none;
}

.nav-link-2.w--current {
  color: #042c2f;
  text-decoration: none;
}

.n-button-2 {
  letter-spacing: .3px;
  background-color: #0dae25;
  border-radius: 10px;
  order: 0;
  align-self: auto;
  padding: 20px 28px;
  font-family: DM Sans, sans-serif;
  font-size: 18px;
  font-weight: 400;
}

.n-button-2:hover {
  text-decoration: none;
}

.n-button-2.nav {
  color: #f9fafb;
  background-color: #043c41;
  border-radius: 100px;
  margin-left: 20px;
  padding: 16px 24px;
  font-size: 16px;
  transition: all .25s;
}

.n-button-2.nav:hover {
  background-color: #022d30;
}

.n-button-2.nav.padding {
  border-radius: 50px;
  margin-top: 3px;
}

.n-button-2.nav.padding.wide {
  padding-left: 50px;
  padding-right: 50px;
}

.n-button-2.nav__menu__button {
  color: #f9fafb;
  background-color: #043c41;
  border-radius: 100px;
  margin-left: 20px;
  padding: 16px 24px;
  font-size: 16px;
  transition: all .25s;
}

.n-button-2.nav__menu__button:hover {
  background-color: #022d30;
}

.n-button-2.nav-2 {
  background-color: var(--neon-1000);
  color: #f9fafb;
  border-radius: 100px;
  margin-left: 20px;
  padding: 16px 24px;
  font-size: 16px;
  font-weight: 500;
  transition: all .25s;
}

.n-button-2.nav-2:hover {
  background-color: #022d30;
}

.n-button-2.nav-2.white-btn, .n-button-2.nav-2.n-button-invert {
  background-color: var(--white);
  color: var(--moss-1000);
}

.background-image {
  text-align: center;
  background-image: url('../images/image.jpg');
  background-position: 50%;
  background-size: cover;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  height: 600px;
  display: flex;
}

.background-image.darken {
  background-image: linear-gradient(#0000003b, #0000003b), url('../images/image.jpg');
  background-position: 0 0, 50%;
  background-size: auto, cover;
}

.typeform {
  width: 100%;
  height: 850px;
  min-height: 850px;
  margin-bottom: 0;
}

.typeform.mobile-only {
  display: none;
}

.featured {
  justify-content: center;
  align-items: center;
  display: flex;
}

.yahoo {
  filter: grayscale();
  background-image: url('../images/BrandLogo.org---Yahoo-Finance-Logo-2019.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  width: 210px;
  height: 40px;
  margin-left: 8px;
}

.pricing-container {
  grid-column-gap: 21px;
  grid-row-gap: 21px;
  flex-flow: row;
  justify-content: flex-start;
  align-items: stretch;
  max-width: 1200px;
  display: flex;
}

.price-container {
  background-color: #f4f4f6;
  border: 1px solid #d6d9de;
  border-radius: 20px;
  width: 50%;
  max-width: 395px;
  padding: 20px 20px 30px;
  position: relative;
}

.price-container.sharp-top {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  width: 395px;
}

.price-container.sharp-top.dark-background {
  background-color: #043c41;
  background-image: url('../images/Frame-1618869870-1.jpg');
  background-position: 20% 1%;
  background-repeat: no-repeat;
  background-size: 300%;
  border-radius: 20px;
}

.pricing-check {
  background-image: url('../images/Screenshot-2024-10-08-at-2.11.46-PM.png');
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: 24px;
  flex-flow: row;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  margin-top: 20px;
  margin-bottom: 20px;
  display: flex;
}

.pricing-check.bright {
  background-image: url('../images/checks.png');
}

.price-title {
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 600;
  line-height: 115%;
}

.price-title.price {
  letter-spacing: -1px;
  margin-bottom: 0;
  font-size: 36px;
}

.price-horizontal {
  border-bottom: 1px solid #043c414f;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 40px;
  padding-bottom: 30px;
  display: flex;
}

.price-horizontal.extra-padding {
  padding-bottom: 30px;
}

.price-details {
  margin-left: 8px;
  padding-top: 18px;
  font-size: 14px;
}

.flex-vertical {
  flex-flow: column;
  justify-content: space-between;
  height: 100%;
  display: flex;
}

.category-tag {
  opacity: .76;
  color: #0c0e0c;
  letter-spacing: .5px;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid #0000003b;
  border-radius: 6px;
  align-self: flex-start;
  margin-left: 0;
  margin-right: auto;
  padding: 2px 7px 1px;
  font-family: DM Sans, sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-decoration: none;
}

.category-tag:hover {
  background-color: #39b74c69;
  border-color: #000000b5;
  text-decoration: none;
}

.category-tag.green {
  z-index: 2004;
  background-color: var(--green);
  opacity: 1;
  border-radius: 11px;
  padding-left: 9px;
  padding-right: 9px;
  position: absolute;
  inset: 10px 10px auto auto;
}

.category-tag.green.position-static {
  display: inline-block;
  position: static;
}

.cagetories {
  z-index: 2001;
  grid-column-gap: 7px;
  grid-row-gap: 7px;
  flex-flow: wrap;
  margin-bottom: 15px;
  padding-left: 8px;
  display: flex;
  position: relative;
}

.cagetories.no-bottom-padding {
  margin-bottom: 0;
}

.cagetories.no-bottom-padding.no-left-padding {
  padding-left: 0;
}

.left-align {
  text-align: left;
  font-weight: 500;
}

.left-align.left-padding {
  margin-right: 10px;
}

.left-align.left-padding.bigger {
  font-size: 46px;
  font-weight: 400;
}

.image-file {
  background-image: linear-gradient(to bottom, #042c2f47, #042c2f47), url('../images/file-1.png'), linear-gradient(to bottom, var(--moss-1000), var(--moss-1000));
  background-position: 0 0, 50%, 0 0;
  background-repeat: repeat, no-repeat, repeat;
  background-size: auto, 60px, auto;
  border-radius: 20px;
  justify-content: flex-end;
  align-items: flex-start;
  height: 200px;
  margin-top: 10px;
  margin-bottom: 20px;
  padding-top: 10px;
  padding-left: 10px;
  padding-right: 10px;
  display: flex;
  position: relative;
}

.form-container {
  border-radius: 40px;
  justify-content: center;
  align-items: center;
  width: 50%;
  max-width: 500px;
  height: 350px;
  display: flex;
}

.form-field {
  text-transform: uppercase;
  margin-top: 20px;
  font-family: DM Sans, sans-serif;
}

.form-block {
  background-color: #fff;
  border: 1px solid #00000045;
  border-radius: 11px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 410px;
  padding: 30px;
  display: none;
}

.field {
  color: #333;
  border: 1px solid #000;
  border-radius: 6px;
  height: 46px;
  font-family: DM Sans, sans-serif;
}

.field::placeholder {
  color: #000;
}

.success {
  background-color: #fff;
  padding-left: 0;
  padding-right: 0;
  font-family: DM Sans, sans-serif;
  font-size: 18px;
  font-weight: 600;
}

.download-headline {
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 26px;
  line-height: 30px;
}

.error-message {
  color: red;
  background-color: #ffdede00;
  flex: 0 auto;
  font-family: DM Sans, sans-serif;
  font-size: 15px;
  font-weight: 500;
  position: static;
  inset: -5px 0% 0% auto;
}

.categories {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  flex-flow: row;
  display: flex;
}

.categories.bottom-padding-10 {
  z-index: 2001;
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  flex-flow: wrap;
  margin-bottom: 10px;
  padding-left: 6px;
  position: relative;
}

.empty {
  background-color: #ddd0;
  height: 0;
}

.content-container {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  max-width: 1200px;
  padding-left: 30px;
  padding-right: 30px;
  display: flex;
}

.banner-announcement {
  background-color: var(--moss-200);
  height: 48px;
  color: var(--moss-1000);
  justify-content: center;
  align-items: center;
  padding-left: 30px;
  padding-right: 30px;
  display: flex;
}

.banner-container {
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.form-flex {
  background-image: url('../images/form.jpg');
  background-position: 0%;
  background-repeat: no-repeat;
  background-size: contain;
  justify-content: flex-start;
  align-items: center;
  height: 80px;
  margin-top: 30px;
  padding-left: 47px;
  display: flex;
}

.form {
  flex-flow: column;
  justify-content: center;
  width: 95%;
  display: flex;
}

.cta-block {
  background-color: #fff;
  border: 1px solid #00000045;
  border-radius: 11px;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  height: 300px;
  padding: 10px 30px 30px;
  display: flex;
}

.download-link {
  margin-top: 40px;
}

.green-copy {
  color: var(--green);
  margin-bottom: 10px;
  font-size: 32px;
}

.state-cta {
  flex-flow: row;
  display: flex;
}

._3by {
  text-align: center;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 33%;
  max-width: 300px;
  padding-left: 10px;
  padding-right: 10px;
  display: flex;
}

.hero-stack {
  background-color: #042c2f;
  background-image: linear-gradient(135deg, #064246, #064246);
  border-bottom: 1px #e4ebf3;
  padding: 80px 30px;
  position: relative;
}

.hero-stack.search-stack {
  background-image: linear-gradient(135deg, var(--moss-1000), var(--moss-1000));
  padding-bottom: 80px;
}

.hero-stack.search-stack.cs-search-stack {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.hero-stack.search-stack.cs-search-stack.section_hero-business-serch {
  background-color: #042c2f00;
  background-image: none;
}

.hero-stack.search-stack.cs-search-stack.section_hero-business-serch.ar {
  min-height: auto;
}

.container-3 {
  width: 100%;
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
}

.container-3.is-align-vertical {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.container-3.is-align-vertical.ar {
  width: 80%;
  max-width: none;
}

.hero-wrapper-two {
  text-align: center;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.hero-wrapper-two.maior {
  max-width: 800px;
}

.hero-wrapper-two.ar {
  max-width: none;
}

.margin-bottom-24px {
  color: #f0f1f3;
  margin-bottom: 1.5rem;
  font-size: 1.125rem;
}

.text-span-5 {
  color: #f9fafb;
  font-size: 3rem;
  font-weight: 400;
}

.heading-8 {
  margin-top: 0;
  margin-bottom: 16px;
  margin-right: 0;
  font-size: 38px;
}

.heading-8.is-white {
  color: #f9fafb;
  font-size: 3rem;
  font-weight: 400;
}

.div-block-9 {
  width: 100%;
  max-width: 800px;
  min-height: 40px;
}

.div-block-9.search_box {
  max-width: 940px;
  margin: 40px auto 20px;
}

.search_box #stateMenu {
  border-radius: 99px;
  background-color: #042C2F;
  width: auto;
  flex-grow: 0;
  padding: 0px 12px 0px 0px;
}

#stateMenu * {
  min-width: 0px;
  width: 160px;
}

.div-block-9.search_box.cs-search-box {
  border: .5rem solid var(--moss-800);
  background-color: #ffffff14;
  border-radius: 62.5rem;
  width: 80%;
  margin-top: 1rem;
  margin-bottom: 5rem;
  padding: 9px 16px 8px 16px;
}

.div-block-9.search_box.cs-search-box.cs-search-box--white-border {
  border-width: .125rem;
  border-color: #ecf9f433;
}

.div-block-9.search_box.cs-search-box.cs-search-box--white-border.is-100 {
  width: 100%;
  max-width: none;
  min-height: 56px;
  margin-top: 0;
  margin-bottom: 0;
}

.div-block-9.search_box.cs-search-box.cs-search-box--white-border.is-100.flex-searchbox {
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.section-2 {
  margin-top: 32px;
  margin-bottom: 32px;
  padding-left: 16px;
  padding-right: 16px;
  display: block;
}

.section-2.result-section {
  opacity: 0;
  background-color: #0000;
  margin-top: 32px;
  padding-top: 0;
  display: none;
}

.div-block-10 {
  margin-bottom: 10px;
}

.resultsflex {
  justify-content: space-between;
  padding-bottom: 14px;
  display: flex;
}

.div-block-11 {
  margin-bottom: 10px;
}

.div-block-12 {
  text-align: center;
}

.nav__container {
  width: 100%;
  max-width: 1920px;
  padding-left: 30px;
  padding-right: 30px;
}

.nav__container.no-right-padding {
  border-radius: 0;
  margin-top: 0;
  position: static;
}

.nav__menu {
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.n-nav {
  background-color: #f9fafb;
  justify-content: space-around;
  align-items: center;
  height: 80px;
  display: flex;
}

.n-nav.color-test {
  z-index: 1000;
  border-radius: 40px;
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
  position: static;
  inset: 0% 5%;
  overflow: visible;
}

.nav-floating {
  opacity: 1;
  -webkit-backdrop-filter: blur(13px);
  backdrop-filter: blur(13px);
  background-color: #f9fafbd9;
  border-radius: 40px;
  justify-content: space-around;
  align-items: center;
  height: 70px;
  margin-top: 20px;
  display: flex;
  position: fixed;
  inset: 0% 2%;
}

.nav__menu__link {
  color: #042c2f;
  font-family: DM Sans, sans-serif;
  font-size: 16px;
  font-weight: 400;
  transition: all .25s;
}

.nav__menu__link:hover {
  color: #087a5c;
  text-decoration: none;
}

.nav__menu__link.w--current {
  color: #042c2f;
  text-decoration: none;
}

.nav__menu__link.nav__menu__dropdown {
  position: relative;
}

.nav__palm-logo {
  filter: brightness(90%);
  background-image: url('../images/palm-logo.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  width: 110px;
  height: 60px;
}

.nav__palm-logo.w--current {
  background-image: url('../images/Logo.svg');
}

.dropdown-list {
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  background-color: #f9fafb;
  margin-top: 4px;
  overflow: hidden;
}

.dropdown-list.nav__dropdown__list {
  float: none;
  clear: none;
  opacity: 1;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  mix-blend-mode: normal;
  background-color: #f9fafbf0;
  border: 1px #0000;
  border-radius: 20px;
  margin-top: 20px;
}

.dropdown-list.nav__dropdown__list.w--open {
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  margin-top: 20px;
  padding-top: 0;
  inset: auto;
  overflow: hidden;
}

.dropdown-toggle {
  padding-right: 20px;
}

.dropdown-toggle.nav__menu__link {
  display: block;
  overflow: visible;
}

.nav_dropdown_wrapper.w--open {
  background-color: #ddd0;
  border: 1px solid #0000;
}

.california-search-body {
  background-color: var(--white);
}

.result-container {
  opacity: 0;
  background-color: #f9fafb;
  border-radius: 1rem;
  width: 80%;
  max-width: 47rem;
  margin-top: -1.5rem;
  padding: 20px;
  display: none;
}

.result-container.no-margin {
  margin-top: 0;
}

.section-4.search-section {
  min-height: 90vh;
}

.section-4.search-section.cs-search-section {
  min-height: 100vh;
}

.section-4.search-section.cs-search-section.section_hero-business-serch {
  background-color: var(--moss-900);
  background-position: 50% 0;
  background-repeat: repeat-y;
  background-size: 100% 100vh;
  background-attachment: scroll;
}

.section-4.search-section.cs-search-section.section_hero-business-serch.ar {
  background-color: var(--moss-1000);
  background-image: none;
  min-height: auto;
}

.chat-container {
  background-color: #000;
  background-image: linear-gradient(180deg, black, var(--moss-1000) 62%);
  flex-flow: column;
  justify-content: center;
  align-items: center;
  max-width: none;
  height: 85svh;
  padding-left: 2rem;
  padding-right: 2rem;
  display: flex;
  position: relative;
}

.chat-header {
  min-height: 60px;
  position: relative;
}

.chat-messages {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  flex-flow: column;
  flex: 1;
  justify-content: center;
  align-items: center;
  width: 85%;
  padding: 1rem 0;
  display: flex;
  overflow-y: auto;
}

.chat-welcome {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  height: 100.011%;
  padding-top: 2rem;
  padding-bottom: 2rem;
  display: flex;
}

.chat-welcome__header {
  width: 100%;
  color: var(--white);
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 0;
  font-size: 34px;
  font-weight: 600;
}

.chat-welcome__context {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 736px;
  display: flex;
}

.chat-welcome__p {
  color: var(--neutral-500);
}

.chat-prompt {
  width: 80%;
  position: relative;
}

.form-block-2 {
  width: 100%;
}

.form-block-2.chat__form__block {
  height: 144px;
}

.error-message-2 {
  border: 1px solid #000;
  border-radius: 14px;
}

.chat-prompt__form {
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  background-color: var(--moss-900);
  border-radius: 20px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  display: flex;
  position: static;
}

.chat-prompt__btn {
  background-color: var(--moss-800);
  cursor: pointer;
  border-radius: 18px;
  justify-content: center;
  align-items: center;
  padding: .5em .8rem;
  display: flex;
}

.form__button__image {
  width: 1em;
  max-width: none;
  padding-top: 4px;
  padding-right: 0;
}

.chat-prompt__input {
  height: 40%;
  min-height: 40%;
  max-height: 95%;
  color: var(--white);
  cursor: text;
  resize: none;
  background-color: #fff0;
  border: 1px solid #0000;
  margin-bottom: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
  font-family: DM Sans, sans-serif;
}

.chat-prompt__input:focus {
  resize: none;
  border-width: 0;
  border-color: #0000;
  padding-top: 12px;
  padding-bottom: 12px;
}

.chat-prompt__toolbar {
  grid-column-gap: 19px;
  grid-row-gap: 19px;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 50%;
  padding-left: 1rem;
  padding-right: 1rem;
  display: flex;
}

.chat-disclaimer__p {
  text-align: center;
  font-size: 10px;
  font-weight: 300;
}

.bus-id__lhalf-cont {
  justify-content: center;
  align-items: center;
  max-width: 473px;
  min-height: 100%;
  display: flex;
  position: static;
}

.bus-id__rhalf-cont {
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 650px;
  display: flex;
  position: static;
}

.bus-id__link {
  font-weight: 700;
  text-decoration: none;
}

.image-4.bus-id__main-section-img {
  z-index: 1;
  max-height: 90%;
  position: absolute;
  inset: auto 6% 0% auto;
  overflow: clip;
}

.text-span-6 {
  color: var(--green-600);
}

.chat-prompt__suggestion {
  grid-column-gap: .5rem;
  grid-row-gap: .2rem;
  flex-flow: wrap;
  flex: 1;
  justify-content: flex-start;
  align-items: center;
  width: 80%;
  padding: .25rem .5rem;
  display: flex;
}

.chat-prompt__suggestion__item {
  border: 1px solid var(--moss-800);
  text-align: center;
  background-color: #3898ec00;
  border-radius: 20px;
  flex: none;
  width: auto;
  height: 1.6rem;
  padding: .125rem .8rem;
  font-family: DM Sans, sans-serif;
  font-size: .8em;
  font-weight: 500;
  line-height: 1.8em;
  text-decoration: none;
}

.chat-prompt__suggestion__item:hover {
  text-decoration: none;
}

.chat-prompt__suggestion__item.chat-prompt__suggestion__item--new {
  border-color: var(--moss-800);
  background-image: linear-gradient(90deg, var(--moss-700), var(--moss-900) 60%);
}

.chat-prompt__context {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-top: .25rem;
  padding-bottom: .25rem;
  padding-left: 0;
  display: flex;
}

.chat-messages__context {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-flow: column;
  flex: 1;
  width: 100%;
  height: 100.011%;
  padding: 2rem;
  display: flex;
  overflow-y: auto;
}

.cs-steps {
  background-color: var(--moss-900);
  border-radius: 1.5rem;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 58.75rem;
  margin-bottom: 2rem;
  margin-left: auto;
  margin-right: auto;
  padding: 2.6rem;
  display: flex;
}

.cs-steps.is-hide {
  opacity: 0;
  display: none;
}

.cs-step {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  background-color: var(--moss-50);
  border-radius: 24px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 15.6rem;
  height: 11.25rem;
  padding: 1.5rem;
  display: flex;
}

.cs-step__text {
  color: var(--moss-900);
  text-align: center;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 120%;
}

.cs-step__img {
  width: 3.5rem;
}

.cs-connector {
  border-top: 1px dashed var(--moss-500);
  min-width: 5rem;
  height: 0;
}

.qbp-hero__p {
  color: #fff;
  letter-spacing: .3px;
  max-width: 450px;
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 300;
}

.qbp-hero__text {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  margin-top: 0;
  display: flex;
}

.qbp-hero__icons {
  max-width: 160%;
  position: absolute;
  inset: -5.7rem auto auto -5.8rem;
}

.qbp-hero__icons.qbp-hero__icons--v2 {
  width: 20.5rem;
  max-width: none;
  position: static;
}

.qbp-hero__icons-spacer {
  border: 1px red;
  border-radius: 1px;
  width: 100%;
  max-width: 12rem;
  height: 100%;
  min-height: 5.5rem;
  position: relative;
}

.qbp-scroll {
  background-color: #f9fafb;
  justify-content: center;
  align-items: center;
  padding-top: 0;
  padding-bottom: 80px;
  display: flex;
}

.qbp-scroll.qbp-scroll--mobile, .qbp-scroll.qbp-scroll--tablet {
  display: none;
}

.qbp-scroll__img {
  max-width: 9.25rem;
}

.qbp-faq {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  background-color: var(--moss-100);
  flex-flow: column;
  justify-content: center;
  padding: 7.5rem;
  display: flex;
}

.qbp-faq__context {
  border-bottom: 1px solid var(--moss-300);
  flex-flow: column;
  justify-content: center;
  display: flex;
}

.qbp-faq__header {
  cursor: pointer;
  flex-flow: row;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 3rem;
  display: flex;
}

.qbp-faq__title {
  color: var(--moss-800);
  font-size: 2em;
  font-weight: 400;
}

.qbp-faq__info {
  display: none;
}

.qbq-faq__p {
  color: var(--moss-800);
  font-size: 1.5em;
}

.text-span-7 {
  color: var(--green-600);
}

.image-5 {
  width: 25rem;
}

.qbp-hero__qb-btn {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  border: 1px solid var(--neutral-900);
  background-color: var(--neutral-50);
  border-radius: 8rem;
  flex-flow: row;
  justify-content: center;
  align-items: center;
  padding: .8rem 6.6rem;
  display: flex;
}

.qbp-hero__qb-btn.qbp-hero__qb-btn--v2 {
  background-color: #0077c5;
  border-width: 0;
  border-color: #3c414a;
  border-radius: .5rem;
  padding-left: 1.9rem;
  padding-right: 1.9rem;
}

.qp-hero__qb-btn__p {
  color: var(--black);
  text-align: center;
  white-space: nowrap;
  margin-bottom: 0;
  font-size: 1.125em;
  font-weight: 600;
}

.qp-hero__qb-btn__p.qp-hero__qb-btn__p-v2 {
  color: var(--white);
}

.qbp-hero__qb-btn__icon {
  max-width: 1.5rem;
}

.qbp-hero__link {
  color: var(--transparent);
  text-align: center;
  text-decoration: none;
}

.chat-messages__message {
  max-width: 80%;
  color: var(--neutral-50);
  text-align: left;
  flex-flow: column;
  justify-content: center;
  align-items: stretch;
  padding: 1rem 2rem;
  font-size: 1em;
  line-height: 200%;
  display: flex;
}

.chat-messages__message.chat-messages__message--user {
  background-color: #7fc4c91a;
  border-radius: 8rem;
  align-self: flex-end;
}

.chat-messages__message h1 {
  color: var(--white);
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 0;
  font-size: 2em;
  font-weight: 400;
}

.chat-messages__message p {
  color: var(--white);
  font-size: 1em;
  font-weight: 400;
}

.chat-messages__message h5 {
  color: var(--white);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.1em;
  font-weight: 400;
}

.chat-messages__message h4 {
  font-size: 1.3em;
  font-weight: 400;
}

.chat-messages__message h3 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.5em;
  font-weight: 500;
}

.chat-messages__message h2 {
  color: var(--white);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.6em;
  font-weight: 400;
}

.chat-messages__message li {
  color: var(--white);
  font-size: 1em;
}

.chat-messages__message strong {
  font-weight: 500;
}

.ft-hero {
  background-color: var(--moss-100);
  background-image: url('../images/ft-hero-bg-half-right.png'), url('../images/ft-hero-bg-half-left.png');
  background-position: 102%, -2%;
  background-repeat: repeat-y, repeat-y;
  background-size: 20%, 20%;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 90vh;
  padding-top: 80px;
  padding-bottom: 80px;
  display: flex;
  position: relative;
}

.ft-hero__context {
  grid-column-gap: 2.5rem;
  grid-row-gap: 2.5rem;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1920px;
  display: flex;
}

.ft-hero__content {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 45.5rem;
  display: flex;
}

.ft-hero__header {
  color: var(--neutral-1100);
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 0;
  font-size: 3em;
  font-weight: 300;
}

.ft-hero__p {
  max-width: 90%;
  color: var(--moss-800);
  text-align: center;
  letter-spacing: .3px;
  margin-bottom: 0;
  font-size: 1.25em;
  font-weight: 400;
}

.ft-hero__cta {
  grid-column-gap: 22px;
  grid-row-gap: 22px;
  border-top-width: 2px;
  border-top-color: var(--moss-900);
  flex-flow: row;
  justify-content: flex-start;
  display: flex;
}

.ft-hero__btn {
  background-color: var(--neon-600);
  letter-spacing: .3px;
  border-radius: 60px;
  order: 0;
  justify-content: center;
  align-self: auto;
  align-items: center;
  padding: 16px 28px;
  font-family: DM Sans, sans-serif;
  font-size: 18px;
  font-weight: 400;
  text-decoration: none;
  display: flex;
}

.ft-hero__btn:hover {
  background-color: var(--green-800);
  text-decoration: none;
}

.ft-hero__btn.bottom-padding-20 {
  background-color: var(--moss-1000);
  color: var(--white);
  margin-bottom: 0;
  font-size: 1em;
  font-weight: 700;
  display: none;
}

.ft-category-tag {
  background-color: var(--moss-200);
  opacity: .76;
  color: var(--moss-800);
  letter-spacing: .5px;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px #0000003b;
  border-radius: 20px;
  align-self: flex-start;
  margin-left: 0;
  margin-right: auto;
  padding: 2px 7px 1px;
  font-family: DM Sans, sans-serif;
  font-size: 1em;
  font-weight: 600;
  text-decoration: none;
}

.ft-category-tag:hover {
  background-color: #39b74c69;
  border-color: #000000b5;
  text-decoration: none;
}

.tf-hero__link {
  color: var(--moss-700);
  margin-bottom: 1rem;
  font-size: 1em;
  font-weight: 400;
  display: block;
  position: absolute;
  inset: auto auto 0%;
}

.ft-hero__link__p {
  color: var(--neon-700);
}

.ft-main {
  grid-column-gap: 3.5rem;
  grid-row-gap: 3.5rem;
  background-color: var(--neutral-200);
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  padding: 3.5rem 5rem 5rem;
  display: flex;
  position: relative;
}

.ft-main__content {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  max-width: 1200px;
  padding-left: 30px;
  padding-right: 30px;
  display: flex;
}

.ft-main__header {
  color: var(--moss-1000);
  text-align: left;
  margin-top: 0;
  margin-bottom: 1.5rem;
  margin-right: 0;
  display: none;
}

.ft-main__nav {
  flex-flow: column;
  min-width: 15rem;
  max-width: 15rem;
  display: flex;
  position: sticky;
  top: 6rem;
}

.ft-main__cta {
  grid-column-gap: 34px;
  grid-row-gap: 34px;
  flex-flow: column;
  align-items: stretch;
  min-width: 17.5rem;
  max-width: 20rem;
  max-height: 90vh;
  display: flex;
  position: sticky;
  top: 6rem;
  overflow-y: auto;
}

.ft-main__nav__header {
  color: var(--neutral-1100);
  margin-top: 0;
  font-weight: 500;
}

.ft-main__sticky {
  border-right: .2rem solid var(--neutral-300);
}

.ft-main__cta__card {
  background-color: var(--moss-900);
  border-radius: 1.5rem;
  flex-flow: column;
  justify-content: center;
  padding: 1.5rem;
  display: flex;
}

.ft-main__cta__card__icon {
  width: 2.5rem;
}

.ft-main__cta__card__p {
  color: var(--white);
  margin-bottom: 0;
  font-size: 2rem;
  font-weight: 400;
}

.ft-main__cta__card__p.ft-main__cta__card__p--margin-top {
  margin-top: 1.5rem;
  line-height: 140%;
}

.ft-main__cta__card__p--green {
  color: var(--green-300);
}

.ft-main__cta__card__btn {
  background-color: var(--moss-200);
  color: var(--moss-1000);
  letter-spacing: .3px;
  border-radius: 60px;
  order: 0;
  justify-content: center;
  align-self: auto;
  align-items: center;
  padding: .4rem;
  font-family: DM Sans, sans-serif;
  font-size: .85em;
  font-weight: 700;
  text-decoration: none;
  display: flex;
}

.ft-main__cta__card__btn:hover {
  background-color: var(--green-800);
  text-decoration: none;
}

.ft-main__cta__card__btn.ft-main__cta__card__btn--margin-top {
  margin-top: 2.5rem;
}

.tf-main__cta__card__link {
  color: var(--moss-600);
  text-align: center;
  margin-bottom: 1rem;
  font-size: .85em;
  font-weight: 400;
  position: static;
  inset: auto auto 0%;
}

.tf-main__cta__card__link.tf-main__cta__card__link--margin-top {
  margin-top: 1rem;
  margin-bottom: 0;
  display: block;
}

.ft-main__cta__card__link__a {
  color: var(--moss-600);
}

.ft-main__toc {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  max-height: 80vh;
  padding-left: 1rem;
  padding-right: 1rem;
  display: flex;
  overflow-y: auto;
}

.ft-main__toc__link {
  color: var(--black);
  font-family: DM Sans, sans-serif;
  font-size: 1em;
  font-weight: 400;
  text-decoration: none;
}

.ft-main__h1 {
  color: var(--neutral-1000);
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 0;
  font-size: 2em;
  font-weight: 600;
  line-height: 140%;
}

.ft-resources {
  background-color: var(--moss-900);
  flex-flow: column;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-top: 18px;
  padding-bottom: 80px;
  display: flex;
}

.ft-trusted {
  background-color: #f9fafb;
  flex-flow: column;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-top: 80px;
  padding-bottom: 80px;
  display: flex;
}

.ft-resources__context {
  grid-column-gap: 2.5rem;
  grid-row-gap: 2.5rem;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  max-width: 1920px;
  display: flex;
}

.ft-resources__state-cta {
  flex-flow: row;
  justify-content: center;
  display: flex;
}

.ft-resources__header {
  color: var(--moss-50);
  text-align: left;
  margin-top: 0;
  padding-right: 10px;
  font-size: 32px;
  font-weight: 600;
}

.ft-resources__p {
  color: var(--moss-200);
  font-size: 18px;
  font-weight: 400;
}

.ft-resources__btn {
  background-color: var(--moss-800);
  letter-spacing: .3px;
  border-radius: 60px;
  order: 0;
  justify-content: center;
  align-self: auto;
  align-items: center;
  padding: 16px 28px;
  font-family: DM Sans, sans-serif;
  font-size: 18px;
  font-weight: 400;
  text-decoration: none;
  display: flex;
}

.ft-resources__btn:hover {
  background-color: var(--neon-700);
  text-decoration: none;
}

.ft-resources__logo {
  max-width: 250%;
  position: absolute;
  bottom: -97.886px;
  right: -6.1rem;
}

.ft-resources__position {
  border: 1px #c20505;
  border-radius: 2px;
  width: 100%;
  max-width: 8.25rem;
  height: 100%;
  min-height: 8.25rem;
  position: relative;
}

.ft-resources__btn__text {
  color: var(--white);
  font-size: 1em;
  font-weight: 700;
}

.empty-state.empty-ss {
  padding: 0;
}

.collection-list-wrapper {
  display: block;
}

.text-block-6 {
  display: none;
}

.ft-main__cta__form {
  z-index: 2;
  box-sizing: border-box;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  aspect-ratio: 1;
  object-fit: fill;
  background-color: #fff;
  border: 1px solid #00000045;
  border-radius: 11px;
  flex-flow: column;
  flex: 0 auto;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: stretch;
  width: 30rem;
  padding: 4rem;
  display: none;
  position: absolute;
  inset: 50% 0% 0% 50%;
  overflow: visible;
  transform: translate(-50%, -50%);
}

.ft-main__form {
  flex-flow: column;
  justify-content: center;
  display: flex;
  position: static;
}

.ft-main__form__title {
  color: #333;
  letter-spacing: -.2px;
  font-size: 24px;
  font-weight: 600;
}

.ft-main__form__action {
  justify-content: center;
  align-items: center;
  display: flex;
}

.ft-main__form__close-btn {
  cursor: pointer;
  max-width: 10%;
  position: absolute;
  inset: 0% 0% auto auto;
}

.link-2 {
  line-height: 200%;
  text-decoration: underline;
}

.block-quote {
  font-size: 1em;
}

.list {
  font-family: DM Sans, sans-serif;
}

.empty-state-2 {
  background-color: #ddd0;
}

.footer-webstickerlink {
  margin-top: 0;
  margin-bottom: 8px;
}

.footer-webstickerlink-img {
  width: 12rem;
  margin-top: 10px;
}

.e404-container {
  background-color: #f9fafb;
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: calc(100vh - 80px);
  max-height: 100%;
  padding: 5rem 3.75rem;
  display: flex;
}

.e404-background {
  background-color: #d3f4e799;
  border-radius: 60px;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 80%;
  max-height: 40rem;
  display: flex;
}

.e404-content {
  grid-column-gap: 2.5rem;
  grid-row-gap: 2.5rem;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  width: 55%;
  height: 100%;
  padding-top: 5rem;
  padding-bottom: 5rem;
  padding-left: 3.75rem;
  display: flex;
}

.e404-h1 {
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 0;
  font-weight: 500;
}

.e404-p {
  font-weight: 400;
}

.e404-link {
  font-family: DM Sans, sans-serif;
  font-size: 20px;
  font-weight: 700;
}

.text-span-8 {
  color: var(--green-600);
}

.e404-imagecontainer {
  background-image: url('../images/e404-iphone.webp');
  background-position: 50% 100%;
  background-repeat: no-repeat;
  background-size: contain;
  width: 40%;
  height: 100%;
  position: static;
  inset: 0% 0% 0% auto;
}

.e404-iphoneimg {
  height: 100%;
  position: static;
  inset: 0%;
}

.or-mainsection-header {
  max-width: 1200px;
  color: var(--moss-200);
  text-align: center;
  font-family: DM Sans, sans-serif;
  font-size: 3em;
  font-weight: 400;
  line-height: 140%;
}

.or-leftcontent-title {
  color: var(--moss-1000);
  font-family: DM Sans, sans-serif;
  font-size: 3em;
  font-weight: 500;
  line-height: 110%;
}

.or-leftcontent-title.or-map-title {
  max-width: 260px;
  color: var(--moss-50);
}

.or-leftcontent-title.home {
  font-size: 40px;
  font-weight: 500;
  line-height: 48px;
}

.or-section-rightcontent {
  width: 80%;
}

.or-section-rightcontent.or-howwework-list {
  grid-column-gap: 48px;
  grid-row-gap: 48px;
  flex-flow: column;
  justify-content: center;
  width: 60%;
  display: flex;
}

.or-rightcontent-text {
  color: #076a4f;
  text-align: center;
  font-family: DM Sans, sans-serif;
  font-size: 1.5em;
  font-weight: 400;
  line-height: 140%;
}

.or-rightcontent-text.home {
  color: #4f5762;
  font-size: 18px;
  line-height: 24px;
}

.text-span-9, .text-span-10 {
  font-weight: 600;
}

.or-section-downcontent.or-ourvalues-grid {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: wrap;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: row;
  justify-content: center;
  align-self: center;
  place-items: center;
  display: flex;
}

.or-section-downcontent.or-roles-grid {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  place-items: stretch center;
  display: block;
}

.or-section-downcontent.home {
  width: 60%;
}

.or-section-upcontent.or-map-title {
  width: 25%;
  display: inline-block;
}

.or-ourvalues-card {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  border: 1px solid var(--moss-200);
  border-radius: 2rem;
  flex-flow: column;
  flex: 32%;
  order: 1;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 2rem;
  display: flex;
}

.or-ourvalues-card-content {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  flex-flow: column;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.or-ourvalues-card-text {
  color: var(--text--secondary);
  text-align: center;
  font-family: DM Sans, sans-serif;
  font-size: 1.125em;
  line-height: 140%;
}

.or-ourvalues-card-text.or-ourvalues-card-text--title {
  color: var(--neutral-1050);
  font-size: 1.25em;
  font-weight: 600;
  line-height: 20px;
}

.or-ourvalues-card-text.or-roles-card-text--title {
  color: var(--neutral-1000);
  text-align: left;
  font-size: 18px;
  font-weight: 600;
  line-height: 130%;
}

.or-roles-card {
  grid-column-gap: 48px;
  grid-row-gap: 48px;
  border: 1px solid var(--moss-200);
  border-radius: 2rem;
  flex-flow: column;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  height: 100%;
  padding: 2rem;
  display: flex;
}

.or-roles-card-content {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.or-roles-card-text {
  color: var(--text--secondary);
  text-align: left;
  margin-top: 4px;
  font-family: DM Sans, sans-serif;
  font-size: 18px;
  line-height: 130%;
}

.or-howwework-item {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  border-bottom: 1px solid var(--moss-300);
  justify-content: space-between;
  align-items: center;
  padding-bottom: 48px;
  display: flex;
}

.or-howwework-item-info {
  color: var(--moss-800);
  font-family: DM Sans, sans-serif;
  font-size: 24px;
  line-height: 130%;
}

.or-howwework-item-info.or-howwework-item-number {
  font-size: 32px;
}

.or-collectionlist {
  grid-column-gap: 48px;
  grid-row-gap: 48px;
  flex-flow: row;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: row;
  place-items: stretch stretch;
  display: grid;
}

.collection-list-3 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex-flow: wrap;
  justify-content: flex-start;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.pag-text, .pag-icon, .text-block-8, .icon-3 {
  color: var(--moss-50);
}

.dark-green-text-3 {
  color: var(--moss-1000);
  text-align: left;
}

.dark-green-text-3.top-padding-20 {
  font-size: 42px;
  font-weight: 400;
}

.collection-list-4 {
  flex-flow: wrap;
  justify-content: center;
  display: flex;
}

.collection-list-5 {
  justify-content: center;
  display: flex;
}

.progress-line {
  background-color: #065b4e;
  border-radius: 100px;
  width: 0%;
  height: .75rem;
  position: relative;
}

.avatars-wrapper {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.avatars-wrapper.max-widht {
  text-align: left;
  width: 390px;
  display: none;
}

.text-size-regular {
  text-align: left;
  width: 100%;
  height: 100%;
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 300;
  position: relative;
}

.text-size-regular.text-weight-semibold.text-color-primary {
  color: #d3f4e7;
}

.text-size-regular.text-weight-semibold.text-color-primary.is-18px {
  margin-bottom: 0;
  font-size: 1.125rem;
  font-weight: 500;
}

.text-size-regular.bold-text {
  font-weight: 700;
}

.text-size-regular.text-color-moss {
  color: #053c41;
}

.text-size-regular.no-margin {
  margin-bottom: 0;
}

.faq-answer {
  color: #042c2f;
  height: auto;
  padding-top: 1rem;
  overflow: hidden;
}

.text-size-large {
  font-size: 1.5rem;
  line-height: 1.3;
}

.text-size-large.text-weight-medium {
  font-weight: 500;
}

.text-size-large.text-weight-medium.text-color-black {
  color: var(--moss-800);
}

.text-size-large.text-weight-medium.text-color-black-green-2 {
  color: #053c41;
}

.text-size-large.text-weight-medium.text-color-black-green-2.max-widht-pers {
  width: 25rem;
}

.text-size-large.text-weight-medium.text-color-black-green-2.max-widht-pers-2 {
  width: 46rem;
}

.text-size-small {
  font-size: .875rem;
}

.text-size-small._50 {
  opacity: .5;
  color: var(--moss-50);
}

.text-size-small.green {
  color: var(--moss-900);
}

.text-size-small.is-underline {
  text-decoration: underline;
}

.button-2 {
  color: #042c2f;
  text-align: left;
  background-color: #56d8a5;
  border-radius: 100px;
  flex-flow: row;
  justify-content: center;
  align-self: center;
  align-items: center;
  height: 54px;
  padding: .75rem 1.375rem;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1;
  transition: background-color .2s;
  display: flex;
}

.button-2:hover {
  background-color: #baeeda;
  text-decoration: none;
}

.button-2.is-line {
  border-bottom: 1px solid var(--white);
  height: auto;
  color: var(--white);
  background-color: #56d8a500;
  border-radius: 0;
  padding: 0 0 .9375rem;
}

.button-2.is-line:hover {
  border-bottom-color: var(--neon-400);
  color: var(--neon-400);
}

.footer-icon-social {
  width: 56px;
  height: 56px;
}

.heading-style-h3 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
}

.heading-style-h3.text-weight-medium {
  color: #1b4b47;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 32px;
  font-weight: 300;
}

.heading-style-h3.text-weight-medium.is-green {
  color: #1b4b47;
}

.heading-style-h3.text-weight-medium.is-green.align-center {
  text-align: center;
}

.heading-style-h3.text-weight-medium.is-green.menor {
  font-size: 1.5rem;
}

.heading-style-h3.is-24 {
  margin-top: 0;
  margin-bottom: 16px;
  font-size: 24px;
  font-weight: 500;
}

.heading-style-h3.is-24.is-max, .heading-style-h3.is-24.is-min-widht {
  width: 182.75px;
}

.heading-style-h3.text-weight-regular {
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 400;
}

.slider-home {
  background-color: #ddd0;
  height: 100%;
  display: block;
}

.max-width-medium {
  width: 100%;
  max-width: 32rem;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
}

.max-width-medium.text-color-primary {
  color: var(--moss-50);
}

.padding-xsmall {
  padding: .5rem;
}

.circle-reason-hero {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  color: #baeeda;
  background-color: #ecf9f41a;
  border: 1px solid #baeeda;
  border-radius: 100px;
  justify-content: flex-start;
  align-items: center;
  padding: .75rem;
  text-decoration: none;
  transition: background-color .2s;
  display: flex;
}

.circle-reason-hero:hover {
  background-color: #ecf9f44d;
  text-decoration: none;
}

.section_testmonials {
  color: var(--moss-50);
  background-color: #053c41;
}

.section_testmonials.lp-version {
  background-color: #042c2f;
}

.section_testmonials.is-annual-report {
  background-color: #053c41;
}

.name-person {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.name-person.align-left {
  justify-content: flex-start;
  align-items: flex-start;
}

.arrow-left {
  color: #065b4e;
  cursor: pointer;
  background-color: #56d8a5;
  border-radius: 100px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 3rem;
  height: 3rem;
  transition: all .2s;
  display: flex;
}

.arrow-left:hover {
  color: #56d8a5;
  background-color: #042c2f;
}

.footer-link-3 {
  color: #ecf9f4;
  text-decoration: none;
}

.footer-link-3._70 {
  opacity: .8;
  transition: opacity .2s;
}

.footer-link-3._70:hover {
  opacity: 1;
  text-decoration: none;
}

.padding-small {
  padding: 1rem;
}

.padding-small.isbigger {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}

.text-size-medium {
  margin-bottom: 0;
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 120%;
}

.text-size-medium.text-weight-semibold {
  font-weight: 600;
}

.text-size-medium.text-weight-semibold.mobile-16 {
  color: var(--moss-200);
  font-size: 1.2rem;
  font-weight: 400;
}

.text-size-medium.color-text-secondary {
  color: #4f5762;
}

.text-size-medium.text-weight-bold {
  font-weight: 700;
}

.text-size-medium.text-weight-medium.green {
  color: var(--moss-900);
}

.text-size-medium.text-color-primary {
  color: var(--moss-50);
}

.text-size-medium.text-color-primary.is-20px {
  font-size: 20px;
  font-weight: 400;
  line-height: 150%;
}

.text-size-medium.text-color-green-b2 {
  color: #0aa970;
}

.grid_footer {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: auto auto;
  grid-auto-columns: 1fr;
  display: grid;
}

.arrows-wrapper {
  grid-column-gap: .8125rem;
  grid-row-gap: .8125rem;
  display: flex;
}

.section_resources {
  background-color: #f9fafb;
  display: none;
  overflow: hidden;
}

.img_stars {
  height: 1rem;
}

.img_stars.mobile {
  display: none;
}

.container-large {
  width: 100%;
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
}

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

.container-large.text-align-center.align-center, .container-large.text-align-center.align-center.flex {
  text-align: center;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.container-large.text-align-center.align-center.flex.is-menor {
  max-width: 37rem;
}

.container-large.is-relative {
  position: relative;
}

.card-footer-2 {
  grid-column-gap: 1.25rem;
  grid-row-gap: 1.25rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.padding-huge {
  height: 4.875rem;
}

.padding-huge.is-78-mobile {
  height: 3.8rem;
}

.progress-bar {
  background-color: #baeeda;
  border-radius: 100px;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: .75rem;
  max-height: .75rem;
  display: none;
  position: relative;
  overflow: hidden;
}

.grid_bottom-hero-home {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  place-items: start center;
  display: grid;
}

.card-testmonial {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  color: #065b4e;
  text-align: left;
  background-color: #d3f4e7;
  border-radius: 30px;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  padding: 1.5rem;
  display: flex;
}

.slider-arrows-position-wrapper {
  grid-column-gap: 3.125rem;
  grid-row-gap: 3.125rem;
  border-radius: 100px;
  justify-content: flex-end;
  align-items: center;
  margin-top: 64px;
  display: flex;
}

.plus {
  background-color: #fff;
  border-radius: 20px;
  width: 2px;
  height: 38%;
  display: none;
  position: absolute;
}

.great-testmonial {
  grid-column-gap: 1.25rem;
  grid-row-gap: 1.25rem;
  color: #053c41;
  background-color: #fff;
  border-radius: 30px;
  flex-flow: column;
  justify-content: flex-start;
  align-self: stretch;
  align-items: center;
  padding: 1.5rem 21.2rem;
  display: flex;
}

.great-testmonial.lp-version {
  background-color: #ecf9f4;
  padding-left: 2rem;
  padding-right: 2rem;
}

.img-icon-bottom-hero {
  width: 3.5rem;
  height: 3.5rem;
}

._4 {
  object-fit: cover;
  width: 19.375rem;
  height: 13.9375rem;
  position: absolute;
  inset: -10% -10% auto auto;
  overflow: visible;
}

.padding-medium {
  padding: 2rem;
}

.arrow-embed {
  width: 1.75rem;
  height: 1.75rem;
}

.arrow-embed.invert {
  transform: rotate(-180deg);
}

.img-arrow-down {
  object-fit: cover;
  width: 40px;
  height: 40px;
}

.card-footer-1 {
  grid-column-gap: 1.5625rem;
  grid-row-gap: 1.5625rem;
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.img-hero-home {
  object-fit: cover;
  height: 640px;
  overflow: visible;
}

.slide-nav_home {
  display: none;
}

.content-card {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.link-block-3 {
  color: #56d8a5;
  align-self: flex-start;
}

.link-block-3:hover {
  color: var(--moss-800);
}

.grid_monitor {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  color: #042c2f;
  background-color: #ecf9f4;
  border-radius: 60px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  place-items: end center;
  display: grid;
}

.grid_monitor.is-green {
  background-color: #d3f4e7;
}

.grid_monitor.is-green.overflow-hidden {
  overflow: hidden;
}

.grid_testmonials {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.button-group {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.icon-arrow {
  display: none;
}

.content-left {
  color: #ecf9f4;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  max-width: 100%;
  display: flex;
}

.grid_hero-home {
  grid-template-rows: auto;
}

.faq-answer-inner {
  text-align: left;
  padding-top: 0;
  line-height: 1.5;
  overflow: visible;
}

.faq-question {
  color: #065b4e;
  text-align: left;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  font-weight: 300;
  text-decoration: none;
  display: flex;
}

.faq-question:hover {
  text-decoration: none;
}

.section_faq {
  color: #053c41;
  background-color: #ecf9f4;
}

.faq-wrap {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: row dense;
  margin-left: auto;
  margin-right: auto;
  display: grid;
}

.text-color-green {
  color: #56d8a5;
}

.text-color-green.ar {
  color: #37b98a;
}

.logo-links {
  grid-column-gap: 1.5625rem;
  grid-row-gap: 1.5625rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.minus {
  background-color: #fff;
  border-radius: 20px;
  width: 38%;
  height: 2px;
  display: none;
  position: absolute;
}

.footer-2 {
  color: #ecf9f4;
  background-color: #013136;
}

.footer-2.hide {
  display: none;
}

.content-left-second {
  grid-column-gap: 2.5rem;
  grid-row-gap: 2.5rem;
  color: #4f5762;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  width: 800px;
  padding: 4.875rem 0 4.875rem 60px;
  display: flex;
}

.content-left-second.max-555 {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  width: 34.6875rem;
  padding-left: 3rem;
  padding-right: 0;
}

.section_cta {
  color: #ecf9f4;
  background-image: url('../images/new-bg-cta.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.section_cta.is-annual-report.is-hide {
  display: none;
}

.img-phone {
  object-fit: cover;
  width: 316px;
  height: 391px;
  overflow: visible;
}

.mas_slider-home {
  width: 35.5rem;
  overflow: visible;
}

.arrow-right {
  color: #065b4e;
  cursor: pointer;
  background-color: #56d8a5;
  border-radius: 100px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 3rem;
  height: 3rem;
  transition: all .2s;
  display: flex;
}

.arrow-right:hover {
  color: #56d8a5;
  background-color: #042c2f;
}

.p-m-wrap {
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  width: 30px;
  min-width: 30px;
  height: 30px;
  min-height: 30px;
  margin-left: 60px;
  display: flex;
  position: relative;
}

.p-m-wrap.background-color-alternate {
  background-color: #fff0;
}

.navbar-2 {
  background-color: #ddd0;
}

.img_avatars {
  height: 2.55125rem;
}

.card-resource {
  grid-column-gap: 61px;
  grid-row-gap: 61px;
  background-color: #fff;
  border: 1px solid #d6d9de;
  border-radius: 56px;
  flex-flow: column;
  width: 35.5rem;
  max-width: 35.5rem;
  padding: 3.75rem;
  display: flex;
}

.main-wrapper {
  overflow: visible;
}

.faq-item {
  border-bottom: 1px solid #56d8a5;
  border-radius: 0;
  padding-bottom: 38px;
}

.heading-style-h3-2 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
}

.heading-style-h3-2.is-menor {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 32px;
  font-weight: 400;
}

.heading-style-h3-2.is-menor.new {
  color: var(--neutral-1000);
  line-height: 1.3;
}

.logofooter {
  height: 53px;
}

.heading-style-h2 {
  align-self: stretch;
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.2;
}

.heading-style-h2.text-color-alternate {
  color: var(--moss-50);
  font-weight: 400;
}

.heading-style-h2.text-color-alternate.no-margin {
  margin-top: 0;
  margin-bottom: 0;
}

.heading-style-h2.max-width-large {
  width: 100%;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

.heading-style-h2.max-width-large.text-color-alternate.is-cta {
  font-size: 3.5rem;
}

.heading-style-h2.max-width-large.text-color-alternate.is-cta.no-margin {
  margin-bottom: 20px;
  font-size: 40px;
}

.heading-style-h2.is-45px {
  margin-top: 0;
  margin-bottom: 0;
  padding-bottom: 24px;
  font-size: 2.8125rem;
}

.heading-style-h2.is-45px.max-width-large {
  max-width: 43rem;
}

.heading-style-h2.is-45px.text-color-white {
  color: var(--moss-50);
}

.heading-style-h2.is-45px.text-color-white.max-widht-large {
  max-width: 50.625rem;
  margin-left: auto;
  margin-right: auto;
}

.heading-style-h2.is-45px.is-green {
  color: #042c2f;
  margin-bottom: 0;
  padding-bottom: 0;
  font-size: 45px;
  font-weight: 400;
  line-height: 120%;
}

.heading-style-h2.is-40px {
  font-size: 2.5rem;
}

.heading-style-h2.is-40px.text-color-white.no-margin {
  margin-top: 0;
}

.padding-global {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.padding-global.padding-section-medium {
  color: #1b4b47;
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.padding-global.padding-section-large {
  padding-top: 8rem;
  padding-bottom: 8rem;
}

.padding-global.padding-section-large.diferent-bottom {
  padding-bottom: 4rem;
}

.padding-global.padding-section-large.diferent-top {
  padding-top: 4rem;
}

.padding-global.padding-section-large.is-relative {
  position: relative;
}

.padding-global.padding-section-large.new {
  color: #053c41;
  padding: 5rem 7.5rem;
}

.padding-global.padding-section-personalized {
  padding-top: 2.875rem;
  padding-bottom: 3.5rem;
}

.padding-global.padding-section-large-x {
  padding-top: 7rem;
  padding-bottom: 7rem;
}

.img-logo-hero.hide {
  display: none;
}

.section_hero-home {
  color: var(--moss-50);
  background-color: #043134;
  background-image: url('../images/bg-hero.avif');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-bottom-right-radius: 80px;
  border-bottom-left-radius: 80px;
}

.image-6 {
  background-image: url('../images/aways-on-identity-alerts.webp');
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 56px;
  width: 448px;
  height: 300px;
  position: relative;
}

.image-6._2 {
  background-image: url('../images/Filings--Fees-Done-For-you.webp');
  background-repeat: no-repeat;
}

.image-6._3 {
  background-image: url('../images/Monitor-Your-Legal-Entity.webp');
  background-repeat: no-repeat;
}

.grid_grid-footer {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  place-items: start center;
  display: grid;
}

.heading-1 {
  color: var(--moss-50);
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 0;
  font-size: 60px;
  font-weight: 500;
  line-height: 100%;
}

.heading-1.max-widht-680 {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.heading-1.is-annual-report {
  width: auto;
  max-width: none;
  font-weight: 400;
  line-height: 110%;
}

.heading-1.ar {
  line-height: 110%;
}

.body-new-home {
  color: var(--moss-50);
  font-family: DM Sans, sans-serif;
  font-size: 16px;
}

.img-scolling {
  object-fit: cover;
  border-radius: 20px;
  width: 100%;
  height: 24rem;
}

.img-alert {
  height: 223px;
  position: absolute;
  inset: 0% 0% auto auto;
}

.section_what-is {
  background-color: var(--white);
}

.img_result-search {
  object-fit: cover;
  height: 29rem;
  overflow: visible;
  box-shadow: 0 10px 40px #0003;
}

.section_why {
  background-color: var(--white);
}

.container-grid {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  border: 1px solid #0000001a;
  border-radius: 56px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  padding: 3.125rem;
  display: grid;
}

.container-grid.gap-80 {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  border-color: #0000001a;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: row;
  place-items: center;
  display: grid;
}

.content-right {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.content-right.is-box {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  background-color: #fff;
  border: 0 #0000001a;
  border-radius: 20px;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  padding: 1.25rem;
}

.content-right.is-box.text-align-left {
  text-align: left;
}

.list-results {
  margin-bottom: 0;
  padding-left: 20px;
  font-family: DM Sans, sans-serif;
}

.list-results.is-padding {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-left: 20px;
  display: flex;
}

.list-results.is-padding.is-green {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  color: #1b4b47;
  flex: 0 auto;
  width: 100%;
  font-size: 18px;
  line-height: 27px;
}

.list-results.is-padding.is-green.gap-menor {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
}

.list-results.is-padding.is-green.left-align._1rem {
  grid-column-gap: .8rem;
  grid-row-gap: .8rem;
  font-size: 1rem;
}

.img_why {
  object-fit: cover;
  width: 100%;
  height: 38rem;
  overflow: visible;
}

.img_why.is-florida-annual {
  border-radius: 56px;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.section_step-by-step {
  background-color: var(--white);
}

.step-by-step_wrapper {
  margin-top: 7rem;
}

.step-by-step_wrapper.is-desktop {
  display: block;
}

.step-by-step_wrapper.is-mobile {
  display: none;
}

.grid-1-steps {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  place-items: center start;
  padding-bottom: 40px;
  padding-left: 10rem;
  display: grid;
}

.steps-card {
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  text-align: left;
  flex-flow: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: flex-start;
  width: auto;
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  display: block;
  position: relative;
  left: 0;
  right: 0;
}

.grid-3-steps {
  grid-column-gap: 238px;
  grid-row-gap: 238px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: row;
  place-items: start end;
  margin-left: auto;
  margin-right: auto;
  padding-left: 22rem;
  padding-right: 22rem;
  display: grid;
}

.line-step {
  z-index: 0;
  background-color: #065b4e;
  width: 100%;
  height: 2px;
  margin-top: auto;
  margin-bottom: auto;
  position: absolute;
  bottom: 25px;
  left: 0%;
  right: 0%;
}

.line-points-wrapper {
  width: 100%;
  position: relative;
}

.grid {
  z-index: 1;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  place-items: center stretch;
  position: relative;
  top: 0;
}

.grid.grid-florida {
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
}

.image-7 {
  height: 3.125rem;
}

.elipse {
  height: .6875rem;
  margin-right: 0;
  padding-right: 0;
  position: relative;
  left: 0;
  right: 0;
}

.section_common {
  background-color: #fff;
}

.common-wrapper {
  background-color: #f9fafc;
  border: 1px solid #0000001a;
  border-radius: 56px;
  padding: 2.5rem;
}

.div-block-16 {
  grid-column-gap: 5rem;
  grid-row-gap: 5rem;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.div-block-17 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.div-block-18 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.div-block-18._5-column {
  grid-template-columns: 1fr auto 1fr auto 1fr;
}

.div-block-18._7-column {
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
}

.div-block-19 {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  text-align: center;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.icon_common {
  height: 2.8125rem;
}

.line-common {
  background-color: #00000026;
  width: 1px;
  height: 70%;
}

.section_how-palm {
  color: var(--white);
  background-color: #042c2f;
}

.grid_3-column {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.grid_3-column._80-margin-top {
  margin-top: 80px;
}

.grid_3-column.z-index-2 {
  z-index: 2;
  position: relative;
}

.grid_3-column.is-wrapper {
  background-color: #f9fafb;
  border: 1px solid #0000001a;
  border-radius: 50px;
  padding: 2.5rem;
}

.grid_3-column.is-wrapper.is-4column {
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.card-how {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  background-color: #ecf9f4;
  border-radius: 20px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  padding: 1rem;
  display: flex;
}

.card-how.vertical {
  text-align: left;
  border: 1px solid #065b4e1a;
  flex-flow: row;
  text-decoration: none;
}

.icon-how {
  height: 2.5rem;
}

.text-weight-medium {
  font-weight: 400;
}

.text-weight-medium.text-color-green.v2 {
  color: #065b4e;
  margin-bottom: 0;
}

.text-weight-medium.text-color-green.v2.is-150 {
  width: 202px;
  margin-bottom: 0;
}

.last-update-wrapp {
  grid-column-gap: .3rem;
  grid-row-gap: .3rem;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.section_hero-business-serch {
  min-height: 100vh;
  color: var(--moss-50);
  background-image: url('../images/bg-section-testmonials.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.section_hero-business-serch.is-hide {
  display: none;
}

.text-weight-semibold {
  font-weight: 600;
}

.text-weight-semibold.text-color-white {
  color: var(--moss-50);
}

.wrapp-div-search {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  background-color: #053c41;
  border-radius: 62.5rem;
  flex-flow: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  width: 694px;
  max-width: none;
  margin-left: auto;
  margin-right: auto;
  padding: 1rem;
  display: flex;
}

.icon-verified {
  width: 18px;
  height: 18px;
}

.text-color-white {
  color: var(--moss-50);
}

.text-color-white.no-margin {
  margin-bottom: 0;
}

.text-color-white.text-size-small._70-opacity {
  opacity: .7;
}

.div-icon-text {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-flow: row;
  justify-content: center;
  align-items: center;
  display: flex;
}

.section-how-it-works {
  background-color: var(--moss-1000);
}

.icon-50 {
  width: 50px;
  min-width: 40px;
  height: 50px;
  min-height: 50px;
}

.wrapper-grid {
  position: relative;
}

.line-points {
  z-index: 1;
  border: 1px dashed var(--moss-50);
  width: 100%;
  height: 1px;
  position: absolute;
  inset: 50% 0% 0%;
}

.section_mistakes {
  background-color: #fff;
}

.status-wrapper {
  grid-column-gap: 3.75rem;
  grid-row-gap: 3.75rem;
  background-color: #f9fafb;
  border: 1px solid #0000001a;
  border-radius: 56px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  padding: 3.75rem;
  display: grid;
}

.img_status-wrapper {
  object-fit: cover;
  border-radius: 56px;
  height: 568px;
}

.text-staturs-wrapper {
  align-self: center;
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  color: #053c41;
  text-align: left;
  background-color: #f0f1f3;
  border: 1px solid #0000001a;
  border-radius: 32px;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  padding: 2.2rem;
  display: flex;
}

.link-block-4 {
  color: #0aa970;
  align-self: flex-start;
}

.link-block-4:hover {
  color: var(--moss-800);
}

.section_benefits {
  background-color: #fff;
}

.section_hero-annual-reports {
  background-image: url('../images/Header-bg.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.grid-2-columns {
  grid-column-gap: 100px;
  grid-row-gap: 100px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.grid-2-columns._70 {
  width: 70%;
  margin-left: auto;
  margin-right: auto;
}

.grid-2-columns._70._3-columns {
  grid-template-columns: auto auto auto;
  width: auto;
  margin-left: auto;
  margin-right: auto;
}

.grid-2-columns.is-4 {
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.grid-2-columns.is-3 {
  grid-template-columns: 1fr 1fr 1fr;
}

.img-left-container {
  width: 100%;
  max-width: 100%;
  position: relative;
}

.img-hero-annual-reports {
  object-fit: cover;
  width: 100%;
  height: auto;
  display: inline-block;
  overflow: visible;
}

.img_component-hero {
  z-index: 1;
  object-fit: cover;
  height: 11.125rem;
  position: absolute;
  inset: -65px -65px auto auto;
  overflow: visible;
  box-shadow: 0 10px 40px #0003;
}

.is-green {
  color: #1b4b47;
  margin-bottom: 0;
  font-size: 20px;
  line-height: 27px;
}

.is-relative {
  height: auto;
  position: relative;
}

.img-required-information {
  object-fit: cover;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.image-8 {
  z-index: 1;
  border-radius: 24px;
  height: 5.375rem;
  position: absolute;
  inset: 43px auto auto 20px;
  box-shadow: 0 10px 40px #0003;
}

.image-9 {
  z-index: 1;
  height: 120px;
  position: absolute;
  inset: 77% 0% 0% 0;
}

.image-10 {
  z-index: 1;
  border-radius: 24px;
  width: 345px;
  height: 185px;
  position: absolute;
  inset: 36% -34px auto auto;
  box-shadow: 0 10px 40px #0003;
}

.is-white {
  color: var(--white);
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 400;
  line-height: 150%;
}

.is-white.text-size-small.is-opacity {
  opacity: .6;
}

.is-white.text-size-regular.bold-text {
  padding: .5rem 1rem;
}

.section_table.hidden {
  display: none;
}

.table_annual-report {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  background-color: #fff3;
  border: 1px solid #0000001a;
  border-radius: 12px;
  grid-template-rows: auto auto auto auto auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
  overflow: hidden;
}

.table_annual-report._5-columns {
  grid-template-columns: 1fr 1fr 1fr;
  width: 1000px;
}

.table_annual-report.hidden {
  display: none;
}

.table_annual-report.is-4-columns {
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.table_annual-report.is-4-columns.is-menor {
  max-width: 85%;
  margin-left: auto;
  margin-right: auto;
}

.top-cell {
  color: var(--white);
  text-align: left;
  background-color: #1b4b47;
  border-bottom: 1px #000;
  justify-content: flex-start;
  align-items: center;
  padding: 0 1rem 0 0;
  font-size: 1rem;
  display: flex;
}

.top-cell.border-left {
  border-top-left-radius: 20px;
  justify-content: flex-start;
  align-items: center;
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 2rem;
}

.top-cell.border-rigth {
  border-top-right-radius: 20px;
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 0;
}

.body-cell {
  color: var(--white);
  text-align: left;
  background-color: #fff;
  border-bottom: 1px solid #0000001a;
  border-radius: 0;
  justify-content: flex-start;
  align-items: center;
  padding: .5rem 1rem;
  font-size: 1rem;
  display: flex;
}

.body-cell.border-left-down {
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 10px;
}

.body-cell.border {
  border-bottom-left-radius: 20px;
}

.body-cell.border2 {
  border-bottom-right-radius: 20px;
}

.body-cell.border-rigth-down {
  border-bottom-right-radius: 10px;
}

.body-cell.border-left-down-2 {
  border-bottom-left-radius: 20px;
}

.div-block-20, .div-block-21 {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.section_filling-due-date {
  background-color: #f9fafb;
  overflow: visible;
}

.card-filling-deadlines {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  text-align: left;
  background-color: #fff;
  border: 1px solid #0000001a;
  border-radius: 20px;
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-start;
  padding: 1.25rem 1rem;
  display: flex;
}

.card-filling-deadlines.meio {
  justify-content: flex-start;
  align-items: flex-start;
}

.list-item {
  margin-bottom: 0;
}

.list-item._1rem {
  font-size: 1rem;
}

.icon-due-dates {
  width: 35px;
  min-width: 35px;
  height: 35px;
  min-height: 35px;
}

.head-cards {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.head-cards.vertical {
  text-align: center;
  flex-flow: column;
}

.head-cards.vertical.left {
  text-align: left;
  justify-content: flex-start;
  align-items: flex-start;
}

.icon-why-choose {
  width: 50px;
  height: 50px;
}

.section_green-reasons {
  background-color: var(--moss-1000);
  color: var(--white);
}

.div-block-22 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.div-block-22.hide {
  display: none;
}

.div-block-22.is-2-columns {
  grid-template-columns: 1fr 1fr;
}

.div-block-23 {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  background-color: var(--moss-50);
  text-align: left;
  border: 1px solid #0000001a;
  border-radius: 20px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 1.25rem;
  display: flex;
}

.div-who-must-file {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.div-block-22-4-columns {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.section_requirements {
  background-color: var(--moss-1000);
  color: var(--white);
}

.grid-3-columns {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.grid-3-columns.is-horizontal {
  grid-template-rows: auto auto auto;
}

.embed-ico {
  max-width: 50px;
  max-height: 50px;
}

.div-block-24 {
  flex: auto;
}

.container-4 {
  width: 100%;
  max-width: 100%;
  height: 100vh;
}

.text-block-9 {
  color: #042c2f;
  font-family: DM Sans, sans-serif;
  font-size: 32px;
  line-height: 31.2px;
}

.text-block-10 {
  color: #1b4b47;
  font-family: DM Sans, sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 27px;
}

.text-block-11 {
  font-family: DM Sans, sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 27px;
}

.heading-9 {
  text-align: center;
  font-size: 45px;
}

.text-block-12 {
  text-align: center;
  padding-bottom: 20px;
  font-family: DM Sans, sans-serif;
  font-size: 20px;
  font-weight: 300;
}

.text-block-13 {
  text-align: center;
  padding-top: 20px;
  font-family: DM Sans, sans-serif;
  font-size: 20px;
  font-weight: 300;
}

.div-block-25 {
  text-align: left;
  justify-content: center;
  align-items: center;
  display: flex;
}

.section-5 {
  background-color: #cdc2c2;
  margin-bottom: 16px;
  margin-left: auto;
  margin-right: auto;
  padding: 24px;
}

.frame-1618871122 {
  grid-row-gap: 24px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  text-decoration: none;
  display: flex;
}

.text {
  color: #1b4b47;
  width: 100%;
  margin-top: 0;
  margin-bottom: 0;
  font-family: DM Sans, sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
  text-decoration: none;
}

.content-style {
  grid-row-gap: 24px;
  border: 1px solid #0000001a;
  border-radius: 20px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  max-width: 614px;
  padding: 20px;
  text-decoration: none;
  display: flex;
}

.text-2 {
  color: #1b4b47;
  width: 100%;
  margin-top: 0;
  margin-bottom: 0;
  font-family: DM Sans, sans-serif;
  font-size: 45px;
  font-weight: 400;
  line-height: 120%;
  text-decoration: none;
}

.text-3, .applies-to-most-entities-operating-in-alabama-annual-deadline-april-15th-annual-fee-noted-in-the-fil {
  color: #1b4b47;
  width: 100%;
  margin-top: 0;
  margin-bottom: 0;
  font-family: DM Sans, sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 28px;
  text-decoration: none;
}

.sec-3 {
  grid-row-gap: 80px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  max-width: 100%;
  padding: 56px 80px;
  text-decoration: none;
  display: flex;
  overflow: hidden;
}

.frame-1618871127 {
  grid-row-gap: 24px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  text-decoration: none;
  display: flex;
}

.text-4 {
  color: #1b4b47;
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
  font-family: DM Sans, sans-serif;
  font-size: 45px;
  font-weight: 400;
  line-height: 120%;
  text-decoration: none;
}

.text-5 {
  color: #1b4b47;
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
  text-decoration: none;
}

.row {
  grid-column-gap: 32px;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  height: auto;
  display: flex;
}

.content-style-2 {
  background-color: #f8f9fa;
  border: 1px solid #0000001a;
  border-radius: 20px;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
  height: 710px;
  padding: 20px;
  display: flex;
}

.frame-1618871132 {
  grid-row-gap: 24px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  text-decoration: none;
  display: flex;
}

.background {
  grid-row-gap: 10px;
  background-color: #baeeda;
  border-radius: 32px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 64px;
  height: 64px;
  padding: 16px 9px;
  text-decoration: none;
  display: flex;
}

.text-6 {
  color: #1b4b47;
  margin-top: 0;
  margin-bottom: 0;
  font-family: DM Sans, sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
  text-decoration: none;
}

.frame-1618871129 {
  grid-row-gap: 16px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  text-decoration: none;
  display: flex;
}

.text-7 {
  color: #1b4b47;
  width: 100%;
  margin-top: 0;
  margin-bottom: 0;
  font-family: DM Sans, sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 28px;
  text-decoration: none;
}

.who-files-most-entities-with-alabama-operations-when-april-15th-each-year-how-file-with-the-alabama {
  color: #1b4b47;
  width: 100%;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
  text-decoration: none;
}

.content-style-3 {
  grid-row-gap: 24px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  text-decoration: none;
  display: flex;
}

.text-8 {
  color: #1b4b47;
  width: 100%;
  margin-top: 0;
  margin-bottom: 0;
  font-family: DM Sans, sans-serif;
  font-size: 45px;
  font-weight: 400;
  line-height: 120%;
  text-decoration: none;
}

.text-9 {
  color: #1b4b47;
  width: 100%;
  margin-top: 0;
  margin-bottom: 0;
  font-family: DM Sans, sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 28px;
  text-decoration: none;
}

.frame-1618871133 {
  grid-row-gap: 16px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  text-decoration: none;
  display: flex;
}

.text-10 {
  color: #1b4b47;
  width: 100%;
  margin-top: 0;
  margin-bottom: 0;
  font-family: DM Sans, sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
  text-decoration: none;
}

.content-style-4 {
  grid-row-gap: 24px;
  background-color: #f8f9fa;
  border: 1px solid #0000001a;
  border-radius: 20px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  max-width: 614px;
  padding: 20px;
  text-decoration: none;
  display: flex;
}

.frame-1618871125 {
  grid-row-gap: 24px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  text-decoration: none;
  display: flex;
}

.text-11 {
  color: #1b4b47;
  width: 100%;
  margin-top: 0;
  margin-bottom: 0;
  font-family: DM Sans, sans-serif;
  font-size: 45px;
  font-weight: 400;
  line-height: 120%;
  text-decoration: none;
}

.text-12 {
  color: #1b4b47;
  width: 100%;
  margin-top: 0;
  margin-bottom: 0;
  font-family: DM Sans, sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 28px;
  text-decoration: none;
}

.text-13 {
  color: #1b4b47;
  width: 100%;
  margin-top: 0;
  margin-bottom: 0;
  font-family: DM Sans, sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
  text-decoration: none;
}

.content-style-5 {
  grid-row-gap: 24px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  max-width: 584px;
  text-decoration: none;
  display: flex;
}

.text-14 {
  color: #1b4b47;
  width: 100%;
  margin-top: 0;
  margin-bottom: 0;
  font-family: DM Sans, sans-serif;
  font-size: 45px;
  font-weight: 400;
  line-height: 120%;
  text-decoration: none;
}

.text-15 {
  color: #1b4b47;
  width: 100%;
  margin-top: 0;
  margin-bottom: 0;
  font-family: DM Sans, sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 28px;
  text-decoration: none;
}

.frame-1618871134 {
  grid-row-gap: 16px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  text-decoration: none;
  display: flex;
}

.text-16 {
  color: #1b4b47;
  width: 100%;
  margin-top: 0;
  margin-bottom: 0;
  font-family: DM Sans, sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
  text-decoration: none;
}

.file-the-business-privilege-tax-return-by-april-15th-keep-registered-agent-information-current-with {
  color: #1b4b47;
  width: 100%;
  margin-top: 0;
  margin-bottom: 0;
  font-family: DM Sans, sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 28px;
  text-decoration: none;
}

.list-item-2 {
  margin-bottom: 0;
  font-size: 20px;
  line-height: 140%;
}

.list-item-3, .list-item-4, .list-item-5, .list-item-6 {
  font-size: 20px;
  line-height: 140%;
}

.list-2 {
  width: 490px;
  max-width: 490px;
  line-height: 28px;
}

.text-span-11, .text-span-12, .text-span-13, .text-span-14 {
  font-weight: 600;
}

.text-span-15 {
  color: var(--moss-400);
}

.content-style-6 {
  grid-row-gap: 24px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  text-decoration: none;
  display: flex;
}

.text-17 {
  color: #1b4b47;
  width: 100%;
  margin-top: 0;
  margin-bottom: 24px;
  font-family: DM Sans, sans-serif;
  font-size: 45px;
  font-weight: 400;
  line-height: 120%;
  text-decoration: none;
}

.text-18 {
  color: #1b4b47;
  width: 100%;
  margin-top: 0;
  margin-bottom: 0;
  font-family: DM Sans, sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 28px;
  text-decoration: none;
}

.text-span-16 {
  color: var(--moss-400);
}

.frame-1618871135 {
  grid-row-gap: 24px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  text-decoration: none;
  display: flex;
}

.text-19 {
  color: #1b4b47;
  width: 100%;
  margin-top: 0;
  margin-bottom: 0;
  font-family: DM Sans, sans-serif;
  font-size: 45px;
  font-weight: 400;
  line-height: 120%;
  text-decoration: none;
}

.text-20 {
  color: #1b4b47;
  width: 100%;
  margin-top: 0;
  margin-bottom: 0;
  font-family: DM Sans, sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 28px;
  text-decoration: none;
}

.domestic-and-foreign-corporations-100-domestic-200-foreign-limited-liability-companies-llcs-100-dome {
  color: #1b4b47;
  width: 100%;
  margin-top: 0;
  margin-bottom: 24px;
  padding-left: 20px;
  font-family: DM Sans, sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 28px;
  text-decoration: none;
}

.text-span-21, .text-span-22, .text-span-23 {
  font-weight: 600;
}

.content-style-8 {
  grid-row-gap: 24px;
  background-color: #f8f9fa;
  border: 1px solid #0000001a;
  border-radius: 20px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  padding: 32px;
  text-decoration: none;
  display: flex;
}

.text-21 {
  color: #1b4b47;
  width: 100%;
  margin-top: 0;
  margin-bottom: 24px;
  font-family: DM Sans, sans-serif;
  font-size: 45px;
  font-weight: 400;
  line-height: 120%;
  text-decoration: none;
}

.entities-formed-in-even-years-file-in-even-years-eg-2024-2026-2028-entities-formed-in-odd-years-file {
  color: #1b4b47;
  width: 100%;
  margin-top: 0;
  margin-bottom: 24px;
  padding-left: 20px;
  font-family: DM Sans, sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 28px;
  text-decoration: none;
}

.text-22 {
  color: #1b4b47;
  width: 100%;
  margin-top: 0;
  margin-bottom: 0;
  font-family: DM Sans, sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 28px;
  text-decoration: none;
}

.text-span-24, .text-span-25, .text-span-26, .text-span-27, .text-span-28, .text-span-29 {
  font-weight: 600;
}

.content-style-9 {
  grid-row-gap: 24px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  text-decoration: none;
  display: flex;
}

.legal-entity-name-and-alaska-entity-identification-number-principal-office-address-and-registered-ag {
  color: #1b4b47;
  width: 100%;
  margin-top: 0;
  margin-bottom: 24px;
  font-family: DM Sans, sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 28px;
  text-decoration: none;
}

.determine-your-schedule-confirm-whether-youre-on-an-even-year-or-odd-year-cycle-gather-information-c {
  color: #1b4b47;
  width: 100%;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
  text-decoration: none;
}

.text-span-30 {
  font-family: DM Sans, sans-serif;
  font-weight: 600;
}

.text-block-14 {
  color: #1b4b47;
  font-family: DM Sans, sans-serif;
  font-size: 20px;
  font-weight: 300;
}

.text-span-31, .text-span-32, .text-span-33, .text-span-34, .text-span-35, .text-span-36, .text-span-37 {
  font-weight: 600;
}

.content-style-14 {
  grid-row-gap: 24px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  text-decoration: none;
  display: flex;
}

.text-25 {
  color: #1b4b47;
  width: 100%;
  margin-top: 0;
  margin-bottom: 24px;
  font-family: DM Sans, sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 28px;
  text-decoration: none;
}

.text-26 {
  color: #1b4b47;
  width: 100%;
  margin-top: 0;
  margin-bottom: 0;
  font-family: DM Sans, sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
  text-decoration: none;
}

.file-all-delinquent-biennial-reports-pay-all-outstanding-fees-and-penalties-complete-the-formal-rein {
  color: #1b4b47;
  width: 100%;
  margin-top: 0;
  margin-bottom: 0;
  font-family: DM Sans, sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 28px;
  text-decoration: none;
}

.text-span-38, .text-span-39 {
  font-weight: 600;
}

.background-2 {
  grid-row-gap: 40px;
  background-color: #fff;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 60px 320px;
  text-decoration: none;
  display: flex;
}

.heading-3-gather-your-information {
  color: #1b4b47;
  text-align: center;
  margin-top: 80px;
  margin-bottom: 112px;
  font-family: DM Sans, sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 28.8px;
  text-decoration: none;
}

.content-style-16 {
  grid-row-gap: 24px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  text-decoration: none;
  display: flex;
}

.text-27 {
  color: #1b4b47;
  width: 100%;
  margin-top: 0;
  margin-bottom: 0;
  font-family: DM Sans, sans-serif;
  font-size: 45px;
  font-weight: 400;
  line-height: 120%;
  text-decoration: none;
}

.text-28, .biennial-filing-schedule-tracking-and-reminders-complete-report-preparation-and-submission-registere {
  color: #1b4b47;
  width: 100%;
  margin-top: 0;
  margin-bottom: 0;
  font-family: DM Sans, sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 28px;
  text-decoration: none;
}

.text-span-40, .text-span-41, .text-span-42, .text-span-43, .text-span-44 {
  font-weight: 600;
}

.text-span-45, .text-span-46 {
  color: var(--moss-400);
}

.content-style-18 {
  grid-row-gap: 24px;
  background-color: #f8f9fa;
  border: 1px solid #0000001a;
  border-radius: 20px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  padding: 20px;
  text-decoration: none;
  display: flex;
}

.text-span-47 {
  color: #1b4b47;
  font-family: DM Sans, sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 28px;
}

.text-span-50 {
  font-weight: 600;
}

.content-style-19 {
  grid-row-gap: 24px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  text-decoration: none;
  display: flex;
}

.llcs-domestic-foreign-professional-series-do-not-file-annual-reports-in-arizona-they-still-need-a-re {
  color: #1b4b47;
  width: 100%;
  margin-top: 0;
  margin-bottom: 0;
  font-family: DM Sans, sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 28px;
  text-decoration: none;
}

.text-span-53, .text-span-54, .text-span-55, .text-span-56, .text-span-57 {
  font-weight: 300;
}

.text-span-60, .text-span-61, .text-span-62, .text-span-63, .text-span-64 {
  font-weight: 600;
}

.text-block-16 {
  margin-top: 24px;
  padding-top: 0;
  font-family: DM Sans, sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
}

.text-35 {
  color: #1b4b47;
  width: 100%;
  margin-top: 24px;
  margin-bottom: 24px;
  font-family: DM Sans, sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 28px;
  text-decoration: none;
}

.text-span-73, .text-span-74, .text-span-75, .text-span-76 {
  font-weight: 600;
}

.frame-2131329756 {
  grid-row-gap: 16px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  text-decoration: none;
  display: flex;
}

.text-39 {
  color: #1b4b47;
  width: 100%;
  margin-top: 0;
  margin-bottom: 0;
  font-family: DM Sans, sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 28px;
  text-decoration: none;
}

.text-span-77, .text-span-78 {
  color: var(--moss-400);
}

.text-span-79, .text-span-80, .text-span-81, .text-span-82, .text-span-83, .text-span-84, .text-span-85, .text-span-86, .text-span-87, .text-span-88, .text-span-89 {
  font-weight: 600;
}

.content-style-21 {
  grid-row-gap: 24px;
  border: 1px #0000001a;
  border-radius: 20px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  padding: 20px;
  text-decoration: none;
  display: flex;
}

.text-span-95, .text-span-96, .text-span-97, .text-span-98, .text-span-99 {
  font-weight: 700;
}

.content-style-22 {
  grid-row-gap: 24px;
  outline-offset: 0px;
  background-color: #f8f9fa;
  border: 1px solid #0000001a;
  border-radius: 20px;
  outline: 3px #333;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  max-width: 627px;
  padding: 32px;
  text-decoration: none;
  display: flex;
}

.text-50 {
  color: #1b4b47;
  width: 100%;
  margin-top: 0;
  margin-bottom: 24px;
  padding-left: 0;
  font-family: DM Sans, sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 28px;
  text-decoration: none;
}

.content-style-24 {
  grid-row-gap: 24px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  max-width: 585px;
  padding-top: 0;
  text-decoration: none;
  display: flex;
}

.text-span-100 {
  color: var(--moss-400);
}

.bold-text-4, .bold-text-5, .bold-text-6, .bold-text-7, .bold-text-8, .bold-text-9, .bold-text-10, .bold-text-11, .bold-text-12, .bold-text-13 {
  font-weight: 600;
}

.text-span-102 {
  color: var(--moss-400);
}

.text-span-104, .text-span-105 {
  font-weight: 600;
}

.text-block-18 {
  text-align: center;
  margin-bottom: 0;
  padding-top: 60px;
  padding-bottom: 0;
  font-family: DM Sans, sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 28px;
}

.text-span-106, .text-span-107 {
  font-weight: 600;
}

.text-span-108, .text-span-109 {
  color: var(--moss-400);
}

.text-span-127, .text-span-128, .text-span-129, .text-span-130, .text-span-131, .text-span-132, .text-span-133, .text-span-134 {
  font-weight: 600;
}

.div-block-26 {
  grid-column-gap: 200px;
  grid-row-gap: 200px;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  margin-left: 0;
  padding-left: 55px;
  display: flex;
}

.heading-10 {
  text-align: left;
  margin-top: 0;
  margin-bottom: 16px;
  font-size: 24px;
  font-weight: 500;
}

.heading-11 {
  text-align: left;
  margin-top: 0;
  margin-bottom: 16px;
  margin-right: 0;
  font-size: 24px;
  font-weight: 500;
}

.text-block-22, .text-block-23, .text-block-24 {
  color: var(--text--secondary);
  text-align: left;
  font-family: DM Sans, sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 24px;
}

.text-span-135 {
  color: var(--text--secondary);
  font-weight: 600;
}

.text-span-136, .text-span-137, .text-span-138, .text-span-139, .text-span-140 {
  font-weight: 600;
}

.text-span-141, .text-span-142 {
  color: var(--moss-400);
}

.text-span-143, .text-span-144, .text-span-145, .text-span-146, .text-span-147, .text-span-148, .text-span-149, .text-span-150, .text-span-151, .text-span-152, .text-span-153, .text-span-154, .text-span-155, .text-span-156, .text-span-157, .text-span-158, .text-span-159, .text-span-160, .text-span-161, .text-span-162, .text-span-163, .text-span-164 {
  font-weight: 600;
}

.text-span-165 {
  color: #0aa970;
  text-decoration: underline;
}

.text-span-166, .text-span-167, .text-span-168, .text-span-169, .bold-text-43, .bold-text-44, .bold-text-45, .bold-text-46, .bold-text-47 {
  font-weight: 600;
}

.bold-text-48 {
  font-weight: 300;
}

.bold-text-49, .bold-text-50, .bold-text-51, .bold-text-52 {
  font-weight: 600;
}

.text-span-170, .text-span-171 {
  color: var(--moss-400);
}

.content-style-29 {
  grid-row-gap: 24px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  max-width: 585px;
  text-decoration: none;
  display: flex;
}

.frame-2131329760 {
  grid-row-gap: 24px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  text-decoration: none;
  display: flex;
}

.text-span-195, .text-span-196, .text-span-197, .text-span-198, .text-span-203, .text-span-204, .text-span-205 {
  font-weight: 600;
}

.list-item-7 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 140%;
}

.list-3 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  color: #1b4b47;
  flex-flow: column;
  width: 100%;
  margin-bottom: 0;
  padding-top: 0;
  font-family: DM Sans, sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 28px;
  display: flex;
}

.text-span-206, .text-span-207, .text-span-208, .text-span-209 {
  font-weight: 600;
}

.content-style-31 {
  grid-row-gap: 24px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  max-width: 585px;
  text-decoration: none;
  display: flex;
}

.text-span-210 {
  color: var(--moss-400);
}

.text-span-211, .text-span-212, .text-span-213, .text-span-214 {
  font-weight: 600;
}

.text-span-215 {
  color: var(--moss-400);
}

.z, .text-span-218 {
  font-weight: 300;
}

.text-span-221, .text-span-222, .text-span-223, .text-span-224, .text-span-226, .text-span-227, .text-span-228, .text-span-229, .text-span-230, .text-span-231, .text-span-232, .text-span-233, .text-span-234, .text-span-235, .text-span-236, .text-span-237, .text-span-238, .text-span-239, .text-span-240 {
  font-weight: 600;
}

.sec-19 {
  grid-column-gap: 80px;
  background-color: #fff;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  max-width: 100%;
  padding: 56px 80px 112px;
  text-decoration: none;
  display: flex;
  overflow: hidden;
}

.frame-1618871087 {
  grid-row-gap: 80px;
  text-align: center;
  background-color: #f9fafc;
  border: 1px solid #0000001a;
  border-radius: 56px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 100%;
  height: 462px;
  padding: 40px;
  text-decoration: none;
  display: flex;
}

.text-63 {
  color: #042c2f;
  text-align: center;
  letter-spacing: -.6px;
  margin-top: 0;
  margin-bottom: 0;
  font-family: DM Sans, sans-serif;
  font-size: 45px;
  font-weight: 400;
  line-height: 130%;
  text-decoration: none;
}

.row-2 {
  grid-column-gap: 16px;
  justify-content: center;
  align-items: center;
  width: 100%;
  text-decoration: none;
  display: flex;
}

.column {
  grid-row-gap: 32px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 232px;
  text-decoration: none;
  display: flex;
  overflow: hidden;
}

.icon-real-time {
  grid-column-gap: 10px;
  object-fit: cover;
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  width: 50px;
  padding: 10px;
  text-decoration: none;
  display: flex;
}

.text-64 {
  color: #042c2f;
  text-align: center;
  width: 100%;
  margin-top: 0;
  margin-bottom: 0;
  font-family: DM Sans, sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 140%;
  text-decoration: none;
}

.text-65 {
  color: #1b4b47;
  text-align: center;
  width: 100%;
  margin-top: 0;
  margin-bottom: 0;
  font-family: DM Sans, sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 28px;
  text-decoration: none;
}

.text-66 {
  color: #042c2f;
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
  font-family: DM Sans, sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 140%;
  text-decoration: none;
}

.column-2 {
  grid-row-gap: 32px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  text-decoration: none;
  display: flex;
  overflow: hidden;
}

.text-span-241, .text-span-242 {
  color: var(--moss-400);
}

.text-span-243, .bold-text-53, .bold-text-54, .bold-text-55, .bold-text-56, .bold-text-57 {
  font-weight: 600;
}

.text-span-244 {
  color: var(--moss-400);
}

.div-block-27 {
  border: 1px solid #0000001a;
  border-radius: 20px;
  padding: 20px;
}

.text-span-245, .text-span-246 {
  font-weight: 600;
}

.div-block-28 {
  border: 1px solid #00000003;
  border-radius: 20px;
}

.text-span-247, .text-span-248, .text-span-249 {
  font-weight: 300;
}

.div-block-29, .div-block-30 {
  background-color: #f8f9fa;
  border: 1px solid #0000001a;
  border-radius: 20px;
  padding: 20px;
}

.list-item-16, .list-item-17, .list-item-18, .list-item-19, .list-item-20 {
  font-size: 20px;
}

.text-span-250, .text-span-251, .text-span-252, .text-span-253, .text-span-254, .text-span-255, .text-span-256, .text-span-257 {
  font-weight: 600;
}

.text-block-43 {
  color: #1b4b47;
  margin-bottom: 24px;
  font-family: DM Sans, sans-serif;
  font-size: 45px;
  line-height: 54px;
}

.text-span-258, .text-span-259 {
  font-weight: 600;
}

.text-block-45 {
  color: #1b4b47;
  font-family: DM Sans, sans-serif;
  font-size: 20px;
  font-weight: 600;
}

.text-block-46 {
  color: #1b4b47;
  margin-top: 24px;
  padding-top: 0;
  font-family: DM Sans, sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 28px;
}

.text-span-260, .text-span-261, .text-span-262 {
  font-weight: 600;
}

.text-block-47 {
  color: #1b4b47;
  padding-bottom: 24px;
  font-family: DM Sans, sans-serif;
  font-size: 45px;
  line-height: 54px;
}

.text-block-48 {
  color: #1b4b47;
  font-family: DM Sans, sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 28px;
}

.text-block-49 {
  color: #1b4b47;
  font-family: DM Sans, sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
}

.text-block-50 {
  color: #1b4b47;
  font-family: DM Sans, sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 28px;
}

.text-span-263, .text-span-264, .text-span-265, .text-span-266, .text-span-267, .text-span-269, .text-span-270, .text-span-271, .text-span-272 {
  font-weight: 600;
}

.heading-14 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 45px;
  font-weight: 400;
  line-height: 54px;
}

.text-block-52 {
  color: #1b4b47;
  font-family: DM Sans, sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 28px;
}

.text-block-53 {
  color: #042c2f;
  font-family: DM Sans, sans-serif;
  font-size: 32px;
  line-height: 28px;
}

.text-span-273 {
  font-weight: 500;
}

.text-span-274 {
  font-weight: 600;
}

.text-block-54 {
  color: #1b4b47;
  font-family: DM Sans, sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 28px;
}

.paragraph-2, .paragraph-3 {
  color: var(--moss-1000);
  font-size: 18px;
  line-height: 27px;
}

.paragraph-4 {
  color: var(--moss-1000);
}

.paragraph-5, .paragraph-6 {
  color: var(--moss-1000);
  font-size: 18px;
}

.text-block-57 {
  color: #1b4b47;
  padding-bottom: 24px;
  font-family: DM Sans, sans-serif;
  font-size: 45px;
  font-weight: 400;
  line-height: 54px;
}

.text-span-275, .text-span-276 {
  font-weight: 600;
}

.text-block-58 {
  color: #042c2f;
  margin-top: 24px;
  margin-bottom: 24px;
  font-family: DM Sans, sans-serif;
  font-size: 32px;
  line-height: 130%;
}

.text-block-59 {
  color: #1b4b47;
  font-family: DM Sans, sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 28px;
}

.text-block-60 {
  color: #1b4b47;
  margin-top: 24px;
  margin-bottom: 24px;
  font-family: DM Sans, sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
}

.text-block-61 {
  color: #1b4b47;
  font-family: DM Sans, sans-serif;
  font-size: 18px;
  line-height: 28px;
}

.text-block-62 {
  color: #1b4b47;
  font-family: DM Sans, sans-serif;
  font-size: 45px;
  font-weight: 400;
  line-height: 54px;
}

.text-span-277, .text-span-278, .text-span-279, .text-span-280, .text-span-281, .text-span-282 {
  font-weight: 600;
}

.text-block-63 {
  color: #1b4b47;
  font-family: DM Sans, sans-serif;
  font-size: 32px;
  line-height: 130%;
}

.text-block-64 {
  color: #1b4b47;
  font-family: DM Sans, sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 28px;
}

.text-block-65 {
  color: #1b4b47;
  font-family: DM Sans, sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
}

.text-block-66 {
  color: #1b4b47;
  font-family: DM Sans, sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 26px;
}

.text-block-67 {
  color: #1b4b47;
  font-family: DM Sans, sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 28px;
}

.list-item-21, .list-item-22, .list-item-23, .list-item-24, .list-item-25 {
  line-height: 140%;
}

._1 {
  object-fit: cover;
}

.text-block-68 {
  color: #1b4b47;
  margin-bottom: 24px;
  font-family: DM Sans, sans-serif;
  font-size: 45px;
  line-height: 120%;
}

.text-block-69 {
  color: #1b4b47;
  font-family: DM Sans, sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 140%;
}

.text-block-71 {
  color: #1b4b47;
  margin-top: 24px;
  margin-bottom: 24px;
  font-family: DM Sans, sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 140%;
}

.text-block-72 {
  color: #1b4b47;
  font-family: DM Sans, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
}

.text-span-283 {
  font-weight: 600;
}

.text-block-73 {
  color: #1b4b47;
  font-family: DM Sans, sans-serif;
  font-size: 45px;
  line-height: 120%;
}

.text-block-74 {
  color: #1b4b47;
  margin-top: 24px;
  font-family: DM Sans, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 140%;
}

.text-block-75 {
  color: #1b4b47;
  margin-bottom: 24px;
  font-family: DM Sans, sans-serif;
  font-size: 18px;
  line-height: 27px;
}

.text-block-76 {
  color: #1b4b47;
  margin-top: 24px;
  margin-bottom: 24px;
  font-family: DM Sans, sans-serif;
  font-size: 20px;
  font-weight: 600;
}

.text-block-77 {
  color: #1b4b47;
  margin-bottom: 24px;
  font-family: DM Sans, sans-serif;
  font-size: 45px;
  line-height: 120%;
}

.text-block-78 {
  color: #1b4b47;
  margin-top: 0;
  margin-bottom: 24px;
  font-family: DM Sans, sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 140%;
}

.text-block-79 {
  color: #1b4b47;
  font-family: DM Sans, sans-serif;
  font-size: 18px;
  line-height: 150%;
}

.text-block-80 {
  color: #1b4b47;
  margin-top: 0;
  margin-bottom: 24px;
  font-family: DM Sans, sans-serif;
  font-size: 20px;
  font-weight: 600;
}

.text-block-81 {
  color: #1b4b47;
  margin-top: 24px;
  font-family: DM Sans, sans-serif;
  font-size: 20px;
  font-weight: 300;
}

.text-block-82 {
  color: #1b4b47;
  font-family: DM Sans, sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 140%;
}

.text-block-84 {
  color: #1b4b47;
  margin-bottom: 24px;
  font-family: DM Sans, sans-serif;
  font-size: 45px;
  line-height: 120%;
}

.text-block-85 {
  color: #1b4b47;
  margin-bottom: 24px;
  font-family: DM Sans, sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 140%;
}

.text-block-86 {
  color: #1b4b47;
  margin-bottom: 24px;
  font-family: DM Sans, sans-serif;
  font-size: 20px;
  font-weight: 600;
}

.text-block-87 {
  color: #1b4b47;
  margin-bottom: 24px;
  font-family: DM Sans, sans-serif;
  font-size: 20px;
  line-height: 140%;
}

.text-block-88 {
  color: #1b4b47;
  margin-bottom: 24px;
  font-family: DM Sans, sans-serif;
  font-size: 18px;
  line-height: 28px;
}

.text-block-89 {
  color: #1b4b47;
  margin-bottom: 24px;
  font-family: DM Sans, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
}

.text-span-284, .text-span-285, .text-span-286, .text-span-287, .text-span-288, .text-span-289, .text-span-290, .text-span-291 {
  font-weight: 600;
}

.text-block-90 {
  color: #1b4b47;
  margin-bottom: 24px;
  font-family: DM Sans, sans-serif;
  font-size: 32px;
  line-height: 120%;
}

.text-span-292, .text-span-293, .text-span-294, .text-span-295, .text-span-296, .text-span-297 {
  font-weight: 600;
}

.text-block-91 {
  color: #1b4b47;
  margin-bottom: 24px;
  font-family: DM Sans, sans-serif;
  font-size: 20px;
  line-height: 28px;
}

.text-block-92 {
  color: #1b4b47;
  font-family: DM Sans, sans-serif;
  font-size: 20px;
  font-weight: 600;
}

.text-block-93 {
  color: #1b4b47;
  margin-bottom: 24px;
  font-family: DM Sans, sans-serif;
  font-size: 45px;
  line-height: 120%;
}

.text-block-94 {
  color: #1b4b47;
  margin-bottom: 24px;
  font-family: DM Sans, sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 28px;
}

.text-block-95 {
  color: #1b4b47;
  margin-bottom: 24px;
  font-family: DM Sans, sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
}

.text-block-96 {
  color: #1b4b47;
  margin-bottom: 24px;
  font-family: DM Sans, sans-serif;
  font-size: 18px;
  line-height: 28px;
}

.text-span-298, .text-span-299, .text-span-300, .text-span-301 {
  font-weight: 600;
}

.text-span-302 {
  color: var(--moss-1000);
  font-weight: 600;
}

.text-span-303, .text-span-304 {
  font-weight: 600;
}

.text-block-97 {
  color: #1b4b47;
  margin-bottom: 24px;
  font-family: DM Sans, sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 28px;
}

.text-block-98 {
  color: #1b4b47;
  margin-bottom: 24px;
  font-family: DM Sans, sans-serif;
  font-size: 32px;
  line-height: 28px;
}

.text-block-99 {
  color: #1b4b47;
  margin-bottom: 24px;
  font-family: DM Sans, sans-serif;
  font-size: 45px;
  line-height: 54px;
}

.text-block-100 {
  color: #1b4b47;
  margin-bottom: 24px;
  font-family: DM Sans, sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 28px;
}

.text-block-101 {
  color: #1b4b47;
  margin-bottom: 24px;
  font-family: DM Sans, sans-serif;
  font-size: 32px;
  font-weight: 500;
  line-height: 28px;
}

.text-block-102 {
  color: #042c2f;
  margin-bottom: 24px;
  font-family: DM Sans, sans-serif;
  font-size: 32px;
  line-height: 28px;
}

.text-block-103 {
  color: #1b4b47;
  font-family: DM Sans, sans-serif;
  font-size: 32px;
  line-height: 120%;
}

.text-block-104 {
  color: #1b4b47;
  margin-bottom: 24px;
  font-family: DM Sans, sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
}

.text-block-106 {
  color: #1b4b47;
  margin-bottom: 24px;
  font-family: DM Sans, sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 140%;
}

.text-block-107 {
  color: #1b4b47;
  margin-bottom: 24px;
  font-family: DM Sans, sans-serif;
  font-size: 20px;
  font-weight: 600;
}

.text-block-108 {
  color: #1b4b47;
  margin-bottom: 24px;
  font-family: DM Sans, sans-serif;
  font-size: 45px;
  line-height: 120%;
}

.text-block-109 {
  color: #1b4b47;
  margin-bottom: 24px;
  font-family: DM Sans, sans-serif;
  font-size: 45px;
  font-weight: 400;
  line-height: 120%;
}

.text-block-110 {
  color: #1b4b47;
  margin-bottom: 24px;
  font-family: DM Sans, sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 140%;
}

.list-6 {
  font-family: DM Sans, sans-serif;
  font-size: 20px;
}

.list-item-29 {
  font-size: 20px;
}

.text-span-307, .text-span-308, .text-span-309, .text-span-310, .text-span-312, .text-span-313, .text-span-314, .text-span-315, .text-span-316, .text-span-317, .text-span-318, .text-span-319, .text-span-320, .text-span-321, .text-span-322, .text-span-323, .text-span-324, .text-span-325, .text-span-326, .text-span-327, .text-span-328, .text-span-329 {
  font-weight: 600;
}

.div-block-34 {
  background-color: #f8f9fa;
  border: 1px solid #0000001a;
  border-radius: 20px;
  padding: 32px;
}

.text-block-112 {
  color: #1b4b47;
  margin-bottom: 24px;
  font-family: DM Sans, sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 140%;
}

.text-block-113 {
  color: #1b4b47;
  margin-bottom: 24px;
  font-family: DM Sans, sans-serif;
  font-size: 45px;
  line-height: 120%;
}

.text-block-114 {
  color: #1b4b47;
  margin-bottom: 24px;
  font-family: DM Sans, sans-serif;
  font-size: 20px;
  font-weight: 600;
}

.list-item-30 {
  font-size: 20px;
}

.text-span-331, .text-span-332 {
  font-weight: 600;
}

.text-block-115 {
  margin-top: 60px;
  font-family: DM Sans, sans-serif;
  font-size: 20px;
  font-weight: 300;
}

.text-span-333, .text-span-334, .text-span-335, .text-span-336, .text-span-337 {
  font-weight: 600;
}

.list-7, .list-8, .list-9, .list-10, .list-11, .list-12 {
  margin-bottom: 24px;
}

.text-block-116 {
  color: #1b4b47;
  margin-bottom: 24px;
  font-family: DM Sans, sans-serif;
  font-size: 45px;
  line-height: 54px;
}

.text-block-117, .list-13 {
  color: #1b4b47;
  margin-bottom: 24px;
  font-family: DM Sans, sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 28px;
}

.list-item-31, .list-item-32, .list-item-33, .list-item-34 {
  font-size: 20px;
}

.text-block-118 {
  color: #1b4b47;
  margin-bottom: 24px;
  font-family: DM Sans, sans-serif;
  font-size: 32px;
  line-height: 28px;
}

.text-block-119 {
  color: #1b4b47;
  margin-bottom: 24px;
  font-family: DM Sans, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 27px;
}

.list-14 {
  color: #1b4b47;
  margin-bottom: 24px;
  font-family: DM Sans, sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 27px;
}

.text-span-338 {
  font-size: 18px;
}

.text-span-339, .bold-text-58, .bold-text-59, .bold-text-60, .bold-text-61, .bold-text-62 {
  font-weight: 600;
}

.text-span-340 {
  color: var(--moss-400);
}

.text-block-120 {
  color: #fff;
  font-family: DM Sans, sans-serif;
  font-size: 18px;
  line-height: 27px;
}

.text-block-121 {
  color: #1b4b47;
  margin-bottom: 24px;
  font-family: DM Sans, sans-serif;
  font-size: 47px;
  line-height: 120%;
}

.text-block-122 {
  color: #1b4b47;
  margin-bottom: 24px;
  font-family: DM Sans, sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 140%;
}

.text-block-125 {
  color: #1b4b47;
  margin-bottom: 24px;
  font-family: DM Sans, sans-serif;
  font-size: 18px;
  line-height: 140%;
}

.div-block-35 {
  justify-content: center;
  align-items: center;
  display: flex;
}

.text-span-341 {
  font-weight: 600;
}

.list-item-35 {
  font-size: 20px;
}

.text-span-342, .text-span-343, .text-span-344, .text-span-345 {
  font-weight: 600;
}

.text-83 {
  color: #1b4b47;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 400;
  line-height: 150%;
  text-decoration: none;
}

.frame-2131329770 {
  grid-row-gap: 24px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  text-decoration: none;
  display: flex;
}

.entity-id-legal-name-on-file-with-kansas-principal-office-street-address-registered-agent-name-and {
  color: #1b4b47;
  width: 100%;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
  text-decoration: none;
}

.frame-2131329745 {
  grid-row-gap: 24px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  text-decoration: none;
  display: flex;
}

.delinquent-immediately-after-the-deadline-you-cannot-file-other-documents-until-cured-three-months-l {
  color: #1b4b47;
  width: 100%;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
  text-decoration: none;
}

.content-style-48 {
  grid-row-gap: 24px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  text-decoration: none;
  display: flex;
}

.wrong-filing-year-even-vs-odd-note-your-formationauthorization-year-and-calendar-it-mixing-deadlines {
  color: #1b4b47;
  width: 100%;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
  text-decoration: none;
}

.text-block-126 {
  color: #1b4b47;
  margin-bottom: 24px;
  font-family: DM Sans, sans-serif;
  font-size: 18px;
  font-weight: 600;
}

.text-block-127 {
  font-family: DM Sans, sans-serif;
  font-weight: 400;
}

.span, .text-span-346 {
  font-weight: 600;
}

.list-15 {
  margin-bottom: 24px;
}

.text-span-347, .text-span-348, .text-span-349, .text-span-350 {
  font-weight: 600;
}

.list-item-36, .list-item-37, .list-item-38, .list-item-39, .list-item-40, .list-item-41, .list-item-42 {
  font-size: 20px;
}

.text-span-351, .text-span-352, .text-span-353, .text-span-354, .text-span-355, .text-span-356, .text-span-357, .text-span-358, .text-span-359, .text-span-360, .text-span-361, .text-span-362, .text-span-363, .text-span-364, .text-span-365, .text-span-366, .text-span-367, .text-span-368, .text-span-369 {
  font-weight: 600;
}

.text-span-370 {
  color: var(--moss-400);
}

.bold-text-63 {
  font-family: DM Sans, sans-serif;
  font-weight: 600;
}

.div-block-36 {
  border: 1px solid #0000001a;
  border-radius: 20px;
  padding: 32px;
}

.div-block-37 {
  background-color: #f8f9fa;
  border: 1px solid #0000001a;
  border-radius: 20px;
  padding: 32px;
}

.due-date-june-30th-every-year-window-january-1st-to-june-30th-first-filing-due-the-calendar-year-aft {
  color: #1b4b47;
  width: 100%;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
  text-decoration: none;
}

.text-100 {
  color: #1b4b47;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 400;
  line-height: 150%;
  text-decoration: none;
}

.frame-2131329777 {
  grid-row-gap: 24px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  text-decoration: none;
  display: flex;
}

.entity-id-legal-name-on-file-with-kansas-principal-office-street-address-registered-agent-name-and-3 {
  color: #1b4b47;
  width: 100%;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
  text-decoration: none;
}

.frame-2131329778 {
  grid-row-gap: 24px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  text-decoration: none;
  display: flex;
}

.immediate-loss-of-good-standing-administrative-dissolution-for-domestic-entities-or-revocation-of-au {
  color: #1b4b47;
  width: 100%;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
  text-decoration: none;
}

.text-block-128 {
  color: #1b4b47;
  margin-bottom: 24px;
  font-family: DM Sans, sans-serif;
  font-size: 45px;
  line-height: 120%;
}

.text-block-129 {
  color: #1b4b47;
  margin-bottom: 24px;
  font-family: DM Sans, sans-serif;
  font-size: 18px;
  line-height: 150%;
}

.list-item-43 {
  font-size: 20px;
}

.list-item-43.text-span-371 {
  font-weight: 600;
}

.list-16 {
  margin-bottom: 24px;
}

.text-block-130 {
  color: #1b4b47;
  margin-bottom: 24px;
  font-family: DM Sans, sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 140%;
}

.text-block-131 {
  color: #1b4b47;
  margin-bottom: 24px;
  font-family: DM Sans, sans-serif;
  font-size: 32px;
}

.text-span-371 {
  font-weight: 600;
}

.div-block-38 {
  border: 1px solid #0000001a;
  border-radius: 20px;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  padding: 32px;
  display: flex;
}

.text-block-132 {
  color: #1b4b47;
  margin-bottom: 48px;
  font-family: DM Sans, sans-serif;
  font-size: 18px;
  font-weight: 600;
}

.text-block-133 {
  font-family: DM Sans, sans-serif;
  font-weight: 400;
}

.span-4 {
  font-weight: 600;
}

.text-block-134 {
  color: #1b4b47;
  margin-bottom: 24px;
  font-family: DM Sans, sans-serif;
  font-size: 18px;
  font-weight: 600;
}

.list-17 {
  margin-bottom: 48px;
}

.list-item-44 {
  margin-bottom: 24px;
  font-size: 20px;
}

.list-item-45 {
  font-size: 20px;
}

.list-18 {
  margin-bottom: 48px;
}

.text-span-372, .text-span-373, .text-span-374, .text-span-375, .text-span-376, .text-span-377, .text-span-378, .text-span-379, .text-span-380, .text-span-381, .text-span-382, .bold-text-64, .bold-text-65 {
  font-weight: 600;
}

.div-block-43 {
  background-color: #f8f9fa;
  border: 1px solid #0000001a;
  border-radius: 20px;
  padding: 32px;
}

.text-span-383 {
  color: var(--moss-400);
}

.renewal-notice-required-you-can-file-only-after-the-state-issues-your-notice-30-day-window-the-notic {
  color: #1b4b47;
  width: 100%;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
  text-decoration: none;
}

.content-style-60 {
  grid-row-gap: 24px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  text-decoration: none;
  display: flex;
}

.standard-fee-3000-for-most-entities-5-card-processing-fee-if-paying-online-total-35-payment-online {
  color: #1b4b47;
  width: 100%;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
  text-decoration: none;
}

.frame-2131329787 {
  grid-row-gap: 24px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  text-decoration: none;
  display: flex;
}

.div-block-44 {
  flex-flow: column;
  display: flex;
}

.text-block-135 {
  color: #1b4b47;
  margin-bottom: 24px;
  font-family: DM Sans, sans-serif;
  font-size: 45px;
  line-height: 120%;
}

.text-block-136 {
  color: #1b4b47;
  margin-bottom: 24px;
  font-family: DM Sans, sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 120%;
}

.list-item-46, .list-item-47, .list-item-48, .list-item-49, .list-item-50, .list-item-51 {
  font-size: 20px;
}

.text-span-384, .text-span-385, .text-span-386, .text-span-387, .text-span-388, .text-span-389, .text-span-390, .text-span-391 {
  font-weight: 600;
}

.text-block-139 {
  color: #1b4b47;
  margin-top: 48px;
  margin-bottom: 24px;
  font-family: DM Sans, sans-serif;
  font-size: 18px;
  font-weight: 600;
}

.text-span-392, .bold-text-66, .text-span-393, .text-span-394 {
  font-weight: 600;
}

.text-span-395 {
  color: var(--moss-500);
}

.div-block-45 {
  background-color: #f8f9fa;
  border: 1px solid #0000001a;
  border-radius: 20px;
  padding: 32px;
}

.div-block-46 {
  border: 1px solid #0000001a;
  border-radius: 20px;
  padding: 32px;
}

.due-date-june-1st-for-all-entities-first-report-due-the-first-june-1st-after-formation-or-authorizat, .standard-filing-fee-85-for-domestic-entities-foreign-entity-fee-150-for-corporations-and-llcs-late-f {
  color: #1b4b47;
  width: 100%;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
  text-decoration: none;
}

.content-style-68 {
  grid-row-gap: 24px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  text-decoration: none;
  display: flex;
}

.text-block-140 {
  color: #1b4b47;
  margin-bottom: 24px;
  font-family: DM Sans, sans-serif;
  font-size: 45px;
  line-height: 120%;
}

.text-block-141 {
  color: #1b4b47;
  margin-bottom: 24px;
  font-family: DM Sans, sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 140%;
}

.list-19 {
  margin-bottom: 24px;
}

.bold-text-67, .bold-text-68, .bold-text-69, .bold-text-70, .bold-text-71 {
  font-weight: 600;
}

.list-item-52, .list-item-53, .list-item-54, .list-item-55, .list-item-56, .list-item-57, .list-item-58, .list-item-59, .list-item-60, .list-item-61 {
  font-size: 20px;
}

.text-span-396, .text-span-397, .text-span-398, .text-span-399 {
  font-weight: 600;
}

.div-block-47 {
  border: 1px solid #0000001a;
  border-radius: 20px;
  padding: 20px;
}

.div-block-48 {
  background-color: #f8f9fa;
  border: 1px solid #0000001a;
  border-radius: 20px;
  padding: 20px;
}

.text-span-400 {
  color: var(--moss-400);
}

.text-block-144 {
  color: #1b4b47;
  margin-bottom: 24px;
  font-family: DM Sans, sans-serif;
  font-size: 45px;
  font-weight: 400;
  line-height: 120%;
}

.text-block-146 {
  color: #1b4b47;
  font-family: DM Sans, sans-serif;
  font-size: 20px;
  line-height: 140%;
}

.grid-4 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  position: relative;
}

.text-span-401, .text-span-402, .text-span-403, .text-span-404 {
  font-weight: 600;
}

.grid-5 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  position: relative;
}

.div-block-50 {
  border: 1px solid #0000001a;
  border-radius: 20px;
  padding-top: 20px;
  padding-left: 20px;
  padding-right: 20px;
}

.div-block-51 {
  grid-column-gap: 180px;
  grid-row-gap: 180px;
  justify-content: center;
  margin-bottom: 20px;
  padding-left: 0;
  display: flex;
}

.div-block-52 {
  border: 1px solid #0000001a;
  border-radius: 20px;
  padding: 32px;
}

.div-block-53 {
  background-color: #f8f9fa;
  border: 1px solid #0000001a;
  border-radius: 20px;
  padding: 32px;
}

.nav-link-3 {
  color: var(--white);
  font-family: DM Sans, sans-serif;
  font-size: 16px;
  font-weight: 500;
  transition: all .25s;
}

.nav-link-3:hover {
  color: var(--white);
  font-weight: 700;
  text-decoration: none;
}

.nav-link-3.w--current {
  color: var(--white);
  text-decoration: none;
}

.section_hero-home-2 {
  color: var(--moss-50);
  background-color: #043134;
  background-image: url('../images/new-home-hero-2131329881.webp');
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: cover;
}

.home-nav-wrapper {
  background-color: var(--white);
  justify-content: space-around;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}

.home-nav-wrapper.partners {
  background-color: var(--white);
  opacity: 0;
  height: auto;
  display: none;
}

.home-nav-wrapper.partners:where(.w-variant-1db5b658-ef89-aa24-3928-0faf59f7a2fd), .home-nav-wrapper.partners:where(.w-variant-62225b21-123e-3264-ea54-ed1511fb68de) {
  display: flex;
}

.home-nav-wrapper.partners:where(.w-variant-e7dd86b9-27b1-5768-0944-9201b1451012) {
  opacity: 100;
}

.navbar-size {
  background-color: #ddd0;
  height: 80px;
  pointer-events: none;
}

.home_container-large {
  justify-content: center;
  align-items: flex-start;
  height: calc(100% - 80px);
  margin-left: 2.5rem;
  margin-right: 2.5rem;
  padding-bottom: 0;
  display: block;
  position: relative;
}

.home_title-container {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  height: 100%;
  display: flex;
  position: relative;
}

.home_title-head {
  color: var(--white);
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 0;
  font-size: 72px;
  font-weight: 500;
  line-height: 115%;
}

.home_title-head.new {
  letter-spacing: -3px;
  font-weight: 500;
}

.bold-text-72 {
  font-weight: 700;
}

.bold-text-72.new {
  letter-spacing: -3px;
  font-weight: 600;
}

.home_title-p {
  color: var(--white);
  text-align: center;
  margin-bottom: 0;
  font-size: 22px;
}

.home_title-p.new {
  font-weight: 300;
  line-height: 120%;
}

.home_hero-image {
  max-width: 25%;
  position: absolute;
  box-shadow: -10px 20px 20px #0003;
}

.home_hero-image.home_hero-image-top-left {
  border: 1px solid #d6d9de;
  border-radius: 24px;
  max-width: 314px;
  top: 29%;
  bottom: 0%;
  left: max(min(5%, 100vw - 1440px), -20%);
}

.home_hero-image.home_hero-image-top-right {
  border: 1px solid #d6d9de;
  border-radius: 24px;
  max-width: 330px;
  margin-right: -15px;
  position: absolute;
  inset: 29% max(min(5%, 100vw - 1440px), -20%) 0% auto;
}

.home_hero-image.home_hero-image-down-left {
  border: 1px solid #d6d9de;
  border-radius: 24px;
  max-width: 313px;
  inset: 63% auto auto max(100vw - 1440px, 12%);
}

.home_hero-image.home_hero-image-down-right {
  border: 1px solid #d6d9de;
  border-radius: 24px;
  max-width: 313px;
  inset: 63% max(100vw - 1440px, 12%) auto auto;
}

.div-block-54 {
  height: 50%;
  overflow: visible;
}

.section_jta {
  background-image: url('../images/new-home-hero-jpin-the-alpha.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  flex-flow: column;
  justify-content: center;
  align-items: stretch;
  padding-left: 80px;
  padding-right: 80px;
  display: flex;
}

.section_jta.new {
  padding-top: 80px;
  padding-bottom: 80px;
}

.jta_text-container {
  background-image: none;
  background-repeat: repeat;
  background-size: auto;
  flex-flow: column;
  justify-content: center;
  align-items: stretch;
  width: 50%;
  display: flex;
}

.jta_text-container.new {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  max-width: 700px;
}

.jta_dev {
  color: var(--white);
  margin-bottom: 0;
  font-weight: 400;
}

.jta_dev.new {
  font-size: 20px;
  font-weight: 600;
}

.jta_dev.new.dev {
  font-size: 1.25em;
}

.jta_32-pad {
  height: 32px;
}

.jta_32-pad.p40 {
  height: 40px;
}

.jta_32-pad.p60 {
  height: 60px;
}

.jta_32-pad.p80 {
  height: 80px;
}

.jta_title {
  color: var(--moss-300);
  margin-bottom: 0;
  font-size: 40px;
  font-weight: 500;
}

.jta_title.new {
  line-height: 48px;
}

.jta_24-pad {
  height: 32px;
}

.jta_p {
  color: var(--white);
  align-self: flex-start;
  margin-bottom: 0;
  font-size: 20px;
  font-weight: 500;
}

.jta_p.new {
  flex: 0 auto;
  width: 100%;
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
}

.jta_list {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  flex-flow: column;
  display: flex;
}

.jta_80-pad {
  height: 80px;
}

.jta_80-pad.ar {
  display: none;
}

.jta_list-item {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-flow: row;
  justify-content: flex-start;
  align-items: stretch;
  display: flex;
}

.jta_list-item-text {
  color: var(--white);
  margin-bottom: 0;
  font-weight: 400;
  line-height: 150%;
}

.jta_list-item-text.new {
  font-size: 20px;
  line-height: 150%;
}

.jta_list-item-text.new.dev {
  font-size: 1.25em;
}

.section_oneid {
  background-color: var(--moss-50);
  padding-left: 80px;
}

.oneid_title-container {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  background-image: none;
  background-repeat: repeat;
  background-size: auto;
  flex-flow: column;
  flex: 0 auto;
  order: 0;
  justify-content: center;
  align-self: auto;
  width: 40%;
  display: flex;
  position: relative;
}

.oneid_title-title {
  color: var(--moss-1000);
  flex: 0 auto;
  margin-bottom: 0;
  font-size: 48px;
  font-weight: 500;
  line-height: 100%;
}

.oneid_title-title.new {
  letter-spacing: -1.5px;
}

.oneid_list-item {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-flow: row;
  justify-content: flex-start;
  align-items: stretch;
  display: flex;
}

.oneid_list {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  flex-flow: column;
  padding-bottom: 8px;
  display: flex;
}

.onlyid_list-item-text {
  color: var(--text--secondary);
  margin-bottom: 0;
  font-size: 1.25em;
  font-weight: 400;
  line-height: 150%;
}

.jta_124-pad {
  height: 124px;
}

.section_message {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding: 80px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.message_p {
  max-width: 964px;
  color: var(--neutral-1000);
  text-align: center;
  margin-bottom: 0;
  font-size: 48px;
  font-weight: 500;
  line-height: 100%;
}

.section_monitor-2 {
  background-color: var(--moss-50);
}

.section_monitor-2.new {
  padding-top: 60px;
}

.monitor_container {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 45vw;
  margin-left: 0;
  margin-right: 0;
  padding: 0 80px;
  display: flex;
}

.monitor_container.new.why-palm {
  justify-content: space-between;
  align-items: flex-start;
  height: 50vw;
  padding-right: 0;
}

.monitor_container.new.ryb {
  z-index: 10;
  justify-content: space-between;
  align-items: flex-start;
  height: auto;
  padding-top: 30px;
  padding-right: 0;
}

.monitor_container.new.sp {
  z-index: 10;
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-start;
  height: auto;
  padding-top: 80px;
  padding-bottom: 80px;
}

.monitor_container.new.sp.home {
  width: auto;
}

.monitor_title-container {
  color: #4f5762;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  width: 50%;
  display: flex;
}

.monitor_title-container.new {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  margin-top: 80px;
}

.monitor_title-container.new.why-palm {
  width: 40%;
  position: relative;
}

.monitor_title-container.new.ryb {
  width: 55%;
  margin-top: 0;
  position: relative;
  top: 50px;
}

.monitor_title-container.new.sp {
  width: 55%;
  margin-top: 0;
}

.monitor_title-container.new.sp.home {
  justify-content: center;
  align-items: center;
  width: 100%;
}

.monitor_title-container.new.sp.act {
  padding-bottom: 40px;
}

.monitor_title-header {
  align-self: stretch;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 48px;
  font-weight: 500;
}

.monitor_title-header.new {
  letter-spacing: -1.5px;
  line-height: 100%;
}

.monitor_title-header.new.why-palm {
  font-size: 2.5em;
}

.monitor_title-header.new.ryb {
  font-size: 40px;
  line-height: 48px;
}

.monitor_title-header.new.sp {
  text-align: left;
  font-size: 40px;
  line-height: 48px;
}

.monitor_title-header.new.sp.home {
  text-align: center;
}

.monitor_phone-container {
  width: 50%;
  max-width: 60%;
  height: 100%;
  position: relative;
}

.monitor_phone-container.new {
  padding-left: 32px;
}

.monitor_phone-image {
  filter: drop-shadow(0 -6px 53px #00000026);
  flex: 0 auto;
  width: 62%;
  max-width: 100%;
  position: relative;
  inset: 0% 0% 0% auto;
}

.monitor_phone-image.popup {
  z-index: 3;
  filter: none;
  border-radius: 14px;
  position: absolute;
  top: 30%;
  box-shadow: 0 9px 18px #0003;
}

.section_dscroll {
  padding: 160px 80px;
  position: static;
}

.dscroll_left-container {
  grid-column-gap: 64px;
  grid-row-gap: 64px;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  width: 50%;
  display: flex;
}

.dscroll_header {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  justify-content: flex-start;
  align-items: center;
  padding-bottom: 80px;
  display: flex;
}

.dscroll_header-image {
  width: 64px;
}

.dscroll_header-title {
  color: var(--moss-1000);
  letter-spacing: -2.5px;
  margin-bottom: 0;
  font-size: 64px;
  font-weight: 500;
  line-height: 100%;
}

.jta_64-pad {
  height: 64px;
}

.dscroll_info-card {
  flex-flow: row;
  justify-content: flex-start;
  align-items: stretch;
  padding-top: 180px;
  padding-bottom: 180px;
  display: flex;
}

.dscroll_info-card-wrapper {
  flex-flow: column;
  justify-content: center;
  padding-top: 40px;
  padding-bottom: 40px;
  display: flex;
}

.jta_16-pad {
  height: 16px;
}

.dscroll_infor-card-title {
  color: var(--moss-1000);
  margin-bottom: 0;
  font-size: 48px;
  font-weight: 500;
  line-height: 100%;
}

.dscroll_infor-card-title.new {
  letter-spacing: -1.5px;
}

.dscroll_infor-card-p {
  color: var(--text--secondary);
  margin-bottom: 0;
  font-size: 20px;
  font-weight: 400;
  line-height: 120%;
}

.dscroll_infor-card-img {
  width: 56px;
}

.dscroll_sticky {
  clear: none;
  width: 50%;
  height: 50vw;
  padding-top: 100px;
  position: sticky;
  top: calc(90vh - 650px);
}

.dscroll_scroll-wrapper {
  grid-column-gap: 64px;
  grid-row-gap: 64px;
  flex-flow: row;
  justify-content: center;
  align-items: flex-start;
  display: flex;
  position: relative;
}

.scroll_sticky-container {
  position: absolute;
}

.scroll_sticky-container.z12 {
  z-index: 12;
}

.scroll_sticky-container.z11 {
  z-index: 11;
}

.scroll_sticky-container.z10, .scroll_sticky-container.z14 {
  z-index: 10;
}

.image-12 {
  border-radius: 48px;
  width: 100%;
  max-width: 650px;
  position: static;
  top: calc(100vh - 400px);
}

.image-13 {
  border-radius: 48px;
  width: 100%;
  max-width: 650px;
  position: sticky;
  top: calc(100vh - 400px);
}

.image-14 {
  border-radius: 48px;
  width: 100%;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  position: sticky;
  top: calc(100vh - 400px);
}

.oneid_wrapper {
  grid-column-gap: 48px;
  grid-row-gap: 48px;
  flex-flow: row;
  justify-content: flex-start;
  align-items: stretch;
  padding-top: 80px;
  padding-bottom: 80px;
  display: flex;
  position: relative;
}

.oneid_wrapper.new {
  padding-top: 160px;
  padding-bottom: 160px;
}

.oneid_spacer {
  flex: none;
  align-items: center;
  width: max(360px, 100vw - 140%);
  padding-left: 0;
  display: flex;
  position: absolute;
  left: min(0px, 1400px - 85vw);
}

.paragraph-8.new {
  font-size: 1.25em;
}

.paragraph-8.new.ryb {
  font-size: 20px;
}

.jta_wrapper {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  flex-flow: row;
  justify-content: center;
  align-items: center;
  display: flex;
}

.jta_wrapper.new.pt {
  width: 100%;
  overflow: clip;
}

.jta_wrapper.new.pt.ar {
  overflow: visible;
}

.jta_spacer {
  width: 50%;
}

.home-nav-wrapper-transparent {
  background-color: var(--transparent);
  justify-content: space-around;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: absolute;
}

.home-nav-wrapper-transparent.hp-is-dark {
  background-color: var(--transparent);
  display: flex;
}

.home-nav-wrapper-transparent.hp-is-dark.hp-test {
  background-color: var(--transparent);
  height: auto;
  display: block;
}

.home-nav-wrapper-transparent.hp-is-dark.hp-test:where(.w-variant-e7dd86b9-27b1-5768-0944-9201b1451012) {
  display: none;
}

.nav-link-4 {
  color: var(--neutral-1000);
  -webkit-text-stroke-color: var(--transparent);
  border-bottom: 1px #000;
  font-family: DM Sans, sans-serif;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: all .25s;
}

.nav-link-4:hover {
  text-decoration: none;
}

.nav-link-4.w--current {
  color: var(--neutral-1000);
  border-bottom-style: solid;
  border-bottom-width: 2px;
  text-decoration: none;
}

.mscroll_scroll-wrapper {
  grid-column-gap: 64px;
  grid-row-gap: 64px;
  flex-flow: row;
  justify-content: center;
  align-items: flex-start;
  display: none;
  position: relative;
}

.mscroll_info-card {
  flex-flow: row;
  justify-content: flex-start;
  align-items: stretch;
  padding-top: 180px;
  padding-bottom: 180px;
  display: flex;
}

.mscroll_info-card-wrapper {
  flex-flow: column;
  justify-content: center;
  padding-top: 40px;
  padding-bottom: 40px;
  display: flex;
}

.flex-block-2 {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  align-items: center;
  max-width: 620px;
  padding-top: 48px;
}

.div-block-55 {
  height: 1024px;
}

.image-15 {
  border-radius: 14px;
  position: relative;
}

.image-15.target_image {
  width: 100%;
  max-width: none;
}

.image-15.target_image.new.img2 {
  left: -22px;
}

.image-16 {
  filter: drop-shadow(0 0 7px #6be0b6);
  flex: 1 0 auto;
  width: 100%;
  max-width: none;
  position: relative;
  left: auto;
  right: auto;
  overflow: clip;
}

.div-block-56 {
  flex: 1;
  align-items: center;
  display: flex;
  position: relative;
}

.image-17 {
  width: 16%;
  max-width: none;
  position: absolute;
  top: 15%;
  left: 36.5%;
  right: 0%;
}

.bold-text-73, .text-span-405, .text-span-406, .text-span-407, .text-span-408, .text-span-409, .text-span-411, .text-span-412 {
  font-style: italic;
  text-decoration: underline;
}

.text-span-413 {
  font-weight: 700;
}

.page-count, .page-count-2 {
  display: none;
}

.blog-filter_container {
  justify-content: center;
  align-items: center;
  width: 80%;
  display: flex;
}

.blog-form_wrapper {
  background-color: var(--moss-900);
  border-radius: 16rem;
  flex-flow: column;
  justify-content: center;
  align-items: stretch;
  width: 80%;
  padding: .5rem;
  display: flex;
}

.blog-form {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  width: 100%;
  color: var(--text--secondary);
  text-align: left;
  background-color: #ffffff14;
  border: .2rem solid #ecf9f433;
  border-radius: 16rem;
  flex-flow: row;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  padding: .6rem;
  display: flex;
}

.blog-form_search-bar {
  border: .2rem none var(--moss-800);
  background-color: var(--transparent);
  width: 80%;
  height: auto;
  color: var(--white);
  text-align: left;
  border-radius: 16rem;
  margin-bottom: 0;
  padding: 1rem 2rem 1rem 1rem;
  font-family: DM Sans, sans-serif;
  font-size: 1.2em;
  font-weight: 400;
  line-height: 120%;
}

.blog-form_search-bar:focus, .blog-form_search-bar:focus-visible, .blog-form_search-bar[data-wf-focus-visible] {
  border-color: var(--moss-600);
}

.blog-form_search-bar::placeholder {
  color: #ffffffba;
}

.text-block-147 {
  color: #1b4b47;
  font-family: DM Sans, sans-serif;
  font-size: 45px;
  line-height: 54px;
}

.text-block-148 {
  color: #1b4b47;
  margin-top: 24px;
  font-family: DM Sans, sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 28px;
}

.text-block-149 {
  color: #1b4b47;
  margin-top: 24px;
  margin-left: 0;
  padding-left: 0;
  font-family: DM Sans, sans-serif;
  font-size: 32px;
  line-height: 38.4px;
}

.text-span-414, .text-span-415, .text-span-416 {
  font-weight: 600;
}

.list-35 {
  color: #1b4b47;
  margin-top: 0;
  margin-bottom: 24px;
  margin-left: 30px;
  padding-left: 0;
  font-family: DM Sans, sans-serif;
  font-size: 20px;
  line-height: 28px;
}

.div-block-57 {
  margin-left: 0;
  padding-left: 0;
}

.list-item-62, .list-item-63, .list-item-64, .list-item-65, .list-item-66 {
  font-size: 20px;
  line-height: 140%;
}

.text-span-419 {
  font-weight: 600;
}

.list-36 {
  color: #1b4b47;
  margin-top: 24px;
  font-family: DM Sans, sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
}

.list-item-67, .list-item-68, .list-item-69 {
  font-size: 20px;
  font-weight: 600;
  line-height: 140%;
}

.div-block-58 {
  justify-content: center;
  align-items: center;
  margin-top: 60px;
  display: flex;
}

.text-span-421, .text-span-422 {
  font-weight: 300;
}

.text-block-151 {
  margin-right: 61px;
  font-family: DM Sans, sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 28px;
}

.text-block-152 {
  margin-left: 61px;
  font-family: DM Sans, sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 28px;
}

.text-span-423, .text-span-424 {
  font-weight: 600;
}

.div-block-59 {
  background-color: #f8f9fa;
  border: 1px solid #0000001a;
  border-radius: 20px;
  padding: 20px;
}

.text-block-153 {
  color: #1b4b47;
  font-family: DM Sans, sans-serif;
  font-size: 40px;
  line-height: 48px;
}

.text-span-425 {
  color: var(--moss-400);
}

.text-span-426 {
  font-weight: 700;
}

.text-span-427, .bold-text-74, .bold-text-75, .bold-text-76 {
  font-weight: 600;
}

.div-block-60 {
  outline-offset: 0px;
  background-color: #0000;
  border: 1px #0000001a;
  outline: 3px #333;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  margin-left: 0;
  margin-right: 0;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
  display: flex;
}

.div-block-61 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  border: 1px solid #0000001a;
  border-radius: 20px;
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.paragraph-9 {
  color: var(--moss-1000);
  font-family: DM Sans, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 150%;
}

.paragraph-10 {
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
}

.text-block-154 {
  color: #1b4b47;
  text-align: center;
  margin-top: 24px;
  font-family: DM Sans, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
}

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

.text-block-155 {
  color: #1b4b47;
  margin-bottom: 24px;
  font-family: DM Sans, sans-serif;
  font-size: 45px;
  line-height: 54px;
}

.text-block-156 {
  color: #1b4b47;
  margin-top: 24px;
  font-family: DM Sans, sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 28px;
}

.text-block-157 {
  color: #1b4b47;
  margin-top: 24px;
  font-family: DM Sans, sans-serif;
  font-size: 32px;
  line-height: 120%;
}

.text-block-158 {
  color: #1b4b47;
  margin-top: 24px;
  font-family: DM Sans, sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 27px;
}

.list-item-70 {
  font-size: 20px;
  font-weight: 600;
  line-height: 140%;
}

.div-block-62 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  border: 1px solid #0000001a;
  border-radius: 20px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 830px;
  max-width: 830px;
  height: auto;
  display: grid;
}

.paragraph-11 {
  color: var(--white);
  margin-bottom: 0;
  padding: 16px;
  font-family: DM Sans, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 150%;
}

.paragraph-13 {
  color: var(--text--secondary);
  margin-bottom: 0;
  padding: 16px;
  font-size: 16px;
  font-weight: 700;
  line-height: 150%;
}

.text-block-159 {
  color: #1b4b47;
  margin-top: 24px;
  margin-bottom: 40px;
  font-family: DM Sans, sans-serif;
  font-size: 20px;
  line-height: 28px;
}

.heading-19 {
  text-align: center;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
  line-height: 54px;
  display: flex;
}

.paragraph-14 {
  color: var(--text--secondary);
  margin-bottom: 0;
  padding: 16px 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
}

.text-block-160 {
  color: #1b4b47;
  text-align: center;
  margin-top: 40px;
  margin-bottom: 56px;
  font-family: DM Sans, sans-serif;
  font-size: 20px;
  line-height: 28px;
}

.div-block-63 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  border: 1px solid #0000001a;
  border-radius: 20px;
  flex-flow: column;
  grid-template-rows: auto auto;
  grid-template-columns: .75fr 1fr .5fr;
  grid-auto-columns: 1fr;
  width: 100%;
  margin-left: 0;
  margin-right: 0;
  display: grid;
}

.heading-20 {
  color: var(--moss-1000);
  text-align: center;
  margin-top: 56px;
  margin-bottom: 24px;
  font-family: DM Sans, sans-serif;
  font-size: 45px;
  font-weight: 300;
  line-height: 54px;
}

.text-block-161 {
  color: #1b4b47;
  text-align: center;
  margin: 24px 24px 40px;
  font-family: DM Sans, sans-serif;
  font-size: 20px;
  line-height: 28px;
}

.text-block-162 {
  color: #1b4b47;
  margin-top: 24px;
  margin-bottom: 24px;
  font-family: DM Sans, sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 28px;
}

.image-18 {
  position: absolute;
  top: 13px;
  right: -10px;
}

.text-span-429, .text-span-430, .text-span-431, .text-span-432, .text-span-433, .text-span-434, .text-span-435, .text-span-436 {
  font-weight: 600;
}

.text-span-437 {
  color: var(--moss-400);
}

.text-block-163 {
  color: #1b4b47;
  margin-bottom: 24px;
  font-family: DM Sans, sans-serif;
  font-size: 45px;
  font-weight: 400;
  line-height: 54px;
}

.text-block-164 {
  color: #1b4b47;
  margin-bottom: 24px;
  font-family: DM Sans, sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 28px;
}

.text-block-165 {
  color: #1b4b47;
  margin-bottom: 24px;
  font-family: DM Sans, sans-serif;
  font-size: 32px;
  line-height: 120%;
}

.text-block-166 {
  color: #1b4b47;
  margin-top: 24px;
  margin-bottom: 24px;
  font-family: DM Sans, sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 28px;
}

.text-span-443, .text-span-444, .text-span-445, .text-span-446 {
  font-size: 20px;
  font-weight: 600;
}

.text-span-447, .text-span-448, .text-span-449, .text-span-450 {
  font-weight: 600;
}

.list-37 {
  margin-left: 30px;
  line-height: 18px;
}

.list-item-73 {
  line-height: 140%;
}

.text-span-451, .text-span-452, .text-span-453, .text-span-454, .text-span-456, .text-span-457, .text-span-458, .text-span-459, .text-span-460 {
  font-weight: 600;
}

.list-38 {
  color: #1b4b47;
  font-family: DM Sans, sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 28px;
}

.text-span-461 {
  color: var(--moss-400);
}

.div-block-67 {
  background-color: #0000;
  border: 1px solid #0000001a;
  border-radius: 20px;
  padding: 32px;
}

.text-span-468 {
  color: var(--moss-400);
}

.text-block-167 {
  color: #1b4b47;
  margin-bottom: 24px;
  font-family: DM Sans, sans-serif;
  font-size: 45px;
  line-height: 54px;
}

.text-block-168 {
  color: #1b4b47;
  margin-bottom: 24px;
  font-family: DM Sans, sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 28px;
}

.text-block-169 {
  color: #1b4b47;
  margin-bottom: 24px;
  font-family: DM Sans, sans-serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 120%;
}

.text-block-170 {
  color: #1b4b47;
  margin-bottom: 24px;
  font-family: DM Sans, sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 27px;
}

.list-39 {
  margin-bottom: 24px;
}

.text-span-469, .text-span-470, .text-span-471, .text-span-472, .text-span-473, .text-span-474, .text-span-475, .list-item-81, .text-span-476, .text-span-477, .text-span-478 {
  font-weight: 600;
}

.text-span-479 {
  font-size: 20px;
  font-weight: 600;
}

.text-span-480 {
  font-weight: 600;
}

.text-block-171 {
  color: #1b4b47;
  text-align: center;
  font-family: DM Sans, sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
}

.text-span-481, .text-span-482 {
  font-weight: 600;
}

.text-block-173 {
  color: #1b4b47;
  margin-bottom: 24px;
  font-family: DM Sans, sans-serif;
  font-size: 40px;
  font-weight: 400;
  line-height: 48px;
}

.text-span-483, .text-span-484, .text-span-485 {
  font-weight: 600;
}

.text-block-174 {
  color: #1b4b47;
  font-family: DM Sans, sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 27px;
}

.div-block-68 {
  background-color: #f8f9fa;
  border: 1px solid #0000001a;
  border-radius: 20px;
  padding: 32px;
}

.text-span-486, .bold-text-77 {
  font-weight: 600;
}

.text-span-487 {
  color: var(--moss-400);
}

.grid-6 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
}

.text-block-175 {
  color: #1b4b47;
  margin-top: 120px;
  margin-bottom: 24px;
  font-family: DM Sans, sans-serif;
  font-size: 45px;
  font-weight: 400;
  line-height: 54px;
}

.text-block-176 {
  color: #1b4b47;
  font-family: DM Sans, sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 28px;
}

.div-block-71 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  border: 1px solid #0000001a;
  border-radius: 20px;
  flex-flow: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: flex-start;
  width: 830px;
  margin-bottom: 56px;
  display: grid;
}

.heading-21 {
  text-align: center;
  font-size: 45px;
  font-weight: 300;
  line-height: 54px;
}

.text-block-177 {
  color: #1b4b47;
  text-align: center;
  margin-bottom: 40px;
  font-family: DM Sans, sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 28px;
}

.paragraph-15 {
  color: var(--white);
  margin-bottom: 0;
  padding-top: 16px;
  padding-bottom: 16px;
  padding-left: 16px;
  font-family: DM Sans, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
}

.paragraph-16 {
  margin-bottom: 0;
  padding: 16px;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
}

.paragraph-17 {
  margin-bottom: 0;
  padding: 16px;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.text-block-178 {
  color: #1b4b47;
  margin-bottom: 24px;
  font-family: DM Sans, sans-serif;
  font-size: 45px;
  line-height: 54px;
}

.text-block-179 {
  color: #1b4b47;
  margin-bottom: 24px;
  font-family: DM Sans, sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 28px;
}

.text-span-488, .text-span-489 {
  font-weight: 600;
}

.text-block-180 {
  color: #1b4b47;
  margin-bottom: 24px;
  font-family: DM Sans, sans-serif;
  font-size: 40px;
  line-height: 48px;
}

.div-block-75 {
  border: 1px solid #0000001a;
  border-radius: 20px;
  padding: 32px;
}

.text-block-181 {
  color: #1b4b47;
  margin-bottom: 24px;
  font-family: DM Sans, sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 27px;
}

.div-block-76 {
  background-color: #f8f9fa;
  border: 1px solid #0000001a;
  border-radius: 20px;
  padding: 32px;
}

.text-block-182 {
  color: #1b4b47;
  margin-bottom: 24px;
  font-family: DM Sans, sans-serif;
  font-size: 45px;
  line-height: 54px;
}

.text-span-490, .text-span-491 {
  color: var(--moss-400);
}

.text-block-183 {
  color: #1b4b47;
  margin-bottom: 24px;
  font-family: DM Sans, sans-serif;
  font-size: 45px;
  font-weight: 400;
  line-height: 54px;
}

.text-block-184 {
  color: #1b4b47;
  margin-bottom: 24px;
  font-family: DM Sans, sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 140%;
}

.text-block-185 {
  color: #1b4b47;
  margin-bottom: 24px;
  font-family: DM Sans, sans-serif;
  font-size: 32px;
  line-height: 120%;
}

.text-block-186 {
  color: #1b4b47;
  margin-bottom: 24px;
  font-family: DM Sans, sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 27px;
}

.text-span-492, .text-span-493, .text-span-494, .text-span-495, .text-span-496 {
  font-weight: 600;
}

.grid-7, .grid-8 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}

.list-40 {
  padding-left: 60px;
}

.list-item-85, .list-item-86, .list-item-87 {
  line-height: 140%;
}

.text-span-497, .text-span-498, .text-span-499, .text-span-500, .text-span-501, .text-span-502 {
  font-weight: 600;
}

.grid-10 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
}

.list-item-88 {
  line-height: 140%;
}

.text-span-503 {
  font-weight: 600;
}

.text-block-187 {
  color: #1b4b47;
  margin-bottom: 24px;
  font-family: DM Sans, sans-serif;
  font-size: 40px;
  line-height: 48px;
}

.text-span-504 {
  color: var(--moss-400);
}

.image-19 {
  position: absolute;
  top: 13px;
  right: -10px;
}

.text-block-188 {
  color: #1b4b47;
  margin-bottom: 24px;
  font-family: DM Sans, sans-serif;
  font-size: 45px;
  line-height: 54px;
}

.text-block-189 {
  color: #1b4b47;
  margin-bottom: 24px;
  font-family: DM Sans, sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 28px;
}

.text-block-190 {
  color: #1b4b47;
  margin-bottom: 24px;
  font-family: DM Sans, sans-serif;
  font-size: 32px;
  line-height: 120%;
}

.text-block-191 {
  color: #1b4b47;
  margin-bottom: 24px;
  font-family: DM Sans, sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 27px;
}

.list-item-89 {
  color: var(--moss-1000);
  font-size: 20px;
  line-height: 140%;
}

.text-block-192 {
  color: #1b4b47;
  margin-bottom: 24px;
  font-family: DM Sans, sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 28px;
}

.text-span-505, .text-span-506, .text-span-507, .text-span-508, .text-span-509, .text-span-510 {
  font-weight: 600;
}

.list-41 {
  margin-left: 30px;
  padding-left: 0;
}

.text-span-511, .text-span-512, .text-span-513, .text-span-514, .text-span-515, .text-span-516, .text-span-517, .text-span-518, .text-span-519, .text-span-520, .text-span-521, .text-span-522, .text-span-523, .text-span-524 {
  font-weight: 600;
}

.grid-11 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
}

.text-block-193 {
  color: #1b4b47;
  margin-bottom: 24px;
  font-family: DM Sans, sans-serif;
  font-size: 45px;
  line-height: 48px;
}

.text-span-525, .text-span-526, .text-span-527 {
  font-weight: 600;
}

.list-item-90 {
  margin-bottom: 24px;
}

.div-block-88 {
  background-color: #f8f9fa;
  border: 1px solid #0000001a;
  border-radius: 20px;
  padding: 32px;
}

.text-span-528 {
  color: var(--moss-400);
}

.text-block-194 {
  color: #1b4b47;
  margin-bottom: 24px;
  font-family: DM Sans, sans-serif;
  font-size: 45px;
  line-height: 54px;
}

.text-block-195 {
  color: #1b4b47;
  margin-bottom: 24px;
  font-family: DM Sans, sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 28px;
}

.text-block-196 {
  color: #1b4b47;
  margin-bottom: 24px;
  font-family: DM Sans, sans-serif;
  font-size: 32px;
  line-height: 120%;
}

.text-span-529 {
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 300;
  line-height: 140%;
}

.list-item-91 {
  font-size: 20px;
  font-weight: 400;
  line-height: 140%;
}

.text-block-197 {
  color: #1b4b47;
  margin-bottom: 24px;
  font-family: DM Sans, sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 140%;
}

.text-block-198 {
  color: #1b4b47;
  font-family: DM Sans, sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 27px;
}

.text-span-530, .text-span-531, .text-span-532, .text-span-533, .text-span-534, .text-span-535 {
  font-weight: 600;
}

.text-block-199 {
  color: #1b4b47;
  font-family: DM Sans, sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 140%;
}

.text-span-536, .text-span-537, .text-span-538, .text-span-539, .text-span-540 {
  font-weight: 600;
}

.div-block-89 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  border: 1px solid #0000001a;
  border-radius: 20px;
  flex-flow: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-bottom: 20px;
  display: grid;
}

.paragraph-18 {
  color: var(--white);
  margin-top: 10px;
  margin-bottom: 10px;
  padding: 16px;
  font-size: 16px;
  font-weight: 700;
  line-height: 24%;
}

.bold-text-78 {
  color: #2d3748;
  padding: 16px;
  font-family: DM Sans, sans-serif;
}

.div-block-90 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  border: 1px solid #0000001a;
  border-radius: 20px;
  flex-flow: column;
  grid-template-rows: auto auto auto auto;
  grid-template-columns: 1.75fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.div-block-91 {
  grid-column-gap: 74px;
  grid-row-gap: 74px;
  flex-flow: row;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  place-items: center stretch;
  margin-top: 40px;
  display: flex;
}

.text-block-201 {
  color: #1b4b47;
  text-align: left;
  border: 1px #0000001a;
  border-radius: 0;
  justify-content: center;
  align-items: center;
  height: 160px;
  margin-top: 0;
  margin-bottom: 0;
  padding: 0;
  font-family: DM Sans, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
  display: block;
}

.text-span-541, .text-span-542, .text-span-543, .text-span-544, .text-span-545, .text-span-546, .text-span-547, .text-span-548, .text-span-549, .text-span-550, .text-span-551, .text-span-552, .text-span-553, .text-span-554, .text-span-555, .text-span-556 {
  font-weight: 600;
}

.text-span-557 {
  color: var(--moss-400);
}

.text-block-202 {
  color: #1b4b47;
  margin-bottom: 24px;
  font-family: DM Sans, sans-serif;
  font-size: 45px;
  line-height: 54px;
}

.text-block-203 {
  color: #1b4b47;
  margin-bottom: 24px;
  font-family: DM Sans, sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 28px;
}

.text-block-204 {
  color: #1b4b47;
  margin-bottom: 24px;
  font-family: DM Sans, sans-serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 120%;
}

.text-block-205 {
  color: #1b4b47;
  margin-bottom: 24px;
  font-family: DM Sans, sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 27px;
}

.text-span-570, .text-span-571, .text-span-572, .text-span-573, .text-span-574, .text-span-575, .text-span-576, .text-span-577, .text-span-578, .text-span-579, .text-span-580, .text-span-581, .text-span-582, .text-span-583, .text-span-584, .text-span-585, .text-span-586, .text-span-587, .text-span-588, .text-span-589, .text-span-590, .text-span-591 {
  font-weight: 600;
}

.grid-14 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.text-span-592, .text-span-593, .text-span-594, .text-span-595, .text-span-596, .text-span-597, .text-span-598, .text-span-599, .text-span-600 {
  font-weight: 600;
}

.text-block-206 {
  color: #1b4b47;
  margin-bottom: 24px;
  font-family: DM Sans, sans-serif;
  font-size: 40px;
  line-height: 48px;
}

.text-span-601, .text-span-602, .text-span-603 {
  font-weight: 600;
}

.text-block-207 {
  color: #1b4b47;
  font-family: DM Sans, sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 27px;
}

.text-span-604 {
  color: var(--moss-400);
}

.text-block-208 {
  color: #1b4b47;
  margin-bottom: 24px;
  font-family: DM Sans, sans-serif;
  font-size: 45px;
  line-height: 54px;
}

.text-block-209 {
  color: #1b4b47;
  margin-bottom: 24px;
  font-family: DM Sans, sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 28px;
}

.text-block-210 {
  color: #1b4b47;
  margin-bottom: 24px;
  font-family: DM Sans, sans-serif;
  font-size: 32px;
  line-height: 38.4px;
}

.text-block-211 {
  color: #1b4b47;
  margin-bottom: 24px;
  font-family: DM Sans, sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 27px;
}

.text-span-611, .text-span-612, .text-span-613, .text-span-614, .text-span-615, .text-span-616, .text-span-617, .text-span-618, .text-span-619, .text-span-620, .text-span-621, .text-span-622, .text-span-623, .text-span-624, .text-span-625, .text-span-626, .text-span-627, .text-span-628, .text-span-629, .text-span-630, .text-span-631, .text-span-632, .text-span-633, .text-span-634, .text-span-635 {
  font-weight: 600;
}

.text-block-212 {
  color: #1b4b47;
  text-align: center;
  margin-top: 24px;
  font-family: DM Sans, sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 28px;
  display: none;
}

.grid-15 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
}

.text-span-636, .text-span-637, .text-span-638, .text-span-639, .text-span-640, .text-span-641, .text-span-642, .text-span-643, .text-span-644, .text-span-645, .text-span-646, .text-span-647, .text-span-648, .text-span-649, .text-span-650, .text-span-651, .text-span-652, .text-span-653, .text-span-654, .text-span-655 {
  font-weight: 600;
}

.text-block-213 {
  color: #1b4b47;
  margin-bottom: 24px;
  font-family: DM Sans, sans-serif;
  font-size: 40px;
  line-height: 48px;
}

.text-span-656, .text-span-657, .text-span-658, .text-span-659 {
  font-weight: 600;
}

.text-span-660 {
  color: var(--moss-400);
  font-weight: 400;
}

.text-block-214 {
  color: #1b4b47;
  margin-bottom: 24px;
  font-family: DM Sans, sans-serif;
  font-size: 45px;
  line-height: 54px;
}

.text-block-215 {
  color: #1b4b47;
  margin-bottom: 24px;
  font-family: DM Sans, sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 28px;
}

.text-block-216 {
  color: #1b4b47;
  margin-bottom: 24px;
  font-family: DM Sans, sans-serif;
  font-size: 32px;
  line-height: 38.4px;
}

.text-block-217 {
  color: #1b4b47;
  font-family: DM Sans, sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 27px;
}

.text-span-661, .text-span-662, .text-span-663, .text-span-664, .text-span-665, .text-span-666, .text-span-667, .text-span-668, .text-span-669, .text-span-670 {
  font-weight: 600;
}

.div-block-100 {
  grid-column-gap: 112px;
  grid-row-gap: 112px;
  justify-content: center;
  align-items: center;
  margin-top: 80px;
  display: flex;
}

.text-block-220 {
  color: #1b4b47;
  text-align: left;
  font-family: DM Sans, sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 28px;
}

.text-span-671, .text-span-672, .text-span-673 {
  font-weight: 600;
}

.text-block-221 {
  margin-top: 80px;
  font-family: DM Sans, sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
}

.text-span-674, .text-span-675, .text-span-676, .text-span-677, .text-span-678, .text-span-679, .text-span-680, .text-span-681 {
  font-weight: 600;
}

.list-item-92, .list-item-93, .list-item-94, .list-item-95 {
  font-size: 20px;
}

.text-span-682, .text-span-683, .text-span-684, .text-span-685 {
  font-weight: 600;
}

.list-item-96, .list-item-97 {
  font-size: 20px;
}

.text-span-686, .text-span-687, .text-span-688 {
  font-weight: 600;
}

.text-block-222 {
  color: #1b4b47;
  margin-bottom: 24px;
  font-family: DM Sans, sans-serif;
  font-size: 40px;
  line-height: 48px;
}

.text-span-689 {
  color: var(--moss-400);
}

.div-block-101 {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.list-item-98, .list-item-99, .list-item-100 {
  font-size: 20px;
}

.text-span-697, .text-span-698, .text-span-699, .text-span-700 {
  font-weight: 600;
}

.list-42 {
  margin-bottom: 24px;
}

.div-block-102 {
  background-color: #f8f9fa;
  border: 1px solid #0000001a;
  border-radius: 20px;
  padding: 20px;
}

.div-block-103, .div-block-104 {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.div-block-105, .div-block-106, .div-block-107 {
  max-width: 50%;
}

.div-block-108 {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.div-block-109 {
  max-width: 50%;
}

.text-span-701 {
  font-weight: 600;
}

.image-20 {
  position: absolute;
  top: 13px;
  right: -16px;
}

.div-block-110 {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.div-block-111 {
  max-width: 50%;
}

.image-22 {
  position: absolute;
  top: 13px;
  right: -16px;
}

.div-block-113 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-left: 220px;
  display: flex;
}

.div-block-114, .div-block-115, .div-block-116, .div-block-117, .div-block-118 {
  text-align: left;
}

.div-block-119 {
  text-align: left;
  position: relative;
  left: 35px;
}

.div-block-121 {
  text-align: left;
  padding-left: 440px;
}

.div-block-122 {
  text-align: left;
}

.div-block-123 {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.div-block-124 {
  max-width: 50%;
}

.div-block-125, .div-block-126 {
  text-align: left;
}

.div-block-127 {
  text-align: left;
  position: relative;
  left: -20px;
}

.div-block-128 {
  grid-column-gap: 140px;
  grid-row-gap: 140px;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
  padding-left: 40px;
  display: flex;
}

.image-23 {
  position: absolute;
  top: 13px;
  right: -16px;
}

.body-3 {
  background-color: #fff;
}

.text-span-702, .text-span-703, .text-span-704, .text-span-705 {
  font-weight: 600;
}

.list-item-101, .list-item-102, .list-item-103, .list-item-104 {
  font-size: 20px;
}

.list-43 {
  height: auto;
  margin-top: 16px;
  margin-bottom: 20px;
}

.list-44 {
  height: auto;
  margin-top: 16px;
  margin-bottom: 40px;
}

.list-item-105, .list-item-106, .list-item-107, .list-item-109, .list-item-110, .list-item-111 {
  font-size: 20px;
}

.list-45 {
  height: auto;
  margin-bottom: 40px;
}

.text-span-714 {
  font-weight: 600;
}

.list-item-112, .list-item-113, .list-item-114, .list-item-115 {
  font-size: 20px;
}

.list-item-116, .list-item-117, .list-item-118, .list-item-119 {
  font-size: 20px;
  font-weight: 600;
}

.text-span-720, .text-span-721, .text-span-722, .text-span-723, .text-span-724, .text-span-725 {
  font-weight: 600;
}

.list-item-120, .list-item-121, .list-item-122 {
  font-size: 20px;
  font-weight: 600;
}

.div-block-134 {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.div-block-135 {
  max-width: 50%;
}

.div-block-136 {
  text-align: left;
}

.div-block-137 {
  text-align: left;
  position: relative;
  left: -15px;
}

.div-block-138, .div-block-139 {
  text-align: left;
}

.div-block-140 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  justify-content: space-around;
  align-items: center;
  margin-bottom: 40px;
  padding-left: 90px;
  padding-right: 130px;
  display: flex;
}

.div-block-141 {
  grid-column-gap: 320px;
  grid-row-gap: 320px;
  justify-content: flex-end;
  align-items: center;
  margin-top: 40px;
  padding-left: 0;
  padding-right: 60px;
  display: flex;
}

.grid-16 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}

.image-24 {
  position: absolute;
  top: 13px;
  right: -16px;
}

.div-block-143 {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.div-block-144 {
  max-width: 50%;
}

.div-block-145, .div-block-146, .div-block-147, .div-block-148, .div-block-149 {
  text-align: left;
}

.div-block-150 {
  grid-column-gap: 160px;
  grid-row-gap: 160px;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
  padding-left: 220px;
  display: flex;
}

.div-block-151 {
  grid-column-gap: 186px;
  grid-row-gap: 186px;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
  padding-left: 170px;
  display: flex;
}

.image-25 {
  position: absolute;
  top: 13px;
  right: -16px;
}

.body-4 {
  background-color: #fff;
}

.div-block-152 {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.div-block-153 {
  max-width: 50%;
}

.div-block-154 {
  text-align: left;
  position: relative;
  left: 75px;
}

.div-block-155 {
  text-align: left;
  position: relative;
  left: 15px;
}

.div-block-156 {
  text-align: left;
  position: relative;
  left: -60px;
}

.image-26 {
  position: absolute;
  top: 13px;
  right: -16px;
}

.body-5 {
  background-color: #fff;
}

.div-block-157 {
  grid-column-gap: 100px;
  grid-row-gap: 100px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.div-block-158 {
  max-width: 50%;
}

.div-block-159, .div-block-160 {
  text-align: left;
}

.div-block-161 {
  text-align: left;
  position: relative;
  left: 40px;
}

.image-27 {
  position: absolute;
  top: 13px;
  right: -16px;
}

.grid-17 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
}

.div-block-162 {
  grid-column-gap: 160px;
  grid-row-gap: 160px;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  padding-left: 170px;
  display: flex;
}

.body-6 {
  background-color: #fff;
}

.div-block-163 {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.div-block-164 {
  max-width: 50%;
}

.div-block-165 {
  text-align: left;
}

.div-block-166 {
  text-align: left;
  position: relative;
  left: 40px;
}

.div-block-167 {
  text-align: left;
  position: relative;
  left: 75px;
}

.div-block-169 {
  grid-column-gap: 130px;
  grid-row-gap: 130px;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  padding-left: 30px;
  display: flex;
}

.body-7 {
  background-color: #fff;
}

.div-block-170 {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.div-block-171 {
  max-width: 50%;
}

.div-block-172 {
  text-align: left;
  position: relative;
  left: 0;
}

.div-block-173 {
  text-align: left;
}

.div-block-174 {
  text-align: left;
  position: relative;
  left: 60px;
}

.div-block-175, .div-block-176 {
  text-align: left;
}

.div-block-177 {
  grid-column-gap: 100px;
  grid-row-gap: 100px;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  display: flex;
}

.div-block-178 {
  grid-column-gap: 170px;
  grid-row-gap: 170px;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  padding-left: 50px;
  display: flex;
}

.text-span-741 {
  font-weight: 600;
}

.div-block-185 {
  justify-content: space-between;
  margin-top: 0;
  margin-bottom: 20px;
  padding-left: 210px;
  display: flex;
}

.text-span-742, .text-span-743, .text-span-744, .text-span-745, .bold-text-80, .text-span-792 {
  font-weight: 600;
}

.image-30 {
  position: absolute;
  top: 13px;
  right: 0;
}

.div-block-190 {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.div-block-191 {
  width: 100%;
  max-width: 50%;
}

.div-block-192 {
  text-align: left;
  position: relative;
  left: 65px;
}

.div-block-193 {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
  position: relative;
  left: 10px;
}

.image-31 {
  position: absolute;
  top: 13px;
  right: -16px;
}

.div-block-195 {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.div-block-196 {
  max-width: 50%;
}

.div-block-197 {
  grid-column-gap: 140px;
  grid-row-gap: 140px;
  justify-content: center;
  align-items: center;
  padding-bottom: 20px;
  padding-left: 140px;
  display: flex;
}

.div-block-198 {
  position: relative;
  left: 100px;
}

.grid-19 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
}

.image-32 {
  position: absolute;
  top: 13px;
  left: auto;
  right: -16px;
}

.text-span-799, .text-span-800, .text-span-801, .text-span-802 {
  font-weight: 600;
}

.div-block-199 {
  text-align: left;
}

.div-block-200 {
  text-align: left;
  position: relative;
  left: 40px;
}

.div-block-201 {
  text-align: left;
  position: relative;
  left: 100px;
}

.div-block-202 {
  text-align: left;
}

.div-block-203 {
  text-align: left;
  position: relative;
  left: -20px;
}

.div-block-204 {
  text-align: left;
  position: relative;
  left: -90px;
}

.div-block-205 {
  grid-column-gap: 200px;
  grid-row-gap: 200px;
  justify-content: center;
  align-items: center;
  margin-top: 0;
  padding-bottom: 20px;
  padding-left: 160px;
  display: flex;
}

.image-33 {
  position: absolute;
  top: 13px;
  right: 0;
}

.div-block-206 {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.div-block-207 {
  max-width: 50%;
}

.blog-form_select {
  background-color: var(--moss-1000);
  width: 20%;
  height: auto;
  color: var(--white);
  border: 1px #000;
  border-radius: 20rem;
  flex: 1;
  margin-bottom: 0;
  padding: 1rem;
  font-family: DM Sans, sans-serif;
  font-size: 1.2em;
  font-weight: 500;
  line-height: 150%;
}

.blog-form_state-tag {
  text-transform: none;
}

.div-block-208 {
  grid-column-gap: 150px;
  grid-row-gap: 150px;
  justify-content: center;
  align-items: center;
  padding-left: 320px;
  display: flex;
}

.div-block-209 {
  position: relative;
  left: 10px;
}

.div-block-210 {
  position: relative;
  left: 70px;
}

.link-3 {
  color: var(--neon-1000);
  text-decoration: none;
}

.div-block-211 {
  grid-column-gap: 180px;
  grid-row-gap: 180px;
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.div-block-212 {
  grid-column-gap: 200px;
  grid-row-gap: 200px;
  justify-content: center;
  align-items: center;
  padding-left: 250px;
  display: flex;
}

.link-4 {
  color: var(--light-green);
  text-decoration: none;
}

.link-5 {
  color: var(--text--secondary);
}

.div-block-213 {
  grid-column-gap: 160px;
  grid-row-gap: 160px;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  padding-left: 70px;
  display: flex;
}

.div-block-214 {
  position: relative;
  left: -10px;
}

.image-34 {
  position: absolute;
  top: 13px;
  right: -16px;
}

.div-block-215, .div-block-216 {
  background-color: #f8f9fa;
  border: 1px solid #0000001a;
  border-radius: 20px;
  padding: 32px;
}

.div-block-217 {
  border: 1px solid #0000001a;
  border-radius: 20px;
  padding: 32px;
}

.div-block-219 {
  border: 1px solid #0000001a;
  border-radius: 20px;
  padding: 20px;
}

.div-block-220 {
  background-color: #f8f9fa;
  border: 1px solid #0000001a;
  border-radius: 20px;
  padding: 20px;
}

.div-block-222 {
  border: 1px solid #0000001a;
  border-radius: 20px;
  padding: 20px;
}

.paragraph-20 {
  color: var(--moss-1000);
  justify-content: center;
  align-items: center;
  padding-top: 40px;
  font-family: DM Sans, sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 28px;
  display: flex;
}

.div-block-223 {
  background-color: #f8f9fa;
  border: 1px solid #0000001a;
  border-radius: 20px;
  padding: 32px;
}

.div-block-224, .div-block-225 {
  border: 1px solid #0000001a;
  border-radius: 20px;
  padding: 32px;
}

.text-block-224 {
  display: none;
}

.text-span-804, .text-span-805, .bold-text-81, .text-span-806, .text-span-807, .text-span-813, .text-span-814, .text-span-821, .text-span-822 {
  font-weight: 600;
}

.text-block-225 {
  display: none;
}

.text-span-828, .text-span-829, .text-span-830, .text-span-831, .text-span-832, .text-span-833 {
  font-weight: 600;
}

.div-block-226 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 20px;
  padding-left: 0;
  display: flex;
}

.div-block-227 {
  grid-column-gap: 120px;
  grid-row-gap: 120px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  padding-left: 0;
  display: flex;
}

.text-block-226 {
  color: #1b4b47;
  text-align: center;
  margin-top: 64px;
  font-family: DM Sans, sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
}

.div-block-228 {
  grid-column-gap: 200px;
  grid-row-gap: 200px;
  justify-content: flex-start;
  align-items: center;
  padding-left: 448px;
  display: flex;
}

.div-block-229 {
  grid-column-gap: 200px;
  grid-row-gap: 200px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.div-block-230 {
  grid-column-gap: 160px;
  grid-row-gap: 160px;
  padding-left: 225px;
  display: flex;
}

.div-block-231 {
  grid-column-gap: 225px;
  grid-row-gap: 225px;
  margin-top: 20px;
  display: flex;
}

.text-span-880, .text-span-881, .text-span-882 {
  font-weight: 600;
}

.div-block-232 {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.div-block-233 {
  max-width: 50%;
}

.grid-21 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
}

.div-block-234 {
  grid-column-gap: 135px;
  grid-row-gap: 135px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  padding-left: 0;
  display: flex;
}

.div-block-235 {
  grid-column-gap: 180px;
  grid-row-gap: 180px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  padding-left: 0;
  display: flex;
}

.div-block-236 {
  text-align: left;
}

.div-block-237 {
  text-align: left;
  position: relative;
  left: -20px;
}

.div-block-238 {
  text-align: left;
}

.div-block-239 {
  text-align: left;
  position: relative;
  left: 27px;
}

.grid-22 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.div-block-240 {
  text-align: left;
  position: relative;
  left: -30px;
}

.image-35, .image-36, .image-37 {
  position: relative;
  left: -115px;
}

.text-block-227 {
  color: #4f5762;
  margin-top: 60px;
  font-family: DM Sans, sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
}

.text-span-886 {
  font-weight: 300;
}

.list-item-128 {
  color: var(--neutral-800);
  text-align: left;
  line-height: 140%;
}

.list-49 {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  flex-flow: row;
  justify-content: center;
  align-items: flex-start;
  margin-top: 40px;
  display: flex;
}

.div-block-246 {
  position: relative;
  left: 10px;
}

.div-block-247 {
  position: relative;
  left: -10px;
}

.div-block-248 {
  border: 1px solid #0000001a;
  border-radius: 20px;
  padding: 32px;
}

.div-block-252 {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.div-block-253 {
  max-width: 50%;
}

.grid-23 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
}

.div-block-254 {
  grid-column-gap: 160px;
  grid-row-gap: 160px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  display: flex;
}

.div-block-255 {
  grid-column-gap: 160px;
  grid-row-gap: 160px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-end;
  place-items: center;
  margin-top: 20px;
  padding-left: 0;
  display: flex;
}

.div-block-256 {
  text-align: left;
  position: relative;
  left: 5px;
}

.div-block-257 {
  text-align: left;
  position: relative;
  left: -20px;
}

.div-block-259 {
  text-align: left;
  position: relative;
  left: -8px;
}

.div-block-260 {
  text-align: left;
  position: relative;
  left: 15px;
}

.div-block-261 {
  text-align: left;
  position: relative;
  left: 10px;
}

.div-block-262 {
  text-align: left;
  position: relative;
  left: 36px;
}

.div-block-263 {
  grid-column-gap: 160px;
  grid-row-gap: 160px;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  display: flex;
}

.div-block-264 {
  text-align: left;
  position: relative;
  left: 35px;
}

.div-block-265 {
  text-align: left;
  position: relative;
  left: 60px;
}

.div-block-266 {
  text-align: left;
  position: relative;
  left: 120px;
}

.div-block-267 {
  grid-column-gap: 300px;
  grid-row-gap: 300px;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  padding-left: 100px;
  display: flex;
}

.div-block-268 {
  text-align: left;
  position: relative;
  left: 20px;
}

.div-block-269 {
  text-align: left;
}

.grid-24 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
}

.div-block-273 {
  background-color: #f8f9fa;
  border: 1px solid #0000001a;
  border-radius: 20px;
  padding: 20px;
}

.div-block-274 {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.div-block-275 {
  max-width: 50%;
}

.div-block-276 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  padding-left: 70px;
  display: flex;
}

.div-block-277 {
  grid-column-gap: 160px;
  grid-row-gap: 160px;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  padding-left: 20px;
  display: flex;
}

.div-block-278 {
  text-align: left;
}

.div-block-279 {
  text-align: left;
  position: relative;
  left: 149px;
}

.div-block-280 {
  text-align: left;
  position: relative;
  left: 287px;
}

.div-block-281 {
  text-align: left;
  position: relative;
  left: 0;
}

.div-block-282 {
  text-align: left;
  position: relative;
  left: 55px;
}

.div-block-283 {
  text-align: left;
  position: relative;
  left: 40px;
}

.text-span-894, .text-span-895, .text-span-896, .text-span-897, .text-span-898, .text-span-899 {
  font-weight: 600;
}

.div-block-284 {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.div-block-285 {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  max-width: 50%;
  display: flex;
}

.div-block-286 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  padding-left: 0;
  display: flex;
}

.div-block-287 {
  grid-column-gap: 56px;
  grid-row-gap: 56px;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  padding-left: 0;
  display: flex;
}

.div-block-288 {
  text-align: left;
}

.div-block-289 {
  text-align: left;
  position: relative;
  left: 75px;
}

.div-block-290 {
  text-align: left;
  position: relative;
  left: 100px;
}

.div-block-291 {
  text-align: left;
  position: relative;
  left: 40px;
}

.div-block-292 {
  text-align: left;
  position: relative;
  left: 150px;
}

.div-block-293 {
  text-align: left;
  position: relative;
  left: 126px;
}

.div-block-294 {
  text-align: left;
  position: relative;
  left: 220px;
}

.div-block-295 {
  grid-column-gap: 160px;
  grid-row-gap: 160px;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  padding-left: 0;
  display: flex;
}

.div-block-296 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  padding-left: 180px;
  display: flex;
}

.div-block-297 {
  text-align: left;
  position: relative;
  left: -80px;
}

.div-block-298 {
  text-align: left;
  position: relative;
  left: 6px;
}

.div-block-299 {
  text-align: left;
  position: relative;
  left: 75px;
}

.div-block-300 {
  text-align: left;
  position: relative;
  left: 286px;
}

.div-block-301 {
  grid-column-gap: 200px;
  grid-row-gap: 200px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.div-block-302 {
  justify-content: center;
  align-items: center;
  display: flex;
}

.div-block-303 {
  text-align: left;
  position: relative;
  left: -23px;
}

.div-block-304 {
  text-align: left;
  position: relative;
  left: 20px;
}

.div-block-305 {
  text-align: left;
  position: relative;
  left: 100px;
}

.div-block-306 {
  text-align: left;
  position: relative;
  left: 395px;
}

.div-block-307 {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.div-block-308 {
  max-width: 50%;
}

.div-block-309 {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.div-block-310 {
  max-width: 50%;
}

.div-block-311 {
  grid-column-gap: 160px;
  grid-row-gap: 160px;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  display: flex;
}

.div-block-312 {
  grid-column-gap: 36px;
  grid-row-gap: 36px;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  display: flex;
}

.div-block-313 {
  text-align: left;
  position: relative;
  left: 75px;
}

.div-block-314 {
  text-align: left;
  position: relative;
  left: 245px;
}

.div-block-315 {
  text-align: left;
  position: relative;
  left: 145px;
}

.div-block-316 {
  text-align: left;
  position: relative;
  left: 125px;
}

.div-block-317 {
  text-align: left;
  position: relative;
  left: 20px;
}

.div-block-318 {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.div-block-319 {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  max-width: 50%;
  display: flex;
}

.div-block-320 {
  grid-column-gap: 160px;
  grid-row-gap: 160px;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  display: flex;
}

.div-block-321 {
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  display: flex;
}

.div-block-322 {
  text-align: left;
  position: relative;
  left: 40px;
}

.div-block-323 {
  text-align: left;
  position: relative;
  left: 160px;
}

.div-block-324 {
  text-align: left;
  position: relative;
  left: 220px;
}

.div-block-325 {
  text-align: left;
  position: relative;
  left: 80px;
}

.div-block-326 {
  text-align: left;
  position: relative;
  left: 100px;
}

.div-block-327 {
  text-align: left;
  position: relative;
  left: 50px;
}

.div-block-328 {
  text-align: left;
  position: relative;
  left: 45px;
}

.div-block-329 {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  justify-content: center;
  align-items: center;
  max-width: 100%;
  display: flex;
}

.div-block-330 {
  max-width: 50%;
}

.div-block-331 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  display: flex;
}

.div-block-333 {
  text-align: left;
  position: relative;
  left: -128px;
}

.div-block-334 {
  text-align: left;
  position: relative;
  left: 50px;
}

.div-block-336 {
  text-align: left;
  position: relative;
  left: 150px;
}

.div-block-338 {
  text-align: left;
  position: relative;
  left: 35px;
}

.grid-26 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
}

.image-38 {
  position: relative;
  left: -78px;
}

.image-39 {
  position: relative;
  left: -170px;
}

.image-44 {
  position: relative;
  left: -40px;
}

.div-block-341 {
  grid-column-gap: 160px;
  grid-row-gap: 160px;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  display: flex;
}

.div-block-342 {
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  display: flex;
}

.div-block-343 {
  text-align: left;
  position: relative;
  left: -10px;
}

.div-block-344 {
  text-align: left;
  position: relative;
  left: -50px;
}

.div-block-345 {
  text-align: left;
  position: relative;
  left: 160px;
}

.div-block-346 {
  text-align: left;
  position: relative;
  left: 190px;
}

.grid-27 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}

.image-47 {
  position: relative;
  left: -80px;
}

.image-48 {
  position: relative;
  left: -140px;
}

.image-49 {
  position: relative;
  left: -270px;
}

.image-50 {
  position: relative;
  left: -260px;
}

.text-block-228 {
  color: #1b4b47;
  margin-top: 112px;
  font-family: DM Sans, sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 28px;
}

.body-8, .body-9 {
  background-color: #fff;
}

.heading-34 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: DM Sans, sans-serif;
  font-size: 45px;
  font-weight: 300;
}

.text-block-230 {
  color: #1b4b47;
  font-family: DM Sans, sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 28px;
}

.body-10 {
  background-color: #fff;
}

.heading-35 {
  color: var(--moss-1000);
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 0;
  font-family: DM Sans, sans-serif;
  font-size: 45px;
  line-height: 120%;
}

.text-block-231 {
  color: #1b4b47;
  font-family: DM Sans, sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 28px;
}

.body-11, .body-12, .body-13, .body-14, .body-15 {
  background-color: #fff;
}

.text-block-232 {
  display: none;
}

.body-16 {
  background-color: #fff;
}

.div-block-347 {
  grid-column-gap: 160px;
  grid-row-gap: 160px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.div-block-348 {
  justify-content: center;
  align-items: center;
  display: flex;
}

.div-block-349 {
  text-align: left;
  position: relative;
  left: -26px;
}

.div-block-350 {
  text-align: left;
  position: relative;
  left: -104px;
}

.div-block-351 {
  text-align: left;
  position: relative;
  left: -122px;
}

.div-block-352 {
  text-align: left;
  position: relative;
  left: 17px;
}

.div-block-353 {
  text-align: left;
  position: relative;
  left: 125px;
}

.div-block-354 {
  text-align: left;
  position: relative;
  left: 179px;
}

.div-block-355 {
  text-align: left;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.paragraph-21 {
  text-align: center;
  padding-top: 40px;
}

.div-block-356 {
  justify-content: center;
  align-items: center;
  display: flex;
}

.div-block-357 {
  text-align: left;
  position: relative;
  left: -65px;
}

.div-block-358 {
  text-align: left;
  position: relative;
  left: 100px;
}

.image-53 {
  position: relative;
  left: -65px;
}

.image-54 {
  position: relative;
  left: -80px;
}

.image-55 {
  position: relative;
  left: 20px;
}

.image-56 {
  position: relative;
  left: -128px;
}

.image-57 {
  position: relative;
  left: -65px;
}

.image-58 {
  position: relative;
  left: -74px;
}

.image-59 {
  position: relative;
  left: -140px;
}

.image-60 {
  position: relative;
  left: -59px;
}

.image-61 {
  position: relative;
  left: -116px;
}

.div-block-359 {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.div-block-360 {
  max-width: 50%;
}

.div-block-361 {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.div-block-362 {
  max-width: 50%;
}

.div-block-363 {
  grid-column-gap: 160px;
  grid-row-gap: 160px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.div-block-364 {
  justify-content: center;
  align-items: center;
  display: flex;
}

.div-block-365 {
  text-align: left;
  position: relative;
  left: 210px;
}

.div-block-366 {
  text-align: left;
  position: relative;
  left: 95px;
}

.div-block-367 {
  text-align: left;
  position: relative;
  left: 80px;
}

.div-block-368 {
  text-align: left;
  position: relative;
  left: 44px;
}

.div-block-369 {
  text-align: left;
  position: relative;
  left: 62px;
}

.div-block-370 {
  text-align: left;
  position: relative;
  left: 44px;
}

.div-block-371 {
  text-align: left;
  position: relative;
  left: 164px;
}

.body-17 {
  background-color: #fff;
}

.heading-36 {
  color: var(--moss-1000);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 45px;
  line-height: 120%;
}

.text-block-233 {
  color: #1b4b47;
  font-family: DM Sans, sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 28px;
}

.list-55 {
  margin-bottom: 24px;
}

.div-block-373 {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.div-block-374 {
  max-width: 50%;
}

.body-18 {
  background-color: #fff;
}

.div-block-375 {
  grid-column-gap: 160px;
  grid-row-gap: 160px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.div-block-376 {
  justify-content: center;
  align-items: center;
  display: flex;
}

.div-block-377 {
  text-align: left;
  position: relative;
  left: 20px;
}

.div-block-378 {
  text-align: left;
  position: relative;
  left: -38px;
}

.div-block-379 {
  text-align: left;
  position: relative;
  left: -74px;
}

.div-block-380 {
  text-align: left;
  position: relative;
  left: -38px;
}

.div-block-381 {
  text-align: left;
  position: relative;
  left: -62px;
}

.div-block-382 {
  text-align: left;
  position: relative;
  left: 65px;
}

.div-block-383 {
  text-align: left;
  position: relative;
  left: 140px;
}

.image-62 {
  position: relative;
  left: -80px;
}

.image-63 {
  position: relative;
  left: -98px;
}

.image-64 {
  position: relative;
  left: -125px;
}

.image-65, .image-66 {
  position: relative;
  left: -146px;
}

.image-67 {
  position: relative;
  left: -130px;
}

.image-68 {
  position: relative;
  left: -131px;
}

.div-block-385 {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.div-block-386 {
  max-width: 50%;
}

.text-block-234 {
  color: #1b4b47;
  margin-bottom: 24px;
  font-family: DM Sans, sans-serif;
  font-size: 45px;
  line-height: 54px;
}

.text-block-235 {
  color: #1b4b47;
  margin-bottom: 24px;
  font-family: DM Sans, sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 28px;
}

.text-block-236 {
  color: #1b4b47;
  margin-bottom: 24px;
  font-family: DM Sans, sans-serif;
  font-size: 32px;
  line-height: 120%;
}

.text-block-237 {
  color: #1b4b47;
  margin-bottom: 24px;
  font-family: DM Sans, sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 27px;
}

.body-19 {
  background-color: #fff;
}

.text-span-936, .text-span-937, .text-span-938 {
  font-weight: 600;
}

.div-block-387 {
  grid-column-gap: 73px;
  grid-row-gap: 73px;
  text-align: left;
  justify-content: center;
  align-items: center;
  margin-top: 60px;
  margin-bottom: 0;
  display: flex;
}

.div-block-388 {
  grid-column-gap: 160px;
  grid-row-gap: 160px;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  display: flex;
}

.div-block-389 {
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  display: flex;
}

.div-block-390 {
  text-align: left;
  position: relative;
  left: 98px;
}

.div-block-391 {
  text-align: left;
  position: relative;
  left: 26px;
}

.div-block-392 {
  text-align: left;
  position: relative;
  left: 17px;
}

.div-block-393 {
  text-align: left;
  position: relative;
  left: -53px;
}

.div-block-394 {
  text-align: left;
  position: relative;
  left: -32px;
}

.div-block-395 {
  text-align: left;
  position: relative;
  left: 95px;
}

.div-block-396 {
  text-align: left;
  position: relative;
  left: 200px;
}

.image-69 {
  position: relative;
  left: -62px;
}

.image-70 {
  position: relative;
  left: -71px;
}

.image-71 {
  position: relative;
  left: -107px;
}

.image-72 {
  position: relative;
  left: -80px;
}

.image-73 {
  position: relative;
  left: -98px;
}

.image-74, .image-75 {
  position: relative;
  left: -92px;
}

.text-span-939 {
  color: var(--neutral-800);
  font-weight: 600;
  text-decoration: none;
}

.text-span-940, .text-span-941, .text-span-942, .text-span-943, .text-span-944, .text-span-945, .text-span-946, .text-span-947 {
  font-weight: 600;
}

.text-block-238 {
  color: #1b4b47;
  text-align: center;
  margin-top: 112px;
  font-family: DM Sans, sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 28px;
}

.text-span-948 {
  font-size: 20px;
  font-weight: 600;
}

.list-item-132, .list-item-133 {
  margin-bottom: 24px;
  font-size: 20px;
}

.list-item-134 {
  margin-bottom: 24px;
}

.text-block-239 {
  color: #1b4b47;
  margin-bottom: 24px;
  font-family: DM Sans, sans-serif;
  font-size: 40px;
  line-height: 48px;
}

.text-span-949, .text-span-950 {
  font-weight: 600;
}

.text-span-951 {
  color: var(--moss-400);
}

.text-block-240 {
  color: #1b4b47;
  margin-bottom: 24px;
  font-family: DM Sans, sans-serif;
  font-size: 45px;
  line-height: 54px;
}

.text-block-241 {
  color: #1b4b47;
  margin-bottom: 24px;
  font-family: DM Sans, sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 28px;
}

.text-span-952, .text-span-953, .text-span-954, .text-span-955, .text-span-956, .text-span-957 {
  font-weight: 600;
}

.text-span-958 {
  color: #1b4b47;
  font-family: DM Sans, sans-serif;
  font-size: 32px;
  line-height: 120%;
}

.text-block-243 {
  text-align: center;
  margin-top: 60px;
}

.text-block-244 {
  color: var(--neutral-1000);
  text-align: center;
  font-family: DM Sans, sans-serif;
  font-size: 2.8125rem;
  font-weight: 400;
}

.paragraph-22 {
  text-align: center;
  margin-top: 40px;
  font-size: 20px;
  line-height: 28px;
}

.text-block-245 {
  color: var(--neutral-1000);
  text-align: center;
  font-family: DM Sans, sans-serif;
  font-size: 2.8125em;
  font-weight: 400;
  line-height: 120%;
  position: static;
}

.paragraph-23 {
  text-align: center;
  margin-top: 20px;
  font-size: 18px;
  line-height: 140%;
}

.div-block-397 {
  background-color: #fff;
}

.div-block-398 {
  margin-top: 100px;
  margin-bottom: 100px;
}

.heading-38 {
  margin-top: 0;
  margin-bottom: 16px;
  margin-right: 0;
  font-size: 38px;
}

.heading-38.is-white {
  color: #f9fafb;
  font-size: 3rem;
  font-weight: 400;
}

.image-76 {
  position: absolute;
  top: 13px;
  right: -16px;
}

.text-block-246 {
  color: #1b4b47;
  text-align: left;
  font-family: DM Sans, sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 140%;
}

.image-78 {
  text-align: left;
  margin-bottom: 15.9px;
  position: relative;
  left: 0;
}

.div-block-399 {
  background-color: #f8f9fa;
  border-radius: 20px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 302px;
  height: 400px;
  padding: 24px;
  display: flex;
}

.text-span-959 {
  font-weight: 500;
}

.div-block-400 {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  justify-content: center;
  align-items: flex-start;
  margin-top: 48px;
  margin-bottom: 24px;
  display: flex;
}

.text-block-247 {
  color: #1b4b47;
  text-align: left;
  width: 533px;
  height: 224px;
  font-family: DM Sans, sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 28px;
}

.heading-39 {
  color: var(--moss-1000);
  text-align: left;
  margin-bottom: 26px;
  font-size: 40px;
  line-height: 48px;
}

.div-block-401 {
  margin-top: 0;
}

.div-block-402 {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  justify-content: center;
  align-items: flex-start;
  margin-top: 100px;
  margin-bottom: 140px;
  display: flex;
}

.text-block-249 {
  color: #1b4b47;
  margin-bottom: 24px;
  font-family: DM Sans, sans-serif;
  font-size: 40px;
  line-height: 48px;
}

.text-span-960, .text-span-961 {
  font-weight: 600;
}

.text-block-250 {
  color: #1b4b47;
  margin-bottom: 24px;
  font-family: DM Sans, sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 27px;
}

.text-span-962, .text-span-963, .text-span-964 {
  font-weight: 600;
}

.list-item-135 {
  color: var(--moss-1000);
  font-size: 20px;
  font-weight: 400;
  line-height: 140%;
}

.text-span-965 {
  color: var(--moss-400);
}

.div-block-403 {
  grid-column-gap: 160px;
  grid-row-gap: 160px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.div-block-404 {
  text-align: left;
  position: relative;
  left: -74px;
}

.div-block-405 {
  text-align: left;
  position: relative;
  left: 35px;
}

.div-block-406 {
  text-align: left;
  position: relative;
  left: -17px;
}

.div-block-407 {
  text-align: left;
  position: relative;
  left: 8px;
}

.div-block-408 {
  text-align: left;
  position: relative;
  left: 17px;
}

.text-block-251 {
  color: #fff;
  margin-top: 24px;
  font-family: DM Sans, sans-serif;
  font-size: 20px;
  line-height: 28px;
}

.text-block-252 {
  color: #1b4b47;
  margin-bottom: 24px;
  font-family: DM Sans, sans-serif;
  font-size: 45px;
  line-height: 54px;
}

.text-block-253 {
  color: #1b4b47;
  margin-bottom: 24px;
  font-family: DM Sans, sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 28px;
}

.text-block-254 {
  color: #1b4b47;
  margin-bottom: 24px;
  font-family: DM Sans, sans-serif;
  font-size: 32px;
  line-height: 120%;
}

.text-span-969 {
  color: var(--moss-1000);
  line-height: 27px;
}

.text-span-970 {
  font-weight: 600;
}

.list-item-136 {
  line-height: 27px;
}

.body-20 {
  background-color: #fff;
}

.paragraph-26 {
  color: var(--moss-1000);
  font-weight: 700;
}

.div-block-412, .div-block-413 {
  justify-content: center;
  align-items: center;
  display: flex;
}

.grid-28 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
}

.div-block-414 {
  text-align: left;
  position: relative;
  left: -137px;
}

.div-block-415 {
  text-align: left;
  position: relative;
  left: -80px;
}

.dev-terms_rich-text strong {
  font-weight: 700;
}

.div-block-416 {
  text-align: left;
  position: relative;
  left: -8px;
}

.div-block-417 {
  text-align: left;
  position: relative;
  left: -95px;
}

.div-block-418 {
  text-align: left;
  position: relative;
  left: 56px;
}

.div-block-419 {
  text-align: left;
  position: relative;
  left: -59px;
}

.div-block-420 {
  text-align: left;
}

.div-block-421 {
  text-align: left;
  position: relative;
  left: 98px;
}

.div-block-422 {
  text-align: left;
  position: relative;
  left: 68px;
}

.div-block-423 {
  text-align: left;
  position: relative;
  left: 179px;
}

.image-96 {
  position: relative;
  left: -50px;
}

.image-97 {
  position: relative;
  left: -119px;
}

.image-98 {
  position: relative;
  left: -89px;
}

.image-99 {
  position: relative;
  left: -146px;
}

.image-100 {
  position: relative;
  left: -100px;
}

.image-101 {
  position: relative;
  left: -152px;
}

.image-102 {
  position: relative;
  left: -101px;
}

.image-103 {
  position: relative;
  left: -146px;
}

.image-104 {
  position: relative;
  left: -92px;
}

.image-105 {
  position: relative;
  left: -116px;
}

.text-block-255 {
  color: #1b4b47;
  margin-top: 100px;
  font-family: DM Sans, sans-serif;
  font-size: 32px;
  font-weight: 300;
  line-height: 28px;
}

.dev-terms-identation {
  padding-left: 2rem;
  display: inline-block;
}

.div-block-424 {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  justify-content: center;
  align-items: center;
  margin-top: 80px;
  display: flex;
}

.text-block-256 {
  color: #1b4b47;
  text-align: left;
  margin-bottom: 24px;
  font-family: DM Sans, sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 28px;
}

.text-span-971, .text-span-972, .text-span-973 {
  font-weight: 600;
}

.list-60 {
  padding-left: 35px;
}

.text-span-974, .text-span-975 {
  font-weight: 600;
}

.text-span-976 {
  color: var(--moss-400);
}

.text-span-978, .text-span-979, .text-span-980, .text-span-981, .text-span-982 {
  text-decoration: underline;
}

.text-block-257 {
  color: #fff;
  margin-top: 24px;
  font-family: DM Sans, sans-serif;
  font-size: 20px;
  line-height: 28px;
}

.text-block-258 {
  color: #1b4b47;
  margin-bottom: 24px;
  font-family: DM Sans, sans-serif;
  font-size: 45px;
  line-height: 54px;
}

.text-block-259 {
  color: #1b4b47;
  margin-bottom: 24px;
  font-family: DM Sans, sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 28px;
  text-decoration: none;
}

.text-span-983 {
  text-decoration: underline;
}

.text-block-260 {
  color: #1b4b47;
  margin-bottom: 24px;
  font-family: DM Sans, sans-serif;
  font-size: 32px;
  line-height: 120%;
}

.text-block-261 {
  color: #1b4b47;
  margin-bottom: 24px;
  font-family: DM Sans, sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 28px;
}

.text-span-984 {
  text-decoration: underline;
}

.list-item-137 {
  color: var(--moss-1000);
  line-height: 27px;
}

.text-span-985 {
  text-decoration: underline;
}

.text-span-986, .text-span-987, .text-span-988 {
  font-weight: 600;
}

.text-span-989, .text-span-990, .text-span-991 {
  text-decoration: underline;
}

.text-span-992, .text-span-993, .text-span-994, .text-span-995 {
  font-weight: 600;
}

.text-span-996 {
  text-decoration: underline;
}

.text-block-262 {
  color: #1b4b47;
  margin-top: 24px;
  font-family: DM Sans, sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 28px;
}

.grid-29 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
}

.div-block-425 {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  display: flex;
}

.div-block-427 {
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  display: flex;
}

.div-block-428 {
  text-align: left;
  position: relative;
  left: -80px;
}

.text-span-997, .text-span-998, .text-span-999, .text-span-1000, .text-span-1001, .text-span-1002, .text-span-1003 {
  text-decoration: underline;
}

.div-block-430 {
  text-align: left;
  position: relative;
  left: 32px;
}

.div-block-431 {
  text-align: left;
  position: relative;
  left: 260px;
}

.div-block-432 {
  text-align: left;
  position: relative;
  left: 164px;
}

.div-block-433 {
  text-align: left;
  position: relative;
  left: 26px;
}

.div-block-434 {
  text-align: left;
  position: relative;
  left: -53px;
}

.text-span-1004 {
  color: var(--neutral-800);
}

.text-span-1005 {
  text-decoration: underline;
}

.image-107 {
  position: relative;
  left: -40px;
}

.text-span-1006, .text-span-1007 {
  text-decoration: underline;
}

.image-108 {
  position: relative;
  left: -20px;
}

.text-span-1008, .text-span-1009, .text-span-1010, .text-span-1011, .text-span-1012 {
  text-decoration: underline;
}

.text-span-1013, .text-span-1014, .text-span-1015 {
  font-weight: 600;
}

.text-block-263 {
  color: #1b4b47;
  margin-bottom: 24px;
  font-family: DM Sans, sans-serif;
  font-size: 40px;
  font-weight: 300;
  line-height: 48px;
}

.text-span-1016, .text-span-1017, .text-span-1018 {
  text-decoration: underline;
}

.text-span-1019 {
  font-weight: 600;
}

.text-span-1020 {
  font-weight: 600;
  text-decoration: underline;
}

.text-span-1021 {
  text-decoration: underline;
}

.text-span-1022, .text-span-1023 {
  font-weight: 600;
}

.text-block-264 {
  color: #1b4b47;
  margin-bottom: 24px;
  font-family: DM Sans, sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 27px;
}

.text-span-1024, .text-span-1025, .text-span-1026, .text-span-1027 {
  text-decoration: underline;
}

.text-span-1027, .text-span-1029 {
  font-weight: 400;
}

.text-span-1030, .text-span-1031, .text-span-1032 {
  text-decoration: underline;
}

.text-span-1033 {
  color: var(--moss-400);
}

.text-block-265 {
  color: #fff;
  margin-top: 24px;
  font-family: DM Sans, sans-serif;
  font-size: 20px;
  line-height: 28px;
}

.image-110 {
  height: .6875rem;
  position: absolute;
  left: auto;
  right: 190px;
}

.image-111 {
  height: .6875rem;
  position: absolute;
  right: 180px;
}

.div-block-435 {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.div-block-436, .div-block-437 {
  max-width: 50%;
}

.paragraph-27 {
  color: var(--neutral-1000);
  font-size: 20px;
  line-height: 140%;
}

.text-span-1036, .text-span-1037, .text-span-1038, .text-span-1039, .text-span-1040, .text-span-1041, .text-span-1042, .text-span-1043, .text-span-1044, .text-span-1045, .text-span-1046, .text-span-1047, .text-span-1048, .text-span-1049, .text-span-1050, .text-span-1051, .text-span-1052, .text-span-1053, .text-span-1054, .text-span-1055, .text-span-1056, .text-span-1057, .text-span-1058, .text-span-1059, .text-span-1060, .text-span-1061, .text-span-1062, .text-span-1063, .text-span-1064, .text-span-1065, .text-span-1066, .text-span-1067, .text-span-1068, .text-span-1069, .text-span-1070, .text-span-1071, .text-span-1072, .text-span-1073, .text-span-1074 {
  text-decoration: underline;
}

.div-block-438 {
  flex: 1 0 auto;
  position: relative;
  overflow: clip;
}

.div-block-438.mobile {
  display: none;
}

.image-112 {
  border: 4px solid var(--moss-300);
  border-radius: 50%;
}

.flex-block-3 {
  grid-column-gap: 48px;
  grid-row-gap: 48px;
}

.flex-block-4 {
  grid-column-gap: 6px;
  grid-row-gap: 6px;
}

.image-113 {
  flex: none;
  width: 100%;
  max-width: none;
}

.flex-block-5 {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
}

.text-span-1075 {
  font-weight: 700;
}

.flex-block-6 {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
}

.flex-block-6.ryb {
  justify-content: center;
  align-items: flex-start;
}

.flex-block-6.ryb.home {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  justify-content: center;
  align-items: center;
  width: 60%;
}

.trio_background {
  z-index: -2;
  opacity: .23;
  filter: drop-shadow(0 0 7px #6be0b6);
  flex: 1 0 auto;
  width: 200%;
  max-width: none;
  position: absolute;
  inset: auto auto -23% -79%;
}

.flex-block-8 {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  align-items: center;
}

.flex-block-9 {
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: min(65% - 112px, 800px);
  margin-left: auto;
  margin-right: auto;
  padding-top: 48px;
}

.developers-hero {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  background-image: url('../images/developers-hero-background.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  flex-flow: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: stretch;
  height: 100vh;
  padding-left: 80px;
  padding-right: 80px;
  display: block;
}

.developers_main-wrapper {
  overflow: visible;
}

.dev_hero_container {
  height: calc(100% - 80px);
  display: flex;
}

.dev_hero_title {
  color: var(--white);
  margin-bottom: 0;
  font-size: 40px;
  font-weight: 500;
}

.dev_hero_title.new {
  font-size: 2.5em;
  line-height: 48px;
}

.text-span-1076 {
  color: var(--moss-300);
}

.dev_img_container {
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: min(65% - 112px, 800px);
  margin-left: auto;
  margin-right: auto;
  padding-top: 48px;
}

.section_why-palm {
  background-color: var(--moss-50);
}

.why-palm_phone-container {
  width: 50%;
  max-width: 60%;
  height: 100%;
  position: relative;
}

.why-palm_phone-container.new {
  max-width: none;
  position: static;
  overflow: hidden;
}

.why-palm_phone-image {
  flex: 0 auto;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}

.section_dev-scroll {
  background-color: var(--moss-1000);
  background-image: url('../images/developers-hero-background.webp');
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  padding: 160px 80px;
  position: static;
}

.section_palm-helps {
  background-color: var(--moss-1000);
  padding: 80px;
}

.palm-helps_wrapper {
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}

.palm-helps_p {
  color: var(--white);
  text-align: center;
  font-size: 2.5em;
  line-height: 48px;
}

.dev-scroll_header {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  justify-content: flex-start;
  align-items: center;
  padding-bottom: 80px;
  display: flex;
}

.dev-scroll_header-image {
  width: 64px;
}

.dev-scroll_header-title {
  color: var(--moss-300);
  letter-spacing: -2.5px;
  margin-bottom: 0;
  font-size: 64px;
  font-weight: 500;
  line-height: 100%;
}

.dev-scroll_header-title.fastest {
  font-size: 2.5em;
}

.dev-scroll_infor-card-title {
  color: var(--moss-300);
  margin-bottom: 0;
  font-size: 48px;
  font-weight: 500;
  line-height: 100%;
}

.dev-scroll_infor-card-title.new {
  letter-spacing: -1.5px;
}

.dev-scroll_infor-card-title.new.fastest {
  font-size: 2.5em;
  font-weight: 400;
}

.dev-scroll_infor-card-p {
  color: var(--white);
  margin-bottom: 0;
  font-size: 1.25em;
  font-weight: 400;
  line-height: 120%;
}

.onlyid_title-title {
  color: var(--moss-1000);
  flex: 0 auto;
  margin-bottom: 0;
  font-size: 3em;
  font-weight: 500;
  line-height: 100%;
}

.text-span-1077 {
  color: var(--moss-300);
}

.imap_wrapper {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.imap_text-container {
  background-image: none;
  background-repeat: repeat;
  background-size: auto;
  flex-flow: column;
  justify-content: center;
  align-items: stretch;
  width: 50%;
  display: flex;
}

.imap_text-container.new {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  width: 100%;
}

.imap_flex {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
}

.imap_title {
  width: 40%;
  color: var(--moss-300);
  margin-bottom: 0;
  font-size: 40px;
  font-weight: 500;
  line-height: 100%;
}

.imap_title.dev {
  font-size: 3rem;
}

.imap_list {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  flex-flow: column;
  width: 60%;
  display: flex;
}

.text-span-1078 {
  color: var(--white);
  font-weight: 500;
}

.bold-text-82 {
  font-weight: 500;
}

.section_imap {
  background-color: var(--moss-1000);
  background-image: url('../images/new-home-hero-jpin-the-alpha.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  flex-flow: column;
  justify-content: center;
  align-items: stretch;
  padding-left: 80px;
  padding-right: 80px;
  display: flex;
}

.section_imap.new {
  background-color: var(--moss-1000);
  background-image: none;
  flex-flow: column;
  justify-content: center;
  align-items: stretch;
  padding: 80px;
  display: flex;
}

.imap_img-container {
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: none;
  margin-left: auto;
  margin-right: auto;
  padding-top: 48px;
  position: relative;
}

.onlyid_spacer {
  flex: none;
  align-items: center;
  width: max(360px, 100vw - 140%);
  max-width: 500px;
  padding-left: 0;
  display: flex;
  position: absolute;
  left: min(0px, 1400px - 85vw);
}

.div-block-56-2 {
  flex: 1;
  align-items: center;
  display: flex;
  position: relative;
  overflow: visible;
}

.div-block-56-3 {
  align-items: center;
  width: 70%;
  display: flex;
  position: relative;
  right: -5%;
  overflow: visible;
}

.div-block-438-2 {
  flex: 1 0 auto;
  position: relative;
  overflow: clip;
}

.image-17-2 {
  width: 16%;
  max-width: none;
  position: absolute;
  top: 15%;
  left: 36.5%;
  right: 0%;
}

.image-16-2 {
  filter: drop-shadow(0 0 7px #6be0b6);
  flex: 1 0 auto;
  width: 100%;
  max-width: none;
  position: relative;
  left: auto;
  right: auto;
  overflow: clip;
}

.onlyid_title-container {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  background-image: none;
  background-repeat: repeat;
  background-size: auto;
  flex-flow: column;
  flex: 0 auto;
  order: 0;
  justify-content: center;
  align-self: auto;
  width: 40%;
  display: flex;
  position: relative;
}

.onlyid_title-container.new {
  width: 50%;
}

.onlyid_wrapper {
  grid-column-gap: 48px;
  grid-row-gap: 48px;
  flex-flow: row;
  justify-content: flex-start;
  align-items: stretch;
  padding-top: 80px;
  padding-bottom: 80px;
  display: flex;
  position: relative;
}

.onlyid_wrapper.new {
  padding-top: 160px;
  padding-bottom: 160px;
}

.palm-helps_logo {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  justify-content: center;
  align-items: center;
  display: flex;
}

.ph_logo-p {
  color: var(--white);
  font-size: 20px;
  font-weight: 500;
}

.img-scroll3 {
  border-radius: 48px;
  width: 100%;
  max-width: 650px;
  position: sticky;
  top: calc(100vh - 400px);
}

.div-block-440 {
  z-index: 1000000;
  position: fixed;
  inset: 0% auto auto 0%;
}

.dev-scroll_sticky {
  clear: none;
  width: 50%;
  height: 50vw;
  padding-top: 100px;
  position: sticky;
  top: calc(40vh - 250px);
}

.text-span-1079, .text-span-1080, .text-span-1081, .text-span-1082 {
  font-weight: 600;
}

.text-block-266 {
  color: #1b4b47;
  margin-bottom: 24px;
  font-family: DM Sans, sans-serif;
  font-size: 45px;
  line-height: 54px;
}

.text-block-267 {
  color: #1b4b47;
  margin-bottom: 24px;
  font-family: DM Sans, sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 28px;
}

.text-block-268 {
  color: #1b4b47;
  margin-bottom: 24px;
  font-family: DM Sans, sans-serif;
  font-size: 32px;
  line-height: 120%;
}

.text-span-1083 {
  line-height: 27px;
}

.body-21 {
  background-color: #fff;
}

.div-block-442 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  border: 1px solid #0000001a;
  border-radius: 20px;
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.paragraph-28 {
  color: var(--white);
  text-align: left;
  padding: 16px;
  font-weight: 700;
}

.paragraph-29 {
  color: var(--moss-1000);
  padding: 16px;
  font-weight: 700;
}

.paragraph-30 {
  padding: 16px;
}

.text-block-269 {
  color: #1b4b47;
  text-align: center;
  margin-bottom: 40px;
  font-family: DM Sans, sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 28px;
}

.text-span-1084, .text-span-1085 {
  font-weight: 600;
}

.div-block-444 {
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  display: flex;
}

.div-block-445 {
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  display: flex;
}

.div-block-446 {
  text-align: left;
  position: relative;
  left: -149px;
}

.div-block-447 {
  text-align: left;
  position: relative;
  left: -89px;
}

.div-block-448 {
  text-align: left;
  position: relative;
  left: 50px;
}

.div-block-449 {
  text-align: left;
  position: relative;
  left: -40px;
}

.div-block-451 {
  text-align: left;
  position: relative;
  left: 65px;
}

.div-block-452 {
  text-align: left;
  position: relative;
  left: 185px;
}

.image-117 {
  position: relative;
  left: -56px;
}

.image-118 {
  position: relative;
  left: 32px;
}

.image-119 {
  position: relative;
  left: 110px;
}

.image-120 {
  position: relative;
  left: 104px;
}

.text-span-1086 {
  font-weight: 600;
}

.text-block-270 {
  color: #1b4b47;
  margin-bottom: 24px;
  font-family: DM Sans, sans-serif;
  font-size: 40px;
  line-height: 48px;
}

.div-block-453 {
  border: 1px solid #0000001a;
  border-radius: 20px;
  padding: 32px;
}

.dev_hero_list {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  flex-flow: column;
  font-size: 1em;
  display: flex;
}

.text-block-271 {
  color: #1b4b47;
  margin-bottom: 24px;
  font-family: DM Sans, sans-serif;
  font-size: 45px;
  line-height: 54px;
}

.text-block-272 {
  color: #1b4b47;
  margin-bottom: 24px;
  font-family: DM Sans, sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 28px;
}

.text-block-273 {
  color: #1b4b47;
  margin-bottom: 24px;
  font-family: DM Sans, sans-serif;
  font-size: 32px;
  line-height: 120%;
}

.list-item-141 {
  line-height: 27px;
}

.body-22 {
  background-color: #fff;
}

.text-block-274 {
  color: #1b4b47;
  text-align: center;
  margin-bottom: 80px;
  font-family: DM Sans, sans-serif;
  font-size: 20px;
  line-height: 28px;
}

.div-block-454 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  border: 1px solid #0000001a;
  border-radius: 20px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.paragraph-31 {
  color: var(--white);
  padding: 16px;
  font-family: DM Sans, sans-serif;
  font-weight: 700;
}

.paragraph-32 {
  color: var(--green-1000);
  font-weight: 700;
}

.paragraph-33 {
  padding: 16px;
}

.text-block-275 {
  color: #1b4b47;
  flex-flow: row;
  justify-content: center;
  align-items: flex-end;
  margin-top: 80px;
  font-family: DM Sans, sans-serif;
  font-size: 32px;
  font-weight: 300;
  line-height: 28px;
  display: flex;
}

.div-block-455 {
  grid-column-gap: 100px;
  grid-row-gap: 100px;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
  margin-bottom: 56px;
  display: flex;
}

.text-block-276 {
  color: #1b4b47;
  text-align: center;
  font-family: DM Sans, sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 28px;
}

.text-block-277 {
  color: #1b4b47;
  margin-top: 100px;
  font-family: DM Sans, sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
}

.div-block-456 {
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  display: flex;
}

.div-block-457 {
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  display: flex;
}

.grid-30 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
}

.image-122 {
  position: relative;
  left: -50px;
}

.link-6 {
  color: var(--neutral-800);
}

.div-block-458 {
  text-align: left;
  position: relative;
  left: -167px;
}

.div-block-459 {
  text-align: left;
  position: relative;
  left: -113px;
}

.div-block-460 {
  text-align: left;
}

.div-block-461 {
  text-align: left;
  position: relative;
  left: 116px;
}

.div-block-462 {
  text-align: left;
  position: relative;
  left: 197px;
}

.div-block-463 {
  text-align: left;
  position: relative;
  left: -131px;
}

.div-block-464 {
  text-align: left;
  position: relative;
  left: -60px;
}

.div-block-465 {
  text-align: left;
  position: relative;
  left: 26px;
}

.div-block-466 {
  text-align: left;
  position: relative;
  left: 92px;
}

.image-123 {
  position: relative;
  left: -122px;
}

.image-124 {
  position: relative;
  left: -86px;
}

.image-125 {
  position: relative;
  left: -125px;
}

.image-126 {
  position: relative;
  left: -128px;
}

.image-127 {
  position: relative;
  left: -152px;
}

.image-128 {
  position: relative;
  left: -119px;
}

.image-129 {
  position: relative;
  left: -125px;
}

.image-130 {
  position: relative;
  left: -110px;
}

.div-block-467, .div-block-468 {
  justify-content: center;
  align-items: center;
  display: flex;
}

.grid-31 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.dev-scroll_left-container {
  grid-column-gap: 64px;
  grid-row-gap: 64px;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  width: 50%;
  display: flex;
}

.div-block-469 {
  text-align: left;
  position: relative;
  left: -110px;
}

.div-block-470 {
  text-align: left;
  position: relative;
  left: 260px;
}

.div-block-471 {
  text-align: left;
}

.image-131 {
  position: relative;
  left: -125px;
}

.image-132, .image-133 {
  position: relative;
  left: -100px;
}

.text-span-1087, .text-span-1088, .text-span-1089, .text-span-1090 {
  font-weight: 600;
}

.text-block-278 {
  color: #1b4b47;
  margin-bottom: 24px;
  font-family: DM Sans, sans-serif;
  font-size: 40px;
  line-height: 48px;
}

.text-span-1091 {
  color: var(--moss-400);
}

.text-block-279 {
  color: #fff;
  margin-top: 24px;
  font-family: DM Sans, sans-serif;
  font-size: 20px;
  line-height: 28px;
}

.text-block-280 {
  color: #1b4b47;
  margin-bottom: 24px;
  font-family: DM Sans, sans-serif;
  font-size: 45px;
  line-height: 54px;
}

.text-block-281 {
  color: #1b4b47;
  margin-bottom: 24px;
  font-family: DM Sans, sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 28px;
}

.div-block-472.padding {
  padding-top: 100px;
  padding-bottom: 100px;
  display: none;
}

.text-block-282 {
  color: #1b4b47;
  margin-bottom: 24px;
  font-family: DM Sans, sans-serif;
  font-size: 32px;
  line-height: 120%;
}

.list-item-142 {
  line-height: 27px;
}

.text-span-1092, .text-span-1093 {
  font-weight: 600;
}

.body-23 {
  background-color: #fff;
}

.text-block-283 {
  color: #1b4b47;
  text-align: center;
  margin-bottom: 80px;
  font-family: DM Sans, sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 28px;
}

.paragraph-34 {
  color: var(--white);
  padding: 16px;
  font-weight: 700;
}

.paragraph-35 {
  color: var(--green-1000);
  padding: 16px;
  font-weight: 700;
}

.paragraph-36 {
  color: var(--neutral-900);
  padding: 16px;
}

.text-block-284 {
  color: #1b4b47;
  text-align: center;
  margin-top: 60px;
  margin-bottom: 60px;
  font-family: DM Sans, sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 28px;
}

.text-span-1094 {
  font-weight: 600;
}

.text-block-285 {
  margin-top: 110px;
  font-family: DM Sans, sans-serif;
  font-size: 32px;
  font-weight: 500;
  line-height: 28px;
}

.div-block-473 {
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  display: flex;
}

.div-block-474 {
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  display: flex;
}

.grid-32 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
}

.div-block-475 {
  text-align: left;
  position: relative;
  left: -110px;
}

.div-block-476 {
  text-align: left;
  position: relative;
  left: -182px;
}

.image-134 {
  position: relative;
  left: -146px;
}

.div-block-477 {
  text-align: left;
  position: relative;
  left: 200px;
}

.div-block-478 {
  text-align: left;
  position: relative;
  left: 59px;
}

.image-135 {
  position: relative;
  left: -101px;
}

.image-136 {
  position: relative;
  left: -100px;
}

.heading-40 {
  color: var(--moss-1000);
  font-weight: 500;
  line-height: 40px;
}

.div-block-479 {
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  display: flex;
}

.div-block-480 {
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  display: flex;
}

.grid-33 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.image-137 {
  position: relative;
  left: -130px;
}

.image-138 {
  position: relative;
  left: -86px;
}

.div-block-481 {
  text-align: left;
  position: relative;
  left: 44px;
}

.div-block-482 {
  text-align: left;
  position: relative;
  left: 152px;
}

.div-block-483 {
  text-align: left;
  position: relative;
  left: -210px;
}

.text-span-1095 {
  font-weight: 600;
}

.text-block-286 {
  color: #1b4b47;
  margin-bottom: 24px;
  font-family: DM Sans, sans-serif;
  font-size: 32px;
  font-weight: 500;
  line-height: 28px;
}

.text-block-287 {
  color: #1b4b47;
  margin-bottom: 24px;
  font-family: DM Sans, sans-serif;
  font-size: 40px;
  line-height: 48px;
}

.div-block-484 {
  background-color: #f8f9fa;
  border: 1px solid #0000001a;
  border-radius: 20px;
  padding: 32px;
}

.text-block-288 {
  margin-bottom: 48px;
  font-family: DM Sans, sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 28px;
}

.text-span-1096 {
  color: var(--moss-400);
}

.text-block-289 {
  color: #042c2f;
  margin-bottom: 24px;
  font-family: DM Sans, sans-serif;
  font-size: 45px;
  line-height: 54px;
}

.text-block-290 {
  color: #1b4b47;
  margin-bottom: 24px;
  font-family: DM Sans, sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 28px;
}

.text-block-291 {
  color: #1b4b47;
  margin-bottom: 24px;
  font-family: DM Sans, sans-serif;
  font-size: 32px;
  line-height: 120%;
}

.text-block-292 {
  color: #1b4b47;
  margin-bottom: 24px;
  font-family: DM Sans, sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 27px;
}

.text-span-1097 {
  font-weight: 600;
}

.body-24 {
  background-color: #fff;
}

.text-span-1098, .text-span-1099, .text-span-1100 {
  font-weight: 600;
}

.text-block-293 {
  margin-top: 20px;
  padding-bottom: 24px;
  font-family: DM Sans, sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
}

.div-block-485 {
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  display: flex;
}

.div-block-486 {
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  display: flex;
}

.image-140 {
  position: relative;
  left: -110px;
}

.div-block-487 {
  text-align: left;
  position: relative;
  left: -210px;
}

.div-block-488 {
  text-align: left;
  position: relative;
  left: -98px;
}

.div-block-489 {
  text-align: left;
  position: relative;
  left: -19px;
}

.div-block-490 {
  text-align: left;
  position: relative;
  left: 137px;
}

.div-block-491 {
  text-align: left;
  position: relative;
  left: 230px;
}

.heading-41 {
  color: var(--moss-1000);
  font-size: 45px;
  font-weight: 500;
  line-height: 54px;
}

.grid-34 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}

.div-block-492 {
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  display: flex;
}

.div-block-493 {
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  display: flex;
}

.div-block-494 {
  text-align: left;
  position: relative;
  left: -270px;
}

.div-block-495 {
  text-align: left;
  position: relative;
  left: -60px;
}

.div-block-496 {
  text-align: left;
}

.div-block-497 {
  text-align: left;
  position: relative;
  left: 290px;
}

.image-141 {
  position: relative;
  left: -250px;
}

.text-span-1101, .text-span-1102, .text-span-1103 {
  font-weight: 600;
}

.text-block-294 {
  color: #1b4b47;
  margin-bottom: 24px;
  font-family: DM Sans, sans-serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 120%;
}

.text-span-1104 {
  font-weight: 600;
}

.list-item-143 {
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
}

.text-block-295 {
  color: #1b4b47;
  margin-bottom: 24px;
  font-family: DM Sans, sans-serif;
  font-size: 40px;
  line-height: 48px;
}

.text-span-1105, .text-span-1106, .text-span-1107 {
  font-weight: 600;
}

.div-block-498 {
  border: 1px solid #0000001a;
  border-radius: 20px;
  padding: 32px;
}

.text-span-1108 {
  color: var(--moss-400);
}

.body-25 {
  background-color: #fff;
}

.text-span-1109 {
  color: var(--moss-400);
}

.list-item-144, .list-item-145, .list-item-146, .list-item-147, .list-item-149, .list-item-150, .list-item-151, .list-item-152, .list-item-153 {
  font-size: 20px;
}

.text-block-296 {
  color: #1b4b47;
  margin-bottom: 24px;
  font-family: DM Sans, sans-serif;
  font-size: 20px;
  font-weight: 600;
}

.text-span-1110, .text-span-1111, .text-span-1112, .text-span-1113, .text-span-1114, .text-span-1115 {
  font-weight: 600;
}

.list-68 {
  padding-bottom: 24px;
}

.text-block-297 {
  color: #1b4b47;
  padding-bottom: 24px;
  font-family: DM Sans, sans-serif;
  font-size: 20px;
}

.text-span-1116 {
  color: var(--moss-400);
}

.text-span-1117, .text-span-1118 {
  font-weight: 600;
}

.text-block-298 {
  font-family: DM Sans, sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 140%;
}

.text-span-1119, .text-span-1120 {
  font-weight: 600;
}

.text-block-299 {
  margin-top: 60px;
  font-family: DM Sans, sans-serif;
  font-size: 20px;
  line-height: 140%;
}

.div-block-499 {
  text-align: left;
  position: relative;
  left: -125px;
}

.div-block-500 {
  text-align: left;
  position: relative;
  left: 155px;
}

.div-block-501 {
  text-align: left;
  position: relative;
  left: -40px;
}

.div-block-502 {
  text-align: left;
  position: relative;
  left: -230px;
}

.text-span-1122 {
  font-weight: 600;
}

.paragraph-37 {
  position: relative;
}

.div-block-503 {
  text-align: left;
  position: relative;
  left: -150px;
}

.div-block-504 {
  text-align: left;
  position: relative;
  left: 75px;
}

.grid-35 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
}

.image-142 {
  position: relative;
  left: -85px;
}

.image-143 {
  position: relative;
  left: -120px;
}

.image-144 {
  position: relative;
  left: -20px;
}

.image-145 {
  position: relative;
  left: 60px;
}

.link-8 {
  color: var(--text--secondary);
}

.text-block-300 {
  color: #1b4b47;
  margin-bottom: 24px;
  font-family: DM Sans, sans-serif;
  font-size: 45px;
  line-height: 54px;
}

.text-block-301 {
  color: #1b4b47;
  margin-bottom: 24px;
  font-family: DM Sans, sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 28px;
}

.text-block-302 {
  color: #1b4b47;
  margin-bottom: 24px;
  font-family: DM Sans, sans-serif;
  font-size: 32px;
  line-height: 120%;
}

.text-span-1123 {
  font-weight: 600;
}

.div-block-505 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  border: 1px solid #0000001a;
  border-radius: 20px;
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  margin-top: 20px;
  display: grid;
}

.body-26 {
  background-color: #fff;
}

.paragraph-38 {
  color: var(--white);
  padding: 16px;
  font-weight: 700;
}

.paragraph-39 {
  color: var(--moss-1000);
  padding: 16px;
  font-weight: 700;
}

.paragraph-40 {
  padding: 16px;
}

.div-block-506 {
  grid-column-gap: 64px;
  grid-row-gap: 64px;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 10px;
  padding-top: 38px;
  padding-bottom: 38px;
  display: flex;
}

.text-block-303 {
  color: #1b4b47;
  border: 1px solid #0000001a;
  border-radius: 20px;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 38px 39px;
  font-family: DM Sans, sans-serif;
  font-size: 20px;
  line-height: 28px;
  display: flex;
}

.text-span-1124, .text-span-1125, .text-span-1126, .text-span-1127, .text-span-1128, .text-span-1129 {
  font-weight: 600;
}

.div-block-507 {
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  display: flex;
}

.div-block-509 {
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  margin-bottom: 40px;
  display: flex;
}

.grid-36 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}

.div-block-510 {
  text-align: left;
  position: relative;
  left: 113px;
}

.div-block-511 {
  text-align: left;
  position: relative;
  left: -100px;
}

.div-block-512 {
  text-align: left;
  position: relative;
  left: 65px;
}

.div-block-513 {
  text-align: left;
  position: relative;
  left: 380px;
}

.text-span-1130, .text-span-1131, .text-span-1132, .text-span-1133 {
  font-weight: 600;
}

.text-block-304 {
  color: #1b4b47;
  margin-bottom: 24px;
  font-family: DM Sans, sans-serif;
  font-size: 40px;
  line-height: 48px;
}

.text-span-1134 {
  font-weight: 600;
}

.text-span-1135 {
  color: var(--moss-400);
}

.text-block-305 {
  color: #1b4b47;
  margin-bottom: 24px;
  font-family: DM Sans, sans-serif;
  font-size: 45px;
  font-weight: 400;
  line-height: 54px;
}

.text-block-306 {
  color: #1b4b47;
  margin-bottom: 24px;
  font-family: DM Sans, sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 28px;
}

.text-block-307 {
  color: #1b4b47;
  margin-bottom: 24px;
  font-family: DM Sans, sans-serif;
  font-size: 32px;
  line-height: 120%;
}

.text-span-1136, .text-span-1137, .text-span-1138, .text-span-1139, .text-span-1140 {
  font-weight: 600;
}

.body-27 {
  background-color: #fff;
}

.text-span-1141 {
  font-weight: 600;
}

.div-block-514 {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  margin-bottom: 40px;
  display: flex;
}

.div-block-515 {
  grid-column-gap: 52px;
  grid-row-gap: 52px;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  display: flex;
}

.text-span-1142, .text-span-1143, .text-span-1144, .text-span-1145, .text-span-1146 {
  font-weight: 600;
}

.text-span-1147, .text-span-1149 {
  color: var(--moss-400);
}

.text-span-1150, .text-span-1151, .text-span-1152, .text-span-1153 {
  font-weight: 600;
}

.body-28 {
  background-color: #fff;
}

.text-span-1154, .text-span-1155, .text-span-1156, .text-span-1157, .text-span-1158 {
  font-weight: 600;
}

.text-block-308 {
  color: #1b4b47;
  font-family: DM Sans, sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 28px;
}

.text-span-1159, .bold-text-83, .bold-text-84, .bold-text-85, .bold-text-86, .text-span-1160, .bold-text-87, .bold-text-88, .bold-text-89, .bold-text-90, .bold-text-91, .text-span-1161, .bold-text-92, .text-span-1162, .bold-text-93, .bold-text-94, .bold-text-95, .bold-text-96, .bold-text-97, .bold-text-98 {
  font-weight: 600;
}

.text-span-1163 {
  color: var(--moss-400);
}

.text-span-1165 {
  font-weight: 600;
}

.div-block-520 {
  text-align: left;
  position: relative;
  left: 116px;
}

.div-block-521 {
  text-align: left;
  position: relative;
  left: 68px;
}

.div-block-522 {
  text-align: left;
  position: relative;
  left: 360px;
}

.bold-text-99 {
  font-weight: 600;
}

.text-span-1167 {
  color: var(--moss-400);
}

.text-span-1168, .text-span-1169, .text-span-1170, .text-span-1171 {
  font-weight: 600;
}

.body-29 {
  background-color: #fff;
}

.text-span-1173, .text-span-1175, .text-span-1176, .text-span-1177 {
  font-weight: 600;
}

.div-block-524 {
  text-align: left;
  position: relative;
  left: 80px;
}

.div-block-525 {
  text-align: left;
  position: relative;
  left: 370px;
}

.div-block-526 {
  text-align: left;
  position: relative;
  left: -92px;
}

.div-block-527 {
  text-align: left;
  position: relative;
  left: 122px;
}

.text-span-1178, .text-span-1179, .bold-text-100, .bold-text-101, .bold-text-102, .bold-text-103, .bold-text-104, .bold-text-105 {
  font-weight: 600;
}

.text-span-1180 {
  color: var(--moss-400);
}

.body-30 {
  background-color: #fff;
}

.text-span-1181, .text-span-1182, .text-span-1183, .text-span-1184 {
  font-weight: 600;
}

.text-span-1185 {
  color: var(--neutral-800);
}

.text-span-1186, .text-span-1187, .text-span-1188 {
  font-weight: 600;
}

.div-block-528 {
  grid-column-gap: 120px;
  grid-row-gap: 120px;
  text-align: left;
  justify-content: center;
  align-items: center;
  display: flex;
}

.text-span-1189, .text-span-1190, .text-span-1191, .text-span-1192 {
  font-weight: 600;
}

.link-9 {
  color: var(--neutral-900);
}

.bold-text-106 {
  font-weight: 600;
}

.text-span-1193 {
  color: var(--moss-400);
}

.collection-list-wrapper-2, .imap_cards-container {
  display: none;
}

.div-block-533 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  border: 1px solid #0000001a;
  border-radius: 12px;
  grid-template-rows: auto auto auto auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.text-block-309 {
  color: var(--black);
  padding-top: 10px;
  padding-bottom: 10px;
  font-family: DM Sans, sans-serif;
  font-weight: 600;
}

.text-block-310 {
  color: var(--black);
  font-family: DM Sans, sans-serif;
  font-weight: 400;
}

.image-151 {
  object-fit: cover;
  border-radius: 48px;
  width: 100%;
  height: 1255px;
}

.div-block-534 {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.div-block-535 {
  text-align: left;
  width: 50%;
}

.div-block-536 {
  width: 50%;
}

.div-block-537 {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  justify-content: center;
  align-items: center;
  margin-top: 60px;
  display: flex;
}

.body-31 {
  background-color: #fff;
}

.dev-form {
  margin-bottom: 0;
  padding: 16px 32px 32px;
  position: relative;
}

.dev-form_container {
  background-color: var(--white);
  opacity: 0;
  border-radius: 24px;
  width: 40vw;
  height: auto;
  padding: 32px;
  transition-property: all;
  transition-duration: .3s;
  transition-timing-function: ease-out;
  display: none;
  position: fixed;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%)scale(.8);
}

.dev-form_input {
  border: 1px solid #d6d9de;
  border-radius: 12px;
  margin-bottom: 0;
  padding: 6px 16px;
}

.dev-form_label {
  color: #202327;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 500;
}

.dev-form_wrapper {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.dev-input_wrapper {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  flex-flow: column;
  width: 100%;
  display: flex;
}

.dev-submit_wrapper {
  justify-content: flex-end;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.dev-form_title_wrapper {
  width: 100%;
  padding-bottom: 16px;
  padding-left: 16px;
  padding-right: 16px;
  position: relative;
}

.dev-form_title {
  color: #202327;
  text-align: center;
  font-size: 32px;
  line-height: 36px;
}

.dev-form_close {
  cursor: pointer;
  display: inline;
  position: absolute;
  inset: 0% 0% auto auto;
}

.success-message {
  background-color: var(--transparent);
}

.text-block-311 {
  color: var(--moss-1000);
  font-size: 32px;
  line-height: 40px;
}

.nav-link-7 {
  color: var(--white);
  font-family: DM Sans, sans-serif;
  font-size: 16px;
  font-weight: 500;
  transition: all .25s;
}

.nav-link-7:hover {
  color: var(--white);
  font-weight: 700;
  text-decoration: none;
}

.nav-link-7.w--current {
  color: var(--white);
  text-decoration: none;
}

.ft-ml_container {
  background-color: var(--white);
  padding: 80px;
}

.collection-list-6 {
  flex-flow: wrap;
  justify-content: center;
  align-items: stretch;
  display: flex;
}

.pt-hero {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  background-color: var(--moss-1000);
  background-image: url('../images/pt-hero-bg.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  flex-flow: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: stretch;
  height: 100vh;
  padding-left: 80px;
  padding-right: 80px;
  display: block;
}

.pt-hero.ar {
  background-image: url('../images/ar-hero-bg.webp');
  overflow-x: clip;
}

.pt-hero_container {
  display: flex;
}

.pt-hero_title {
  color: var(--white);
  margin-bottom: 0;
  font-size: 40px;
  font-weight: 500;
}

.pt-hero_title.new {
  font-size: 48px;
  line-height: 100%;
}

.pt-hero_title.new.ar {
  font-size: 60px;
  line-height: 110%;
}

.text-span-1195 {
  color: var(--moss-300);
}

.text-block-312 {
  color: #1b4b47;
  margin-top: 24px;
  font-family: DM Sans, sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 28px;
}

.section_run-your-business {
  background-color: var(--moss-50);
}

.section_run-your-business.mobile {
  display: none;
}

.div-block-538 {
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  margin-bottom: 60px;
  display: flex;
}

.div-block-539 {
  text-align: left;
}

.div-block-540 {
  text-align: left;
  position: relative;
  left: 220px;
}

.image-152 {
  position: relative;
  left: -122px;
}

.image-153 {
  position: relative;
  left: -119px;
}

.div-block-541 {
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  display: flex;
}

.div-block-542 {
  text-align: left;
}

.div-block-543 {
  text-align: left;
  position: relative;
  left: -122px;
}

.image-154 {
  position: relative;
  left: -173px;
}

.div-block-544 {
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  display: flex;
}

.div-block-545 {
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  margin-bottom: 40px;
  display: flex;
}

.div-block-546 {
  text-align: left;
  position: relative;
  left: -161px;
}

.div-block-547 {
  text-align: left;
  position: relative;
  left: 20px;
}

.image-155 {
  position: relative;
  left: -47px;
}

.div-block-548 {
  text-align: left;
}

.image-156 {
  position: relative;
  left: -110px;
}

.image-157 {
  position: relative;
  left: -100px;
}

.div-block-549 {
  text-align: left;
  position: relative;
  left: 195px;
}

.image-158 {
  position: relative;
  left: -200px;
}

.div-block-552 {
  text-align: left;
}

.div-block-553 {
  text-align: left;
  position: relative;
  left: 83px;
}

.pt-ryb_table {
  padding-left: 55px;
  padding-right: 55px;
}

.py-ryb_table_content {
  background-color: var(--white);
  grid-template-rows: 1fr auto auto auto auto auto auto auto;
  grid-template-columns: 1.5fr .8fr 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: row;
  display: grid;
}

.div-block-556 {
  justify-content: center;
  align-items: flex-start;
  margin-bottom: 20px;
  display: flex;
}

.div-block-557 {
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  margin-bottom: 40px;
  display: flex;
}

.grid-37 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
}

.div-block-558 {
  text-align: left;
  position: relative;
  left: 107px;
}

.div-block-559 {
  text-align: left;
  position: relative;
  left: -26px;
}

.div-block-560 {
  text-align: left;
  position: relative;
  left: -100px;
}

.image-163 {
  position: relative;
  left: -340px;
}

.ryb-table_item {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  border-bottom: 1px solid #e6e9f5;
  flex-flow: column;
  padding: 20px 32px;
  display: flex;
}

.ryb-table_item.free {
  border-left: 1px solid #e6e9f5;
  justify-content: center;
  align-items: center;
}

.ryb-table_item.free.last {
  border-bottom-style: none;
}

.ryb-table_item.paid {
  border-bottom-color: var(--moss-300);
  background-color: var(--moss-1000);
  justify-content: center;
  align-items: center;
}

.ryb-table_item.paid.last {
  border-bottom-style: none;
}

.ryb-table_item.last {
  border-bottom-style: none;
  border-bottom-width: 0;
}

.ryb-table_item.header.paid.padding {
  justify-content: space-between;
  align-items: stretch;
  padding-top: 2px;
}

.ryb-table_item.header.paid.extends {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  border-bottom-style: none;
  border-bottom-width: 0;
  border-top-left-radius: 50px;
  border-top-right-radius: 50px;
  flex-flow: row;
  padding: 45px 28px 21px;
}

.ryb-table_item.header.padding {
  justify-content: space-between;
  align-items: stretch;
  padding: 28px;
}

.ryb-table_item.header.padding.border {
  border-left: 1px solid #e6e9f5;
}

.ryb-table_item.header.border-radius {
  justify-content: center;
  align-items: stretch;
}

.image-164 {
  position: relative;
  left: -59px;
}

.image-165 {
  position: relative;
  left: -149px;
}

.image-166 {
  position: relative;
  left: -161px;
}

.image-167 {
  position: relative;
  left: -62px;
}

.ryb-table_title {
  color: #252430;
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
}

.ryb-table_title.header {
  color: var(--moss-1000);
  font-size: 40px;
  font-weight: 500;
  line-height: 48px;
}

.ryb-table_title.header.free {
  color: #252430;
  text-align: center;
}

.ryb-table_title.header.free.addon {
  color: #858ba0;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
}

.ryb-table_title.header.free.addon.paid {
  color: var(--white);
  font-size: 20px;
  line-height: 24px;
}

.ryb-table_title.header.paid {
  color: var(--white);
  text-align: center;
  font-size: 56px;
}

.ryb-table_title.header.paid.extends {
  font-size: 48px;
  font-weight: 400;
  line-height: 120%;
}

.ryb-table_p {
  color: var(--neutral-600);
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
}

.ryb-table_p.header {
  font-size: 16px;
  line-height: 22px;
}

.ryb-table_img {
  width: 32px;
  height: 32px;
}

.ryb-table_img.extends {
  width: auto;
  height: 32px;
}

.ryb-table_img.extends.badge {
  height: 20px;
}

.pt-ryb_table_header {
  background-color: var(--white);
  border-top-left-radius: 50px;
  grid-template-rows: auto;
  grid-template-columns: 1.5fr .8fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.pt-ryb_table_header.extends {
  background-color: var(--transparent);
  grid-template-columns: 1.5fr .8fr 1fr;
}

.pt-ryb_badge {
  color: #202327;
  text-align: center;
  font-size: 30px;
  line-height: 120%;
}

.pt-ryb_badge.badge {
  line-height: 36px;
}

.pt-ryb_bwrapper {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.div-block-561 {
  border-left: 1px solid var(--transparent);
}

.pt-bd_wrapper {
  grid-column-gap: 48px;
  grid-row-gap: 48px;
  flex-flow: row;
  justify-content: flex-start;
  align-items: stretch;
  padding-top: 80px;
  padding-bottom: 80px;
  display: flex;
  position: relative;
}

.pt-bd_wrapper.new {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  padding-top: 80px;
  padding-bottom: 80px;
}

.pt-bd_wrapper.new.htf {
  padding-top: 80px;
  padding-bottom: 80px;
}

.section_pt-bd {
  background-color: var(--moss-50);
  padding-left: 80px;
}

.section_pt-bd.new {
  padding-right: 80px;
}

.section_pt-bd.new.htf {
  background-color: var(--white);
}

.pt-bd_container {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  background-image: none;
  background-repeat: repeat;
  background-size: auto;
  flex-flow: row;
  flex: 0 auto;
  order: 0;
  justify-content: flex-start;
  align-self: auto;
  align-items: center;
  width: 100%;
  display: flex;
  position: relative;
}

.pt-bd_container.htf {
  justify-content: center;
  align-items: center;
}

.pt-bd_title {
  color: var(--moss-1000);
  flex: 0 auto;
  margin-bottom: 0;
  font-size: 40px;
  font-weight: 500;
  line-height: 48px;
}

.pt-bd_title.htf {
  font-size: 45px;
  line-height: 120%;
}

.text-span-1196 {
  color: #37b98a;
}

.pt-bd_title-image {
  width: 64px;
  display: block;
}

.pt-bd_title-image.sp {
  display: none;
}

.pt-bd_cards {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.pt-bd_cards.ps {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
}

.pt-bd_card {
  padding-top: 40px;
  padding-bottom: 40px;
}

.pt-bd_card.padding-right {
  padding-right: 48px;
}

.pt-bd_card.padding-right.border-right {
  border-right: 1px solid #d9d9d980;
}

.pt-bd_card.padding-x {
  padding-left: 48px;
  padding-right: 48px;
}

.pt-bd_card.padding-x.border-right {
  border-right: 1px solid #d9d9d980;
}

.pt-bd_card.padding-left {
  padding-left: 48px;
}

.pt-bd_card.ps {
  background-color: var(--white);
  border-radius: 33px;
  flex-flow: column;
  justify-content: center;
  align-items: stretch;
  min-height: 280px;
  padding-left: 40px;
  padding-right: 40px;
  display: flex;
}

.pt-bd_card.ps.htf {
  background-color: var(--moss-50);
  justify-content: flex-start;
  align-items: center;
  min-height: auto;
  padding: 16px;
}

.pt-bd-card_title {
  color: #202327;
  font-size: 32px;
  font-weight: 500;
  line-height: 36px;
}

.pt-bd-card_title.htf {
  color: #065b4e;
  text-align: center;
  font-family: DM Sans, sans-serif;
  font-size: 20px;
  line-height: 140%;
}

.pt-bd-card_p {
  color: #202327;
  font-size: 18px;
  line-height: 24px;
}

.pt-bd-card_p.htf {
  color: #053c41;
  text-align: center;
  font-family: DM Sans, sans-serif;
  font-size: 16px;
  line-height: 150%;
}

.pt-bd-card_img {
  width: 56px;
}

.text-span-1197 {
  text-decoration: underline;
}

.text-span-1198 {
  color: #099465;
}

.pt-sp_scroll {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  width: 100%;
  display: flex;
  overflow-x: scroll;
}

.pt-sp-scroll_card {
  flex: none;
  width: 400px;
  height: 500px;
  position: relative;
  overflow: clip;
}

.pt-sp-scroll_text {
  flex-flow: column;
  width: 100%;
  padding: 49px;
  display: flex;
  position: relative;
  inset: auto 0% 0%;
}

.pt-sp-scroll_quotes {
  color: #64c9a4;
  font-size: 40px;
  font-weight: 600;
  line-height: 48px;
}

.pt-sp-scroll_title {
  color: var(--white);
  font-size: 24px;
  font-weight: 400;
  line-height: 28px;
}

.pt-sp-scroll_business {
  color: var(--white);
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
}

.pt-sp-scroll_owner {
  color: #adb3bd;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
}

.pt-sp-scroll_wrapper {
  background-image: linear-gradient(0deg, var(--moss-1000) 7%, #042c2f9c 44%, #042c2f7d 100%, var(--transparent));
  opacity: 0;
  border-radius: 20px;
  flex-flow: column;
  justify-content: flex-end;
  align-items: center;
  transition: opacity .3s ease-out;
  display: flex;
  position: absolute;
  inset: 0%;
}

.pt-sp-scroll_wrapper:hover {
  opacity: 100;
}

.jta_4-pad {
  height: 4px;
}

.jta_4-pad.p8 {
  height: 8px;
}

.pt-ryb-title_wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.pt-ryb-tag {
  color: var(--moss-1000);
  border: 1px solid #000;
  border-radius: 999px;
  padding-left: 8px;
  padding-right: 8px;
  font-size: 12px;
  font-weight: 700;
}

.pt-hero-img_container {
  background-image: url('../images/pt-hjero-cards.webp');
  background-position: 50%;
  background-repeat: repeat-y;
  background-size: contain;
  justify-content: center;
  align-items: center;
  width: 65%;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.pt-hero-img_container.act {
  background-image: url('../images/act-hero-cards.webp');
  background-size: contain;
  background-attachment: scroll;
}

.pt-hero-img_container.ar {
  background-image: none;
  max-width: 550px;
  height: auto;
}

.pt-hero_img {
  height: 100%;
  overflow: visible;
}

.pt-hero_card {
  width: 400px;
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  left: 0;
  right: 0;
}

.section_stay-proctected {
  background-color: var(--white);
}

.empty-state-3 {
  background-color: var(--transparent);
}

.columns-wrapper {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  justify-content: flex-start;
  align-items: stretch;
  display: flex;
}

.id-wrapper {
  width: 100%;
  max-width: 400px;
  position: relative;
}

.id-graphic-wrapper {
  justify-content: center;
  align-items: center;
  height: 100%;
  display: flex;
  position: absolute;
  top: 50%;
  left: 100%;
  transform: translate(0, -50%);
}

.centered-section {
  justify-content: center;
  align-items: flex-start;
  padding: 80px;
  display: flex;
}

.moss-section {
  background-color: var(--moss-50);
}

.id-column {
  flex: 1;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.other-image {
  object-fit: contain;
  max-width: none;
  height: 80%;
  display: block;
  overflow: visible;
}

.lines-image {
  z-index: -1;
  object-fit: cover;
  max-width: none;
  height: 100%;
  display: block;
  position: absolute;
  top: 50%;
  left: -75px;
  overflow: visible;
  transform: translate(0, -50%);
}

.id-content-column {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-flow: column;
  flex: 1;
  display: flex;
}

.id-card-image {
  z-index: 1;
  border-radius: 16px;
  width: 100%;
  position: relative;
}

.id-card-image.target-image {
  box-shadow: 0 8px 32px -8px #0006;
}

.content-centered {
  text-align: center;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.content-centered.homepage-hero {
  z-index: 2;
  position: relative;
}

.cards-wrapper {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 1280px;
  height: 480px;
  margin-top: -80px;
  display: flex;
  position: relative;
}

.new-home-card {
  border-radius: 16px;
  width: 320px;
  position: absolute;
  box-shadow: 0 4px 16px -4px #0000001a;
}

.new-home-card.hh1 {
  top: 0;
  left: 0;
}

.new-home-card.hh2 {
  bottom: 0;
  left: 0%;
  transform: translate(80%);
}

.new-home-card.hh3 {
  bottom: 0;
  right: 0%;
  transform: translate(-80%);
}

.new-home-card.hh4 {
  top: 0;
  right: 0;
}

.overflow-hidden {
  overflow: hidden;
}

.homepage-hero {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
}

.hero-home-content-wrapper {
  flex-flow: column;
  width: 100%;
  min-height: 1024px;
  display: flex;
}

.hero-home-content {
  flex-flow: column;
  flex: 1;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.hero-content {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-flow: column;
  flex: 1;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  display: flex;
}

.max-width-wrapper {
  max-width: 1280px;
}

.v-scroll-section-header {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-flow: row;
  display: flex;
}

.v-scroll-section-sticky {
  flex-flow: column;
  flex: 0 auto;
  justify-content: center;
  align-items: center;
  position: relative;
}

.v-scroll-section-content-wrapper {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
  position: relative;
}

.v-scroll-info-card {
  flex-flow: column;
  justify-content: center;
  align-items: stretch;
  min-height: 80vh;
  padding-top: 80px;
  padding-bottom: 80px;
  display: flex;
}

.v-scroll-content {
  flex-flow: column;
  flex: 1;
  display: flex;
}

.v-scroll-sticky-wrapper {
  flex-flow: column;
  flex: 1;
  justify-content: center;
  align-items: center;
  min-height: 80vh;
  display: flex;
  position: sticky;
  top: 0;
}

.v-scroll-image {
  object-fit: cover;
  border-radius: 40px;
  width: 100%;
  display: block;
}

.v-scroll-image-wrapper {
  width: 100%;
}

.v-scroll-image-wrapper.v-scroll-image-overlay {
  opacity: 0;
  position: absolute;
  top: 0;
}

.v-scroll-image-wrapper.v-scroll-image-overlay.z11 {
  z-index: 11;
}

.v-scroll-image-wrapper.v-scroll-image-overlay.z12 {
  z-index: 12;
}

.developers-background {
  background-image: url('../images/new-home-hero-jpin-the-alpha.webp');
  background-position: 0 0;
  background-size: cover;
}

.developers-background.centered-section.home {
  background-color: var(--moss-1000);
}

.image-168 {
  object-fit: cover;
  border-radius: 48px;
  height: 100%;
}

.image-169 {
  width: 345px;
  position: absolute;
  inset: auto -30px 100px auto;
}

.image-170 {
  width: 328px;
  position: absolute;
  top: 330px;
  left: -60px;
}

.image-171 {
  width: 237px;
  position: absolute;
  top: 100px;
  left: 20px;
}

.div-block-562 {
  text-align: left;
  position: relative;
  left: -35px;
}

.image-172 {
  position: relative;
  left: -60px;
}

.div-block-563 {
  text-align: left;
  position: relative;
  left: 40px;
}

.wh-subtitle {
  color: #4f5762;
  font-size: 18px;
  line-height: 24px;
}

.text-span-1199 {
  color: #202327;
}

.wt-image {
  width: 56px;
}

.pagination-couter-container {
  justify-content: center;
  align-items: center;
  font-family: DM Sans, sans-serif;
  font-size: 16px;
  display: flex;
}

.forms-pagination {
  flex-flow: row;
  justify-content: center;
  align-items: center;
}

.form-page-count {
  width: auto;
  margin-top: 0;
}

.bold-text-108 {
  font-weight: 400;
}

.act-hero {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  background-color: var(--moss-1000);
  background-image: url('../images/act-bg.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  flex-flow: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: stretch;
  height: 100vh;
  padding-left: 80px;
  padding-right: 80px;
  display: block;
}

.act-ps_btn-container {
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
}

.text-span-1200 {
  text-decoration: underline;
}

.section_hiw {
  background-color: var(--white);
  padding-left: 80px;
  padding-right: 80px;
}

.act-hiw_tiled-container {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  grid-template-rows: auto;
  grid-template-columns: auto 55%;
  grid-auto-columns: 1fr;
  grid-auto-flow: row;
  justify-content: center;
  justify-items: stretch;
  width: 100%;
  display: grid;
}

.act-hiw_tiled-cards {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: column;
  justify-content: center;
  align-items: stretch;
  display: flex;
}

.image-173.mobile {
  display: none;
}

.act-hiw_card {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  color: var(--transparent);
  background-color: #f7f8f9;
  border-radius: 24px;
  flex-flow: column;
  flex: 1;
  justify-content: center;
  align-items: flex-start;
  padding: 24px;
  display: flex;
}

.act-hiw_card.green {
  background-color: #ecfff8;
}

.hiw-card_title {
  color: #202327;
  margin-bottom: 24px;
  font-size: 32px;
  font-weight: 500;
  line-height: 36px;
}

.hiw-card_description {
  color: var(--black);
  margin-bottom: 24px;
  font-size: 24px;
  line-height: 28px;
}

.hiw-card_sub {
  color: var(--black);
  font-size: 20px;
  font-weight: 500;
  line-height: 24px;
}

.text-span-1201 {
  font-weight: 600;
}

.text-span-1202, .text-span-1203, .text-span-1204 {
  color: var(--neutral-1000);
  font-weight: 700;
}

.act-form_container {
  background-color: var(--white);
  opacity: 0;
  border-radius: 24px;
  width: 40vw;
  height: auto;
  padding: 32px;
  transition-property: all;
  transition-duration: .3s;
  transition-timing-function: ease-out;
  display: none;
  position: fixed;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%)scale(.8);
}

.text-span-1207 {
  color: #37b98a;
}

.ar-hero-card {
  z-index: 99;
  display: block;
  position: absolute;
  inset: -25% -20% auto auto;
}

.ar-hero-btn-container {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.ar-business_container {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.image-174 {
  max-width: 140px;
}

.ar-hero-business-text {
  color: var(--moss-100);
  font-family: DM Sans, sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 140%;
}

.ar-ps-card-icon {
  color: #042c2f;
  text-align: center;
  background-color: #baeeda;
  border-radius: 80px;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  font-family: DM Sans, sans-serif;
  font-size: 20px;
  font-weight: 600;
  display: flex;
}

.ar-ps-card-text {
  color: #053c41;
  font-size: 24px;
  font-weight: 400;
}

.ar-cta-p {
  color: var(--white);
  font-size: 18px;
  line-height: 150%;
}

.ar-war-img, .ar-tfc-img {
  border-radius: 56px;
  width: 100%;
  position: relative;
}

.ar-tfc-c {
  position: absolute;
  inset: 0% auto auto 0%;
}

.ar-tfc-c.c1 {
  height: 25%;
  inset: auto -15% 10% auto;
}

.ar-tfc-c.c2 {
  height: 12%;
  top: 5%;
  left: 10%;
}

.ar-tfc-c.c3 {
  box-sizing: content-box;
  -webkit-backdrop-filter: blur(35px);
  backdrop-filter: blur(35px);
  background-color: #d7ffa51a;
  background-image: linear-gradient(90deg, #93948e 15%, #d7ffa500 53%);
  border-radius: 78px;
  height: 9%;
  padding: 22px;
  inset: 50% auto auto -4%;
}

.ar-tfc-c.c3-pointer {
  z-index: 99;
  height: 7%;
  inset: auto auto 35% 45%;
}

.ar-tfc-text {
  font-size: 2vh;
}

.home-switcher-container {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex-flow: row;
  align-self: center;
  align-items: center;
  margin-left: 32px;
  margin-right: 32px;
  display: none;
}

.display-flex {
  justify-content: center;
  align-items: center;
  display: flex;
}

.nav-link-switcher {
  color: var(--neutral-1000);
  border-bottom: 2px #000;
  padding-bottom: 4px;
  padding-left: 12px;
  padding-right: 12px;
  font-family: DM Sans, sans-serif;
  font-size: 16px;
  font-weight: 300;
  text-decoration: none;
  transition: all .25s;
}

.nav-link-switcher:hover {
  text-decoration: none;
}

.nav-link-switcher.w--current {
  border-bottom: 2px solid var(--moss-600);
  color: var(--moss-600);
  padding-bottom: 4px;
  padding-left: 12px;
  padding-right: 12px;
  text-decoration: none;
}

.nav-link-switcher.switcher-on-transparent {
  color: var(--white);
  -webkit-text-stroke-width: 0px;
  border-bottom: 2px #fff0;
  padding-bottom: 4px;
  padding-left: 12px;
  padding-right: 12px;
  font-weight: 300;
}

.nav-link-switcher.switcher-on-transparent.w--current {
  color: var(--white);
  border-bottom: 2px solid #fff;
  padding-left: 12px;
  padding-right: 12px;
}

.hp-container {
  max-width: 1400px;
  padding: 4vw 36px;
}

.hp-container.hp-map {
  flex-flow: column;
  flex: 0 auto;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 0 0;
  display: flex;
  position: static;
  bottom: auto;
}

.hp-container.hp-hero-over-map {
  margin-bottom: -35px;
  padding-top: 1vh;
  padding-bottom: 0;
}

.hp-container.hp-grow {
  flex: 1;
  max-width: 1300px;
}

.hp-h1-light {
  width: auto;
  color: var(--white);
  font-size: 4rem;
  font-weight: 500;
}

.hp-h1-light.hp-hero-h1 {
  text-align: center;
  letter-spacing: -1.8px;
  word-break: normal;
  max-width: 10em;
  margin-bottom: 0;
  margin-right: 0;
  font-size: 4.5rem;
  line-height: 100%;
  position: relative;
}

.hp-hero-description {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-flow: column;
  flex: 1;
  justify-content: flex-start;
  align-items: center;
  max-width: 36rem;
  display: flex;
}

.hp-hero-section {
  object-fit: fill;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  height: calc(100vh - 80px);
  display: flex;
  position: relative;
  overflow: hidden;
}

.hp-hero-center {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  z-index: 5;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.hp-network-graphic {
  z-index: 1;
  background-image: url('../images/map-composition.webp');
  background-position: 50% 100%;
  background-repeat: no-repeat;
  background-size: auto 100%;
  background-attachment: scroll;
  flex: none;
  align-self: stretch;
  width: auto;
  height: 50vh;
  position: relative;
  inset: auto auto 0;
}

.hp-network-face {
  background-color: var(--moss-800);
  z-index: 2;
  border: 1px solid #ffffff80;
  border-radius: 8px;
  width: 105px;
  height: 115px;
  position: absolute;
}

.hp-network-face.hp-face-tl {
  background-image: url('../images/hp-5.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  top: auto;
  bottom: 65%;
  left: 7%;
}

.hp-network-face.hp-face-tr {
  background-image: url('../images/hp-1.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: scroll;
  top: auto;
  bottom: 65%;
  right: 7%;
}

.hp-network-face.hp-face-br {
  background-image: url('../images/scroll-img-1.webp');
  background-position: 0 0;
  background-size: cover;
  bottom: 17%;
  right: 20%;
}

.hp-network-face.hp-face-bl {
  background-image: url('../images/hp-2.webp');
  background-position: 50%;
  background-size: cover;
  bottom: 17%;
  left: 20%;
}

.hp-network-face.hp-face-cn {
  backface-visibility: visible;
  z-index: 2;
  background-image: url('../images/hp-3.webp');
  background-position: 114% 10%;
  background-size: cover;
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  bottom: 37%;
  left: 50%;
  right: 50%;
  transform: translate(-50%, -50%);
}

.hp-network-institution {
  grid-column-gap: 7px;
  grid-row-gap: 7px;
  background-color: var(--moss-50);
  object-fit: fill;
  z-index: 2;
  border-radius: 6px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: center;
  padding: 6px 10px;
  display: inline-flex;
}

.hp-network-institution.hp-institution-bcn {
  width: 87px;
  display: flex;
  position: absolute;
  bottom: 20%;
  left: 50%;
  right: 50%;
  transform: translate(-50%, -50%);
}

.hp-network-institution.hp-institution-tcn {
  grid-column-gap: 7px;
  grid-row-gap: 7px;
  object-fit: fill;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 70px;
  display: flex;
  position: absolute;
  inset: auto 50% 77%;
  transform: translate(-50%, -50%);
}

.hp-network-institution.hp-institution-left {
  position: absolute;
  bottom: 54%;
  left: 27%;
}

.hp-network-institution.hp-institution-right {
  position: absolute;
  bottom: 54%;
  left: auto;
  right: 27%;
}

.hp-dark-text {
  color: var(--moss-1000);
}

.hp-dark-text.hero-pill {
  font-size: 12px;
  font-weight: 300;
  line-height: 14px;
}

.hp-network-logo {
  flex: 0 auto;
  width: 30px;
}

.hp-palm-helps-text {
  width: 23em;
  max-width: 90vw;
  color: var(--neutral-1100);
  text-align: center;
  font-size: 40px;
  line-height: 46px;
}

.hp-palm-helps-wrapper {
  grid-column-gap: 7px;
  grid-row-gap: 7px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  padding-top: 130px;
  padding-bottom: 130px;
  display: flex;
  overflow: hidden;
}

.hp-product {
  justify-content: center;
  align-items: flex-start;
  height: 250vh;
  display: flex;
  position: static;
}

.hp-product.no-scroll {
  height: auto;
}

.hp-product-wrapper {
  flex-flow: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding-top: 7vh;
  padding-bottom: 7vh;
  display: flex;
}

.hp-product-color-bg {
  border-radius: 24px;
  justify-content: center;
  align-items: center;
  width: calc(100% - 24px);
  height: 100vh;
  margin-top: 12px;
  margin-bottom: 12px;
  display: flex;
  position: sticky;
  top: 0;
}

.hp-product-color-bg.hp-color-monitoring {
  background-color: var(--moss-1000);
  background-image: url('../images/stats-block-bg.jpg');
  background-position: 50% 0;
  background-size: cover;
  height: 70vh;
}

.hp-product-color-bg.hp-color-1-trans {
  background-color: var(--moss-400);
  overflow: hidden;
}

.hp-product-color-bg.hp-color-2-trans {
  background-color: var(--moss-100);
  overflow: hidden;
}

.hp-product-color-bg.hp-color-3-trans {
  background-color: var(--moss-1000);
  overflow: hidden;
}

.hp-product-small-title {
  color: var(--neutral-1050);
  font-size: 24px;
  font-weight: 400;
  line-height: 30px;
}

.hp-product-small-title.is-white {
  color: var(--white);
}

.hp-product-big-title {
  color: var(--neutral-1100);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 40px;
  font-weight: 500;
  line-height: 40px;
}

.hp-product-big-title.hp-color-monitoring {
  color: var(--moss-50);
}

.hp-product-big-title.is-white {
  color: var(--white);
}

.hp-product-left {
  grid-column-gap: 21px;
  grid-row-gap: 21px;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  max-width: 36em;
  display: flex;
}

.hp-product-left.desc {
  color: var(--neutral-1100);
  font-size: 20px;
  font-weight: 400;
}

.hp-product-left.desc.is-white {
  color: var(--white);
  line-height: 24px;
}

.hp-prod-comp-bg {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  background-color: var(--moss-1000);
  border-radius: 16px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 460px;
  height: 620px;
  padding-left: 0;
  padding-right: 0;
  display: flex;
  position: relative;
}

.hp-prod-comp-title {
  font-size: 24px;
  font-weight: 600;
  line-height: 30px;
}

.hp-prod-comp-desc {
  color: var(--white);
  font-size: 20px;
  font-weight: 200;
  line-height: 22px;
}

.hp-prod-comp-text {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  background-color: #0000;
  flex-flow: column;
  flex: none;
  order: 0;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-self: auto;
  align-items: flex-start;
  width: 100%;
  height: 9em;
  padding-top: 10px;
  padding-left: 44px;
  padding-right: 44px;
  display: block;
  position: relative;
  left: 0;
  right: 0;
}

.hp-car-img {
  border-radius: 16px;
}

.hp-car-img.is-1, .hp-car-img.is-2 {
  position: absolute;
}

.hp-prod-comp-img-wrap {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  background-color: #0000;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
}

.z-1 {
  z-index: -1;
}

.comp-text {
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  opacity: 1;
  flex-flow: column;
  flex: none;
  justify-content: center;
  align-items: flex-start;
  padding-left: 30px;
  padding-right: 30px;
  display: flex;
  position: absolute;
  left: 0;
  right: 0;
}

.comp-text.is-1 {
  background-color: #0000;
}

.comp-text.is-2 {
  opacity: 0;
  background-color: #0000;
}

.comp-text.is-3 {
  opacity: 0;
}

.hp-pagination {
  background-color: #0003;
  border-radius: 4px;
  width: 42px;
  height: 8px;
}

.hp-pagination.wrap {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  background-color: #0000;
  width: auto;
  display: flex;
  position: absolute;
  top: -20px;
}

.radar-comp {
  background-color: var(--moss-1000);
  margin-right: -156px;
  position: relative;
}

.radar-bg {
  width: 100%;
  max-width: 80vw;
  position: absolute;
  inset: 0;
}

.radar-bg-wrapper {
  width: 751px;
  max-width: 80vw;
  height: 749px;
  margin-right: 0;
}

.div-block-570 {
  width: 300px;
}

.radar-card {
  z-index: 1;
  position: absolute;
  top: 10%;
}

.stats-block-wrap {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 30vw;
  min-width: 350px;
  height: 25em;
  display: grid;
}

.stats-block {
  background-color: var(--moss-300);
  border-radius: 8px;
  padding: 20px 30px 20px 25px;
}

.hp-stat-title {
  font-size: 36px;
  line-height: 100%;
}

.hp-stat-desc {
  font-size: 20px;
  line-height: 120%;
}

.hp-stat-wrapper {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  color: var(--neutral-1100);
  flex-flow: column;
  display: flex;
}

.hide-on-desktop {
  display: none;
}

.code-embed {
  pointer-events: none;
  z-index: 1;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.hp-test {
  background-color: var(--neutral-700);
}

.dns-body {
  background-color: #f9fafb;
}

.section-6 {
  grid-column-gap: 56px;
  grid-row-gap: 56px;
  flex-flow: column;
  padding-top: 0;
  display: flex;
}

.dns-form-field {
  border: 1px solid var(--neutral-400);
  color: #202327;
  border-radius: 12px;
  min-height: 40px;
  margin-bottom: 0;
  font-family: DM Sans, sans-serif;
  box-shadow: 0 1px 3px -1px #0000001a;
}

.dns-form-label {
  color: #202327;
  margin-bottom: 4px;
  font-family: DM Sans, sans-serif;
  font-weight: 400;
}

.dns-form {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: column;
  align-items: stretch;
  width: 100%;
  display: flex;
}

.dns-form-submit {
  background-color: var(--moss-1000);
  color: #fff;
  border-radius: 100px;
  align-self: flex-start;
  width: 160px;
  padding: 10px 20px;
  font-family: DM Sans, sans-serif;
  font-weight: 700;
}

.flex-block-13 {
  padding-left: 80px;
  padding-right: 80px;
}

.dns-heading {
  color: var(--moss-1000);
  margin-top: 0;
  margin-bottom: 16px;
  font-size: 40px;
  font-weight: 500;
  line-height: 48px;
}

.dns-subtitle {
  color: #4f5762;
  max-width: 700px;
  margin-bottom: 24px;
  font-family: DM Sans, sans-serif;
  font-size: 16px;
  line-height: 22px;
}

.form-block-3 {
  width: 100%;
}

.flex-block-14, .flex-block-15 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: row;
}

.div-block-571, .div-block-572, .div-block-573, .div-block-574 {
  flex: 1;
}

.dns-select-field {
  color: #202327;
  background-color: #fff;
  border: 1px solid #d6d9de;
  border-radius: 12px;
  min-height: 40px;
  box-shadow: 0 1px 3px -1px #0003;
}

.dns-select-field.hidden {
  display: none;
}

.text-block-313 {
  color: #202327;
  margin-bottom: 16px;
  font-family: DM Sans, sans-serif;
}

.success-message-2 {
  border: 1px solid var(--moss-300);
  background-color: #fff;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 4px 6px #0000000d;
}

.text-span-1210, .text-span-1211, .text-span-1212, .text-span-1213, .text-span-1214, .text-span-1215, .text-span-1216, .text-span-1217, .text-span-1218 {
  text-decoration: underline;
}

.text-span-1219 {
  font-weight: 700;
}

.bold-text-109, .bold-text-110, .bold-text-111, .bold-text-112, .bold-text-113, .bold-text-114, .bold-text-115, .bold-text-116, .bold-text-117, .bold-text-118, .bold-text-119, .bold-text-120, .bold-text-121, .bold-text-122, .bold-text-123, .bold-text-124, .bold-text-125, .bold-text-126, .bold-text-127, .bold-text-128, .bold-text-129, .bold-text-130 {
  font-weight: 600;
}

.fabric-bg {
  background-color: var(--transparent);
}

.fabric-anim {
  aspect-ratio: auto;
  object-fit: fill;
  background-color: #0e313100;
  border: 1px #0000;
  border-radius: 16px;
  flex-flow: column;
  order: 0;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 0;
  display: flex;
  position: static;
  overflow: hidden;
}

.image-180 {
  z-index: 0;
  position: absolute;
  top: 0;
}

.code-embed-2 {
  z-index: 1;
  width: 100%;
  max-width: 1027px;
  position: absolute;
}

.image-181 {
  z-index: 2;
  position: absolute;
}

.feb-section-r {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  flex-flow: column;
  flex: auto;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  display: flex;
  overflow: hidden;
}

.feb-section-r.wider-spacing {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
}

.feb-section-r.test {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
}

.feb-section-r.globe-container-r {
  overflow: visible;
}

.feb-section-r.announcement {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
}

.feb-section-l {
  width: 140px;
  padding-top: 0;
}

.feb-section {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  background-color: #032c2e;
  padding: 120px 80px;
  display: block;
  position: relative;
  overflow: hidden;
}

.feb-section.light {
  border-bottom: 1px solid var(--neutral-300);
  background-color: var(--white);
  padding-top: 160px;
  padding-bottom: 160px;
}

.feb-section.light.test {
  padding-top: 160px;
  padding-bottom: 160px;
}

.feb-section.grid-large {
  background-color: #022526;
  padding-top: 160px;
  padding-bottom: 160px;
}

.feb-section.grid-large.test {
  padding-top: 160px;
  padding-bottom: 200px;
}

.feb-section.grid-large.hero-section {
  z-index: 5;
  background-color: var(--transparent);
  margin-top: auto;
  margin-bottom: auto;
}

.feb-section.last, .feb-section.last.test {
  padding-top: 160px;
  padding-bottom: 160px;
}

.feb-section.offwhite {
  background-color: var(--neutral-50);
}

.feb-section.offwhite.test {
  padding-top: 160px;
  padding-bottom: 160px;
}

.feb-content {
  z-index: 2;
  grid-column-gap: 5rem;
  grid-row-gap: 5rem;
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  padding-right: 0;
  display: flex;
  position: relative;
}



.feb-content.globe-container {
  overflow: visible;
}

.div-block-575 {
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
}

.feb-h6-left-title {
  color: var(--neutral-500);
  letter-spacing: normal;
  margin-top: .5rem;
  font-size: 18px;
  font-weight: 300;
  line-height: 28px;
}

.feb-h6-left-title.test {
  font-size: 18px;
  line-height: 26px;
}

.link-button {
  background-color: var(--transparent);
  color: var(--moss-1000);
  flex: 0 auto;
  align-self: center;
  padding-top: 0;
  padding-left: 0;
  padding-right: 0;
  font-size: 18px;
  line-height: 28px;
  text-decoration: underline;
  display: block;
}

.link-button.test {
  font-size: 18px;
}

.link-button.announcement {
  color: var(--white);
  text-decoration: none;
}

.link-button.announcement.nav {
  color: var(--moss-1000);
  font-size: 1rem;
  font-weight: 500;
  line-height: 24px;
}

.link-button.announcement.nav.inverted {
  color: var(--moss-1000);
}

.feb-h6 {
  letter-spacing: -.3px;
  font-size: 24px;
  font-weight: 300;
  line-height: 32px;
}

.network-block-wrapper {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.globe {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  aspect-ratio: 1;
  object-fit: fill;
  background-image: radial-gradient(circle, #defff312 45%, #032c2e5e);
  border-radius: 50%;
  flex: 0 auto;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 690px;
  height: 100%;
  display: flex;
  position: relative;
  overflow: hidden;
}

.div-block-577 {
  height: 100%;
  display: flex;
  position: static;
}

.image-182 {
  width: auto;
  max-width: 200%;
  height: 100%;
}

.image-183 {
  max-width: 800%;
  height: 100%;
}

.image-183.a {
  flex: 0 auto;
}

.globe-parent-wrapper {
  text-align: left;
  flex-flow: column;
  justify-content: center;
  align-self: auto;
  align-items: center;
  width: 100%;
  display: flex;
}

.feb-stat-item {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  border-bottom: 0px none var(--neutral-400);
  color: var(--neutral-1100);
  flex-flow: column;
  display: flex;
}

.feb-stat-item.big {
  font-size: 48px;
  font-weight: 500;
  line-height: 48px;
}

.feb-stat-big {
  color: var(--moss-1000);
  letter-spacing: -2px;
  font-size: 40px;
  line-height: 48px;
}

.feb-stat-big.test {
  font-size: 40px;
}

.text-span-1220 {
  font-weight: 600;
}

.feb-vertical-wrap {
  flex-flow: column;
  display: flex;
}

.feb-vertical-wrap.feb-center {
  z-index: 3;
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex: 1;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.feb-h2 {
  color: var(--black);
  letter-spacing: -3.5px;
  flex: 1;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 48px;
  font-weight: 500;
  line-height: 56px;
}

.feb-h2.feb-light-text {
  color: var(--neutral-50);
  margin-bottom: 0;
  font-size: 48px;
  line-height: 56px;
}

.feb-h2.test {
  letter-spacing: -3.5px;
  font-size: 48px;
  line-height: 56px;
}

.subsection {
  font-style: italic;
  font-weight: 500;
  text-decoration: underline;
}

.div-block-579 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.feb-card {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  border: 1px solid var(--neutral-300);
  background-color: #00000003;
  border-radius: 16px;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  min-height: 228px;
  padding: 24px;
  text-decoration: none;
  display: flex;
}

.feb-card:hover {
  background-color: var(--white);
  text-decoration: none;
}

.feb-card.w--current {
  border-color: var(--moss-700);
  background-color: #00000003;
}

.div-block-581 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.image-184 {
  width: 100%;
}

.bolded {
  font-weight: 600;
}

.feb-container-centered {
  margin-top: auto;
  margin-bottom: auto;
}

.slider {
  background-color: var(--transparent);
  flex: 1;
  align-self: auto;
  width: 100%;
  height: 100%;
  bottom: auto;
}

.carousel-block-wrapper {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  flex-flow: row;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.carousel-text {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  flex-flow: column;
  flex: 1;
  align-items: flex-start;
  display: flex;
}

.carousel-text.test {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
}

.diagram-wrapper {
  aspect-ratio: auto;
  border-radius: 16px;
  flex: 0 auto;
  justify-content: center;
  align-self: center;
  align-items: center;
  display: flex;
  position: relative;
}

.div-block-585 {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.feb-header-desc {
  color: var(--neutral-400);
}

.feb-header-desc.feb-h6.center-text {
  color: var(--neutral-400);
  letter-spacing: 0;
  font-size: 20px;
  font-weight: 300;
  line-height: 28px;
}

.feb-header-desc.feb-h6.center-text.test {
  font-size: 20px;
  line-height: 28px;
}

.feb-header-desc.feb-h6.center-text.announcement {
  color: var(--moss-300);
  font-size: 18px;
}

.feb-header-desc.feb-h6.subtext {
  color: var(--neutral-500);
  letter-spacing: 0;
  font-size: 16px;
  font-weight: 300;
  line-height: 24px;
}

.background-video-5 {
  box-sizing: border-box;
  opacity: 1;
  width: auto;
  height: 100vh;
  color: var(--white);
  object-fit: contain;
  z-index: 1;
  background-color: #0000;
  order: 0;
  position: absolute;
  inset: 0%;
}

.feb-partner-hero {
  background-color: #0000;
  position: relative;
}

.div-block-586 {
  background-color: #c43b3b;
  position: absolute;
  inset: 0%;
}

.slide-2 {
  background-color: var(--neutral-50);
  position: relative;
}

.feb-home-switcher {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  border: 1px solid var(--neutral-400);
  -webkit-text-stroke-color: var(--neutral-50);
  border-radius: 40px;
  order: 0;
  justify-content: space-between;
  align-items: center;
  padding: .25rem;
  display: none;
}

.feb-home-switcher.on-white {
  border-color: var(--neutral-400);
}

.feb-home-switcher-item {
  border: 1px solid var(--transparent);
  color: var(--neon-50);
  border-radius: 15px;
  padding: .5rem 1rem;
  text-decoration: none;
}

.feb-home-switcher-item.w--current {
  border: 1px solid var(--neutral-500);
  color: var(--neutral-1050);
  background-color: #fff;
  border-radius: 20px;
  align-self: center;
  padding: .5rem 1rem;
  text-decoration: none;
}

.feb-home-switcher-item.on-white.w--current {
  border-color: var(--moss-1000);
  background-color: var(--moss-1000);
}

.text-block-314 {
  color: var(--neutral-50);
  text-decoration: none;
}

.link-block-5 {
  padding-top: 4px;
  padding-bottom: 4px;
  text-decoration: none;
}

.feb-card-title {
  color: var(--neutral-1000);
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  text-decoration: none;
}

.feb-card-title:hover {
  text-decoration: none;
}

.feb-card-title.test {
  font-size: 18px;
  font-weight: 400;
  line-height: 26px;
}

.feb-arrows {
  width: 40px;
  height: 40px;
  color: var(--moss-700);
  justify-content: center;
  align-items: center;
  display: flex;
  top: auto;
  bottom: 0;
}

.feb-arrows.right {
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  display: flex;
  bottom: 0;
  right: 35%;
}

.feb-arrows.left {
  color: var(--moss-700);
  bottom: 0;
  left: 35%;
}

.slide-nav {
  bottom: -6px;
}

.feb-card--2 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  border: 1px solid var(--neutral-300);
  background-color: #00000003;
  border-radius: 16px;
  flex-flow: column;
  padding: 24px;
  text-decoration: none;
  display: flex;
}

.feb-card2-title {
  color: var(--neutral-1000);
  font-size: 20px;
  line-height: 28px;
}

.feb-card2-title.test {
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
}

.tabs-menu {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 50%;
  display: grid;
}

.tabs {
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  flex-flow: row;
  flex: 0 auto;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  place-content: flex-start;
  align-self: auto;
  align-items: flex-start;
  text-decoration: none;
  display: flex;
}

.tabs:hover {
  text-decoration: none;
}

.feb-tab-area {
  border-radius: 16px;
  flex: 1;
  align-self: stretch;
  padding-left: 0;
}

.feb-tab-switcher-group {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  flex: 1;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: row;
  place-content: stretch start;
  align-self: auto;
  width: 50%;
  margin-right: 3rem;
  display: grid;
}

.feb-tab-switcher-group:hover {
  text-decoration: none;
}

.feb-tab-vid-wrap {
  background-color: var(--transparent);
  height: 100%;
}

.fabric-anim-cell {
  z-index: 3;
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  opacity: 1;
  background-image: linear-gradient(#1e4240, #1e4240);
  border: 1px solid #ffffff1a;
  border-radius: 6px;
  justify-content: center;
  align-items: center;
  width: 140px;
  min-height: 64px;
  padding: 12px;
  display: flex;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 8px #0000001f;
}

.fabric-anim-cell.feb-align-right {
  text-align: left;
  order: 0;
  justify-content: flex-start;
  align-self: flex-start;
  align-items: flex-start;
  display: flex;
}

.fabric-anim-cell.center {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  opacity: 1;
  background-color: #1e4240;
  background-image: none;
  width: 276px;
  padding: 24px;
}

.fabric-anim-cell.feb-your-platform {
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  width: 80px;
  height: 80px;
  min-height: 80px;
}

.fabric-anim-wrap {
  grid-column-gap: 1vh;
  grid-row-gap: 90px;
  background-color: var(--transparent);
  grid-template-rows: auto auto auto;
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
  place-items: start center;
  width: 100%;
  max-width: 800px;
  display: grid;
  position: relative;
}

.fabric-anim-cell-ghost {
  z-index: 3;
  border: 0 solid #fff;
  flex-flow: row;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  min-width: auto;
  height: 100px;
  display: flex;
  position: relative;
}

.fabric-anim-cell-ghost.feb-align-right-bottom {
  z-index: 3;
  justify-content: flex-end;
  align-items: flex-end;
}

.fabric-anim-cell-ghost.feb-align-left-bottom {
  justify-content: flex-start;
  align-items: flex-end;
}

.fabric-anim-cell-ghost.feb-align-top {
  border-style: none;
  justify-content: center;
  align-items: flex-start;
}

.fabric-anim-cell-ghost.feb-align-bottom {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  height: auto;
}

.fabric-anim-cell-ghost.feb-align-right {
  justify-content: flex-end;
  align-items: center;
}

.fabric-anim-cell-ghost.feb-align-left {
  z-index: 3;
  justify-content: flex-start;
  align-items: center;
}

.fabric-anim-cell-ghost.feb-align-center {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  height: auto;
  display: flex;
}

.fabric-anim-cell-ghost.feb-align-right-bottom {
  justify-content: flex-end;
  align-items: flex-end;
}

.code-embed-3 {
  aspect-ratio: auto;
  height: 500px;
  display: inline-block;
}

.diagram-label {
  color: var(--neutral-1000);
}

.feb-h1-hero {
  color: var(--white);
  text-align: center;
  letter-spacing: -4.5px;
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 0;
  font-size: 72px;
  font-weight: 500;
  line-height: 80px;
}

.feb-h1-hero.test {
  font-size: 72px;
  line-height: 80px;
}

.feb-paragraph {
  color: var(--neutral-700);
  font-size: 18px;
  font-weight: 300;
  line-height: 28px;
}

.feb-paragraph.feb-light-text {
  color: var(--neutral-500);
  margin-bottom: 1rem;
}

.feb-paragraph.test {
  font-size: 18px;
}

.feb-paragraph.testimonial-footer {
  color: var(--neutral-600);
  font-size: 14px;
  font-weight: 500;
}

.feb-paragraph.testimonial-header {
  color: var(--neutral-700);
  font-weight: 300;
}

.feb-paragraph.testimonial-header.announcement-description {
  font-size: 16px;
  line-height: 24px;
}

.feb-paragraph.testimonial-header.announcement-subheader {
  color: var(--neutral-800);
  font-size: 24px;
  font-weight: 500;
  line-height: 32px;
}

.feb-paragraph.testimonial-header.announcement-small-testimonial-text {
  height: 100%;
  font-size: 16px;
  line-height: 24px;
}

.feb-paragraph.testimonial-small-name {
  color: var(--neutral-700);
  font-weight: 300;
}

.feb-paragraph.testimonial-small-name.announcement-description {
  color: var(--moss-1000);
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
}

.feb-paragraph.testimonial-small-name.announcement-subheader {
  color: var(--neutral-800);
  font-size: 24px;
  font-weight: 500;
  line-height: 32px;
}

.feb-paragraph.testimonial-small-description {
  color: var(--neutral-700);
  font-weight: 300;
}

.feb-paragraph.testimonial-small-description.announcement-description {
  color: var(--neutral-600);
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
}

.feb-paragraph.testimonial-small-description.announcement-subheader {
  color: var(--neutral-800);
  font-size: 24px;
  font-weight: 500;
  line-height: 32px;
}

.home-switcher-text {
  color: var(--moss-1000);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.25rem;
}

.home-switcher-text.inverted {
  color: var(--white);
}

.home-switcher-text-secondary {
  opacity: 1;
  color: var(--white);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.25rem;
}

.home-switcher-text-secondary:where(.w-variant-e7dd86b9-27b1-5768-0944-9201b1451012), .home-switcher-text-secondary.on-white {
  color: var(--moss-1000);
}

.navigation {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  justify-content: center;
  align-self: center;
  align-items: stretch;
  display: flex;
}

.secondary-nav-cta {
  color: var(--white);
  align-self: center;
  padding: .65rem 1rem;
  font-family: DM Sans, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.25rem;
  transition: all .25s;
}

.secondary-nav-cta:hover {
  color: var(--white);
  font-weight: 500;
  text-decoration: none;
}

.secondary-nav-cta.w--current {
  color: var(--white);
  text-decoration: none;
}

.secondary-nav-cta.on-white {
  height: auto;
  color: var(--moss-1000);
  flex: 0 auto;
  align-self: center;
  padding: .65rem 1rem;
}

.secondary-nav-cta.on-white.dropdown {
  pointer-events: none;
  text-align: left;
  flex: 0 auto;
  align-self: center;
  height: auto;
  padding: 0;
}

.secondary-nav-cta.dropdown {
  pointer-events: none;
  padding: 0;
  display: flex;
}

.primary-nav-cta {
  box-sizing: content-box;
  background-color: var(--white);
  color: var(--moss-1000);
  border: 1px solid #e5e7eb;
  border-radius: 999px;
  align-self: center;
  padding: 7px 11px;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5rem;
}

.primary-nav-cta.on-white {
  background-color: var(--moss-1000);
  color: var(--white);
}

.primary-nav-cta.on-white:where(.w-variant-e7dd86b9-27b1-5768-0944-9201b1451012) {
  font-family: DM Sans, sans-serif;
}

.div-block-587 {
  z-index: 2;
  object-fit: contain;
  background-color: #0009;
  height: 100vh;
  position: absolute;
  inset: 0%;
}

.link-button-wrapper {
  grid-column-gap: .25rem;
  grid-row-gap: .25rem;
  justify-content: center;
  align-self: auto;
  align-items: center;
  min-height: 32px;
  padding-top: 0;
  display: flex;
}

.feb-card-icon {
  align-self: flex-start;
  width: 28px;
  height: 28px;
  margin-bottom: .5rem;
}

.feb-card-icon.test {
  width: 28px;
  height: 28px;
}

.feb-card-body-text {
  color: var(--neutral-700);
  font-weight: 300;
  text-decoration: none;
}

.feb-card-body-text:hover {
  text-decoration: none;
}

.feb-card2 {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  border: 1px solid var(--neutral-300);
  border-radius: 16px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  min-height: 240px;
  padding: 24px;
  text-decoration: none;
  display: flex;
}

.feb-card2:hover {
  border-color: var(--moss-800);
  text-decoration: none;
}

.feb-card2.w--current {
  border-color: var(--moss-700);
  background-color: #00000003;
}

.feb-card2-icon {
  background-color: var(--neon-50);
  border-radius: 12px;
  width: 40px;
  height: 40px;
  margin-bottom: 1.5rem;
  padding: .6rem;
}

.feb-card2-body-text {
  color: var(--neutral-700);
  font-weight: 300;
}

.cards-block {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.image-185 {
  object-fit: cover;
  object-position: 50% 50%;
  width: 100%;
  height: 100%;
}

.tab-pane-tab-1 {
  height: 100%;
}

.network-block-text {
  grid-column-gap: 2.5rem;
  grid-row-gap: 2.5rem;
  flex-flow: column;
  display: flex;
}

.div-block-588 {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  flex-flow: column;
  display: flex;
}

.div-block-588.test {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
}

.separator {
  background-color: var(--neutral-400);
  height: 1px;
}

.separator.last {
  display: none;
}

.separator.announcement {
  background-color: var(--neutral-300);
  width: 100%;
}

.feb-stat-body-text {
  color: var(--neutral-600);
  letter-spacing: normal;
  font-size: 18px;
  font-weight: 300;
  line-height: 28px;
}

.feb-stat-body-text.font-18 {
  color: var(--moss-1000);
  font-size: 18px;
}

.feb-stat-body-text.font-18.tight {
  margin-bottom: 0;
  font-size: 18px;
  line-height: 130%;
}

.feb-stat-body-text.test {
  letter-spacing: normal;
  font-size: 18px;
}

.feb-closing-text {
  color: var(--neutral-500);
  text-align: center;
  font-size: 18px;
  font-weight: 300;
  line-height: 28px;
}

.feb-closing-text.middle {
  margin-top: 0;
  margin-bottom: 8px;
  font-size: 18px;
  line-height: 26px;
}

.feb-closing-text.test {
  font-size: 18px;
  line-height: 26px;
}

.div-block-589 {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  display: flex;
}

.bottom-circle {
  z-index: 2;
  mix-blend-mode: soft-light;
  width: 1108px;
  position: absolute;
  left: -350px;
  transform: rotate(28deg);
}

.image-187 {
  z-index: 0;
  opacity: .5;
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.top-circle {
  z-index: 2;
  mix-blend-mode: soft-light;
  object-fit: contain;
  width: 1108px;
  position: absolute;
  top: -150px;
  right: -600px;
  transform: rotate(28deg);
}

.feb-content-banner {
  z-index: 2;
  grid-column-gap: 5rem;
  grid-row-gap: 5rem;
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  padding-right: 0;
  display: flex;
  position: relative;
}

.grid-svg {
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.fabric-anim-cell__label {
  text-align: center;
  background-color: #0e313100;
  font-weight: 300;
  font-size: 16px;
  color: white;
  position: relative;
}

.code-embed-5 {
  width: 100%;
}

.slide-2-copy-copy {
  background-color: var(--neutral-50);
  position: relative;
}

.fabric-anim-cell__text {
  color: var(--neutral-300);
  line-height: 24px;
  font-size: 16px;
}

.fabric-anim-cell__text.header {
  color: var(--white);
  font-weight: 500;
}

.fabric-anim-cell__text.center {
  color: var(--neutral-600);
  font-size: 12px;
  line-height: 16px;
}

.ellipse-decoration {
  filter: blur(12px);
  width: 100%;
  height: 100%;
  position: absolute;
}

.ellipse-decoration.large {
  filter: blur(24px);
}

.wrapped-palm-logo {
  background-color: var(--moss-1000);
  border-radius: 99px;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  display: flex;
}

.image-188 {
  width: 24px;
  height: 24px;
}

.div-block-590 {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  flex-flow: column;
  display: flex;
}

.code-embed-6 {
  z-index: 2;
  width: 100%;
  height: 100%;
  position: absolute;
}

.mask {
  padding-bottom: 64px;
}

.feb-arrows__icon {
  color: var(--moss-1000);
  font-size: 20px;
}

.footer-flex {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  border-bottom: 1px solid var(--neutral-300);
  flex-flow: row;
  flex: 1;
  justify-content: flex-start;
  align-items: flex-start;
  padding-bottom: 32px;
}

.nav__bottom-text {
  color: var(--neutral-500);
  letter-spacing: .2px;
  margin-top: 0;
  font-family: DM Sans, sans-serif;
  font-size: 14px;
  font-weight: 300;
}

.flex-block-16 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex-flow: column;
}

.footer-v-flex {
  grid-column-gap: 48px;
  grid-row-gap: 48px;
}

.linkedin {
  opacity: .8;
  background-image: url('../images/icon-button-1.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  width: 56px;
  height: 56px;
  transition: all .25s;
}

.linkedin:hover {
  opacity: 1;
}

.linkedin.new {
  background-image: url('../images/linkedin.svg');
  width: 28px;
  height: 28px;
}

.grid-svg-l {
  z-index: 0;
  opacity: .5;
  width: 50%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.grid-svg-l.large {
  opacity: .5;
  width: 60%;
  height: 60%;
}

.grid-svg-l.large.announcement {
  background-image: url('../images/gridhorizontal.svg');
  background-position: 0 0;
  background-size: auto;
}

.grid-svg-r {
  z-index: 0;
  opacity: .5;
  width: 50%;
  height: 100%;
  position: absolute;
  top: 0;
  left: auto;
  right: 0;
  transform: rotate(180deg);
}

.grid-svg-r.large {
  opacity: .5;
  width: 60%;
  height: 60%;
  top: auto;
  bottom: 0;
}

.link-button__arrow {
  color: var(--neutral-50);
}

.link-button__arrow.announcement {
  width: 24px;
  height: 24px;
}

.code-embed-8 {
  mix-blend-mode: normal;
  display: block;
}

.globe-wrapper {
  flex-flow: column;
  width: 100%;
  display: flex;
}

.choice-cards {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  align-items: stretch;
}

.numbered-cards-grid {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-self: stretch;
  display: grid;
}

.numbered-card {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  border: 1px solid var(--neutral-300);
  background-color: var(--white);
  border-radius: 16px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  min-height: auto;
  padding: 32px 24px;
  text-decoration: none;
  display: flex;
}

.numbered-card:hover {
  background-color: var(--white);
  text-decoration: none;
}

.numbered-card.w--current {
  border-color: var(--moss-700);
  background-color: #00000003;
}

.numbered-flex {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  justify-content: flex-start;
  align-items: center;
}

.numbered-card__title {
  color: var(--neutral-900);
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
  text-decoration: none;
}

.numbered-card__title:hover {
  text-decoration: none;
}

.numbered-card__body-text {
  color: var(--neutral-600);
  font-weight: 300;
  line-height: 24px;
  text-decoration: none;
}

.numbered-card__body-text:hover {
  text-decoration: none;
}

.numbered-card__number {
  background-color: var(--moss-1000);
  color: #FFFFFF !important;
  font-weight: 600;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  display: flex;
}

.wrapped-icon-card {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  border: 1px solid var(--neutral-300);
  background-color: #00000003;
  border-radius: 16px;
  flex-flow: column;
  flex: 1;
  justify-content: flex-start;
  align-items: flex-start;
  height: auto;
  min-height: 228px;
  padding: 32px;
  text-decoration: none;
  display: flex;
}

.wrapped-icon-card:hover {
  background-color: var(--white);
  text-decoration: none;
}

.wrapped-icon-card.w--current {
  border-color: var(--moss-700);
  background-color: #00000003;
}

.wrapped-icon-card__text {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
}

.wrapped-icon-card__icon {
  background-color: #64c9a514;
  border-radius: 12px;
  flex: none;
  align-self: flex-start;
  width: 40px;
  height: 40px;
  margin-bottom: 0;
  padding: 8px;
}

.wrapped-text-title {
  color: var(--neutral-1000);
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
  text-decoration: none;
}

.wrapped-text-title:hover {
  text-decoration: none;
}

.wrapped-text-body {
  color: var(--neutral-700);
  font-weight: 300;
  line-height: 24px;
  text-decoration: none;
}

.wrapped-text-body:hover {
  text-decoration: none;
}

.feb-testimonial-block {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  width: 100%;
  display: flex;
  overflow-x: scroll;
}

.feb-testimonial-color-wrapper {
  z-index: 2;
  opacity: .85;
  mix-blend-mode: normal;
  background-image: linear-gradient(#0000, #000 55%);
  border-radius: 20px;
  flex-flow: column;
  justify-content: flex-end;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  display: flex;
  position: absolute;
  inset: 0%;
  -webkit-mask-image: linear-gradient(to top, #000, #0000);
  mask-image: linear-gradient(to top, #000, #0000);
}

.feb-testimonial-card {
  border-radius: 16px;
  flex: none;
  width: 495px;
  height: 500px;
  position: relative;
  overflow: clip;
}

.feb-testimonial-image {
  object-fit: cover;
  object-position: 50% 50%;
  width: 100%;
  height: 100%;
}

.feb-testimonial-text-wrapper {
  z-index: 3;
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  opacity: 1;
  mix-blend-mode: normal;
  flex-flow: column;
  justify-content: flex-end;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  padding-bottom: 24px;
  padding-left: 24px;
  padding-right: 24px;
  display: flex;
  position: absolute;
  inset: 0%;
}

.feb-testimonial-card__header {
  color: var(--white);
  letter-spacing: -.3px;
  font-weight: 300;
  line-height: 24px;
}

.feb-testimonial-card__business {
  color: var(--white);
}

.feb-testimonial-card__detail {
  color: var(--neutral-500);
  font-size: 14px;
}

.feb-testimonial-card__secondary {
  grid-column-gap: .25rem;
  grid-row-gap: .25rem;
}

.flex-block-17 {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  justify-content: flex-start;
  align-self: center;
  align-items: center;
}

.bulleted-italic-medium, .italic-text-11, .italic-text-12, .italic-text-13 {
  font-weight: 500;
  text-decoration: underline;
}

.tab-pane-tab-2, .tab-pane-tab-3, .tab-pane-tab-4 {
  height: 100%;
}

.globe-placeholder {
  opacity: 0;
  width: 100%;
}

.lighter-gray-text-copy {
  color: var(--moss-1000);
  letter-spacing: .3px;
  -webkit-text-stroke-color: #d6d9de;
  font-size: 18px;
  font-weight: 400;
  line-height: 150%;
}

.lighter-gray-text-copy.no-bottom-padding.semi-bold {
  color: var(--moss-50);
  font-size: 16px;
  font-weight: 500;
  line-height: 120%;
}

.lighter-gray-text-copy.top-padding {
  margin-top: 30px;
}

.lighter-gray-text-copy.top-padding.white-text {
  color: var(--moss-50);
}

.code-embed-9 {
  display: block;
}

.text-span-1222 {
  text-decoration: underline;
}

.text-span-1223 {
  color: var(--moss-300);
}

.flex-block-18 {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  justify-content: flex-start;
  align-self: auto;
  align-items: center;
}

.grid-decor {
  background-image: url('../images/gridhorizontal.svg');
  background-position: 100% 0;
  background-size: cover;
  width: 40%;
  height: 100%;
  position: absolute;
  inset: 0% auto auto 0%;
}

.grid-decor.right {
  z-index: 4;
  background-position: 100% 0;
  width: 31%;
  inset: 0% 0% auto auto;
  transform: rotate(180deg);
}

.grid-decor.left {
  z-index: 4;
  width: 32%;
  inset: 0% auto auto 0%;
}

.announcement-header-wrapper {
  background-color: var(--moss-1000);
  min-height: 916px;
  position: relative;
}

.link-11 {
  color: var(--neutral-700);
}

.testimony-card {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  border: 1px solid var(--neutral-300);
  background-color: var(--neutral-100);
  border-radius: 16px;
  padding: 2rem;
}

.flex-block-19 {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
}

.article-card {
  grid-column-gap: 2.5rem;
  grid-row-gap: 2.5rem;
  border: 1px solid var(--neutral-300);
  background-color: var(--neutral-100);
  border-radius: 16px;
  width: 100%;
  padding: 2rem;
}

.slider-2 {
  border: 1px solid var(--neutral-300);
  background-color: var(--white);
  border-radius: 12px;
  align-self: auto;
  width: 100%;
  height: auto;
  overflow: hidden;
}

.left-arrow, .slide-nav-2 {
  display: none;
}

.testimonial-palm-image {
  background-image: url('../images/_DSC0616-2-1.webp');
  background-position: 60% 0;
  background-size: cover;
  flex: 0 auto;
  align-self: stretch;
  width: 100%;
  max-width: 400px;
  height: auto;
}

.testimonial-palm-image.alex {
  background-image: url('../images/Frame-2131330511.webp');
  display: none;
}

.testimonial-palm-image.connor {
  display: none;
}

.palm-testimonial-wrapper {
  border: 1px solid var(--neutral-300);
  background-color: var(--white);
  border-radius: 12px;
  flex-flow: row;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  display: flex;
  overflow: hidden;
}

.testimonial-palm-text-flex {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex: auto;
  align-self: stretch;
  width: 100%;
  min-height: 100%;
  padding: 32px;
}

.testimonial-palm-text-flex.connor {
  flex-basis: 94%;
}

.slide-3 {
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.mask-2 {
  width: 100%;
}

.testimonial-palm-quote {
  color: var(--neutral-800);
  font-weight: 300;
  line-height: 24px;
}

.testimonial-palm-name {
  color: var(--moss-1000);
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
}

.testimonial-palm-title {
  color: var(--neutral-600);
  font-size: 14px;
  line-height: 20px;
}

.flex-block-20 {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  border-top: 1px solid var(--neutral-300);
  flex: 1;
  width: 100%;
  padding-top: 24px;
}

.flex-block-21 {
  flex-flow: row;
}

.testimonial-palm-slide-count {
  color: var(--moss-1000);
  flex-flow: row;
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
}

.testimonial-palm-name-copy {
  color: var(--moss-1000);
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
}

.testimonial-palm-slide-footer {
  border-top: 1px solid var(--neutral-400);
  width: 100%;
  color: var(--moss-1000);
  flex-flow: row;
  flex: none;
  padding-top: 16px;
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
}

.icon-51 {
  color: var(--white);
  font-size: 18px;
  inset: 0%;
}

.right-arrow {
  background-color: var(--moss-1000);
  border-radius: 9999px;
  width: 28px;
  height: 28px;
  padding: 4px;
  inset: auto 32px 32px auto;
}

.palm-testimonial-image {
  object-fit: cover;
  flex: auto;
  order: 0;
  align-self: stretch;
  width: 100%;
  max-width: 280px;
  overflow: hidden;
}

.announcement-header-image {
  border-radius: 16px;
  position: relative;
  overflow: hidden;
}

.image-189 {
  z-index: 2;
  object-fit: cover;
  object-position: 50% 40%;
  max-height: 360px;
  position: relative;
  overflow: clip;
}

.announcement-v-flex._24-gap {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
}

.announcement-small-testimonials {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  border-top: 1px none var(--neutral-300);
  background-color: var(--transparent);
  -webkit-text-stroke-color: var(--neutral-300);
  border-radius: 0;
  overflow: hidden;
}

.announcement-small-testimonial {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  border: 1px solid var(--neutral-300);
  background-color: #fff;
  border-radius: 12px;
  flex: 100%;
  align-self: stretch;
  padding: 32px;
}

.testimonial-person-flex {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  border-style: solid;
  border-width: 1px 0 0;
  border-color: var(--neutral-300);
  flex-flow: wrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding-top: 24px;
}

.announcement-small-testimonial-info {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
}

.image-190 {
  max-width: 121px;
}

.div-block-591 {
  z-index: 3;
  width: 100%;
  height: 100%;
  position: absolute;
}

.announcement-testimonial-image-mask {
  z-index: 3;
  background-image: linear-gradient(180deg, var(--transparent), #0000 56%, #000c);
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0% auto auto 0%;
}

.image-191 {
  z-index: 4;
  clear: none;
  display: block;
  position: absolute;
  inset: auto 32px 28px auto;
}

.div-block-592 {
  position: sticky;
}

.socwrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  width: 100%;
}

.text-span-1224, .text-span-1225, .text-span-1226 {
  text-decoration: underline;
}

.flex-products-dropdown {
  z-index: 99;
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  color: var(--white);
  cursor: pointer;
  border-radius: 12px;
  order: 0;
  justify-content: flex-start;
  align-items: center;
  padding: .65rem .75rem .65rem 1rem;
  display: flex;
}

.flex-products-dropdown:hover {
  background-color: #ffffff1a;
}

.flex-products-dropdown.on-white {
  pointer-events: auto;
  cursor: pointer;
  padding-bottom: .65rem;
}

.flex-products-dropdown.on-white:hover {
  background-color: #f7f8f9;
}

.products-dropdown-icon {
  pointer-events: none;
  align-self: center;
  padding-top: 0;
  display: block;
}

.products-dropdown-icon.on-white {
  pointer-events: none;
  background-color: #fff;
  padding-top: 0;
}

.dropdown-icon {
  margin-right: 0;
  font-size: 12px;
  position: relative;
}

.dropdown-icon.on-white {
  color: var(--neon-1000);
}

.nav-dropdown-list {
  z-index: 99;
}

.nav-dropdown-list.w--open {
  box-sizing: border-box;
  background-color: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  margin-top: .25rem;
  padding: 10px .5rem 1rem;
  left: 4px;
}

.dropdown-list-3 {
  z-index: 99;
}

.dropdown-parent:hover {
  border-radius: 12px;
}

.dropdown-parent.on-white {
  cursor: pointer;
  border-radius: 12px;
}

.dropdown-parent.on-white:hover {
  background-color: #fff;
}

.nav-dropdown-link {
  color: var(--neutral-900);
  margin-top: 8px;
  margin-bottom: 7px;
  padding: 6px 8px;
  font-weight: 600;
}

.nav-dropdown-link.child {
  color: var(--neutral-800);
  border-left: 2px solid #f0f1f3;
  margin-top: 0;
  margin-bottom: 0;
  margin-left: 12px;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 16px;
  font-size: 14px;
  font-weight: 500;
}

.nav-dropdown-link.child:hover {
  border-left-color: var(--moss-1000);
  background-color: #f9fafb;
}

.nav-dropdown-link.first {
  margin-top: 0;
}

.dropdown-link-3 {
  color: var(--neutral-900);
}

@media screen and (min-width: 1920px) {
  h1 {
    font-size: 76px;
  }

  h4 {
    font-size: 30px;
  }

  .section.formation {
    background-position: 500px;
  }

  .container {
    max-width: none;
  }

  .container.center.wide {
    max-width: 1200px;
  }

  .container.center.narrow-container {
    max-width: 1000px;
  }

  .container.header {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    justify-content: space-between;
  }

  .image-home {
    max-width: none;
    height: 900px;
    margin-bottom: 20px;
  }

  .left-content.flex-stretch {
    width: 98%;
    max-width: none;
  }

  .left-content.flex-vertical {
    justify-content: flex-start;
    align-items: center;
    width: 70%;
  }

  .content.inner-padding {
    max-width: 900px;
    padding-top: 130px;
  }

  .content.inner-padding.text__cont {
    min-width: 700px;
    padding-top: 0;
  }

  .content.center-vertically {
    max-width: 600px;
  }

  .btn-primary.offset {
    width: 240px;
  }

  .u-header-tab {
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 800px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .image-inform, .image-connect, .image-control {
    margin-bottom: 65px;
  }

  .image-fins {
    margin-top: 60px;
    margin-bottom: 60px;
  }

  .table-titles {
    height: 56px;
    font-family: DM Sans, sans-serif;
    text-decoration: none;
  }

  .table-cell {
    border: 0 solid #000;
  }

  .table-cell.middle {
    border-radius: NaNpx;
    border-bottom-style: solid;
  }

  .dark-green-text.small-1920 {
    font-size: 50px;
  }

  .image-formation-spacer {
    max-width: none;
    height: 1020px;
    margin-bottom: 20px;
  }

  .image-peace {
    margin-bottom: 65px;
  }

  .image-peace.bus-id__section__img {
    width: 650px;
    margin-bottom: 0;
  }

  .image-peace.bus-id__section-2__img, .image-peace.bus-id__section-3__img, .image-peace.bus-id__section-4__img, .image-peace.bus-id__section-5__img {
    width: 650px;
  }

  .image-join {
    margin-bottom: 65px;
  }

  .bior-image {
    max-width: none;
    height: 900px;
    margin-bottom: 20px;
  }

  .check-image {
    margin-bottom: 65px;
  }

  .font-56 {
    max-width: none;
    margin-right: 14px;
    display: inline-block;
  }

  .white-body.center {
    flex-flow: column;
    align-items: center;
    display: flex;
  }

  .larger-mobile-text.white-text.bus-id__comp-text {
    font-size: 22px;
  }

  .blog-header {
    max-width: 1800px;
    margin-left: auto;
    margin-right: auto;
  }

  .blog-list, .blog-list.no-bottom-padding {
    margin-left: auto;
    margin-right: auto;
  }

  .ad {
    width: 400px;
  }

  .max-width-1200 {
    max-width: 1200px;
  }

  .partner {
    text-align: left;
    align-items: center;
    width: 50%;
  }

  .chat-bubbles {
    left: 50%;
  }

  .n-section.home, .n-section.boi-home {
    background-position: 0%;
    padding-top: 180px;
    padding-bottom: 180px;
  }

  .n-section.boi-home.landing-page.statement {
    background-size: 100%;
  }

  .n-section.flex-vertical {
    max-width: 1400px;
  }

  .n-section.qbp-hero {
    background-position: 0%;
    padding-top: 180px;
    padding-bottom: 180px;
  }

  .n-button.feb-button {
    background-color: var(--neutral-50);
    color: var(--moss-1000);
    display: inline-block;
  }

  .n-button.feb-button.ghost {
    background-color: var(--transparent);
    color: var(--white);
    border: 1px solid #fff;
  }

  .header-text {
    font-size: 70px;
  }

  .half-container {
    max-width: 800px;
  }

  .half-container.narrow {
    flex-flow: column;
    justify-content: center;
    align-items: flex-start;
    max-width: 500px;
    height: 90vh;
    padding-top: 0;
    display: flex;
  }

  .half-container.video3 {
    background-color: #579b6200;
    max-width: none;
    display: block;
  }

  .half-container.video2 {
    max-width: none;
    display: block;
  }

  .half-container.video4 {
    max-width: none;
  }

  .half-container.video1, .half-container.qbp-scroll__sticky {
    max-width: none;
    display: block;
  }

  .light-green-shape {
    background-color: #d3f4e7;
  }

  .narrow-container {
    max-width: 800px;
  }

  .center-text.dark {
    font-size: 70px;
  }

  .n-h2 {
    font-size: 58px;
  }

  .tag {
    font-size: 18px;
  }

  .sticky-container {
    max-width: 900px;
    height: 80vh;
  }

  .background-video-3 {
    height: 100%;
  }

  .small-business {
    margin-bottom: 65px;
  }

  .small-business.shorter-mobile.new-photo.ar-war {
    height: auto;
  }

  .filing {
    margin-bottom: 65px;
  }

  ._4x-container {
    max-width: 1400px;
    padding-left: 60px;
    padding-right: 60px;
  }

  .bus-id__rhalf-cont {
    width: auto;
  }

  .image-4.bus-id__main-section-img {
    right: 10%;
  }

  .ft-hero__content {
    max-width: 800px;
  }

  .ft-hero__header {
    font-size: 70px;
  }

  .ft-main__cta__form {
    inset: 50% 0% 0% 50%;
  }

  .e404-content {
    grid-column-gap: 2.5rem;
    grid-row-gap: 2.5rem;
    justify-content: center;
  }

  .e404-h1 {
    font-size: 70px;
    font-weight: 400;
  }

  .or-section-downcontent.or-ourvalues-grid {
    grid-auto-flow: row dense;
    place-content: stretch center;
    align-self: center;
  }

  .or-section-downcontent.home {
    width: 50%;
  }

  .text-size-regular {
    width: 100%;
    font-size: 16px;
    font-weight: 400;
  }

  .heading-style-h3.is-24 {
    font-size: 24px;
    font-weight: 500;
  }

  .heading-style-h2.is-45px.is-green {
    margin-bottom: 24px;
    font-weight: 500;
  }

  .grid-1-steps {
    padding-left: 10px;
  }

  .image-9 {
    top: 55%;
  }

  .image-10 {
    top: 68%;
  }

  .table_annual-report._5-columns {
    text-align: center;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    place-items: center;
    width: 1312px;
  }

  .text-block-12 {
    padding-bottom: 40px;
  }

  .div-block-25 {
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .content-style-18 {
    border-style: solid;
  }

  .text-block-16 {
    font-family: DM Sans, sans-serif;
    font-size: 20px;
    font-weight: 300;
  }

  .bold-text-14, .bold-text-15, .bold-text-16, .bold-text-17, .bold-text-18, .bold-text-19, .bold-text-20, .bold-text-21, .bold-text-22, .bold-text-23, .bold-text-24, .bold-text-25, .bold-text-26, .bold-text-27, .bold-text-28, .bold-text-29, .bold-text-30, .bold-text-31, .bold-text-32, .bold-text-33, .bold-text-34, .bold-text-35, .bold-text-36, .bold-text-37, .bold-text-38, .bold-text-39, .bold-text-40, .bold-text-41, .bold-text-42 {
    font-weight: 600;
  }

  .text-span-141 {
    color: var(--moss-400);
  }

  .list-3 {
    width: 542px;
  }

  .text-block-99 {
    color: #1b4b47;
    margin-bottom: 24px;
    font-family: DM Sans, sans-serif;
    font-size: 45px;
    line-height: 120%;
  }

  .text-block-100 {
    color: #1b4b47;
    margin-bottom: 24px;
    font-family: DM Sans, sans-serif;
    font-size: 20px;
    font-weight: 300;
    line-height: 28px;
  }

  .text-block-101 {
    color: #1b4b47;
    margin-bottom: 24px;
    font-family: DM Sans, sans-serif;
    font-size: 32px;
    font-weight: 500;
    line-height: 28px;
  }

  .text-block-102 {
    color: #042c2f;
    margin-bottom: 24px;
    font-family: DM Sans, sans-serif;
    font-size: 32px;
    line-height: 130%;
  }

  .text-block-106 {
    color: #1b4b47;
    margin-bottom: 24px;
    font-family: DM Sans, sans-serif;
    font-size: 20px;
    font-weight: 300;
    line-height: 28px;
  }

  .list-item-28 {
    font-size: 20px;
  }

  .text-block-107 {
    color: #1b4b47;
    margin-bottom: 24px;
    font-family: DM Sans, sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 28px;
  }

  .text-block-109 {
    color: #1b4b47;
    margin-bottom: 24px;
    font-family: DM Sans, sans-serif;
    font-size: 45px;
    line-height: 120%;
  }

  .text-block-110 {
    color: #1b4b47;
    margin-bottom: 24px;
    font-family: DM Sans, sans-serif;
    font-size: 20px;
    line-height: 140%;
  }

  .home_hero-image.home_hero-image-down-left, .home_hero-image.home_hero-image-down-right {
    top: 63%;
  }

  .jta_text-container {
    background-image: none;
    background-repeat: repeat;
    background-size: auto;
    width: auto;
  }

  .section_oneid {
    padding-left: 80px;
  }

  .oneid_title-container {
    background-image: none;
    background-repeat: repeat;
    background-size: auto;
    width: auto;
  }

  .monitor_container.new.why-palm, .monitor_container.new.ryb, .monitor_container.new.sp {
    justify-content: space-between;
    align-items: flex-start;
  }

  .monitor_title-container.new {
    width: 40%;
  }

  .monitor_title-header.new.why-palm, .monitor_title-header.new.sp {
    font-size: 2.5em;
  }

  .monitor_phone-container.new {
    max-width: 810px;
    padding-left: 80px;
  }

  .monitor_phone-image {
    max-width: 80%;
  }

  .dscroll_sticky {
    height: 32vw;
  }

  .dscroll_sticky.new {
    justify-content: center;
    align-items: flex-start;
    display: flex;
    top: calc(90vh - 850px);
  }

  .image-12 {
    display: block;
  }

  .oneid_wrapper {
    flex-flow: row;
  }

  .oneid_wrapper.new {
    justify-content: space-between;
  }

  .oneid_spacer {
    left: 0;
  }

  .paragraph-8.new {
    font-size: 1.2em;
  }

  .jta_wrapper {
    flex-flow: row;
    justify-content: center;
    align-items: center;
  }

  .image-15.target_image {
    max-width: 460px;
    position: relative;
  }

  .image-15.target_image.new.img2 {
    left: auto;
  }

  .image-16 {
    object-fit: fill;
  }

  .div-block-56 {
    justify-content: flex-end;
    align-items: center;
    max-width: 1800px;
  }

  .div-block-438 {
    max-width: 1800px;
  }

  .trio_background {
    width: 150%;
    bottom: -30%;
    left: -50%;
  }

  .why-palm_phone-image {
    max-width: 80%;
  }

  .dev-scroll_header-title.fastest {
    font-size: 2.5em;
  }

  .dev-scroll_infor-card-title.new.fastest {
    font-size: 2.5em;
    font-weight: 400;
  }

  .imap_wrapper {
    flex-flow: row;
    justify-content: center;
    align-items: center;
  }

  .imap_text-container {
    background-image: none;
    background-repeat: repeat;
    background-size: auto;
    width: auto;
  }

  .onlyid_spacer {
    left: min(0px, 1400px - 85vw);
  }

  .div-block-56-2 {
    justify-content: flex-end;
    align-items: center;
    max-width: 1800px;
  }

  .div-block-56-3 {
    justify-content: flex-end;
    align-items: center;
    max-width: 1800px;
    right: -10%;
  }

  .div-block-438-2 {
    max-width: 1800px;
  }

  .image-16-2 {
    object-fit: fill;
  }

  .onlyid_title-container {
    background-image: none;
    background-repeat: repeat;
    background-size: auto;
    width: auto;
  }

  .onlyid_wrapper {
    flex-flow: row;
  }

  .onlyid_wrapper.new {
    justify-content: space-between;
  }

  .dev-scroll_sticky {
    height: 32vw;
    top: calc(40vh - 300px);
  }

  .dev-form_container {
    opacity: 0;
  }

  .ryb-table_item.header.paid.extends {
    border-bottom-style: none;
  }

  .pt-bd_wrapper {
    flex-flow: row;
  }

  .pt-bd_wrapper.new {
    justify-content: space-between;
  }

  .pt-bd_wrapper.new.htf {
    align-items: center;
  }

  .section_pt-bd {
    padding-left: 80px;
  }

  .pt-bd_container {
    background-image: none;
    background-repeat: repeat;
    background-size: auto;
    width: auto;
  }

  .pt-bd_card.ps {
    min-height: 280px;
  }

  .pt-sp_scroll {
    justify-content: space-between;
    overflow-x: auto;
  }

  .v-scroll-image-wrapper.v-scroll-image-overlay.z11 {
    z-index: 11;
  }

  .v-scroll-image-wrapper.v-scroll-image-overlay.z12 {
    z-index: 12;
  }

  .section_hiw {
    padding-left: 80px;
  }

  .act-form_container {
    opacity: 0;
  }

  .hp-h1-light.hp-hero-h1 {
    letter-spacing: -1.8px;
    font-size: 76px;
  }

  .hp-hero-section {
    height: 100vh;
  }

  .hp-hero-center {
    z-index: 12;
  }

  .hp-network-face.hp-face-tl {
    top: 100px;
  }

  .hp-product-color-bg.hp-color-1-trans, .hp-product-color-bg.hp-color-2-trans, .hp-product-color-bg.hp-color-3-trans {
    overflow: hidden;
  }

  .fabric-anim {
    aspect-ratio: auto;
  }

  .feb-section-r {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
  }

  .feb-section-l {
    padding-top: 0;
  }

  .feb-section {
    border-bottom: 1px solid var(--neutral-300);
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 120px;
    padding-bottom: 120px;
  }

  .feb-section.light {
    border-bottom-color: var(--neutral-300);
    background-color: var(--neutral-50);
  }

  .feb-h6-left-title {
    color: var(--neutral-500);
    font-size: 24px;
    font-weight: 400;
    line-height: 32px;
  }

  .link-button {
    background-color: var(--transparent);
    color: var(--moss-800);
    text-decoration: underline;
  }

  .feb-h6 {
    letter-spacing: -1.5px;
    font-size: 64px;
    font-weight: 500;
  }

  .slider {
    bottom: 0;
  }

  .feb-header-desc.feb-h6 {
    font-size: 24px;
  }

  .feb-arrows {
    width: 40px;
  }

  .slide-nav {
    position: absolute;
  }

  .feb-paragraph.testimonial-header.announcement-description {
    font-size: 18px;
    line-height: 28px;
  }

  .grid-svg {
    object-fit: fill;
  }

  .grid-svg.large {
    width: 100vw;
    left: -10%;
  }

  .mask {
    overflow: visible;
  }

  .grid-svg-l.large {
    height: 50%;
  }

  .grid-svg-r.large {
    height: 60%;
  }

  .feb-testimonial-block {
    justify-content: space-between;
    overflow-x: auto;
  }

  .article-card {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
  }

  .announcement-header-image {
    width: 100%;
  }

  .image-189 {
    width: 100%;
    max-width: none;
  }
}

@media screen and (max-width: 991px) {
  h1 {
    margin-top: 26px;
    font-size: 40px;
  }

  h2 {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 28px;
  }

  h3 {
    font-size: 28px;
  }

  h4 {
    font-size: 19px;
  }

  p {
    font-size: 18px;
  }

  .section.white.round-container.no-bottom-padding {
    padding-top: 0;
    padding-bottom: 0;
  }

  .section.white.round-container.lightgray {
    padding-left: 32px;
    padding-right: 32px;
    display: none;
  }

  .section.green.fixed-height {
    height: auto;
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .section.formation {
    background-position: 50% 165%;
    background-size: auto 550px;
  }

  .section.formation.bg-image {
    background-position: 0 0, 60% 100%;
    background-size: auto, auto 100%;
  }

  .section.formation.bus-id__main-section, .section.formation.or-mainsection {
    background-position: 75%;
  }

  .section.light-gray.padding-60.no-padding-mobile.bus-id__lsection {
    flex-flow: column;
    padding-bottom: 0;
  }

  .section.light-gray.padding-60.no-padding-mobile.bus-id__lsection.bus-id__last-section {
    padding-bottom: 76px;
  }

  .section.light-gray.padding-60.no-padding-mobile.or-section {
    flex-flow: column;
    padding-bottom: 0;
  }

  .section.light-gray.padding-60.no-padding-mobile.or-section.or-map-section {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .section.burst {
    background-position: 50% 0;
  }

  .section.burst.tighter {
    background-position: 100px -540px;
    background-size: auto 100%;
  }

  .navbar {
    justify-content: center;
    align-items: center;
    display: block;
  }

  .btn-secondary {
    align-items: center;
    font-size: 14px;
    text-decoration: none;
  }

  .btn-secondary:hover {
    padding-top: 13px;
    padding-bottom: 13px;
    text-decoration: none;
  }

  .container {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    grid-auto-flow: column;
    padding-left: 20px;
    padding-right: 20px;
    display: grid;
  }

  .container.less-right-padding {
    padding-right: 0;
  }

  .container.less-right-padding.left-padding {
    padding-left: 20px;
    padding-right: 20px;
  }

  .container.header.no-padding-mobile.bus-id__main-section__cont {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-flow: column;
    grid-template-rows: auto;
    place-items: flex-start start;
    min-height: 748px;
    display: flex;
  }

  .container.header.no-padding-mobile.or-mainsection-container {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    flex-flow: column;
    grid-template-rows: auto;
    justify-content: center;
    place-items: center start;
    height: auto;
    display: flex;
  }

  .container.left-align {
    flex-flow: column;
    display: flex;
  }

  .container._10-padding-mobile.middle-aligned.bus-id__lsection__cont {
    flex-flow: column;
    width: 100%;
    display: flex;
  }

  .container._10-padding-mobile.middle-aligned.bus-id__lsection__cont.bus-id__reverse {
    flex-flow: column-reverse;
  }

  .container._10-padding-mobile.middle-aligned.or-container {
    grid-column-gap: 60px;
    grid-row-gap: 60px;
    flex-flow: column;
    width: 100%;
    padding: 5rem;
    display: flex;
  }

  .container._10-padding-mobile.middle-aligned.or-container.or-container--vertical {
    padding: 5rem;
  }

  .container._10-padding-mobile.middle-aligned.or-container.or-howwework-container {
    grid-column-gap: 80px;
    grid-row-gap: 80px;
    padding: 5rem;
  }

  .container._10-padding-mobile.middle-aligned.or-container {
    flex-flow: column;
    width: 100%;
    display: flex;
  }

  .container._10-padding-mobile.middle-aligned.or-container.or-ourvalues-container {
    padding: 5rem;
  }

  .container._10-padding-mobile.middle-aligned.or-container.or-map-container {
    height: calc(100vh - 20rem);
  }

  .container._10-padding-mobile.middle-aligned.or-container.or-roles-container {
    padding-left: 5rem;
    padding-right: 5rem;
  }

  .container.flex-horizontal {
    place-items: stretch start;
  }

  .container.boi-header {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    padding-left: 64px;
    padding-right: 64px;
  }

  .container.top-alignment {
    padding-left: 60px;
    padding-right: 60px;
  }

  .image-home {
    background-position: 50% 0;
    background-size: auto 90%;
    width: 100%;
    height: 400px;
  }

  .left-content.flex-stretch, .left-content.indent {
    width: 100%;
  }

  .left-content.indent.inner-padding-tablet {
    padding-top: 40px;
  }

  .left-content._70 {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    width: 100%;
  }

  .left-content.flex-vertical {
    padding-left: 20px;
  }

  .content.center-vertically {
    padding-top: 80px;
  }

  .small-text-green {
    font-weight: 300;
  }

  .flex-left.center {
    flex-flow: row;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .flex-left.center.bottom-padding-24 {
    flex-flow: row;
    justify-content: flex-start;
    align-items: center;
    width: 80%;
  }

  .flex-left.center.center-mobile {
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  .flex-left.center.align-middle {
    justify-content: flex-start;
    align-items: center;
  }

  .btn-primary:hover {
    text-decoration: none;
  }

  .btn-primary.offset {
    background-position: 86%;
    width: 100%;
    max-width: 300px;
    height: 74px;
  }

  .btn-primary.offset.top-padding60 {
    margin-top: 15px;
    font-size: 15px;
  }

  .btn-primary.brighter {
    background-position: 58%;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 10px;
    margin-bottom: 0;
  }

  .btn-primary.brighter.green-border {
    height: 80px;
    margin-top: 20px;
    margin-left: 0;
  }

  .btn-primary.brighter.green-border.left-padding {
    margin-top: 0;
    margin-left: 20px;
  }

  .u-header-tab {
    background-color: #043c41;
    flex-flow: row;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    display: flex;
  }

  .u-green-header-text {
    width: 78%;
    font-size: 16px;
    font-weight: 300;
  }

  .btn-secondary-nav {
    margin-top: 0;
    margin-bottom: 0;
    margin-right: 0;
    font-size: 1rem;
  }

  .u-round-outline {
    height: auto;
    padding: 20px;
  }

  .u-round-outline.green {
    justify-content: center;
    align-items: center;
    padding: 56px;
  }

  .round-shape {
    font-size: 18px;
  }

  .round-shape.dark-green {
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .u-light-gray-headling {
    margin-left: 16px;
    font-size: 18px;
  }

  .card {
    width: 100%;
    height: 150px;
    padding-top: 30px;
    padding-left: 32px;
  }

  .card.outline {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .flex-block {
    flex-flow: column;
  }

  .short-container {
    flex-flow: column;
    width: 100%;
    padding-left: 0;
  }

  .dark-headline {
    margin-top: 20px;
    margin-left: 0;
    padding-left: 17px;
    font-size: 18px;
  }

  .gray-container {
    width: 100%;
  }

  .right-content {
    width: 100%;
    padding-left: 0;
  }

  .right-content.mobile {
    grid-column-gap: 36px;
    grid-row-gap: 36px;
    width: 90%;
  }

  .right-content.phone {
    background-position: 100% 100%;
  }

  .green-banner {
    border-radius: 40px;
    flex-flow: column;
    margin-bottom: 20px;
    padding: 20px;
  }

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

  .green-text.larger {
    margin-bottom: 0;
  }

  .image-fins {
    background-position: 100% 100%;
    background-size: contain;
    width: 100%;
    height: 540px;
    margin-top: 0;
    margin-bottom: -62px;
    margin-right: 0;
  }

  .h1-white {
    margin-top: 40px;
    font-size: 32px;
  }

  .medium-green-text {
    letter-spacing: .1px;
    font-size: 19px;
  }

  .medium-logo {
    background-position: 0%;
    width: 80px;
    margin-top: 0;
  }

  .footer-container {
    grid-column-gap: 29px;
    grid-row-gap: 29px;
    flex-flow: column;
  }

  .footer-container.new {
    padding: 48px 32px;
  }

  .footer-block {
    width: 100%;
  }

  .flex-horizontal.center {
    grid-column-gap: 39px;
    grid-row-gap: 39px;
    order: -1;
  }

  .flex-horizontal.center.tighter {
    margin-top: 30px;
    margin-bottom: 30px;
  }

  .flex-horizontal.vertical-tablet {
    flex-flow: column;
    align-items: center;
  }

  .flex-horizontal.left-align.stacked-mobile {
    flex-flow: column;
    align-self: flex-start;
    align-items: center;
  }

  .flex-horizontal.left-align.drop-mobile {
    flex-flow: column;
    align-items: center;
  }

  .flex-horizontal.inline {
    flex-flow: row;
    justify-content: flex-start;
    align-self: auto;
    align-items: flex-start;
  }

  .text-secondary {
    font-size: 20px;
  }

  .avatar {
    width: 40px;
    height: 40px;
    margin-bottom: 40px;
    margin-right: 0;
  }

  .left-footer {
    flex-flow: column;
  }

  .footer-links {
    font-size: 18px;
    font-weight: 300;
  }

  .image-formation-spacer {
    background-image: none;
    width: 100%;
    display: none;
  }

  .stars {
    width: 60px;
    margin-top: 0;
    margin-right: 0;
    font-size: 18px;
  }

  .green-headline {
    margin-top: 0;
    margin-left: 0;
    line-height: 120%;
  }

  .dark-green-btn {
    margin-top: 14px;
    margin-bottom: 0;
    margin-right: 20px;
    padding: 12px 59px 12px 28px;
    font-size: 14px;
  }

  .image-peace {
    width: 90%;
  }

  .image-peace.bus-id__section__img {
    width: 100%;
  }

  .image-join {
    width: 90%;
  }

  .bior-image {
    background-position: 0 0;
    background-size: auto 90%;
    width: 100%;
    height: 600px;
    margin-top: 60px;
  }

  .fincen-image {
    background-image: none;
    margin-bottom: 10px;
  }

  .check-image {
    margin-bottom: 60px;
  }

  .outline-button {
    margin-top: 14px;
    margin-bottom: 0;
    margin-right: 20px;
    padding: 12px 28px;
    font-size: 14px;
  }

  .outline-button.wider {
    padding-right: 58px;
  }

  .c-faq {
    padding-left: 0;
  }

  .blog-header {
    padding-top: 30px;
  }

  .feature-item {
    flex-flow: column;
  }

  .feature-photo {
    order: -1;
    width: 100%;
  }

  .feauture-content {
    width: 100%;
  }

  .collection-list.center {
    justify-content: center;
    align-items: center;
  }

  .blog-item {
    width: 100%;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  .blog-item.n-flex-blog {
    max-width: 400px;
  }

  .ad {
    width: 100%;
    margin-bottom: 50px;
  }

  .article {
    width: 100%;
    margin-bottom: 0;
  }

  .div-block-3 {
    padding-left: 4rem;
    padding-right: 4rem;
  }

  .image {
    bottom: -46%;
    right: -69%;
  }

  .partner {
    align-items: flex-start;
    width: 100%;
    max-width: none;
    height: 490px;
    padding-top: 64px;
    padding-bottom: 100px;
    padding-left: 20px;
  }

  .image-2 {
    width: 240px;
    height: 240px;
    margin-right: 40%;
  }

  .chat-bubbles {
    bottom: 90px;
    left: 180px;
    right: auto;
  }

  .n-section.home {
    background-position: 40%;
  }

  .n-section.boi-home.landing-page.statement {
    background-size: cover;
  }

  .n-section.flex-vertical.green {
    padding-top: 80px;
  }

  .n-section.qbp-hero {
    background-position: 40%;
  }

  .n-button.jta_btn, .n-button.oneid_title-button, .n-button.monitor_title-button {
    align-self: auto;
  }

  .n-button.feb-button.custom {
    background-color: var(--moss-1000);
    color: var(--white);
    align-self: stretch;
    display: flex;
  }

  .nav-menu {
    color: var(--neutral-1000);
    background-color: #fff;
  }

  .nav-container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .nav-container.no-right-padding.partners {
    padding-left: 56px;
    padding-right: 56px;
  }

  .header-text.dark-green-text.no-padding.smaller.green {
    text-align: center;
  }

  .header-text.dark-green-text.no-padding.smaller.tighter-mobile {
    text-align: center;
    margin-top: -12px;
  }

  .half-container.narrow {
    max-width: 600px;
    padding-top: 90px;
  }

  .half-container.narrow.qbp-scroll__card.qbp-scroll__card--tablet {
    height: auto;
  }

  .half-container.video3, .half-container.video2, .half-container.video4, .half-container.video1 {
    height: 60%;
  }

  .half-container.typeform-padding {
    padding-bottom: 40px;
  }

  .half-container.less-tablet {
    max-width: 400px;
  }

  .half-container.qbp-scroll__sticky {
    height: 60%;
  }

  .container-2x.relative {
    grid-column-gap: 19px;
    grid-row-gap: 19px;
  }

  .center-text.dark {
    font-size: 48px;
  }

  .center-text.hp-3 {
    width: 100%;
    font-size: 20px;
    font-weight: 300;
    line-height: 120%;
    display: block;
  }

  .n-h2 {
    margin-bottom: 20px;
  }

  .n-container {
    justify-content: flex-start;
    align-items: center;
  }

  .n-h1-white {
    margin-top: 40px;
  }

  .content-5x {
    width: 100%;
    height: auto;
  }

  .content-5x.right-padding {
    order: 1;
    margin-right: 0;
  }

  .content-5x.right-padding.footer-logos.new {
    border-top-style: none;
    border-top-width: 0;
    border-bottom-style: none;
    border-bottom-width: 0;
    order: 0;
    justify-content: space-between;
    align-items: flex-start;
    padding-top: 0;
    padding-bottom: 0;
  }

  .content-5x.new {
    border-bottom: 1px solid var(--neutral-300);
    padding-bottom: 32px;
  }

  .sticky-container {
    height: 70vh;
  }

  .menu-button {
    color: var(--moss-50);
    background-color: #0000;
  }

  .menu-button.w--open {
    color: var(--neutral-1000);
  }

  .small-business {
    width: 90%;
  }

  .small-business.shorter-mobile.new-photo {
    margin-top: 40px;
  }

  .small-business.shorter-mobile.new-photo.ar-war {
    padding: 0;
  }

  .filing {
    width: 90%;
  }

  .filing.financing {
    margin-top: 40px;
  }

  ._4x-container {
    flex-flow: column;
    justify-content: space-between;
    align-items: center;
  }

  .nav-link-2 {
    padding-left: 10px;
    padding-right: 10px;
  }

  .n-button-2.nav-2.new {
    box-sizing: border-box;
    flex: 0 auto;
    align-self: auto;
    width: calc(100% - 48px);
    margin-left: 24px;
    margin-right: 24px;
  }

  .pricing-container {
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
  }

  .price-container {
    width: 395px;
    max-width: none;
  }

  .price-container.sharp-top {
    order: -1;
    margin-bottom: 40px;
  }

  .form-container {
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    margin-top: 20px;
  }

  .content-container {
    padding-left: 30px;
    padding-right: 30px;
  }

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

  .hero-stack.search-stack {
    flex-flow: row;
  }

  .container-3 {
    max-width: 728px;
  }

  .container-3.is-align-vertical.ar {
    width: 100%;
  }

  .text-span-5 {
    font-size: 2rem;
  }

  .heading-8 {
    color: var(--white);
    font-weight: normal;
  }

  .div-block-9.search_box.cs-search-box.cs-search-box--white-border {
    margin-bottom: 2rem;
  }

  .nav__container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .nav__menu__link {
    padding-left: 10px;
    padding-right: 10px;
  }

  .chat-container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .chat-messages {
    width: 98%;
  }

  .chat-welcome__context {
    width: 100%;
  }

  .image-4.bus-id__main-section-img {
    max-height: 60%;
  }

  .chat-prompt__suggestion__item {
    display: block;
  }

  .chat-messages__context {
    width: 98%;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .cs-steps {
    flex-flow: column;
    width: auto;
    max-width: none;
    padding: 2.5rem;
    transition: all .35s;
  }

  .cs-connector {
    border-right: 1px dashed var(--moss-500);
    border-top-style: none;
    width: 0;
    min-width: auto;
    height: auto;
    min-height: 3.5rem;
  }

  .qbp-scroll {
    display: none;
  }

  .qbp-scroll.qbp-scroll--tablet {
    flex-flow: column;
    margin-top: 5rem;
    display: flex;
  }

  .qbp-scroll__sticky__img {
    margin-top: 3rem;
  }

  .chat-messages__message {
    max-width: 95%;
  }

  .ft-hero {
    background-image: none;
  }

  .ft-main {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }

  .ft-main__content {
    padding-left: 30px;
    padding-right: 30px;
  }

  .ft-main__nav {
    display: none;
  }

  .ft-main__cta {
    min-width: 10rem;
    max-width: 16rem;
  }

  .ft-resources__context {
    justify-content: flex-start;
    align-items: center;
  }

  .ft-main__cta__form {
    padding: 46px;
    left: 50%;
  }

  .ft-main__form__close-btn {
    inset: 0% 0% auto auto;
  }

  .e404-container {
    margin-left: auto;
    margin-right: auto;
    padding: 3.75rem 5rem;
    display: block;
  }

  .e404-background {
    flex-flow: column;
    height: 100%;
    max-height: none;
  }

  .e404-content {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    height: auto;
    padding-top: 3.75rem;
    padding-bottom: 0;
    padding-right: 3.75rem;
  }

  .e404-imagecontainer {
    flex-flow: column;
    justify-content: flex-end;
    align-self: flex-start;
    width: 70%;
  }

  .e404-iphoneimg {
    height: 60%;
  }

  .or-leftcontent-title.or-map-title {
    text-align: left;
  }

  .or-section-rightcontent, .or-section-rightcontent.or-howwework-list {
    width: 100%;
  }

  .or-section-downcontent.or-ourvalues-grid, .or-section-downcontent.or-roles-grid {
    grid-template-columns: 1fr 1fr;
  }

  .or-section-upcontent.or-map-title {
    width: 100%;
  }

  .or-collectionlist {
    grid-template-columns: 1fr 1fr;
  }

  .text-size-regular {
    font-size: 18px;
  }

  .text-size-large.text-weight-medium.text-color-black-green-2.max-widht-pers, .text-size-large.text-weight-medium.text-color-black-green-2.max-widht-pers-2, .heading-style-h3.is-24.is-min-widht {
    width: auto;
  }

  .name-person.align-left {
    justify-content: flex-start;
    align-items: center;
  }

  .padding-huge {
    padding: 3rem;
  }

  .grid_bottom-hero-home {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
  }

  .card-testmonial {
    text-align: center;
    justify-content: center;
    align-items: center;
  }

  .great-testmonial {
    background-color: #d3f4e7;
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .padding-medium {
    padding: 1.5rem;
  }

  .img-hero-home {
    display: none;
  }

  .grid_monitor {
    grid-template-columns: 1fr;
  }

  .grid_testmonials {
    grid-template-columns: 1fr;
    align-self: stretch;
  }

  .content-left {
    max-width: none;
  }

  .grid_hero-home {
    grid-template-columns: 1fr;
  }

  .faq-wrap {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
    grid-template-columns: 1fr;
  }

  .content-left-second {
    width: auto;
    padding-left: 3.75rem;
    padding-right: 3.75rem;
  }

  .content-left-second.max-555 {
    padding-left: 0;
  }

  .img-phone {
    display: none;
  }

  .heading-style-h2.is-45px {
    font-size: 2.375rem;
  }

  .heading-style-h2.is-45px.max-width-medium {
    margin-left: 0;
    margin-right: 0;
  }

  .heading-style-h2.is-45px.text-color-white.max-widht-large {
    max-width: none;
  }

  .padding-global.padding-section-large {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .padding-global.padding-section-large.diferent-bottom {
    padding-bottom: 3rem;
  }

  .padding-global.padding-section-large.diferent-top {
    padding-top: 3rem;
  }

  .padding-global.padding-section-large.new {
    padding: 4rem;
  }

  .padding-global.padding-section-large-x {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .heading-1.is-annual-report {
    width: auto;
  }

  .img_result-search {
    display: none;
  }

  .container-grid {
    grid-template-columns: 1fr;
  }

  .container-grid.gap-80 {
    flex-flow: column-reverse;
    display: flex;
  }

  .content-right.is-box {
    margin-bottom: 0;
  }

  .img_why.is-florida-annual {
    height: 25rem;
  }

  .step-by-step_wrapper.is-desktop {
    display: none;
  }

  .step-by-step_wrapper.is-mobile {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    border-left: 1px solid #000;
    grid-template-rows: auto;
    grid-template-columns: auto 1fr;
    grid-auto-columns: 1fr;
    padding-left: 20px;
    display: grid;
  }

  .grid-1-steps {
    grid-column-gap: 100px;
    grid-row-gap: 100px;
    grid-template-columns: auto;
    padding-left: 0;
  }

  .steps-card {
    justify-content: center;
    align-items: flex-start;
    position: relative;
  }

  .grid-3-steps {
    grid-column-gap: 100px;
    grid-row-gap: 100px;
    grid-template-columns: 1fr;
    place-items: start;
    padding-left: 0;
    padding-right: 0;
  }

  .line-step {
    width: 2%;
    height: 100%;
    left: 4px;
  }

  .grid {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    place-items: start stretch;
    height: 100%;
  }

  .image-7 {
    margin-left: -13px;
  }

  .elipse {
    position: absolute;
    top: 30px;
    left: -25px;
  }

  .div-block-17 {
    grid-template-columns: 1fr;
    place-items: center start;
  }

  .div-block-18 {
    grid-row-gap: 2rem;
    grid-template-columns: 1fr auto 1fr;
  }

  .div-block-18._5-column, .div-block-18._7-column {
    grid-template-columns: auto;
  }

  .line-common, .line-common.hide {
    display: none;
  }

  .wrapp-div-search {
    width: 694px;
    max-width: none;
  }

  .status-wrapper {
    grid-column-gap: 1.875rem;
    grid-row-gap: 1.875rem;
  }

  .img_status-wrapper {
    border-radius: 28px;
    height: 20rem;
  }

  .grid-2-columns {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  .grid-2-columns._70._3-columns {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  .img-left-container {
    display: none;
  }

  .is-green {
    margin-bottom: 0;
  }

  .image-9 {
    height: 80px;
    left: -25px;
  }

  .image-10 {
    height: auto;
    bottom: 25px;
    right: -25px;
  }

  .card-filling-deadlines {
    justify-content: flex-start;
    align-items: center;
  }

  .head-cards.vertical {
    align-self: stretch;
  }

  .div-block-22, .div-block-22-4-columns {
    grid-template-columns: 1fr;
  }

  .grid-3-columns {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  .row {
    grid-row-gap: 30px;
    flex-flow: column;
  }

  .background-2 {
    padding-bottom: 40px;
    padding-left: 0;
    padding-right: 0;
  }

  .frame-1618871087 {
    height: auto;
  }

  .row-2 {
    flex-flow: column;
  }

  .nav-link-3 {
    padding-left: 10px;
    padding-right: 10px;
  }

  .home-nav-wrapper.partners {
    opacity: 0;
  }

  .home_hero-image.home_hero-image-top-left {
    max-width: 40%;
  }

  .home_hero-image.home_hero-image-top-right {
    max-width: 40%;
    top: 120%;
  }

  .home_hero-image.home_hero-image-top-right.animated-element-test {
    top: 29%;
  }

  .home_hero-image.home_hero-image-down-left {
    max-width: 40%;
    top: 55%;
    left: 5%;
  }

  .home_hero-image.home_hero-image-down-right {
    max-width: 40%;
    top: 55%;
    right: 5%;
  }

  .section_jta.new {
    padding: 64px;
  }

  .jta_text-container {
    justify-content: center;
    align-items: center;
    width: 100%;
    padding-top: 80px;
  }

  .jta_text-container.new {
    flex: 1;
    justify-content: center;
    align-items: flex-start;
    padding-top: 0;
  }

  .jta_dev, .jta_title {
    text-align: center;
  }

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

  .jta_p {
    align-self: auto;
  }

  .jta_80-pad {
    display: none;
  }

  .jta_80-pad.ar {
    display: block;
  }

  .section_oneid {
    padding-top: 40px;
    padding-left: 0;
  }

  .section_oneid.new {
    padding-top: 0;
  }

  .oneid_title-container {
    justify-content: center;
    align-items: center;
  }

  .oneid_title-container.new {
    align-items: flex-start;
  }

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

  .oneid_title-title.new {
    font-size: 40px;
  }

  .oneid_list-item {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    align-items: center;
  }

  .oneid_list {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
  }

  .onlyid_list-item-text {
    height: auto;
    font-size: 16px;
    line-height: 22px;
  }

  .jta_124-pad {
    display: none;
  }

  .section_message {
    padding: 64px;
  }

  .message_p {
    font-size: 32px;
    line-height: 120%;
  }

  .section_monitor-2.new {
    padding-top: 0;
  }

  .monitor_container {
    flex-flow: column;
    height: auto;
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .monitor_container.new {
    flex-flow: row;
    padding: 32px 32px 32px 64px;
  }

  .monitor_container.new.why-palm, .monitor_container.new.ryb {
    height: auto;
  }

  .monitor_container.new.sp {
    height: auto;
    padding-left: 32px;
  }

  .monitor_title-container {
    justify-content: center;
    align-items: center;
    width: auto;
    padding-left: 3.75rem;
    padding-right: 3.75rem;
  }

  .monitor_title-container.new {
    flex: 1;
    align-self: auto;
    align-items: flex-start;
    padding-left: 0;
    padding-right: 0;
  }

  .monitor_title-container.new.why-palm {
    margin-top: 0;
  }

  .monitor_title-container.new.ryb {
    flex: 0 auto;
    margin-top: 0;
  }

  .monitor_title-container.new.sp {
    margin-top: 0;
  }

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

  .monitor_title-header.new {
    text-align: left;
    font-size: 40px;
  }

  .monitor_phone-container {
    justify-content: center;
    align-items: center;
    display: flex;
    position: static;
  }

  .monitor_phone-container.new {
    justify-content: flex-start;
    align-items: center;
    padding-left: 32px;
    position: relative;
  }

  .monitor_phone-image {
    width: 75%;
    max-width: none;
    display: block;
    position: relative;
    left: 0;
    right: auto;
  }

  .monitor_phone-image.popup {
    width: 75%;
    left: auto;
    right: 0;
  }

  .section_dscroll.new {
    padding: 64px 64px 0;
  }

  .dscroll_header-title {
    font-size: 40px;
  }

  .dscroll_info-card {
    padding-top: 120px;
    padding-bottom: 120px;
  }

  .dscroll_infor-card-title.new {
    font-size: 40px;
  }

  .dscroll_sticky {
    height: 70vw;
    padding-top: 120px;
    padding-bottom: 120px;
    top: 25vh;
  }

  .dscroll_scroll-wrapper {
    justify-content: center;
    align-items: flex-start;
  }

  .oneid_wrapper {
    background-image: none;
    background-repeat: repeat;
    background-size: auto;
    flex-flow: column;
    justify-content: center;
    align-items: center;
  }

  .oneid_wrapper.new {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
    flex-flow: row;
    padding-top: 80px;
    padding-bottom: 80px;
    padding-left: 64px;
  }

  .oneid_spacer {
    width: max(360px, 100vw - 140%);
    height: auto;
    display: block;
  }

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

  .paragraph-8.new {
    text-align: left;
  }

  .jta_wrapper {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
    background-image: none;
    background-repeat: repeat;
    background-size: auto;
    flex-flow: row;
    justify-content: center;
    align-items: center;
  }

  .jta_wrapper.new {
    flex-flow: wrap;
  }

  .jta_wrapper.new.pt {
    flex-flow: column;
  }

  .jta_spacer {
    background-image: url('../images/new-home-hero-jpin-the-alpha-image.webp');
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 50vh;
    display: block;
  }

  .home-nav-wrapper-transparent {
    background-color: var(--moss-1000);
  }

  .home-nav-wrapper-transparent.hp-is-dark.hp-test {
    opacity: 1;
  }

  .nav-link-4 {
    color: var(--neutral-1000);
    text-align: center;
    background-color: #fff;
    padding-left: 10px;
    padding-right: 10px;
  }

  .nav-icon-transparent {
    color: var(--moss-50);
  }

  .nav-icon.dark {
    color: var(--moss-900);
  }

  .flex-block-2 {
    padding-top: 0;
  }

  .image-15.target_image {
    width: 305px;
  }

  .image-16 {
    left: -10%;
  }

  .image-17 {
    width: 16%;
    top: 15%;
    left: 26.5%;
  }

  .div-block-61, .text-block-154 {
    margin-left: 20px;
    margin-right: 20px;
  }

  .div-block-62 {
    width: 100%;
  }

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

  .div-block-71, .div-block-90 {
    width: 100%;
  }

  .text-block-212 {
    display: block;
  }

  .div-block-105, .div-block-106, .div-block-107, .div-block-109, .div-block-111, .div-block-124, .div-block-135, .div-block-144, .div-block-153, .div-block-158, .div-block-164, .div-block-171 {
    max-width: 100%;
  }

  .div-block-186 {
    position: relative;
  }

  .heading-27, .heading-28, .heading-29, .heading-30, .heading-31 {
    font-size: 22px;
  }

  .image-29 {
    width: 30px;
    position: absolute;
    top: -28px;
    left: -35px;
  }

  .div-block-191, .div-block-196, .div-block-207, .div-block-233, .div-block-253, .div-block-275 {
    max-width: 100%;
  }

  .text-span-900, .text-span-901, .text-span-902, .text-span-903, .text-span-904, .text-span-905 {
    font-weight: 600;
  }

  .div-block-284, .div-block-285, .div-block-308, .div-block-310 {
    max-width: 100%;
  }

  .text-span-906, .text-span-907, .text-span-908, .text-span-909, .text-span-910, .text-span-911 {
    font-weight: 600;
  }

  .div-block-319 {
    max-width: 100%;
  }

  .text-span-912, .text-span-913, .text-span-914 {
    font-weight: 600;
  }

  .div-block-330 {
    max-width: 100%;
  }

  .text-span-915, .text-span-916, .text-span-917, .text-span-918, .text-span-919, .text-span-920, .text-span-921, .text-span-922, .text-span-923, .text-span-924, .text-span-925, .text-span-926 {
    font-weight: 600;
  }

  .div-block-360, .div-block-362 {
    max-width: 100%;
  }

  .text-span-928 {
    font-weight: 600;
  }

  .div-block-374 {
    max-width: 100%;
  }

  .text-span-929, .text-span-930, .text-span-931, .text-span-932, .text-span-933, .text-span-934, .text-span-935 {
    font-weight: 600;
  }

  .div-block-386 {
    max-width: 100%;
  }

  .heading-38 {
    color: #fff;
    font-weight: normal;
  }

  .div-block-402 {
    flex-flow: column;
    justify-content: center;
    align-items: center;
  }

  .image-83 {
    width: 15px;
    min-width: auto;
    max-width: 10%;
    position: absolute;
    bottom: -3px;
    left: -28px;
  }

  .image-84 {
    width: 15px;
    max-width: 10%;
    position: absolute;
    bottom: -3px;
    left: -28px;
  }

  .image-88 {
    width: 10%;
    max-width: 10%;
    display: none;
  }

  .image-89 {
    width: 15px;
    max-width: 10%;
    position: absolute;
    bottom: -3px;
    left: -28px;
  }

  .image-93 {
    width: 15px;
    max-width: 15%;
    position: absolute;
    bottom: -3px;
    left: -28px;
  }

  .div-block-424 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .image-106 {
    width: 15px;
    max-width: 10%;
    position: absolute;
    bottom: -3px;
    left: -28px;
  }

  .text-span-1035 {
    color: var(--neutral-800);
  }

  .div-block-438 {
    overflow: hidden;
  }

  .image-112 {
    width: 115px;
  }

  .flex-block-3 {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }

  .image-113 {
    flex: 0 auto;
  }

  .trio_background {
    display: none;
    left: -20%;
  }

  .flex-block-8 {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    flex-flow: column-reverse;
  }

  .flex-block-9 {
    flex: 0 auto;
    width: 100%;
    max-width: 520px;
  }

  .developers-hero {
    height: fit-content;
  }

  .dev_hero_title {
    text-align: center;
  }

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

  .dev_img_container {
    flex: 0 auto;
    width: 100%;
    max-width: 520px;
  }

  .why-palm_phone-container {
    justify-content: center;
    align-items: center;
    display: flex;
    position: static;
  }

  .why-palm_phone-container.new {
    justify-content: flex-start;
    align-items: center;
    padding-left: 32px;
    position: relative;
  }

  .why-palm_phone-image {
    width: 75%;
    max-width: none;
    display: block;
    position: relative;
    left: 0;
    right: auto;
  }

  .dev-scroll_header-title, .dev-scroll_infor-card-title.new {
    font-size: 40px;
  }

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

  .imap_wrapper {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
    background-image: none;
    background-repeat: repeat;
    background-size: auto;
    flex-flow: row;
    justify-content: center;
    align-items: center;
  }

  .imap_wrapper.dev {
    flex-flow: column;
  }

  .imap_text-container {
    justify-content: center;
    align-items: center;
    width: 100%;
    padding-top: 80px;
  }

  .imap_text-container.new {
    flex: 1;
    justify-content: center;
    align-items: flex-start;
    padding-top: 0;
  }

  .imap_title {
    text-align: center;
  }

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

  .section_imap.new {
    padding: 64px;
  }

  .imap_img-container {
    flex: 0 auto;
    width: 100%;
    max-width: 520px;
  }

  .onlyid_spacer {
    width: max(360px, 100vw - 140%);
    height: auto;
    display: block;
  }

  .div-block-438-2 {
    overflow: hidden;
  }

  .image-17-2 {
    width: 16%;
    top: 15%;
    left: 26.5%;
  }

  .image-16-2 {
    left: -10%;
  }

  .onlyid_title-container {
    justify-content: center;
    align-items: center;
  }

  .onlyid_title-container.new {
    align-items: flex-start;
  }

  .onlyid_wrapper {
    background-image: none;
    background-repeat: repeat;
    background-size: auto;
    flex-flow: column;
    justify-content: center;
    align-items: center;
  }

  .onlyid_wrapper.new {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
    flex-flow: row;
    padding-top: 80px;
    padding-bottom: 80px;
    padding-left: 64px;
  }

  .dev-scroll_sticky {
    height: 70vw;
    padding-top: 120px;
    padding-bottom: 120px;
    top: calc(30vh - 100px);
  }

  .image-121 {
    width: 15px;
    max-width: 10%;
    position: absolute;
    bottom: -3px;
    left: -28px;
  }

  .link-7 {
    color: var(--neutral-800);
  }

  .image-139 {
    width: 15px;
    max-width: 10%;
    position: absolute;
    bottom: -3px;
    left: -28px;
  }

  .text-span-1148, .text-span-1164 {
    font-weight: 600;
  }

  .imap_cards-container {
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
    justify-content: flex-start;
    align-items: stretch;
    width: 90%;
    padding: 1rem;
    display: flex;
    overflow-x: auto;
  }

  .dev-form_container {
    opacity: 0;
    width: 80vw;
  }

  .nav-link-7 {
    padding-left: 10px;
    padding-right: 10px;
  }

  .pt-hero.ar {
    height: auto;
    padding-top: 80px;
    padding-bottom: 80px;
  }

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

  .pt-hero_title.new {
    text-align: left;
  }

  .pt-ryb_table {
    padding-left: 16px;
    padding-right: 16px;
  }

  .py-ryb_table_content, .pt-ryb_table_header, .pt-ryb_table_header.extends {
    grid-template-columns: 1.3fr .8fr 1fr;
  }

  .pt-bd_wrapper {
    background-image: none;
    background-repeat: repeat;
    background-size: auto;
    flex-flow: column;
    justify-content: center;
    align-items: center;
  }

  .pt-bd_wrapper.new {
    padding-left: 80px;
  }

  .pt-bd_wrapper.new.hiw {
    padding-top: 80px;
  }

  .section_pt-bd {
    padding-top: 40px;
    padding-left: 0;
  }

  .section_pt-bd.new {
    padding-top: 0;
  }

  .pt-bd_container {
    justify-content: center;
    align-items: center;
  }

  .pt-bd_container.act {
    justify-content: flex-start;
    align-items: center;
  }

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

  .pt-bd_cards.ps {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
    grid-auto-flow: row;
  }

  .pt-bd_cards.new {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
  }

  .pt-bd_card.padding-right.border-right.act {
    padding-left: 48px;
  }

  .pt-bd_card.padding-left.act {
    padding-right: 48px;
  }

  .pt-ryb-title_wrapper {
    flex-flow: column;
  }

  .pt-ryb-tag {
    order: -9999;
  }

  .pt-hero-img_container {
    background-size: cover;
    flex-flow: column;
    flex: 0 auto;
    width: 100%;
  }

  .pt-hero-img_container.act {
    background-size: cover;
  }

  .pt-hero_img {
    flex: 0 auto;
  }

  .columns-wrapper {
    flex-flow: column-reverse;
  }

  .centered-section {
    padding: 64px;
  }

  .id-column {
    justify-content: center;
    align-items: center;
  }

  .cards-wrapper {
    width: 100%;
    height: auto;
    margin-top: 0;
  }

  .new-home-card {
    margin-top: -80px;
    position: relative;
  }

  .new-home-card.hh1 {
    margin-top: 0;
    transform: scale(.7);
  }

  .new-home-card.hh2 {
    left: 0%;
    transform: scale(.8);
  }

  .new-home-card.hh3 {
    right: 0%;
    transform: scale(.9);
  }

  .section_hiw {
    padding-top: 0;
    padding-left: 0;
  }

  .act-hiw_tiled-container {
    flex-flow: column;
    display: flex;
  }

  .sct-hiw_tiled-img-container {
    order: -9999;
  }

  .image-173.mobile {
    width: 100%;
    display: inline-block;
  }

  .image-173.desktop {
    display: none;
  }

  .act-form_container {
    opacity: 0;
    width: 80vw;
  }

  .nav-link-switcher {
    color: var(--neutral-1000);
    text-align: center;
    background-color: #fff;
    padding-left: 10px;
    padding-right: 10px;
  }

  .nav-link-switcher.switcher-on-transparent {
    background-color: #0000;
  }

  .hp-container.hp-map {
    width: 100vw;
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
  }

  .hp-container.hp-grow {
    max-width: 100vw;
    padding-top: 19vw;
  }

  .hp-h1-light {
    font-size: 36px;
  }

  .hp-h1-light.hp-hero-h1 {
    max-width: 18em;
    font-size: 36px;
  }

  .hp-hero-description {
    flex: 1;
    width: 100%;
    max-width: 40em;
  }

  .hp-hero-section {
    height: 60vh;
    min-height: 860px;
  }

  .hp-network-graphic {
    width: 100vw;
    height: 70vw;
    position: relative;
    inset: auto;
  }

  .hp-network-face.hp-face-tl, .hp-network-face.hp-face-tr {
    bottom: 50%;
  }

  .hp-network-face.hp-face-br, .hp-network-face.hp-face-bl {
    bottom: 5%;
  }

  .hp-network-face.hp-face-cn {
    bottom: 30%;
  }

  .hp-network-institution.hp-institution-bcn {
    bottom: 15%;
  }

  .hp-network-institution.hp-institution-tcn {
    bottom: 70%;
  }

  .hp-network-institution.hp-institution-left {
    bottom: 34%;
    left: 23%;
  }

  .hp-network-institution.hp-institution-right {
    bottom: 34%;
    right: 23%;
  }

  .hp-product {
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
  }

  .hp-product-wrapper {
    grid-column-gap: 80px;
    grid-row-gap: 80px;
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 0;
    padding-bottom: 0;
    display: flex;
  }

  .hp-product-color-bg.hp-color-monitoring {
    height: 100vh;
  }

  .hp-product-color-bg.hp-color-1-trans {
    justify-content: center;
    align-items: flex-start;
    width: calc(100% - 24px);
    height: 100vh;
    top: 40px;
    overflow: hidden;
  }

  .hp-product-color-bg.hp-color-2-trans, .hp-product-color-bg.hp-color-3-trans {
    justify-content: center;
    align-items: flex-start;
    overflow: hidden;
  }

  .hp-product-big-title {
    text-align: center;
  }

  .hp-product-left {
    justify-content: center;
    align-items: center;
  }

  .hp-product-left.desc {
    text-align: center;
  }

  .hp-product-left.come-in-left {
    justify-content: center;
    align-items: center;
  }

  .radar-comp {
    max-width: 90vw;
    margin-right: 0;
  }

  .stats-block-wrap {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-flow: row;
    align-content: start;
    width: auto;
    height: auto;
  }

  .flex-block-10 {
    flex: 0 auto;
  }

  .hide-on-mobile {
    display: none;
  }

  .hide-on-desktop {
    background-color: var(--moss-400);
    border-radius: 24px;
    justify-content: center;
    align-items: center;
    width: calc(100% - 24px);
    padding-top: 40px;
    padding-bottom: 40px;
    display: flex;
  }

  .hide-on-desktop.inverse {
    background-color: var(--moss-1000);
  }

  .feb-section-l {
    width: 100%;
  }

  .feb-section {
    padding: 80px 48px;
  }

  .feb-section.light {
    padding: 120px 48px;
  }

  .feb-section.grid-large {
    padding-top: 120px;
    padding-bottom: 120px;
  }

  .feb-content {
    grid-column-gap: .75rem;
    grid-row-gap: .75rem;
    flex-flow: column;
  }

  .feb-h6-left-title {
    width: 100%;
    margin-top: 0;
  }

  .network-block-wrapper {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
  }

  .carousel-block-wrapper {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
  }

  .diagram-wrapper {
    border-style: none;
    padding-top: 0;
    padding-bottom: 0;
  }

  .background-video-5 {
    height: max(100%, 100vh);
  }

  .tabs.card-flex {
    flex-flow: column;
  }

  .feb-tab-switcher-group {
    width: 100%;
    margin-bottom: 2rem;
    margin-right: 0;
  }

  .feb-h1-hero {
    font-weight: 400;
  }

  .feb-h1-hero.announcement {
    font-size: 64px;
    line-height: 72px;
  }

  .secondary-nav-cta {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .div-block-587 {
    height: max(100%, 100vh);
  }

  .link-button-wrapper.hide-on-tablet {
    display: none;
  }

  .feb-card-body-text, .feb-card2-body-text {
    font-size: 16px;
  }

  .separator.last {
    display: block;
  }

  .feb-closing-text.middle {
    font-size: 20px;
    line-height: 28px;
  }

  .grid-svg {
    width: 110%;
    left: -5%;
  }

  .footer-flex {
    flex-flow: column;
    align-self: stretch;
  }

  .footer-v-flex {
    align-self: stretch;
  }

  .grid-svg-l {
    width: 75%;
  }

  .grid-svg-l.large {
    width: 70%;
  }

  .grid-svg-r {
    width: 75%;
  }

  .grid-svg-r.large {
    width: 70%;
  }

  .choice-cards {
    flex-flow: column;
  }

  .numbered-card__body-text {
    font-size: 16px;
  }

  .wrapped-icon-card {
    min-height: auto;
  }

  .wrapped-text-body {
    font-size: 16px;
  }

  .feb-testimonial-card {
    width: 400px;
  }

  .announcement-header-wrapper {
    min-height: auto;
  }
}

@media screen and (max-width: 767px) {
  .section.formation {
    background-position: 50% 300px;
    background-size: auto 100%;
  }

  .section.formation.bg-image {
    background-image: url('../images/Formations-header-mobile.jpg'), linear-gradient(90deg, #ecf9f478, #fff0 46%), url('../images/thom-holmesaf-J2e34-1CVVs-unsplash.jpg');
    background-position: 50%, 0 0, 60% 100%;
    background-repeat: repeat, repeat, no-repeat;
    background-size: cover, auto, auto 100%;
  }

  .section.light-gray.padding-60 {
    padding: 24px 32px 48px;
  }

  .section.light-gray.padding-60._0-padding-mobile {
    padding: 32px 0;
  }

  .section.light-gray.padding-60.no-padding-mobile.bus-id__lsection {
    padding-top: 60px;
    padding-bottom: 0;
  }

  .section.light-gray.padding-60.no-padding-mobile.or-section, .section.light-gray.padding-60.no-padding-mobile.or-section.or-section--green {
    padding: 4rem 2rem;
  }

  .section.light-gray.padding-60.no-padding-mobile.or-section.or-map-section {
    padding-top: 3rem;
    padding-bottom: 1.5rem;
  }

  .section.burst {
    background-position: -70px 200px;
    background-size: auto 100%;
  }

  .section.boi-background {
    padding-top: 60px;
  }

  .btn-secondary {
    padding-left: 20px;
    padding-right: 40px;
  }

  .container {
    padding-left: 0;
    padding-right: 0;
  }

  .container.center {
    padding-left: 20px;
    padding-right: 20px;
  }

  .container.header.no-padding-mobile.or-mainsection-container {
    padding: 5rem 2rem;
  }

  .container.left-align {
    padding-left: 20px;
    padding-right: 20px;
  }

  .container._10-padding-mobile.middle-aligned.bus-id__lsection__cont {
    padding-left: 0;
    padding-right: 0;
  }

  .container._10-padding-mobile.middle-aligned.or-container {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    padding: 0 0;
  }

  .container._10-padding-mobile.middle-aligned.or-container.or-container--vertical {
    padding: 0;
  }

  .container._10-padding-mobile.middle-aligned.or-container {
    padding-left: 0;
    padding-right: 0;
  }

  .container._10-padding-mobile.middle-aligned.or-container.or-ourvalues-container {
    padding: 0;
  }

  .container._10-padding-mobile.middle-aligned.or-container.or-map-container {
    height: calc(100vh - 30rem);
  }

  .container._10-padding-mobile.middle-aligned.or-container.or-roles-container {
    padding: 0;
  }

  .container.boi-header {
    padding-left: 56px;
    padding-right: 56px;
  }

  .left-content.flex-stretch {
    padding-left: 20px;
    padding-right: 20px;
  }

  .left-content.flex-stretch.bus-id__main-section__text-cont {
    width: auto;
    max-width: none;
  }

  .left-content.indent.inner-padding-tablet {
    padding-left: 40px;
    padding-right: 40px;
  }

  .left-content.flex-vertical {
    flex-flow: column;
    justify-content: center;
    align-items: center;
    width: 97%;
  }

  .content.center-vertically {
    padding-top: 80px;
  }

  .u-header-tab {
    justify-content: space-between;
    align-items: stretch;
  }

  .u-green-header-text {
    width: 69%;
  }

  .paragraph.small {
    font-size: 1rem;
  }

  .short-container {
    padding-right: 0;
  }

  .image-inform, .image-connect, .right-content.phone, .image-control {
    height: 500px;
  }

  .image-fins {
    height: 400px;
  }

  .footer-container.new {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 48px 32px;
  }

  .footer-block {
    grid-column-gap: 56px;
    grid-row-gap: 56px;
    justify-content: flex-start;
    height: auto;
    padding: 48px 32px 32px;
    text-decoration: none;
  }

  .phone-icon {
    width: 32px;
  }

  .flex-horizontal {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
    align-items: center;
  }

  .flex-horizontal.left-align.stacked-mobile {
    width: 100%;
  }

  .text-secondary {
    text-align: left;
    font-family: DM Sans, sans-serif;
    font-size: 1.125rem;
    line-height: 1.5rem;
  }

  .image-up-arrow {
    width: 24px;
    height: 24px;
  }

  .tight-mobile.larger-mobile-text {
    font-size: 1.5rem;
  }

  .tight-mobile.larger-mobile-text.bottompadding-30 {
    font-size: 1.875rem;
  }

  .privacy-header {
    font-size: 60px;
  }

  .dark-green-text.font-16.banner-text {
    text-align: center;
    font-size: 15px;
  }

  .large.dark-green-text {
    align-self: center;
    font-size: 1.5rem;
    line-height: 120%;
  }

  .image-peace, .image-join {
    height: 500px;
  }

  .bior-image {
    background-position: 30% 0;
    height: 400px;
  }

  .fincen-image {
    width: 311px;
    height: auto;
  }

  .check-image {
    height: 500px;
  }

  .font-56 {
    max-width: none;
    font-size: 2.5rem;
  }

  .utility-page-wrap {
    flex-flow: column;
    height: 120vh;
    padding-top: 40px;
  }

  .cloud {
    flex-flow: column;
    height: 800px;
    padding-top: 40px;
    overflow: hidden;
  }

  .faq-q-text {
    font-size: 1.5rem;
    line-height: 120%;
  }

  .c-faq-a-text {
    padding-top: 0;
  }

  .faq-a-text {
    font-size: 1rem;
  }

  .top-bottom-padding {
    grid-column-gap: 4px;
    grid-row-gap: 4px;
  }

  .blog-header, .blog-feature, .blog-list {
    padding-left: 30px;
    padding-right: 30px;
  }

  .heading-5 {
    max-width: none;
    font-size: 1.125rem;
    line-height: 1.625rem;
  }

  .button-text.green.primary {
    display: none;
  }

  .button-text.green.primary.typeform {
    display: block;
  }

  .button-image.primary {
    display: none;
  }

  .button-image.primary.typeform {
    display: block;
  }

  .image {
    bottom: -56%;
    right: -90%;
  }

  .left-flex {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
  }

  .div-block-7 {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
  }

  .footer-text {
    font-size: 1.5rem;
    font-weight: 400;
    text-decoration: none;
  }

  .link-block-2 {
    color: var(--transparent);
    text-decoration: none;
  }

  .partner {
    padding-top: 56px;
  }

  .chat-bubble {
    flex: none;
  }

  .n-section {
    padding-top: 100px;
  }

  .n-section.home {
    background-image: url('../images/Palm-Header-Mobile2.webp');
    justify-content: center;
    align-items: flex-start;
    height: 900px;
    padding-top: 60px;
  }

  .n-section.cta {
    height: 500px;
    padding-left: 30px;
    padding-right: 30px;
  }

  .n-section.no-bottom-padding.margin-mobile {
    padding-left: 30px;
    padding-right: 30px;
  }

  .n-section.boi-home {
    background-color: var(--moss-1000);
    background-image: none;
    justify-content: center;
    align-items: flex-start;
    height: auto;
    padding-top: 60px;
    padding-bottom: 80px;
  }

  .n-section.boi-home.landing-page.statement {
    background-image: url('../images/67414f14eadefda5c290e951_mobile.jpg');
    background-position: 50% 100%;
    background-size: cover;
    height: 900px;
  }

  .n-section.flex-vertical.green {
    padding-left: 30px;
    padding-right: 30px;
  }

  .n-section.qbp-hero {
    justify-content: center;
    align-items: flex-start;
    height: 100%;
    padding-top: 60px;
    padding-bottom: 5rem;
  }

  .n-section.ar-war {
    padding: 80px 30px 40px;
  }

  .n-section.ar-war.tfc {
    padding-top: 40px;
    padding-bottom: 80px;
  }

  .n-nav.is-sticky.transparent {
    height: 64px;
  }

  .palm-logo.transparent {
    background-size: contain;
  }

  .palm-logo.white.small {
    filter: none;
    flex: none;
    align-self: auto;
    width: 98px;
    height: 28px;
    max-height: 28px;
    padding-bottom: 0;
    padding-left: 0;
    display: block;
  }

  .palm-logo.white.small.w--current {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    background-size: contain;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    align-self: auto;
    display: block;
  }

  .palm-logo.black.small {
    box-sizing: border-box;
    filter: none;
    flex: none;
    align-self: auto;
    width: 84px;
    height: 24px;
    padding-bottom: 0;
    padding-left: 0;
  }

  .palm-logo.black.small.w--current {
    width: 98px;
    height: 28px;
  }

  .n-button.nav {
    margin-top: 60px;
    margin-bottom: 60px;
    margin-right: 20px;
    display: block;
  }

  .n-button.top-padding-20 {
    text-align: center;
    width: 100%;
  }

  .n-button.white-text, .n-button.download, .n-button.jta_btn.new {
    width: 100%;
  }

  .n-button.jta_btn.new.dev-btn, .n-button.jta_btn.new.dev, .n-button.jta_btn.new.pt-hero_btn {
    text-align: center;
  }

  .n-button.jta_btn.new.pt-hero_btn.act-btn {
    color: var(--moss-1000);
    background-color: #64c9a4;
  }

  .n-button.oneid_title-button.new, .n-button.monitor_title-button.new {
    width: 100%;
  }

  .n-button.void {
    white-space: nowrap;
  }

  .n-button.feb-button {
    text-align: center;
    align-self: stretch;
    padding: .5rem .75rem;
    font-size: 16px;
    line-height: 24px;
  }

  .n-button.feb-button.custom {
    grid-column-gap: .25rem;
    grid-row-gap: .25rem;
    background-color: var(--moss-1000);
    border-style: none;
    min-height: 48px;
    display: flex;
  }

  .n-button.feb-button.announcement {
    font-size: 14px;
    line-height: 22px;
  }

  .n-button.secondary {
    height: 40px;
  }

  .n-button.secondary.nav {
    flex: 0 auto;
    order: 1;
    margin-top: 0;
    margin-bottom: 0;
    display: flex;
  }

  .nav-menu {
    text-align: center;
    background-color: #fff;
  }

  .nav-container.no-right-padding {
    padding-left: 32px;
    padding-right: 32px;
  }

  .nav-container.no-right-padding.partners {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    flex-flow: wrap;
    justify-content: space-between;
    align-self: flex-start;
    padding: 24px 0 0;
    position: relative;
  }

  .half-container {
    max-width: none;
  }

  .half-container.narrow {
    height: auto;
    margin-bottom: 61px;
    padding-top: 200px;
  }

  .half-container.narrow.qbp-scroll__card.qbp-scroll__card--mobile, .half-container.narrow.qbp-scroll__card.qbp-scroll__card--tablet {
    margin-top: 3rem;
    margin-bottom: 0;
  }

  .half-container.video3, .half-container.video2, .half-container.video4, .half-container.video1 {
    display: none;
  }

  .half-container.typeform-padding {
    padding-left: 30px;
    padding-right: 30px;
  }

  .half-container.less-tablet {
    max-width: none;
  }

  .half-container.width, .half-container.qbp-hero__container {
    width: 100%;
  }

  .half-container.qbp-scroll__sticky {
    display: none;
  }

  .container-2x.header-indent, .container-2x.qbp-hero__context {
    padding-left: 30px;
  }

  .center-text.dark {
    font-size: 56px;
  }

  ._3x-container {
    flex-flow: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 0;
  }

  ._3x-block {
    width: 100%;
    max-width: 400px;
    margin-bottom: 40px;
  }

  .n-container.inner-padding {
    padding-left: 20px;
    padding-right: 20px;
  }

  .n-container.max-width-1200 {
    flex-flow: column;
  }

  .n-h1-white {
    font-size: 40px;
  }

  .n-h1-white.bus-id__last-section__header {
    width: 400px;
  }

  .content-5x {
    width: 100%;
    margin-bottom: 60px;
  }

  .content-5x.right-padding {
    order: 1;
  }

  .content-5x.right-padding.footer-logos.new {
    justify-content: space-between;
    align-items: flex-start;
  }

  .content-5x.new {
    margin-bottom: 0;
  }

  .flex-social.new {
    margin-top: 0;
  }

  .sticky-container {
    display: none;
  }

  .home-buttons {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .menu-button {
    background-color: #fff0;
  }

  .menu-button.w--open {
    color: var(--neutral-1000);
    background-color: #f9fafb00;
  }

  .icon {
    color: #053c41;
  }

  .background-video {
    height: 500px;
    display: block;
  }

  .background-video.hide-desktop, .background-video-2.hide-desktop, .background-video-3.hide-desktop, .background-video-4.hide-desktop {
    width: 420px;
    height: 420px;
    display: block;
  }

  .desktop-scroll {
    display: none;
  }

  .mobile-scoll-section {
    padding-left: 30px;
    padding-right: 30px;
    display: block;
  }

  .small-business {
    height: 500px;
    margin-bottom: 60px;
  }

  .small-business.shorter-mobile.new-photo {
    margin-top: 0;
  }

  .small-business.shorter-mobile.new-photo.ar-war {
    height: auto;
    margin-bottom: 0;
  }

  .small-business.shorter-mobile.new-photo.ar-tfc {
    margin-bottom: 0;
  }

  .filing {
    height: 500px;
    margin-bottom: 60px;
  }

  .n-button-2.nav {
    margin-top: 60px;
    margin-bottom: 60px;
    margin-right: 20px;
    display: block;
  }

  .n-button-2.nav.padding.wide {
    margin-bottom: 0;
  }

  .n-button-2.nav__menu__button {
    margin-top: 60px;
    margin-bottom: 60px;
    margin-right: 20px;
    display: block;
  }

  .n-button-2.nav-2 {
    margin-top: 16px;
    margin-bottom: 32px;
    margin-right: 20px;
    display: block;
  }

  .left-align.left-padding.bigger {
    text-align: center;
    margin-top: -8px;
    font-size: 40px;
  }

  .banner-announcement {
    height: auto;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .banner-container, .state-cta {
    flex-flow: column;
  }

  .center-landscape {
    text-align: center;
    margin-top: 20px;
  }

  .hero-stack {
    padding: 60px 15px;
  }

  .hero-stack.search-stack.cs-search-stack.section_hero-business-serch.ar {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .nav__menu {
    background-color: #f9fafb;
  }

  .chat-welcome__context {
    width: 100%;
  }

  .chat-prompt {
    width: 90%;
  }

  .bus-id__lhalf-cont {
    width: auto;
    max-width: none;
    min-height: auto;
    overflow: visible;
  }

  .image-4.bus-id__main-section-img {
    max-height: 50%;
  }

  .qbp-scroll {
    display: none;
  }

  .qbp-scroll.qbp-scroll--mobile {
    flex-flow: column;
    display: flex;
  }

  .qbp-scroll.qbp-scroll--tablet {
    flex-flow: column;
    display: none;
  }

  .qbp-scroll__sticky__img {
    margin-top: 2rem;
  }

  .qbp-hero__qb-btn {
    max-width: 20rem;
  }

  .chat-messages__message {
    max-width: 95%;
    padding-left: 0;
    padding-right: 0;
  }

  .ft-hero {
    padding-top: 100px;
  }

  .ft-hero__content {
    max-width: none;
  }

  .ft-hero__cta {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .ft-main {
    flex-flow: column;
    align-items: center;
  }

  .ft-main__cta {
    order: -1;
    min-width: auto;
    max-width: none;
    max-height: none;
    position: relative;
    top: auto;
  }

  .ft-main__cta__card__p.ft-main__cta__card__p--margin-top {
    text-align: center;
  }

  .ft-trusted {
    padding-top: 100px;
  }

  .ft-resources__state-cta {
    flex-flow: column;
  }

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

  .ft-resources__p {
    text-align: center;
    margin-top: 20px;
  }

  .ft-main__cta__form {
    align-items: stretch;
    display: none;
    position: absolute;
    inset: 50% 0% 0% 50%;
  }

  .ft-main__form__close-btn {
    max-width: 5%;
    position: absolute;
    inset: 0% 0% auto auto;
  }

  .e404-container {
    flex-flow: column;
    padding: 3rem;
    display: block;
  }

  .e404-background {
    flex-flow: column;
    justify-content: space-between;
    align-items: flex-start;
    position: static;
  }

  .e404-content {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
    width: 100%;
    padding-top: 3rem;
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .e404-imagecontainer {
    background-position: 50% 0;
    background-size: cover;
    width: 100%;
  }

  .or-leftcontent-title {
    font-size: 2rem;
  }

  .or-rightcontent-text {
    text-align: center;
    font-size: 1rem;
  }

  .or-section-downcontent.or-ourvalues-grid {
    grid-template-columns: 1fr 1fr;
  }

  .or-section-downcontent.or-roles-grid {
    grid-template-columns: 1fr;
  }

  .or-section-downcontent.home {
    width: 80%;
  }

  .or-ourvalues-card-text {
    font-size: .875rem;
  }

  .or-ourvalues-card-text.or-ourvalues-card-text--title {
    font-size: 1rem;
  }

  .or-collectionlist {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
  }

  .text-size-large {
    font-size: 1.25rem;
  }

  .heading-style-h3 {
    font-size: 1.5rem;
  }

  .padding-huge {
    padding: 3.5rem;
  }

  .padding-medium {
    padding: 1.25rem;
  }

  .heading-style-h3-2 {
    font-size: 1.5rem;
  }

  .heading-style-h2 {
    font-size: 2rem;
  }

  .padding-global {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .padding-global.padding-section-large.new {
    padding: 3rem 2rem;
  }

  .grid_3-column.is-wrapper.is-4column {
    grid-template-columns: 1fr 1fr;
  }

  .wrapp-div-search {
    width: 100%;
  }

  .icon-50 {
    width: 30px;
    min-width: 30px;
    max-width: 50px;
    height: 30px;
    min-height: 30px;
    max-height: 50px;
  }

  .nav-link-3 {
    color: var(--neutral-1000);
  }

  .home-nav-wrapper.partners {
    opacity: 0;
    height: auto;
  }

  .home_container-large {
    margin-left: 0;
    margin-right: 0;
    padding-bottom: 20rem;
    padding-left: 20px;
    padding-right: 20px;
  }

  .home_container-large.new {
    height: calc(100% - 64px);
    padding: 2rem 1rem;
  }

  .home_title-container {
    height: 100%;
  }

  .home_title-head.new {
    letter-spacing: 0;
    font-size: 40px;
  }

  .bold-text-72.new {
    letter-spacing: 0;
  }

  .home_hero-image.home_hero-image-top-left {
    z-index: 2;
    width: 40%;
    max-width: 200px;
    top: calc(56.9189px - 12.1622vw + 42%);
    left: auto;
  }

  .home_hero-image.home_hero-image-top-right {
    max-width: 50%;
  }

  .home_hero-image.home_hero-image-top-right.animated-element-test {
    z-index: 3;
    width: 70%;
    max-width: 340px;
    margin-right: 0;
    top: calc(56.9189px - 12.1622vw + 64%);
    left: auto;
    right: auto;
  }

  .home_hero-image.home_hero-image-down-left {
    z-index: 2;
    width: 50%;
    max-width: 260px;
    top: calc(56.9189px - 12.1622vw + 51%);
    left: auto;
  }

  .home_hero-image.home_hero-image-down-right {
    max-width: 50%;
    display: none;
    right: 0%;
  }

  .section_jta.new {
    padding: 0;
  }

  .jta_text-container.new {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    background-color: var(--moss-1000);
    background-image: none;
    padding: 48px 32px;
  }

  .jta_text-container.new.pt {
    background-color: var(--transparent);
    padding: 32px 16px;
  }

  .jta_text-container.new.pt.act {
    justify-content: center;
    align-items: center;
    padding-left: 32px;
    padding-right: 32px;
  }

  .jta_text-container.new.pt.ar {
    justify-content: center;
    align-items: center;
  }

  .jta_32-pad.p40 {
    display: none;
  }

  .jta_32-pad.horizontal {
    flex: none;
    width: 32px;
  }

  .jta_title.new {
    font-size: 32px;
    line-height: 40px;
  }

  .jta_p.new, .jta_p.new.act {
    text-align: center;
  }

  .section_oneid.new {
    width: 100%;
  }

  .oneid_title-container.new {
    flex: 0 auto;
    order: 2;
    justify-content: center;
    align-self: auto;
    align-items: flex-start;
    width: 100%;
  }

  .section_message {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    padding: 48px 32px;
  }

  .section_monitor-2.new {
    overflow: hidden;
  }

  .monitor_container {
    padding: 40px;
  }

  .monitor_container.new {
    grid-column-gap: 48px;
    grid-row-gap: 48px;
    flex-flow: column;
    padding-top: 48px;
    padding-bottom: 24px;
    padding-left: 32px;
  }

  .monitor_container.new.why-palm, .monitor_container.new.ryb {
    align-items: center;
    padding-right: 32px;
  }

  .monitor_container.new.ryb.mobile {
    padding: 32px;
  }

  .monitor_container.new.sp {
    align-items: center;
    padding-left: 0;
    padding-right: 0;
  }

  .monitor_title-container.new {
    flex: 1;
    width: 100%;
  }

  .monitor_title-container.new.why-palm {
    width: auto;
  }

  .monitor_title-container.new.ryb {
    width: auto;
    position: static;
  }

  .monitor_title-container.new.sp {
    width: auto;
    padding-left: 32px;
    padding-right: 32px;
  }

  .monitor_title-header {
    font-size: 2rem;
  }

  .monitor_title-header.new {
    letter-spacing: 0;
    font-size: 32px;
    line-height: 36px;
  }

  .monitor_phone-container {
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    max-width: none;
  }

  .monitor_phone-container.new {
    max-width: 400px;
    padding-left: 0;
  }

  .monitor_phone-image {
    width: 100%;
  }

  .monitor_phone-image.popup {
    width: 90%;
    right: -100px;
  }

  .section_dscroll {
    padding-top: 80px;
  }

  .section_dscroll.new {
    padding-left: 0;
    padding-right: 0;
  }

  .dscroll_header.new {
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding-bottom: 32px;
    padding-left: 32px;
    padding-right: 32px;
  }

  .dscroll_header-title {
    letter-spacing: 0;
  }

  .dscroll_infor-card-title {
    font-size: 32px;
  }

  .dscroll_scroll-wrapper {
    display: none;
  }

  .image-12.new {
    box-sizing: border-box;
    object-fit: cover;
    object-position: 50% 30%;
    border-radius: 0;
    max-width: none;
  }

  .image-13 {
    max-width: none;
  }

  .image-13.new {
    border-radius: 0;
    position: static;
  }

  .image-14.new {
    border-radius: 0;
    max-width: none;
    position: static;
  }

  .oneid_wrapper.new {
    grid-column-gap: 48px;
    grid-row-gap: 48px;
    flex-flow: column;
    padding: 56px 32px;
    overflow: hidden;
  }

  .oneid_spacer {
    order: 0;
    width: auto;
    position: static;
  }

  .paragraph-8.new {
    font-weight: 400;
  }

  .paragraph-8.new.ryb.mobile {
    color: #202327;
  }

  .jta_wrapper.new {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-flow: column;
  }

  .jta_spacer {
    background-size: contain;
    height: 50vw;
  }

  .home-nav-wrapper-transparent.hp-is-dark.hp-test {
    opacity: 1;
    height: auto;
    display: block;
  }

  .nav-link-4 {
    text-align: center;
    flex: 0 auto;
  }

  .nav-icon-transparent {
    color: var(--white);
  }

  .nav-icon {
    color: #053c41;
  }

  .mscroll_scroll-wrapper {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .mscroll_info-card {
    padding-top: 0;
    padding-bottom: 0;
  }

  .mscroll_info-card-wrapper {
    padding-bottom: 48px;
    padding-left: 32px;
    padding-right: 32px;
  }

  .mscroll_info-card-wrapper.new {
    padding: 48px 32px 48px 0;
  }

  .flex-block-2 {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
  }

  .div-block-55 {
    height: 880px;
  }

  .image-15.target_image {
    z-index: 4;
    width: 100%;
    max-width: 342px;
  }

  .image-15.target_image.new.img2 {
    left: auto;
  }

  .image-16 {
    text-align: center;
    width: 200%;
    left: 0%;
    right: 0%;
  }

  .div-block-56 {
    justify-content: center;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
  }

  .image-17 {
    width: 140%;
    max-width: max(32vw, 160px);
    inset: auto auto 5.8vw;
  }

  .div-block-438 {
    order: 0;
    display: none;
  }

  .div-block-438.mobile {
    grid-column-gap: 56px;
    grid-row-gap: 56px;
    flex-flow: column;
    order: 9999;
    justify-content: center;
    align-items: center;
    display: flex;
    overflow: visible;
  }

  .flex-block-4 {
    order: -9999;
  }

  .image-113 {
    max-width: 520px;
  }

  .flex-block-5 {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
  }

  .flex-block-5.act, .flex-block-5.ar {
    justify-content: flex-start;
    align-items: center;
  }

  .text-span-1075 {
    font-weight: 600;
  }

  .flex-block-6.ryb.home {
    width: 80%;
  }

  .image-114 {
    margin-left: auto;
    margin-right: auto;
    display: block;
    position: relative;
  }

  .flex-block-9 {
    background-image: url('../images/new-home-hero-jpin-the-alpha.webp');
    background-position: 0 0;
    background-size: cover;
    max-width: none;
    padding-bottom: 32px;
    padding-left: 32px;
    padding-right: 32px;
  }

  .dev_hero_title.new {
    font-size: 32px;
    line-height: 40px;
  }

  .dev_img_container {
    max-width: none;
    padding-bottom: 32px;
    padding-left: 32px;
    padding-right: 32px;
  }

  .why-palm_phone-container {
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    max-width: none;
  }

  .why-palm_phone-container.new {
    justify-content: center;
    align-items: center;
    max-width: 400px;
    padding-left: 0;
    position: static;
  }

  .why-palm_phone-image {
    width: 100%;
    position: static;
  }

  .section_dev-scroll {
    background-position: 100%;
    padding-top: 80px;
  }

  .palm-helps_p {
    font-size: 32px;
    font-weight: 500;
    line-height: 36px;
  }

  .dev-scroll_header-title {
    letter-spacing: 0;
  }

  .dev-scroll_infor-card-title {
    font-size: 32px;
  }

  .imap_text-container.new {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    background-color: var(--moss-1000);
    background-image: none;
    padding: 48px 32px;
  }

  .imap_flex {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
  }

  .section_imap.new {
    padding: 0;
  }

  .imap_img-container {
    max-width: none;
    padding-bottom: 32px;
    padding-left: 32px;
    padding-right: 32px;
  }

  .onlyid_spacer {
    order: 0;
    width: auto;
    position: static;
  }

  .div-block-56-2, .div-block-56-3 {
    justify-content: center;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
  }

  .div-block-438-2 {
    order: 0;
    display: none;
  }

  .image-17-2 {
    width: 140%;
    max-width: max(32vw, 160px);
    inset: auto auto 5.8vw;
  }

  .image-16-2 {
    text-align: center;
    width: 200%;
    left: 0%;
    right: 0%;
  }

  .onlyid_title-container.new {
    flex: 0 auto;
    order: 2;
    justify-content: center;
    align-self: auto;
    align-items: flex-start;
    width: 100%;
  }

  .onlyid_wrapper.new {
    grid-column-gap: 48px;
    grid-row-gap: 48px;
    flex-flow: column;
    padding: 56px 32px;
    overflow: hidden;
  }

  .img-scroll3 {
    max-width: none;
  }

  .dev-form_container {
    opacity: 0;
    width: 90vw;
  }

  .nav-link-7 {
    color: var(--neutral-1000);
  }

  .pt-hero {
    padding-left: 0;
    padding-right: 0;
  }

  .pt-hero_title.new {
    font-size: 32px;
    line-height: 40px;
  }

  .pt-hero_title.new.act {
    text-align: center;
    font-size: 40px;
    line-height: 48px;
  }

  .pt-hero_title.new.ar {
    text-align: center;
  }

  .section_run-your-business {
    display: none;
  }

  .section_run-your-business.mobile {
    display: block;
  }

  .pt-ryb_table {
    display: none;
  }

  .ryb-table_item.free.mobile {
    grid-column-gap: 4px;
    grid-row-gap: 4px;
    background-color: var(--white);
    border-bottom-style: none;
    border-left-style: none;
    flex-flow: row;
    justify-content: flex-start;
    align-items: center;
  }

  .ryb-table_item.paid.mobile {
    border-bottom-style: none;
  }

  .ryb-table_item.paid.mobile.item {
    grid-column-gap: 4px;
    grid-row-gap: 4px;
    flex-flow: row;
    justify-content: flex-start;
    align-items: center;
  }

  .ryb-table_item.paid.mobile.item.new2 {
    flex-flow: column;
    justify-content: center;
    align-items: flex-start;
  }

  .ryb-table_item.last.mobile {
    background-color: #e8eaed;
    border-bottom-right-radius: 32px;
    border-bottom-left-radius: 32px;
  }

  .ryb-table_item.header.paid.padding.mobile {
    border-bottom-style: none;
  }

  .ryb-table_item.header.padding.border.mobile {
    background-color: var(--white);
    border-bottom-style: none;
    border-left-style: none;
    border-top-left-radius: 32px;
    border-top-right-radius: 32px;
  }

  .ryb-table_item.header.border-radius.comp-plans {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    background-color: var(--white);
    border-radius: 18px;
    padding: 32px;
  }

  .ryb-table_title.header.free {
    font-size: 45px;
    line-height: 40px;
  }

  .ryb-table_title.header.free.addon.mobile {
    line-height: 20px;
  }

  .ryb-table_title.mobile {
    color: var(--moss-1000);
    font-size: 16px;
    font-weight: 500;
    line-height: 22px;
  }

  .ryb-table_p.header.compare-plans {
    color: #202327;
    font-size: 20px;
    font-weight: 400;
    line-height: 24px;
  }

  .pt-ryb_bwrapper {
    display: flex;
  }

  .pt-ryb_bwrapper.sp {
    display: none;
  }

  .pt-bd_wrapper.new {
    flex-flow: column;
    padding: 48px 32px;
    overflow: hidden;
  }

  .pt-bd_wrapper.new.hiw {
    padding-top: 48px;
  }

  .section_pt-bd.new {
    width: 100%;
    padding-right: 0;
  }

  .pt-bd_container {
    flex-flow: column;
    justify-content: center;
    align-items: flex-start;
  }

  .pt-bd_title-image, .pt-bd_title-image.sp {
    display: block;
  }

  .pt-bd_title-image.sp.home, .pt-bd_title-image.act {
    display: none;
  }

  .pt-bd_cards {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
  }

  .pt-bd_card.padding-right.border-right {
    border-right-style: none;
    padding: 0 32px 48px 0;
  }

  .pt-bd_card.padding-right.border-right.act {
    padding-left: 0;
  }

  .pt-bd_card.padding-x.border-right {
    border-right-style: none;
    padding: 0 32px 48px 0;
  }

  .pt-bd_card.padding-left {
    padding: 0 32px 48px 0;
  }

  .pt-bd_card.ps {
    min-height: 300px;
  }

  .pt-sp-scroll_wrapper {
    opacity: 100;
  }

  .pt-hero-img_container {
    max-width: none;
    padding-bottom: 32px;
    padding-left: 32px;
    padding-right: 32px;
  }

  .pt-hero_img {
    max-width: 520px;
  }

  .pt-ryb_paid {
    padding: 32px;
  }

  .pt-ryb-paid_p {
    font-weight: 600;
    line-height: 22px;
  }

  .pt-ryb-paid_p.mobile {
    color: var(--moss-1000);
  }

  .pt-ryb-paid_p.subtitle {
    font-weight: 400;
  }

  .pt-ryb_free {
    padding: 0 32px 32px;
  }

  .v-scroll-section-content-wrapper {
    display: none;
  }

  .act-hero {
    padding-left: 0;
    padding-right: 0;
  }

  .section_hiw {
    padding-right: 0;
  }

  .image-173.mobile {
    display: inline-block;
  }

  .image-173.desktop {
    display: none;
  }

  .act-form_container {
    opacity: 0;
    width: 90vw;
  }

  .ryb-title-container {
    grid-column-gap: 4px;
    grid-row-gap: 4px;
    justify-content: flex-start;
    align-items: center;
    display: flex;
  }

  .text-span-1206 {
    font-weight: 600;
  }

  .ar-hero-card {
    height: 70%;
    top: -29%;
    right: -10%;
  }

  .ar-tfc-c.c3 {
    padding: 12px;
  }

  .ar-tfc-c.c3-pointer {
    bottom: 32%;
  }

  .display-flex {
    z-index: 3;
    order: -9999;
    justify-content: center;
    align-items: center;
    height: 24px;
    position: relative;
  }

  .nav-link-switcher {
    text-align: center;
    flex: 0 auto;
  }

  .hp-hero-description {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
  }

  .hp-hero-center {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    padding-left: 24px;
    padding-right: 24px;
  }

  .fabric-anim {
    display: none;
  }

  .feb-section-r, .feb-section-r.wider-spacing {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
  }

  .feb-section.light, .feb-section.grid-large {
    padding: 48px 32px;
  }

  .feb-section.grid-large.hero-section {
    padding-bottom: 80px;
  }

  .feb-section.last {
    padding-top: 120px;
    padding-bottom: 120px;
  }

  .feb-section.offwhite {
    padding: 48px 32px;
  }

  .feb-content {
    grid-column-gap: .75rem;
    grid-row-gap: .75rem;
  }

  .feb-h6-left-title, .link-button {
    font-size: 16px;
    line-height: 24px;
  }

  .link-button.announcement {
    font-size: 14px;
    line-height: 20px;
  }

  .link-button.announcement.nav {
    font-size: .875rem;
    line-height: 20px;
  }

  .feb-stat-big {
    font-size: 40px;
  }

  .feb-vertical-wrap.feb-center {
    grid-column-gap: .75rem;
    grid-row-gap: .75rem;
  }

  .feb-h2 {
    letter-spacing: -2.4px;
    font-size: 40px;
    line-height: 48px;
  }

  .feb-h2.feb-light-text {
    text-align: left;
  }

  .feb-h2.feb-light-text.announcement {
    font-size: 40px;
    line-height: 48px;
  }

  .feb-card, .feb-card.w--current {
    min-height: auto;
  }

  .div-block-585 {
    flex-flow: column;
    align-self: stretch;
  }

  .feb-header-desc.feb-h6.center-text {
    font-size: 16px;
    line-height: 24px;
  }

  .feb-header-desc.feb-h6.center-text.announcement {
    font-size: 14px;
    line-height: 22px;
  }

  .feb-header-desc.feb-h6.center-text.announcement-bottom {
    font-size: 16px;
  }

  .feb-header-desc.feb-h6.subtext {
    font-size: 14px;
    line-height: 20px;
  }

  .slide-2 {
    overflow: hidden;
  }

  .feb-home-switcher {
    order: 9999;
    width: 100%;
  }

  .feb-home-switcher-item {
    text-align: center;
    flex: 100%;
    align-self: stretch;
    width: 100%;
    padding-top: .375rem;
    padding-bottom: .375rem;
  }

  .feb-home-switcher-item.w--current {
    flex: 0 auto;
    align-self: center;
    padding-top: .375rem;
    padding-bottom: .375rem;
  }

  .feb-home-switcher-item.on-white {
    flex: 100%;
    width: 100%;
    padding-top: .375rem;
    padding-bottom: .375rem;
  }

  .feb-home-switcher-item.on-white.w--current {
    text-align: center;
    flex-flow: row;
    flex: 100%;
    align-self: auto;
    width: 100%;
    padding-top: .375rem;
    padding-bottom: .375rem;
    display: flex;
  }

  .feb-card-title {
    font-size: 16px;
    line-height: 24px;
  }

  .feb-arrows.right {
    right: 25%;
  }

  .feb-arrows.left {
    left: 25%;
  }

  .feb-card2-title {
    font-size: 20px;
    line-height: 28px;
  }

  .tabs.card-flex {
    align-self: stretch;
  }

  .feb-tab-switcher-group {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    flex-flow: column;
    grid-template-rows: auto auto auto auto;
    grid-template-columns: 1fr;
    display: flex;
  }

  .code-embed-3 {
    transform: scale(.9);
  }

  .feb-h1-hero {
    letter-spacing: -2.4px;
    font-size: 48px;
    font-weight: 500;
    line-height: 56px;
  }

  .feb-h1-hero.announcement {
    font-size: 40px;
    line-height: 48px;
  }

  .feb-paragraph {
    font-size: 16px;
    line-height: 24px;
  }

  .feb-paragraph.testimonial-footer {
    font-size: 13px;
    line-height: 20px;
  }

  .feb-paragraph.testimonial-header {
    font-size: 14px;
    line-height: 24px;
  }

  .feb-paragraph.testimonial-header.announcement-description {
    font-size: 14px;
    line-height: 22px;
  }

  .feb-paragraph.testimonial-header.announcement-subheader {
    font-size: 20px;
    line-height: 28px;
  }

  .feb-paragraph.testimonial-header.announcement-small-testimonial-text {
    font-size: 14px;
    line-height: 22px;
  }

  .feb-paragraph.testimonial-small-name {
    font-size: 14px;
    line-height: 24px;
  }

  .feb-paragraph.testimonial-small-name.announcement-description {
    font-size: 14px;
    line-height: 22px;
  }

  .feb-paragraph.testimonial-small-description {
    font-size: 14px;
    line-height: 24px;
  }

  .feb-paragraph.testimonial-small-description.announcement-description {
    font-size: 13px;
    line-height: 18px;
  }

  .home-switcher-text {
    justify-content: center;
    width: 100%;
    font-size: .875rem;
    display: flex;
  }

  .home-switcher-text.inverted {
    text-align: center;
    flex: 1;
    font-size: .875rem;
    display: flex;
  }

  .home-switcher-text-secondary {
    flex: 1;
    font-size: .875rem;
  }

  .home-switcher-text-secondary.on-white {
    text-align: center;
    font-size: .875rem;
  }

  .navigation {
    z-index: 2;
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    background-color: #042c2fa6;
    flex-flow: column;
    flex: 0 auto;
    order: 2;
    justify-content: flex-start;
    align-items: flex-start;
    min-height: 100vh;
    padding-top: 112px;
    padding-left: 24px;
    padding-right: 24px;
    display: none;
    position: absolute;
    inset: 0% 0% auto;
  }

  .navigation.white {
    background-color: #ffffffa6;
  }

  .secondary-nav-cta {
    color: var(--white);
    text-align: center;
    align-self: stretch;
    margin-left: 0;
    margin-right: 0;
    padding-left: .75rem;
    padding-right: 1rem;
    font-size: .875rem;
  }

  .secondary-nav-cta.on-white {
    font-size: .875rem;
  }

  .primary-nav-cta {
    text-align: center;
    align-self: stretch;
    font-size: .875rem;
  }

  .primary-nav-cta.on-white {
    font-size: .875rem;
  }

  .link-button-wrapper {
    display: flex;
  }

  .feb-card-icon {
    width: 24px;
    height: 24px;
  }

  .feb-card-body-text {
    font-size: 14px;
    line-height: 20px;
  }

  .feb-card2 {
    min-height: auto;
    padding: 24px;
  }

  .feb-card2-icon {
    width: 32px;
    height: 32px;
    margin-bottom: .75rem;
    padding: .5rem;
  }

  .feb-card2-body-text {
    font-size: 14px;
    line-height: 20px;
  }

  .cards-block {
    flex-flow: column;
    display: flex;
  }

  .network-block-text {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
  }

  .feb-stat-body-text {
    font-size: 16px;
    line-height: 24px;
  }

  .feb-closing-text.middle {
    max-width: 311px;
    margin-top: 0;
    margin-bottom: 0;
    font-size: 16px;
    line-height: 24px;
  }

  .feb-closing-text.middle.no-max {
    max-width: none;
  }

  .div-block-589 {
    flex-flow: column;
    align-self: stretch;
    padding-top: 32px;
  }

  .div-block-589.announcement {
    padding-top: 24px;
  }

  .mask {
    padding-bottom: 16px;
  }

  .flex-block-16 {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
  }

  .grid-svg-l {
    width: 110%;
  }

  .grid-svg-l.large {
    opacity: .5;
    width: 100%;
    height: 100%;
    display: block;
  }

  .grid-svg-r {
    width: 110%;
  }

  .grid-svg-r.large {
    opacity: 0;
    display: block;
  }

  .link-button__arrow {
    width: 20px;
    height: 20px;
  }

  .link-button__arrow.large {
    filter: brightness(0%) invert();
    width: 24px;
    height: 24px;
    color: var(--white);
  }

  .link-button__arrow.announcement {
    width: 20px;
    height: 20px;
  }

  .text-block-315 {
    color: var(--white);
    font-weight: 400;
  }

  .numbered-cards-grid {
    flex-flow: column;
    display: flex;
  }

  .numbered-card {
    grid-column-gap: .75rem;
    grid-row-gap: .75rem;
    min-height: auto;
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .numbered-card.w--current {
    min-height: auto;
  }

  .numbered-card__title {
    font-size: 16px;
    line-height: 24px;
  }

  .numbered-card__body-text {
    font-size: 14px;
    line-height: 20px;
  }

  .numbered-card__number {
    font-size: 14px;
  }

  .wrapped-icon-card {
    min-height: auto;
    padding: 24px;
  }

  .wrapped-icon-card.w--current {
    min-height: auto;
  }

  .wrapped-icon-card__icon {
    width: 40px;
    height: 40px;
  }

  .wrapped-text-title {
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
  }

  .wrapped-text-body {
    font-size: 14px;
    line-height: 20px;
  }

  .feb-testimonial-color-wrapper {
    opacity: .75;
    background-image: linear-gradient(#0000, #000 55%);
  }

  .feb-testimonial-card {
    width: calc(90vw - 120px);
  }

  .feb-testimonial-text-wrapper {
    opacity: 100;
    width: 100%;
  }

  .testimony-card {
    padding: 1.5rem;
  }

  .article-card {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    padding: 1.5rem;
  }

  .palm-testimonial-wrapper {
    flex-flow: column;
  }

  .testimonial-palm-text-flex {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    padding: 24px;
  }

  .testimonial-palm-quote, .testimonial-palm-name {
    font-size: 14px;
    line-height: 22px;
  }

  .testimonial-palm-title {
    font-size: 13px;
    line-height: 18px;
  }

  .testimonial-palm-slide-count {
    font-size: 16px;
    line-height: 24px;
  }

  .icon-51 {
    font-size: 16px;
  }

  .right-arrow {
    bottom: 24px;
    right: 24px;
  }

  .palm-testimonial-image {
    object-position: 50% 4%;
    max-width: none;
    height: 420px;
  }

  .announcement-v-flex._24-gap {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
  }

  .announcement-small-testimonials {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    flex-flow: column;
  }

  .announcement-small-testimonial {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    padding: 24px;
  }

  .testimonial-person-flex {
    padding-top: 20px;
  }

  .image-190 {
    max-width: 100px;
  }

  .flex-products-dropdown {
    display: none;
  }

  .nav-dropdown-list {
    text-align: left;
    background-color: #ddd0;
    flex-flow: column;
    align-items: flex-start;
    width: 100%;
    display: flex;
    position: relative;
  }

  .dropdown-parent {
    width: 100%;
  }

  .nav-dropdown-link {
    color: var(--white);
    margin-left: 0;
    margin-right: 0;
  }

  .nav-dropdown-link.child {
    color: var(--white);
  }

  .nav-dropdown-link.child:hover {
    border-left-color: var(--white);
    background-color: #f9fafb1a;
  }

  .nav-dropdown-link.child.on-white {
    border-left-color: #f0f1f3;
  }

  .nav-dropdown-link.first {
    align-self: auto;
    margin-left: 0;
    margin-right: 0;
  }

  .nav-dropdown-link.on-white {
    color: var(--moss-1000);
  }

  .nav-menu-button {
    z-index: 3;
    box-sizing: border-box;
    width: 24px;
    height: 32px;
    padding: 4px 0 0;
  }

  .nav-menu-button.w--open {
    background-color: #c8c8c800;
  }

  .nav-close-icon {
    display: none;
  }

  .mobile-inner-border-flex {
    z-index: 3;
    border-bottom: 1px solid #ffffff1a;
    flex: 1;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 24px;
    padding-left: 24px;
    padding-right: 24px;
    position: relative;
  }

  .mobile-inner-border-flex.white {
    border-bottom-color: var(--neutral-300);
  }
}

@media screen and (max-width: 479px) {
  h1 {
    margin-right: 0;
    font-size: 40px;
    font-weight: 300;
  }

  h3 {
    font-size: 21px;
  }

  h4 {
    font-size: 18px;
  }

  .section.white {
    padding-top: 10px;
    padding-left: 0;
    padding-right: 0;
  }

  .section.white.round-container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .section.formation {
    background-size: auto 600px;
  }

  .section.formation.bg-image {
    background-image: url('../images/Formations-header-mobile.jpg'), linear-gradient(90deg, #ecf9f478, #fff0 46%), url('../images/Formations-header-mobile.jpg');
    background-size: cover, auto, cover;
  }

  .section.light-gray.padding-60.no-padding-mobile {
    padding-left: 0;
    padding-right: 0;
  }

  .section.light-gray.padding-60.no-padding-mobile.bus-id__lsection.bus-id__last-section {
    padding-bottom: 60px;
  }

  .section.light-gray.padding-60.no-padding-mobile.or-section {
    padding-left: 21px;
    padding-right: 21px;
  }

  .section.light-gray.padding-60.no-padding-mobile.or-section.or-map-section {
    padding-top: 2.9rem;
    padding-bottom: 2.9rem;
  }

  .section.light-gray.padding-60.no-padding-mobile.or-section.or-roles-section {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .section.burst {
    background-position: 0 100%;
    background-size: auto 600px;
  }

  .section.burst.tighter {
    background-position: 100px -300px;
    background-size: auto 60%;
  }

  .section.inner-padding-60.extra-top-padding {
    padding-top: 60px;
    padding-bottom: 0;
  }

  .btn-secondary {
    letter-spacing: 0;
    background-position: 85%;
    background-size: 12px;
    width: 120px;
    padding-left: 0;
    padding-right: 20px;
    font-size: 14px;
  }

  .container, .container.less-right-padding {
    padding-left: 20px;
    padding-right: 20px;
  }

  .container.less-right-padding.left-padding {
    padding-left: 10px;
    padding-right: 10px;
  }

  .container.cta {
    height: 600px;
    padding-left: 0;
  }

  .container.header {
    flex-flow: column;
    display: flex;
  }

  .container.header.no-padding-mobile {
    padding-left: 0;
    padding-right: 0;
  }

  .container.header.no-padding-mobile.or-mainsection-container {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
    padding: 3.1rem 20px;
  }

  .container._10-padding-mobile {
    padding-left: 10px;
    padding-right: 10px;
  }

  .container._10-padding-mobile.middle-aligned.or-container.or-howwework-container {
    padding: 0;
  }

  .container._10-padding-mobile.middle-aligned.or-container.or-ourvalues-container, .container._10-padding-mobile.middle-aligned.or-container.or-roles-container {
    padding-left: 0;
    padding-right: 0;
  }

  .container._10-padding-mobile.middle-aligned.ar-war {
    padding: 20px 10px;
  }

  .container.flex-horizontal {
    flex-flow: column;
    padding-left: 0;
    padding-right: 0;
    display: flex;
  }

  .container.boi-header {
    flex-flow: column;
    margin-top: 1rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    display: flex;
  }

  .container.top-alignment {
    padding-left: 20px;
    padding-right: 20px;
  }

  .container.no-padding-mobile {
    padding-left: 0;
    padding-right: 0;
  }

  .image-home {
    background-position: 50%;
    background-size: 95%;
    max-width: none;
  }

  .left-content.flex-stretch {
    padding-left: 20px;
    padding-right: 20px;
  }

  .left-content.flex-stretch.no-padding-mobile {
    padding-left: 0;
    padding-right: 0;
  }

  .left-content.indent {
    padding-left: 0;
  }

  .left-content.indent.inner-padding-tablet {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    padding-left: 0;
    padding-right: 0;
  }

  .left-content.flex-center {
    width: 100%;
    padding-left: 20px;
  }

  .left-content.flex-center._20-padding-mobile {
    padding-right: 20px;
  }

  .left-content.middle-align {
    width: 100%;
    padding-left: 20px;
  }

  .left-content.flex-vertical {
    padding-left: 0;
  }

  .left-content.flex-vertical.padding-mobile {
    padding-left: 20px;
    padding-right: 10px;
  }

  .left-content.wide-mobile {
    width: 100%;
  }

  .content.center-vertically {
    padding-top: 60px;
  }

  .small-text-green {
    font-size: 16px;
  }

  .flex-left {
    flex-flow: row;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .flex-left.center {
    flex-flow: column;
  }

  .flex-left.center.bottom-padding-24 {
    flex-flow: column;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
  }

  .flex-left.center.center-mobile {
    justify-content: flex-start;
    align-items: center;
  }

  .flex-left.center.align-middle {
    flex-flow: row;
  }

  .tiny-logo {
    width: 56px;
    margin-top: 0;
  }

  .btn-primary {
    font-weight: 400;
  }

  .btn-primary.offset {
    background-position: 70%;
    font-weight: 400;
  }

  .btn-primary.offset.top-padding60 {
    max-width: none;
  }

  .btn-primary.brighter {
    background-position: 66%;
    height: 80px;
  }

  .u-header-tab {
    padding-right: 0;
  }

  .u-green-header-text {
    width: 186px;
    margin-top: -12px;
    font-size: 16px;
  }

  .btn-secondary-nav {
    align-self: center;
    padding: 1rem 20px;
    font-size: .75rem;
    line-height: 90%;
  }

  .u-light-gray-headling {
    margin-top: 20px;
    margin-left: 0;
  }

  .card {
    align-self: flex-start;
    height: auto;
    padding-bottom: 16px;
  }

  .green-icon {
    flex: none;
  }

  .dark-headline {
    padding-left: 0;
  }

  .image-inform {
    height: 400px;
  }

  .gray-container {
    margin-top: 20px;
    padding: 20px;
  }

  .text-percent {
    margin-left: 20px;
  }

  .image-connect {
    background-position: 0%;
    height: 400px;
  }

  .right-content {
    padding-right: 20px;
  }

  .right-content.mobile.no-padding-mobile {
    padding-right: 0;
  }

  .right-content.phone {
    background-position: 20px 100px;
    background-size: auto 100%;
    height: 400px;
  }

  .image-control {
    height: 400px;
  }

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

  .small-text.center-mobile {
    text-align: center;
    margin-bottom: 20px;
  }

  .image-fins {
    background-position: 100% 0;
    background-size: 150%;
    height: 320px;
    margin-bottom: -118px;
  }

  .h1-white {
    margin-top: 20px;
  }

  .medium-green-text {
    font-size: 18px;
  }

  .medium-logo {
    background-position: 50%;
  }

  .footer-block {
    height: 182px;
    padding: 30px 30px 20px;
  }

  .flex-horizontal.center {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    width: 100%;
  }

  .flex-horizontal.center.tighter {
    justify-content: center;
  }

  .flex-horizontal.align-center {
    align-items: center;
  }

  .flex-horizontal.left-align.boi-header {
    grid-column-gap: 11px;
    grid-row-gap: 11px;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 0;
  }

  .flex-horizontal.left-align.stacked-mobile {
    width: 100%;
  }

  .flex-horizontal.less-gap {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    justify-content: space-between;
    align-items: flex-start;
  }

  .text-secondary {
    font-size: 18px;
  }

  .image-up-arrow {
    width: 32px;
    height: 32px;
  }

  .footer-links {
    font-size: 17px;
  }

  .tight-mobile {
    margin-top: 0;
    margin-bottom: 0;
  }

  .tight-mobile.larger-mobile-text {
    font-size: 24px;
    overflow: visible;
  }

  .light-gray-text.font-18.tight {
    font-size: 13px;
  }

  .link.white.underline-bold {
    margin-bottom: -18px;
  }

  .underline {
    line-height: 30px;
  }

  .underline.unbold {
    line-height: 24px;
  }

  .lighter-gray-text.no-bottom-padding.semi-bold {
    font-size: 14px;
    line-height: 130%;
  }

  .table-titles, .table-titles.middle {
    align-self: stretch;
  }

  .font-16.checks {
    width: 90%;
  }

  .table-cell, .table-cell.middle {
    align-self: stretch;
    padding-left: 10px;
  }

  .table-list {
    padding-left: 10px;
  }

  .table-list-item {
    font-size: 13px;
    line-height: 130%;
  }

  .font-60 {
    font-size: 48px;
    line-height: 110%;
  }

  .larger {
    line-height: 110%;
  }

  .dark-green-text {
    margin-bottom: 10px;
  }

  .dark-green-text.top-padding-20 {
    margin-bottom: 20px;
    font-size: 36px;
  }

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

  .image-formation-spacer {
    background-image: none;
  }

  .pricing-checkbox {
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 0;
  }

  .check-text {
    width: 86.1562%;
    font-size: 14.5px;
    font-weight: 600;
  }

  .check-text.dark-green-text {
    width: 100%;
    font-size: 16px;
  }

  .llc-quote {
    margin-top: 60px;
    margin-bottom: 60px;
  }

  .dark-green-btn {
    text-align: center;
    width: 100%;
    margin-top: 40px;
    margin-right: 0;
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .image-peace {
    height: 400px;
  }

  .image-join {
    background-position: 50%;
    height: 400px;
  }

  .bior-image {
    background-position: 50%;
    background-size: contain;
    max-width: none;
    height: 300px;
    margin-top: 30px;
    margin-bottom: 40px;
  }

  .boi-icon {
    height: 30px;
    margin-right: 0;
  }

  .fincen-image {
    height: auto;
  }

  .check-image {
    height: 400px;
  }

  .boi-check-container.partner-checks {
    background-position: 0;
  }

  .check-list {
    width: 50%;
  }

  .font-56 {
    margin-right: 8px;
    font-size: 2.5rem;
    display: inline-block;
  }

  .outline-button.wider {
    width: 100%;
    margin-right: 0;
  }

  .utility-page-wrap {
    justify-content: flex-start;
    align-items: center;
    height: 100vh;
    padding-top: 24px;
  }

  .cloud {
    height: 700px;
  }

  ._404 {
    font-size: 100px;
  }

  .c-faq, .c-faq-a-text, .c-faq-q-text {
    padding-left: 0;
  }

  .larger-mobile-text {
    font-size: 20px;
  }

  .larger-mobile-text.white-text.bus-id__comp-text {
    margin-bottom: 10px;
  }

  .blog-header {
    padding-left: 16px;
    padding-right: 16px;
  }

  .blog-feature {
    border-radius: 40px;
    padding-bottom: 30px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .feature-item.contain {
    padding-left: 20px;
    padding-right: 20px;
  }

  .feature-photo {
    border-radius: 40px;
    min-width: auto;
    height: 250px;
  }

  .blog-list {
    padding-bottom: 0;
    padding-left: 20px;
    padding-right: 20px;
  }

  .blog-item {
    margin-left: 0;
    margin-right: 0;
    padding-left: 20px;
    padding-right: 20px;
  }

  .blog-item-image {
    margin-bottom: 20px;
  }

  .blog-item-title {
    margin-bottom: 10px;
  }

  .blog-article-header {
    margin-bottom: 20px;
    padding-top: 10px;
    padding-bottom: 20px;
  }

  .ad {
    width: 100%;
  }

  .div-block-3 {
    align-items: center;
    padding: 1rem;
    line-height: 90%;
  }

  .button-text.green.primary.typeform {
    font-size: 1.25rem;
  }

  .button {
    justify-content: center;
    align-self: center;
    width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .button.brand.medium {
    max-height: none;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .button.typeform {
    width: 80%;
    position: absolute;
    bottom: 32px;
  }

  .image {
    bottom: -45%;
    right: -180%;
  }

  .left-flex {
    align-self: stretch;
  }

  .navbar-logo {
    width: 105px;
    height: 30px;
  }

  .partner {
    width: 100%;
    height: 470px;
    padding-top: 56px;
    padding-bottom: 32px;
  }

  .image-2 {
    width: 200px;
    height: 200px;
  }

  .text-wrap {
    word-break: normal;
    overflow-wrap: normal;
  }

  .chat-bubble, .chat-bubble-text {
    font-size: .875rem;
  }

  .chat-bubbles {
    bottom: 60px;
    left: 80px;
  }

  .badge {
    max-width: 200px;
  }

  .typeform-like-header {
    padding-top: 24px;
  }

  .div-block-8 {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
  }

  .text-block-2 {
    font-size: 1.875rem;
  }

  .text-block-3 {
    font-size: 1rem;
  }

  .image-3 {
    height: 32px;
  }

  .n-section {
    padding-top: 80px;
  }

  .n-section.home {
    background-position: 50% 0;
    padding-top: 40px;
  }

  .n-section.green-container.green-mobile {
    background-color: #d3f4e7;
  }

  .n-section.cta {
    height: auto;
  }

  .n-section.boi-home {
    background-position: 50% 0;
    padding-top: 40px;
  }

  .n-section.padding-mobile {
    padding-left: 10px;
    padding-right: 10px;
  }

  .n-section.mobile-form {
    background-color: var(--moss-900);
    flex-flow: column;
    padding-top: 0;
    display: flex;
  }

  .n-section.banner {
    padding-top: 30px;
  }

  .n-section.qbp-hero {
    background-position: 50% 0;
    margin-bottom: 5rem;
    padding-top: 40px;
    padding-bottom: 3rem;
  }

  .n-button.nav {
    flex: 1;
    margin-left: 20px;
    margin-right: 20px;
    display: block;
  }

  .n-button.top-padding-40 {
    display: flex;
  }

  .n-button.form-download-button {
    background-position: 24px;
    background-size: auto 28px;
    width: 90%;
    padding-left: 39px;
  }

  .n-button.or-roles-button {
    min-height: 40px;
    font-size: .875rem;
  }

  .n-button.home_title-button {
    text-align: center;
  }

  .n-button.jta_btn.new.pt-hero_btn {
    color: var(--moss-1000);
    background-color: #64c9a4;
  }

  .n-button.oneid_title-button {
    text-align: center;
  }

  .n-button.hp-btn-dark {
    font-size: 16px;
  }

  .n-button.secondary.nav {
    width: 100%;
    margin-top: 0;
    margin-right: 0;
  }

  .nav-menu {
    justify-content: flex-start;
    align-items: center;
  }

  .nav-container.narrow-mobile {
    padding-left: 10px;
    padding-right: 10px;
  }

  .nav-container.no-right-padding {
    padding-left: 20px;
    padding-right: 0;
  }

  .nav-container.no-right-padding.partners {
    grid-column-gap: 0rem;
  }

  .header-text {
    font-size: 40px;
  }

  .header-text.tighter {
    font-size: 48px;
  }

  .header-text.larger.dark-green-text {
    font-size: 46px;
    line-height: 105%;
  }

  .header-text.larger.smaller-mobile {
    font-size: 50px;
    line-height: 105%;
  }

  .header-text.dark-green-text {
    font-size: 46px;
  }

  .header-text.bus-id__header-text {
    margin-bottom: 0;
    font-size: 50px;
  }

  .half-container.narrow.qbp-scroll__card.qbp-scroll__card--mobile, .half-container.narrow.qbp-scroll__card.qbp-scroll__card--tablet {
    align-items: center;
    margin-top: 0;
  }

  .half-container.narrow.no-padding {
    margin-bottom: 3rem;
    padding-top: 3rem;
  }

  .half-container.video3.auto.show, .half-container.video2.auto.show, .half-container.video1.auto.show {
    display: block;
  }

  .half-container.typeform-padding {
    padding: 40px 0 60px;
  }

  .container-2x.header-indent {
    padding-left: 20px;
    padding-right: 20px;
  }

  .container-2x.relative.is-large {
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    max-width: 100%;
  }

  .container-2x.qbp-hero__context {
    padding-left: 20px;
    padding-right: 20px;
  }

  .light-green-shape.no-padding-mobile {
    padding-left: 0;
    padding-right: 0;
  }

  .center-text.dark.bottom-padding {
    font-size: 55px;
  }

  .center-text.dark.smaller-mobile {
    font-size: 50px;
    line-height: 105%;
  }

  .center-text.no-bottom-padding {
    font-size: 16px;
  }

  .center-text.hp-3 {
    font-size: 4vw;
  }

  .n-h2.bus-id__section__header {
    font-size: 45px;
  }

  .n-h2.qbp-scroll__header {
    text-align: center;
  }

  .n-container.blog-container, .n-container.max-width-1000 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .n-h1-white {
    margin-top: 20px;
  }

  .n-h1-white.bus-id__last-section__header {
    width: 300px;
  }

  .n-h1-white.ar {
    font-size: 45px;
  }

  .content-5x.right-padding.footer-logos.new {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex-flow: wrap;
    justify-content: space-between;
    align-items: flex-start;
  }

  .sticky-container.show {
    display: block;
  }

  .background-video.hide-desktop, .background-video-2.hide-desktop, .background-video-3.hide-desktop, .background-video-4.hide-desktop {
    width: 100%;
    max-width: 380px;
    height: 320px;
  }

  .mobile-scoll-section {
    padding-bottom: 4rem;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .small-business {
    height: 250px;
  }

  .small-business.shorter-mobile {
    margin-bottom: 20px;
  }

  .filing {
    background-position: 50%;
    height: 250px;
  }

  .filing.financing {
    margin-top: 0;
  }

  ._4by-item {
    width: 100%;
  }

  .small-image._3 {
    background-position: 60% 60%;
  }

  .small-image._4 {
    background-position: 50%;
  }

  .n-button-2.nav {
    flex: 1;
    margin-left: 20px;
    margin-right: 20px;
    display: block;
  }

  .n-button-2.nav.padding.wide {
    margin-left: 0;
    margin-right: 0;
    padding-left: 30px;
    padding-right: 30px;
  }

  .n-button-2.nav__menu__button, .n-button-2.nav-2 {
    flex: 1;
    margin-left: 20px;
    margin-right: 20px;
    display: block;
  }

  .typeform {
    display: none;
  }

  .typeform.mobile-only {
    display: block;
  }

  .yahoo {
    width: 170px;
  }

  .price-container, .price-container.sharp-top {
    width: 100%;
  }

  .price-holder {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }

  .cagetories {
    margin-bottom: 10px;
  }

  .left-align.left-padding.bigger {
    margin-top: 0;
    line-height: 110%;
  }

  .image-file {
    margin-bottom: 20px;
  }

  .form-container {
    border-radius: 40px;
    height: auto;
  }

  .form-block {
    height: auto;
    padding-left: 0;
    padding-right: 0;
  }

  .success {
    padding-left: 0;
    padding-right: 0;
  }

  .categories {
    grid-column-gap: 7px;
    grid-row-gap: 7px;
    flex-flow: wrap;
  }

  .banner-announcement {
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .form-flex {
    justify-content: center;
    align-items: center;
    padding-left: 0;
  }

  .form {
    width: 90%;
  }

  .cta-block {
    width: 100%;
    height: auto;
    padding-left: 20px;
    padding-right: 20px;
  }

  ._3by {
    width: 100%;
  }

  .container-3 {
    max-width: none;
  }

  .heading-8, .heading-8.is-white {
    font-size: 2rem;
  }

  .nav__container.no-right-padding {
    padding-right: 0;
  }

  .nav__menu {
    justify-content: flex-start;
    align-items: center;
  }

  .form-block-2.chat__form__block {
    height: 100%;
  }

  .bus-id__lhalf-cont, .bus-id__rhalf-cont {
    padding-left: 20px;
    padding-right: 20px;
  }

  .image-4.bus-id__main-section-img {
    max-height: 45%;
    right: auto;
  }

  .cs-steps {
    padding: 1rem;
  }

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

  .chat-messages__message {
    max-width: 98%;
    padding-left: 0;
    padding-right: 0;
  }

  .ft-hero {
    flex-flow: column;
    padding-top: 80px;
    position: relative;
  }

  .ft-hero__header {
    font-size: 40px;
  }

  .ft-main {
    padding-top: 80px;
  }

  .ft-main__content {
    padding-left: 0;
    padding-right: 0;
  }

  .ft-main__header {
    text-align: center;
    margin-bottom: 10px;
  }

  .ft-trusted {
    padding-top: 80px;
  }

  .ft-main__cta__form {
    align-items: center;
    width: 17rem;
    height: 30rem;
    padding-left: 0;
    padding-right: 0;
    display: none;
    inset: 50% 0% 0% 50%;
  }

  .ft-main__form {
    width: 90%;
  }

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

  .ft-main__form__action {
    justify-content: center;
    align-items: center;
    padding-left: 0;
  }

  .ft-main__form__close-btn {
    max-width: 10%;
    inset: 0% 0% auto auto;
  }

  .e404-container {
    justify-content: flex-start;
    align-items: center;
    padding: 2rem 1rem;
  }

  .e404-content {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    padding-top: 2rem;
    padding-left: 1.8rem;
    padding-right: 1.8rem;
  }

  .e404-imagecontainer {
    width: 100%;
  }

  .or-mainsection-header {
    font-size: 1.75em;
  }

  .or-leftcontent-title {
    text-align: center;
  }

  .or-section-rightcontent.or-howwework-list {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
  }

  .or-section-downcontent.home {
    width: 100%;
  }

  .or-ourvalues-card {
    flex: 47%;
  }

  .or-ourvalues-card-text.or-roles-card-text--title {
    font-size: 1rem;
  }

  .or-roles-card {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
  }

  .or-roles-card-text {
    font-size: 1rem;
  }

  .or-howwework-item {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
    order: 0;
    justify-content: flex-start;
    padding-bottom: 32px;
  }

  .or-howwework-item-info {
    order: 0;
    font-size: 1.25rem;
  }

  .or-howwework-item-info.or-howwework-item-number {
    order: -1;
    font-size: 1.5rem;
  }

  .dark-green-text-3 {
    margin-bottom: 10px;
  }

  .dark-green-text-3.top-padding-20 {
    margin-bottom: 20px;
    font-size: 36px;
  }

  .avatars-wrapper.max-widht {
    width: 100%;
  }

  .text-size-regular {
    font-size: 16px;
    font-weight: 300;
  }

  .text-size-regular.text-weight-semibold.text-color-primary.is-18px {
    margin-bottom: 0;
    font-size: 1rem;
  }

  .text-size-large.text-weight-medium {
    font-weight: 500;
  }

  .text-size-large.text-weight-medium.text-color-black {
    margin-bottom: 0;
  }

  .text-size-large.text-weight-medium.text-color-black-green-2.max-widht-pers, .text-size-large.text-weight-medium.text-color-black-green-2.max-widht-pers-2 {
    width: auto;
  }

  .button-2 {
    text-align: center;
    font-size: 1rem;
  }

  .heading-style-h3.text-weight-medium {
    font-size: 1.75rem;
  }

  .heading-style-h3.text-weight-medium.is-green {
    font-size: 1.5rem;
  }

  .text-size-medium, .text-size-medium.text-weight-semibold.mobile-16, .text-size-medium.color-text-secondary {
    font-size: 1rem;
  }

  .text-size-medium.text-color-primary.is-20px {
    font-size: 18px;
  }

  .grid_footer {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    grid-template-columns: auto;
  }

  .img_stars {
    display: none;
  }

  .img_stars.mobile {
    height: .8125rem;
    display: block;
  }

  .padding-huge {
    height: auto;
    padding: 1.5rem;
  }

  .padding-huge.is-78-mobile {
    height: 2rem;
    padding: 1rem;
  }

  .slider-arrows-position-wrapper {
    margin-top: 20px;
  }

  .img-icon-bottom-hero {
    width: 3rem;
    height: 3rem;
  }

  ._4 {
    object-fit: cover;
    width: 20rem;
    height: 9rem;
    top: -20%;
    right: -30%;
  }

  .content-card {
    grid-column-gap: 1.25rem;
    grid-row-gap: 1.25rem;
  }

  .button-group {
    flex-flow: row;
    justify-content: flex-start;
    align-items: center;
  }

  .content-left {
    justify-content: flex-start;
    align-items: flex-start;
  }

  .faq-wrap {
    grid-template-columns: 1fr;
    padding-bottom: 6rem;
  }

  .content-left-second {
    padding: 2.375rem 1.65rem;
  }

  .content-left-second.max-555 {
    width: auto;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .mas_slider-home {
    width: 100%;
  }

  .p-m-wrap {
    margin-left: 40px;
  }

  .card-resource {
    grid-column-gap: 1.875rem;
    grid-row-gap: 1.875rem;
    width: 100%;
    height: 100%;
    padding: 1.25rem 1.25rem 2rem;
  }

  .faq-item {
    width: 100%;
    max-width: 100%;
    padding-bottom: 24px;
  }

  .heading-style-h3-2.is-menor {
    width: 100%;
    font-size: 1.25rem;
  }

  .heading-style-h2.text-color-alternate {
    color: #ecf9f4;
  }

  .heading-style-h2.max-width-large.text-color-alternate.is-cta {
    font-size: 2.5rem;
  }

  .heading-style-h2.max-width-large.text-color-alternate.is-cta.no-margin {
    font-size: 35px;
  }

  .heading-style-h2.is-45px {
    font-size: 1.8rem;
  }

  .heading-style-h2.is-45px.is-green {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
    font-size: 35px;
  }

  .padding-global.padding-section-large {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .padding-global.padding-section-large.diferent-bottom {
    padding-top: 4rem;
    padding-bottom: 2rem;
  }

  .padding-global.padding-section-large.diferent-top {
    padding-top: 2rem;
  }

  .padding-global.padding-section-large-x {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .img-logo-hero {
    height: 42px;
  }

  .container-wrapp {
    overflow: hidden;
  }

  .image-6 {
    object-fit: cover;
    background-image: url('../images/mobile.png');
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 250px;
  }

  .image-6._2 {
    border-radius: 20px;
  }

  .grid_grid-footer {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    grid-template-columns: 1fr;
  }

  .heading-1 {
    font-size: 2.5rem;
    font-weight: 400;
    line-height: 105%;
  }

  .heading-1.is-annual-report {
    width: auto;
  }

  .heading-1.ar {
    font-size: 45px;
  }

  .img-alert.is-mobile {
    object-fit: cover;
    height: 120px;
    overflow: visible;
  }

  .div-block-15 {
    height: 250px;
    position: relative;
  }

  .img-resources {
    object-fit: cover;
    object-position: 0% 50%;
    border-radius: 20px;
    width: 100%;
    height: 15.625rem;
  }

  .img-resources.is-dif {
    object-position: 100% 50%;
    border-radius: 20px;
  }

  .container-grid {
    padding: 1.525rem;
  }

  .container-grid.gap-80 {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    flex-flow: column-reverse wrap;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    align-content: space-around;
    place-items: center;
    padding-left: 15px;
    padding-right: 15px;
    display: flex;
  }

  .content-right {
    width: 100%;
    min-width: 100%;
  }

  .content-right.is-box {
    flex-flow: column;
    margin-bottom: 10px;
    padding: 1.05rem;
  }

  .list-results {
    padding-left: 1.25rem;
  }

  .img_why {
    height: 15rem;
  }

  .img_why.is-florida-annual {
    min-width: 230px;
    height: auto;
  }

  .step-by-step_wrapper.is-mobile {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    border-left: 1px solid var(--moss-1000);
    grid-template-columns: auto;
    padding-left: 20px;
  }

  .grid-1-steps {
    width: 100%;
  }

  .steps-card {
    grid-column-gap: 0rem;
    grid-row-gap: 0rem;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    margin-right: 0;
    position: relative;
  }

  .line-step {
    margin-top: 0;
    bottom: 0;
  }

  .line-points-wrapper {
    width: 50%;
  }

  .grid {
    grid-column-gap: 100px;
    grid-row-gap: 100px;
    width: 20px;
  }

  .image-7 {
    width: 70px;
    margin-top: -16px;
    margin-left: -6px;
    position: absolute;
  }

  .elipse {
    position: absolute;
    top: 10px;
    left: -25px;
  }

  .elipse.hide {
    display: none;
  }

  .common-wrapper {
    padding: 2rem 1.5rem;
  }

  .div-block-18 {
    grid-template-columns: 1fr;
  }

  .line-common {
    display: none;
  }

  .grid_3-column._80-margin-top {
    grid-template-columns: 1fr;
    margin-top: 40px;
  }

  .grid_3-column.z-index-2 {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
  }

  .grid_3-column.is-wrapper {
    grid-template-columns: 1fr;
  }

  .grid_3-column.is-wrapper.is-4column {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .card-how.vertical {
    justify-content: flex-start;
    align-items: center;
  }

  .wrapp-div-search {
    width: 100%;
  }

  .icon-verified {
    min-width: 18px;
    min-height: 18px;
  }

  .text-color-white.no-margin {
    flex: 0 auto;
    align-self: center;
  }

  .text-color-white.no-margin.mobilewidht {
    width: 10.625rem;
  }

  .text-color-white.text-size-small._70-opacity.align-center {
    text-align: center;
  }

  .div-icon-text {
    text-align: left;
    justify-content: center;
    align-self: center;
    align-items: center;
  }

  .icon-50 {
    width: 30px;
    min-width: 30px;
    height: 30px;
    min-height: 30px;
  }

  .line-points {
    width: 1px;
    height: 100%;
    top: 0%;
    left: 50%;
  }

  .status-wrapper {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    width: 100%;
    padding: 1.25rem;
  }

  .img_status-wrapper {
    border-radius: 28px;
  }

  .grid-2-columns._70 {
    width: 100%;
  }

  .grid-2-columns._70._3-columns {
    grid-template-columns: 100%;
    width: 100%;
  }

  .grid-2-columns.is-4, .grid-2-columns.is-3 {
    grid-template-columns: 1fr;
  }

  .img-required-information {
    padding-bottom: 20px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .image-8 {
    height: 2rem;
    top: 20px;
  }

  .image-9 {
    height: 40px;
    left: -5px;
  }

  .image-10 {
    border-radius: 8px;
    width: auto;
    height: 40px;
    bottom: 20px;
    right: -5px;
  }

  .is-white {
    font-size: 16px;
  }

  .table_annual-report {
    overflow: scroll;
  }

  .body-cell.border {
    border-bottom-style: none;
  }

  .icon-due-dates {
    min-width: 35px;
    min-height: 35px;
  }

  .head-cards {
    align-self: stretch;
  }

  .div-block-22.is-2-columns {
    grid-template-columns: 1fr;
  }

  .text-block-9 {
    text-align: left;
    font-size: 28px;
  }

  .content-style {
    border-style: none;
    border-radius: 0;
  }

  .text-2 {
    font-size: 40px;
  }

  .sec-3 {
    height: auto;
    padding-left: 20px;
    padding-right: 20px;
  }

  .text-4 {
    text-align: center;
    font-size: 40px;
  }

  .row {
    height: auto;
    display: block;
  }

  .content-style-2 {
    height: auto;
    margin-bottom: 20px;
  }

  .text-8 {
    font-size: 40px;
  }

  .content-style-4 {
    background-color: #f8f9fa;
    border-style: none;
    border-width: 0;
    border-radius: 20px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .text-11, .text-14 {
    font-size: 40px;
  }

  .text-16 {
    font-size: 18px;
  }

  .list-2 {
    width: 100%;
    padding-left: 20px;
  }

  .text-17 {
    font-size: 35px;
  }

  .text-18 {
    font-size: 18px;
  }

  .text-19 {
    font-size: 35px;
  }

  .text-20 {
    font-size: 18px;
  }

  .domestic-and-foreign-corporations-100-domestic-200-foreign-limited-liability-companies-llcs-100-dome {
    padding-left: 20px;
    font-size: 18px;
  }

  .content-style-8 {
    border-style: none;
    border-radius: 20px;
    padding: 20px;
  }

  .text-21 {
    margin-bottom: 24px;
    padding-left: 0;
    padding-right: 0;
    font-size: 35px;
  }

  .entities-formed-in-even-years-file-in-even-years-eg-2024-2026-2028-entities-formed-in-odd-years-file {
    margin-bottom: 24px;
    padding-left: 0;
    padding-right: 0;
    font-size: 18px;
  }

  .text-22 {
    padding-left: 0;
    font-size: 18px;
  }

  .legal-entity-name-and-alaska-entity-identification-number-principal-office-address-and-registered-ag {
    font-size: 18px;
  }

  .text-block-14 {
    padding-left: 0;
    padding-right: 0;
    font-size: 18px;
    line-height: 140%;
  }

  .text-25 {
    padding-left: 0;
    padding-right: 0;
    font-size: 18px;
  }

  .text-26 {
    padding-left: 0;
    padding-right: 0;
  }

  .file-all-delinquent-biennial-reports-pay-all-outstanding-fees-and-penalties-complete-the-formal-rein {
    margin-bottom: 24px;
    padding-left: 0;
    padding-right: 0;
  }

  .background-2 {
    padding: 0 20px 20px;
  }

  .heading-3-gather-your-information {
    margin-top: 60px;
    margin-bottom: 60px;
    font-size: 22px;
  }

  .text-27 {
    font-size: 35px;
  }

  .text-28, .biennial-filing-schedule-tracking-and-reminders-complete-report-preparation-and-submission-registere {
    font-size: 18px;
  }

  .content-style-18 {
    border-style: none;
    border-radius: 0;
    padding: 0;
  }

  .llcs-domestic-foreign-professional-series-do-not-file-annual-reports-in-arizona-they-still-need-a-re {
    font-size: 18px;
  }

  .text-block-16 {
    font-size: 18px;
    line-height: 140%;
  }

  .text-35, .text-39 {
    font-size: 18px;
  }

  .content-style-22 {
    background-color: #f8f9fa;
    border-style: none;
    border-radius: 20px;
    padding: 20px;
  }

  .text-50, .text-block-18 {
    font-size: 18px;
  }

  .list-3 {
    width: 100%;
    padding-left: 20px;
  }

  .sec-19 {
    padding-left: 0;
    padding-right: 0;
  }

  .frame-1618871087 {
    height: auto;
    margin-left: 20px;
    margin-right: 20px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .text-63 {
    font-size: 35px;
  }

  .row-2 {
    flex-flow: column;
  }

  .text-64 {
    font-size: 20px;
  }

  .text-65 {
    font-size: 18px;
  }

  .text-66 {
    font-size: 20px;
  }

  .div-block-27 {
    color: #333;
    background-color: #f8f9fa;
    border-style: none;
    border-radius: 20px;
    padding: 20px;
  }

  .div-block-28 {
    background-color: #0000;
    border-style: none;
    border-radius: 0;
    padding: 20px;
  }

  .div-block-29 {
    background-color: #f8f9fa;
    border-style: none;
    border-radius: 20px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .div-block-30 {
    background-color: #f8f9fa;
    border-style: none;
    border-radius: 20px;
    padding: 20px;
  }

  .text-block-43 {
    font-size: 35px;
  }

  .text-block-45, .text-block-46 {
    font-size: 18px;
  }

  .text-block-47 {
    font-size: 35px;
  }

  .text-block-48, .text-block-49, .text-block-50 {
    font-size: 18px;
  }

  .heading-14 {
    font-size: 35px;
  }

  .text-block-52 {
    font-size: 18px;
  }

  .text-block-53 {
    font-size: 28px;
    line-height: 120%;
  }

  .text-block-54 {
    font-size: 18px;
  }

  .text-block-57 {
    font-size: 35px;
  }

  .text-block-58 {
    font-size: 28px;
  }

  .text-block-59, .text-block-60 {
    font-size: 18px;
  }

  .text-block-62 {
    font-size: 35px;
  }

  .text-block-63 {
    font-size: 28px;
  }

  .text-block-64, .text-block-65, .text-block-67 {
    font-size: 18px;
  }

  .text-block-68 {
    font-size: 35px;
  }

  .text-block-69, .text-block-71, .text-block-72 {
    font-size: 18px;
  }

  .text-block-73 {
    font-size: 35px;
  }

  .text-block-74, .text-block-76 {
    font-size: 18px;
  }

  .text-block-77 {
    font-size: 35px;
  }

  .text-block-78, .text-block-80, .text-block-81, .text-block-82 {
    font-size: 18px;
  }

  .text-block-84 {
    font-size: 35px;
  }

  .text-block-85, .text-block-86, .text-block-87 {
    font-size: 18px;
  }

  .text-block-90 {
    font-size: 28px;
  }

  .text-block-91, .text-block-92 {
    font-size: 18px;
  }

  .text-block-93 {
    font-size: 35px;
  }

  .text-block-94, .text-block-95, .text-block-97 {
    font-size: 18px;
  }

  .text-block-98 {
    line-height: 140%;
  }

  .text-block-99 {
    padding-left: 20px;
    font-size: 35px;
  }

  .text-block-100 {
    padding-left: 20px;
    font-size: 18px;
  }

  .text-block-101 {
    padding-left: 20px;
    font-size: 28px;
    line-height: 140%;
  }

  .text-block-102 {
    color: #1b4b47;
    padding-left: 20px;
    line-height: 140%;
  }

  .text-block-103 {
    margin-bottom: 24px;
    padding-left: 20px;
    font-size: 28px;
  }

  .text-block-104 {
    padding-left: 20px;
  }

  .text-block-106 {
    padding-left: 20px;
    font-size: 18px;
  }

  .text-block-107 {
    padding-left: 20px;
  }

  .text-block-108 {
    padding-left: 20px;
    font-size: 35px;
  }

  .text-block-109 {
    padding-left: 20px;
    padding-right: 20px;
    font-size: 35px;
  }

  .text-block-110 {
    padding-left: 20px;
    padding-right: 20px;
    font-size: 18px;
  }

  .list-6 {
    padding-left: 20px;
  }

  .list-item-29 {
    font-size: 18px;
  }

  .div-block-34 {
    background-color: #f8f9fa;
    border-style: none;
    border-color: #0000001a;
    border-radius: 20px;
    padding: 20px;
  }

  .text-block-112 {
    font-size: 18px;
  }

  .text-block-113 {
    padding-top: 20px;
    padding-left: 0;
    padding-right: 20px;
    font-size: 35px;
  }

  .text-block-114, .list-item-30 {
    font-size: 18px;
  }

  .list-7, .list-8, .list-9, .list-10, .list-11, .list-12 {
    padding-left: 20px;
  }

  .text-block-116 {
    font-size: 35px;
    line-height: 35px;
  }

  .text-block-117 {
    padding-left: 0;
    font-size: 18px;
  }

  .list-13 {
    padding-left: 20px;
    font-size: 28px;
  }

  .list-item-31, .list-item-32, .list-item-33, .list-item-34 {
    font-size: 16px;
  }

  .text-block-118 {
    font-size: 28px;
  }

  .text-block-119 {
    font-family: DM Sans, sans-serif;
    font-size: 16px;
  }

  .list-14 {
    padding-left: 20px;
  }

  .text-span-338 {
    font-size: 16px;
  }

  .text-block-121 {
    font-size: 35px;
  }

  .text-block-122, .list-item-35 {
    font-size: 18px;
  }

  .text-block-127 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .span {
    padding-left: 0;
    padding-right: 0;
  }

  .list-15 {
    padding-left: 20px;
  }

  .list-item-36, .list-item-37, .list-item-38, .list-item-39, .list-item-40, .list-item-41, .list-item-42 {
    font-size: 18px;
  }

  .div-block-36 {
    border-style: none;
    border-radius: 0;
    padding: 20px 0;
  }

  .div-block-37 {
    background-color: #f8f9fa;
    border-style: none;
    border-radius: 20px;
    padding: 20px;
  }

  .text-block-128 {
    font-size: 35px;
  }

  .list-item-43 {
    font-size: 16px;
  }

  .list-16 {
    padding-left: 20px;
  }

  .text-block-130 {
    font-size: 18px;
  }

  .div-block-38 {
    border-style: none;
    border-radius: 0;
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .text-block-132 {
    margin-bottom: 10px;
    line-height: 25px;
  }

  .text-block-133 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .list-17 {
    margin-bottom: 20px;
    padding-left: 20px;
  }

  .list-item-44, .list-item-45 {
    font-size: 16px;
  }

  .list-18 {
    margin-bottom: 20px;
    padding-left: 20px;
  }

  .div-block-43 {
    border-style: none;
    border-radius: 20px;
    margin-right: 0;
    padding: 20px 10px 0;
  }

  .text-block-135 {
    font-size: 35px;
  }

  .text-block-136, .list-item-46, .list-item-47, .list-item-48, .list-item-49, .list-item-50, .list-item-51 {
    font-size: 18px;
  }

  .text-block-139 {
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .div-block-45 {
    border-style: none;
    padding: 20px 10px;
  }

  .div-block-46 {
    border-style: none;
    border-radius: 0;
    padding: 0 20px;
  }

  .text-block-140 {
    font-size: 35px;
  }

  .text-block-141 {
    font-size: 18px;
  }

  .list-19 {
    padding-left: 20px;
  }

  .list-item-52, .list-item-53, .list-item-54, .list-item-55, .list-item-56, .list-item-57, .list-item-58, .list-item-59, .list-item-60, .list-item-61 {
    font-size: 18px;
  }

  .div-block-47 {
    border-style: none;
    border-radius: 0;
    padding-top: 0;
    padding-left: 20px;
    padding-right: 20px;
  }

  .div-block-48 {
    background-color: #f8f9fa;
    border-style: none;
    border-radius: 20px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .text-block-144 {
    font-size: 35px;
  }

  .text-block-145 {
    padding-left: 10px;
    padding-right: 0;
    font-size: 35px;
  }

  .text-block-146 {
    font-size: 18px;
  }

  .div-block-50 {
    background-color: #f8f9fa;
    border-style: none;
    border-color: #0000;
    border-radius: 20px;
    padding: 20px;
  }

  .list-20 {
    padding-left: 20px;
  }

  .list-21 {
    padding-left: 10px;
  }

  .list-22, .list-23 {
    padding-left: 20px;
  }

  .div-block-52 {
    border-style: none;
    border-radius: 0;
    padding: 0 20px;
  }

  .div-block-53 {
    background-color: #f8f9fa;
    border-style: none;
    padding: 20px;
  }

  .list-24, .list-25, .list-26, .list-27, .list-28, .list-29, .list-30, .list-31, .list-32, .list-33, .list-34 {
    padding-left: 20px;
  }

  .home_container-large {
    flex-flow: row;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .home_title-container {
    align-self: flex-end;
  }

  .home_title-p.new {
    font-size: 22px;
  }

  .home_hero-image.home_hero-image-top-left {
    min-width: 200px;
    max-width: none;
  }

  .home_hero-image.home_hero-image-top-right {
    display: none;
  }

  .home_hero-image.home_hero-image-top-right.animated-element-test {
    display: block;
  }

  .home_hero-image.home_hero-image-down-left {
    min-width: 250px;
    max-width: none;
  }

  .home_hero-image.home_hero-image-down-right {
    display: none;
  }

  .section_jta {
    padding-left: 0;
    padding-right: 0;
  }

  .jta_text-container {
    padding-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .jta_text-container.new.pt.ar {
    justify-content: center;
    align-items: center;
  }

  .jta_32-pad {
    display: none;
  }

  .jta_32-pad.p60 {
    height: 32px;
    display: block;
  }

  .jta_32-pad.horizontal {
    display: block;
  }

  .jta_p.new {
    text-align: center;
    font-weight: 300;
  }

  .jta_80-pad {
    display: none;
  }

  .oneid_title-container {
    width: auto;
    padding-left: 20px;
    padding-right: 20px;
  }

  .oneid_title-container.new {
    padding-left: 0;
    padding-right: 0;
  }

  .section_message {
    padding: 48px 32px;
  }

  .message_p {
    width: auto;
    font-size: 32px;
  }

  .monitor_container {
    padding: 20px;
  }

  .monitor_container.new.sp {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .monitor_title-container {
    padding: 2.375rem 1.65rem;
  }

  .monitor_title-container.new.why-palm, .monitor_title-container.new.ryb, .monitor_title-container.new.sp {
    padding-bottom: 0;
  }

  .monitor_title-header.new.why-palm {
    color: var(--moss-1000);
    letter-spacing: 0;
    font-size: 40px;
    line-height: 100%;
  }

  .monitor_title-header.new.ryb {
    color: var(--moss-1000);
    letter-spacing: 0;
    font-size: 40px;
    line-height: 48px;
  }

  .monitor_title-header.new.sp {
    color: var(--moss-1000);
    letter-spacing: 0;
    font-size: 40px;
    line-height: 100%;
  }

  .monitor_phone-container {
    width: 100%;
    max-width: none;
  }

  .section_dscroll {
    padding: 20px;
  }

  .dscroll_header.new {
    padding-bottom: 32px;
  }

  .dscroll_header-image {
    display: none;
  }

  .dscroll_header-image.new {
    display: block;
  }

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

  .dscroll_infor-card-p {
    text-align: center;
  }

  .dscroll_infor-card-p.new {
    text-align: left;
    text-decoration: none;
  }

  .oneid_wrapper {
    padding-top: 20px;
  }

  .oneid_wrapper.new {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .jta_spacer {
    background-size: contain;
  }

  .mscroll_info-card-wrapper {
    align-items: center;
  }

  .mscroll_info-card-wrapper.new {
    justify-content: center;
    align-items: flex-start;
    padding-top: 48px;
  }

  .mscroll_info-card-wrapper.new.dev {
    justify-content: space-between;
    align-items: flex-start;
    padding-left: 0;
  }

  .image-15.target_image {
    max-width: min(342px, 100vw - 32px);
  }

  .image-17 {
    max-width: max(32vw, 120px);
  }

  .text-block-147 {
    font-size: 35px;
    line-height: 40px;
  }

  .text-block-148 {
    font-size: 16px;
  }

  .list-35 {
    margin-left: 0;
    padding-left: 20px;
    padding-right: 0;
    font-size: 18px;
  }

  .div-block-57 {
    padding-left: 0;
    padding-right: 0;
  }

  .list-item-62, .list-item-63, .list-item-64 {
    font-size: 16px;
  }

  .list-item-65, .list-item-66 {
    font-size: 18px;
  }

  .list-36 {
    padding-left: 20px;
  }

  .list-item-67, .list-item-68, .list-item-69 {
    font-size: 16px;
  }

  .div-block-58 {
    flex-flow: column;
    justify-content: center;
    align-items: flex-start;
    padding-left: 20px;
    padding-right: 20px;
  }

  .text-span-421, .text-block-151 {
    font-size: 16px;
  }

  .text-block-152 {
    margin-top: 20px;
    margin-left: 0;
    font-size: 16px;
  }

  .text-span-423, .text-span-424 {
    font-size: 18px;
  }

  .div-block-59 {
    background-color: #fff;
    border-style: none;
    border-radius: 20px;
    padding: 0 10px;
  }

  .text-block-153 {
    font-size: 35px;
  }

  .div-block-60 {
    flex-flow: column;
    margin-left: 20px;
    margin-right: 20px;
    padding-left: 0;
    padding-right: 0;
    overflow: visible;
  }

  .div-block-61 {
    width: 100%;
    margin-left: 20px;
    padding-right: 20px;
    overflow: scroll;
  }

  .text-block-154 {
    margin-left: 0;
    margin-right: 0;
    padding-left: 20px;
    padding-right: 20px;
    font-size: 18px;
  }

  .heading-17 {
    font-size: 35px;
  }

  .text-block-155 {
    padding-left: 0;
    padding-right: 0;
    font-size: 35px;
  }

  .text-block-156 {
    padding-left: 0;
    padding-right: 0;
    font-size: 16px;
  }

  .text-block-157 {
    font-size: 28px;
  }

  .text-block-158, .list-item-70 {
    font-size: 18px;
  }

  .div-block-62 {
    width: 100%;
    max-width: 100%;
    overflow: auto;
  }

  .text-block-159 {
    text-align: center;
    padding-left: 20px;
    padding-right: 20px;
  }

  .heading-19 {
    margin-left: 0;
    margin-right: 0;
    font-size: 35px;
    line-height: 120%;
  }

  .text-block-160 {
    text-align: center;
    padding-left: 0;
    padding-right: 0;
  }

  .div-block-63 {
    overflow: scroll;
  }

  .heading-20 {
    text-align: center;
    font-size: 35px;
    line-height: 120%;
  }

  .text-block-161 {
    font-size: 18px;
  }

  .text-block-162 {
    text-align: left;
    padding-left: 20px;
    padding-right: 20px;
    font-size: 18px;
  }

  .text-span-436, .text-span-438, .text-span-439, .text-span-440, .text-span-441, .text-span-442 {
    font-size: 16px;
  }

  .text-block-163 {
    text-align: left;
    padding-left: 0;
    padding-right: 0;
    font-size: 35px;
  }

  .text-block-164 {
    font-size: 18px;
  }

  .text-block-165 {
    font-size: 28px;
  }

  .text-block-166 {
    font-size: 16px;
  }

  .text-span-443, .text-span-444, .text-span-445, .text-span-446 {
    font-size: 18px;
  }

  .list-37 {
    margin-left: 0;
    padding-left: 20px;
  }

  .list-item-73 {
    font-size: 16px;
  }

  .list-38 {
    padding-left: 20px;
  }

  .list-item-74, .list-item-75, .list-item-76 {
    font-size: 16px;
  }

  .div-block-67 {
    border-style: none;
    border-radius: 0;
    padding: 0;
  }

  .list-item-77, .list-item-78, .list-item-79, .list-item-80 {
    font-size: 16px;
  }

  .text-block-167 {
    font-size: 35px;
  }

  .text-block-168 {
    font-size: 16px;
  }

  .text-block-169 {
    font-size: 28px;
  }

  .list-39 {
    padding-left: 20px;
  }

  .text-span-479 {
    font-size: 16px;
  }

  .text-block-171 {
    margin-left: 20px;
    margin-right: 20px;
    font-size: 18px;
  }

  .text-block-173 {
    font-size: 35px;
  }

  .div-block-68 {
    background-color: #f8f9fa;
    border-style: none;
    border-radius: 20px;
    padding: 20px;
  }

  .list-item-82, .list-item-83, .list-item-84 {
    font-size: 16px;
  }

  .text-block-175 {
    font-size: 35px;
  }

  .text-block-176 {
    font-size: 16px;
  }

  .div-block-71 {
    flex: 0 auto;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    overflow: auto;
  }

  .heading-21 {
    font-size: 35px;
  }

  .text-block-177 {
    font-size: 18px;
  }

  .paragraph-15 {
    white-space: nowrap;
    word-break: normal;
    overflow-wrap: normal;
    flex: 0 auto;
    width: 100%;
    font-size: 14px;
  }

  .paragraph-16 {
    padding: 0;
    font-size: 14px;
  }

  .paragraph-17 {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
    font-size: 14px;
  }

  .text-block-178 {
    font-size: 35px;
  }

  .text-block-179 {
    font-size: 18px;
  }

  .text-block-180 {
    font-size: 35px;
  }

  .div-block-75 {
    border-style: none;
    padding: 0;
  }

  .text-block-181 {
    font-size: 16px;
  }

  .div-block-76 {
    background-color: #f8f9fa;
    border-style: none;
    padding: 20px;
  }

  .text-block-182 {
    font-size: 35px;
  }

  .text-block-183 {
    text-align: left;
    font-size: 35px;
  }

  .text-block-184 {
    font-size: 16px;
  }

  .text-block-185 {
    font-size: 28px;
  }

  .text-block-186, .list-item-85, .list-item-86, .list-item-87 {
    font-size: 16px;
  }

  .text-block-187, .text-block-188 {
    font-size: 35px;
  }

  .text-block-189 {
    font-size: 18px;
  }

  .text-block-190 {
    font-size: 28px;
  }

  .text-block-191, .list-item-89, .text-block-192 {
    font-size: 16px;
  }

  .text-block-193 {
    font-size: 35px;
  }

  .div-block-88 {
    outline-offset: 0px;
    background-color: #f8f9fa;
    border-style: none;
    outline: 3px #333;
    padding: 20px;
  }

  .text-block-194 {
    font-size: 35px;
  }

  .text-block-195 {
    font-size: 18px;
  }

  .text-block-196 {
    font-size: 28px;
  }

  .text-span-529 {
    font-size: 16px;
  }

  .list-item-91, .text-block-198 {
    font-size: 18px;
  }

  .text-block-199, .text-span-536, .text-span-537 {
    font-size: 16px;
  }

  .div-block-89 {
    border-style: none;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding-left: 20px;
    padding-right: 20px;
    overflow: scroll;
  }

  .paragraph-18 {
    padding: 0 10px 0 0;
    line-height: 120%;
  }

  .bold-text-78 {
    font-size: 16px;
  }

  .div-block-90 {
    width: 100%;
    max-width: 100%;
    overflow: scroll;
  }

  .div-block-91 {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-flow: column;
    padding-left: 20px;
    padding-right: 20px;
  }

  .text-block-201 {
    font-size: 18px;
  }

  .text-block-202 {
    font-size: 35px;
  }

  .text-block-203 {
    font-size: 16px;
  }

  .text-block-204 {
    font-size: 28px;
  }

  .text-block-205 {
    font-size: 16px;
  }

  .text-block-206 {
    font-size: 35px;
  }

  .text-block-207 {
    font-size: 16px;
  }

  .text-block-208 {
    font-size: 35px;
  }

  .text-block-209 {
    font-size: 16px;
  }

  .text-block-210 {
    font-size: 28px;
  }

  .text-block-211 {
    font-size: 16px;
  }

  .text-block-212 {
    margin-top: 100px;
    padding-left: 20px;
    padding-right: 20px;
    font-size: 18px;
    display: block;
  }

  .text-block-213, .text-block-214 {
    font-size: 35px;
  }

  .text-block-215 {
    font-size: 16px;
  }

  .text-block-216 {
    font-size: 28px;
  }

  .text-block-217 {
    font-size: 16px;
  }

  .div-block-100 {
    grid-column-gap: 46px;
    grid-row-gap: 46px;
    flex-flow: column;
    padding-left: 20px;
    padding-right: 20px;
  }

  .text-block-220 {
    font-size: 18px;
  }

  .text-span-681, .text-span-682, .text-span-683, .text-span-684, .text-span-685, .text-span-686, .text-span-687, .text-span-688 {
    font-size: 16px;
  }

  .list-item-98, .list-item-99, .list-item-100 {
    font-size: 18px;
  }

  .list-42 {
    padding-left: 20px;
  }

  .div-block-102 {
    background-color: #f8f9fa;
    border-style: none;
    border-radius: 20px;
    padding: 20px;
  }

  .list-43, .list-44, .list-45 {
    padding-left: 20px;
  }

  .list-item-112, .list-item-113, .list-item-114, .list-item-115, .list-item-116, .list-item-117, .list-item-118, .list-item-119, .list-item-120, .list-item-121, .list-item-122 {
    font-size: 18px;
  }

  .list-46, .list-47, .list-48 {
    padding-left: 20px;
  }

  .div-block-142, .body-4 {
    background-color: #fff;
  }

  .div-block-168 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .text-span-746, .text-span-747, .text-span-748, .text-span-749, .text-span-750 {
    font-weight: 600;
  }

  .div-block-186 {
    grid-column-gap: 60px;
    grid-row-gap: 60px;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    margin-top: 0;
    padding-top: 60px;
    display: flex;
    position: relative;
  }

  .heading-27 {
    margin-top: 0;
    margin-bottom: 0;
    padding-bottom: 20px;
  }

  .heading-28, .heading-29, .heading-30, .heading-31 {
    margin-top: 0;
    margin-bottom: 20px;
  }

  .image-29 {
    width: 30px;
    position: absolute;
    top: 0;
    left: -35px;
  }

  .text-span-751, .text-span-752, .text-span-753, .text-span-754, .text-span-755, .text-span-756, .text-span-757, .text-span-758, .text-span-759, .text-span-760, .text-span-761, .text-span-762, .text-span-763, .text-span-764, .text-span-765, .text-span-766, .text-span-767, .text-span-768, .text-span-769, .text-span-770, .text-span-771, .text-span-772, .text-span-773, .text-span-774, .text-span-775, .text-span-776, .text-span-777, .text-span-778, .text-span-779, .text-span-780, .text-span-781, .text-span-782, .text-span-783, .text-span-784, .text-span-785, .text-span-786, .text-span-787, .text-span-788, .text-span-789, .text-span-790, .text-span-791, .text-span-794, .text-span-795, .text-span-796, .text-span-797, .text-span-798 {
    font-weight: 600;
  }

  .link-4 {
    text-decoration: none;
  }

  .div-block-215, .div-block-216 {
    border-style: none;
    padding: 20px;
  }

  .div-block-217 {
    border-style: none;
    padding: 20px 0;
  }

  .div-block-218 {
    background-color: #f8f9fa;
    border-radius: 20px;
    padding: 20px;
  }

  .div-block-219 {
    border-style: none;
  }

  .div-block-220 {
    border-style: none;
    padding: 20px;
  }

  .div-block-221 {
    background-color: #f8f9fa;
    border-radius: 20px;
    padding: 0;
  }

  .div-block-222 {
    border-style: none;
  }

  .div-block-223 {
    border-style: none;
    padding: 20px;
  }

  .div-block-224, .div-block-225 {
    border-style: none;
  }

  .text-block-224 {
    text-align: center;
    justify-content: center;
    align-items: center;
    padding-top: 40px;
    font-family: DM Sans, sans-serif;
    font-size: 18px;
    font-weight: 300;
    line-height: 28px;
    display: flex;
  }

  .text-span-803 {
    font-weight: 600;
  }

  .text-span-808, .text-span-809, .text-span-810, .text-span-811, .text-span-812, .text-span-817, .text-span-818, .text-span-819, .text-span-823, .text-span-824, .text-span-825, .text-span-826, .text-span-827 {
    font-weight: 300;
  }

  .text-block-225 {
    color: #1b4b47;
    padding-top: 40px;
    padding-left: 20px;
    padding-right: 20px;
    font-family: DM Sans, sans-serif;
    font-size: 18px;
    font-weight: 300;
    line-height: 28px;
    display: block;
  }

  .text-span-834, .text-span-835, .text-span-836, .text-span-837, .text-span-838, .text-span-839, .text-span-840, .text-span-841, .text-span-842, .text-span-843, .text-span-844, .text-span-845, .text-span-846, .text-span-847, .text-span-848, .text-span-849, .text-span-850, .text-span-851, .text-span-852, .text-span-853, .text-span-854, .text-span-855, .text-span-856, .text-span-857, .text-span-858, .text-span-859, .text-span-860, .text-span-861, .text-span-862, .text-span-863, .text-span-864, .text-span-865, .text-span-866, .text-span-867, .text-span-868, .text-span-869, .text-span-870, .text-span-871, .text-span-872, .text-span-873, .text-span-874, .text-span-875, .text-span-876, .text-span-877, .text-span-878, .text-span-879 {
    font-weight: 300;
  }

  .text-span-883, .text-span-884, .text-span-885 {
    font-weight: 600;
  }

  .text-block-227 {
    padding-left: 20px;
    padding-right: 20px;
    font-size: 18px;
  }

  .text-span-886 {
    font-size: 18px;
  }

  .list-item-128 {
    font-size: 16px;
    line-height: 120%;
  }

  .list-49 {
    grid-column-gap: 6px;
    grid-row-gap: 6px;
    flex-flow: column;
    margin-top: 10px;
    padding-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .div-block-241 {
    padding-left: 0;
    padding-right: 0;
  }

  .div-block-242 {
    background-color: #f8f9fa;
    border-radius: 20px;
    padding: 20px;
  }

  .text-span-887, .text-span-888 {
    font-size: 16px;
  }

  .div-block-243 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .span-5 {
    padding-left: 0;
    padding-right: 0;
  }

  .div-block-244, .div-block-245 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .div-block-248 {
    border-style: none;
    padding: 20px;
  }

  .div-block-249, .div-block-250 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .div-block-251 {
    padding: 20px;
  }

  .div-block-270 {
    padding-left: 0;
    padding-right: 0;
  }

  .div-block-271, .div-block-272 {
    padding-left: 10px;
    padding-right: 10px;
  }

  .div-block-273 {
    background-color: #f8f9fa;
    border-style: none;
    border-radius: 20px;
    padding-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .text-span-889, .text-span-890, .text-span-891, .text-span-892, .list-item-130, .list-item-131, .text-span-893 {
    font-size: 16px;
  }

  .text-span-900, .text-span-901, .text-span-902, .text-span-903, .text-span-904, .text-span-905 {
    font-weight: 600;
  }

  .list-50 {
    padding-left: 20px;
  }

  .text-span-906, .text-span-907, .text-span-908, .text-span-909, .text-span-910 {
    font-weight: 600;
  }

  .list-51, .list-52 {
    padding-left: 20px;
  }

  .text-span-912, .text-span-913, .text-span-914, .text-span-915, .text-span-916, .text-span-917, .text-span-918, .text-span-919, .text-span-920, .text-span-921, .text-span-922, .text-span-923, .text-span-924, .text-span-925, .text-span-926 {
    font-weight: 600;
  }

  .text-block-232 {
    color: #1b4b47;
    text-align: center;
    padding-left: 20px;
    padding-right: 20px;
    font-family: DM Sans, sans-serif;
    font-size: 18px;
    font-weight: 300;
    line-height: 28px;
    display: none;
  }

  .list-53 {
    padding-left: 20px;
  }

  .paragraph-21 {
    display: none;
  }

  .text-span-927 {
    font-weight: 600;
  }

  .list-54 {
    padding-left: 20px;
  }

  .div-block-372 {
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .list-55, .list-56, .list-57 {
    padding-left: 20px;
  }

  .text-span-928 {
    font-weight: 600;
  }

  .div-block-384 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .list-58 {
    padding-left: 20px;
  }

  .text-span-929, .text-span-930, .text-span-931, .text-span-932, .text-span-933, .text-span-934, .text-span-935 {
    font-weight: 600;
  }

  .text-block-234 {
    padding-left: 0;
    padding-right: 0;
    font-size: 35px;
  }

  .text-block-235 {
    font-size: 16px;
  }

  .text-block-236 {
    font-size: 28px;
  }

  .text-block-237, .text-span-948, .list-item-132, .list-item-133 {
    font-size: 16px;
  }

  .list-59 {
    padding-left: 20px;
  }

  .text-block-240 {
    font-size: 35px;
  }

  .text-block-241 {
    font-size: 16px;
  }

  .text-span-958 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .text-block-244 {
    font-size: 2rem;
    line-height: 120%;
  }

  .paragraph-22 {
    font-size: 18px;
  }

  .heading-38, .heading-38.is-white {
    font-size: 2rem;
  }

  .div-block-399 {
    width: 100%;
  }

  .div-block-400 {
    flex-flow: column;
    padding-left: 0;
    padding-right: 0;
  }

  .text-block-247 {
    width: 100%;
    height: auto;
    font-size: 18px;
  }

  .heading-39 {
    font-size: 28px;
  }

  .div-block-401 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .div-block-402 {
    flex-flow: column;
    margin-top: 0;
    margin-bottom: 0;
  }

  .list-item-135 {
    font-size: 18px;
  }

  .image-79, .image-80, .image-81, .image-82, .image-83, .image-84, .image-85, .image-86, .image-87 {
    width: 10px;
    position: absolute;
    bottom: 0;
    left: -25px;
  }

  .text-span-966, .text-span-967 {
    font-size: 16px;
  }

  .image-88 {
    width: 10px;
    display: block;
    position: absolute;
    bottom: 0;
    left: -25px;
  }

  .image-89, .image-90, .image-91, .image-92, .image-93 {
    width: 10px;
    position: absolute;
    bottom: 0;
    left: -25px;
  }

  .text-span-968 {
    font-size: 16px;
  }

  .image-95 {
    width: 10px;
    position: absolute;
    bottom: 0;
    left: -25px;
  }

  .div-block-409 {
    background-color: #f8f9fa;
    border-radius: 20px;
    padding: 20px 0;
  }

  .text-block-252 {
    font-size: 35px;
  }

  .text-block-253 {
    font-size: 16px;
  }

  .text-block-254 {
    font-size: 28px;
  }

  .text-span-969, .list-item-136, .paragraph-26 {
    font-size: 16px;
  }

  .text-block-255 {
    padding-left: 20px;
    padding-right: 20px;
    line-height: 40px;
  }

  .div-block-424 {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    text-align: left;
    flex-flow: column;
    justify-content: center;
    align-items: flex-start;
    padding-left: 20px;
    padding-right: 20px;
  }

  .text-block-256 {
    font-size: 18px;
  }

  .text-span-977 {
    font-size: 16px;
  }

  .text-block-258 {
    font-size: 35px;
  }

  .text-block-259 {
    font-size: 16px;
  }

  .text-block-260 {
    font-size: 28px;
  }

  .text-block-263 {
    font-size: 35px;
  }

  .div-block-435 {
    flex-flow: column;
  }

  .div-block-436, .div-block-437 {
    max-width: 100%;
  }

  .paragraph-27 {
    font-size: 18px;
  }

  .div-block-438.mobile {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
  }

  .image-112 {
    width: 84px;
  }

  .flex-block-3 {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
  }

  .flex-block-5 {
    justify-content: flex-start;
    align-items: center;
  }

  .flex-block-6.ryb.home {
    width: 100%;
  }

  .developers-hero {
    padding-bottom: 16px;
    padding-left: 0;
    padding-right: 0;
  }

  .dev_img_container {
    padding-top: 0;
    padding-left: 0;
    padding-right: 48px;
  }

  .why-palm_phone-container {
    width: 100%;
    max-width: none;
  }

  .why-palm_phone-image {
    margin-top: -2rem;
  }

  .section_dev-scroll {
    background-position: 100%;
    padding: 64px 32px;
  }

  .section_palm-helps {
    padding: 32px;
  }

  .palm-helps_wrapper {
    margin-left: 0;
    margin-right: 0;
  }

  .palm-helps_p {
    font-size: 32px;
    line-height: 36px;
  }

  .dev-scroll_header {
    padding-bottom: 0;
  }

  .dev-scroll_header-image {
    display: none;
  }

  .dev-scroll_header-title {
    text-align: left;
  }

  .dev-scroll_header-title.fastest {
    font-size: 32px;
    line-height: 36px;
  }

  .dev-scroll_infor-card-title {
    line-height: 36px;
  }

  .dev-scroll_infor-card-p {
    text-align: left;
  }

  .onlyid_title-title {
    font-size: 32px;
  }

  .imap_wrapper.dev {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
  }

  .imap_text-container {
    padding-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .imap_text-container.new {
    padding-bottom: 0;
  }

  .imap_flex {
    flex-flow: column;
  }

  .imap_title.dev {
    width: 100%;
    font-size: 32px;
  }

  .imap_list.dev {
    width: 100%;
  }

  .section_imap {
    padding-left: 0;
    padding-right: 0;
  }

  .imap_img-container {
    padding-top: 0;
    padding-bottom: 0;
  }

  .image-17-2 {
    max-width: max(32vw, 120px);
  }

  .onlyid_title-container {
    width: auto;
    padding-left: 20px;
    padding-right: 20px;
  }

  .onlyid_title-container.new {
    padding-left: 0;
    padding-right: 0;
  }

  .onlyid_wrapper {
    padding-top: 20px;
  }

  .onlyid_wrapper.new {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .palm-helps_logo {
    flex-flow: column;
  }

  .text-block-266 {
    font-size: 35px;
  }

  .text-block-267 {
    font-size: 16px;
  }

  .text-block-268 {
    font-size: 28px;
  }

  .text-span-1083 {
    font-size: 16px;
  }

  .div-block-442 {
    max-width: 100%;
    overflow: scroll;
  }

  .paragraph-28, .paragraph-29, .paragraph-30 {
    font-size: 16px;
  }

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

  .div-block-453 {
    border-style: none;
    padding: 20px;
  }

  .list-item-138, .list-item-139, .list-item-140 {
    font-size: 16px;
  }

  .list-62, .list-63, .list-64 {
    padding-left: 20px;
  }

  .text-block-271 {
    font-size: 35px;
  }

  .text-block-272 {
    font-size: 18px;
  }

  .text-block-273 {
    font-size: 28px;
  }

  .div-block-454 {
    max-width: 100%;
    overflow: scroll;
  }

  .paragraph-31, .paragraph-32, .paragraph-33 {
    font-size: 16px;
  }

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

  .div-block-455 {
    grid-column-gap: 33px;
    grid-row-gap: 33px;
    flex-flow: column;
    justify-content: center;
    align-items: flex-start;
  }

  .link-7 {
    color: var(--neutral-800);
  }

  .text-block-280 {
    font-size: 35px;
  }

  .text-block-281 {
    font-size: 18px;
  }

  .div-block-472 {
    justify-content: center;
    padding-top: 64px;
    padding-bottom: 64px;
    display: flex;
  }

  .div-block-472.padding {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .text-block-282 {
    font-size: 28px;
  }

  .text-block-285 {
    line-height: 40px;
  }

  .text-block-286 {
    text-align: center;
    font-size: 28px;
  }

  .div-block-484 {
    border-style: none;
    padding: 0;
  }

  .text-block-289 {
    font-size: 35px;
  }

  .text-block-290 {
    font-size: 18px;
  }

  .heading-41 {
    font-size: 35px;
  }

  .text-block-294, .list-item-143 {
    font-size: 18px;
  }

  .text-block-295 {
    font-size: 35px;
  }

  .div-block-498 {
    border-style: none;
    padding: 0;
  }

  .list-65, .list-66, .list-67 {
    padding-left: 20px;
  }

  .text-block-300 {
    font-size: 35px;
  }

  .text-block-301 {
    font-size: 16px;
  }

  .text-block-302 {
    font-size: 28px;
  }

  .div-block-505 {
    max-width: 100%;
    overflow: scroll;
  }

  .paragraph-38, .paragraph-39, .paragraph-40 {
    font-size: 16px;
  }

  .div-block-506 {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-flow: column;
    margin-top: 0;
    padding-top: 24px;
  }

  .text-block-303 {
    max-width: 100%;
  }

  .text-block-305 {
    font-size: 35px;
  }

  .text-block-306 {
    font-size: 16px;
  }

  .text-block-307 {
    font-size: 28px;
  }

  .text-span-1148 {
    font-weight: 600;
  }

  .text-block-308 {
    font-size: 18px;
  }

  .text-span-1164 {
    font-weight: 600;
  }

  .div-block-519 {
    background-color: #f8f9fa;
    border-radius: 20px;
  }

  .div-block-528 {
    grid-column-gap: 18px;
    grid-row-gap: 18px;
    text-align: left;
    flex-flow: column;
  }

  .link-10 {
    color: var(--neutral-800);
  }

  .text-span-1194 {
    font-weight: 600;
  }

  .list-69, .list-70, .list-71 {
    padding-left: 20px;
  }

  .div-block-533 {
    width: 100%;
    overflow: scroll;
  }

  .image-151 {
    width: 350px;
    height: 350px;
    padding-left: 0;
    padding-right: 0;
  }

  .div-block-534 {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    flex-flow: column;
  }

  .div-block-535, .div-block-536 {
    width: 100%;
  }

  .div-block-537 {
    flex-flow: column;
  }

  .dev-form {
    height: 100%;
  }

  .dev-form_container {
    opacity: 0;
    flex-flow: column;
    width: 100vw;
    height: 60vh;
    padding: 16px;
    overflow: auto;
  }

  .dev-form_wrapper {
    padding-bottom: 16px;
  }

  .dev-form_title_wrapper {
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .dev-form_title {
    font-size: 20px;
  }

  .dev-form_close {
    font-size: 12px;
  }

  .pt-hero {
    height: auto;
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .pt-hero_title.new.ar {
    text-align: center;
  }

  .ryb-table_item.free.mobile {
    grid-column-gap: 4px;
    grid-row-gap: 4px;
    flex-flow: row;
  }

  .ryb-table_item.paid.mobile.item {
    grid-column-gap: 4px;
    grid-row-gap: 4px;
  }

  .pt-bd_wrapper {
    padding-top: 20px;
  }

  .pt-bd_wrapper.new {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .pt-bd_wrapper.new.htf {
    justify-content: center;
    align-items: center;
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .pt-bd_container {
    width: auto;
    padding-bottom: 48px;
    padding-left: 0;
    padding-right: 0;
  }

  .pt-bd_container.hiw {
    padding-bottom: 0;
  }

  .pt-bd_container.act {
    justify-content: flex-start;
    align-items: flex-start;
  }

  .pt-bd_title {
    font-size: 32px;
  }

  .pt-bd_title.htf {
    text-align: center;
  }

  .pt-bd_card.ps {
    min-height: 300px;
  }

  .pt-hero-img_container {
    background-size: cover;
    height: 40vh;
    padding-top: 0;
    padding-left: 0;
    padding-right: 48px;
  }

  .pt-hero-img_container.ar {
    padding-left: 20px;
    padding-right: 20px;
  }

  .pt-hero_card {
    width: 264px;
  }

  .centered-section {
    padding-left: 24px;
    padding-right: 24px;
  }

  .image-169 {
    width: 120px;
    right: 0;
  }

  .image-170 {
    width: 120px;
    left: 0;
  }

  .image-171 {
    width: 120px;
  }

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

  .act-hero {
    height: auto;
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .act-hiw_tiled-container {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
  }

  .act-form_container {
    opacity: 0;
    flex-flow: column;
    width: 100vw;
    height: 60vh;
    padding: 16px;
    overflow: auto;
  }

  .ar-hero-card {
    height: 60%;
    right: -5%;
  }

  .ar-tfc-c.c1 {
    right: -20%;
  }

  .ar-tfc-c.c3-pointer {
    bottom: 34%;
  }

  .home-switcher-container {
    margin-left: 0;
    margin-right: 0;
  }

  .display-flex {
    flex: none;
    justify-content: space-around;
    align-items: center;
  }

  .nav-link-switcher.w--current, .nav-link-switcher.switcher-on-transparent.w--current {
    padding-left: 10px;
    padding-right: 10px;
  }

  .hp-container.hp-hero-over-map {
    padding-left: 12px;
    padding-right: 12px;
  }

  .hp-container.hp-grow {
    padding-top: 0;
  }

  .hp-h1-light.hp-hero-h1 {
    font-size: 8vw;
  }

  .hp-hero-section {
    height: calc(100vh - 80px);
    min-height: 600px;
  }

  .hp-network-graphic {
    height: 50vh;
  }

  .hp-network-face {
    width: 82px;
    height: 90px;
  }

  .hp-network-face.hp-face-tl {
    bottom: 70%;
    left: 5%;
  }

  .hp-network-face.hp-face-tr {
    bottom: 70%;
    right: 5%;
  }

  .hp-network-face.hp-face-br {
    bottom: 6%;
    right: 5%;
  }

  .hp-network-face.hp-face-bl {
    bottom: 6%;
    left: 5%;
  }

  .hp-network-face.hp-face-cn {
    bottom: 25%;
  }

  .hp-network-institution.hp-institution-bcn {
    width: 50px;
    bottom: 15%;
  }

  .hp-network-institution.hp-institution-tcn {
    width: 36px;
    bottom: 70%;
  }

  .hp-network-institution.hp-institution-left {
    bottom: 45%;
    left: 7%;
  }

  .hp-network-institution.hp-institution-right {
    bottom: 45%;
    right: 8%;
  }

  .hp-network-logo {
    display: none;
  }

  .hp-palm-helps-text {
    margin-bottom: 20px;
    font-size: 6vw;
    line-height: 110%;
  }

  .hp-product-wrapper {
    grid-column-gap: 36px;
    grid-row-gap: 36px;
    flex-flow: column;
    justify-content: center;
    align-items: center;
  }

  .hp-product-color-bg.hp-color-monitoring {
    height: 100vh;
  }

  .hp-product-color-bg.hp-color-1-trans, .hp-product-color-bg.hp-color-2-trans, .hp-product-color-bg.hp-color-3-trans {
    justify-content: center;
    align-items: center;
  }

  .hp-product-small-title {
    font-size: 18px;
  }

  .hp-product-big-title {
    font-size: 28px;
    line-height: 34px;
  }

  .hp-product-left {
    padding-left: 8px;
    padding-right: 8px;
  }

  .hp-product-left.desc {
    font-size: 16px;
    line-height: 20px;
  }

  .hp-product-left.come-in-left {
    padding-left: 8px;
    padding-right: 8px;
  }

  .hp-prod-comp-bg {
    max-width: 90vw;
  }

  .radar-comp {
    justify-content: center;
    align-items: flex-start;
  }

  .radar-bg-wrapper {
    width: 100vw;
    height: auto;
    min-height: 430px;
  }

  .stats-block-wrap {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr 1fr;
    min-width: 0;
    max-width: 100%;
  }

  .image-179 {
    max-width: 170%;
    margin-left: -35%;
    display: inline-block;
  }

  .hide-on-desktop {
    background-color: var(--transparent);
    width: auto;
    padding: 0 14px;
  }

  .hide-on-desktop.inverse {
    background-color: var(--transparent);
  }

  .flex-block-11, .flex-block-12 {
    scale: .9;
  }

  .hp-400-bg {
    background-color: var(--moss-400);
    border-radius: 24px;
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .hp-1000-bg {
    background-color: var(--moss-1000);
    border-radius: 24px;
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .section-6 {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
  }

  .flex-block-13 {
    padding-left: 32px;
    padding-right: 32px;
  }

  .dns-heading {
    font-size: 32px;
    line-height: 40px;
  }

  .dns-subtitle {
    font-size: 14px;
    line-height: 20px;
  }

  .feb-section.light {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .feb-stat-big {
    font-size: 32px;
    line-height: 40px;
  }

  .feb-h2.feb-light-text {
    text-align: center;
    font-size: 40px;
    line-height: 48px;
  }

  .feb-h2.feb-light-text.left-align {
    text-align: left;
  }

  .diagram-wrapper {
    flex: 0 auto;
    justify-content: center;
    align-self: auto;
    align-items: center;
    padding-left: 0;
    padding-right: 0;
    display: none;
  }

  .feb-arrows.right {
    right: 15%;
  }

  .feb-arrows.left {
    left: 15%;
  }

  .feb-card2-title {
    font-size: 18px;
  }

  .code-embed-3 {
    transform: scale(1);
  }

  .feb-h1-hero.announcement {
    font-size: 40px;
    line-height: 48px;
  }

  .navigation {
    grid-column-gap: 0rem;
    grid-row-gap: 0rem;
  }

  .link-button-wrapper {
    min-height: auto;
  }

  .feb-stat-body-text.font-18.tight {
    font-size: 13px;
  }

  .mask {
    padding-bottom: 64px;
  }

  .feb-testimonial-card {
    width: calc(100vw - 120px);
  }

  .lighter-gray-text-copy.no-bottom-padding.semi-bold {
    font-size: 14px;
    line-height: 130%;
  }

  .testimonial-palm-text-flex {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
  }

  .image-191 {
    max-width: 25%;
    bottom: 10%;
    right: 5%;
  }

  .div-block-593 {
    padding-left: 12px;
  }
}

#w-node-_1177be47-3809-d182-edfe-8b151bacd513-da546139 {
  align-self: end;
}

#w-node-_1177be47-3809-d182-edfe-8b151bacd54a-da546139, #w-node-_1177be47-3809-d182-edfe-8b151bacd54b-da546139, #w-node-_1177be47-3809-d182-edfe-8b151bacd54c-da546139, #w-node-_1177be47-3809-d182-edfe-8b151bacd54d-da546139, #w-node-_1177be47-3809-d182-edfe-8b151bacd54e-da546139, #w-node-_1177be47-3809-d182-edfe-8b151bacd54f-da546139, #w-node-_1177be47-3809-d182-edfe-8b151bacd564-da546139, #w-node-_1177be47-3809-d182-edfe-8b151bacd565-da546139, #w-node-_1177be47-3809-d182-edfe-8b151bacd566-da546139, #w-node-_1177be47-3809-d182-edfe-8b151bacd567-da546139, #w-node-_1177be47-3809-d182-edfe-8b151bacd568-da546139, #w-node-_1177be47-3809-d182-edfe-8b151bacd569-da546139 {
  justify-self: start;
}

#w-node-_1177be47-3809-d182-edfe-8b151bacd598-da546139 {
  place-self: center start;
}

#w-node-_1177be47-3809-d182-edfe-8b151bacd5ac-da546139, #w-node-_1177be47-3809-d182-edfe-8b151bacd5b1-da546139, #w-node-_1177be47-3809-d182-edfe-8b151bacd5b6-da546139 {
  place-self: center;
}

#w-node-f221fb52-823d-055d-2a9d-efe1ae5f5385-a1051885 {
  align-self: end;
}

#w-node-f221fb52-823d-055d-2a9d-efe1ae5f53bc-a1051885, #w-node-f221fb52-823d-055d-2a9d-efe1ae5f53bd-a1051885, #w-node-f221fb52-823d-055d-2a9d-efe1ae5f53be-a1051885, #w-node-f221fb52-823d-055d-2a9d-efe1ae5f53bf-a1051885, #w-node-f221fb52-823d-055d-2a9d-efe1ae5f53c0-a1051885, #w-node-f221fb52-823d-055d-2a9d-efe1ae5f53c1-a1051885, #w-node-f221fb52-823d-055d-2a9d-efe1ae5f53d6-a1051885, #w-node-f221fb52-823d-055d-2a9d-efe1ae5f53d7-a1051885, #w-node-f221fb52-823d-055d-2a9d-efe1ae5f53d8-a1051885, #w-node-f221fb52-823d-055d-2a9d-efe1ae5f53d9-a1051885, #w-node-f221fb52-823d-055d-2a9d-efe1ae5f53da-a1051885, #w-node-f221fb52-823d-055d-2a9d-efe1ae5f53db-a1051885 {
  justify-self: start;
}

#w-node-f221fb52-823d-055d-2a9d-efe1ae5f540a-a1051885 {
  place-self: center start;
}

#w-node-f221fb52-823d-055d-2a9d-efe1ae5f541e-a1051885, #w-node-f221fb52-823d-055d-2a9d-efe1ae5f5423-a1051885, #w-node-f221fb52-823d-055d-2a9d-efe1ae5f5428-a1051885 {
  place-self: center;
}

#w-node-_9ba38385-20ad-0569-6dbe-908c8ede7aad-e6fc10e6 {
  align-self: end;
}

#w-node-_9ba38385-20ad-0569-6dbe-908c8ede7ae4-e6fc10e6, #w-node-_9ba38385-20ad-0569-6dbe-908c8ede7ae5-e6fc10e6, #w-node-_9ba38385-20ad-0569-6dbe-908c8ede7ae6-e6fc10e6, #w-node-_9ba38385-20ad-0569-6dbe-908c8ede7ae7-e6fc10e6, #w-node-_9ba38385-20ad-0569-6dbe-908c8ede7ae8-e6fc10e6, #w-node-_9ba38385-20ad-0569-6dbe-908c8ede7ae9-e6fc10e6, #w-node-_9ba38385-20ad-0569-6dbe-908c8ede7afe-e6fc10e6, #w-node-_9ba38385-20ad-0569-6dbe-908c8ede7aff-e6fc10e6, #w-node-_9ba38385-20ad-0569-6dbe-908c8ede7b00-e6fc10e6, #w-node-_9ba38385-20ad-0569-6dbe-908c8ede7b01-e6fc10e6, #w-node-_9ba38385-20ad-0569-6dbe-908c8ede7b02-e6fc10e6, #w-node-_9ba38385-20ad-0569-6dbe-908c8ede7b03-e6fc10e6 {
  justify-self: start;
}

#w-node-_9ba38385-20ad-0569-6dbe-908c8ede7b32-e6fc10e6 {
  place-self: center start;
}

#w-node-_9ba38385-20ad-0569-6dbe-908c8ede7b46-e6fc10e6, #w-node-_9ba38385-20ad-0569-6dbe-908c8ede7b4b-e6fc10e6, #w-node-_9ba38385-20ad-0569-6dbe-908c8ede7b50-e6fc10e6 {
  place-self: center;
}

#w-node-e6e202ee-8fdb-0767-53d9-5c138e70a3f3-97161837 {
  align-self: end;
}

#w-node-e6e202ee-8fdb-0767-53d9-5c138e70a42a-97161837, #w-node-e6e202ee-8fdb-0767-53d9-5c138e70a42b-97161837, #w-node-e6e202ee-8fdb-0767-53d9-5c138e70a42c-97161837, #w-node-e6e202ee-8fdb-0767-53d9-5c138e70a42d-97161837, #w-node-e6e202ee-8fdb-0767-53d9-5c138e70a42e-97161837, #w-node-e6e202ee-8fdb-0767-53d9-5c138e70a42f-97161837, #w-node-e6e202ee-8fdb-0767-53d9-5c138e70a444-97161837, #w-node-e6e202ee-8fdb-0767-53d9-5c138e70a445-97161837, #w-node-e6e202ee-8fdb-0767-53d9-5c138e70a446-97161837, #w-node-e6e202ee-8fdb-0767-53d9-5c138e70a447-97161837, #w-node-e6e202ee-8fdb-0767-53d9-5c138e70a448-97161837, #w-node-e6e202ee-8fdb-0767-53d9-5c138e70a449-97161837 {
  justify-self: start;
}

#w-node-e6e202ee-8fdb-0767-53d9-5c138e70a478-97161837 {
  place-self: center start;
}

#w-node-e6e202ee-8fdb-0767-53d9-5c138e70a48c-97161837, #w-node-e6e202ee-8fdb-0767-53d9-5c138e70a491-97161837, #w-node-e6e202ee-8fdb-0767-53d9-5c138e70a496-97161837 {
  place-self: center;
}

#w-node-bd250236-e464-c3f4-5b47-379cdd3fca56-76cfd579 {
  align-self: end;
}

#w-node-bd250236-e464-c3f4-5b47-379cdd3fca8d-76cfd579, #w-node-bd250236-e464-c3f4-5b47-379cdd3fca8e-76cfd579, #w-node-bd250236-e464-c3f4-5b47-379cdd3fca8f-76cfd579, #w-node-bd250236-e464-c3f4-5b47-379cdd3fca90-76cfd579, #w-node-bd250236-e464-c3f4-5b47-379cdd3fca91-76cfd579, #w-node-bd250236-e464-c3f4-5b47-379cdd3fca92-76cfd579, #w-node-bd250236-e464-c3f4-5b47-379cdd3fcaa7-76cfd579, #w-node-bd250236-e464-c3f4-5b47-379cdd3fcaa8-76cfd579, #w-node-bd250236-e464-c3f4-5b47-379cdd3fcaa9-76cfd579, #w-node-bd250236-e464-c3f4-5b47-379cdd3fcaaa-76cfd579, #w-node-bd250236-e464-c3f4-5b47-379cdd3fcaab-76cfd579, #w-node-bd250236-e464-c3f4-5b47-379cdd3fcaac-76cfd579 {
  justify-self: start;
}

#w-node-bd250236-e464-c3f4-5b47-379cdd3fcadb-76cfd579 {
  place-self: center start;
}

#w-node-bd250236-e464-c3f4-5b47-379cdd3fcaef-76cfd579, #w-node-bd250236-e464-c3f4-5b47-379cdd3fcaf4-76cfd579, #w-node-bd250236-e464-c3f4-5b47-379cdd3fcaf9-76cfd579 {
  place-self: center;
}

#w-node-_1c6fc396-24f5-ba2b-fc95-133180096aea-e19c1975 {
  align-self: end;
}

#w-node-_1c6fc396-24f5-ba2b-fc95-133180096b21-e19c1975, #w-node-_1c6fc396-24f5-ba2b-fc95-133180096b22-e19c1975, #w-node-_1c6fc396-24f5-ba2b-fc95-133180096b23-e19c1975, #w-node-_1c6fc396-24f5-ba2b-fc95-133180096b24-e19c1975, #w-node-_1c6fc396-24f5-ba2b-fc95-133180096b25-e19c1975, #w-node-_1c6fc396-24f5-ba2b-fc95-133180096b26-e19c1975, #w-node-_1c6fc396-24f5-ba2b-fc95-133180096b3b-e19c1975, #w-node-_1c6fc396-24f5-ba2b-fc95-133180096b3c-e19c1975, #w-node-_1c6fc396-24f5-ba2b-fc95-133180096b3d-e19c1975, #w-node-_1c6fc396-24f5-ba2b-fc95-133180096b3e-e19c1975, #w-node-_1c6fc396-24f5-ba2b-fc95-133180096b3f-e19c1975, #w-node-_1c6fc396-24f5-ba2b-fc95-133180096b40-e19c1975 {
  justify-self: start;
}

#w-node-_1c6fc396-24f5-ba2b-fc95-133180096b6f-e19c1975 {
  place-self: center start;
}

#w-node-_1c6fc396-24f5-ba2b-fc95-133180096b83-e19c1975, #w-node-_1c6fc396-24f5-ba2b-fc95-133180096b88-e19c1975, #w-node-_1c6fc396-24f5-ba2b-fc95-133180096b8d-e19c1975 {
  place-self: center;
}

#w-node-_174b4cf3-f1f5-83b6-3d50-b757d93226f9-c5c462f0 {
  align-self: end;
}

#w-node-_174b4cf3-f1f5-83b6-3d50-b757d9322730-c5c462f0, #w-node-_174b4cf3-f1f5-83b6-3d50-b757d9322731-c5c462f0, #w-node-_174b4cf3-f1f5-83b6-3d50-b757d9322732-c5c462f0, #w-node-_174b4cf3-f1f5-83b6-3d50-b757d9322733-c5c462f0, #w-node-_174b4cf3-f1f5-83b6-3d50-b757d9322734-c5c462f0, #w-node-_174b4cf3-f1f5-83b6-3d50-b757d9322735-c5c462f0, #w-node-_174b4cf3-f1f5-83b6-3d50-b757d932274a-c5c462f0, #w-node-_174b4cf3-f1f5-83b6-3d50-b757d932274b-c5c462f0, #w-node-_174b4cf3-f1f5-83b6-3d50-b757d932274c-c5c462f0, #w-node-_174b4cf3-f1f5-83b6-3d50-b757d932274d-c5c462f0, #w-node-_174b4cf3-f1f5-83b6-3d50-b757d932274e-c5c462f0, #w-node-_174b4cf3-f1f5-83b6-3d50-b757d932274f-c5c462f0 {
  justify-self: start;
}

#w-node-_174b4cf3-f1f5-83b6-3d50-b757d932277e-c5c462f0 {
  place-self: center start;
}

#w-node-_174b4cf3-f1f5-83b6-3d50-b757d9322792-c5c462f0, #w-node-_174b4cf3-f1f5-83b6-3d50-b757d9322797-c5c462f0, #w-node-_174b4cf3-f1f5-83b6-3d50-b757d932279c-c5c462f0 {
  place-self: center;
}

#w-node-_53c208e8-eddf-4f40-f502-cdf88f8b3279-1ad9f35a {
  align-self: end;
}

#w-node-_53c208e8-eddf-4f40-f502-cdf88f8b32b0-1ad9f35a, #w-node-_53c208e8-eddf-4f40-f502-cdf88f8b32b1-1ad9f35a, #w-node-_53c208e8-eddf-4f40-f502-cdf88f8b32b2-1ad9f35a, #w-node-_53c208e8-eddf-4f40-f502-cdf88f8b32b3-1ad9f35a, #w-node-_53c208e8-eddf-4f40-f502-cdf88f8b32b4-1ad9f35a, #w-node-_53c208e8-eddf-4f40-f502-cdf88f8b32b5-1ad9f35a, #w-node-_53c208e8-eddf-4f40-f502-cdf88f8b32ca-1ad9f35a, #w-node-_53c208e8-eddf-4f40-f502-cdf88f8b32cb-1ad9f35a, #w-node-_53c208e8-eddf-4f40-f502-cdf88f8b32cc-1ad9f35a, #w-node-_53c208e8-eddf-4f40-f502-cdf88f8b32cd-1ad9f35a, #w-node-_53c208e8-eddf-4f40-f502-cdf88f8b32ce-1ad9f35a, #w-node-_53c208e8-eddf-4f40-f502-cdf88f8b32cf-1ad9f35a {
  justify-self: start;
}

#w-node-_53c208e8-eddf-4f40-f502-cdf88f8b32fe-1ad9f35a {
  place-self: center start;
}

#w-node-_53c208e8-eddf-4f40-f502-cdf88f8b3312-1ad9f35a, #w-node-_53c208e8-eddf-4f40-f502-cdf88f8b3317-1ad9f35a, #w-node-_53c208e8-eddf-4f40-f502-cdf88f8b331c-1ad9f35a {
  place-self: center;
}

#w-node-c5975713-c462-9685-d3a6-8b79dc7314e8-8d03f1cb {
  align-self: end;
}

#w-node-c5975713-c462-9685-d3a6-8b79dc73151f-8d03f1cb, #w-node-c5975713-c462-9685-d3a6-8b79dc731520-8d03f1cb, #w-node-c5975713-c462-9685-d3a6-8b79dc731521-8d03f1cb, #w-node-c5975713-c462-9685-d3a6-8b79dc731522-8d03f1cb, #w-node-c5975713-c462-9685-d3a6-8b79dc731523-8d03f1cb, #w-node-c5975713-c462-9685-d3a6-8b79dc731524-8d03f1cb, #w-node-c5975713-c462-9685-d3a6-8b79dc731539-8d03f1cb, #w-node-c5975713-c462-9685-d3a6-8b79dc73153a-8d03f1cb, #w-node-c5975713-c462-9685-d3a6-8b79dc73153b-8d03f1cb, #w-node-c5975713-c462-9685-d3a6-8b79dc73153c-8d03f1cb, #w-node-c5975713-c462-9685-d3a6-8b79dc73153d-8d03f1cb, #w-node-c5975713-c462-9685-d3a6-8b79dc73153e-8d03f1cb {
  justify-self: start;
}

#w-node-c5975713-c462-9685-d3a6-8b79dc73156d-8d03f1cb {
  place-self: center start;
}

#w-node-c5975713-c462-9685-d3a6-8b79dc731581-8d03f1cb, #w-node-c5975713-c462-9685-d3a6-8b79dc731586-8d03f1cb, #w-node-c5975713-c462-9685-d3a6-8b79dc73158b-8d03f1cb {
  place-self: center;
}

#w-node-_7b4a3e32-fd11-19c1-7621-321e9c5dcb6b-0cf5a105 {
  align-self: end;
}

#w-node-_7b4a3e32-fd11-19c1-7621-321e9c5dcba2-0cf5a105, #w-node-_7b4a3e32-fd11-19c1-7621-321e9c5dcba3-0cf5a105, #w-node-_7b4a3e32-fd11-19c1-7621-321e9c5dcba4-0cf5a105, #w-node-_7b4a3e32-fd11-19c1-7621-321e9c5dcba5-0cf5a105, #w-node-_7b4a3e32-fd11-19c1-7621-321e9c5dcba6-0cf5a105, #w-node-_7b4a3e32-fd11-19c1-7621-321e9c5dcba7-0cf5a105, #w-node-_7b4a3e32-fd11-19c1-7621-321e9c5dcbbc-0cf5a105, #w-node-_7b4a3e32-fd11-19c1-7621-321e9c5dcbbd-0cf5a105, #w-node-_7b4a3e32-fd11-19c1-7621-321e9c5dcbbe-0cf5a105, #w-node-_7b4a3e32-fd11-19c1-7621-321e9c5dcbbf-0cf5a105, #w-node-_7b4a3e32-fd11-19c1-7621-321e9c5dcbc0-0cf5a105, #w-node-_7b4a3e32-fd11-19c1-7621-321e9c5dcbc1-0cf5a105 {
  justify-self: start;
}

#w-node-_7b4a3e32-fd11-19c1-7621-321e9c5dcbf0-0cf5a105 {
  place-self: center start;
}

#w-node-_7b4a3e32-fd11-19c1-7621-321e9c5dcc04-0cf5a105, #w-node-_7b4a3e32-fd11-19c1-7621-321e9c5dcc09-0cf5a105, #w-node-_7b4a3e32-fd11-19c1-7621-321e9c5dcc0e-0cf5a105 {
  place-self: center;
}

#w-node-f0a3f123-4426-1c99-2100-093390053d8f-4d7aac36 {
  align-self: end;
}

#w-node-_475a3f22-005b-069a-1c26-203d7a72f82a-4d7aac36, #w-node-_87ef193c-e9d1-c30d-1bc8-26353b514fea-4d7aac36, #w-node-_4d60344b-f781-dc69-8fcc-57300ccbd1a4-4d7aac36, #w-node-_1abf4ef5-a54d-0b2d-6244-5a0e4802bc14-4d7aac36, #w-node-_4fda62fb-9b83-6b29-946b-23c55ffe2df2-4d7aac36, #w-node-_8cea4f5d-4a90-b29f-2519-7c6edb04ff51-4d7aac36, #w-node-e603d35c-d261-e063-bc8c-9f12372b6622-4d7aac36, #w-node-e603d35c-d261-e063-bc8c-9f12372b6623-4d7aac36, #w-node-e603d35c-d261-e063-bc8c-9f12372b6624-4d7aac36, #w-node-e603d35c-d261-e063-bc8c-9f12372b6625-4d7aac36, #w-node-e603d35c-d261-e063-bc8c-9f12372b6626-4d7aac36, #w-node-e603d35c-d261-e063-bc8c-9f12372b6627-4d7aac36 {
  justify-self: start;
}

#w-node-c2efe6f5-eff9-d56f-526c-ae9c27f9baa4-4d7aac36 {
  place-self: center start;
}

#w-node-_3f3b61ea-141f-7388-e710-1dbee90483bc-4d7aac36, #w-node-_9f43ce64-ecbb-99d8-ef45-4da21eaf36b4-4d7aac36, #w-node-_04f5e68a-3556-2e2f-1e42-61da53f39946-4d7aac36 {
  place-self: center;
}

#w-node-_118dee88-5125-4b84-2e8e-2508b1d27ce1-abb1fda3 {
  place-self: start end;
}

#w-node-_118dee88-5125-4b84-2e8e-2508b1d27ce4-abb1fda3, #w-node-_118dee88-5125-4b84-2e8e-2508b1d27ce8-abb1fda3, #w-node-_118dee88-5125-4b84-2e8e-2508b1d27cec-abb1fda3 {
  justify-self: stretch;
}

#w-node-_118dee88-5125-4b84-2e8e-2508b1d27cff-abb1fda3 {
  align-self: end;
}

#w-node-_118dee88-5125-4b84-2e8e-2508b1d27dc0-abb1fda3 {
  align-self: stretch;
}

#w-node-_118dee88-5125-4b84-2e8e-2508b1d27dca-abb1fda3 {
  justify-self: stretch;
}

#w-node-_118dee88-5125-4b84-2e8e-2508b1d27dcb-abb1fda3, #w-node-_118dee88-5125-4b84-2e8e-2508b1d27dd6-abb1fda3, #w-node-_118dee88-5125-4b84-2e8e-2508b1d27de1-abb1fda3 {
  align-self: stretch;
}

#w-node-_4a3f4e35-74ce-8874-2d08-45c9790f2915-789143b8 {
  align-self: end;
}

#w-node-_4a3f4e35-74ce-8874-2d08-45c9790f294c-789143b8, #w-node-_4a3f4e35-74ce-8874-2d08-45c9790f294d-789143b8, #w-node-_4a3f4e35-74ce-8874-2d08-45c9790f294e-789143b8, #w-node-_4a3f4e35-74ce-8874-2d08-45c9790f294f-789143b8, #w-node-_4a3f4e35-74ce-8874-2d08-45c9790f2950-789143b8, #w-node-_4a3f4e35-74ce-8874-2d08-45c9790f2951-789143b8, #w-node-_4a3f4e35-74ce-8874-2d08-45c9790f2966-789143b8, #w-node-_4a3f4e35-74ce-8874-2d08-45c9790f2967-789143b8, #w-node-_4a3f4e35-74ce-8874-2d08-45c9790f2968-789143b8, #w-node-_4a3f4e35-74ce-8874-2d08-45c9790f2969-789143b8, #w-node-_4a3f4e35-74ce-8874-2d08-45c9790f296a-789143b8, #w-node-_4a3f4e35-74ce-8874-2d08-45c9790f296b-789143b8 {
  justify-self: start;
}

#w-node-_4a3f4e35-74ce-8874-2d08-45c9790f299a-789143b8 {
  place-self: center start;
}

#w-node-_4a3f4e35-74ce-8874-2d08-45c9790f29ae-789143b8, #w-node-_4a3f4e35-74ce-8874-2d08-45c9790f29b3-789143b8, #w-node-_4a3f4e35-74ce-8874-2d08-45c9790f29b8-789143b8 {
  place-self: center;
}

#w-node-f841cee8-71ad-d987-909b-0e1e8e35c8db-e0aa17fa {
  align-self: end;
}

#w-node-f841cee8-71ad-d987-909b-0e1e8e35c912-e0aa17fa, #w-node-f841cee8-71ad-d987-909b-0e1e8e35c913-e0aa17fa, #w-node-f841cee8-71ad-d987-909b-0e1e8e35c914-e0aa17fa, #w-node-f841cee8-71ad-d987-909b-0e1e8e35c915-e0aa17fa, #w-node-f841cee8-71ad-d987-909b-0e1e8e35c916-e0aa17fa, #w-node-f841cee8-71ad-d987-909b-0e1e8e35c917-e0aa17fa, #w-node-f841cee8-71ad-d987-909b-0e1e8e35c92c-e0aa17fa, #w-node-f841cee8-71ad-d987-909b-0e1e8e35c92d-e0aa17fa, #w-node-f841cee8-71ad-d987-909b-0e1e8e35c92e-e0aa17fa, #w-node-f841cee8-71ad-d987-909b-0e1e8e35c92f-e0aa17fa, #w-node-f841cee8-71ad-d987-909b-0e1e8e35c930-e0aa17fa, #w-node-f841cee8-71ad-d987-909b-0e1e8e35c931-e0aa17fa {
  justify-self: start;
}

#w-node-f841cee8-71ad-d987-909b-0e1e8e35c960-e0aa17fa {
  place-self: center start;
}

#w-node-f841cee8-71ad-d987-909b-0e1e8e35c974-e0aa17fa, #w-node-f841cee8-71ad-d987-909b-0e1e8e35c979-e0aa17fa, #w-node-f841cee8-71ad-d987-909b-0e1e8e35c97e-e0aa17fa {
  place-self: center;
}

#w-node-_755321c1-0fe1-4cc1-fbba-156eb383de9a-9d695ae7 {
  align-self: end;
}

#w-node-_755321c1-0fe1-4cc1-fbba-156eb383ded1-9d695ae7, #w-node-_755321c1-0fe1-4cc1-fbba-156eb383ded2-9d695ae7, #w-node-_755321c1-0fe1-4cc1-fbba-156eb383ded3-9d695ae7, #w-node-_755321c1-0fe1-4cc1-fbba-156eb383ded4-9d695ae7, #w-node-_755321c1-0fe1-4cc1-fbba-156eb383ded5-9d695ae7, #w-node-_755321c1-0fe1-4cc1-fbba-156eb383ded6-9d695ae7, #w-node-_755321c1-0fe1-4cc1-fbba-156eb383deeb-9d695ae7, #w-node-_755321c1-0fe1-4cc1-fbba-156eb383deec-9d695ae7, #w-node-_755321c1-0fe1-4cc1-fbba-156eb383deed-9d695ae7, #w-node-_755321c1-0fe1-4cc1-fbba-156eb383deee-9d695ae7, #w-node-_755321c1-0fe1-4cc1-fbba-156eb383deef-9d695ae7, #w-node-_755321c1-0fe1-4cc1-fbba-156eb383def0-9d695ae7 {
  justify-self: start;
}

#w-node-_755321c1-0fe1-4cc1-fbba-156eb383df1f-9d695ae7 {
  place-self: center start;
}

#w-node-_755321c1-0fe1-4cc1-fbba-156eb383df33-9d695ae7, #w-node-_755321c1-0fe1-4cc1-fbba-156eb383df38-9d695ae7, #w-node-_755321c1-0fe1-4cc1-fbba-156eb383df3d-9d695ae7 {
  place-self: center;
}

#w-node-da7dcdeb-a3ba-a432-873d-be65c203691f-f24ed3d3 {
  align-self: end;
}

#w-node-da7dcdeb-a3ba-a432-873d-be65c2036956-f24ed3d3, #w-node-da7dcdeb-a3ba-a432-873d-be65c2036957-f24ed3d3, #w-node-da7dcdeb-a3ba-a432-873d-be65c2036958-f24ed3d3, #w-node-da7dcdeb-a3ba-a432-873d-be65c2036959-f24ed3d3, #w-node-da7dcdeb-a3ba-a432-873d-be65c203695a-f24ed3d3, #w-node-da7dcdeb-a3ba-a432-873d-be65c203695b-f24ed3d3, #w-node-da7dcdeb-a3ba-a432-873d-be65c2036970-f24ed3d3, #w-node-da7dcdeb-a3ba-a432-873d-be65c2036971-f24ed3d3, #w-node-da7dcdeb-a3ba-a432-873d-be65c2036972-f24ed3d3, #w-node-da7dcdeb-a3ba-a432-873d-be65c2036973-f24ed3d3, #w-node-da7dcdeb-a3ba-a432-873d-be65c2036974-f24ed3d3, #w-node-da7dcdeb-a3ba-a432-873d-be65c2036975-f24ed3d3 {
  justify-self: start;
}

#w-node-da7dcdeb-a3ba-a432-873d-be65c20369a4-f24ed3d3 {
  place-self: center start;
}

#w-node-da7dcdeb-a3ba-a432-873d-be65c20369b8-f24ed3d3, #w-node-da7dcdeb-a3ba-a432-873d-be65c20369bd-f24ed3d3, #w-node-da7dcdeb-a3ba-a432-873d-be65c20369c2-f24ed3d3 {
  place-self: center;
}

#w-node-_6fd1b597-5ce1-71d7-2435-2e00e3b2370a-36f423f3 {
  align-self: end;
}

#w-node-_6fd1b597-5ce1-71d7-2435-2e00e3b23741-36f423f3, #w-node-_6fd1b597-5ce1-71d7-2435-2e00e3b23742-36f423f3, #w-node-_6fd1b597-5ce1-71d7-2435-2e00e3b23743-36f423f3, #w-node-_6fd1b597-5ce1-71d7-2435-2e00e3b23744-36f423f3, #w-node-_6fd1b597-5ce1-71d7-2435-2e00e3b23745-36f423f3, #w-node-_6fd1b597-5ce1-71d7-2435-2e00e3b23746-36f423f3, #w-node-_6fd1b597-5ce1-71d7-2435-2e00e3b2375b-36f423f3, #w-node-_6fd1b597-5ce1-71d7-2435-2e00e3b2375c-36f423f3, #w-node-_6fd1b597-5ce1-71d7-2435-2e00e3b2375d-36f423f3, #w-node-_6fd1b597-5ce1-71d7-2435-2e00e3b2375e-36f423f3, #w-node-_6fd1b597-5ce1-71d7-2435-2e00e3b2375f-36f423f3, #w-node-_6fd1b597-5ce1-71d7-2435-2e00e3b23760-36f423f3 {
  justify-self: start;
}

#w-node-_6fd1b597-5ce1-71d7-2435-2e00e3b2378f-36f423f3 {
  place-self: center start;
}

#w-node-_6fd1b597-5ce1-71d7-2435-2e00e3b237a3-36f423f3, #w-node-_6fd1b597-5ce1-71d7-2435-2e00e3b237a8-36f423f3, #w-node-_6fd1b597-5ce1-71d7-2435-2e00e3b237ad-36f423f3 {
  place-self: center;
}

#w-node-_6fd1b597-5ce1-71d7-2435-2e00e3b2370a-32aed2b4 {
  align-self: end;
}

#w-node-_6fd1b597-5ce1-71d7-2435-2e00e3b23741-32aed2b4, #w-node-_6fd1b597-5ce1-71d7-2435-2e00e3b23742-32aed2b4, #w-node-_6fd1b597-5ce1-71d7-2435-2e00e3b23743-32aed2b4, #w-node-_6fd1b597-5ce1-71d7-2435-2e00e3b23744-32aed2b4, #w-node-_6fd1b597-5ce1-71d7-2435-2e00e3b23745-32aed2b4, #w-node-_6fd1b597-5ce1-71d7-2435-2e00e3b23746-32aed2b4, #w-node-_6fd1b597-5ce1-71d7-2435-2e00e3b2375b-32aed2b4, #w-node-_6fd1b597-5ce1-71d7-2435-2e00e3b2375c-32aed2b4, #w-node-_6fd1b597-5ce1-71d7-2435-2e00e3b2375d-32aed2b4, #w-node-_6fd1b597-5ce1-71d7-2435-2e00e3b2375e-32aed2b4, #w-node-_6fd1b597-5ce1-71d7-2435-2e00e3b2375f-32aed2b4, #w-node-_6fd1b597-5ce1-71d7-2435-2e00e3b23760-32aed2b4 {
  justify-self: start;
}

#w-node-_6fd1b597-5ce1-71d7-2435-2e00e3b2378f-32aed2b4 {
  place-self: center start;
}

#w-node-_6fd1b597-5ce1-71d7-2435-2e00e3b237a3-32aed2b4, #w-node-_6fd1b597-5ce1-71d7-2435-2e00e3b237a8-32aed2b4, #w-node-_6fd1b597-5ce1-71d7-2435-2e00e3b237ad-32aed2b4 {
  place-self: center;
}

#w-node-d9e5058e-8e1b-c81e-4cb6-c44bfecf5385-fd695405, #w-node-_16838ba2-0692-ab0a-64e8-653e10f033cb-fd695405, #w-node-_9d89fb70-ea7d-6278-10fc-22cf79dcff91-fd695405, #w-node-ced39e3d-bf08-e750-ddd2-3af6c626424b-fd695405 {
  place-self: center stretch;
}

#w-node-a7a964ff-cbf8-8da2-3b45-71e839bc4235-fd695405, #w-node-fca4a576-e4f0-e756-4d34-6961b54173f9-fd695405 {
  justify-self: stretch;
}

#w-node-_20269476-2068-082d-d2ee-c682949a22f3-074d3f34 {
  justify-self: end;
}

#w-node-_20269476-2068-082d-d2ee-c682949a2397-074d3f34 {
  justify-self: start;
}

#w-node-_20269476-2068-082d-d2ee-c682949a2398-074d3f34, #w-node-_20269476-2068-082d-d2ee-c682949a2399-074d3f34, #w-node-_20269476-2068-082d-d2ee-c682949a239a-074d3f34, #w-node-_20269476-2068-082d-d2ee-c682949a239b-074d3f34 {
  place-self: center start;
}

#w-node-_20269476-2068-082d-d2ee-c682949a2467-074d3f34, #w-node-_20269476-2068-082d-d2ee-c682949a246a-074d3f34, #w-node-_20269476-2068-082d-d2ee-c682949a246d-074d3f34, #w-node-_20269476-2068-082d-d2ee-c682949a2470-074d3f34, #w-node-_20269476-2068-082d-d2ee-c682949a2473-074d3f34, #w-node-_20269476-2068-082d-d2ee-c682949a2476-074d3f34, #w-node-_20269476-2068-082d-d2ee-c682949a2479-074d3f34, #w-node-_20269476-2068-082d-d2ee-c682949a247c-074d3f34, #w-node-_20269476-2068-082d-d2ee-c682949a247f-074d3f34, #w-node-_20269476-2068-082d-d2ee-c682949a2482-074d3f34, #w-node-_20269476-2068-082d-d2ee-c682949a2485-074d3f34, #w-node-_20269476-2068-082d-d2ee-c682949a2488-074d3f34, #w-node-_20269476-2068-082d-d2ee-c682949a248b-074d3f34, #w-node-_20269476-2068-082d-d2ee-c682949a248e-074d3f34, #w-node-_20269476-2068-082d-d2ee-c682949a2491-074d3f34, #w-node-_20269476-2068-082d-d2ee-c682949a2494-074d3f34, #w-node-_20269476-2068-082d-d2ee-c682949a2497-074d3f34, #w-node-_20269476-2068-082d-d2ee-c682949a249a-074d3f34, #w-node-_20269476-2068-082d-d2ee-c682949a249d-074d3f34, #w-node-_20269476-2068-082d-d2ee-c682949a24a0-074d3f34, #w-node-_20269476-2068-082d-d2ee-c682949a24a3-074d3f34, #w-node-_20269476-2068-082d-d2ee-c682949a24a6-074d3f34, #w-node-_20269476-2068-082d-d2ee-c682949a24a9-074d3f34, #w-node-_20269476-2068-082d-d2ee-c682949a24ac-074d3f34, #w-node-_20269476-2068-082d-d2ee-c682949a24af-074d3f34, #w-node-_20269476-2068-082d-d2ee-c682949a24b2-074d3f34, #w-node-_20269476-2068-082d-d2ee-c682949a24b5-074d3f34, #w-node-_20269476-2068-082d-d2ee-c682949a24b8-074d3f34, #w-node-_20269476-2068-082d-d2ee-c682949a24bb-074d3f34, #w-node-_20269476-2068-082d-d2ee-c682949a24be-074d3f34, #w-node-_20269476-2068-082d-d2ee-c682949a24c1-074d3f34, #w-node-_20269476-2068-082d-d2ee-c682949a24c4-074d3f34, #w-node-_20269476-2068-082d-d2ee-c682949a24c7-074d3f34, #w-node-_20269476-2068-082d-d2ee-c682949a24ca-074d3f34, #w-node-_20269476-2068-082d-d2ee-c682949a24cd-074d3f34 {
  justify-self: stretch;
}

#w-node-_20269476-2068-082d-d2ee-c682949a24ff-074d3f34, #w-node-_20269476-2068-082d-d2ee-c682949a2506-074d3f34 {
  place-self: center;
}

#w-node-b06edbee-0de4-59ae-df22-d52a366af015-988b8689 {
  justify-self: end;
}

#w-node-_617269ad-90c8-505d-eb7a-f6d384120ead-988b8689, #w-node-_59161be5-2384-f563-cf70-a6576d3756a2-988b8689, #w-node-_1ca7a77b-66f1-b32c-fb40-268f0045c487-988b8689, #w-node-_6ad2d89f-c3f6-7430-c6c6-16831160b122-988b8689, #w-node-_46c1c97d-28d4-58f8-b8d8-9d12c27d60ae-988b8689, #w-node-_13280111-abe1-1cfc-f001-926674bcee72-988b8689, #w-node-_9cf3bd7e-338f-f3f1-6b28-ec241c74de9f-988b8689, #w-node-_67dc8649-5e0d-dbe3-ab1d-86dabfb367bf-988b8689, #w-node-_75c52d50-3080-f8cf-262f-83439782771a-988b8689, #w-node-_846adfad-aca4-8b50-363c-85edee773a1b-988b8689, #w-node-_58f87ca1-af48-8593-7896-4e5a76c97928-988b8689, #w-node-_5bb79a03-4199-bfe5-095a-393f71d6476a-988b8689, #w-node-_3eba29a1-a732-fe59-7086-ca1f3f51d6b8-988b8689, #w-node-_3188bf8c-b928-df50-275f-c537ef354b66-988b8689, #w-node-de70324c-518c-1bde-dfc2-d023bdd3a86e-988b8689, #w-node-dc5b1e13-02be-21de-1f21-9be885437569-988b8689, #w-node-_204b8a60-e4a8-b839-dd12-e1041d49041a-988b8689, #w-node-_11d6a242-4fdb-b267-59b0-35371c87dc49-988b8689, #w-node-e5e43e60-fd7a-5f67-6737-99d27828d68e-988b8689, #w-node-_36b2e4a5-fae3-efaf-aed3-28dd71fd130a-988b8689, #w-node-_0d939a47-f659-5ef1-62ce-19873ec72ba5-988b8689, #w-node-ece4ee88-5ef0-37d8-ec4c-812b785e80f0-988b8689, #w-node-_25f6cfb2-90ac-82c2-e88d-9c81c347082c-988b8689, #w-node-_5bc4ac7c-a46a-1f65-9625-5bbf0501e814-988b8689, #w-node-cf317560-63ca-ae67-a7ee-b376f734cee6-988b8689 {
  justify-self: stretch;
}

#w-node-b06edbee-0de4-59ae-df22-d52a366af015-358a310d {
  justify-self: end;
}

#w-node-_617269ad-90c8-505d-eb7a-f6d384120ead-358a310d, #w-node-_59161be5-2384-f563-cf70-a6576d3756a2-358a310d, #w-node-_1ca7a77b-66f1-b32c-fb40-268f0045c487-358a310d, #w-node-_6ad2d89f-c3f6-7430-c6c6-16831160b122-358a310d, #w-node-_46c1c97d-28d4-58f8-b8d8-9d12c27d60ae-358a310d, #w-node-_01e90ae1-f255-fb5b-067c-8950543b71a0-358a310d, #w-node-e6fec5fc-2c92-7778-e284-85e7860a202a-358a310d, #w-node-_13280111-abe1-1cfc-f001-926674bcee72-358a310d, #w-node-_9cf3bd7e-338f-f3f1-6b28-ec241c74de9f-358a310d, #w-node-_67dc8649-5e0d-dbe3-ab1d-86dabfb367bf-358a310d, #w-node-_75c52d50-3080-f8cf-262f-83439782771a-358a310d, #w-node-_846adfad-aca4-8b50-363c-85edee773a1b-358a310d, #w-node-d9bde27a-50f0-16cc-6d3b-e6a24d76938e-358a310d, #w-node-_252245f2-9861-48af-046a-052dd5dc2ac2-358a310d, #w-node-_58f87ca1-af48-8593-7896-4e5a76c97928-358a310d, #w-node-_5bb79a03-4199-bfe5-095a-393f71d6476a-358a310d, #w-node-_3eba29a1-a732-fe59-7086-ca1f3f51d6b8-358a310d, #w-node-_3188bf8c-b928-df50-275f-c537ef354b66-358a310d, #w-node-de70324c-518c-1bde-dfc2-d023bdd3a86e-358a310d, #w-node-_43a93a07-f00c-b185-700f-698a606d5c71-358a310d, #w-node-dc7006bc-79d9-c3f0-4b24-34cf99afff5e-358a310d, #w-node-dc5b1e13-02be-21de-1f21-9be885437569-358a310d, #w-node-_204b8a60-e4a8-b839-dd12-e1041d49041a-358a310d, #w-node-_11d6a242-4fdb-b267-59b0-35371c87dc49-358a310d, #w-node-e5e43e60-fd7a-5f67-6737-99d27828d68e-358a310d, #w-node-_36b2e4a5-fae3-efaf-aed3-28dd71fd130a-358a310d, #w-node-_9ae4cdd2-f91c-c483-e097-be4be9899bba-358a310d, #w-node-cc6d3400-46e8-7b70-b9fc-7204679ae63e-358a310d, #w-node-_0d939a47-f659-5ef1-62ce-19873ec72ba5-358a310d, #w-node-ece4ee88-5ef0-37d8-ec4c-812b785e80f0-358a310d, #w-node-_25f6cfb2-90ac-82c2-e88d-9c81c347082c-358a310d, #w-node-_5bc4ac7c-a46a-1f65-9625-5bbf0501e814-358a310d, #w-node-cf317560-63ca-ae67-a7ee-b376f734cee6-358a310d, #w-node-c838e17a-9da8-af1b-06b5-d221bbe89325-358a310d, #w-node-d1415153-50c1-6d3e-2212-b91652b69df0-358a310d {
  justify-self: stretch;
}

#w-node-_1177be47-3809-d182-edfe-8b151bacd513-1a45b9ca {
  align-self: end;
}

#w-node-_1177be47-3809-d182-edfe-8b151bacd54a-1a45b9ca, #w-node-_1177be47-3809-d182-edfe-8b151bacd54b-1a45b9ca, #w-node-_1177be47-3809-d182-edfe-8b151bacd54c-1a45b9ca, #w-node-_1177be47-3809-d182-edfe-8b151bacd54d-1a45b9ca, #w-node-_1177be47-3809-d182-edfe-8b151bacd54e-1a45b9ca, #w-node-_1177be47-3809-d182-edfe-8b151bacd54f-1a45b9ca, #w-node-_1177be47-3809-d182-edfe-8b151bacd564-1a45b9ca, #w-node-_1177be47-3809-d182-edfe-8b151bacd565-1a45b9ca, #w-node-_1177be47-3809-d182-edfe-8b151bacd566-1a45b9ca, #w-node-_1177be47-3809-d182-edfe-8b151bacd567-1a45b9ca, #w-node-_1177be47-3809-d182-edfe-8b151bacd568-1a45b9ca, #w-node-_1177be47-3809-d182-edfe-8b151bacd569-1a45b9ca {
  justify-self: start;
}

#w-node-_1177be47-3809-d182-edfe-8b151bacd598-1a45b9ca {
  place-self: center start;
}

#w-node-_1177be47-3809-d182-edfe-8b151bacd5ac-1a45b9ca, #w-node-_1177be47-3809-d182-edfe-8b151bacd5b1-1a45b9ca, #w-node-_1177be47-3809-d182-edfe-8b151bacd5b6-1a45b9ca {
  place-self: center;
}

#w-node-f0a3f123-4426-1c99-2100-093390053d8f-e207f403 {
  align-self: end;
}

#w-node-_475a3f22-005b-069a-1c26-203d7a72f82a-e207f403, #w-node-_87ef193c-e9d1-c30d-1bc8-26353b514fea-e207f403, #w-node-_4d60344b-f781-dc69-8fcc-57300ccbd1a4-e207f403, #w-node-_1abf4ef5-a54d-0b2d-6244-5a0e4802bc14-e207f403, #w-node-_4fda62fb-9b83-6b29-946b-23c55ffe2df2-e207f403, #w-node-_8cea4f5d-4a90-b29f-2519-7c6edb04ff51-e207f403 {
  justify-self: start;
}

#w-node-c2efe6f5-eff9-d56f-526c-ae9c27f9baa4-e207f403 {
  place-self: center start;
}

#w-node-_3f3b61ea-141f-7388-e710-1dbee90483bc-e207f403, #w-node-_9f43ce64-ecbb-99d8-ef45-4da21eaf36b4-e207f403, #w-node-_04f5e68a-3556-2e2f-1e42-61da53f39946-e207f403 {
  place-self: center;
}

#w-node-b06edbee-0de4-59ae-df22-d52a366af015-1b5d149e {
  justify-self: end;
}

#w-node-_81bc78b9-f4b1-f5df-4c15-934578d36e8d-1b5d149e, #w-node-e6f06454-15f6-dbc5-3781-47f7979e9f7d-1b5d149e, #w-node-_8e09f2b3-c483-0a66-3506-33e3f7292719-1b5d149e, #w-node-_16d5aa05-d4e7-2813-2b5b-668080e6e720-1b5d149e, #w-node-bd90d895-5a51-b48a-8acb-08ac124d28a0-1b5d149e, #w-node-_0ed489d2-76e6-b114-b6af-e08c78dfe6d6-1b5d149e, #w-node-_854e481e-0a37-1dc2-0b4c-80891548ebf8-1b5d149e, #w-node-b4efcece-3e6c-bce7-58e4-4cc52bccf730-1b5d149e {
  place-self: center stretch;
}

#w-node-_617269ad-90c8-505d-eb7a-f6d384120ead-1b5d149e, #w-node-_59161be5-2384-f563-cf70-a6576d3756a2-1b5d149e, #w-node-_1ca7a77b-66f1-b32c-fb40-268f0045c487-1b5d149e, #w-node-_6ad2d89f-c3f6-7430-c6c6-16831160b122-1b5d149e, #w-node-_46c1c97d-28d4-58f8-b8d8-9d12c27d60ae-1b5d149e, #w-node-_01e90ae1-f255-fb5b-067c-8950543b71a0-1b5d149e, #w-node-e6fec5fc-2c92-7778-e284-85e7860a202a-1b5d149e, #w-node-_13280111-abe1-1cfc-f001-926674bcee72-1b5d149e, #w-node-_9cf3bd7e-338f-f3f1-6b28-ec241c74de9f-1b5d149e, #w-node-_67dc8649-5e0d-dbe3-ab1d-86dabfb367bf-1b5d149e, #w-node-_75c52d50-3080-f8cf-262f-83439782771a-1b5d149e, #w-node-_846adfad-aca4-8b50-363c-85edee773a1b-1b5d149e, #w-node-d9bde27a-50f0-16cc-6d3b-e6a24d76938e-1b5d149e, #w-node-_252245f2-9861-48af-046a-052dd5dc2ac2-1b5d149e, #w-node-_58f87ca1-af48-8593-7896-4e5a76c97928-1b5d149e, #w-node-_5bb79a03-4199-bfe5-095a-393f71d6476a-1b5d149e, #w-node-_3eba29a1-a732-fe59-7086-ca1f3f51d6b8-1b5d149e, #w-node-_3188bf8c-b928-df50-275f-c537ef354b66-1b5d149e, #w-node-de70324c-518c-1bde-dfc2-d023bdd3a86e-1b5d149e, #w-node-_43a93a07-f00c-b185-700f-698a606d5c71-1b5d149e, #w-node-dc7006bc-79d9-c3f0-4b24-34cf99afff5e-1b5d149e, #w-node-dc5b1e13-02be-21de-1f21-9be885437569-1b5d149e, #w-node-_204b8a60-e4a8-b839-dd12-e1041d49041a-1b5d149e, #w-node-_11d6a242-4fdb-b267-59b0-35371c87dc49-1b5d149e, #w-node-e5e43e60-fd7a-5f67-6737-99d27828d68e-1b5d149e, #w-node-_36b2e4a5-fae3-efaf-aed3-28dd71fd130a-1b5d149e, #w-node-_9ae4cdd2-f91c-c483-e097-be4be9899bba-1b5d149e, #w-node-cc6d3400-46e8-7b70-b9fc-7204679ae63e-1b5d149e, #w-node-_0d939a47-f659-5ef1-62ce-19873ec72ba5-1b5d149e, #w-node-ece4ee88-5ef0-37d8-ec4c-812b785e80f0-1b5d149e, #w-node-_25f6cfb2-90ac-82c2-e88d-9c81c347082c-1b5d149e, #w-node-_5bc4ac7c-a46a-1f65-9625-5bbf0501e814-1b5d149e, #w-node-cf317560-63ca-ae67-a7ee-b376f734cee6-1b5d149e, #w-node-c838e17a-9da8-af1b-06b5-d221bbe89325-1b5d149e, #w-node-d1415153-50c1-6d3e-2212-b91652b69df0-1b5d149e {
  justify-self: stretch;
}

#w-node-_70bf9870-9dcf-23c4-4736-7c519e3817db-1b5d149e, #w-node-_70bf9870-9dcf-23c4-4736-7c519e3817dc-1b5d149e, #w-node-_70bf9870-9dcf-23c4-4736-7c519e3817dd-1b5d149e, #w-node-_70bf9870-9dcf-23c4-4736-7c519e3817de-1b5d149e, #w-node-_70bf9870-9dcf-23c4-4736-7c519e3817df-1b5d149e, #w-node-_70bf9870-9dcf-23c4-4736-7c519e3817e0-1b5d149e, #w-node-_70bf9870-9dcf-23c4-4736-7c519e3817f5-1b5d149e, #w-node-_70bf9870-9dcf-23c4-4736-7c519e3817f6-1b5d149e, #w-node-_70bf9870-9dcf-23c4-4736-7c519e3817f7-1b5d149e, #w-node-_70bf9870-9dcf-23c4-4736-7c519e3817f8-1b5d149e, #w-node-_70bf9870-9dcf-23c4-4736-7c519e3817f9-1b5d149e, #w-node-_70bf9870-9dcf-23c4-4736-7c519e3817fa-1b5d149e {
  justify-self: start;
}

#w-node-a115e79f-fd27-e037-05ba-eb973fd183a9-1b5d149e, #w-node-_72110492-5aba-e808-1fd1-833c30822c81-1b5d149e {
  place-self: center;
}

#w-node-b06edbee-0de4-59ae-df22-d52a366af015-146b4129 {
  justify-self: end;
}

#w-node-_4c1e5b34-35f6-54f0-4466-be256d3796b8-146b4129, #w-node-_4c1e5b34-35f6-54f0-4466-be256d3796b9-146b4129, #w-node-_4c1e5b34-35f6-54f0-4466-be256d3796ba-146b4129, #w-node-_4c1e5b34-35f6-54f0-4466-be256d3796bb-146b4129, #w-node-_4c1e5b34-35f6-54f0-4466-be256d3796bc-146b4129, #w-node-_4c1e5b34-35f6-54f0-4466-be256d3796bd-146b4129, #w-node-_4c1e5b34-35f6-54f0-4466-be256d3796ce-146b4129, #w-node-_4c1e5b34-35f6-54f0-4466-be256d3796cf-146b4129, #w-node-_4c1e5b34-35f6-54f0-4466-be256d3796d0-146b4129, #w-node-_4c1e5b34-35f6-54f0-4466-be256d3796d1-146b4129, #w-node-_4c1e5b34-35f6-54f0-4466-be256d3796d2-146b4129, #w-node-_4c1e5b34-35f6-54f0-4466-be256d3796d3-146b4129 {
  justify-self: start;
}

#w-node-a6eed140-c605-9bbc-1eb7-785097050b9a-146b4129, #w-node-a6eed140-c605-9bbc-1eb7-785097050ba1-146b4129 {
  place-self: center;
}

#w-node-b06edbee-0de4-59ae-df22-d52a366af015-84596bf9 {
  justify-self: end;
}

#w-node-_9eb29da9-569b-73b7-26f2-d73544c5fd4a-84596bf9, #w-node-_9eb29da9-569b-73b7-26f2-d73544c5fd4e-84596bf9, #w-node-_9eb29da9-569b-73b7-26f2-d73544c5fd52-84596bf9, #w-node-_9eb29da9-569b-73b7-26f2-d73544c5fd56-84596bf9, #w-node-_9eb29da9-569b-73b7-26f2-d73544c5fd5a-84596bf9, #w-node-_9eb29da9-569b-73b7-26f2-d73544c5fd5e-84596bf9, #w-node-_9eb29da9-569b-73b7-26f2-d73544c5fd62-84596bf9, #w-node-_9eb29da9-569b-73b7-26f2-d73544c5fd66-84596bf9 {
  place-self: center stretch;
}

#w-node-_99890205-6ec8-bf04-96f8-9f597f06f4cd-84596bf9, #w-node-_99890205-6ec8-bf04-96f8-9f597f06f4d0-84596bf9, #w-node-_99890205-6ec8-bf04-96f8-9f597f06f4d3-84596bf9, #w-node-_99890205-6ec8-bf04-96f8-9f597f06f4d6-84596bf9, #w-node-_99890205-6ec8-bf04-96f8-9f597f06f4d9-84596bf9, #w-node-_99890205-6ec8-bf04-96f8-9f597f06f4dc-84596bf9, #w-node-_99890205-6ec8-bf04-96f8-9f597f06f4df-84596bf9, #w-node-_99890205-6ec8-bf04-96f8-9f597f06f4e2-84596bf9, #w-node-_99890205-6ec8-bf04-96f8-9f597f06f4e5-84596bf9, #w-node-_99890205-6ec8-bf04-96f8-9f597f06f4e8-84596bf9, #w-node-_99890205-6ec8-bf04-96f8-9f597f06f4eb-84596bf9, #w-node-_99890205-6ec8-bf04-96f8-9f597f06f4ee-84596bf9, #w-node-_99890205-6ec8-bf04-96f8-9f597f06f4f1-84596bf9, #w-node-_99890205-6ec8-bf04-96f8-9f597f06f4f4-84596bf9, #w-node-_99890205-6ec8-bf04-96f8-9f597f06f4f7-84596bf9, #w-node-_99890205-6ec8-bf04-96f8-9f597f06f4fa-84596bf9, #w-node-_99890205-6ec8-bf04-96f8-9f597f06f4fd-84596bf9, #w-node-_99890205-6ec8-bf04-96f8-9f597f06f500-84596bf9, #w-node-_99890205-6ec8-bf04-96f8-9f597f06f503-84596bf9, #w-node-_99890205-6ec8-bf04-96f8-9f597f06f506-84596bf9, #w-node-_99890205-6ec8-bf04-96f8-9f597f06f509-84596bf9, #w-node-_99890205-6ec8-bf04-96f8-9f597f06f50c-84596bf9, #w-node-_99890205-6ec8-bf04-96f8-9f597f06f50f-84596bf9, #w-node-_99890205-6ec8-bf04-96f8-9f597f06f512-84596bf9, #w-node-_99890205-6ec8-bf04-96f8-9f597f06f515-84596bf9, #w-node-_99890205-6ec8-bf04-96f8-9f597f06f518-84596bf9, #w-node-_99890205-6ec8-bf04-96f8-9f597f06f51b-84596bf9, #w-node-_99890205-6ec8-bf04-96f8-9f597f06f51e-84596bf9, #w-node-_99890205-6ec8-bf04-96f8-9f597f06f521-84596bf9, #w-node-_99890205-6ec8-bf04-96f8-9f597f06f524-84596bf9, #w-node-_99890205-6ec8-bf04-96f8-9f597f06f527-84596bf9, #w-node-_99890205-6ec8-bf04-96f8-9f597f06f52a-84596bf9, #w-node-_99890205-6ec8-bf04-96f8-9f597f06f52d-84596bf9, #w-node-_99890205-6ec8-bf04-96f8-9f597f06f530-84596bf9, #w-node-_99890205-6ec8-bf04-96f8-9f597f06f533-84596bf9 {
  justify-self: stretch;
}

#w-node-_1c731515-a50d-d0aa-0f91-ced025acd17b-84596bf9, #w-node-_1c731515-a50d-d0aa-0f91-ced025acd17c-84596bf9, #w-node-_1c731515-a50d-d0aa-0f91-ced025acd17d-84596bf9, #w-node-_1c731515-a50d-d0aa-0f91-ced025acd17e-84596bf9, #w-node-_1c731515-a50d-d0aa-0f91-ced025acd17f-84596bf9, #w-node-_1c731515-a50d-d0aa-0f91-ced025acd180-84596bf9, #w-node-_1c731515-a50d-d0aa-0f91-ced025acd191-84596bf9, #w-node-_1c731515-a50d-d0aa-0f91-ced025acd192-84596bf9, #w-node-_1c731515-a50d-d0aa-0f91-ced025acd193-84596bf9, #w-node-_1c731515-a50d-d0aa-0f91-ced025acd194-84596bf9, #w-node-_1c731515-a50d-d0aa-0f91-ced025acd195-84596bf9, #w-node-_1c731515-a50d-d0aa-0f91-ced025acd196-84596bf9 {
  justify-self: start;
}

#w-node-_105e8095-6f2b-50f1-b45b-26902c9bb62b-84596bf9, #w-node-_105e8095-6f2b-50f1-b45b-26902c9bb62e-84596bf9, #w-node-_105e8095-6f2b-50f1-b45b-26902c9bb631-84596bf9, #w-node-_105e8095-6f2b-50f1-b45b-26902c9bb634-84596bf9, #w-node-_105e8095-6f2b-50f1-b45b-26902c9bb637-84596bf9, #w-node-_105e8095-6f2b-50f1-b45b-26902c9bb63a-84596bf9, #w-node-_105e8095-6f2b-50f1-b45b-26902c9bb63d-84596bf9, #w-node-_105e8095-6f2b-50f1-b45b-26902c9bb640-84596bf9, #w-node-_105e8095-6f2b-50f1-b45b-26902c9bb643-84596bf9, #w-node-_105e8095-6f2b-50f1-b45b-26902c9bb646-84596bf9, #w-node-_105e8095-6f2b-50f1-b45b-26902c9bb649-84596bf9, #w-node-_105e8095-6f2b-50f1-b45b-26902c9bb64c-84596bf9, #w-node-_105e8095-6f2b-50f1-b45b-26902c9bb64f-84596bf9, #w-node-_105e8095-6f2b-50f1-b45b-26902c9bb652-84596bf9, #w-node-_105e8095-6f2b-50f1-b45b-26902c9bb655-84596bf9, #w-node-_105e8095-6f2b-50f1-b45b-26902c9bb658-84596bf9, #w-node-_105e8095-6f2b-50f1-b45b-26902c9bb65b-84596bf9, #w-node-_105e8095-6f2b-50f1-b45b-26902c9bb65e-84596bf9, #w-node-_105e8095-6f2b-50f1-b45b-26902c9bb661-84596bf9, #w-node-_105e8095-6f2b-50f1-b45b-26902c9bb664-84596bf9, #w-node-_105e8095-6f2b-50f1-b45b-26902c9bb667-84596bf9, #w-node-_105e8095-6f2b-50f1-b45b-26902c9bb66a-84596bf9, #w-node-_105e8095-6f2b-50f1-b45b-26902c9bb66d-84596bf9, #w-node-_105e8095-6f2b-50f1-b45b-26902c9bb670-84596bf9, #w-node-_105e8095-6f2b-50f1-b45b-26902c9bb673-84596bf9, #w-node-_105e8095-6f2b-50f1-b45b-26902c9bb676-84596bf9, #w-node-_105e8095-6f2b-50f1-b45b-26902c9bb679-84596bf9, #w-node-_105e8095-6f2b-50f1-b45b-26902c9bb67c-84596bf9, #w-node-_105e8095-6f2b-50f1-b45b-26902c9bb67f-84596bf9, #w-node-_105e8095-6f2b-50f1-b45b-26902c9bb682-84596bf9, #w-node-_105e8095-6f2b-50f1-b45b-26902c9bb685-84596bf9, #w-node-_105e8095-6f2b-50f1-b45b-26902c9bb688-84596bf9, #w-node-_105e8095-6f2b-50f1-b45b-26902c9bb68b-84596bf9, #w-node-_105e8095-6f2b-50f1-b45b-26902c9bb68e-84596bf9, #w-node-_105e8095-6f2b-50f1-b45b-26902c9bb691-84596bf9, #w-node-_617269ad-90c8-505d-eb7a-f6d384120ead-84596bf9, #w-node-_59161be5-2384-f563-cf70-a6576d3756a2-84596bf9, #w-node-_1ca7a77b-66f1-b32c-fb40-268f0045c487-84596bf9, #w-node-_6ad2d89f-c3f6-7430-c6c6-16831160b122-84596bf9, #w-node-_46c1c97d-28d4-58f8-b8d8-9d12c27d60ae-84596bf9, #w-node-_01e90ae1-f255-fb5b-067c-8950543b71a0-84596bf9, #w-node-e6fec5fc-2c92-7778-e284-85e7860a202a-84596bf9, #w-node-_13280111-abe1-1cfc-f001-926674bcee72-84596bf9, #w-node-_9cf3bd7e-338f-f3f1-6b28-ec241c74de9f-84596bf9, #w-node-_67dc8649-5e0d-dbe3-ab1d-86dabfb367bf-84596bf9, #w-node-_75c52d50-3080-f8cf-262f-83439782771a-84596bf9, #w-node-_846adfad-aca4-8b50-363c-85edee773a1b-84596bf9, #w-node-d9bde27a-50f0-16cc-6d3b-e6a24d76938e-84596bf9, #w-node-_252245f2-9861-48af-046a-052dd5dc2ac2-84596bf9, #w-node-_58f87ca1-af48-8593-7896-4e5a76c97928-84596bf9, #w-node-_5bb79a03-4199-bfe5-095a-393f71d6476a-84596bf9, #w-node-_3eba29a1-a732-fe59-7086-ca1f3f51d6b8-84596bf9, #w-node-_3188bf8c-b928-df50-275f-c537ef354b66-84596bf9, #w-node-de70324c-518c-1bde-dfc2-d023bdd3a86e-84596bf9, #w-node-_43a93a07-f00c-b185-700f-698a606d5c71-84596bf9, #w-node-dc7006bc-79d9-c3f0-4b24-34cf99afff5e-84596bf9, #w-node-dc5b1e13-02be-21de-1f21-9be885437569-84596bf9, #w-node-_204b8a60-e4a8-b839-dd12-e1041d49041a-84596bf9, #w-node-_11d6a242-4fdb-b267-59b0-35371c87dc49-84596bf9, #w-node-e5e43e60-fd7a-5f67-6737-99d27828d68e-84596bf9, #w-node-_36b2e4a5-fae3-efaf-aed3-28dd71fd130a-84596bf9, #w-node-_9ae4cdd2-f91c-c483-e097-be4be9899bba-84596bf9, #w-node-cc6d3400-46e8-7b70-b9fc-7204679ae63e-84596bf9, #w-node-_0d939a47-f659-5ef1-62ce-19873ec72ba5-84596bf9, #w-node-ece4ee88-5ef0-37d8-ec4c-812b785e80f0-84596bf9, #w-node-_25f6cfb2-90ac-82c2-e88d-9c81c347082c-84596bf9, #w-node-_5bc4ac7c-a46a-1f65-9625-5bbf0501e814-84596bf9, #w-node-cf317560-63ca-ae67-a7ee-b376f734cee6-84596bf9, #w-node-c838e17a-9da8-af1b-06b5-d221bbe89325-84596bf9, #w-node-d1415153-50c1-6d3e-2212-b91652b69df0-84596bf9 {
  justify-self: stretch;
}

#w-node-e221aafd-ac10-8dae-ea32-1173b3fd080c-84596bf9, #w-node-e221aafd-ac10-8dae-ea32-1173b3fd0813-84596bf9, #w-node-_33b4aa4f-4a15-0c9d-b9ab-4569cba6b22d-84596bf9 {
  place-self: center;
}

#w-node-_1177be47-3809-d182-edfe-8b151bacd513-7d73c5b5 {
  align-self: end;
}

#w-node-_1177be47-3809-d182-edfe-8b151bacd54a-7d73c5b5, #w-node-_1177be47-3809-d182-edfe-8b151bacd54b-7d73c5b5, #w-node-_1177be47-3809-d182-edfe-8b151bacd54c-7d73c5b5, #w-node-_1177be47-3809-d182-edfe-8b151bacd54d-7d73c5b5, #w-node-_1177be47-3809-d182-edfe-8b151bacd54e-7d73c5b5, #w-node-_1177be47-3809-d182-edfe-8b151bacd54f-7d73c5b5, #w-node-_1177be47-3809-d182-edfe-8b151bacd564-7d73c5b5, #w-node-_1177be47-3809-d182-edfe-8b151bacd565-7d73c5b5, #w-node-_1177be47-3809-d182-edfe-8b151bacd566-7d73c5b5, #w-node-_1177be47-3809-d182-edfe-8b151bacd567-7d73c5b5, #w-node-_1177be47-3809-d182-edfe-8b151bacd568-7d73c5b5, #w-node-_1177be47-3809-d182-edfe-8b151bacd569-7d73c5b5 {
  justify-self: start;
}

#w-node-_1177be47-3809-d182-edfe-8b151bacd598-7d73c5b5 {
  place-self: center start;
}

#w-node-_1177be47-3809-d182-edfe-8b151bacd5ac-7d73c5b5, #w-node-_1177be47-3809-d182-edfe-8b151bacd5b1-7d73c5b5, #w-node-_1177be47-3809-d182-edfe-8b151bacd5b6-7d73c5b5 {
  place-self: center;
}

#w-node-b06edbee-0de4-59ae-df22-d52a366af015-4341e8ba {
  justify-self: end;
}

#w-node-_617269ad-90c8-505d-eb7a-f6d384120ead-4341e8ba, #w-node-_59161be5-2384-f563-cf70-a6576d3756a2-4341e8ba, #w-node-_1ca7a77b-66f1-b32c-fb40-268f0045c487-4341e8ba, #w-node-_6ad2d89f-c3f6-7430-c6c6-16831160b122-4341e8ba, #w-node-_13280111-abe1-1cfc-f001-926674bcee72-4341e8ba, #w-node-_9cf3bd7e-338f-f3f1-6b28-ec241c74de9f-4341e8ba, #w-node-_67dc8649-5e0d-dbe3-ab1d-86dabfb367bf-4341e8ba, #w-node-_75c52d50-3080-f8cf-262f-83439782771a-4341e8ba, #w-node-_846adfad-aca4-8b50-363c-85edee773a1b-4341e8ba, #w-node-d9bde27a-50f0-16cc-6d3b-e6a24d76938e-4341e8ba, #w-node-_252245f2-9861-48af-046a-052dd5dc2ac2-4341e8ba, #w-node-_58f87ca1-af48-8593-7896-4e5a76c97928-4341e8ba, #w-node-_5bb79a03-4199-bfe5-095a-393f71d6476a-4341e8ba, #w-node-_3eba29a1-a732-fe59-7086-ca1f3f51d6b8-4341e8ba, #w-node-_96aaf79f-cd46-3d91-12fc-521819a33266-4341e8ba, #w-node-b232995e-2d44-13bc-a801-27acf0c0af67-4341e8ba {
  justify-self: stretch;
}

#w-node-_2504e0dd-2999-d483-fa4b-6d4aafa91efa-4341e8ba, #w-node-_533cbc61-9514-8b60-635d-d8f6bd254380-4341e8ba {
  align-self: auto;
}

#w-node-a115e79f-fd27-e037-05ba-eb973fd183a9-4341e8ba, #w-node-_72110492-5aba-e808-1fd1-833c30822c81-4341e8ba {
  place-self: center;
}

#w-node-b06edbee-0de4-59ae-df22-d52a366af015-07023bcd {
  justify-self: end;
}

#w-node-_4c824161-025d-1987-7ff5-c144601bf1e4-07023bcd, #w-node-c59be720-dcaa-6dde-7737-2a14c36e4d61-07023bcd, #w-node-a864c964-5243-cbc4-6881-7622c999e0ec-07023bcd {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_70bf9870-9dcf-23c4-4736-7c519e3817db-07023bcd, #w-node-_70bf9870-9dcf-23c4-4736-7c519e3817dc-07023bcd, #w-node-_70bf9870-9dcf-23c4-4736-7c519e3817dd-07023bcd, #w-node-_70bf9870-9dcf-23c4-4736-7c519e3817de-07023bcd, #w-node-_70bf9870-9dcf-23c4-4736-7c519e3817df-07023bcd, #w-node-_70bf9870-9dcf-23c4-4736-7c519e3817e0-07023bcd, #w-node-_70bf9870-9dcf-23c4-4736-7c519e3817f5-07023bcd, #w-node-_70bf9870-9dcf-23c4-4736-7c519e3817f6-07023bcd, #w-node-_70bf9870-9dcf-23c4-4736-7c519e3817f7-07023bcd, #w-node-_70bf9870-9dcf-23c4-4736-7c519e3817f8-07023bcd, #w-node-_70bf9870-9dcf-23c4-4736-7c519e3817f9-07023bcd, #w-node-_70bf9870-9dcf-23c4-4736-7c519e3817fa-07023bcd {
  justify-self: start;
}

#w-node-a115e79f-fd27-e037-05ba-eb973fd183a9-07023bcd, #w-node-_72110492-5aba-e808-1fd1-833c30822c81-07023bcd, #w-node-_7c9c4dc0-f4af-2ad6-a87f-fbafbd2f7a77-07023bcd {
  place-self: center;
}

#w-node-b06edbee-0de4-59ae-df22-d52a366af015-c88e6bdc {
  justify-self: end;
}

#w-node-_3e3a2931-bd8b-9c55-cb0a-260691ddadfb-c88e6bdc {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_65fb96b7-013e-5bac-c238-a59e2528ca23-c88e6bdc, #w-node-_65fb96b7-013e-5bac-c238-a59e2528ca26-c88e6bdc {
  justify-self: stretch;
}

#w-node-_65fb96b7-013e-5bac-c238-a59e2528ca29-c88e6bdc {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: stretch;
}

#w-node-_65fb96b7-013e-5bac-c238-a59e2528ca32-c88e6bdc, #w-node-_65fb96b7-013e-5bac-c238-a59e2528ca35-c88e6bdc, #w-node-_65fb96b7-013e-5bac-c238-a59e2528ca38-c88e6bdc, #w-node-_65fb96b7-013e-5bac-c238-a59e2528ca3b-c88e6bdc, #w-node-_65fb96b7-013e-5bac-c238-a59e2528ca3e-c88e6bdc, #w-node-_65fb96b7-013e-5bac-c238-a59e2528ca41-c88e6bdc, #w-node-_65fb96b7-013e-5bac-c238-a59e2528ca44-c88e6bdc, #w-node-_65fb96b7-013e-5bac-c238-a59e2528ca47-c88e6bdc, #w-node-_65fb96b7-013e-5bac-c238-a59e2528ca4a-c88e6bdc, #w-node-_65fb96b7-013e-5bac-c238-a59e2528ca4d-c88e6bdc, #w-node-_65fb96b7-013e-5bac-c238-a59e2528ca50-c88e6bdc, #w-node-_65fb96b7-013e-5bac-c238-a59e2528ca53-c88e6bdc, #w-node-_617269ad-90c8-505d-eb7a-f6d384120ead-c88e6bdc, #w-node-_59161be5-2384-f563-cf70-a6576d3756a2-c88e6bdc, #w-node-_1ca7a77b-66f1-b32c-fb40-268f0045c487-c88e6bdc, #w-node-_6ad2d89f-c3f6-7430-c6c6-16831160b122-c88e6bdc, #w-node-_46c1c97d-28d4-58f8-b8d8-9d12c27d60ae-c88e6bdc, #w-node-_01e90ae1-f255-fb5b-067c-8950543b71a0-c88e6bdc, #w-node-e6fec5fc-2c92-7778-e284-85e7860a202a-c88e6bdc, #w-node-_13280111-abe1-1cfc-f001-926674bcee72-c88e6bdc, #w-node-_9cf3bd7e-338f-f3f1-6b28-ec241c74de9f-c88e6bdc, #w-node-_67dc8649-5e0d-dbe3-ab1d-86dabfb367bf-c88e6bdc, #w-node-_75c52d50-3080-f8cf-262f-83439782771a-c88e6bdc, #w-node-_846adfad-aca4-8b50-363c-85edee773a1b-c88e6bdc, #w-node-d9bde27a-50f0-16cc-6d3b-e6a24d76938e-c88e6bdc, #w-node-_252245f2-9861-48af-046a-052dd5dc2ac2-c88e6bdc, #w-node-_58f87ca1-af48-8593-7896-4e5a76c97928-c88e6bdc, #w-node-_5bb79a03-4199-bfe5-095a-393f71d6476a-c88e6bdc, #w-node-_3eba29a1-a732-fe59-7086-ca1f3f51d6b8-c88e6bdc, #w-node-_3188bf8c-b928-df50-275f-c537ef354b66-c88e6bdc, #w-node-de70324c-518c-1bde-dfc2-d023bdd3a86e-c88e6bdc, #w-node-_43a93a07-f00c-b185-700f-698a606d5c71-c88e6bdc, #w-node-dc7006bc-79d9-c3f0-4b24-34cf99afff5e-c88e6bdc, #w-node-dc5b1e13-02be-21de-1f21-9be885437569-c88e6bdc, #w-node-_204b8a60-e4a8-b839-dd12-e1041d49041a-c88e6bdc, #w-node-_11d6a242-4fdb-b267-59b0-35371c87dc49-c88e6bdc, #w-node-e5e43e60-fd7a-5f67-6737-99d27828d68e-c88e6bdc, #w-node-_36b2e4a5-fae3-efaf-aed3-28dd71fd130a-c88e6bdc, #w-node-_9ae4cdd2-f91c-c483-e097-be4be9899bba-c88e6bdc, #w-node-cc6d3400-46e8-7b70-b9fc-7204679ae63e-c88e6bdc, #w-node-_0d939a47-f659-5ef1-62ce-19873ec72ba5-c88e6bdc, #w-node-ece4ee88-5ef0-37d8-ec4c-812b785e80f0-c88e6bdc, #w-node-_25f6cfb2-90ac-82c2-e88d-9c81c347082c-c88e6bdc, #w-node-_5bc4ac7c-a46a-1f65-9625-5bbf0501e814-c88e6bdc, #w-node-cf317560-63ca-ae67-a7ee-b376f734cee6-c88e6bdc, #w-node-c838e17a-9da8-af1b-06b5-d221bbe89325-c88e6bdc, #w-node-d1415153-50c1-6d3e-2212-b91652b69df0-c88e6bdc {
  justify-self: stretch;
}

#w-node-_70bf9870-9dcf-23c4-4736-7c519e3817db-c88e6bdc, #w-node-_70bf9870-9dcf-23c4-4736-7c519e3817dc-c88e6bdc, #w-node-_70bf9870-9dcf-23c4-4736-7c519e3817dd-c88e6bdc, #w-node-_70bf9870-9dcf-23c4-4736-7c519e3817de-c88e6bdc, #w-node-_70bf9870-9dcf-23c4-4736-7c519e3817df-c88e6bdc, #w-node-_70bf9870-9dcf-23c4-4736-7c519e3817e0-c88e6bdc, #w-node-_70bf9870-9dcf-23c4-4736-7c519e3817f5-c88e6bdc, #w-node-_70bf9870-9dcf-23c4-4736-7c519e3817f6-c88e6bdc, #w-node-_70bf9870-9dcf-23c4-4736-7c519e3817f7-c88e6bdc, #w-node-_70bf9870-9dcf-23c4-4736-7c519e3817f8-c88e6bdc, #w-node-_70bf9870-9dcf-23c4-4736-7c519e3817f9-c88e6bdc, #w-node-_70bf9870-9dcf-23c4-4736-7c519e3817fa-c88e6bdc {
  justify-self: start;
}

#w-node-a115e79f-fd27-e037-05ba-eb973fd183a9-c88e6bdc, #w-node-_72110492-5aba-e808-1fd1-833c30822c81-c88e6bdc {
  place-self: center;
}

#w-node-b06edbee-0de4-59ae-df22-d52a366af015-8ca72e46 {
  justify-self: end;
}

#w-node-_617269ad-90c8-505d-eb7a-f6d384120ead-8ca72e46, #w-node-_59161be5-2384-f563-cf70-a6576d3756a2-8ca72e46, #w-node-_1ca7a77b-66f1-b32c-fb40-268f0045c487-8ca72e46, #w-node-_6ad2d89f-c3f6-7430-c6c6-16831160b122-8ca72e46, #w-node-_46c1c97d-28d4-58f8-b8d8-9d12c27d60ae-8ca72e46, #w-node-_01e90ae1-f255-fb5b-067c-8950543b71a0-8ca72e46, #w-node-e6fec5fc-2c92-7778-e284-85e7860a202a-8ca72e46, #w-node-_13280111-abe1-1cfc-f001-926674bcee72-8ca72e46, #w-node-_9cf3bd7e-338f-f3f1-6b28-ec241c74de9f-8ca72e46, #w-node-_67dc8649-5e0d-dbe3-ab1d-86dabfb367bf-8ca72e46, #w-node-_75c52d50-3080-f8cf-262f-83439782771a-8ca72e46, #w-node-_846adfad-aca4-8b50-363c-85edee773a1b-8ca72e46, #w-node-d9bde27a-50f0-16cc-6d3b-e6a24d76938e-8ca72e46, #w-node-_252245f2-9861-48af-046a-052dd5dc2ac2-8ca72e46, #w-node-_58f87ca1-af48-8593-7896-4e5a76c97928-8ca72e46, #w-node-_5bb79a03-4199-bfe5-095a-393f71d6476a-8ca72e46, #w-node-_3eba29a1-a732-fe59-7086-ca1f3f51d6b8-8ca72e46, #w-node-_3188bf8c-b928-df50-275f-c537ef354b66-8ca72e46, #w-node-de70324c-518c-1bde-dfc2-d023bdd3a86e-8ca72e46, #w-node-_43a93a07-f00c-b185-700f-698a606d5c71-8ca72e46, #w-node-dc7006bc-79d9-c3f0-4b24-34cf99afff5e-8ca72e46, #w-node-dc5b1e13-02be-21de-1f21-9be885437569-8ca72e46, #w-node-_204b8a60-e4a8-b839-dd12-e1041d49041a-8ca72e46, #w-node-_11d6a242-4fdb-b267-59b0-35371c87dc49-8ca72e46, #w-node-e5e43e60-fd7a-5f67-6737-99d27828d68e-8ca72e46, #w-node-_36b2e4a5-fae3-efaf-aed3-28dd71fd130a-8ca72e46, #w-node-_9ae4cdd2-f91c-c483-e097-be4be9899bba-8ca72e46, #w-node-cc6d3400-46e8-7b70-b9fc-7204679ae63e-8ca72e46, #w-node-_0d939a47-f659-5ef1-62ce-19873ec72ba5-8ca72e46, #w-node-ece4ee88-5ef0-37d8-ec4c-812b785e80f0-8ca72e46, #w-node-_25f6cfb2-90ac-82c2-e88d-9c81c347082c-8ca72e46, #w-node-_5bc4ac7c-a46a-1f65-9625-5bbf0501e814-8ca72e46, #w-node-cf317560-63ca-ae67-a7ee-b376f734cee6-8ca72e46, #w-node-c838e17a-9da8-af1b-06b5-d221bbe89325-8ca72e46, #w-node-d1415153-50c1-6d3e-2212-b91652b69df0-8ca72e46 {
  justify-self: stretch;
}

#w-node-_70bf9870-9dcf-23c4-4736-7c519e3817db-8ca72e46, #w-node-_70bf9870-9dcf-23c4-4736-7c519e3817dc-8ca72e46, #w-node-_70bf9870-9dcf-23c4-4736-7c519e3817dd-8ca72e46, #w-node-_70bf9870-9dcf-23c4-4736-7c519e3817de-8ca72e46, #w-node-_70bf9870-9dcf-23c4-4736-7c519e3817df-8ca72e46, #w-node-_70bf9870-9dcf-23c4-4736-7c519e3817e0-8ca72e46, #w-node-_70bf9870-9dcf-23c4-4736-7c519e3817f5-8ca72e46, #w-node-_70bf9870-9dcf-23c4-4736-7c519e3817f6-8ca72e46, #w-node-_70bf9870-9dcf-23c4-4736-7c519e3817f7-8ca72e46, #w-node-_70bf9870-9dcf-23c4-4736-7c519e3817f8-8ca72e46, #w-node-_70bf9870-9dcf-23c4-4736-7c519e3817f9-8ca72e46, #w-node-_70bf9870-9dcf-23c4-4736-7c519e3817fa-8ca72e46 {
  justify-self: start;
}

#w-node-a115e79f-fd27-e037-05ba-eb973fd183a9-8ca72e46, #w-node-_72110492-5aba-e808-1fd1-833c30822c81-8ca72e46 {
  place-self: center;
}

#w-node-f841cee8-71ad-d987-909b-0e1e8e35c8db-0365d38e {
  align-self: end;
}

#w-node-f841cee8-71ad-d987-909b-0e1e8e35c912-0365d38e, #w-node-f841cee8-71ad-d987-909b-0e1e8e35c913-0365d38e, #w-node-f841cee8-71ad-d987-909b-0e1e8e35c914-0365d38e, #w-node-f841cee8-71ad-d987-909b-0e1e8e35c915-0365d38e, #w-node-f841cee8-71ad-d987-909b-0e1e8e35c916-0365d38e, #w-node-f841cee8-71ad-d987-909b-0e1e8e35c917-0365d38e, #w-node-f841cee8-71ad-d987-909b-0e1e8e35c92c-0365d38e, #w-node-f841cee8-71ad-d987-909b-0e1e8e35c92d-0365d38e, #w-node-f841cee8-71ad-d987-909b-0e1e8e35c92e-0365d38e, #w-node-f841cee8-71ad-d987-909b-0e1e8e35c92f-0365d38e, #w-node-f841cee8-71ad-d987-909b-0e1e8e35c930-0365d38e, #w-node-f841cee8-71ad-d987-909b-0e1e8e35c931-0365d38e {
  justify-self: start;
}

#w-node-f841cee8-71ad-d987-909b-0e1e8e35c960-0365d38e {
  place-self: center start;
}

#w-node-f841cee8-71ad-d987-909b-0e1e8e35c974-0365d38e, #w-node-f841cee8-71ad-d987-909b-0e1e8e35c979-0365d38e, #w-node-f841cee8-71ad-d987-909b-0e1e8e35c97e-0365d38e {
  place-self: center;
}

#w-node-_6fd1b597-5ce1-71d7-2435-2e00e3b2370a-417e8352 {
  align-self: end;
}

#w-node-_6fd1b597-5ce1-71d7-2435-2e00e3b23741-417e8352, #w-node-_6fd1b597-5ce1-71d7-2435-2e00e3b23742-417e8352, #w-node-_6fd1b597-5ce1-71d7-2435-2e00e3b23743-417e8352, #w-node-_6fd1b597-5ce1-71d7-2435-2e00e3b23744-417e8352, #w-node-_6fd1b597-5ce1-71d7-2435-2e00e3b23745-417e8352, #w-node-_6fd1b597-5ce1-71d7-2435-2e00e3b23746-417e8352, #w-node-_6fd1b597-5ce1-71d7-2435-2e00e3b2375b-417e8352, #w-node-_6fd1b597-5ce1-71d7-2435-2e00e3b2375c-417e8352, #w-node-_6fd1b597-5ce1-71d7-2435-2e00e3b2375d-417e8352, #w-node-_6fd1b597-5ce1-71d7-2435-2e00e3b2375e-417e8352, #w-node-_6fd1b597-5ce1-71d7-2435-2e00e3b2375f-417e8352, #w-node-_6fd1b597-5ce1-71d7-2435-2e00e3b23760-417e8352 {
  justify-self: start;
}

#w-node-_6fd1b597-5ce1-71d7-2435-2e00e3b2378f-417e8352 {
  place-self: center start;
}

#w-node-_6fd1b597-5ce1-71d7-2435-2e00e3b237a3-417e8352, #w-node-_6fd1b597-5ce1-71d7-2435-2e00e3b237a8-417e8352, #w-node-_6fd1b597-5ce1-71d7-2435-2e00e3b237ad-417e8352 {
  place-self: center;
}

#w-node-_53c208e8-eddf-4f40-f502-cdf88f8b3279-3a03556b {
  align-self: end;
}

#w-node-_53c208e8-eddf-4f40-f502-cdf88f8b32b0-3a03556b, #w-node-_53c208e8-eddf-4f40-f502-cdf88f8b32b1-3a03556b, #w-node-_53c208e8-eddf-4f40-f502-cdf88f8b32b2-3a03556b, #w-node-_53c208e8-eddf-4f40-f502-cdf88f8b32b3-3a03556b, #w-node-_53c208e8-eddf-4f40-f502-cdf88f8b32b4-3a03556b, #w-node-_53c208e8-eddf-4f40-f502-cdf88f8b32b5-3a03556b, #w-node-_53c208e8-eddf-4f40-f502-cdf88f8b32ca-3a03556b, #w-node-_53c208e8-eddf-4f40-f502-cdf88f8b32cb-3a03556b, #w-node-_53c208e8-eddf-4f40-f502-cdf88f8b32cc-3a03556b, #w-node-_53c208e8-eddf-4f40-f502-cdf88f8b32cd-3a03556b, #w-node-_53c208e8-eddf-4f40-f502-cdf88f8b32ce-3a03556b, #w-node-_53c208e8-eddf-4f40-f502-cdf88f8b32cf-3a03556b {
  justify-self: start;
}

#w-node-_53c208e8-eddf-4f40-f502-cdf88f8b32fe-3a03556b {
  place-self: center start;
}

#w-node-_53c208e8-eddf-4f40-f502-cdf88f8b3312-3a03556b, #w-node-_53c208e8-eddf-4f40-f502-cdf88f8b3317-3a03556b, #w-node-_53c208e8-eddf-4f40-f502-cdf88f8b331c-3a03556b {
  place-self: center;
}

#w-node-c5975713-c462-9685-d3a6-8b79dc7314e8-050786c9 {
  align-self: end;
}

#w-node-c5975713-c462-9685-d3a6-8b79dc73151f-050786c9, #w-node-c5975713-c462-9685-d3a6-8b79dc731520-050786c9, #w-node-c5975713-c462-9685-d3a6-8b79dc731521-050786c9, #w-node-c5975713-c462-9685-d3a6-8b79dc731522-050786c9, #w-node-c5975713-c462-9685-d3a6-8b79dc731523-050786c9, #w-node-c5975713-c462-9685-d3a6-8b79dc731524-050786c9, #w-node-c5975713-c462-9685-d3a6-8b79dc731539-050786c9, #w-node-c5975713-c462-9685-d3a6-8b79dc73153a-050786c9, #w-node-c5975713-c462-9685-d3a6-8b79dc73153b-050786c9, #w-node-c5975713-c462-9685-d3a6-8b79dc73153c-050786c9, #w-node-c5975713-c462-9685-d3a6-8b79dc73153d-050786c9, #w-node-c5975713-c462-9685-d3a6-8b79dc73153e-050786c9 {
  justify-self: start;
}

#w-node-c5975713-c462-9685-d3a6-8b79dc73156d-050786c9 {
  place-self: center start;
}

#w-node-c5975713-c462-9685-d3a6-8b79dc731581-050786c9, #w-node-c5975713-c462-9685-d3a6-8b79dc731586-050786c9, #w-node-c5975713-c462-9685-d3a6-8b79dc73158b-050786c9 {
  place-self: center;
}

#w-node-_6fd1b597-5ce1-71d7-2435-2e00e3b2370a-347797a8 {
  align-self: end;
}

#w-node-_6fd1b597-5ce1-71d7-2435-2e00e3b23741-347797a8, #w-node-_6fd1b597-5ce1-71d7-2435-2e00e3b23742-347797a8, #w-node-_6fd1b597-5ce1-71d7-2435-2e00e3b23743-347797a8, #w-node-_6fd1b597-5ce1-71d7-2435-2e00e3b23744-347797a8, #w-node-_6fd1b597-5ce1-71d7-2435-2e00e3b23745-347797a8, #w-node-_6fd1b597-5ce1-71d7-2435-2e00e3b23746-347797a8, #w-node-_6fd1b597-5ce1-71d7-2435-2e00e3b2375b-347797a8, #w-node-_6fd1b597-5ce1-71d7-2435-2e00e3b2375c-347797a8, #w-node-_6fd1b597-5ce1-71d7-2435-2e00e3b2375d-347797a8, #w-node-_6fd1b597-5ce1-71d7-2435-2e00e3b2375e-347797a8, #w-node-_6fd1b597-5ce1-71d7-2435-2e00e3b2375f-347797a8, #w-node-_6fd1b597-5ce1-71d7-2435-2e00e3b23760-347797a8 {
  justify-self: start;
}

#w-node-_6fd1b597-5ce1-71d7-2435-2e00e3b2378f-347797a8 {
  place-self: center start;
}

#w-node-_6fd1b597-5ce1-71d7-2435-2e00e3b237a3-347797a8, #w-node-_6fd1b597-5ce1-71d7-2435-2e00e3b237a8-347797a8, #w-node-_6fd1b597-5ce1-71d7-2435-2e00e3b237ad-347797a8 {
  place-self: center;
}

#w-node-_9ba38385-20ad-0569-6dbe-908c8ede7aad-410de65f {
  align-self: end;
}

#w-node-_9ba38385-20ad-0569-6dbe-908c8ede7ae4-410de65f, #w-node-_9ba38385-20ad-0569-6dbe-908c8ede7ae5-410de65f, #w-node-_9ba38385-20ad-0569-6dbe-908c8ede7ae6-410de65f, #w-node-_9ba38385-20ad-0569-6dbe-908c8ede7ae7-410de65f, #w-node-_9ba38385-20ad-0569-6dbe-908c8ede7ae8-410de65f, #w-node-_9ba38385-20ad-0569-6dbe-908c8ede7ae9-410de65f, #w-node-_9ba38385-20ad-0569-6dbe-908c8ede7afe-410de65f, #w-node-_9ba38385-20ad-0569-6dbe-908c8ede7aff-410de65f, #w-node-_9ba38385-20ad-0569-6dbe-908c8ede7b00-410de65f, #w-node-_9ba38385-20ad-0569-6dbe-908c8ede7b01-410de65f, #w-node-_9ba38385-20ad-0569-6dbe-908c8ede7b02-410de65f, #w-node-_9ba38385-20ad-0569-6dbe-908c8ede7b03-410de65f {
  justify-self: start;
}

#w-node-_9ba38385-20ad-0569-6dbe-908c8ede7b32-410de65f {
  place-self: center start;
}

#w-node-_9ba38385-20ad-0569-6dbe-908c8ede7b46-410de65f, #w-node-_9ba38385-20ad-0569-6dbe-908c8ede7b4b-410de65f, #w-node-_9ba38385-20ad-0569-6dbe-908c8ede7b50-410de65f {
  place-self: center;
}

#w-node-f221fb52-823d-055d-2a9d-efe1ae5f5385-26f460ba {
  align-self: end;
}

#w-node-f221fb52-823d-055d-2a9d-efe1ae5f53bc-26f460ba, #w-node-f221fb52-823d-055d-2a9d-efe1ae5f53bd-26f460ba, #w-node-f221fb52-823d-055d-2a9d-efe1ae5f53be-26f460ba, #w-node-f221fb52-823d-055d-2a9d-efe1ae5f53bf-26f460ba, #w-node-f221fb52-823d-055d-2a9d-efe1ae5f53c0-26f460ba, #w-node-f221fb52-823d-055d-2a9d-efe1ae5f53c1-26f460ba, #w-node-f221fb52-823d-055d-2a9d-efe1ae5f53d6-26f460ba, #w-node-f221fb52-823d-055d-2a9d-efe1ae5f53d7-26f460ba, #w-node-f221fb52-823d-055d-2a9d-efe1ae5f53d8-26f460ba, #w-node-f221fb52-823d-055d-2a9d-efe1ae5f53d9-26f460ba, #w-node-f221fb52-823d-055d-2a9d-efe1ae5f53da-26f460ba, #w-node-f221fb52-823d-055d-2a9d-efe1ae5f53db-26f460ba {
  justify-self: start;
}

#w-node-f221fb52-823d-055d-2a9d-efe1ae5f540a-26f460ba {
  place-self: center start;
}

#w-node-f221fb52-823d-055d-2a9d-efe1ae5f541e-26f460ba, #w-node-f221fb52-823d-055d-2a9d-efe1ae5f5423-26f460ba, #w-node-f221fb52-823d-055d-2a9d-efe1ae5f5428-26f460ba {
  place-self: center;
}

#w-node-b4c3f944-b509-62dd-d54f-feaaa2a604aa-e3b87963, #w-node-c58fa442-257e-0e69-fca6-7f6be1679e86-001f7478, #w-node-_5b9ecfee-086c-9c22-c039-8a838c6c0a7f-60c83cb2 {
  justify-self: end;
}

#w-node-eeb22a5c-1ae6-f311-5c9f-e465be13c6ea-60c83cb2 {
  justify-self: start;
}

#w-node-eeb22a5c-1ae6-f311-5c9f-e465be13c6eb-60c83cb2, #w-node-eeb22a5c-1ae6-f311-5c9f-e465be13c6ec-60c83cb2, #w-node-eeb22a5c-1ae6-f311-5c9f-e465be13c6ed-60c83cb2, #w-node-eeb22a5c-1ae6-f311-5c9f-e465be13c6ee-60c83cb2, #w-node-eeb22a5c-1ae6-f311-5c9f-e465be13c6ef-60c83cb2 {
  place-self: center start;
}

#w-node-_5b9ecfee-086c-9c22-c039-8a838c6c0b35-60c83cb2, #w-node-_5b9ecfee-086c-9c22-c039-8a838c6c0b38-60c83cb2, #w-node-_5b9ecfee-086c-9c22-c039-8a838c6c0b3b-60c83cb2, #w-node-_5b9ecfee-086c-9c22-c039-8a838c6c0b3e-60c83cb2, #w-node-_5b9ecfee-086c-9c22-c039-8a838c6c0b41-60c83cb2, #w-node-_5b9ecfee-086c-9c22-c039-8a838c6c0b44-60c83cb2, #w-node-_5b9ecfee-086c-9c22-c039-8a838c6c0b47-60c83cb2, #w-node-_5b9ecfee-086c-9c22-c039-8a838c6c0b4a-60c83cb2, #w-node-_5b9ecfee-086c-9c22-c039-8a838c6c0b4d-60c83cb2, #w-node-_5b9ecfee-086c-9c22-c039-8a838c6c0b50-60c83cb2, #w-node-_5b9ecfee-086c-9c22-c039-8a838c6c0b53-60c83cb2, #w-node-_5b9ecfee-086c-9c22-c039-8a838c6c0b56-60c83cb2, #w-node-_5b9ecfee-086c-9c22-c039-8a838c6c0b59-60c83cb2, #w-node-_5b9ecfee-086c-9c22-c039-8a838c6c0b5c-60c83cb2, #w-node-_5b9ecfee-086c-9c22-c039-8a838c6c0b5f-60c83cb2, #w-node-_5b9ecfee-086c-9c22-c039-8a838c6c0b62-60c83cb2, #w-node-_5b9ecfee-086c-9c22-c039-8a838c6c0b65-60c83cb2, #w-node-_5b9ecfee-086c-9c22-c039-8a838c6c0b68-60c83cb2, #w-node-_5b9ecfee-086c-9c22-c039-8a838c6c0b6b-60c83cb2, #w-node-_5b9ecfee-086c-9c22-c039-8a838c6c0b6e-60c83cb2, #w-node-_5b9ecfee-086c-9c22-c039-8a838c6c0b71-60c83cb2, #w-node-_5b9ecfee-086c-9c22-c039-8a838c6c0b74-60c83cb2, #w-node-_5b9ecfee-086c-9c22-c039-8a838c6c0b77-60c83cb2, #w-node-_5b9ecfee-086c-9c22-c039-8a838c6c0b7a-60c83cb2, #w-node-_5b9ecfee-086c-9c22-c039-8a838c6c0b7d-60c83cb2, #w-node-_5b9ecfee-086c-9c22-c039-8a838c6c0b80-60c83cb2, #w-node-_5b9ecfee-086c-9c22-c039-8a838c6c0b83-60c83cb2, #w-node-_5b9ecfee-086c-9c22-c039-8a838c6c0b86-60c83cb2, #w-node-_5b9ecfee-086c-9c22-c039-8a838c6c0b89-60c83cb2, #w-node-_5b9ecfee-086c-9c22-c039-8a838c6c0b8c-60c83cb2, #w-node-_5b9ecfee-086c-9c22-c039-8a838c6c0b8f-60c83cb2, #w-node-_5b9ecfee-086c-9c22-c039-8a838c6c0b92-60c83cb2, #w-node-_5b9ecfee-086c-9c22-c039-8a838c6c0b95-60c83cb2, #w-node-_5b9ecfee-086c-9c22-c039-8a838c6c0b98-60c83cb2, #w-node-_5b9ecfee-086c-9c22-c039-8a838c6c0b9b-60c83cb2 {
  justify-self: stretch;
}

#w-node-_5b9ecfee-086c-9c22-c039-8a838c6c0c29-60c83cb2, #w-node-_5b9ecfee-086c-9c22-c039-8a838c6c0c30-60c83cb2 {
  place-self: center;
}

#w-node-_7f4d8446-5b60-f7d8-7079-acd5561f8e8b-229f8a95 {
  justify-self: end;
}

#w-node-_7f4d8446-5b60-f7d8-7079-acd5561f8f64-229f8a95 {
  justify-self: start;
}

#w-node-_7f4d8446-5b60-f7d8-7079-acd5561f8f65-229f8a95, #w-node-_7f4d8446-5b60-f7d8-7079-acd5561f8f66-229f8a95, #w-node-_7f4d8446-5b60-f7d8-7079-acd5561f8f67-229f8a95, #w-node-_7f4d8446-5b60-f7d8-7079-acd5561f8f68-229f8a95, #w-node-_7f4d8446-5b60-f7d8-7079-acd5561f8f69-229f8a95 {
  place-self: center start;
}

#w-node-_7f4d8446-5b60-f7d8-7079-acd5561f9049-229f8a95, #w-node-_7f4d8446-5b60-f7d8-7079-acd5561f904c-229f8a95, #w-node-_7f4d8446-5b60-f7d8-7079-acd5561f904f-229f8a95, #w-node-_7f4d8446-5b60-f7d8-7079-acd5561f9052-229f8a95, #w-node-_7f4d8446-5b60-f7d8-7079-acd5561f9055-229f8a95, #w-node-_7f4d8446-5b60-f7d8-7079-acd5561f9058-229f8a95, #w-node-_7f4d8446-5b60-f7d8-7079-acd5561f905b-229f8a95, #w-node-_7f4d8446-5b60-f7d8-7079-acd5561f905e-229f8a95, #w-node-_7f4d8446-5b60-f7d8-7079-acd5561f9061-229f8a95, #w-node-_7f4d8446-5b60-f7d8-7079-acd5561f9064-229f8a95, #w-node-_7f4d8446-5b60-f7d8-7079-acd5561f9067-229f8a95, #w-node-_7f4d8446-5b60-f7d8-7079-acd5561f906a-229f8a95, #w-node-_7f4d8446-5b60-f7d8-7079-acd5561f906d-229f8a95, #w-node-_7f4d8446-5b60-f7d8-7079-acd5561f9070-229f8a95, #w-node-_7f4d8446-5b60-f7d8-7079-acd5561f9073-229f8a95, #w-node-_7f4d8446-5b60-f7d8-7079-acd5561f9076-229f8a95, #w-node-_7f4d8446-5b60-f7d8-7079-acd5561f9079-229f8a95, #w-node-_7f4d8446-5b60-f7d8-7079-acd5561f907c-229f8a95, #w-node-_7f4d8446-5b60-f7d8-7079-acd5561f907f-229f8a95, #w-node-_7f4d8446-5b60-f7d8-7079-acd5561f9082-229f8a95, #w-node-_7f4d8446-5b60-f7d8-7079-acd5561f9085-229f8a95, #w-node-_7f4d8446-5b60-f7d8-7079-acd5561f9088-229f8a95, #w-node-_7f4d8446-5b60-f7d8-7079-acd5561f908b-229f8a95, #w-node-_7f4d8446-5b60-f7d8-7079-acd5561f908e-229f8a95, #w-node-_7f4d8446-5b60-f7d8-7079-acd5561f9091-229f8a95, #w-node-_7f4d8446-5b60-f7d8-7079-acd5561f9094-229f8a95, #w-node-_7f4d8446-5b60-f7d8-7079-acd5561f9097-229f8a95, #w-node-_7f4d8446-5b60-f7d8-7079-acd5561f909a-229f8a95, #w-node-_7f4d8446-5b60-f7d8-7079-acd5561f909d-229f8a95, #w-node-_7f4d8446-5b60-f7d8-7079-acd5561f90a0-229f8a95, #w-node-_7f4d8446-5b60-f7d8-7079-acd5561f90a3-229f8a95, #w-node-_7f4d8446-5b60-f7d8-7079-acd5561f90a6-229f8a95, #w-node-_7f4d8446-5b60-f7d8-7079-acd5561f90a9-229f8a95, #w-node-_7f4d8446-5b60-f7d8-7079-acd5561f90ac-229f8a95, #w-node-_7f4d8446-5b60-f7d8-7079-acd5561f90af-229f8a95 {
  justify-self: stretch;
}

#w-node-_7f4d8446-5b60-f7d8-7079-acd5561f90e1-229f8a95, #w-node-_7f4d8446-5b60-f7d8-7079-acd5561f90e8-229f8a95 {
  place-self: center;
}

#w-node-_1b808656-c083-0723-d4c7-11a3235cf232-5648bb18 {
  justify-self: end;
}

#w-node-_1b808656-c083-0723-d4c7-11a3235cf2e8-5648bb18 {
  justify-self: start;
}

#w-node-_1b808656-c083-0723-d4c7-11a3235cf2e9-5648bb18, #w-node-_1b808656-c083-0723-d4c7-11a3235cf2ea-5648bb18, #w-node-_1b808656-c083-0723-d4c7-11a3235cf2eb-5648bb18, #w-node-_1b808656-c083-0723-d4c7-11a3235cf2ec-5648bb18, #w-node-_1b808656-c083-0723-d4c7-11a3235cf2ed-5648bb18 {
  place-self: center start;
}

#w-node-_1b808656-c083-0723-d4c7-11a3235cf3ba-5648bb18, #w-node-_1b808656-c083-0723-d4c7-11a3235cf3bd-5648bb18, #w-node-_1b808656-c083-0723-d4c7-11a3235cf3c0-5648bb18, #w-node-_1b808656-c083-0723-d4c7-11a3235cf3c3-5648bb18, #w-node-_1b808656-c083-0723-d4c7-11a3235cf3c6-5648bb18, #w-node-_1b808656-c083-0723-d4c7-11a3235cf3c9-5648bb18, #w-node-_1b808656-c083-0723-d4c7-11a3235cf3cc-5648bb18, #w-node-_1b808656-c083-0723-d4c7-11a3235cf3cf-5648bb18, #w-node-_1b808656-c083-0723-d4c7-11a3235cf3d2-5648bb18, #w-node-_1b808656-c083-0723-d4c7-11a3235cf3d5-5648bb18, #w-node-_1b808656-c083-0723-d4c7-11a3235cf3d8-5648bb18, #w-node-_1b808656-c083-0723-d4c7-11a3235cf3db-5648bb18, #w-node-_1b808656-c083-0723-d4c7-11a3235cf3de-5648bb18, #w-node-_1b808656-c083-0723-d4c7-11a3235cf3e1-5648bb18, #w-node-_1b808656-c083-0723-d4c7-11a3235cf3e4-5648bb18, #w-node-_1b808656-c083-0723-d4c7-11a3235cf3e7-5648bb18, #w-node-_1b808656-c083-0723-d4c7-11a3235cf3ea-5648bb18, #w-node-_1b808656-c083-0723-d4c7-11a3235cf3ed-5648bb18, #w-node-_1b808656-c083-0723-d4c7-11a3235cf3f0-5648bb18, #w-node-_1b808656-c083-0723-d4c7-11a3235cf3f3-5648bb18, #w-node-_1b808656-c083-0723-d4c7-11a3235cf3f6-5648bb18, #w-node-_1b808656-c083-0723-d4c7-11a3235cf3f9-5648bb18, #w-node-_1b808656-c083-0723-d4c7-11a3235cf3fc-5648bb18, #w-node-_1b808656-c083-0723-d4c7-11a3235cf3ff-5648bb18, #w-node-_1b808656-c083-0723-d4c7-11a3235cf402-5648bb18, #w-node-_1b808656-c083-0723-d4c7-11a3235cf405-5648bb18, #w-node-_1b808656-c083-0723-d4c7-11a3235cf408-5648bb18, #w-node-_1b808656-c083-0723-d4c7-11a3235cf40b-5648bb18, #w-node-_1b808656-c083-0723-d4c7-11a3235cf40e-5648bb18, #w-node-_1b808656-c083-0723-d4c7-11a3235cf411-5648bb18, #w-node-_1b808656-c083-0723-d4c7-11a3235cf414-5648bb18, #w-node-_1b808656-c083-0723-d4c7-11a3235cf417-5648bb18, #w-node-_1b808656-c083-0723-d4c7-11a3235cf41a-5648bb18, #w-node-_1b808656-c083-0723-d4c7-11a3235cf41d-5648bb18, #w-node-_1b808656-c083-0723-d4c7-11a3235cf420-5648bb18 {
  justify-self: stretch;
}

#w-node-_1b808656-c083-0723-d4c7-11a3235cf452-5648bb18, #w-node-_1b808656-c083-0723-d4c7-11a3235cf459-5648bb18 {
  place-self: center;
}

#w-node-_13c91a41-dfd8-30f4-c3e1-f175d5c2e8c2-51ec824b {
  justify-self: end;
}

#w-node-_13c91a41-dfd8-30f4-c3e1-f175d5c2e966-51ec824b, #w-node-_13c91a41-dfd8-30f4-c3e1-f175d5c2e967-51ec824b, #w-node-_13c91a41-dfd8-30f4-c3e1-f175d5c2e968-51ec824b, #w-node-_13c91a41-dfd8-30f4-c3e1-f175d5c2e969-51ec824b, #w-node-_13c91a41-dfd8-30f4-c3e1-f175d5c2e96a-51ec824b, #w-node-_13c91a41-dfd8-30f4-c3e1-f175d5c2e96b-51ec824b, #w-node-_7dcf29af-5e6b-be5e-064b-17788afed8e6-51ec824b {
  justify-self: start;
}

#w-node-_13c91a41-dfd8-30f4-c3e1-f175d5c2ea36-51ec824b, #w-node-_13c91a41-dfd8-30f4-c3e1-f175d5c2ea39-51ec824b, #w-node-_13c91a41-dfd8-30f4-c3e1-f175d5c2ea3c-51ec824b, #w-node-_13c91a41-dfd8-30f4-c3e1-f175d5c2ea3f-51ec824b, #w-node-_13c91a41-dfd8-30f4-c3e1-f175d5c2ea42-51ec824b, #w-node-_13c91a41-dfd8-30f4-c3e1-f175d5c2ea45-51ec824b, #w-node-_13c91a41-dfd8-30f4-c3e1-f175d5c2ea48-51ec824b, #w-node-_13c91a41-dfd8-30f4-c3e1-f175d5c2ea4b-51ec824b, #w-node-_13c91a41-dfd8-30f4-c3e1-f175d5c2ea4e-51ec824b, #w-node-_13c91a41-dfd8-30f4-c3e1-f175d5c2ea51-51ec824b, #w-node-_13c91a41-dfd8-30f4-c3e1-f175d5c2ea54-51ec824b, #w-node-_13c91a41-dfd8-30f4-c3e1-f175d5c2ea57-51ec824b, #w-node-_13c91a41-dfd8-30f4-c3e1-f175d5c2ea5a-51ec824b, #w-node-_13c91a41-dfd8-30f4-c3e1-f175d5c2ea5d-51ec824b, #w-node-_13c91a41-dfd8-30f4-c3e1-f175d5c2ea60-51ec824b, #w-node-_13c91a41-dfd8-30f4-c3e1-f175d5c2ea63-51ec824b, #w-node-_13c91a41-dfd8-30f4-c3e1-f175d5c2ea66-51ec824b, #w-node-_13c91a41-dfd8-30f4-c3e1-f175d5c2ea69-51ec824b, #w-node-_13c91a41-dfd8-30f4-c3e1-f175d5c2ea6c-51ec824b, #w-node-_13c91a41-dfd8-30f4-c3e1-f175d5c2ea6f-51ec824b, #w-node-_13c91a41-dfd8-30f4-c3e1-f175d5c2ea72-51ec824b, #w-node-_13c91a41-dfd8-30f4-c3e1-f175d5c2ea75-51ec824b, #w-node-_13c91a41-dfd8-30f4-c3e1-f175d5c2ea78-51ec824b, #w-node-_13c91a41-dfd8-30f4-c3e1-f175d5c2ea7b-51ec824b, #w-node-_13c91a41-dfd8-30f4-c3e1-f175d5c2ea7e-51ec824b, #w-node-_13c91a41-dfd8-30f4-c3e1-f175d5c2ea81-51ec824b, #w-node-_13c91a41-dfd8-30f4-c3e1-f175d5c2ea84-51ec824b, #w-node-_13c91a41-dfd8-30f4-c3e1-f175d5c2ea87-51ec824b, #w-node-_13c91a41-dfd8-30f4-c3e1-f175d5c2ea8a-51ec824b, #w-node-_13c91a41-dfd8-30f4-c3e1-f175d5c2ea8d-51ec824b, #w-node-_13c91a41-dfd8-30f4-c3e1-f175d5c2ea90-51ec824b, #w-node-_13c91a41-dfd8-30f4-c3e1-f175d5c2ea93-51ec824b, #w-node-_13c91a41-dfd8-30f4-c3e1-f175d5c2ea96-51ec824b, #w-node-_13c91a41-dfd8-30f4-c3e1-f175d5c2ea99-51ec824b, #w-node-_13c91a41-dfd8-30f4-c3e1-f175d5c2ea9c-51ec824b {
  justify-self: stretch;
}

#w-node-_13c91a41-dfd8-30f4-c3e1-f175d5c2eace-51ec824b, #w-node-_13c91a41-dfd8-30f4-c3e1-f175d5c2ead5-51ec824b {
  place-self: center;
}

#w-node-f935024e-67f5-976d-ecae-6ab046f5fb0a-0385be39 {
  justify-self: end;
}

#w-node-f935024e-67f5-976d-ecae-6ab046f5fbb4-0385be39, #w-node-f935024e-67f5-976d-ecae-6ab046f5fbb5-0385be39, #w-node-f935024e-67f5-976d-ecae-6ab046f5fbb6-0385be39, #w-node-f935024e-67f5-976d-ecae-6ab046f5fbb7-0385be39, #w-node-f935024e-67f5-976d-ecae-6ab046f5fbb8-0385be39, #w-node-_1060ae45-527a-4e28-221a-bc8ea68d5673-0385be39 {
  justify-self: start;
}

#w-node-f935024e-67f5-976d-ecae-6ab046f5fc82-0385be39, #w-node-f935024e-67f5-976d-ecae-6ab046f5fc85-0385be39, #w-node-f935024e-67f5-976d-ecae-6ab046f5fc88-0385be39, #w-node-f935024e-67f5-976d-ecae-6ab046f5fc8b-0385be39, #w-node-f935024e-67f5-976d-ecae-6ab046f5fc8e-0385be39, #w-node-f935024e-67f5-976d-ecae-6ab046f5fc91-0385be39, #w-node-f935024e-67f5-976d-ecae-6ab046f5fc94-0385be39, #w-node-f935024e-67f5-976d-ecae-6ab046f5fc97-0385be39, #w-node-f935024e-67f5-976d-ecae-6ab046f5fc9a-0385be39, #w-node-f935024e-67f5-976d-ecae-6ab046f5fc9d-0385be39, #w-node-f935024e-67f5-976d-ecae-6ab046f5fca0-0385be39, #w-node-f935024e-67f5-976d-ecae-6ab046f5fca3-0385be39, #w-node-f935024e-67f5-976d-ecae-6ab046f5fca6-0385be39, #w-node-f935024e-67f5-976d-ecae-6ab046f5fca9-0385be39, #w-node-f935024e-67f5-976d-ecae-6ab046f5fcac-0385be39, #w-node-f935024e-67f5-976d-ecae-6ab046f5fcaf-0385be39, #w-node-f935024e-67f5-976d-ecae-6ab046f5fcb2-0385be39, #w-node-f935024e-67f5-976d-ecae-6ab046f5fcb5-0385be39, #w-node-f935024e-67f5-976d-ecae-6ab046f5fcb8-0385be39, #w-node-f935024e-67f5-976d-ecae-6ab046f5fcbb-0385be39, #w-node-f935024e-67f5-976d-ecae-6ab046f5fcbe-0385be39, #w-node-f935024e-67f5-976d-ecae-6ab046f5fcc1-0385be39, #w-node-f935024e-67f5-976d-ecae-6ab046f5fcc4-0385be39, #w-node-f935024e-67f5-976d-ecae-6ab046f5fcc7-0385be39, #w-node-f935024e-67f5-976d-ecae-6ab046f5fcca-0385be39, #w-node-f935024e-67f5-976d-ecae-6ab046f5fccd-0385be39, #w-node-f935024e-67f5-976d-ecae-6ab046f5fcd0-0385be39, #w-node-f935024e-67f5-976d-ecae-6ab046f5fcd3-0385be39, #w-node-f935024e-67f5-976d-ecae-6ab046f5fcd6-0385be39, #w-node-f935024e-67f5-976d-ecae-6ab046f5fcd9-0385be39, #w-node-f935024e-67f5-976d-ecae-6ab046f5fcdc-0385be39, #w-node-f935024e-67f5-976d-ecae-6ab046f5fcdf-0385be39, #w-node-f935024e-67f5-976d-ecae-6ab046f5fce2-0385be39, #w-node-f935024e-67f5-976d-ecae-6ab046f5fce5-0385be39, #w-node-f935024e-67f5-976d-ecae-6ab046f5fce8-0385be39 {
  justify-self: stretch;
}

#w-node-f935024e-67f5-976d-ecae-6ab046f5fd1a-0385be39, #w-node-f935024e-67f5-976d-ecae-6ab046f5fd21-0385be39 {
  place-self: center;
}

#w-node-_811e10ba-3f02-8a4a-0aa9-ad62c09fc7ed-70806b50 {
  justify-self: end;
}

#w-node-_811e10ba-3f02-8a4a-0aa9-ad62c09fc8d1-70806b50, #w-node-_811e10ba-3f02-8a4a-0aa9-ad62c09fc8d2-70806b50, #w-node-_811e10ba-3f02-8a4a-0aa9-ad62c09fc8d3-70806b50, #w-node-_811e10ba-3f02-8a4a-0aa9-ad62c09fc8d4-70806b50, #w-node-_811e10ba-3f02-8a4a-0aa9-ad62c09fc8d5-70806b50, #w-node-_811e10ba-3f02-8a4a-0aa9-ad62c09fc8d6-70806b50, #w-node-_811e10ba-3f02-8a4a-0aa9-ad62c09fc8d7-70806b50 {
  justify-self: start;
}

#w-node-_811e10ba-3f02-8a4a-0aa9-ad62c09fc984-70806b50, #w-node-_811e10ba-3f02-8a4a-0aa9-ad62c09fc987-70806b50, #w-node-_811e10ba-3f02-8a4a-0aa9-ad62c09fc98a-70806b50, #w-node-_811e10ba-3f02-8a4a-0aa9-ad62c09fc98d-70806b50, #w-node-_811e10ba-3f02-8a4a-0aa9-ad62c09fc990-70806b50, #w-node-_811e10ba-3f02-8a4a-0aa9-ad62c09fc993-70806b50, #w-node-_811e10ba-3f02-8a4a-0aa9-ad62c09fc996-70806b50, #w-node-_811e10ba-3f02-8a4a-0aa9-ad62c09fc999-70806b50, #w-node-_811e10ba-3f02-8a4a-0aa9-ad62c09fc99c-70806b50, #w-node-_811e10ba-3f02-8a4a-0aa9-ad62c09fc99f-70806b50, #w-node-_811e10ba-3f02-8a4a-0aa9-ad62c09fc9a2-70806b50, #w-node-_811e10ba-3f02-8a4a-0aa9-ad62c09fc9a5-70806b50, #w-node-_811e10ba-3f02-8a4a-0aa9-ad62c09fc9a8-70806b50, #w-node-_811e10ba-3f02-8a4a-0aa9-ad62c09fc9ab-70806b50, #w-node-_811e10ba-3f02-8a4a-0aa9-ad62c09fc9ae-70806b50, #w-node-_811e10ba-3f02-8a4a-0aa9-ad62c09fc9b1-70806b50, #w-node-_811e10ba-3f02-8a4a-0aa9-ad62c09fc9b4-70806b50, #w-node-_811e10ba-3f02-8a4a-0aa9-ad62c09fc9b7-70806b50, #w-node-_811e10ba-3f02-8a4a-0aa9-ad62c09fc9ba-70806b50, #w-node-_811e10ba-3f02-8a4a-0aa9-ad62c09fc9bd-70806b50, #w-node-_811e10ba-3f02-8a4a-0aa9-ad62c09fc9c0-70806b50, #w-node-_811e10ba-3f02-8a4a-0aa9-ad62c09fc9c3-70806b50, #w-node-_811e10ba-3f02-8a4a-0aa9-ad62c09fc9c6-70806b50, #w-node-_811e10ba-3f02-8a4a-0aa9-ad62c09fc9c9-70806b50, #w-node-_811e10ba-3f02-8a4a-0aa9-ad62c09fc9cc-70806b50, #w-node-_811e10ba-3f02-8a4a-0aa9-ad62c09fc9cf-70806b50, #w-node-_811e10ba-3f02-8a4a-0aa9-ad62c09fc9d2-70806b50, #w-node-_811e10ba-3f02-8a4a-0aa9-ad62c09fc9d5-70806b50, #w-node-_811e10ba-3f02-8a4a-0aa9-ad62c09fc9d8-70806b50, #w-node-_811e10ba-3f02-8a4a-0aa9-ad62c09fc9db-70806b50, #w-node-_811e10ba-3f02-8a4a-0aa9-ad62c09fc9de-70806b50, #w-node-_811e10ba-3f02-8a4a-0aa9-ad62c09fc9e1-70806b50, #w-node-_811e10ba-3f02-8a4a-0aa9-ad62c09fc9e4-70806b50, #w-node-_811e10ba-3f02-8a4a-0aa9-ad62c09fc9e7-70806b50, #w-node-_811e10ba-3f02-8a4a-0aa9-ad62c09fc9ea-70806b50 {
  justify-self: stretch;
}

#w-node-_811e10ba-3f02-8a4a-0aa9-ad62c09fca1c-70806b50, #w-node-_811e10ba-3f02-8a4a-0aa9-ad62c09fca23-70806b50 {
  place-self: center;
}

#w-node-_909a98c7-b81c-d88d-6207-2d889c901e63-d2a55a86 {
  justify-self: end;
}

#w-node-_909a98c7-b81c-d88d-6207-2d889c901f01-d2a55a86 {
  justify-self: start;
}

#w-node-_909a98c7-b81c-d88d-6207-2d889c901f02-d2a55a86, #w-node-_909a98c7-b81c-d88d-6207-2d889c901f03-d2a55a86, #w-node-_909a98c7-b81c-d88d-6207-2d889c901f04-d2a55a86, #w-node-_909a98c7-b81c-d88d-6207-2d889c901f05-d2a55a86, #w-node-_909a98c7-b81c-d88d-6207-2d889c901f06-d2a55a86 {
  place-self: center start;
}

#w-node-_909a98c7-b81c-d88d-6207-2d889c901fa2-d2a55a86, #w-node-_909a98c7-b81c-d88d-6207-2d889c901fa5-d2a55a86, #w-node-_909a98c7-b81c-d88d-6207-2d889c901fa8-d2a55a86, #w-node-_909a98c7-b81c-d88d-6207-2d889c901fab-d2a55a86, #w-node-_909a98c7-b81c-d88d-6207-2d889c901fae-d2a55a86, #w-node-_909a98c7-b81c-d88d-6207-2d889c901fb1-d2a55a86, #w-node-_909a98c7-b81c-d88d-6207-2d889c901fb4-d2a55a86, #w-node-_909a98c7-b81c-d88d-6207-2d889c901fb7-d2a55a86, #w-node-_909a98c7-b81c-d88d-6207-2d889c901fba-d2a55a86, #w-node-_909a98c7-b81c-d88d-6207-2d889c901fbd-d2a55a86, #w-node-_909a98c7-b81c-d88d-6207-2d889c901fc0-d2a55a86, #w-node-_909a98c7-b81c-d88d-6207-2d889c901fc3-d2a55a86, #w-node-_909a98c7-b81c-d88d-6207-2d889c901fc6-d2a55a86, #w-node-_909a98c7-b81c-d88d-6207-2d889c901fc9-d2a55a86, #w-node-_909a98c7-b81c-d88d-6207-2d889c901fcc-d2a55a86, #w-node-_909a98c7-b81c-d88d-6207-2d889c901fcf-d2a55a86, #w-node-_909a98c7-b81c-d88d-6207-2d889c901fd2-d2a55a86, #w-node-_909a98c7-b81c-d88d-6207-2d889c901fd5-d2a55a86, #w-node-_909a98c7-b81c-d88d-6207-2d889c901fd8-d2a55a86, #w-node-_909a98c7-b81c-d88d-6207-2d889c901fdb-d2a55a86, #w-node-_909a98c7-b81c-d88d-6207-2d889c901fde-d2a55a86, #w-node-_909a98c7-b81c-d88d-6207-2d889c901fe1-d2a55a86, #w-node-_909a98c7-b81c-d88d-6207-2d889c901fe4-d2a55a86, #w-node-_909a98c7-b81c-d88d-6207-2d889c901fe7-d2a55a86, #w-node-_909a98c7-b81c-d88d-6207-2d889c901fea-d2a55a86, #w-node-_909a98c7-b81c-d88d-6207-2d889c901fed-d2a55a86, #w-node-_909a98c7-b81c-d88d-6207-2d889c901ff0-d2a55a86, #w-node-_909a98c7-b81c-d88d-6207-2d889c901ff3-d2a55a86, #w-node-_909a98c7-b81c-d88d-6207-2d889c901ff6-d2a55a86, #w-node-_909a98c7-b81c-d88d-6207-2d889c901ff9-d2a55a86, #w-node-_909a98c7-b81c-d88d-6207-2d889c901ffc-d2a55a86, #w-node-_909a98c7-b81c-d88d-6207-2d889c901fff-d2a55a86, #w-node-_909a98c7-b81c-d88d-6207-2d889c902002-d2a55a86, #w-node-_909a98c7-b81c-d88d-6207-2d889c902005-d2a55a86, #w-node-_909a98c7-b81c-d88d-6207-2d889c902008-d2a55a86 {
  justify-self: stretch;
}

#w-node-_909a98c7-b81c-d88d-6207-2d889c902064-d2a55a86, #w-node-_909a98c7-b81c-d88d-6207-2d889c90206b-d2a55a86 {
  place-self: center;
}

#w-node-d8e4f991-de0e-f054-f89a-f2aee378f96f-ad1b379c {
  justify-self: end;
}

#w-node-d8e4f991-de0e-f054-f89a-f2aee378fa77-ad1b379c, #w-node-d8e4f991-de0e-f054-f89a-f2aee378fa78-ad1b379c, #w-node-d8e4f991-de0e-f054-f89a-f2aee378fa79-ad1b379c, #w-node-d8e4f991-de0e-f054-f89a-f2aee378fa7a-ad1b379c, #w-node-d8e4f991-de0e-f054-f89a-f2aee378fa7b-ad1b379c, #w-node-d8e4f991-de0e-f054-f89a-f2aee378fa7c-ad1b379c {
  justify-self: start;
}

#w-node-d8e4f991-de0e-f054-f89a-f2aee378fbb8-ad1b379c, #w-node-d8e4f991-de0e-f054-f89a-f2aee378fbbf-ad1b379c {
  place-self: center;
}

#w-node-d8e4f991-de0e-f054-f89a-f2aee378faff-ad1b379c, #w-node-d8e4f991-de0e-f054-f89a-f2aee378fb02-ad1b379c, #w-node-d8e4f991-de0e-f054-f89a-f2aee378fb05-ad1b379c, #w-node-d8e4f991-de0e-f054-f89a-f2aee378fb08-ad1b379c, #w-node-d8e4f991-de0e-f054-f89a-f2aee378fb0b-ad1b379c, #w-node-d8e4f991-de0e-f054-f89a-f2aee378fb0e-ad1b379c, #w-node-d8e4f991-de0e-f054-f89a-f2aee378fb11-ad1b379c, #w-node-d8e4f991-de0e-f054-f89a-f2aee378fb14-ad1b379c, #w-node-d8e4f991-de0e-f054-f89a-f2aee378fb17-ad1b379c, #w-node-d8e4f991-de0e-f054-f89a-f2aee378fb1a-ad1b379c, #w-node-d8e4f991-de0e-f054-f89a-f2aee378fb1d-ad1b379c, #w-node-d8e4f991-de0e-f054-f89a-f2aee378fb20-ad1b379c, #w-node-d8e4f991-de0e-f054-f89a-f2aee378fb23-ad1b379c, #w-node-d8e4f991-de0e-f054-f89a-f2aee378fb26-ad1b379c, #w-node-d8e4f991-de0e-f054-f89a-f2aee378fb29-ad1b379c, #w-node-d8e4f991-de0e-f054-f89a-f2aee378fb2c-ad1b379c, #w-node-d8e4f991-de0e-f054-f89a-f2aee378fb2f-ad1b379c, #w-node-d8e4f991-de0e-f054-f89a-f2aee378fb32-ad1b379c, #w-node-d8e4f991-de0e-f054-f89a-f2aee378fb35-ad1b379c, #w-node-d8e4f991-de0e-f054-f89a-f2aee378fb38-ad1b379c, #w-node-d8e4f991-de0e-f054-f89a-f2aee378fb3b-ad1b379c, #w-node-d8e4f991-de0e-f054-f89a-f2aee378fb3e-ad1b379c, #w-node-d8e4f991-de0e-f054-f89a-f2aee378fb41-ad1b379c, #w-node-d8e4f991-de0e-f054-f89a-f2aee378fb44-ad1b379c, #w-node-d8e4f991-de0e-f054-f89a-f2aee378fb47-ad1b379c, #w-node-d8e4f991-de0e-f054-f89a-f2aee378fb4a-ad1b379c, #w-node-d8e4f991-de0e-f054-f89a-f2aee378fb4d-ad1b379c, #w-node-d8e4f991-de0e-f054-f89a-f2aee378fb50-ad1b379c, #w-node-d8e4f991-de0e-f054-f89a-f2aee378fb53-ad1b379c, #w-node-d8e4f991-de0e-f054-f89a-f2aee378fb56-ad1b379c, #w-node-d8e4f991-de0e-f054-f89a-f2aee378fb59-ad1b379c, #w-node-d8e4f991-de0e-f054-f89a-f2aee378fb5c-ad1b379c, #w-node-d8e4f991-de0e-f054-f89a-f2aee378fb5f-ad1b379c, #w-node-d8e4f991-de0e-f054-f89a-f2aee378fb62-ad1b379c, #w-node-d8e4f991-de0e-f054-f89a-f2aee378fb65-ad1b379c {
  justify-self: stretch;
}

#w-node-_8ae7ada0-e7e3-dbe5-d0f1-221750532a74-2a3e160e {
  justify-self: end;
}

#w-node-_8ae7ada0-e7e3-dbe5-d0f1-221750532a7d-2a3e160e {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_8ae7ada0-e7e3-dbe5-d0f1-221750532b1a-2a3e160e, #w-node-_8ae7ada0-e7e3-dbe5-d0f1-221750532b1b-2a3e160e, #w-node-_8ae7ada0-e7e3-dbe5-d0f1-221750532b1c-2a3e160e, #w-node-_8ae7ada0-e7e3-dbe5-d0f1-221750532b1d-2a3e160e, #w-node-_8ae7ada0-e7e3-dbe5-d0f1-221750532b1e-2a3e160e, #w-node-_8ae7ada0-e7e3-dbe5-d0f1-221750532b1f-2a3e160e {
  justify-self: start;
}

#w-node-_8ae7ada0-e7e3-dbe5-d0f1-221750532bf0-2a3e160e, #w-node-_8ae7ada0-e7e3-dbe5-d0f1-221750532bf3-2a3e160e, #w-node-_8ae7ada0-e7e3-dbe5-d0f1-221750532bf6-2a3e160e, #w-node-_8ae7ada0-e7e3-dbe5-d0f1-221750532bf9-2a3e160e, #w-node-_8ae7ada0-e7e3-dbe5-d0f1-221750532bfc-2a3e160e, #w-node-_8ae7ada0-e7e3-dbe5-d0f1-221750532bff-2a3e160e, #w-node-_8ae7ada0-e7e3-dbe5-d0f1-221750532c02-2a3e160e, #w-node-_8ae7ada0-e7e3-dbe5-d0f1-221750532c05-2a3e160e, #w-node-_8ae7ada0-e7e3-dbe5-d0f1-221750532c08-2a3e160e, #w-node-_8ae7ada0-e7e3-dbe5-d0f1-221750532c0b-2a3e160e, #w-node-_8ae7ada0-e7e3-dbe5-d0f1-221750532c0e-2a3e160e, #w-node-_8ae7ada0-e7e3-dbe5-d0f1-221750532c11-2a3e160e, #w-node-_8ae7ada0-e7e3-dbe5-d0f1-221750532c14-2a3e160e, #w-node-_8ae7ada0-e7e3-dbe5-d0f1-221750532c17-2a3e160e, #w-node-_8ae7ada0-e7e3-dbe5-d0f1-221750532c1a-2a3e160e, #w-node-_8ae7ada0-e7e3-dbe5-d0f1-221750532c1d-2a3e160e, #w-node-_8ae7ada0-e7e3-dbe5-d0f1-221750532c20-2a3e160e, #w-node-_8ae7ada0-e7e3-dbe5-d0f1-221750532c23-2a3e160e, #w-node-_8ae7ada0-e7e3-dbe5-d0f1-221750532c26-2a3e160e, #w-node-_8ae7ada0-e7e3-dbe5-d0f1-221750532c29-2a3e160e, #w-node-_8ae7ada0-e7e3-dbe5-d0f1-221750532c2c-2a3e160e, #w-node-_8ae7ada0-e7e3-dbe5-d0f1-221750532c2f-2a3e160e, #w-node-_8ae7ada0-e7e3-dbe5-d0f1-221750532c32-2a3e160e, #w-node-_8ae7ada0-e7e3-dbe5-d0f1-221750532c35-2a3e160e, #w-node-_8ae7ada0-e7e3-dbe5-d0f1-221750532c38-2a3e160e, #w-node-_8ae7ada0-e7e3-dbe5-d0f1-221750532c3b-2a3e160e, #w-node-_8ae7ada0-e7e3-dbe5-d0f1-221750532c3e-2a3e160e, #w-node-_8ae7ada0-e7e3-dbe5-d0f1-221750532c41-2a3e160e, #w-node-_8ae7ada0-e7e3-dbe5-d0f1-221750532c44-2a3e160e, #w-node-_8ae7ada0-e7e3-dbe5-d0f1-221750532c47-2a3e160e, #w-node-_8ae7ada0-e7e3-dbe5-d0f1-221750532c4a-2a3e160e, #w-node-_8ae7ada0-e7e3-dbe5-d0f1-221750532c4d-2a3e160e, #w-node-_8ae7ada0-e7e3-dbe5-d0f1-221750532c50-2a3e160e, #w-node-_8ae7ada0-e7e3-dbe5-d0f1-221750532c53-2a3e160e, #w-node-_8ae7ada0-e7e3-dbe5-d0f1-221750532c56-2a3e160e {
  justify-self: stretch;
}

#w-node-_8ae7ada0-e7e3-dbe5-d0f1-221750532c88-2a3e160e, #w-node-_8ae7ada0-e7e3-dbe5-d0f1-221750532c8f-2a3e160e {
  place-self: center;
}

#w-node-_1177be47-3809-d182-edfe-8b151bacd513-a2b32f66 {
  align-self: end;
}

#w-node-_1177be47-3809-d182-edfe-8b151bacd54a-a2b32f66, #w-node-_1177be47-3809-d182-edfe-8b151bacd54b-a2b32f66, #w-node-_1177be47-3809-d182-edfe-8b151bacd54c-a2b32f66, #w-node-_1177be47-3809-d182-edfe-8b151bacd54d-a2b32f66, #w-node-_1177be47-3809-d182-edfe-8b151bacd54e-a2b32f66, #w-node-_1177be47-3809-d182-edfe-8b151bacd54f-a2b32f66, #w-node-_1177be47-3809-d182-edfe-8b151bacd564-a2b32f66, #w-node-_1177be47-3809-d182-edfe-8b151bacd565-a2b32f66, #w-node-_1177be47-3809-d182-edfe-8b151bacd566-a2b32f66, #w-node-_1177be47-3809-d182-edfe-8b151bacd567-a2b32f66, #w-node-_1177be47-3809-d182-edfe-8b151bacd568-a2b32f66, #w-node-_1177be47-3809-d182-edfe-8b151bacd569-a2b32f66 {
  justify-self: start;
}

#w-node-_1177be47-3809-d182-edfe-8b151bacd598-a2b32f66 {
  place-self: center start;
}

#w-node-_1177be47-3809-d182-edfe-8b151bacd5ac-a2b32f66, #w-node-_1177be47-3809-d182-edfe-8b151bacd5b1-a2b32f66, #w-node-_1177be47-3809-d182-edfe-8b151bacd5b6-a2b32f66 {
  place-self: center;
}

#w-node-_8a8b433f-c89e-5143-1c97-9a27f06d27df-95ca8f83 {
  justify-self: end;
}

#w-node-_8a8b433f-c89e-5143-1c97-9a27f06d28a9-95ca8f83 {
  justify-self: start;
}

#w-node-_8a8b433f-c89e-5143-1c97-9a27f06d28aa-95ca8f83, #w-node-_8a8b433f-c89e-5143-1c97-9a27f06d28ab-95ca8f83, #w-node-_8a8b433f-c89e-5143-1c97-9a27f06d28ac-95ca8f83 {
  place-self: center start;
}

#w-node-_8a8b433f-c89e-5143-1c97-9a27f06d2988-95ca8f83, #w-node-_8a8b433f-c89e-5143-1c97-9a27f06d298b-95ca8f83, #w-node-_8a8b433f-c89e-5143-1c97-9a27f06d298e-95ca8f83, #w-node-_8a8b433f-c89e-5143-1c97-9a27f06d2991-95ca8f83, #w-node-_8a8b433f-c89e-5143-1c97-9a27f06d2994-95ca8f83, #w-node-_8a8b433f-c89e-5143-1c97-9a27f06d2997-95ca8f83, #w-node-_8a8b433f-c89e-5143-1c97-9a27f06d299a-95ca8f83, #w-node-_8a8b433f-c89e-5143-1c97-9a27f06d299d-95ca8f83, #w-node-_8a8b433f-c89e-5143-1c97-9a27f06d29a0-95ca8f83, #w-node-_8a8b433f-c89e-5143-1c97-9a27f06d29a3-95ca8f83, #w-node-_8a8b433f-c89e-5143-1c97-9a27f06d29a6-95ca8f83, #w-node-_8a8b433f-c89e-5143-1c97-9a27f06d29a9-95ca8f83, #w-node-_8a8b433f-c89e-5143-1c97-9a27f06d29ac-95ca8f83, #w-node-_8a8b433f-c89e-5143-1c97-9a27f06d29af-95ca8f83, #w-node-_8a8b433f-c89e-5143-1c97-9a27f06d29b2-95ca8f83, #w-node-_8a8b433f-c89e-5143-1c97-9a27f06d29b5-95ca8f83, #w-node-_8a8b433f-c89e-5143-1c97-9a27f06d29b8-95ca8f83, #w-node-_8a8b433f-c89e-5143-1c97-9a27f06d29bb-95ca8f83, #w-node-_8a8b433f-c89e-5143-1c97-9a27f06d29be-95ca8f83, #w-node-_8a8b433f-c89e-5143-1c97-9a27f06d29c1-95ca8f83, #w-node-_8a8b433f-c89e-5143-1c97-9a27f06d29c4-95ca8f83, #w-node-_8a8b433f-c89e-5143-1c97-9a27f06d29c7-95ca8f83, #w-node-_8a8b433f-c89e-5143-1c97-9a27f06d29ca-95ca8f83, #w-node-_8a8b433f-c89e-5143-1c97-9a27f06d29cd-95ca8f83, #w-node-_8a8b433f-c89e-5143-1c97-9a27f06d29d0-95ca8f83, #w-node-_8a8b433f-c89e-5143-1c97-9a27f06d29d3-95ca8f83, #w-node-_8a8b433f-c89e-5143-1c97-9a27f06d29d6-95ca8f83, #w-node-_8a8b433f-c89e-5143-1c97-9a27f06d29d9-95ca8f83, #w-node-_8a8b433f-c89e-5143-1c97-9a27f06d29dc-95ca8f83, #w-node-_8a8b433f-c89e-5143-1c97-9a27f06d29df-95ca8f83, #w-node-_8a8b433f-c89e-5143-1c97-9a27f06d29e2-95ca8f83, #w-node-_8a8b433f-c89e-5143-1c97-9a27f06d29e5-95ca8f83, #w-node-_8a8b433f-c89e-5143-1c97-9a27f06d29e8-95ca8f83, #w-node-_8a8b433f-c89e-5143-1c97-9a27f06d29eb-95ca8f83, #w-node-_8a8b433f-c89e-5143-1c97-9a27f06d29ee-95ca8f83 {
  justify-self: stretch;
}

#w-node-_8a8b433f-c89e-5143-1c97-9a27f06d2a20-95ca8f83, #w-node-_8a8b433f-c89e-5143-1c97-9a27f06d2a27-95ca8f83 {
  place-self: center;
}

#w-node-_7354c798-f7c0-64f9-c085-b1dee8882cb7-4b78396c {
  justify-self: end;
}

#w-node-_7354c798-f7c0-64f9-c085-b1dee8882d63-4b78396c {
  justify-self: start;
}

#w-node-_7354c798-f7c0-64f9-c085-b1dee8882d64-4b78396c, #w-node-_7354c798-f7c0-64f9-c085-b1dee8882d65-4b78396c, #w-node-_7354c798-f7c0-64f9-c085-b1dee8882d66-4b78396c, #w-node-_7354c798-f7c0-64f9-c085-b1dee8882d67-4b78396c, #w-node-_7354c798-f7c0-64f9-c085-b1dee8882d68-4b78396c {
  place-self: center start;
}

#w-node-_7354c798-f7c0-64f9-c085-b1dee8882e04-4b78396c, #w-node-_7354c798-f7c0-64f9-c085-b1dee8882e07-4b78396c, #w-node-_7354c798-f7c0-64f9-c085-b1dee8882e0a-4b78396c, #w-node-_7354c798-f7c0-64f9-c085-b1dee8882e0d-4b78396c, #w-node-_7354c798-f7c0-64f9-c085-b1dee8882e10-4b78396c, #w-node-_7354c798-f7c0-64f9-c085-b1dee8882e13-4b78396c, #w-node-_7354c798-f7c0-64f9-c085-b1dee8882e16-4b78396c, #w-node-_7354c798-f7c0-64f9-c085-b1dee8882e19-4b78396c, #w-node-_7354c798-f7c0-64f9-c085-b1dee8882e1c-4b78396c, #w-node-_7354c798-f7c0-64f9-c085-b1dee8882e1f-4b78396c, #w-node-_7354c798-f7c0-64f9-c085-b1dee8882e22-4b78396c, #w-node-_7354c798-f7c0-64f9-c085-b1dee8882e25-4b78396c, #w-node-_7354c798-f7c0-64f9-c085-b1dee8882e28-4b78396c, #w-node-_7354c798-f7c0-64f9-c085-b1dee8882e2b-4b78396c, #w-node-_7354c798-f7c0-64f9-c085-b1dee8882e2e-4b78396c, #w-node-_7354c798-f7c0-64f9-c085-b1dee8882e31-4b78396c, #w-node-_7354c798-f7c0-64f9-c085-b1dee8882e34-4b78396c, #w-node-_7354c798-f7c0-64f9-c085-b1dee8882e37-4b78396c, #w-node-_7354c798-f7c0-64f9-c085-b1dee8882e3a-4b78396c, #w-node-_7354c798-f7c0-64f9-c085-b1dee8882e3d-4b78396c, #w-node-_7354c798-f7c0-64f9-c085-b1dee8882e40-4b78396c, #w-node-_7354c798-f7c0-64f9-c085-b1dee8882e43-4b78396c, #w-node-_7354c798-f7c0-64f9-c085-b1dee8882e46-4b78396c, #w-node-_7354c798-f7c0-64f9-c085-b1dee8882e49-4b78396c, #w-node-_7354c798-f7c0-64f9-c085-b1dee8882e4c-4b78396c, #w-node-_7354c798-f7c0-64f9-c085-b1dee8882e4f-4b78396c, #w-node-_7354c798-f7c0-64f9-c085-b1dee8882e52-4b78396c, #w-node-_7354c798-f7c0-64f9-c085-b1dee8882e55-4b78396c, #w-node-_7354c798-f7c0-64f9-c085-b1dee8882e58-4b78396c, #w-node-_7354c798-f7c0-64f9-c085-b1dee8882e5b-4b78396c, #w-node-_7354c798-f7c0-64f9-c085-b1dee8882e5e-4b78396c, #w-node-_7354c798-f7c0-64f9-c085-b1dee8882e61-4b78396c, #w-node-_7354c798-f7c0-64f9-c085-b1dee8882e64-4b78396c, #w-node-_7354c798-f7c0-64f9-c085-b1dee8882e67-4b78396c, #w-node-_7354c798-f7c0-64f9-c085-b1dee8882e6a-4b78396c {
  justify-self: stretch;
}

#w-node-_7354c798-f7c0-64f9-c085-b1dee8882ec9-4b78396c, #w-node-_7354c798-f7c0-64f9-c085-b1dee8882ed0-4b78396c {
  place-self: center;
}

#w-node-e4d3507a-2793-d69e-46af-19657f01375f-2323c8ee {
  justify-self: end;
}

#w-node-e4d3507a-2793-d69e-46af-19657f0137f5-2323c8ee, #w-node-e4d3507a-2793-d69e-46af-19657f0137f6-2323c8ee, #w-node-e4d3507a-2793-d69e-46af-19657f0137f7-2323c8ee, #w-node-e4d3507a-2793-d69e-46af-19657f0137f8-2323c8ee, #w-node-e4d3507a-2793-d69e-46af-19657f0137f9-2323c8ee, #w-node-e4d3507a-2793-d69e-46af-19657f0137fb-2323c8ee {
  justify-self: start;
}

#w-node-e4d3507a-2793-d69e-46af-19657f01388d-2323c8ee, #w-node-e4d3507a-2793-d69e-46af-19657f013890-2323c8ee, #w-node-e4d3507a-2793-d69e-46af-19657f013893-2323c8ee, #w-node-e4d3507a-2793-d69e-46af-19657f013896-2323c8ee, #w-node-e4d3507a-2793-d69e-46af-19657f013899-2323c8ee, #w-node-e4d3507a-2793-d69e-46af-19657f01389c-2323c8ee, #w-node-e4d3507a-2793-d69e-46af-19657f01389f-2323c8ee, #w-node-e4d3507a-2793-d69e-46af-19657f0138a2-2323c8ee, #w-node-e4d3507a-2793-d69e-46af-19657f0138a5-2323c8ee, #w-node-e4d3507a-2793-d69e-46af-19657f0138a8-2323c8ee, #w-node-e4d3507a-2793-d69e-46af-19657f0138ab-2323c8ee, #w-node-e4d3507a-2793-d69e-46af-19657f0138ae-2323c8ee, #w-node-e4d3507a-2793-d69e-46af-19657f0138b1-2323c8ee, #w-node-e4d3507a-2793-d69e-46af-19657f0138b4-2323c8ee, #w-node-e4d3507a-2793-d69e-46af-19657f0138b7-2323c8ee, #w-node-e4d3507a-2793-d69e-46af-19657f0138ba-2323c8ee, #w-node-e4d3507a-2793-d69e-46af-19657f0138bd-2323c8ee, #w-node-e4d3507a-2793-d69e-46af-19657f0138c0-2323c8ee, #w-node-e4d3507a-2793-d69e-46af-19657f0138c3-2323c8ee, #w-node-e4d3507a-2793-d69e-46af-19657f0138c6-2323c8ee, #w-node-e4d3507a-2793-d69e-46af-19657f0138c9-2323c8ee, #w-node-e4d3507a-2793-d69e-46af-19657f0138cc-2323c8ee, #w-node-e4d3507a-2793-d69e-46af-19657f0138cf-2323c8ee, #w-node-e4d3507a-2793-d69e-46af-19657f0138d2-2323c8ee, #w-node-e4d3507a-2793-d69e-46af-19657f0138d5-2323c8ee, #w-node-e4d3507a-2793-d69e-46af-19657f0138d8-2323c8ee, #w-node-e4d3507a-2793-d69e-46af-19657f0138db-2323c8ee, #w-node-e4d3507a-2793-d69e-46af-19657f0138de-2323c8ee, #w-node-e4d3507a-2793-d69e-46af-19657f0138e1-2323c8ee, #w-node-e4d3507a-2793-d69e-46af-19657f0138e4-2323c8ee, #w-node-e4d3507a-2793-d69e-46af-19657f0138e7-2323c8ee, #w-node-e4d3507a-2793-d69e-46af-19657f0138ea-2323c8ee, #w-node-e4d3507a-2793-d69e-46af-19657f0138ed-2323c8ee, #w-node-e4d3507a-2793-d69e-46af-19657f0138f0-2323c8ee, #w-node-e4d3507a-2793-d69e-46af-19657f0138f3-2323c8ee {
  justify-self: stretch;
}

#w-node-e4d3507a-2793-d69e-46af-19657f013925-2323c8ee, #w-node-e4d3507a-2793-d69e-46af-19657f01392c-2323c8ee {
  place-self: center;
}

#w-node-_7b4a3e32-fd11-19c1-7621-321e9c5dcb6b-1dd0843a {
  align-self: end;
}

#w-node-_7b4a3e32-fd11-19c1-7621-321e9c5dcba2-1dd0843a, #w-node-_7b4a3e32-fd11-19c1-7621-321e9c5dcba3-1dd0843a, #w-node-_7b4a3e32-fd11-19c1-7621-321e9c5dcba4-1dd0843a, #w-node-_7b4a3e32-fd11-19c1-7621-321e9c5dcba5-1dd0843a, #w-node-_7b4a3e32-fd11-19c1-7621-321e9c5dcba6-1dd0843a, #w-node-_7b4a3e32-fd11-19c1-7621-321e9c5dcba7-1dd0843a, #w-node-_7b4a3e32-fd11-19c1-7621-321e9c5dcbbc-1dd0843a, #w-node-_7b4a3e32-fd11-19c1-7621-321e9c5dcbbd-1dd0843a, #w-node-_7b4a3e32-fd11-19c1-7621-321e9c5dcbbe-1dd0843a, #w-node-_7b4a3e32-fd11-19c1-7621-321e9c5dcbbf-1dd0843a, #w-node-_7b4a3e32-fd11-19c1-7621-321e9c5dcbc0-1dd0843a, #w-node-_7b4a3e32-fd11-19c1-7621-321e9c5dcbc1-1dd0843a {
  justify-self: start;
}

#w-node-_7b4a3e32-fd11-19c1-7621-321e9c5dcbf0-1dd0843a {
  place-self: center start;
}

#w-node-_7b4a3e32-fd11-19c1-7621-321e9c5dcc04-1dd0843a, #w-node-_7b4a3e32-fd11-19c1-7621-321e9c5dcc09-1dd0843a, #w-node-_7b4a3e32-fd11-19c1-7621-321e9c5dcc0e-1dd0843a {
  place-self: center;
}

#w-node-_1c6fc396-24f5-ba2b-fc95-133180096aea-dc8a894a {
  align-self: end;
}

#w-node-_1c6fc396-24f5-ba2b-fc95-133180096b21-dc8a894a, #w-node-_1c6fc396-24f5-ba2b-fc95-133180096b22-dc8a894a, #w-node-_1c6fc396-24f5-ba2b-fc95-133180096b23-dc8a894a, #w-node-_1c6fc396-24f5-ba2b-fc95-133180096b24-dc8a894a, #w-node-_1c6fc396-24f5-ba2b-fc95-133180096b25-dc8a894a, #w-node-_1c6fc396-24f5-ba2b-fc95-133180096b26-dc8a894a, #w-node-_1c6fc396-24f5-ba2b-fc95-133180096b3b-dc8a894a, #w-node-_1c6fc396-24f5-ba2b-fc95-133180096b3c-dc8a894a, #w-node-_1c6fc396-24f5-ba2b-fc95-133180096b3d-dc8a894a, #w-node-_1c6fc396-24f5-ba2b-fc95-133180096b3e-dc8a894a, #w-node-_1c6fc396-24f5-ba2b-fc95-133180096b3f-dc8a894a, #w-node-_1c6fc396-24f5-ba2b-fc95-133180096b40-dc8a894a {
  justify-self: start;
}

#w-node-_1c6fc396-24f5-ba2b-fc95-133180096b6f-dc8a894a {
  place-self: center start;
}

#w-node-_1c6fc396-24f5-ba2b-fc95-133180096b83-dc8a894a, #w-node-_1c6fc396-24f5-ba2b-fc95-133180096b88-dc8a894a, #w-node-_1c6fc396-24f5-ba2b-fc95-133180096b8d-dc8a894a {
  place-self: center;
}

#w-node-bd250236-e464-c3f4-5b47-379cdd3fca56-40f7dba3 {
  align-self: end;
}

#w-node-bd250236-e464-c3f4-5b47-379cdd3fca8d-40f7dba3, #w-node-bd250236-e464-c3f4-5b47-379cdd3fca8e-40f7dba3, #w-node-bd250236-e464-c3f4-5b47-379cdd3fca8f-40f7dba3, #w-node-bd250236-e464-c3f4-5b47-379cdd3fca90-40f7dba3, #w-node-bd250236-e464-c3f4-5b47-379cdd3fca91-40f7dba3, #w-node-bd250236-e464-c3f4-5b47-379cdd3fca92-40f7dba3, #w-node-bd250236-e464-c3f4-5b47-379cdd3fcaa7-40f7dba3, #w-node-bd250236-e464-c3f4-5b47-379cdd3fcaa8-40f7dba3, #w-node-bd250236-e464-c3f4-5b47-379cdd3fcaa9-40f7dba3, #w-node-bd250236-e464-c3f4-5b47-379cdd3fcaaa-40f7dba3, #w-node-bd250236-e464-c3f4-5b47-379cdd3fcaab-40f7dba3, #w-node-bd250236-e464-c3f4-5b47-379cdd3fcaac-40f7dba3 {
  justify-self: start;
}

#w-node-bd250236-e464-c3f4-5b47-379cdd3fcadb-40f7dba3 {
  place-self: center start;
}

#w-node-bd250236-e464-c3f4-5b47-379cdd3fcaef-40f7dba3, #w-node-bd250236-e464-c3f4-5b47-379cdd3fcaf4-40f7dba3, #w-node-bd250236-e464-c3f4-5b47-379cdd3fcaf9-40f7dba3 {
  place-self: center;
}

#w-node-_19a1c453-5478-0be1-d89d-b3880da61c69-10d8b47b {
  justify-self: end;
}

#w-node-ff8700a1-a947-4f03-e867-0efaad707e0b-10d8b47b, #w-node-ff8700a1-a947-4f03-e867-0efaad707e0e-10d8b47b {
  justify-self: stretch;
}

#w-node-ff8700a1-a947-4f03-e867-0efaad707e11-10d8b47b, #w-node-f9fc005d-9f3c-4646-c708-81822e2a91de-10d8b47b, #w-node-_7f142c28-546a-22b5-6cf8-2a5e7630bd0d-10d8b47b, #w-node-_25d5ce96-b87f-bfc9-7e6d-a8fbc71bbeb0-10d8b47b {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: stretch;
}

#w-node-ff8700a1-a947-4f03-e867-0efaad707e14-10d8b47b, #w-node-ff8700a1-a947-4f03-e867-0efaad707e17-10d8b47b, #w-node-ff8700a1-a947-4f03-e867-0efaad707e1a-10d8b47b, #w-node-ff8700a1-a947-4f03-e867-0efaad707e1d-10d8b47b, #w-node-ff8700a1-a947-4f03-e867-0efaad707e21-10d8b47b, #w-node-ff8700a1-a947-4f03-e867-0efaad707e24-10d8b47b, #w-node-ff8700a1-a947-4f03-e867-0efaad707e27-10d8b47b, #w-node-ff8700a1-a947-4f03-e867-0efaad707e2a-10d8b47b, #w-node-ff8700a1-a947-4f03-e867-0efaad707e2d-10d8b47b, #w-node-ff8700a1-a947-4f03-e867-0efaad707e30-10d8b47b, #w-node-ff8700a1-a947-4f03-e867-0efaad707e34-10d8b47b, #w-node-ff8700a1-a947-4f03-e867-0efaad707e37-10d8b47b, #w-node-_0d9bf65c-2a34-0de9-f62e-ee24f680feec-10d8b47b, #w-node-f2892754-a055-8ec5-da7d-6d642a9b584d-10d8b47b, #w-node-d93b0b46-ab5a-688e-2a1c-c5a120820906-10d8b47b, #w-node-_26562680-f4c1-1b72-c805-a9a91fff6e63-10d8b47b, #w-node-dcd8ddf9-d11e-2cf1-67e0-ef859f605075-10d8b47b, #w-node-_4e5ffcf9-45e7-c183-240c-f2334c8dca8b-10d8b47b, #w-node-_158e5570-d59a-dcdb-b90a-21b3015230ed-10d8b47b, #w-node-_4059c26d-4e14-6e34-aa5d-57195410035b-10d8b47b, #w-node-eae82e27-9184-8363-a4c2-d12553f40f47-10d8b47b, #w-node-_666f53ab-c66d-e920-7b8d-d37c2b47d7b2-10d8b47b, #w-node-f4cec211-f636-4bf9-c1aa-4255c36fd5c6-10d8b47b, #w-node-_5ad0e9e3-e87d-416c-a634-905464d1241c-10d8b47b {
  justify-self: stretch;
}

#w-node-_19a1c453-5478-0be1-d89d-b3880da61d11-10d8b47b {
  justify-self: start;
}

#w-node-_19a1c453-5478-0be1-d89d-b3880da61d12-10d8b47b, #w-node-_19a1c453-5478-0be1-d89d-b3880da61d13-10d8b47b, #w-node-_19a1c453-5478-0be1-d89d-b3880da61d14-10d8b47b, #w-node-_19a1c453-5478-0be1-d89d-b3880da61d15-10d8b47b, #w-node-_19a1c453-5478-0be1-d89d-b3880da61d16-10d8b47b {
  place-self: center start;
}

#w-node-_19a1c453-5478-0be1-d89d-b3880da61df3-10d8b47b, #w-node-_19a1c453-5478-0be1-d89d-b3880da61df6-10d8b47b, #w-node-_19a1c453-5478-0be1-d89d-b3880da61df9-10d8b47b, #w-node-_19a1c453-5478-0be1-d89d-b3880da61dfc-10d8b47b, #w-node-_19a1c453-5478-0be1-d89d-b3880da61dff-10d8b47b, #w-node-_19a1c453-5478-0be1-d89d-b3880da61e02-10d8b47b, #w-node-_19a1c453-5478-0be1-d89d-b3880da61e05-10d8b47b, #w-node-_19a1c453-5478-0be1-d89d-b3880da61e08-10d8b47b, #w-node-_19a1c453-5478-0be1-d89d-b3880da61e0b-10d8b47b, #w-node-_19a1c453-5478-0be1-d89d-b3880da61e0e-10d8b47b, #w-node-_19a1c453-5478-0be1-d89d-b3880da61e11-10d8b47b, #w-node-_19a1c453-5478-0be1-d89d-b3880da61e14-10d8b47b, #w-node-_19a1c453-5478-0be1-d89d-b3880da61e17-10d8b47b, #w-node-_19a1c453-5478-0be1-d89d-b3880da61e1a-10d8b47b, #w-node-_19a1c453-5478-0be1-d89d-b3880da61e1d-10d8b47b, #w-node-_19a1c453-5478-0be1-d89d-b3880da61e20-10d8b47b, #w-node-_19a1c453-5478-0be1-d89d-b3880da61e23-10d8b47b, #w-node-_19a1c453-5478-0be1-d89d-b3880da61e26-10d8b47b, #w-node-_19a1c453-5478-0be1-d89d-b3880da61e29-10d8b47b, #w-node-_19a1c453-5478-0be1-d89d-b3880da61e2c-10d8b47b, #w-node-_19a1c453-5478-0be1-d89d-b3880da61e2f-10d8b47b, #w-node-_19a1c453-5478-0be1-d89d-b3880da61e32-10d8b47b, #w-node-_19a1c453-5478-0be1-d89d-b3880da61e35-10d8b47b, #w-node-_19a1c453-5478-0be1-d89d-b3880da61e38-10d8b47b, #w-node-_19a1c453-5478-0be1-d89d-b3880da61e3b-10d8b47b, #w-node-_19a1c453-5478-0be1-d89d-b3880da61e3e-10d8b47b, #w-node-_19a1c453-5478-0be1-d89d-b3880da61e41-10d8b47b, #w-node-_19a1c453-5478-0be1-d89d-b3880da61e44-10d8b47b, #w-node-_19a1c453-5478-0be1-d89d-b3880da61e47-10d8b47b, #w-node-_19a1c453-5478-0be1-d89d-b3880da61e4a-10d8b47b, #w-node-_19a1c453-5478-0be1-d89d-b3880da61e4d-10d8b47b, #w-node-_19a1c453-5478-0be1-d89d-b3880da61e50-10d8b47b, #w-node-_19a1c453-5478-0be1-d89d-b3880da61e53-10d8b47b, #w-node-_19a1c453-5478-0be1-d89d-b3880da61e56-10d8b47b, #w-node-_19a1c453-5478-0be1-d89d-b3880da61e59-10d8b47b {
  justify-self: stretch;
}

#w-node-_19a1c453-5478-0be1-d89d-b3880da61e8b-10d8b47b, #w-node-_19a1c453-5478-0be1-d89d-b3880da61e92-10d8b47b {
  place-self: center;
}

#w-node-e7682553-db72-6c5d-17b5-077b7b9c4110-82c119c6 {
  justify-self: end;
}

#w-node-e7682553-db72-6c5d-17b5-077b7b9c415a-82c119c6, #w-node-e7682553-db72-6c5d-17b5-077b7b9c415d-82c119c6, #w-node-e7682553-db72-6c5d-17b5-077b7b9c416e-82c119c6, #w-node-e7682553-db72-6c5d-17b5-077b7b9c4171-82c119c6, #w-node-e7682553-db72-6c5d-17b5-077b7b9c4174-82c119c6, #w-node-e7682553-db72-6c5d-17b5-077b7b9c4177-82c119c6, #w-node-e7682553-db72-6c5d-17b5-077b7b9c417b-82c119c6, #w-node-e7682553-db72-6c5d-17b5-077b7b9c417e-82c119c6, #w-node-e7682553-db72-6c5d-17b5-077b7b9c4181-82c119c6, #w-node-e7682553-db72-6c5d-17b5-077b7b9c4184-82c119c6, #w-node-_780b02f8-5d22-c36e-6120-d3f443f7899c-82c119c6, #w-node-_780b02f8-5d22-c36e-6120-d3f443f7899f-82c119c6 {
  justify-self: stretch;
}

#w-node-_780b02f8-5d22-c36e-6120-d3f443f789ab-82c119c6 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: stretch;
}

#w-node-_780b02f8-5d22-c36e-6120-d3f443f789b0-82c119c6, #w-node-_780b02f8-5d22-c36e-6120-d3f443f789b3-82c119c6, #w-node-_780b02f8-5d22-c36e-6120-d3f443f789b6-82c119c6, #w-node-_780b02f8-5d22-c36e-6120-d3f443f789b9-82c119c6, #w-node-_780b02f8-5d22-c36e-6120-d3f443f789bd-82c119c6, #w-node-_780b02f8-5d22-c36e-6120-d3f443f789c0-82c119c6, #w-node-_780b02f8-5d22-c36e-6120-d3f443f789c3-82c119c6, #w-node-_780b02f8-5d22-c36e-6120-d3f443f789c6-82c119c6, #w-node-_780b02f8-5d22-c36e-6120-d3f443f789c9-82c119c6, #w-node-_780b02f8-5d22-c36e-6120-d3f443f789cc-82c119c6, #w-node-_780b02f8-5d22-c36e-6120-d3f443f789d0-82c119c6, #w-node-_780b02f8-5d22-c36e-6120-d3f443f789d3-82c119c6 {
  justify-self: stretch;
}

#w-node-e7682553-db72-6c5d-17b5-077b7b9c41f3-82c119c6 {
  justify-self: start;
}

#w-node-e7682553-db72-6c5d-17b5-077b7b9c41f4-82c119c6, #w-node-e7682553-db72-6c5d-17b5-077b7b9c41f5-82c119c6, #w-node-e7682553-db72-6c5d-17b5-077b7b9c41f6-82c119c6, #w-node-e7682553-db72-6c5d-17b5-077b7b9c41f7-82c119c6, #w-node-e7682553-db72-6c5d-17b5-077b7b9c41f8-82c119c6, #w-node-_02aab8b7-9767-533d-0c17-3866e3e6f5e7-82c119c6 {
  place-self: center start;
}

#w-node-c1784928-0989-52a5-f347-98392fa35225-82c119c6 {
  justify-self: start;
}

#w-node-c1784928-0989-52a5-f347-98392fa35226-82c119c6, #w-node-c1784928-0989-52a5-f347-98392fa35227-82c119c6 {
  place-self: center start;
}

#w-node-c1784928-0989-52a5-f347-98392fa35228-82c119c6, #w-node-c1784928-0989-52a5-f347-98392fa35229-82c119c6 {
  place-self: center;
}

#w-node-c1784928-0989-52a5-f347-98392fa3522a-82c119c6 {
  place-self: center end;
}

#w-node-e7682553-db72-6c5d-17b5-077b7b9c42b6-82c119c6, #w-node-e7682553-db72-6c5d-17b5-077b7b9c42b9-82c119c6, #w-node-e7682553-db72-6c5d-17b5-077b7b9c42bc-82c119c6, #w-node-e7682553-db72-6c5d-17b5-077b7b9c42bf-82c119c6, #w-node-e7682553-db72-6c5d-17b5-077b7b9c42c2-82c119c6, #w-node-e7682553-db72-6c5d-17b5-077b7b9c42c5-82c119c6, #w-node-e7682553-db72-6c5d-17b5-077b7b9c42c8-82c119c6, #w-node-e7682553-db72-6c5d-17b5-077b7b9c42cb-82c119c6, #w-node-e7682553-db72-6c5d-17b5-077b7b9c42ce-82c119c6, #w-node-e7682553-db72-6c5d-17b5-077b7b9c42d1-82c119c6, #w-node-e7682553-db72-6c5d-17b5-077b7b9c42d4-82c119c6, #w-node-e7682553-db72-6c5d-17b5-077b7b9c42d7-82c119c6, #w-node-e7682553-db72-6c5d-17b5-077b7b9c42da-82c119c6, #w-node-e7682553-db72-6c5d-17b5-077b7b9c42dd-82c119c6, #w-node-e7682553-db72-6c5d-17b5-077b7b9c42e0-82c119c6, #w-node-e7682553-db72-6c5d-17b5-077b7b9c42e3-82c119c6, #w-node-e7682553-db72-6c5d-17b5-077b7b9c42e6-82c119c6, #w-node-e7682553-db72-6c5d-17b5-077b7b9c42e9-82c119c6, #w-node-e7682553-db72-6c5d-17b5-077b7b9c42ec-82c119c6, #w-node-e7682553-db72-6c5d-17b5-077b7b9c42ef-82c119c6, #w-node-e7682553-db72-6c5d-17b5-077b7b9c42f2-82c119c6, #w-node-e7682553-db72-6c5d-17b5-077b7b9c42f5-82c119c6, #w-node-e7682553-db72-6c5d-17b5-077b7b9c42f8-82c119c6, #w-node-e7682553-db72-6c5d-17b5-077b7b9c42fb-82c119c6, #w-node-e7682553-db72-6c5d-17b5-077b7b9c42fe-82c119c6, #w-node-e7682553-db72-6c5d-17b5-077b7b9c4301-82c119c6, #w-node-e7682553-db72-6c5d-17b5-077b7b9c4304-82c119c6, #w-node-e7682553-db72-6c5d-17b5-077b7b9c4307-82c119c6, #w-node-e7682553-db72-6c5d-17b5-077b7b9c430a-82c119c6, #w-node-e7682553-db72-6c5d-17b5-077b7b9c430d-82c119c6, #w-node-e7682553-db72-6c5d-17b5-077b7b9c4310-82c119c6, #w-node-e7682553-db72-6c5d-17b5-077b7b9c4313-82c119c6, #w-node-e7682553-db72-6c5d-17b5-077b7b9c4316-82c119c6, #w-node-e7682553-db72-6c5d-17b5-077b7b9c4319-82c119c6, #w-node-e7682553-db72-6c5d-17b5-077b7b9c431c-82c119c6 {
  justify-self: stretch;
}

#w-node-e7682553-db72-6c5d-17b5-077b7b9c434e-82c119c6, #w-node-e7682553-db72-6c5d-17b5-077b7b9c4355-82c119c6 {
  place-self: center;
}

#w-node-b4d74f7e-5dd9-0ff1-5342-7e4c3591883c-efb4769d {
  justify-self: end;
}

#w-node-_347b7308-9aee-f679-5e92-aa9f1a7d7b7e-efb4769d {
  justify-self: start;
}

#w-node-_347b7308-9aee-f679-5e92-aa9f1a7d7b7f-efb4769d, #w-node-_347b7308-9aee-f679-5e92-aa9f1a7d7b80-efb4769d, #w-node-_347b7308-9aee-f679-5e92-aa9f1a7d7b81-efb4769d, #w-node-_347b7308-9aee-f679-5e92-aa9f1a7d7b82-efb4769d, #w-node-_347b7308-9aee-f679-5e92-aa9f1a7d7b83-efb4769d, #w-node-_347b7308-9aee-f679-5e92-aa9f1a7d7b84-efb4769d {
  place-self: center start;
}

#w-node-b4d74f7e-5dd9-0ff1-5342-7e4c35918a32-efb4769d, #w-node-b4d74f7e-5dd9-0ff1-5342-7e4c35918a35-efb4769d, #w-node-b4d74f7e-5dd9-0ff1-5342-7e4c35918a38-efb4769d, #w-node-b4d74f7e-5dd9-0ff1-5342-7e4c35918a3b-efb4769d, #w-node-b4d74f7e-5dd9-0ff1-5342-7e4c35918a3e-efb4769d, #w-node-b4d74f7e-5dd9-0ff1-5342-7e4c35918a41-efb4769d, #w-node-b4d74f7e-5dd9-0ff1-5342-7e4c35918a44-efb4769d, #w-node-b4d74f7e-5dd9-0ff1-5342-7e4c35918a47-efb4769d, #w-node-b4d74f7e-5dd9-0ff1-5342-7e4c35918a4a-efb4769d, #w-node-b4d74f7e-5dd9-0ff1-5342-7e4c35918a4d-efb4769d, #w-node-b4d74f7e-5dd9-0ff1-5342-7e4c35918a50-efb4769d, #w-node-b4d74f7e-5dd9-0ff1-5342-7e4c35918a53-efb4769d, #w-node-b4d74f7e-5dd9-0ff1-5342-7e4c35918a56-efb4769d, #w-node-b4d74f7e-5dd9-0ff1-5342-7e4c35918a59-efb4769d, #w-node-b4d74f7e-5dd9-0ff1-5342-7e4c35918a5c-efb4769d, #w-node-b4d74f7e-5dd9-0ff1-5342-7e4c35918a5f-efb4769d, #w-node-b4d74f7e-5dd9-0ff1-5342-7e4c35918a62-efb4769d, #w-node-b4d74f7e-5dd9-0ff1-5342-7e4c35918a65-efb4769d, #w-node-b4d74f7e-5dd9-0ff1-5342-7e4c35918a68-efb4769d, #w-node-b4d74f7e-5dd9-0ff1-5342-7e4c35918a6b-efb4769d, #w-node-b4d74f7e-5dd9-0ff1-5342-7e4c35918a6e-efb4769d, #w-node-b4d74f7e-5dd9-0ff1-5342-7e4c35918a71-efb4769d, #w-node-b4d74f7e-5dd9-0ff1-5342-7e4c35918a74-efb4769d, #w-node-b4d74f7e-5dd9-0ff1-5342-7e4c35918a77-efb4769d, #w-node-b4d74f7e-5dd9-0ff1-5342-7e4c35918a7a-efb4769d, #w-node-b4d74f7e-5dd9-0ff1-5342-7e4c35918a7d-efb4769d, #w-node-b4d74f7e-5dd9-0ff1-5342-7e4c35918a80-efb4769d, #w-node-b4d74f7e-5dd9-0ff1-5342-7e4c35918a83-efb4769d, #w-node-b4d74f7e-5dd9-0ff1-5342-7e4c35918a86-efb4769d, #w-node-b4d74f7e-5dd9-0ff1-5342-7e4c35918a89-efb4769d, #w-node-b4d74f7e-5dd9-0ff1-5342-7e4c35918a8c-efb4769d, #w-node-b4d74f7e-5dd9-0ff1-5342-7e4c35918a8f-efb4769d, #w-node-b4d74f7e-5dd9-0ff1-5342-7e4c35918a92-efb4769d, #w-node-b4d74f7e-5dd9-0ff1-5342-7e4c35918a95-efb4769d, #w-node-b4d74f7e-5dd9-0ff1-5342-7e4c35918a98-efb4769d {
  justify-self: stretch;
}

#w-node-b4d74f7e-5dd9-0ff1-5342-7e4c35918aca-efb4769d, #w-node-b4d74f7e-5dd9-0ff1-5342-7e4c35918ad1-efb4769d {
  place-self: center;
}

#w-node-b16f1893-6f0f-b737-503a-1f967d867dfa-a5d11d70 {
  justify-self: end;
}

#w-node-b16f1893-6f0f-b737-503a-1f967d867ecc-a5d11d70 {
  justify-self: start;
}

#w-node-b16f1893-6f0f-b737-503a-1f967d867ecd-a5d11d70, #w-node-b16f1893-6f0f-b737-503a-1f967d867ece-a5d11d70, #w-node-b16f1893-6f0f-b737-503a-1f967d867ecf-a5d11d70, #w-node-b16f1893-6f0f-b737-503a-1f967d867ed0-a5d11d70, #w-node-b16f1893-6f0f-b737-503a-1f967d867ed1-a5d11d70, #w-node-b16f1893-6f0f-b737-503a-1f967d867ed2-a5d11d70, #w-node-_89ff663a-32b2-49b0-2cdc-455596f2c9f7-a5d11d70 {
  place-self: center start;
}

#w-node-b16f1893-6f0f-b737-503a-1f967d867fb0-a5d11d70, #w-node-b16f1893-6f0f-b737-503a-1f967d867fb3-a5d11d70, #w-node-b16f1893-6f0f-b737-503a-1f967d867fb6-a5d11d70, #w-node-b16f1893-6f0f-b737-503a-1f967d867fb9-a5d11d70, #w-node-b16f1893-6f0f-b737-503a-1f967d867fbc-a5d11d70, #w-node-b16f1893-6f0f-b737-503a-1f967d867fbf-a5d11d70, #w-node-b16f1893-6f0f-b737-503a-1f967d867fc2-a5d11d70, #w-node-b16f1893-6f0f-b737-503a-1f967d867fc5-a5d11d70, #w-node-b16f1893-6f0f-b737-503a-1f967d867fc8-a5d11d70, #w-node-b16f1893-6f0f-b737-503a-1f967d867fcb-a5d11d70, #w-node-b16f1893-6f0f-b737-503a-1f967d867fce-a5d11d70, #w-node-b16f1893-6f0f-b737-503a-1f967d867fd1-a5d11d70, #w-node-b16f1893-6f0f-b737-503a-1f967d867fd4-a5d11d70, #w-node-b16f1893-6f0f-b737-503a-1f967d867fd7-a5d11d70, #w-node-b16f1893-6f0f-b737-503a-1f967d867fda-a5d11d70, #w-node-b16f1893-6f0f-b737-503a-1f967d867fdd-a5d11d70, #w-node-b16f1893-6f0f-b737-503a-1f967d867fe0-a5d11d70, #w-node-b16f1893-6f0f-b737-503a-1f967d867fe3-a5d11d70, #w-node-b16f1893-6f0f-b737-503a-1f967d867fe6-a5d11d70, #w-node-b16f1893-6f0f-b737-503a-1f967d867fe9-a5d11d70, #w-node-b16f1893-6f0f-b737-503a-1f967d867fec-a5d11d70, #w-node-b16f1893-6f0f-b737-503a-1f967d867fef-a5d11d70, #w-node-b16f1893-6f0f-b737-503a-1f967d867ff2-a5d11d70, #w-node-b16f1893-6f0f-b737-503a-1f967d867ff5-a5d11d70, #w-node-b16f1893-6f0f-b737-503a-1f967d867ff8-a5d11d70, #w-node-b16f1893-6f0f-b737-503a-1f967d867ffb-a5d11d70, #w-node-b16f1893-6f0f-b737-503a-1f967d867ffe-a5d11d70, #w-node-b16f1893-6f0f-b737-503a-1f967d868001-a5d11d70, #w-node-b16f1893-6f0f-b737-503a-1f967d868004-a5d11d70, #w-node-b16f1893-6f0f-b737-503a-1f967d868007-a5d11d70, #w-node-b16f1893-6f0f-b737-503a-1f967d86800a-a5d11d70, #w-node-b16f1893-6f0f-b737-503a-1f967d86800d-a5d11d70, #w-node-b16f1893-6f0f-b737-503a-1f967d868010-a5d11d70, #w-node-b16f1893-6f0f-b737-503a-1f967d868013-a5d11d70, #w-node-b16f1893-6f0f-b737-503a-1f967d868016-a5d11d70 {
  justify-self: stretch;
}

#w-node-b16f1893-6f0f-b737-503a-1f967d868048-a5d11d70, #w-node-b16f1893-6f0f-b737-503a-1f967d86804f-a5d11d70 {
  place-self: center;
}

#w-node-_62076512-4d79-5332-fb42-c87344ad004e-c4ca651a {
  justify-self: end;
}

#w-node-_62076512-4d79-5332-fb42-c87344ad00a2-c4ca651a, #w-node-_62076512-4d79-5332-fb42-c87344ad00a5-c4ca651a, #w-node-_62076512-4d79-5332-fb42-c87344ad00a8-c4ca651a, #w-node-_62076512-4d79-5332-fb42-c87344ad00ab-c4ca651a {
  justify-self: stretch;
}

#w-node-_62076512-4d79-5332-fb42-c87344ad0120-c4ca651a {
  justify-self: start;
}

#w-node-_62076512-4d79-5332-fb42-c87344ad0121-c4ca651a, #w-node-_62076512-4d79-5332-fb42-c87344ad0122-c4ca651a, #w-node-_62076512-4d79-5332-fb42-c87344ad0123-c4ca651a, #w-node-_62076512-4d79-5332-fb42-c87344ad0124-c4ca651a {
  place-self: center start;
}

#w-node-_85715e06-52d2-f098-c4a1-87a423bd6414-c4ca651a {
  justify-self: start;
}

#w-node-_85715e06-52d2-f098-c4a1-87a423bd6415-c4ca651a, #w-node-_85715e06-52d2-f098-c4a1-87a423bd6416-c4ca651a, #w-node-_85715e06-52d2-f098-c4a1-87a423bd6417-c4ca651a, #w-node-_85715e06-52d2-f098-c4a1-87a423bd6418-c4ca651a {
  place-self: center start;
}

#w-node-_62076512-4d79-5332-fb42-c87344ad02dc-c4ca651a, #w-node-_62076512-4d79-5332-fb42-c87344ad02e3-c4ca651a {
  place-self: center;
}

#w-node-_62076512-4d79-5332-fb42-c87344ad0244-c4ca651a, #w-node-_62076512-4d79-5332-fb42-c87344ad0247-c4ca651a, #w-node-_62076512-4d79-5332-fb42-c87344ad024a-c4ca651a, #w-node-_62076512-4d79-5332-fb42-c87344ad024d-c4ca651a, #w-node-_62076512-4d79-5332-fb42-c87344ad0250-c4ca651a, #w-node-_62076512-4d79-5332-fb42-c87344ad0253-c4ca651a, #w-node-_62076512-4d79-5332-fb42-c87344ad0256-c4ca651a, #w-node-_62076512-4d79-5332-fb42-c87344ad0259-c4ca651a, #w-node-_62076512-4d79-5332-fb42-c87344ad025c-c4ca651a, #w-node-_62076512-4d79-5332-fb42-c87344ad025f-c4ca651a, #w-node-_62076512-4d79-5332-fb42-c87344ad0262-c4ca651a, #w-node-_62076512-4d79-5332-fb42-c87344ad0265-c4ca651a, #w-node-_62076512-4d79-5332-fb42-c87344ad0268-c4ca651a, #w-node-_62076512-4d79-5332-fb42-c87344ad026b-c4ca651a, #w-node-_62076512-4d79-5332-fb42-c87344ad026e-c4ca651a, #w-node-_62076512-4d79-5332-fb42-c87344ad0271-c4ca651a, #w-node-_62076512-4d79-5332-fb42-c87344ad0274-c4ca651a, #w-node-_62076512-4d79-5332-fb42-c87344ad0277-c4ca651a, #w-node-_62076512-4d79-5332-fb42-c87344ad027a-c4ca651a, #w-node-_62076512-4d79-5332-fb42-c87344ad027d-c4ca651a, #w-node-_62076512-4d79-5332-fb42-c87344ad0280-c4ca651a, #w-node-_62076512-4d79-5332-fb42-c87344ad0283-c4ca651a, #w-node-_62076512-4d79-5332-fb42-c87344ad0286-c4ca651a, #w-node-_62076512-4d79-5332-fb42-c87344ad0289-c4ca651a, #w-node-_62076512-4d79-5332-fb42-c87344ad028c-c4ca651a, #w-node-_62076512-4d79-5332-fb42-c87344ad028f-c4ca651a, #w-node-_62076512-4d79-5332-fb42-c87344ad0292-c4ca651a, #w-node-_62076512-4d79-5332-fb42-c87344ad0295-c4ca651a, #w-node-_62076512-4d79-5332-fb42-c87344ad0298-c4ca651a, #w-node-_62076512-4d79-5332-fb42-c87344ad029b-c4ca651a, #w-node-_62076512-4d79-5332-fb42-c87344ad029e-c4ca651a, #w-node-_62076512-4d79-5332-fb42-c87344ad02a1-c4ca651a, #w-node-_62076512-4d79-5332-fb42-c87344ad02a4-c4ca651a, #w-node-_62076512-4d79-5332-fb42-c87344ad02a7-c4ca651a, #w-node-_62076512-4d79-5332-fb42-c87344ad02aa-c4ca651a {
  justify-self: stretch;
}

#w-node-_73ac93ea-19ee-dce3-e509-13df38256701-23d1748f {
  justify-self: end;
}

#w-node-_73ac93ea-19ee-dce3-e509-13df382567d3-23d1748f {
  justify-self: start;
}

#w-node-_73ac93ea-19ee-dce3-e509-13df382567d4-23d1748f, #w-node-_73ac93ea-19ee-dce3-e509-13df382567d5-23d1748f, #w-node-_73ac93ea-19ee-dce3-e509-13df382567d6-23d1748f, #w-node-_73ac93ea-19ee-dce3-e509-13df382567d7-23d1748f, #w-node-_73ac93ea-19ee-dce3-e509-13df382567d8-23d1748f {
  place-self: center start;
}

#w-node-_73ac93ea-19ee-dce3-e509-13df382568b7-23d1748f, #w-node-_73ac93ea-19ee-dce3-e509-13df382568ba-23d1748f, #w-node-_73ac93ea-19ee-dce3-e509-13df382568bd-23d1748f, #w-node-_73ac93ea-19ee-dce3-e509-13df382568c0-23d1748f, #w-node-_73ac93ea-19ee-dce3-e509-13df382568c3-23d1748f, #w-node-_73ac93ea-19ee-dce3-e509-13df382568c6-23d1748f, #w-node-_73ac93ea-19ee-dce3-e509-13df382568c9-23d1748f, #w-node-_73ac93ea-19ee-dce3-e509-13df382568cc-23d1748f, #w-node-_73ac93ea-19ee-dce3-e509-13df382568cf-23d1748f, #w-node-_73ac93ea-19ee-dce3-e509-13df382568d2-23d1748f, #w-node-_73ac93ea-19ee-dce3-e509-13df382568d5-23d1748f, #w-node-_73ac93ea-19ee-dce3-e509-13df382568d8-23d1748f, #w-node-_73ac93ea-19ee-dce3-e509-13df382568db-23d1748f, #w-node-_73ac93ea-19ee-dce3-e509-13df382568de-23d1748f, #w-node-_73ac93ea-19ee-dce3-e509-13df382568e1-23d1748f, #w-node-_73ac93ea-19ee-dce3-e509-13df382568e4-23d1748f, #w-node-_73ac93ea-19ee-dce3-e509-13df382568e7-23d1748f, #w-node-_73ac93ea-19ee-dce3-e509-13df382568ea-23d1748f, #w-node-_73ac93ea-19ee-dce3-e509-13df382568ed-23d1748f, #w-node-_73ac93ea-19ee-dce3-e509-13df382568f0-23d1748f, #w-node-_73ac93ea-19ee-dce3-e509-13df382568f3-23d1748f, #w-node-_73ac93ea-19ee-dce3-e509-13df382568f6-23d1748f, #w-node-_73ac93ea-19ee-dce3-e509-13df382568f9-23d1748f, #w-node-_73ac93ea-19ee-dce3-e509-13df382568fc-23d1748f, #w-node-_73ac93ea-19ee-dce3-e509-13df382568ff-23d1748f, #w-node-_73ac93ea-19ee-dce3-e509-13df38256902-23d1748f, #w-node-_73ac93ea-19ee-dce3-e509-13df38256905-23d1748f, #w-node-_73ac93ea-19ee-dce3-e509-13df38256908-23d1748f, #w-node-_73ac93ea-19ee-dce3-e509-13df3825690b-23d1748f, #w-node-_73ac93ea-19ee-dce3-e509-13df3825690e-23d1748f, #w-node-_73ac93ea-19ee-dce3-e509-13df38256911-23d1748f, #w-node-_73ac93ea-19ee-dce3-e509-13df38256914-23d1748f, #w-node-_73ac93ea-19ee-dce3-e509-13df38256917-23d1748f, #w-node-_73ac93ea-19ee-dce3-e509-13df3825691a-23d1748f, #w-node-_73ac93ea-19ee-dce3-e509-13df3825691d-23d1748f {
  justify-self: stretch;
}

#w-node-_73ac93ea-19ee-dce3-e509-13df3825694f-23d1748f, #w-node-_73ac93ea-19ee-dce3-e509-13df38256956-23d1748f {
  place-self: center;
}

#w-node-_673974b4-6dda-2323-b15d-30b5e76cea17-6f2dda67 {
  justify-self: end;
}

#w-node-_673974b4-6dda-2323-b15d-30b5e76ceaf2-6f2dda67 {
  justify-self: start;
}

#w-node-_673974b4-6dda-2323-b15d-30b5e76ceaf3-6f2dda67, #w-node-_673974b4-6dda-2323-b15d-30b5e76ceaf4-6f2dda67, #w-node-_673974b4-6dda-2323-b15d-30b5e76ceaf5-6f2dda67, #w-node-_673974b4-6dda-2323-b15d-30b5e76ceaf6-6f2dda67, #w-node-_673974b4-6dda-2323-b15d-30b5e76ceaf7-6f2dda67, #w-node-_426fe05d-b1ab-4d22-2e20-4a0da6e30c3a-6f2dda67, #w-node-_11275636-d12d-956c-5a46-392c7932893e-6f2dda67 {
  place-self: center start;
}

#w-node-_673974b4-6dda-2323-b15d-30b5e76cebb7-6f2dda67, #w-node-_673974b4-6dda-2323-b15d-30b5e76cebba-6f2dda67, #w-node-_673974b4-6dda-2323-b15d-30b5e76cebbd-6f2dda67, #w-node-_673974b4-6dda-2323-b15d-30b5e76cebc0-6f2dda67, #w-node-_673974b4-6dda-2323-b15d-30b5e76cebc3-6f2dda67, #w-node-_673974b4-6dda-2323-b15d-30b5e76cebc6-6f2dda67, #w-node-_673974b4-6dda-2323-b15d-30b5e76cebc9-6f2dda67, #w-node-_673974b4-6dda-2323-b15d-30b5e76cebcc-6f2dda67, #w-node-_673974b4-6dda-2323-b15d-30b5e76cebcf-6f2dda67, #w-node-_673974b4-6dda-2323-b15d-30b5e76cebd2-6f2dda67, #w-node-_673974b4-6dda-2323-b15d-30b5e76cebd5-6f2dda67, #w-node-_673974b4-6dda-2323-b15d-30b5e76cebd8-6f2dda67, #w-node-_673974b4-6dda-2323-b15d-30b5e76cebdb-6f2dda67, #w-node-_673974b4-6dda-2323-b15d-30b5e76cebde-6f2dda67, #w-node-_673974b4-6dda-2323-b15d-30b5e76cebe1-6f2dda67, #w-node-_673974b4-6dda-2323-b15d-30b5e76cebe4-6f2dda67, #w-node-_673974b4-6dda-2323-b15d-30b5e76cebe7-6f2dda67, #w-node-_673974b4-6dda-2323-b15d-30b5e76cebea-6f2dda67, #w-node-_673974b4-6dda-2323-b15d-30b5e76cebed-6f2dda67, #w-node-_673974b4-6dda-2323-b15d-30b5e76cebf0-6f2dda67, #w-node-_673974b4-6dda-2323-b15d-30b5e76cebf3-6f2dda67, #w-node-_673974b4-6dda-2323-b15d-30b5e76cebf6-6f2dda67, #w-node-_673974b4-6dda-2323-b15d-30b5e76cebf9-6f2dda67, #w-node-_673974b4-6dda-2323-b15d-30b5e76cebfc-6f2dda67, #w-node-_673974b4-6dda-2323-b15d-30b5e76cebff-6f2dda67, #w-node-_673974b4-6dda-2323-b15d-30b5e76cec02-6f2dda67, #w-node-_673974b4-6dda-2323-b15d-30b5e76cec05-6f2dda67, #w-node-_673974b4-6dda-2323-b15d-30b5e76cec08-6f2dda67, #w-node-_673974b4-6dda-2323-b15d-30b5e76cec0b-6f2dda67, #w-node-_673974b4-6dda-2323-b15d-30b5e76cec0e-6f2dda67, #w-node-_673974b4-6dda-2323-b15d-30b5e76cec11-6f2dda67, #w-node-_673974b4-6dda-2323-b15d-30b5e76cec14-6f2dda67, #w-node-_673974b4-6dda-2323-b15d-30b5e76cec17-6f2dda67, #w-node-_673974b4-6dda-2323-b15d-30b5e76cec1a-6f2dda67, #w-node-_673974b4-6dda-2323-b15d-30b5e76cec1d-6f2dda67 {
  justify-self: stretch;
}

#w-node-_673974b4-6dda-2323-b15d-30b5e76cec4f-6f2dda67, #w-node-_673974b4-6dda-2323-b15d-30b5e76cec56-6f2dda67 {
  place-self: center;
}

#w-node-_3c8f5fa0-b11f-7e18-3f2e-a38595ac77f3-3abe9afd {
  justify-self: end;
}

#w-node-_3c8f5fa0-b11f-7e18-3f2e-a38595ac7847-3abe9afd, #w-node-_3c8f5fa0-b11f-7e18-3f2e-a38595ac784a-3abe9afd, #w-node-_3c8f5fa0-b11f-7e18-3f2e-a38595ac784d-3abe9afd, #w-node-_3c8f5fa0-b11f-7e18-3f2e-a38595ac7850-3abe9afd, #w-node-_3c8f5fa0-b11f-7e18-3f2e-a38595ac7853-3abe9afd, #w-node-_3c8f5fa0-b11f-7e18-3f2e-a38595ac7856-3abe9afd, #w-node-_3c8f5fa0-b11f-7e18-3f2e-a38595ac785a-3abe9afd, #w-node-_3c8f5fa0-b11f-7e18-3f2e-a38595ac785d-3abe9afd, #w-node-_3c8f5fa0-b11f-7e18-3f2e-a38595ac7873-3abe9afd, #w-node-c9a23c35-7065-67c0-83e8-4da8704350d1-3abe9afd, #w-node-_3c8f5fa0-b11f-7e18-3f2e-a38595ac7876-3abe9afd {
  justify-self: stretch;
}

#w-node-_3c8f5fa0-b11f-7e18-3f2e-a38595ac7879-3abe9afd {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: stretch;
}

#w-node-_3c8f5fa0-b11f-7e18-3f2e-a38595ac787c-3abe9afd, #w-node-_3c8f5fa0-b11f-7e18-3f2e-a38595ac787f-3abe9afd, #w-node-_3c8f5fa0-b11f-7e18-3f2e-a38595ac7882-3abe9afd, #w-node-_3c8f5fa0-b11f-7e18-3f2e-a38595ac7885-3abe9afd, #w-node-_3c8f5fa0-b11f-7e18-3f2e-a38595ac7889-3abe9afd, #w-node-_3c8f5fa0-b11f-7e18-3f2e-a38595ac788c-3abe9afd, #w-node-_3c8f5fa0-b11f-7e18-3f2e-a38595ac788f-3abe9afd, #w-node-_3c8f5fa0-b11f-7e18-3f2e-a38595ac7892-3abe9afd, #w-node-_3c8f5fa0-b11f-7e18-3f2e-a38595ac7895-3abe9afd, #w-node-_3c8f5fa0-b11f-7e18-3f2e-a38595ac7898-3abe9afd, #w-node-_3c8f5fa0-b11f-7e18-3f2e-a38595ac789c-3abe9afd, #w-node-_3c8f5fa0-b11f-7e18-3f2e-a38595ac789f-3abe9afd, #w-node-_9d345e12-a2ba-c400-fbbb-9477e694e1b5-3abe9afd, #w-node-_6c170b54-66e8-d6a6-f03f-8539aee56568-3abe9afd, #w-node-b06d5aee-e308-d4a9-d394-52bdebc37dd7-3abe9afd, #w-node-_3f3161dc-ca26-6b80-e29d-79b39cb5c58e-3abe9afd {
  justify-self: stretch;
}

#w-node-_3c8f5fa0-b11f-7e18-3f2e-a38595ac78c5-3abe9afd {
  justify-self: start;
}

#w-node-_3c8f5fa0-b11f-7e18-3f2e-a38595ac78c6-3abe9afd, #w-node-_3c8f5fa0-b11f-7e18-3f2e-a38595ac78c7-3abe9afd, #w-node-_3c8f5fa0-b11f-7e18-3f2e-a38595ac78c8-3abe9afd, #w-node-_3c8f5fa0-b11f-7e18-3f2e-a38595ac78c9-3abe9afd, #w-node-_3c8f5fa0-b11f-7e18-3f2e-a38595ac78ca-3abe9afd, #w-node-_3c8f5fa0-b11f-7e18-3f2e-a38595ac78cb-3abe9afd, #w-node-_435f26f9-ead4-157c-1aa5-fd7b05c5d99e-3abe9afd {
  place-self: center start;
}

#w-node-_3c8f5fa0-b11f-7e18-3f2e-a38595ac7927-3abe9afd {
  justify-self: start;
}

#w-node-_3c8f5fa0-b11f-7e18-3f2e-a38595ac7928-3abe9afd, #w-node-_3c8f5fa0-b11f-7e18-3f2e-a38595ac7929-3abe9afd {
  place-self: center start;
}

#w-node-_3c8f5fa0-b11f-7e18-3f2e-a38595ac792a-3abe9afd, #w-node-_3c8f5fa0-b11f-7e18-3f2e-a38595ac792b-3abe9afd {
  place-self: center;
}

#w-node-_3c8f5fa0-b11f-7e18-3f2e-a38595ac79e9-3abe9afd, #w-node-_3c8f5fa0-b11f-7e18-3f2e-a38595ac79ec-3abe9afd, #w-node-_3c8f5fa0-b11f-7e18-3f2e-a38595ac79ef-3abe9afd, #w-node-_3c8f5fa0-b11f-7e18-3f2e-a38595ac79f2-3abe9afd, #w-node-_3c8f5fa0-b11f-7e18-3f2e-a38595ac79f5-3abe9afd, #w-node-_3c8f5fa0-b11f-7e18-3f2e-a38595ac79f8-3abe9afd, #w-node-_3c8f5fa0-b11f-7e18-3f2e-a38595ac79fb-3abe9afd, #w-node-_3c8f5fa0-b11f-7e18-3f2e-a38595ac79fe-3abe9afd, #w-node-_3c8f5fa0-b11f-7e18-3f2e-a38595ac7a01-3abe9afd, #w-node-_3c8f5fa0-b11f-7e18-3f2e-a38595ac7a04-3abe9afd, #w-node-_3c8f5fa0-b11f-7e18-3f2e-a38595ac7a07-3abe9afd, #w-node-_3c8f5fa0-b11f-7e18-3f2e-a38595ac7a0a-3abe9afd, #w-node-_3c8f5fa0-b11f-7e18-3f2e-a38595ac7a0d-3abe9afd, #w-node-_3c8f5fa0-b11f-7e18-3f2e-a38595ac7a10-3abe9afd, #w-node-_3c8f5fa0-b11f-7e18-3f2e-a38595ac7a13-3abe9afd, #w-node-_3c8f5fa0-b11f-7e18-3f2e-a38595ac7a16-3abe9afd, #w-node-_3c8f5fa0-b11f-7e18-3f2e-a38595ac7a19-3abe9afd, #w-node-_3c8f5fa0-b11f-7e18-3f2e-a38595ac7a1c-3abe9afd, #w-node-_3c8f5fa0-b11f-7e18-3f2e-a38595ac7a1f-3abe9afd, #w-node-_3c8f5fa0-b11f-7e18-3f2e-a38595ac7a22-3abe9afd, #w-node-_3c8f5fa0-b11f-7e18-3f2e-a38595ac7a25-3abe9afd, #w-node-_3c8f5fa0-b11f-7e18-3f2e-a38595ac7a28-3abe9afd, #w-node-_3c8f5fa0-b11f-7e18-3f2e-a38595ac7a2b-3abe9afd, #w-node-_3c8f5fa0-b11f-7e18-3f2e-a38595ac7a2e-3abe9afd, #w-node-_3c8f5fa0-b11f-7e18-3f2e-a38595ac7a31-3abe9afd, #w-node-_3c8f5fa0-b11f-7e18-3f2e-a38595ac7a34-3abe9afd, #w-node-_3c8f5fa0-b11f-7e18-3f2e-a38595ac7a37-3abe9afd, #w-node-_3c8f5fa0-b11f-7e18-3f2e-a38595ac7a3a-3abe9afd, #w-node-_3c8f5fa0-b11f-7e18-3f2e-a38595ac7a3d-3abe9afd, #w-node-_3c8f5fa0-b11f-7e18-3f2e-a38595ac7a40-3abe9afd, #w-node-_3c8f5fa0-b11f-7e18-3f2e-a38595ac7a43-3abe9afd, #w-node-_3c8f5fa0-b11f-7e18-3f2e-a38595ac7a46-3abe9afd, #w-node-_3c8f5fa0-b11f-7e18-3f2e-a38595ac7a49-3abe9afd, #w-node-_3c8f5fa0-b11f-7e18-3f2e-a38595ac7a4c-3abe9afd, #w-node-_3c8f5fa0-b11f-7e18-3f2e-a38595ac7a4f-3abe9afd {
  justify-self: stretch;
}

#w-node-_3c8f5fa0-b11f-7e18-3f2e-a38595ac7a81-3abe9afd, #w-node-_3c8f5fa0-b11f-7e18-3f2e-a38595ac7a88-3abe9afd {
  place-self: center;
}

#w-node-befd5c89-df0d-d3e9-8d94-89f6018db2a9-d89b484c {
  justify-self: end;
}

#w-node-befd5c89-df0d-d3e9-8d94-89f6018db39a-d89b484c {
  justify-self: start;
}

#w-node-befd5c89-df0d-d3e9-8d94-89f6018db39b-d89b484c, #w-node-befd5c89-df0d-d3e9-8d94-89f6018db39c-d89b484c, #w-node-befd5c89-df0d-d3e9-8d94-89f6018db39d-d89b484c, #w-node-befd5c89-df0d-d3e9-8d94-89f6018db39e-d89b484c, #w-node-befd5c89-df0d-d3e9-8d94-89f6018db39f-d89b484c, #w-node-befd5c89-df0d-d3e9-8d94-89f6018db3a0-d89b484c {
  place-self: center start;
}

#w-node-befd5c89-df0d-d3e9-8d94-89f6018db47d-d89b484c, #w-node-befd5c89-df0d-d3e9-8d94-89f6018db480-d89b484c, #w-node-befd5c89-df0d-d3e9-8d94-89f6018db483-d89b484c, #w-node-befd5c89-df0d-d3e9-8d94-89f6018db486-d89b484c, #w-node-befd5c89-df0d-d3e9-8d94-89f6018db489-d89b484c, #w-node-befd5c89-df0d-d3e9-8d94-89f6018db48c-d89b484c, #w-node-befd5c89-df0d-d3e9-8d94-89f6018db48f-d89b484c, #w-node-befd5c89-df0d-d3e9-8d94-89f6018db492-d89b484c, #w-node-befd5c89-df0d-d3e9-8d94-89f6018db495-d89b484c, #w-node-befd5c89-df0d-d3e9-8d94-89f6018db498-d89b484c, #w-node-befd5c89-df0d-d3e9-8d94-89f6018db49b-d89b484c, #w-node-befd5c89-df0d-d3e9-8d94-89f6018db49e-d89b484c, #w-node-befd5c89-df0d-d3e9-8d94-89f6018db4a1-d89b484c, #w-node-befd5c89-df0d-d3e9-8d94-89f6018db4a4-d89b484c, #w-node-befd5c89-df0d-d3e9-8d94-89f6018db4a7-d89b484c, #w-node-befd5c89-df0d-d3e9-8d94-89f6018db4aa-d89b484c, #w-node-befd5c89-df0d-d3e9-8d94-89f6018db4ad-d89b484c, #w-node-befd5c89-df0d-d3e9-8d94-89f6018db4b0-d89b484c, #w-node-befd5c89-df0d-d3e9-8d94-89f6018db4b3-d89b484c, #w-node-befd5c89-df0d-d3e9-8d94-89f6018db4b6-d89b484c, #w-node-befd5c89-df0d-d3e9-8d94-89f6018db4b9-d89b484c, #w-node-befd5c89-df0d-d3e9-8d94-89f6018db4bc-d89b484c, #w-node-befd5c89-df0d-d3e9-8d94-89f6018db4bf-d89b484c, #w-node-befd5c89-df0d-d3e9-8d94-89f6018db4c2-d89b484c, #w-node-befd5c89-df0d-d3e9-8d94-89f6018db4c5-d89b484c, #w-node-befd5c89-df0d-d3e9-8d94-89f6018db4c8-d89b484c, #w-node-befd5c89-df0d-d3e9-8d94-89f6018db4cb-d89b484c, #w-node-befd5c89-df0d-d3e9-8d94-89f6018db4ce-d89b484c, #w-node-befd5c89-df0d-d3e9-8d94-89f6018db4d1-d89b484c, #w-node-befd5c89-df0d-d3e9-8d94-89f6018db4d4-d89b484c, #w-node-befd5c89-df0d-d3e9-8d94-89f6018db4d7-d89b484c, #w-node-befd5c89-df0d-d3e9-8d94-89f6018db4da-d89b484c, #w-node-befd5c89-df0d-d3e9-8d94-89f6018db4dd-d89b484c, #w-node-befd5c89-df0d-d3e9-8d94-89f6018db4e0-d89b484c, #w-node-befd5c89-df0d-d3e9-8d94-89f6018db4e3-d89b484c {
  justify-self: stretch;
}

#w-node-befd5c89-df0d-d3e9-8d94-89f6018db515-d89b484c, #w-node-befd5c89-df0d-d3e9-8d94-89f6018db51c-d89b484c {
  place-self: center;
}

#w-node-_702e02c1-e3a4-28cc-eacb-f0cd5a2ee185-72ef2cd0 {
  justify-self: end;
}

#w-node-_702e02c1-e3a4-28cc-eacb-f0cd5a2ee264-72ef2cd0 {
  justify-self: start;
}

#w-node-_702e02c1-e3a4-28cc-eacb-f0cd5a2ee265-72ef2cd0, #w-node-_702e02c1-e3a4-28cc-eacb-f0cd5a2ee266-72ef2cd0, #w-node-_702e02c1-e3a4-28cc-eacb-f0cd5a2ee267-72ef2cd0, #w-node-_702e02c1-e3a4-28cc-eacb-f0cd5a2ee268-72ef2cd0, #w-node-_702e02c1-e3a4-28cc-eacb-f0cd5a2ee269-72ef2cd0, #w-node-_702e02c1-e3a4-28cc-eacb-f0cd5a2ee26a-72ef2cd0, #w-node-b08bd670-565a-5159-e8a6-dd2f6cf0b020-72ef2cd0 {
  place-self: center start;
}

#w-node-_702e02c1-e3a4-28cc-eacb-f0cd5a2ee34e-72ef2cd0, #w-node-_702e02c1-e3a4-28cc-eacb-f0cd5a2ee351-72ef2cd0, #w-node-_702e02c1-e3a4-28cc-eacb-f0cd5a2ee354-72ef2cd0, #w-node-_702e02c1-e3a4-28cc-eacb-f0cd5a2ee357-72ef2cd0, #w-node-_702e02c1-e3a4-28cc-eacb-f0cd5a2ee35a-72ef2cd0, #w-node-_702e02c1-e3a4-28cc-eacb-f0cd5a2ee35d-72ef2cd0, #w-node-_702e02c1-e3a4-28cc-eacb-f0cd5a2ee360-72ef2cd0, #w-node-_702e02c1-e3a4-28cc-eacb-f0cd5a2ee363-72ef2cd0, #w-node-_702e02c1-e3a4-28cc-eacb-f0cd5a2ee366-72ef2cd0, #w-node-_702e02c1-e3a4-28cc-eacb-f0cd5a2ee369-72ef2cd0, #w-node-_702e02c1-e3a4-28cc-eacb-f0cd5a2ee36c-72ef2cd0, #w-node-_702e02c1-e3a4-28cc-eacb-f0cd5a2ee36f-72ef2cd0, #w-node-_702e02c1-e3a4-28cc-eacb-f0cd5a2ee372-72ef2cd0, #w-node-_702e02c1-e3a4-28cc-eacb-f0cd5a2ee375-72ef2cd0, #w-node-_702e02c1-e3a4-28cc-eacb-f0cd5a2ee378-72ef2cd0, #w-node-_702e02c1-e3a4-28cc-eacb-f0cd5a2ee37b-72ef2cd0, #w-node-_702e02c1-e3a4-28cc-eacb-f0cd5a2ee37e-72ef2cd0, #w-node-_702e02c1-e3a4-28cc-eacb-f0cd5a2ee381-72ef2cd0, #w-node-_702e02c1-e3a4-28cc-eacb-f0cd5a2ee384-72ef2cd0, #w-node-_702e02c1-e3a4-28cc-eacb-f0cd5a2ee387-72ef2cd0, #w-node-_702e02c1-e3a4-28cc-eacb-f0cd5a2ee38a-72ef2cd0, #w-node-_702e02c1-e3a4-28cc-eacb-f0cd5a2ee38d-72ef2cd0, #w-node-_702e02c1-e3a4-28cc-eacb-f0cd5a2ee390-72ef2cd0, #w-node-_702e02c1-e3a4-28cc-eacb-f0cd5a2ee393-72ef2cd0, #w-node-_702e02c1-e3a4-28cc-eacb-f0cd5a2ee396-72ef2cd0, #w-node-_702e02c1-e3a4-28cc-eacb-f0cd5a2ee399-72ef2cd0, #w-node-_702e02c1-e3a4-28cc-eacb-f0cd5a2ee39c-72ef2cd0, #w-node-_702e02c1-e3a4-28cc-eacb-f0cd5a2ee39f-72ef2cd0, #w-node-_702e02c1-e3a4-28cc-eacb-f0cd5a2ee3a2-72ef2cd0, #w-node-_702e02c1-e3a4-28cc-eacb-f0cd5a2ee3a5-72ef2cd0, #w-node-_702e02c1-e3a4-28cc-eacb-f0cd5a2ee3a8-72ef2cd0, #w-node-_702e02c1-e3a4-28cc-eacb-f0cd5a2ee3ab-72ef2cd0, #w-node-_702e02c1-e3a4-28cc-eacb-f0cd5a2ee3ae-72ef2cd0, #w-node-_702e02c1-e3a4-28cc-eacb-f0cd5a2ee3b1-72ef2cd0, #w-node-_702e02c1-e3a4-28cc-eacb-f0cd5a2ee3b4-72ef2cd0 {
  justify-self: stretch;
}

#w-node-_702e02c1-e3a4-28cc-eacb-f0cd5a2ee3e6-72ef2cd0, #w-node-_702e02c1-e3a4-28cc-eacb-f0cd5a2ee3ed-72ef2cd0 {
  place-self: center;
}

#w-node-_7fbdebff-b004-76c8-5cd9-847fb705e5d9-027880bc {
  justify-self: end;
}

#w-node-_7fbdebff-b004-76c8-5cd9-847fb705e6d2-027880bc {
  justify-self: start;
}

#w-node-_7fbdebff-b004-76c8-5cd9-847fb705e6d3-027880bc, #w-node-_7fbdebff-b004-76c8-5cd9-847fb705e6d4-027880bc, #w-node-_7fbdebff-b004-76c8-5cd9-847fb705e6d5-027880bc, #w-node-_7fbdebff-b004-76c8-5cd9-847fb705e6d6-027880bc, #w-node-_7fbdebff-b004-76c8-5cd9-847fb705e6d7-027880bc, #w-node-_7fbdebff-b004-76c8-5cd9-847fb705e6d8-027880bc, #w-node-_7fbdebff-b004-76c8-5cd9-847fb705e6d9-027880bc {
  place-self: center start;
}

#w-node-_7fbdebff-b004-76c8-5cd9-847fb705e7ef-027880bc, #w-node-_7fbdebff-b004-76c8-5cd9-847fb705e7f2-027880bc, #w-node-_7fbdebff-b004-76c8-5cd9-847fb705e7f5-027880bc, #w-node-_7fbdebff-b004-76c8-5cd9-847fb705e7f8-027880bc, #w-node-_7fbdebff-b004-76c8-5cd9-847fb705e7fb-027880bc, #w-node-_7fbdebff-b004-76c8-5cd9-847fb705e7fe-027880bc, #w-node-_7fbdebff-b004-76c8-5cd9-847fb705e801-027880bc, #w-node-_7fbdebff-b004-76c8-5cd9-847fb705e804-027880bc, #w-node-_7fbdebff-b004-76c8-5cd9-847fb705e807-027880bc, #w-node-_7fbdebff-b004-76c8-5cd9-847fb705e80a-027880bc, #w-node-_7fbdebff-b004-76c8-5cd9-847fb705e80d-027880bc, #w-node-_7fbdebff-b004-76c8-5cd9-847fb705e810-027880bc, #w-node-_7fbdebff-b004-76c8-5cd9-847fb705e813-027880bc, #w-node-_7fbdebff-b004-76c8-5cd9-847fb705e816-027880bc, #w-node-_7fbdebff-b004-76c8-5cd9-847fb705e819-027880bc, #w-node-_7fbdebff-b004-76c8-5cd9-847fb705e81c-027880bc, #w-node-_7fbdebff-b004-76c8-5cd9-847fb705e81f-027880bc, #w-node-_7fbdebff-b004-76c8-5cd9-847fb705e822-027880bc, #w-node-_7fbdebff-b004-76c8-5cd9-847fb705e825-027880bc, #w-node-_7fbdebff-b004-76c8-5cd9-847fb705e828-027880bc, #w-node-_7fbdebff-b004-76c8-5cd9-847fb705e82b-027880bc, #w-node-_7fbdebff-b004-76c8-5cd9-847fb705e82e-027880bc, #w-node-_7fbdebff-b004-76c8-5cd9-847fb705e831-027880bc, #w-node-_7fbdebff-b004-76c8-5cd9-847fb705e834-027880bc, #w-node-_7fbdebff-b004-76c8-5cd9-847fb705e837-027880bc, #w-node-_7fbdebff-b004-76c8-5cd9-847fb705e83a-027880bc, #w-node-_7fbdebff-b004-76c8-5cd9-847fb705e83d-027880bc, #w-node-_7fbdebff-b004-76c8-5cd9-847fb705e840-027880bc, #w-node-_7fbdebff-b004-76c8-5cd9-847fb705e843-027880bc, #w-node-_7fbdebff-b004-76c8-5cd9-847fb705e846-027880bc, #w-node-_7fbdebff-b004-76c8-5cd9-847fb705e849-027880bc, #w-node-_7fbdebff-b004-76c8-5cd9-847fb705e84c-027880bc, #w-node-_7fbdebff-b004-76c8-5cd9-847fb705e84f-027880bc, #w-node-_7fbdebff-b004-76c8-5cd9-847fb705e852-027880bc, #w-node-_7fbdebff-b004-76c8-5cd9-847fb705e855-027880bc {
  justify-self: stretch;
}

#w-node-_7fbdebff-b004-76c8-5cd9-847fb705e887-027880bc, #w-node-_7fbdebff-b004-76c8-5cd9-847fb705e88e-027880bc {
  place-self: center;
}

#w-node-_1177be47-3809-d182-edfe-8b151bacd513-f55d84f2 {
  align-self: end;
}

#w-node-_1177be47-3809-d182-edfe-8b151bacd54a-f55d84f2, #w-node-_1177be47-3809-d182-edfe-8b151bacd54b-f55d84f2, #w-node-_1177be47-3809-d182-edfe-8b151bacd54c-f55d84f2, #w-node-_1177be47-3809-d182-edfe-8b151bacd54d-f55d84f2, #w-node-_1177be47-3809-d182-edfe-8b151bacd54e-f55d84f2, #w-node-_1177be47-3809-d182-edfe-8b151bacd54f-f55d84f2, #w-node-_1177be47-3809-d182-edfe-8b151bacd564-f55d84f2, #w-node-_1177be47-3809-d182-edfe-8b151bacd565-f55d84f2, #w-node-_1177be47-3809-d182-edfe-8b151bacd566-f55d84f2, #w-node-_1177be47-3809-d182-edfe-8b151bacd567-f55d84f2, #w-node-_1177be47-3809-d182-edfe-8b151bacd568-f55d84f2, #w-node-_1177be47-3809-d182-edfe-8b151bacd569-f55d84f2 {
  justify-self: start;
}

#w-node-_1177be47-3809-d182-edfe-8b151bacd598-f55d84f2 {
  place-self: center start;
}

#w-node-_1177be47-3809-d182-edfe-8b151bacd5ac-f55d84f2, #w-node-_1177be47-3809-d182-edfe-8b151bacd5b1-f55d84f2, #w-node-_1177be47-3809-d182-edfe-8b151bacd5b6-f55d84f2 {
  place-self: center;
}

#w-node-f3559764-b1a9-3182-57f2-e8c87f51f504-84d06c0d {
  justify-self: end;
}

#w-node-f3559764-b1a9-3182-57f2-e8c87f51f5fc-84d06c0d {
  justify-self: start;
}

#w-node-f3559764-b1a9-3182-57f2-e8c87f51f5fd-84d06c0d, #w-node-f3559764-b1a9-3182-57f2-e8c87f51f5fe-84d06c0d, #w-node-f3559764-b1a9-3182-57f2-e8c87f51f5ff-84d06c0d, #w-node-f3559764-b1a9-3182-57f2-e8c87f51f600-84d06c0d, #w-node-f3559764-b1a9-3182-57f2-e8c87f51f601-84d06c0d, #w-node-f3559764-b1a9-3182-57f2-e8c87f51f602-84d06c0d, #w-node-f3559764-b1a9-3182-57f2-e8c87f51f603-84d06c0d {
  place-self: center start;
}

#w-node-f3559764-b1a9-3182-57f2-e8c87f51f713-84d06c0d, #w-node-f3559764-b1a9-3182-57f2-e8c87f51f716-84d06c0d, #w-node-f3559764-b1a9-3182-57f2-e8c87f51f719-84d06c0d, #w-node-f3559764-b1a9-3182-57f2-e8c87f51f71c-84d06c0d, #w-node-f3559764-b1a9-3182-57f2-e8c87f51f71f-84d06c0d, #w-node-f3559764-b1a9-3182-57f2-e8c87f51f722-84d06c0d, #w-node-f3559764-b1a9-3182-57f2-e8c87f51f725-84d06c0d, #w-node-f3559764-b1a9-3182-57f2-e8c87f51f728-84d06c0d, #w-node-f3559764-b1a9-3182-57f2-e8c87f51f72b-84d06c0d, #w-node-f3559764-b1a9-3182-57f2-e8c87f51f72e-84d06c0d, #w-node-f3559764-b1a9-3182-57f2-e8c87f51f731-84d06c0d, #w-node-f3559764-b1a9-3182-57f2-e8c87f51f734-84d06c0d, #w-node-f3559764-b1a9-3182-57f2-e8c87f51f737-84d06c0d, #w-node-f3559764-b1a9-3182-57f2-e8c87f51f73a-84d06c0d, #w-node-f3559764-b1a9-3182-57f2-e8c87f51f73d-84d06c0d, #w-node-f3559764-b1a9-3182-57f2-e8c87f51f740-84d06c0d, #w-node-f3559764-b1a9-3182-57f2-e8c87f51f743-84d06c0d, #w-node-f3559764-b1a9-3182-57f2-e8c87f51f746-84d06c0d, #w-node-f3559764-b1a9-3182-57f2-e8c87f51f749-84d06c0d, #w-node-f3559764-b1a9-3182-57f2-e8c87f51f74c-84d06c0d, #w-node-f3559764-b1a9-3182-57f2-e8c87f51f74f-84d06c0d, #w-node-f3559764-b1a9-3182-57f2-e8c87f51f752-84d06c0d, #w-node-f3559764-b1a9-3182-57f2-e8c87f51f755-84d06c0d, #w-node-f3559764-b1a9-3182-57f2-e8c87f51f758-84d06c0d, #w-node-f3559764-b1a9-3182-57f2-e8c87f51f75b-84d06c0d, #w-node-f3559764-b1a9-3182-57f2-e8c87f51f75e-84d06c0d, #w-node-f3559764-b1a9-3182-57f2-e8c87f51f761-84d06c0d, #w-node-f3559764-b1a9-3182-57f2-e8c87f51f764-84d06c0d, #w-node-f3559764-b1a9-3182-57f2-e8c87f51f767-84d06c0d, #w-node-f3559764-b1a9-3182-57f2-e8c87f51f76a-84d06c0d, #w-node-f3559764-b1a9-3182-57f2-e8c87f51f76d-84d06c0d, #w-node-f3559764-b1a9-3182-57f2-e8c87f51f770-84d06c0d, #w-node-f3559764-b1a9-3182-57f2-e8c87f51f773-84d06c0d, #w-node-f3559764-b1a9-3182-57f2-e8c87f51f776-84d06c0d, #w-node-f3559764-b1a9-3182-57f2-e8c87f51f779-84d06c0d {
  justify-self: stretch;
}

#w-node-f3559764-b1a9-3182-57f2-e8c87f51f7ab-84d06c0d, #w-node-f3559764-b1a9-3182-57f2-e8c87f51f7b2-84d06c0d {
  place-self: center;
}

#w-node-_3dab6675-eb25-e5cb-8013-b6d3171643d9-554dcfb9 {
  justify-self: end;
}

#w-node-_3dab6675-eb25-e5cb-8013-b6d3171644bd-554dcfb9 {
  justify-self: start;
}

#w-node-_3dab6675-eb25-e5cb-8013-b6d3171644be-554dcfb9, #w-node-_3dab6675-eb25-e5cb-8013-b6d3171644bf-554dcfb9, #w-node-_3dab6675-eb25-e5cb-8013-b6d3171644c0-554dcfb9, #w-node-_3dab6675-eb25-e5cb-8013-b6d3171644c1-554dcfb9, #w-node-_3dab6675-eb25-e5cb-8013-b6d3171644c2-554dcfb9, #w-node-_3dab6675-eb25-e5cb-8013-b6d3171644c3-554dcfb9, #w-node-_3dab6675-eb25-e5cb-8013-b6d3171644c4-554dcfb9 {
  place-self: center start;
}

#w-node-_3dab6675-eb25-e5cb-8013-b6d3171645e2-554dcfb9, #w-node-_3dab6675-eb25-e5cb-8013-b6d3171645e5-554dcfb9, #w-node-_3dab6675-eb25-e5cb-8013-b6d3171645e8-554dcfb9, #w-node-_3dab6675-eb25-e5cb-8013-b6d3171645eb-554dcfb9, #w-node-_3dab6675-eb25-e5cb-8013-b6d3171645ee-554dcfb9, #w-node-_3dab6675-eb25-e5cb-8013-b6d3171645f1-554dcfb9, #w-node-_3dab6675-eb25-e5cb-8013-b6d3171645f4-554dcfb9, #w-node-_3dab6675-eb25-e5cb-8013-b6d3171645f7-554dcfb9, #w-node-_3dab6675-eb25-e5cb-8013-b6d3171645fa-554dcfb9, #w-node-_3dab6675-eb25-e5cb-8013-b6d3171645fd-554dcfb9, #w-node-_3dab6675-eb25-e5cb-8013-b6d317164600-554dcfb9, #w-node-_3dab6675-eb25-e5cb-8013-b6d317164603-554dcfb9, #w-node-_3dab6675-eb25-e5cb-8013-b6d317164606-554dcfb9, #w-node-_3dab6675-eb25-e5cb-8013-b6d317164609-554dcfb9, #w-node-_3dab6675-eb25-e5cb-8013-b6d31716460c-554dcfb9, #w-node-_3dab6675-eb25-e5cb-8013-b6d31716460f-554dcfb9, #w-node-_3dab6675-eb25-e5cb-8013-b6d317164612-554dcfb9, #w-node-_3dab6675-eb25-e5cb-8013-b6d317164615-554dcfb9, #w-node-_3dab6675-eb25-e5cb-8013-b6d317164618-554dcfb9, #w-node-_3dab6675-eb25-e5cb-8013-b6d31716461b-554dcfb9, #w-node-_3dab6675-eb25-e5cb-8013-b6d31716461e-554dcfb9, #w-node-_3dab6675-eb25-e5cb-8013-b6d317164621-554dcfb9, #w-node-_3dab6675-eb25-e5cb-8013-b6d317164624-554dcfb9, #w-node-_3dab6675-eb25-e5cb-8013-b6d317164627-554dcfb9, #w-node-_3dab6675-eb25-e5cb-8013-b6d31716462a-554dcfb9, #w-node-_3dab6675-eb25-e5cb-8013-b6d31716462d-554dcfb9, #w-node-_3dab6675-eb25-e5cb-8013-b6d317164630-554dcfb9, #w-node-_3dab6675-eb25-e5cb-8013-b6d317164633-554dcfb9, #w-node-_3dab6675-eb25-e5cb-8013-b6d317164636-554dcfb9, #w-node-_3dab6675-eb25-e5cb-8013-b6d317164639-554dcfb9, #w-node-_3dab6675-eb25-e5cb-8013-b6d31716463c-554dcfb9, #w-node-_3dab6675-eb25-e5cb-8013-b6d31716463f-554dcfb9, #w-node-_3dab6675-eb25-e5cb-8013-b6d317164642-554dcfb9, #w-node-_3dab6675-eb25-e5cb-8013-b6d317164645-554dcfb9, #w-node-_3dab6675-eb25-e5cb-8013-b6d317164648-554dcfb9 {
  justify-self: stretch;
}

#w-node-_3dab6675-eb25-e5cb-8013-b6d31716467a-554dcfb9, #w-node-_3dab6675-eb25-e5cb-8013-b6d317164681-554dcfb9 {
  place-self: center;
}

#w-node-_1595a464-9b3c-cf38-b103-76ea143b683e-cbf2228e {
  justify-self: end;
}

#w-node-_1595a464-9b3c-cf38-b103-76ea143b6a4d-cbf2228e, #w-node-_1595a464-9b3c-cf38-b103-76ea143b6a50-cbf2228e, #w-node-_1595a464-9b3c-cf38-b103-76ea143b6a53-cbf2228e, #w-node-_1595a464-9b3c-cf38-b103-76ea143b6a56-cbf2228e, #w-node-_1595a464-9b3c-cf38-b103-76ea143b6a59-cbf2228e, #w-node-_1595a464-9b3c-cf38-b103-76ea143b6a5c-cbf2228e, #w-node-_1595a464-9b3c-cf38-b103-76ea143b6a5f-cbf2228e, #w-node-_1595a464-9b3c-cf38-b103-76ea143b6a62-cbf2228e, #w-node-_1595a464-9b3c-cf38-b103-76ea143b6a65-cbf2228e, #w-node-_1595a464-9b3c-cf38-b103-76ea143b6a68-cbf2228e, #w-node-_1595a464-9b3c-cf38-b103-76ea143b6a6b-cbf2228e, #w-node-_1595a464-9b3c-cf38-b103-76ea143b6a6e-cbf2228e, #w-node-_1595a464-9b3c-cf38-b103-76ea143b6a71-cbf2228e, #w-node-_1595a464-9b3c-cf38-b103-76ea143b6a74-cbf2228e, #w-node-_1595a464-9b3c-cf38-b103-76ea143b6a77-cbf2228e, #w-node-_1595a464-9b3c-cf38-b103-76ea143b6a7a-cbf2228e, #w-node-_1595a464-9b3c-cf38-b103-76ea143b6a7d-cbf2228e, #w-node-_1595a464-9b3c-cf38-b103-76ea143b6a80-cbf2228e, #w-node-_1595a464-9b3c-cf38-b103-76ea143b6a83-cbf2228e, #w-node-_1595a464-9b3c-cf38-b103-76ea143b6a86-cbf2228e, #w-node-_1595a464-9b3c-cf38-b103-76ea143b6a89-cbf2228e, #w-node-_1595a464-9b3c-cf38-b103-76ea143b6a8c-cbf2228e, #w-node-_1595a464-9b3c-cf38-b103-76ea143b6a8f-cbf2228e, #w-node-_1595a464-9b3c-cf38-b103-76ea143b6a92-cbf2228e, #w-node-_1595a464-9b3c-cf38-b103-76ea143b6a95-cbf2228e, #w-node-_1595a464-9b3c-cf38-b103-76ea143b6a98-cbf2228e, #w-node-_1595a464-9b3c-cf38-b103-76ea143b6a9b-cbf2228e, #w-node-_1595a464-9b3c-cf38-b103-76ea143b6a9e-cbf2228e, #w-node-_1595a464-9b3c-cf38-b103-76ea143b6aa1-cbf2228e, #w-node-_1595a464-9b3c-cf38-b103-76ea143b6aa4-cbf2228e, #w-node-_1595a464-9b3c-cf38-b103-76ea143b6aa7-cbf2228e, #w-node-_1595a464-9b3c-cf38-b103-76ea143b6aaa-cbf2228e, #w-node-_1595a464-9b3c-cf38-b103-76ea143b6aad-cbf2228e, #w-node-_1595a464-9b3c-cf38-b103-76ea143b6ab0-cbf2228e, #w-node-_1595a464-9b3c-cf38-b103-76ea143b6ab3-cbf2228e {
  justify-self: stretch;
}

#w-node-_1595a464-9b3c-cf38-b103-76ea143b6ae5-cbf2228e, #w-node-_1595a464-9b3c-cf38-b103-76ea143b6aec-cbf2228e {
  place-self: center;
}

#w-node-_125a9fcb-b5c0-806a-5a58-2147929b3e7f-9c195ecf {
  justify-self: end;
}

#w-node-_56824f37-16bf-cc3a-5542-471521304e75-9c195ecf, #w-node-_56824f37-16bf-cc3a-5542-471521304e78-9c195ecf, #w-node-_56824f37-16bf-cc3a-5542-471521304e7b-9c195ecf {
  justify-self: stretch;
}

#w-node-_56824f37-16bf-cc3a-5542-471521304e7e-9c195ecf, #w-node-ab102695-e902-8b24-794d-b4311c182089-9c195ecf {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: stretch;
}

#w-node-_56824f37-16bf-cc3a-5542-471521304e81-9c195ecf, #w-node-_56824f37-16bf-cc3a-5542-471521304e84-9c195ecf, #w-node-_56824f37-16bf-cc3a-5542-471521304e87-9c195ecf, #w-node-_56824f37-16bf-cc3a-5542-471521304e8a-9c195ecf, #w-node-_56824f37-16bf-cc3a-5542-471521304e8e-9c195ecf, #w-node-_56824f37-16bf-cc3a-5542-471521304e91-9c195ecf, #w-node-_56824f37-16bf-cc3a-5542-471521304e94-9c195ecf, #w-node-_56824f37-16bf-cc3a-5542-471521304e97-9c195ecf, #w-node-_56824f37-16bf-cc3a-5542-471521304e9a-9c195ecf, #w-node-_56824f37-16bf-cc3a-5542-471521304e9d-9c195ecf, #w-node-_56824f37-16bf-cc3a-5542-471521304ea1-9c195ecf, #w-node-_56824f37-16bf-cc3a-5542-471521304ea4-9c195ecf, #w-node-_56824f37-16bf-cc3a-5542-471521304ea7-9c195ecf, #w-node-_56824f37-16bf-cc3a-5542-471521304eaa-9c195ecf, #w-node-_56824f37-16bf-cc3a-5542-471521304ead-9c195ecf, #w-node-f07f2d66-904f-b223-aff2-a44ff0f60634-9c195ecf, #w-node-_6d6d9f51-fadc-91db-57ed-13c6b14044a0-9c195ecf, #w-node-_8d8dbf16-d31b-d62a-6b04-bed0f50ac5cc-9c195ecf, #w-node-eadad775-457e-9337-a238-585347b6d6c3-9c195ecf, #w-node-_6aeea464-7490-80d8-7fba-a87b5360652d-9c195ecf, #w-node-_2dd35f54-5f80-5b3d-f948-9a54a7387eca-9c195ecf, #w-node-b01c8723-0951-81f9-6e32-3db183fec437-9c195ecf, #w-node-_1010ac22-2e47-404f-71b7-cfe54b531544-9c195ecf, #w-node-d1546057-a14d-3ca6-64e7-d82d617def50-9c195ecf, #w-node-_6a81cc87-e064-b344-f336-e684c63128ed-9c195ecf {
  justify-self: stretch;
}

#w-node-_125a9fcb-b5c0-806a-5a58-2147929b3fa6-9c195ecf {
  justify-self: start;
}

#w-node-_125a9fcb-b5c0-806a-5a58-2147929b3fa7-9c195ecf, #w-node-_125a9fcb-b5c0-806a-5a58-2147929b3fa8-9c195ecf, #w-node-_125a9fcb-b5c0-806a-5a58-2147929b3fa9-9c195ecf, #w-node-_125a9fcb-b5c0-806a-5a58-2147929b3faa-9c195ecf, #w-node-_125a9fcb-b5c0-806a-5a58-2147929b3fab-9c195ecf, #w-node-_125a9fcb-b5c0-806a-5a58-2147929b3fac-9c195ecf, #w-node-_125a9fcb-b5c0-806a-5a58-2147929b3fad-9c195ecf, #w-node-_3b12a92d-69a5-8695-6c3e-135100f81f5e-9c195ecf, #w-node-d4886aac-6581-3a95-6e87-c36ac8554c43-9c195ecf, #w-node-_9b5876f0-07c6-9135-b899-b36c766bee1b-9c195ecf {
  place-self: center start;
}

#w-node-_125a9fcb-b5c0-806a-5a58-2147929b40ea-9c195ecf, #w-node-_125a9fcb-b5c0-806a-5a58-2147929b40ed-9c195ecf, #w-node-_125a9fcb-b5c0-806a-5a58-2147929b40f0-9c195ecf, #w-node-_125a9fcb-b5c0-806a-5a58-2147929b40f3-9c195ecf, #w-node-_125a9fcb-b5c0-806a-5a58-2147929b40f6-9c195ecf, #w-node-_125a9fcb-b5c0-806a-5a58-2147929b40f9-9c195ecf, #w-node-_125a9fcb-b5c0-806a-5a58-2147929b40fc-9c195ecf, #w-node-_125a9fcb-b5c0-806a-5a58-2147929b40ff-9c195ecf, #w-node-_125a9fcb-b5c0-806a-5a58-2147929b4102-9c195ecf, #w-node-_125a9fcb-b5c0-806a-5a58-2147929b4105-9c195ecf, #w-node-_125a9fcb-b5c0-806a-5a58-2147929b4108-9c195ecf, #w-node-_125a9fcb-b5c0-806a-5a58-2147929b410b-9c195ecf, #w-node-_125a9fcb-b5c0-806a-5a58-2147929b410e-9c195ecf, #w-node-_125a9fcb-b5c0-806a-5a58-2147929b4111-9c195ecf, #w-node-_125a9fcb-b5c0-806a-5a58-2147929b4114-9c195ecf, #w-node-_125a9fcb-b5c0-806a-5a58-2147929b4117-9c195ecf, #w-node-_125a9fcb-b5c0-806a-5a58-2147929b411a-9c195ecf, #w-node-_125a9fcb-b5c0-806a-5a58-2147929b411d-9c195ecf, #w-node-_125a9fcb-b5c0-806a-5a58-2147929b4120-9c195ecf, #w-node-_125a9fcb-b5c0-806a-5a58-2147929b4123-9c195ecf, #w-node-_125a9fcb-b5c0-806a-5a58-2147929b4126-9c195ecf, #w-node-_125a9fcb-b5c0-806a-5a58-2147929b4129-9c195ecf, #w-node-_125a9fcb-b5c0-806a-5a58-2147929b412c-9c195ecf, #w-node-_125a9fcb-b5c0-806a-5a58-2147929b412f-9c195ecf, #w-node-_125a9fcb-b5c0-806a-5a58-2147929b4132-9c195ecf, #w-node-_125a9fcb-b5c0-806a-5a58-2147929b4135-9c195ecf, #w-node-_125a9fcb-b5c0-806a-5a58-2147929b4138-9c195ecf, #w-node-_125a9fcb-b5c0-806a-5a58-2147929b413b-9c195ecf, #w-node-_125a9fcb-b5c0-806a-5a58-2147929b413e-9c195ecf, #w-node-_125a9fcb-b5c0-806a-5a58-2147929b4141-9c195ecf, #w-node-_125a9fcb-b5c0-806a-5a58-2147929b4144-9c195ecf, #w-node-_125a9fcb-b5c0-806a-5a58-2147929b4147-9c195ecf, #w-node-_125a9fcb-b5c0-806a-5a58-2147929b414a-9c195ecf, #w-node-_125a9fcb-b5c0-806a-5a58-2147929b414d-9c195ecf, #w-node-_125a9fcb-b5c0-806a-5a58-2147929b4150-9c195ecf {
  justify-self: stretch;
}

#w-node-_125a9fcb-b5c0-806a-5a58-2147929b4182-9c195ecf, #w-node-_125a9fcb-b5c0-806a-5a58-2147929b4189-9c195ecf {
  place-self: center;
}

#w-node-ef3b6cf7-cc70-918e-3808-6879833a1632-c0abfc55 {
  justify-self: end;
}

#w-node-ef3b6cf7-cc70-918e-3808-6879833a1716-c0abfc55 {
  justify-self: start;
}

#w-node-ef3b6cf7-cc70-918e-3808-6879833a1717-c0abfc55, #w-node-ef3b6cf7-cc70-918e-3808-6879833a1718-c0abfc55, #w-node-ef3b6cf7-cc70-918e-3808-6879833a1719-c0abfc55, #w-node-ef3b6cf7-cc70-918e-3808-6879833a171a-c0abfc55, #w-node-c091e5ad-8730-3645-cbe4-3a9640c42d63-c0abfc55, #w-node-_57a7ef9b-f565-dcf3-ea1e-ddf238342441-c0abfc55 {
  place-self: center start;
}

#w-node-ef3b6cf7-cc70-918e-3808-6879833a1850-c0abfc55, #w-node-ef3b6cf7-cc70-918e-3808-6879833a1853-c0abfc55, #w-node-ef3b6cf7-cc70-918e-3808-6879833a1856-c0abfc55, #w-node-ef3b6cf7-cc70-918e-3808-6879833a1859-c0abfc55, #w-node-ef3b6cf7-cc70-918e-3808-6879833a185c-c0abfc55, #w-node-ef3b6cf7-cc70-918e-3808-6879833a185f-c0abfc55, #w-node-ef3b6cf7-cc70-918e-3808-6879833a1862-c0abfc55, #w-node-ef3b6cf7-cc70-918e-3808-6879833a1865-c0abfc55, #w-node-ef3b6cf7-cc70-918e-3808-6879833a1868-c0abfc55, #w-node-ef3b6cf7-cc70-918e-3808-6879833a186b-c0abfc55, #w-node-ef3b6cf7-cc70-918e-3808-6879833a186e-c0abfc55, #w-node-ef3b6cf7-cc70-918e-3808-6879833a1871-c0abfc55, #w-node-ef3b6cf7-cc70-918e-3808-6879833a1874-c0abfc55, #w-node-ef3b6cf7-cc70-918e-3808-6879833a1877-c0abfc55, #w-node-ef3b6cf7-cc70-918e-3808-6879833a187a-c0abfc55, #w-node-ef3b6cf7-cc70-918e-3808-6879833a187d-c0abfc55, #w-node-ef3b6cf7-cc70-918e-3808-6879833a1880-c0abfc55, #w-node-ef3b6cf7-cc70-918e-3808-6879833a1883-c0abfc55, #w-node-ef3b6cf7-cc70-918e-3808-6879833a1886-c0abfc55, #w-node-ef3b6cf7-cc70-918e-3808-6879833a1889-c0abfc55, #w-node-ef3b6cf7-cc70-918e-3808-6879833a188c-c0abfc55, #w-node-ef3b6cf7-cc70-918e-3808-6879833a188f-c0abfc55, #w-node-ef3b6cf7-cc70-918e-3808-6879833a1892-c0abfc55, #w-node-ef3b6cf7-cc70-918e-3808-6879833a1895-c0abfc55, #w-node-ef3b6cf7-cc70-918e-3808-6879833a1898-c0abfc55, #w-node-ef3b6cf7-cc70-918e-3808-6879833a189b-c0abfc55, #w-node-ef3b6cf7-cc70-918e-3808-6879833a189e-c0abfc55, #w-node-ef3b6cf7-cc70-918e-3808-6879833a18a1-c0abfc55, #w-node-ef3b6cf7-cc70-918e-3808-6879833a18a4-c0abfc55, #w-node-ef3b6cf7-cc70-918e-3808-6879833a18a7-c0abfc55, #w-node-ef3b6cf7-cc70-918e-3808-6879833a18aa-c0abfc55, #w-node-ef3b6cf7-cc70-918e-3808-6879833a18ad-c0abfc55, #w-node-ef3b6cf7-cc70-918e-3808-6879833a18b0-c0abfc55, #w-node-ef3b6cf7-cc70-918e-3808-6879833a18b3-c0abfc55, #w-node-ef3b6cf7-cc70-918e-3808-6879833a18b6-c0abfc55 {
  justify-self: stretch;
}

#w-node-ef3b6cf7-cc70-918e-3808-6879833a18e8-c0abfc55, #w-node-ef3b6cf7-cc70-918e-3808-6879833a18ef-c0abfc55 {
  place-self: center;
}

#w-node-_42996fb0-bafc-4d60-60e7-4f8837adc708-c7948664 {
  justify-self: end;
}

#w-node-_42996fb0-bafc-4d60-60e7-4f8837adc791-c7948664, #w-node-_42996fb0-bafc-4d60-60e7-4f8837adc794-c7948664, #w-node-_42996fb0-bafc-4d60-60e7-4f8837adc797-c7948664 {
  justify-self: stretch;
}

#w-node-_42996fb0-bafc-4d60-60e7-4f8837adc79a-c7948664 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: stretch;
}

#w-node-_42996fb0-bafc-4d60-60e7-4f8837adc79d-c7948664, #w-node-_42996fb0-bafc-4d60-60e7-4f8837adc7a0-c7948664, #w-node-_42996fb0-bafc-4d60-60e7-4f8837adc7a3-c7948664, #w-node-_42996fb0-bafc-4d60-60e7-4f8837adc7a6-c7948664, #w-node-_42996fb0-bafc-4d60-60e7-4f8837adc7aa-c7948664, #w-node-_42996fb0-bafc-4d60-60e7-4f8837adc7ad-c7948664, #w-node-_42996fb0-bafc-4d60-60e7-4f8837adc7b0-c7948664, #w-node-_42996fb0-bafc-4d60-60e7-4f8837adc7b3-c7948664, #w-node-_42996fb0-bafc-4d60-60e7-4f8837adc7b6-c7948664, #w-node-_42996fb0-bafc-4d60-60e7-4f8837adc7b9-c7948664, #w-node-_42996fb0-bafc-4d60-60e7-4f8837adc7bd-c7948664, #w-node-_42996fb0-bafc-4d60-60e7-4f8837adc7c0-c7948664, #w-node-_42996fb0-bafc-4d60-60e7-4f8837adc7c3-c7948664, #w-node-_42996fb0-bafc-4d60-60e7-4f8837adc7c6-c7948664, #w-node-_42996fb0-bafc-4d60-60e7-4f8837adc7c9-c7948664, #w-node-_42996fb0-bafc-4d60-60e7-4f8837adc7cc-c7948664, #w-node-e391c510-3a56-8594-d66f-b6b4cb73a4f5-c7948664, #w-node-_1cd7ab3d-f5a6-34ae-6012-93f8051a7c33-c7948664, #w-node-_1e516e61-12f4-fe09-bbb3-e2a9e10f2220-c7948664, #w-node-_25fc28a5-db4f-b565-cff6-40e0eaa8cf87-c7948664, #w-node-c06915d2-8c62-37a3-a0fa-b0c7d502faf1-c7948664, #w-node-_9624601c-08f4-c0a1-547f-a323791feaae-c7948664, #w-node-c346e24c-f803-2e65-69d2-b2495168e541-c7948664, #w-node-a58b271e-3dc8-46b1-d3c5-2235bbf0c54c-c7948664, #w-node-_775e392f-4d27-dade-7fea-9539d0cd0bda-c7948664, #w-node-e074814a-69e3-f196-f364-2c90c4a1b83a-c7948664, #w-node-ea698648-d0ab-8924-a379-5e43c5134faf-c7948664, #w-node-_25a958cb-7119-9d87-f7ba-6b2463c588b9-c7948664 {
  justify-self: stretch;
}

#w-node-_42996fb0-bafc-4d60-60e7-4f8837adc82f-c7948664 {
  justify-self: start;
}

#w-node-_42996fb0-bafc-4d60-60e7-4f8837adc831-c7948664, #w-node-_42996fb0-bafc-4d60-60e7-4f8837adc832-c7948664, #w-node-_42996fb0-bafc-4d60-60e7-4f8837adc833-c7948664, #w-node-_42996fb0-bafc-4d60-60e7-4f8837adc834-c7948664, #w-node-_42996fb0-bafc-4d60-60e7-4f8837adc835-c7948664, #w-node-_42996fb0-bafc-4d60-60e7-4f8837adc836-c7948664 {
  place-self: center start;
}

#w-node-_42996fb0-bafc-4d60-60e7-4f8837adc973-c7948664, #w-node-_42996fb0-bafc-4d60-60e7-4f8837adc976-c7948664, #w-node-_42996fb0-bafc-4d60-60e7-4f8837adc979-c7948664, #w-node-_42996fb0-bafc-4d60-60e7-4f8837adc97c-c7948664, #w-node-_42996fb0-bafc-4d60-60e7-4f8837adc97f-c7948664, #w-node-_42996fb0-bafc-4d60-60e7-4f8837adc982-c7948664, #w-node-_42996fb0-bafc-4d60-60e7-4f8837adc985-c7948664, #w-node-_42996fb0-bafc-4d60-60e7-4f8837adc988-c7948664, #w-node-_42996fb0-bafc-4d60-60e7-4f8837adc98b-c7948664, #w-node-_42996fb0-bafc-4d60-60e7-4f8837adc98e-c7948664, #w-node-_42996fb0-bafc-4d60-60e7-4f8837adc991-c7948664, #w-node-_42996fb0-bafc-4d60-60e7-4f8837adc994-c7948664, #w-node-_42996fb0-bafc-4d60-60e7-4f8837adc997-c7948664, #w-node-_42996fb0-bafc-4d60-60e7-4f8837adc99a-c7948664, #w-node-_42996fb0-bafc-4d60-60e7-4f8837adc99d-c7948664, #w-node-_42996fb0-bafc-4d60-60e7-4f8837adc9a0-c7948664, #w-node-_42996fb0-bafc-4d60-60e7-4f8837adc9a3-c7948664, #w-node-_42996fb0-bafc-4d60-60e7-4f8837adc9a6-c7948664, #w-node-_42996fb0-bafc-4d60-60e7-4f8837adc9a9-c7948664, #w-node-_42996fb0-bafc-4d60-60e7-4f8837adc9ac-c7948664, #w-node-_42996fb0-bafc-4d60-60e7-4f8837adc9af-c7948664, #w-node-_42996fb0-bafc-4d60-60e7-4f8837adc9b2-c7948664, #w-node-_42996fb0-bafc-4d60-60e7-4f8837adc9b5-c7948664, #w-node-_42996fb0-bafc-4d60-60e7-4f8837adc9b8-c7948664, #w-node-_42996fb0-bafc-4d60-60e7-4f8837adc9bb-c7948664, #w-node-_42996fb0-bafc-4d60-60e7-4f8837adc9be-c7948664, #w-node-_42996fb0-bafc-4d60-60e7-4f8837adc9c1-c7948664, #w-node-_42996fb0-bafc-4d60-60e7-4f8837adc9c4-c7948664, #w-node-_42996fb0-bafc-4d60-60e7-4f8837adc9c7-c7948664, #w-node-_42996fb0-bafc-4d60-60e7-4f8837adc9ca-c7948664, #w-node-_42996fb0-bafc-4d60-60e7-4f8837adc9cd-c7948664, #w-node-_42996fb0-bafc-4d60-60e7-4f8837adc9d0-c7948664, #w-node-_42996fb0-bafc-4d60-60e7-4f8837adc9d3-c7948664, #w-node-_42996fb0-bafc-4d60-60e7-4f8837adc9d6-c7948664, #w-node-_42996fb0-bafc-4d60-60e7-4f8837adc9d9-c7948664 {
  justify-self: stretch;
}

#w-node-_42996fb0-bafc-4d60-60e7-4f8837adca0b-c7948664, #w-node-_42996fb0-bafc-4d60-60e7-4f8837adca12-c7948664 {
  place-self: center;
}

#w-node-_1177be47-3809-d182-edfe-8b151bacd513-1bfe8f41 {
  align-self: end;
}

#w-node-_1177be47-3809-d182-edfe-8b151bacd54a-1bfe8f41, #w-node-_1177be47-3809-d182-edfe-8b151bacd54b-1bfe8f41, #w-node-_1177be47-3809-d182-edfe-8b151bacd54c-1bfe8f41, #w-node-_1177be47-3809-d182-edfe-8b151bacd54d-1bfe8f41, #w-node-_1177be47-3809-d182-edfe-8b151bacd54e-1bfe8f41, #w-node-_1177be47-3809-d182-edfe-8b151bacd54f-1bfe8f41, #w-node-_1177be47-3809-d182-edfe-8b151bacd564-1bfe8f41, #w-node-_1177be47-3809-d182-edfe-8b151bacd565-1bfe8f41, #w-node-_1177be47-3809-d182-edfe-8b151bacd566-1bfe8f41, #w-node-_1177be47-3809-d182-edfe-8b151bacd567-1bfe8f41, #w-node-_1177be47-3809-d182-edfe-8b151bacd568-1bfe8f41, #w-node-_1177be47-3809-d182-edfe-8b151bacd569-1bfe8f41 {
  justify-self: start;
}

#w-node-_1177be47-3809-d182-edfe-8b151bacd598-1bfe8f41 {
  place-self: center start;
}

#w-node-_1177be47-3809-d182-edfe-8b151bacd5ac-1bfe8f41, #w-node-_1177be47-3809-d182-edfe-8b151bacd5b1-1bfe8f41, #w-node-_1177be47-3809-d182-edfe-8b151bacd5b6-1bfe8f41 {
  place-self: center;
}

#w-node-_99b9687f-752f-26d1-8b96-25c5c16ada2a-2a12a0b0 {
  justify-self: end;
}

#w-node-_99b9687f-752f-26d1-8b96-25c5c16ada84-2a12a0b0, #w-node-_99b9687f-752f-26d1-8b96-25c5c16ada87-2a12a0b0, #w-node-_99b9687f-752f-26d1-8b96-25c5c16ada8a-2a12a0b0, #w-node-_99b9687f-752f-26d1-8b96-25c5c16ada90-2a12a0b0, #w-node-_99b9687f-752f-26d1-8b96-25c5c16ada93-2a12a0b0, #w-node-_99b9687f-752f-26d1-8b96-25c5c16ada96-2a12a0b0, #w-node-_99b9687f-752f-26d1-8b96-25c5c16ada9b-2a12a0b0, #w-node-_99b9687f-752f-26d1-8b96-25c5c16ada9f-2a12a0b0, #w-node-_99b9687f-752f-26d1-8b96-25c5c16adaa4-2a12a0b0, #w-node-_99b9687f-752f-26d1-8b96-25c5c16adaa7-2a12a0b0, #w-node-_99b9687f-752f-26d1-8b96-25c5c16adaaa-2a12a0b0, #w-node-_99b9687f-752f-26d1-8b96-25c5c16adaad-2a12a0b0, #w-node-_99b9687f-752f-26d1-8b96-25c5c16adab0-2a12a0b0, #w-node-_99b9687f-752f-26d1-8b96-25c5c16adab4-2a12a0b0, #w-node-_99b9687f-752f-26d1-8b96-25c5c16adab7-2a12a0b0, #w-node-_99b9687f-752f-26d1-8b96-25c5c16adaba-2a12a0b0, #w-node-_99b9687f-752f-26d1-8b96-25c5c16adabf-2a12a0b0, #w-node-_99b9687f-752f-26d1-8b96-25c5c16adac2-2a12a0b0, #w-node-_99b9687f-752f-26d1-8b96-25c5c16adac5-2a12a0b0, #w-node-_99b9687f-752f-26d1-8b96-25c5c16adac8-2a12a0b0, #w-node-_99b9687f-752f-26d1-8b96-25c5c16adacd-2a12a0b0, #w-node-_99b9687f-752f-26d1-8b96-25c5c16adad0-2a12a0b0, #w-node-_99b9687f-752f-26d1-8b96-25c5c16adad3-2a12a0b0, #w-node-_99b9687f-752f-26d1-8b96-25c5c16adad6-2a12a0b0, #w-node-_99b9687f-752f-26d1-8b96-25c5c16adadb-2a12a0b0, #w-node-_99b9687f-752f-26d1-8b96-25c5c16adade-2a12a0b0, #w-node-_99b9687f-752f-26d1-8b96-25c5c16adae1-2a12a0b0, #w-node-_99b9687f-752f-26d1-8b96-25c5c16adae4-2a12a0b0, #w-node-_99b9687f-752f-26d1-8b96-25c5c16adae7-2a12a0b0, #w-node-_99b9687f-752f-26d1-8b96-25c5c16adaea-2a12a0b0, #w-node-_99b9687f-752f-26d1-8b96-25c5c16adaed-2a12a0b0, #w-node-_438411d0-836a-1166-45b6-d5bd0d92e0a0-2a12a0b0, #w-node-_0216238c-39ec-ffcd-fc8f-48e5adafd319-2a12a0b0 {
  justify-self: stretch;
}

#w-node-_99b9687f-752f-26d1-8b96-25c5c16adb3c-2a12a0b0 {
  justify-self: start;
}

#w-node-_99b9687f-752f-26d1-8b96-25c5c16adb3d-2a12a0b0, #w-node-_99b9687f-752f-26d1-8b96-25c5c16adb3e-2a12a0b0, #w-node-_99b9687f-752f-26d1-8b96-25c5c16adb3f-2a12a0b0, #w-node-_99b9687f-752f-26d1-8b96-25c5c16adb40-2a12a0b0, #w-node-_99b9687f-752f-26d1-8b96-25c5c16adb41-2a12a0b0, #w-node-_99b9687f-752f-26d1-8b96-25c5c16adb42-2a12a0b0, #w-node-_68965623-582a-8a9d-0dad-e3276bb7ebb0-2a12a0b0, #w-node-_8410e439-2f6b-2946-aaa0-121af7a8d45f-2a12a0b0, #w-node-_468da19a-e891-a95d-fb94-b3a8d94800cf-2a12a0b0 {
  place-self: center start;
}

#w-node-d845e142-5ae3-4fbf-654b-ba0527b8ac09-2a12a0b0 {
  justify-self: start;
}

#w-node-d845e142-5ae3-4fbf-654b-ba0527b8ac0a-2a12a0b0, #w-node-d845e142-5ae3-4fbf-654b-ba0527b8ac0b-2a12a0b0, #w-node-d845e142-5ae3-4fbf-654b-ba0527b8ac0c-2a12a0b0 {
  place-self: center start;
}

#w-node-_99b9687f-752f-26d1-8b96-25c5c16adc2a-2a12a0b0, #w-node-_99b9687f-752f-26d1-8b96-25c5c16adc2d-2a12a0b0, #w-node-_99b9687f-752f-26d1-8b96-25c5c16adc30-2a12a0b0, #w-node-_99b9687f-752f-26d1-8b96-25c5c16adc33-2a12a0b0, #w-node-_99b9687f-752f-26d1-8b96-25c5c16adc36-2a12a0b0, #w-node-_99b9687f-752f-26d1-8b96-25c5c16adc39-2a12a0b0, #w-node-_99b9687f-752f-26d1-8b96-25c5c16adc3c-2a12a0b0, #w-node-_99b9687f-752f-26d1-8b96-25c5c16adc3f-2a12a0b0, #w-node-_99b9687f-752f-26d1-8b96-25c5c16adc42-2a12a0b0, #w-node-_99b9687f-752f-26d1-8b96-25c5c16adc45-2a12a0b0, #w-node-_99b9687f-752f-26d1-8b96-25c5c16adc48-2a12a0b0, #w-node-_99b9687f-752f-26d1-8b96-25c5c16adc4b-2a12a0b0, #w-node-_99b9687f-752f-26d1-8b96-25c5c16adc4e-2a12a0b0, #w-node-_99b9687f-752f-26d1-8b96-25c5c16adc51-2a12a0b0, #w-node-_99b9687f-752f-26d1-8b96-25c5c16adc54-2a12a0b0, #w-node-_99b9687f-752f-26d1-8b96-25c5c16adc57-2a12a0b0, #w-node-_99b9687f-752f-26d1-8b96-25c5c16adc5a-2a12a0b0, #w-node-_99b9687f-752f-26d1-8b96-25c5c16adc5d-2a12a0b0, #w-node-_99b9687f-752f-26d1-8b96-25c5c16adc60-2a12a0b0, #w-node-_99b9687f-752f-26d1-8b96-25c5c16adc63-2a12a0b0, #w-node-_99b9687f-752f-26d1-8b96-25c5c16adc66-2a12a0b0, #w-node-_99b9687f-752f-26d1-8b96-25c5c16adc69-2a12a0b0, #w-node-_99b9687f-752f-26d1-8b96-25c5c16adc6c-2a12a0b0, #w-node-_99b9687f-752f-26d1-8b96-25c5c16adc6f-2a12a0b0, #w-node-_99b9687f-752f-26d1-8b96-25c5c16adc72-2a12a0b0, #w-node-_99b9687f-752f-26d1-8b96-25c5c16adc75-2a12a0b0, #w-node-_99b9687f-752f-26d1-8b96-25c5c16adc78-2a12a0b0, #w-node-_99b9687f-752f-26d1-8b96-25c5c16adc7b-2a12a0b0, #w-node-_99b9687f-752f-26d1-8b96-25c5c16adc7e-2a12a0b0, #w-node-_99b9687f-752f-26d1-8b96-25c5c16adc81-2a12a0b0, #w-node-_99b9687f-752f-26d1-8b96-25c5c16adc84-2a12a0b0, #w-node-_99b9687f-752f-26d1-8b96-25c5c16adc87-2a12a0b0, #w-node-_99b9687f-752f-26d1-8b96-25c5c16adc8a-2a12a0b0, #w-node-_99b9687f-752f-26d1-8b96-25c5c16adc8d-2a12a0b0, #w-node-_99b9687f-752f-26d1-8b96-25c5c16adc90-2a12a0b0 {
  justify-self: stretch;
}

#w-node-_99b9687f-752f-26d1-8b96-25c5c16adcc2-2a12a0b0, #w-node-_99b9687f-752f-26d1-8b96-25c5c16adcc9-2a12a0b0 {
  place-self: center;
}

#w-node-_7606d02b-80ff-ae36-6667-788d29d7e548-83bb99d1 {
  justify-self: end;
}

#w-node-_7606d02b-80ff-ae36-6667-788d29d7e5a7-83bb99d1, #w-node-_7606d02b-80ff-ae36-6667-788d29d7e5aa-83bb99d1, #w-node-_7606d02b-80ff-ae36-6667-788d29d7e5ad-83bb99d1, #w-node-_7606d02b-80ff-ae36-6667-788d29d7e5b0-83bb99d1, #w-node-_7606d02b-80ff-ae36-6667-788d29d7e5b3-83bb99d1, #w-node-_7606d02b-80ff-ae36-6667-788d29d7e5b6-83bb99d1, #w-node-_7606d02b-80ff-ae36-6667-788d29d7e5ba-83bb99d1, #w-node-_7606d02b-80ff-ae36-6667-788d29d7e5bd-83bb99d1 {
  justify-self: stretch;
}

#w-node-_7606d02b-80ff-ae36-6667-788d29d7e66f-83bb99d1 {
  justify-self: start;
}

#w-node-_7606d02b-80ff-ae36-6667-788d29d7e670-83bb99d1, #w-node-_7606d02b-80ff-ae36-6667-788d29d7e671-83bb99d1, #w-node-_7606d02b-80ff-ae36-6667-788d29d7e672-83bb99d1, #w-node-_7606d02b-80ff-ae36-6667-788d29d7e676-83bb99d1, #w-node-b84e68fa-a01e-a20e-63fe-c61eb3302e4d-83bb99d1 {
  place-self: center start;
}

#w-node-_7606d02b-80ff-ae36-6667-788d29d7e718-83bb99d1 {
  justify-self: start;
}

#w-node-_7606d02b-80ff-ae36-6667-788d29d7e719-83bb99d1, #w-node-_7606d02b-80ff-ae36-6667-788d29d7e71a-83bb99d1 {
  place-self: center start;
}

#w-node-_7606d02b-80ff-ae36-6667-788d29d7e71b-83bb99d1 {
  place-self: center;
}

#w-node-_7606d02b-80ff-ae36-6667-788d29d7e7b3-83bb99d1, #w-node-_7606d02b-80ff-ae36-6667-788d29d7e7b6-83bb99d1, #w-node-_7606d02b-80ff-ae36-6667-788d29d7e7b9-83bb99d1, #w-node-_7606d02b-80ff-ae36-6667-788d29d7e7bc-83bb99d1, #w-node-_7606d02b-80ff-ae36-6667-788d29d7e7bf-83bb99d1, #w-node-_7606d02b-80ff-ae36-6667-788d29d7e7c2-83bb99d1, #w-node-_7606d02b-80ff-ae36-6667-788d29d7e7c5-83bb99d1, #w-node-_7606d02b-80ff-ae36-6667-788d29d7e7c8-83bb99d1, #w-node-_7606d02b-80ff-ae36-6667-788d29d7e7cb-83bb99d1, #w-node-_7606d02b-80ff-ae36-6667-788d29d7e7ce-83bb99d1, #w-node-_7606d02b-80ff-ae36-6667-788d29d7e7d1-83bb99d1, #w-node-_7606d02b-80ff-ae36-6667-788d29d7e7d4-83bb99d1, #w-node-_7606d02b-80ff-ae36-6667-788d29d7e7d7-83bb99d1, #w-node-_7606d02b-80ff-ae36-6667-788d29d7e7da-83bb99d1, #w-node-_7606d02b-80ff-ae36-6667-788d29d7e7dd-83bb99d1, #w-node-_7606d02b-80ff-ae36-6667-788d29d7e7e0-83bb99d1, #w-node-_7606d02b-80ff-ae36-6667-788d29d7e7e3-83bb99d1, #w-node-_7606d02b-80ff-ae36-6667-788d29d7e7e6-83bb99d1, #w-node-_7606d02b-80ff-ae36-6667-788d29d7e7e9-83bb99d1, #w-node-_7606d02b-80ff-ae36-6667-788d29d7e7ec-83bb99d1, #w-node-_7606d02b-80ff-ae36-6667-788d29d7e7ef-83bb99d1, #w-node-_7606d02b-80ff-ae36-6667-788d29d7e7f2-83bb99d1, #w-node-_7606d02b-80ff-ae36-6667-788d29d7e7f5-83bb99d1, #w-node-_7606d02b-80ff-ae36-6667-788d29d7e7f8-83bb99d1, #w-node-_7606d02b-80ff-ae36-6667-788d29d7e7fb-83bb99d1, #w-node-_7606d02b-80ff-ae36-6667-788d29d7e7fe-83bb99d1, #w-node-_7606d02b-80ff-ae36-6667-788d29d7e801-83bb99d1, #w-node-_7606d02b-80ff-ae36-6667-788d29d7e804-83bb99d1, #w-node-_7606d02b-80ff-ae36-6667-788d29d7e807-83bb99d1, #w-node-_7606d02b-80ff-ae36-6667-788d29d7e80a-83bb99d1, #w-node-_7606d02b-80ff-ae36-6667-788d29d7e80d-83bb99d1, #w-node-_7606d02b-80ff-ae36-6667-788d29d7e810-83bb99d1, #w-node-_7606d02b-80ff-ae36-6667-788d29d7e813-83bb99d1, #w-node-_7606d02b-80ff-ae36-6667-788d29d7e816-83bb99d1, #w-node-_7606d02b-80ff-ae36-6667-788d29d7e819-83bb99d1 {
  justify-self: stretch;
}

#w-node-_7606d02b-80ff-ae36-6667-788d29d7e84b-83bb99d1, #w-node-_7606d02b-80ff-ae36-6667-788d29d7e852-83bb99d1 {
  place-self: center;
}

#w-node-e7d26150-94ea-8288-1dcc-a87e4030a25e-7ffa60b9 {
  justify-self: end;
}

#w-node-e7d26150-94ea-8288-1dcc-a87e4030a329-7ffa60b9 {
  justify-self: start;
}

#w-node-e7d26150-94ea-8288-1dcc-a87e4030a32a-7ffa60b9, #w-node-e7d26150-94ea-8288-1dcc-a87e4030a32b-7ffa60b9, #w-node-e7d26150-94ea-8288-1dcc-a87e4030a32c-7ffa60b9, #w-node-e7d26150-94ea-8288-1dcc-a87e4030a32d-7ffa60b9, #w-node-e7d26150-94ea-8288-1dcc-a87e4030a32e-7ffa60b9 {
  place-self: center start;
}

#w-node-e7d26150-94ea-8288-1dcc-a87e4030a385-7ffa60b9 {
  justify-self: start;
}

#w-node-e7d26150-94ea-8288-1dcc-a87e4030a386-7ffa60b9, #w-node-e7d26150-94ea-8288-1dcc-a87e4030a387-7ffa60b9 {
  place-self: center start;
}

#w-node-e7d26150-94ea-8288-1dcc-a87e4030a388-7ffa60b9, #w-node-_6f895c7f-b179-b82a-9e48-52d0e5deed2b-7ffa60b9 {
  place-self: center;
}

#w-node-e7d26150-94ea-8288-1dcc-a87e4030a3ed-7ffa60b9, #w-node-e7d26150-94ea-8288-1dcc-a87e4030a3f0-7ffa60b9, #w-node-e7d26150-94ea-8288-1dcc-a87e4030a3f3-7ffa60b9, #w-node-e7d26150-94ea-8288-1dcc-a87e4030a3f6-7ffa60b9, #w-node-e7d26150-94ea-8288-1dcc-a87e4030a3f9-7ffa60b9, #w-node-e7d26150-94ea-8288-1dcc-a87e4030a3fc-7ffa60b9, #w-node-e7d26150-94ea-8288-1dcc-a87e4030a3ff-7ffa60b9, #w-node-e7d26150-94ea-8288-1dcc-a87e4030a402-7ffa60b9, #w-node-e7d26150-94ea-8288-1dcc-a87e4030a405-7ffa60b9, #w-node-e7d26150-94ea-8288-1dcc-a87e4030a408-7ffa60b9, #w-node-e7d26150-94ea-8288-1dcc-a87e4030a40b-7ffa60b9, #w-node-e7d26150-94ea-8288-1dcc-a87e4030a40e-7ffa60b9, #w-node-e7d26150-94ea-8288-1dcc-a87e4030a411-7ffa60b9, #w-node-e7d26150-94ea-8288-1dcc-a87e4030a414-7ffa60b9, #w-node-e7d26150-94ea-8288-1dcc-a87e4030a417-7ffa60b9, #w-node-e7d26150-94ea-8288-1dcc-a87e4030a41a-7ffa60b9, #w-node-e7d26150-94ea-8288-1dcc-a87e4030a41d-7ffa60b9, #w-node-e7d26150-94ea-8288-1dcc-a87e4030a420-7ffa60b9, #w-node-e7d26150-94ea-8288-1dcc-a87e4030a423-7ffa60b9, #w-node-e7d26150-94ea-8288-1dcc-a87e4030a426-7ffa60b9, #w-node-e7d26150-94ea-8288-1dcc-a87e4030a429-7ffa60b9, #w-node-e7d26150-94ea-8288-1dcc-a87e4030a42c-7ffa60b9, #w-node-e7d26150-94ea-8288-1dcc-a87e4030a42f-7ffa60b9, #w-node-e7d26150-94ea-8288-1dcc-a87e4030a432-7ffa60b9, #w-node-e7d26150-94ea-8288-1dcc-a87e4030a435-7ffa60b9, #w-node-e7d26150-94ea-8288-1dcc-a87e4030a438-7ffa60b9, #w-node-e7d26150-94ea-8288-1dcc-a87e4030a43b-7ffa60b9, #w-node-e7d26150-94ea-8288-1dcc-a87e4030a43e-7ffa60b9, #w-node-e7d26150-94ea-8288-1dcc-a87e4030a441-7ffa60b9, #w-node-e7d26150-94ea-8288-1dcc-a87e4030a444-7ffa60b9, #w-node-e7d26150-94ea-8288-1dcc-a87e4030a447-7ffa60b9, #w-node-e7d26150-94ea-8288-1dcc-a87e4030a44a-7ffa60b9, #w-node-e7d26150-94ea-8288-1dcc-a87e4030a44d-7ffa60b9, #w-node-e7d26150-94ea-8288-1dcc-a87e4030a450-7ffa60b9, #w-node-e7d26150-94ea-8288-1dcc-a87e4030a453-7ffa60b9 {
  justify-self: stretch;
}

#w-node-e7d26150-94ea-8288-1dcc-a87e4030a485-7ffa60b9, #w-node-e7d26150-94ea-8288-1dcc-a87e4030a48c-7ffa60b9 {
  place-self: center;
}

#w-node-ef60d4bf-045a-ab9e-b7ae-f222557f4a41-270f0098 {
  justify-self: end;
}

#w-node-ef60d4bf-045a-ab9e-b7ae-f222557f4aeb-270f0098 {
  justify-self: start;
}

#w-node-ef60d4bf-045a-ab9e-b7ae-f222557f4aec-270f0098, #w-node-ef60d4bf-045a-ab9e-b7ae-f222557f4aed-270f0098, #w-node-ef60d4bf-045a-ab9e-b7ae-f222557f4aee-270f0098, #w-node-ef60d4bf-045a-ab9e-b7ae-f222557f4aef-270f0098, #w-node-ef60d4bf-045a-ab9e-b7ae-f222557f4af0-270f0098 {
  place-self: center start;
}

#w-node-ef60d4bf-045a-ab9e-b7ae-f222557f4b44-270f0098 {
  justify-self: start;
}

#w-node-ef60d4bf-045a-ab9e-b7ae-f222557f4b45-270f0098, #w-node-ef60d4bf-045a-ab9e-b7ae-f222557f4b46-270f0098 {
  place-self: center start;
}

#w-node-ef60d4bf-045a-ab9e-b7ae-f222557f4b47-270f0098, #w-node-ef60d4bf-045a-ab9e-b7ae-f222557f4b48-270f0098, #w-node-e394fb7b-b958-0aa4-b7a1-8659247ef641-270f0098 {
  place-self: center;
}

#w-node-ef60d4bf-045a-ab9e-b7ae-f222557f4b9c-270f0098, #w-node-ef60d4bf-045a-ab9e-b7ae-f222557f4b9f-270f0098, #w-node-ef60d4bf-045a-ab9e-b7ae-f222557f4ba2-270f0098, #w-node-ef60d4bf-045a-ab9e-b7ae-f222557f4ba5-270f0098, #w-node-ef60d4bf-045a-ab9e-b7ae-f222557f4ba8-270f0098, #w-node-ef60d4bf-045a-ab9e-b7ae-f222557f4bab-270f0098, #w-node-ef60d4bf-045a-ab9e-b7ae-f222557f4bae-270f0098, #w-node-ef60d4bf-045a-ab9e-b7ae-f222557f4bb1-270f0098, #w-node-ef60d4bf-045a-ab9e-b7ae-f222557f4bb4-270f0098, #w-node-ef60d4bf-045a-ab9e-b7ae-f222557f4bb7-270f0098, #w-node-ef60d4bf-045a-ab9e-b7ae-f222557f4bba-270f0098, #w-node-ef60d4bf-045a-ab9e-b7ae-f222557f4bbd-270f0098, #w-node-ef60d4bf-045a-ab9e-b7ae-f222557f4bc0-270f0098, #w-node-ef60d4bf-045a-ab9e-b7ae-f222557f4bc3-270f0098, #w-node-ef60d4bf-045a-ab9e-b7ae-f222557f4bc6-270f0098, #w-node-ef60d4bf-045a-ab9e-b7ae-f222557f4bc9-270f0098, #w-node-ef60d4bf-045a-ab9e-b7ae-f222557f4bcc-270f0098, #w-node-ef60d4bf-045a-ab9e-b7ae-f222557f4bcf-270f0098, #w-node-ef60d4bf-045a-ab9e-b7ae-f222557f4bd2-270f0098, #w-node-ef60d4bf-045a-ab9e-b7ae-f222557f4bd5-270f0098, #w-node-ef60d4bf-045a-ab9e-b7ae-f222557f4bd8-270f0098, #w-node-ef60d4bf-045a-ab9e-b7ae-f222557f4bdb-270f0098, #w-node-ef60d4bf-045a-ab9e-b7ae-f222557f4bde-270f0098, #w-node-ef60d4bf-045a-ab9e-b7ae-f222557f4be1-270f0098, #w-node-ef60d4bf-045a-ab9e-b7ae-f222557f4be4-270f0098, #w-node-ef60d4bf-045a-ab9e-b7ae-f222557f4be7-270f0098, #w-node-ef60d4bf-045a-ab9e-b7ae-f222557f4bea-270f0098, #w-node-ef60d4bf-045a-ab9e-b7ae-f222557f4bed-270f0098, #w-node-ef60d4bf-045a-ab9e-b7ae-f222557f4bf0-270f0098, #w-node-ef60d4bf-045a-ab9e-b7ae-f222557f4bf3-270f0098, #w-node-ef60d4bf-045a-ab9e-b7ae-f222557f4bf6-270f0098, #w-node-ef60d4bf-045a-ab9e-b7ae-f222557f4bf9-270f0098, #w-node-ef60d4bf-045a-ab9e-b7ae-f222557f4bfc-270f0098, #w-node-ef60d4bf-045a-ab9e-b7ae-f222557f4bff-270f0098, #w-node-ef60d4bf-045a-ab9e-b7ae-f222557f4c02-270f0098 {
  justify-self: stretch;
}

#w-node-ef60d4bf-045a-ab9e-b7ae-f222557f4c34-270f0098, #w-node-ef60d4bf-045a-ab9e-b7ae-f222557f4c3b-270f0098 {
  place-self: center;
}

#w-node-_650d51dc-59a3-a853-339c-b2d67d248830-6207556a {
  justify-self: end;
}

#w-node-_650d51dc-59a3-a853-339c-b2d67d24888a-6207556a, #w-node-_650d51dc-59a3-a853-339c-b2d67d24888d-6207556a, #w-node-_650d51dc-59a3-a853-339c-b2d67d248890-6207556a {
  justify-self: stretch;
}

#w-node-_650d51dc-59a3-a853-339c-b2d67d248893-6207556a, #w-node-e9fd709e-5024-2ff3-a226-6542aaafe8c0-6207556a {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: stretch;
}

#w-node-_650d51dc-59a3-a853-339c-b2d67d248896-6207556a, #w-node-_650d51dc-59a3-a853-339c-b2d67d248899-6207556a, #w-node-_650d51dc-59a3-a853-339c-b2d67d24889c-6207556a, #w-node-_650d51dc-59a3-a853-339c-b2d67d2488a1-6207556a, #w-node-_650d51dc-59a3-a853-339c-b2d67d2488a5-6207556a {
  justify-self: stretch;
}

#w-node-_650d51dc-59a3-a853-339c-b2d67d248942-6207556a {
  justify-self: start;
}

#w-node-_650d51dc-59a3-a853-339c-b2d67d248943-6207556a, #w-node-_650d51dc-59a3-a853-339c-b2d67d248944-6207556a, #w-node-_650d51dc-59a3-a853-339c-b2d67d248945-6207556a, #w-node-_650d51dc-59a3-a853-339c-b2d67d248946-6207556a {
  place-self: center start;
}

#w-node-_650d51dc-59a3-a853-339c-b2d67d248a30-6207556a, #w-node-_650d51dc-59a3-a853-339c-b2d67d248a33-6207556a, #w-node-_650d51dc-59a3-a853-339c-b2d67d248a36-6207556a, #w-node-_650d51dc-59a3-a853-339c-b2d67d248a39-6207556a, #w-node-_650d51dc-59a3-a853-339c-b2d67d248a3c-6207556a, #w-node-_650d51dc-59a3-a853-339c-b2d67d248a3f-6207556a, #w-node-_650d51dc-59a3-a853-339c-b2d67d248a42-6207556a, #w-node-_650d51dc-59a3-a853-339c-b2d67d248a45-6207556a, #w-node-_650d51dc-59a3-a853-339c-b2d67d248a48-6207556a, #w-node-_650d51dc-59a3-a853-339c-b2d67d248a4b-6207556a, #w-node-_650d51dc-59a3-a853-339c-b2d67d248a4e-6207556a, #w-node-_650d51dc-59a3-a853-339c-b2d67d248a51-6207556a, #w-node-_650d51dc-59a3-a853-339c-b2d67d248a54-6207556a, #w-node-_650d51dc-59a3-a853-339c-b2d67d248a57-6207556a, #w-node-_650d51dc-59a3-a853-339c-b2d67d248a5a-6207556a, #w-node-_650d51dc-59a3-a853-339c-b2d67d248a5d-6207556a, #w-node-_650d51dc-59a3-a853-339c-b2d67d248a60-6207556a, #w-node-_650d51dc-59a3-a853-339c-b2d67d248a63-6207556a, #w-node-_650d51dc-59a3-a853-339c-b2d67d248a66-6207556a, #w-node-_650d51dc-59a3-a853-339c-b2d67d248a69-6207556a, #w-node-_650d51dc-59a3-a853-339c-b2d67d248a6c-6207556a, #w-node-_650d51dc-59a3-a853-339c-b2d67d248a6f-6207556a, #w-node-_650d51dc-59a3-a853-339c-b2d67d248a72-6207556a, #w-node-_650d51dc-59a3-a853-339c-b2d67d248a75-6207556a, #w-node-_650d51dc-59a3-a853-339c-b2d67d248a78-6207556a, #w-node-_650d51dc-59a3-a853-339c-b2d67d248a7b-6207556a, #w-node-_650d51dc-59a3-a853-339c-b2d67d248a7e-6207556a, #w-node-_650d51dc-59a3-a853-339c-b2d67d248a81-6207556a, #w-node-_650d51dc-59a3-a853-339c-b2d67d248a84-6207556a, #w-node-_650d51dc-59a3-a853-339c-b2d67d248a87-6207556a, #w-node-_650d51dc-59a3-a853-339c-b2d67d248a8a-6207556a, #w-node-_650d51dc-59a3-a853-339c-b2d67d248a8d-6207556a, #w-node-_650d51dc-59a3-a853-339c-b2d67d248a90-6207556a, #w-node-_650d51dc-59a3-a853-339c-b2d67d248a93-6207556a, #w-node-_650d51dc-59a3-a853-339c-b2d67d248a96-6207556a {
  justify-self: stretch;
}

#w-node-_650d51dc-59a3-a853-339c-b2d67d248ac8-6207556a, #w-node-_650d51dc-59a3-a853-339c-b2d67d248acf-6207556a {
  place-self: center;
}

#w-node-e1fdbb47-9b94-1120-2db0-813e73bd4814-4271598f {
  justify-self: end;
}

#w-node-e1fdbb47-9b94-1120-2db0-813e73bd4854-4271598f, #w-node-e1fdbb47-9b94-1120-2db0-813e73bd4857-4271598f, #w-node-e1fdbb47-9b94-1120-2db0-813e73bd485a-4271598f {
  justify-self: stretch;
}

#w-node-e1fdbb47-9b94-1120-2db0-813e73bd485d-4271598f, #w-node-e1fdbb47-9b94-1120-2db0-813e73bd4860-4271598f {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: stretch;
}

#w-node-e1fdbb47-9b94-1120-2db0-813e73bd4863-4271598f, #w-node-e1fdbb47-9b94-1120-2db0-813e73bd4866-4271598f, #w-node-e1fdbb47-9b94-1120-2db0-813e73bd4869-4271598f, #w-node-e1fdbb47-9b94-1120-2db0-813e73bd486c-4271598f, #w-node-e1fdbb47-9b94-1120-2db0-813e73bd4870-4271598f {
  justify-self: stretch;
}

#w-node-e1fdbb47-9b94-1120-2db0-813e73bd48cf-4271598f {
  justify-self: start;
}

#w-node-e1fdbb47-9b94-1120-2db0-813e73bd48d0-4271598f, #w-node-e1fdbb47-9b94-1120-2db0-813e73bd48d1-4271598f, #w-node-e1fdbb47-9b94-1120-2db0-813e73bd48d2-4271598f, #w-node-e1fdbb47-9b94-1120-2db0-813e73bd48d3-4271598f {
  place-self: center start;
}

#w-node-e1fdbb47-9b94-1120-2db0-813e73bd4999-4271598f, #w-node-e1fdbb47-9b94-1120-2db0-813e73bd499c-4271598f, #w-node-e1fdbb47-9b94-1120-2db0-813e73bd499f-4271598f, #w-node-e1fdbb47-9b94-1120-2db0-813e73bd49a2-4271598f, #w-node-e1fdbb47-9b94-1120-2db0-813e73bd49a5-4271598f, #w-node-e1fdbb47-9b94-1120-2db0-813e73bd49a8-4271598f, #w-node-e1fdbb47-9b94-1120-2db0-813e73bd49ab-4271598f, #w-node-e1fdbb47-9b94-1120-2db0-813e73bd49ae-4271598f, #w-node-e1fdbb47-9b94-1120-2db0-813e73bd49b1-4271598f, #w-node-e1fdbb47-9b94-1120-2db0-813e73bd49b4-4271598f, #w-node-e1fdbb47-9b94-1120-2db0-813e73bd49b7-4271598f, #w-node-e1fdbb47-9b94-1120-2db0-813e73bd49ba-4271598f, #w-node-e1fdbb47-9b94-1120-2db0-813e73bd49bd-4271598f, #w-node-e1fdbb47-9b94-1120-2db0-813e73bd49c0-4271598f, #w-node-e1fdbb47-9b94-1120-2db0-813e73bd49c3-4271598f, #w-node-e1fdbb47-9b94-1120-2db0-813e73bd49c6-4271598f, #w-node-e1fdbb47-9b94-1120-2db0-813e73bd49c9-4271598f, #w-node-e1fdbb47-9b94-1120-2db0-813e73bd49cc-4271598f, #w-node-e1fdbb47-9b94-1120-2db0-813e73bd49cf-4271598f, #w-node-e1fdbb47-9b94-1120-2db0-813e73bd49d2-4271598f, #w-node-e1fdbb47-9b94-1120-2db0-813e73bd49d5-4271598f, #w-node-e1fdbb47-9b94-1120-2db0-813e73bd49d8-4271598f, #w-node-e1fdbb47-9b94-1120-2db0-813e73bd49db-4271598f, #w-node-e1fdbb47-9b94-1120-2db0-813e73bd49de-4271598f, #w-node-e1fdbb47-9b94-1120-2db0-813e73bd49e1-4271598f, #w-node-e1fdbb47-9b94-1120-2db0-813e73bd49e4-4271598f, #w-node-e1fdbb47-9b94-1120-2db0-813e73bd49e7-4271598f, #w-node-e1fdbb47-9b94-1120-2db0-813e73bd49ea-4271598f, #w-node-e1fdbb47-9b94-1120-2db0-813e73bd49ed-4271598f, #w-node-e1fdbb47-9b94-1120-2db0-813e73bd49f0-4271598f, #w-node-e1fdbb47-9b94-1120-2db0-813e73bd49f3-4271598f, #w-node-e1fdbb47-9b94-1120-2db0-813e73bd49f6-4271598f, #w-node-e1fdbb47-9b94-1120-2db0-813e73bd49f9-4271598f, #w-node-e1fdbb47-9b94-1120-2db0-813e73bd49fc-4271598f, #w-node-e1fdbb47-9b94-1120-2db0-813e73bd49ff-4271598f {
  justify-self: stretch;
}

#w-node-e1fdbb47-9b94-1120-2db0-813e73bd4a31-4271598f, #w-node-e1fdbb47-9b94-1120-2db0-813e73bd4a38-4271598f {
  place-self: center;
}

#w-node-_7ec68cd8-445b-640a-f2c8-dd012dd7e0ed-54ee10b8 {
  justify-self: end;
}

#w-node-e2f1a642-ce3d-5311-a1e2-f2f0e32ddb61-54ee10b8, #w-node-e2f1a642-ce3d-5311-a1e2-f2f0e32ddb64-54ee10b8, #w-node-e2f1a642-ce3d-5311-a1e2-f2f0e32ddb67-54ee10b8 {
  justify-self: stretch;
}

#w-node-e2f1a642-ce3d-5311-a1e2-f2f0e32ddb6a-54ee10b8, #w-node-e2f1a642-ce3d-5311-a1e2-f2f0e32ddb6d-54ee10b8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: stretch;
}

#w-node-e2f1a642-ce3d-5311-a1e2-f2f0e32ddb70-54ee10b8, #w-node-e2f1a642-ce3d-5311-a1e2-f2f0e32ddb73-54ee10b8, #w-node-e2f1a642-ce3d-5311-a1e2-f2f0e32ddb76-54ee10b8, #w-node-e2f1a642-ce3d-5311-a1e2-f2f0e32ddb79-54ee10b8, #w-node-e2f1a642-ce3d-5311-a1e2-f2f0e32ddb7d-54ee10b8, #w-node-_3685966b-598f-4f05-c338-604b986b1d1e-54ee10b8, #w-node-_3685966b-598f-4f05-c338-604b986b1d21-54ee10b8, #w-node-_3685966b-598f-4f05-c338-604b986b1d24-54ee10b8 {
  justify-self: stretch;
}

#w-node-_3685966b-598f-4f05-c338-604b986b1d27-54ee10b8, #w-node-_3685966b-598f-4f05-c338-604b986b1d2a-54ee10b8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: stretch;
}

#w-node-_3685966b-598f-4f05-c338-604b986b1d2d-54ee10b8, #w-node-_3685966b-598f-4f05-c338-604b986b1d30-54ee10b8, #w-node-_3685966b-598f-4f05-c338-604b986b1d33-54ee10b8, #w-node-_3685966b-598f-4f05-c338-604b986b1d36-54ee10b8, #w-node-_3685966b-598f-4f05-c338-604b986b1d3a-54ee10b8 {
  justify-self: stretch;
}

#w-node-_7ec68cd8-445b-640a-f2c8-dd012dd7e1a3-54ee10b8 {
  justify-self: start;
}

#w-node-_7ec68cd8-445b-640a-f2c8-dd012dd7e1a4-54ee10b8, #w-node-_7ec68cd8-445b-640a-f2c8-dd012dd7e1a5-54ee10b8, #w-node-_7ec68cd8-445b-640a-f2c8-dd012dd7e1a6-54ee10b8, #w-node-_7ec68cd8-445b-640a-f2c8-dd012dd7e1a7-54ee10b8 {
  place-self: center start;
}

#w-node-_7ec68cd8-445b-640a-f2c8-dd012dd7e273-54ee10b8, #w-node-_7ec68cd8-445b-640a-f2c8-dd012dd7e276-54ee10b8, #w-node-_7ec68cd8-445b-640a-f2c8-dd012dd7e279-54ee10b8, #w-node-_7ec68cd8-445b-640a-f2c8-dd012dd7e27c-54ee10b8, #w-node-_7ec68cd8-445b-640a-f2c8-dd012dd7e27f-54ee10b8, #w-node-_7ec68cd8-445b-640a-f2c8-dd012dd7e282-54ee10b8, #w-node-_7ec68cd8-445b-640a-f2c8-dd012dd7e285-54ee10b8, #w-node-_7ec68cd8-445b-640a-f2c8-dd012dd7e288-54ee10b8, #w-node-_7ec68cd8-445b-640a-f2c8-dd012dd7e28b-54ee10b8, #w-node-_7ec68cd8-445b-640a-f2c8-dd012dd7e28e-54ee10b8, #w-node-_7ec68cd8-445b-640a-f2c8-dd012dd7e291-54ee10b8, #w-node-_7ec68cd8-445b-640a-f2c8-dd012dd7e294-54ee10b8, #w-node-_7ec68cd8-445b-640a-f2c8-dd012dd7e297-54ee10b8, #w-node-_7ec68cd8-445b-640a-f2c8-dd012dd7e29a-54ee10b8, #w-node-_7ec68cd8-445b-640a-f2c8-dd012dd7e29d-54ee10b8, #w-node-_7ec68cd8-445b-640a-f2c8-dd012dd7e2a0-54ee10b8, #w-node-_7ec68cd8-445b-640a-f2c8-dd012dd7e2a3-54ee10b8, #w-node-_7ec68cd8-445b-640a-f2c8-dd012dd7e2a6-54ee10b8, #w-node-_7ec68cd8-445b-640a-f2c8-dd012dd7e2a9-54ee10b8, #w-node-_7ec68cd8-445b-640a-f2c8-dd012dd7e2ac-54ee10b8, #w-node-_7ec68cd8-445b-640a-f2c8-dd012dd7e2af-54ee10b8, #w-node-_7ec68cd8-445b-640a-f2c8-dd012dd7e2b2-54ee10b8, #w-node-_7ec68cd8-445b-640a-f2c8-dd012dd7e2b5-54ee10b8, #w-node-_7ec68cd8-445b-640a-f2c8-dd012dd7e2b8-54ee10b8, #w-node-_7ec68cd8-445b-640a-f2c8-dd012dd7e2bb-54ee10b8, #w-node-_7ec68cd8-445b-640a-f2c8-dd012dd7e2be-54ee10b8, #w-node-_7ec68cd8-445b-640a-f2c8-dd012dd7e2c1-54ee10b8, #w-node-_7ec68cd8-445b-640a-f2c8-dd012dd7e2c4-54ee10b8, #w-node-_7ec68cd8-445b-640a-f2c8-dd012dd7e2c7-54ee10b8, #w-node-_7ec68cd8-445b-640a-f2c8-dd012dd7e2ca-54ee10b8, #w-node-_7ec68cd8-445b-640a-f2c8-dd012dd7e2cd-54ee10b8, #w-node-_7ec68cd8-445b-640a-f2c8-dd012dd7e2d0-54ee10b8, #w-node-_7ec68cd8-445b-640a-f2c8-dd012dd7e2d3-54ee10b8, #w-node-_7ec68cd8-445b-640a-f2c8-dd012dd7e2d6-54ee10b8, #w-node-_7ec68cd8-445b-640a-f2c8-dd012dd7e2d9-54ee10b8 {
  justify-self: stretch;
}

#w-node-_7ec68cd8-445b-640a-f2c8-dd012dd7e30b-54ee10b8, #w-node-_7ec68cd8-445b-640a-f2c8-dd012dd7e312-54ee10b8 {
  place-self: center;
}

#w-node-f3b759bf-b363-b90d-a9fa-d28fdc9602e3-2a6a9ccc {
  justify-self: end;
}

#w-node-_9d9befcb-52b9-26b6-a59d-3812c745786a-2a6a9ccc, #w-node-_9d9befcb-52b9-26b6-a59d-3812c745786d-2a6a9ccc, #w-node-_9d9befcb-52b9-26b6-a59d-3812c7457870-2a6a9ccc {
  justify-self: stretch;
}

#w-node-_9d9befcb-52b9-26b6-a59d-3812c7457873-2a6a9ccc, #w-node-_9d9befcb-52b9-26b6-a59d-3812c7457876-2a6a9ccc {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: stretch;
}

#w-node-_9d9befcb-52b9-26b6-a59d-3812c7457879-2a6a9ccc, #w-node-_9d9befcb-52b9-26b6-a59d-3812c745787c-2a6a9ccc, #w-node-_9d9befcb-52b9-26b6-a59d-3812c745787f-2a6a9ccc, #w-node-_9d9befcb-52b9-26b6-a59d-3812c7457882-2a6a9ccc, #w-node-_9d9befcb-52b9-26b6-a59d-3812c7457886-2a6a9ccc {
  justify-self: stretch;
}

#w-node-f3b759bf-b363-b90d-a9fa-d28fdc9603a1-2a6a9ccc {
  justify-self: start;
}

#w-node-f3b759bf-b363-b90d-a9fa-d28fdc9603a2-2a6a9ccc, #w-node-f3b759bf-b363-b90d-a9fa-d28fdc9603a3-2a6a9ccc, #w-node-f3b759bf-b363-b90d-a9fa-d28fdc9603a4-2a6a9ccc, #w-node-f3b759bf-b363-b90d-a9fa-d28fdc9603a5-2a6a9ccc {
  place-self: center start;
}

#w-node-f3b759bf-b363-b90d-a9fa-d28fdc96046d-2a6a9ccc, #w-node-f3b759bf-b363-b90d-a9fa-d28fdc960470-2a6a9ccc, #w-node-f3b759bf-b363-b90d-a9fa-d28fdc960473-2a6a9ccc, #w-node-f3b759bf-b363-b90d-a9fa-d28fdc960476-2a6a9ccc, #w-node-f3b759bf-b363-b90d-a9fa-d28fdc960479-2a6a9ccc, #w-node-f3b759bf-b363-b90d-a9fa-d28fdc96047c-2a6a9ccc, #w-node-f3b759bf-b363-b90d-a9fa-d28fdc96047f-2a6a9ccc, #w-node-f3b759bf-b363-b90d-a9fa-d28fdc960482-2a6a9ccc, #w-node-f3b759bf-b363-b90d-a9fa-d28fdc960485-2a6a9ccc, #w-node-f3b759bf-b363-b90d-a9fa-d28fdc960488-2a6a9ccc, #w-node-f3b759bf-b363-b90d-a9fa-d28fdc96048b-2a6a9ccc, #w-node-f3b759bf-b363-b90d-a9fa-d28fdc96048e-2a6a9ccc, #w-node-f3b759bf-b363-b90d-a9fa-d28fdc960491-2a6a9ccc, #w-node-f3b759bf-b363-b90d-a9fa-d28fdc960494-2a6a9ccc, #w-node-f3b759bf-b363-b90d-a9fa-d28fdc960497-2a6a9ccc, #w-node-f3b759bf-b363-b90d-a9fa-d28fdc96049a-2a6a9ccc, #w-node-f3b759bf-b363-b90d-a9fa-d28fdc96049d-2a6a9ccc, #w-node-f3b759bf-b363-b90d-a9fa-d28fdc9604a0-2a6a9ccc, #w-node-f3b759bf-b363-b90d-a9fa-d28fdc9604a3-2a6a9ccc, #w-node-f3b759bf-b363-b90d-a9fa-d28fdc9604a6-2a6a9ccc, #w-node-f3b759bf-b363-b90d-a9fa-d28fdc9604a9-2a6a9ccc, #w-node-f3b759bf-b363-b90d-a9fa-d28fdc9604ac-2a6a9ccc, #w-node-f3b759bf-b363-b90d-a9fa-d28fdc9604af-2a6a9ccc, #w-node-f3b759bf-b363-b90d-a9fa-d28fdc9604b2-2a6a9ccc, #w-node-f3b759bf-b363-b90d-a9fa-d28fdc9604b5-2a6a9ccc, #w-node-f3b759bf-b363-b90d-a9fa-d28fdc9604b8-2a6a9ccc, #w-node-f3b759bf-b363-b90d-a9fa-d28fdc9604bb-2a6a9ccc, #w-node-f3b759bf-b363-b90d-a9fa-d28fdc9604be-2a6a9ccc, #w-node-f3b759bf-b363-b90d-a9fa-d28fdc9604c1-2a6a9ccc, #w-node-f3b759bf-b363-b90d-a9fa-d28fdc9604c4-2a6a9ccc, #w-node-f3b759bf-b363-b90d-a9fa-d28fdc9604c7-2a6a9ccc, #w-node-f3b759bf-b363-b90d-a9fa-d28fdc9604ca-2a6a9ccc, #w-node-f3b759bf-b363-b90d-a9fa-d28fdc9604cd-2a6a9ccc, #w-node-f3b759bf-b363-b90d-a9fa-d28fdc9604d0-2a6a9ccc, #w-node-f3b759bf-b363-b90d-a9fa-d28fdc9604d3-2a6a9ccc {
  justify-self: stretch;
}

#w-node-f3b759bf-b363-b90d-a9fa-d28fdc960505-2a6a9ccc, #w-node-f3b759bf-b363-b90d-a9fa-d28fdc96050c-2a6a9ccc {
  place-self: center;
}

#w-node-c4a58bd5-ab7c-fe9f-fa39-bf3152958792-12973664 {
  justify-self: end;
}

#w-node-d6628040-8fa7-6a58-ab50-dc6507a6fa23-12973664, #w-node-d6628040-8fa7-6a58-ab50-dc6507a6fa26-12973664, #w-node-d6628040-8fa7-6a58-ab50-dc6507a6fa29-12973664 {
  justify-self: stretch;
}

#w-node-d6628040-8fa7-6a58-ab50-dc6507a6fa2c-12973664, #w-node-d6628040-8fa7-6a58-ab50-dc6507a6fa2f-12973664 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: stretch;
}

#w-node-d6628040-8fa7-6a58-ab50-dc6507a6fa32-12973664, #w-node-d6628040-8fa7-6a58-ab50-dc6507a6fa35-12973664, #w-node-d6628040-8fa7-6a58-ab50-dc6507a6fa38-12973664, #w-node-d6628040-8fa7-6a58-ab50-dc6507a6fa3b-12973664, #w-node-d6628040-8fa7-6a58-ab50-dc6507a6fa3e-12973664, #w-node-_34589d7a-e740-4527-8a4c-ab1c2e92a9fb-12973664, #w-node-f0ed3d93-de3e-0130-79ee-2cb86b97406c-12973664, #w-node-_82e74943-189b-2e79-e024-0f7bb17b0ac4-12973664, #w-node-_121fcd9b-0714-9d57-75cd-233f61a0c615-12973664, #w-node-_735e76d9-4fc3-6bac-e3c9-f816b4a4e4d7-12973664 {
  justify-self: stretch;
}

#w-node-c4a58bd5-ab7c-fe9f-fa39-bf315295884b-12973664 {
  justify-self: start;
}

#w-node-c4a58bd5-ab7c-fe9f-fa39-bf315295884c-12973664, #w-node-c4a58bd5-ab7c-fe9f-fa39-bf315295884d-12973664, #w-node-c4a58bd5-ab7c-fe9f-fa39-bf315295884e-12973664, #w-node-c4a58bd5-ab7c-fe9f-fa39-bf315295884f-12973664 {
  place-self: center start;
}

#w-node-c4a58bd5-ab7c-fe9f-fa39-bf315295891e-12973664, #w-node-c4a58bd5-ab7c-fe9f-fa39-bf3152958921-12973664, #w-node-c4a58bd5-ab7c-fe9f-fa39-bf3152958924-12973664, #w-node-c4a58bd5-ab7c-fe9f-fa39-bf3152958927-12973664, #w-node-c4a58bd5-ab7c-fe9f-fa39-bf315295892a-12973664, #w-node-c4a58bd5-ab7c-fe9f-fa39-bf315295892d-12973664, #w-node-c4a58bd5-ab7c-fe9f-fa39-bf3152958930-12973664, #w-node-c4a58bd5-ab7c-fe9f-fa39-bf3152958933-12973664, #w-node-c4a58bd5-ab7c-fe9f-fa39-bf3152958936-12973664, #w-node-c4a58bd5-ab7c-fe9f-fa39-bf3152958939-12973664, #w-node-c4a58bd5-ab7c-fe9f-fa39-bf315295893c-12973664, #w-node-c4a58bd5-ab7c-fe9f-fa39-bf315295893f-12973664, #w-node-c4a58bd5-ab7c-fe9f-fa39-bf3152958942-12973664, #w-node-c4a58bd5-ab7c-fe9f-fa39-bf3152958945-12973664, #w-node-c4a58bd5-ab7c-fe9f-fa39-bf3152958948-12973664, #w-node-c4a58bd5-ab7c-fe9f-fa39-bf315295894b-12973664, #w-node-c4a58bd5-ab7c-fe9f-fa39-bf315295894e-12973664, #w-node-c4a58bd5-ab7c-fe9f-fa39-bf3152958951-12973664, #w-node-c4a58bd5-ab7c-fe9f-fa39-bf3152958954-12973664, #w-node-c4a58bd5-ab7c-fe9f-fa39-bf3152958957-12973664, #w-node-c4a58bd5-ab7c-fe9f-fa39-bf315295895a-12973664, #w-node-c4a58bd5-ab7c-fe9f-fa39-bf315295895d-12973664, #w-node-c4a58bd5-ab7c-fe9f-fa39-bf3152958960-12973664, #w-node-c4a58bd5-ab7c-fe9f-fa39-bf3152958963-12973664, #w-node-c4a58bd5-ab7c-fe9f-fa39-bf3152958966-12973664, #w-node-c4a58bd5-ab7c-fe9f-fa39-bf3152958969-12973664, #w-node-c4a58bd5-ab7c-fe9f-fa39-bf315295896c-12973664, #w-node-c4a58bd5-ab7c-fe9f-fa39-bf315295896f-12973664, #w-node-c4a58bd5-ab7c-fe9f-fa39-bf3152958972-12973664, #w-node-c4a58bd5-ab7c-fe9f-fa39-bf3152958975-12973664, #w-node-c4a58bd5-ab7c-fe9f-fa39-bf3152958978-12973664, #w-node-c4a58bd5-ab7c-fe9f-fa39-bf315295897b-12973664, #w-node-c4a58bd5-ab7c-fe9f-fa39-bf315295897e-12973664, #w-node-c4a58bd5-ab7c-fe9f-fa39-bf3152958981-12973664, #w-node-c4a58bd5-ab7c-fe9f-fa39-bf3152958984-12973664 {
  justify-self: stretch;
}

#w-node-c4a58bd5-ab7c-fe9f-fa39-bf31529589b6-12973664, #w-node-c4a58bd5-ab7c-fe9f-fa39-bf31529589bd-12973664 {
  place-self: center;
}

#w-node-_9c0cf1a5-631b-3e03-2ce8-5ae530549464-04d08226 {
  justify-self: end;
}

#w-node-_55c227e0-9da8-8c8d-7594-3508373a09db-04d08226, #w-node-_55c227e0-9da8-8c8d-7594-3508373a09de-04d08226, #w-node-_55c227e0-9da8-8c8d-7594-3508373a09e1-04d08226 {
  justify-self: stretch;
}

#w-node-_55c227e0-9da8-8c8d-7594-3508373a09e4-04d08226, #w-node-_55c227e0-9da8-8c8d-7594-3508373a09e7-04d08226 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: stretch;
}

#w-node-_55c227e0-9da8-8c8d-7594-3508373a09ea-04d08226, #w-node-_55c227e0-9da8-8c8d-7594-3508373a09ed-04d08226, #w-node-_55c227e0-9da8-8c8d-7594-3508373a09f0-04d08226, #w-node-_55c227e0-9da8-8c8d-7594-3508373a09f3-04d08226, #w-node-_55c227e0-9da8-8c8d-7594-3508373a09f6-04d08226, #w-node-_781a2781-a4f8-5578-ab81-b51de80fb634-04d08226, #w-node-b4b8ed30-d783-44f5-0bf6-eff20c767c0f-04d08226, #w-node-cd9b61f9-0949-74e6-16e4-cdf7277402fc-04d08226, #w-node-_50920950-ce70-e7f0-e314-e339adb81568-04d08226, #w-node-d3eacd9d-364d-9dc6-0a90-2b4ac9a002a1-04d08226 {
  justify-self: stretch;
}

#w-node-_9c0cf1a5-631b-3e03-2ce8-5ae530549538-04d08226 {
  justify-self: start;
}

#w-node-_9c0cf1a5-631b-3e03-2ce8-5ae530549539-04d08226, #w-node-_9c0cf1a5-631b-3e03-2ce8-5ae53054953a-04d08226, #w-node-_9c0cf1a5-631b-3e03-2ce8-5ae53054953b-04d08226, #w-node-_9c0cf1a5-631b-3e03-2ce8-5ae53054953c-04d08226, #w-node-_816de90e-8807-3e90-f5af-2687fe7bb239-04d08226 {
  place-self: center start;
}

#w-node-_9c0cf1a5-631b-3e03-2ce8-5ae530549617-04d08226, #w-node-_9c0cf1a5-631b-3e03-2ce8-5ae53054961a-04d08226, #w-node-_9c0cf1a5-631b-3e03-2ce8-5ae53054961d-04d08226, #w-node-_9c0cf1a5-631b-3e03-2ce8-5ae530549620-04d08226, #w-node-_9c0cf1a5-631b-3e03-2ce8-5ae530549623-04d08226, #w-node-_9c0cf1a5-631b-3e03-2ce8-5ae530549626-04d08226, #w-node-_9c0cf1a5-631b-3e03-2ce8-5ae530549629-04d08226, #w-node-_9c0cf1a5-631b-3e03-2ce8-5ae53054962c-04d08226, #w-node-_9c0cf1a5-631b-3e03-2ce8-5ae53054962f-04d08226, #w-node-_9c0cf1a5-631b-3e03-2ce8-5ae530549632-04d08226, #w-node-_9c0cf1a5-631b-3e03-2ce8-5ae530549635-04d08226, #w-node-_9c0cf1a5-631b-3e03-2ce8-5ae530549638-04d08226, #w-node-_9c0cf1a5-631b-3e03-2ce8-5ae53054963b-04d08226, #w-node-_9c0cf1a5-631b-3e03-2ce8-5ae53054963e-04d08226, #w-node-_9c0cf1a5-631b-3e03-2ce8-5ae530549641-04d08226, #w-node-_9c0cf1a5-631b-3e03-2ce8-5ae530549644-04d08226, #w-node-_9c0cf1a5-631b-3e03-2ce8-5ae530549647-04d08226, #w-node-_9c0cf1a5-631b-3e03-2ce8-5ae53054964a-04d08226, #w-node-_9c0cf1a5-631b-3e03-2ce8-5ae53054964d-04d08226, #w-node-_9c0cf1a5-631b-3e03-2ce8-5ae530549650-04d08226, #w-node-_9c0cf1a5-631b-3e03-2ce8-5ae530549653-04d08226, #w-node-_9c0cf1a5-631b-3e03-2ce8-5ae530549656-04d08226, #w-node-_9c0cf1a5-631b-3e03-2ce8-5ae530549659-04d08226, #w-node-_9c0cf1a5-631b-3e03-2ce8-5ae53054965c-04d08226, #w-node-_9c0cf1a5-631b-3e03-2ce8-5ae53054965f-04d08226, #w-node-_9c0cf1a5-631b-3e03-2ce8-5ae530549662-04d08226, #w-node-_9c0cf1a5-631b-3e03-2ce8-5ae530549665-04d08226, #w-node-_9c0cf1a5-631b-3e03-2ce8-5ae530549668-04d08226, #w-node-_9c0cf1a5-631b-3e03-2ce8-5ae53054966b-04d08226, #w-node-_9c0cf1a5-631b-3e03-2ce8-5ae53054966e-04d08226, #w-node-_9c0cf1a5-631b-3e03-2ce8-5ae530549671-04d08226, #w-node-_9c0cf1a5-631b-3e03-2ce8-5ae530549674-04d08226, #w-node-_9c0cf1a5-631b-3e03-2ce8-5ae530549677-04d08226, #w-node-_9c0cf1a5-631b-3e03-2ce8-5ae53054967a-04d08226, #w-node-_9c0cf1a5-631b-3e03-2ce8-5ae53054967d-04d08226 {
  justify-self: stretch;
}

#w-node-_9c0cf1a5-631b-3e03-2ce8-5ae5305496af-04d08226, #w-node-_9c0cf1a5-631b-3e03-2ce8-5ae5305496b6-04d08226 {
  place-self: center;
}

#w-node-_1177be47-3809-d182-edfe-8b151bacd513-b4d7747c {
  align-self: end;
}

#w-node-_1177be47-3809-d182-edfe-8b151bacd54a-b4d7747c, #w-node-_1177be47-3809-d182-edfe-8b151bacd54b-b4d7747c, #w-node-_1177be47-3809-d182-edfe-8b151bacd54c-b4d7747c, #w-node-_1177be47-3809-d182-edfe-8b151bacd54d-b4d7747c, #w-node-_1177be47-3809-d182-edfe-8b151bacd54e-b4d7747c, #w-node-_1177be47-3809-d182-edfe-8b151bacd54f-b4d7747c, #w-node-_1177be47-3809-d182-edfe-8b151bacd564-b4d7747c, #w-node-_1177be47-3809-d182-edfe-8b151bacd565-b4d7747c, #w-node-_1177be47-3809-d182-edfe-8b151bacd566-b4d7747c, #w-node-_1177be47-3809-d182-edfe-8b151bacd567-b4d7747c, #w-node-_1177be47-3809-d182-edfe-8b151bacd568-b4d7747c, #w-node-_1177be47-3809-d182-edfe-8b151bacd569-b4d7747c {
  justify-self: start;
}

#w-node-_1177be47-3809-d182-edfe-8b151bacd598-b4d7747c {
  place-self: center start;
}

#w-node-_1177be47-3809-d182-edfe-8b151bacd5ac-b4d7747c, #w-node-_1177be47-3809-d182-edfe-8b151bacd5b1-b4d7747c, #w-node-_1177be47-3809-d182-edfe-8b151bacd5b6-b4d7747c {
  place-self: center;
}

#w-node-_1177be47-3809-d182-edfe-8b151bacd513-f4c1b2b7 {
  align-self: end;
}

#w-node-_1177be47-3809-d182-edfe-8b151bacd54a-f4c1b2b7, #w-node-_1177be47-3809-d182-edfe-8b151bacd54b-f4c1b2b7, #w-node-_1177be47-3809-d182-edfe-8b151bacd54c-f4c1b2b7, #w-node-_1177be47-3809-d182-edfe-8b151bacd54d-f4c1b2b7, #w-node-_1177be47-3809-d182-edfe-8b151bacd54e-f4c1b2b7, #w-node-_1177be47-3809-d182-edfe-8b151bacd54f-f4c1b2b7, #w-node-_1177be47-3809-d182-edfe-8b151bacd564-f4c1b2b7, #w-node-_1177be47-3809-d182-edfe-8b151bacd565-f4c1b2b7, #w-node-_1177be47-3809-d182-edfe-8b151bacd566-f4c1b2b7, #w-node-_1177be47-3809-d182-edfe-8b151bacd567-f4c1b2b7, #w-node-_1177be47-3809-d182-edfe-8b151bacd568-f4c1b2b7, #w-node-_1177be47-3809-d182-edfe-8b151bacd569-f4c1b2b7 {
  justify-self: start;
}

#w-node-_1177be47-3809-d182-edfe-8b151bacd598-f4c1b2b7 {
  place-self: center start;
}

#w-node-_1177be47-3809-d182-edfe-8b151bacd5ac-f4c1b2b7, #w-node-_1177be47-3809-d182-edfe-8b151bacd5b1-f4c1b2b7, #w-node-_1177be47-3809-d182-edfe-8b151bacd5b6-f4c1b2b7 {
  place-self: center;
}

#w-node-d9e5058e-8e1b-c81e-4cb6-c44bfecf5385-c386f6ec, #w-node-_16838ba2-0692-ab0a-64e8-653e10f033cb-c386f6ec, #w-node-_9d89fb70-ea7d-6278-10fc-22cf79dcff91-c386f6ec, #w-node-ced39e3d-bf08-e750-ddd2-3af6c626424b-c386f6ec {
  place-self: center stretch;
}

#w-node-a7a964ff-cbf8-8da2-3b45-71e839bc4235-c386f6ec, #w-node-fca4a576-e4f0-e756-4d34-6961b54173f9-c386f6ec {
  justify-self: stretch;
}

#w-node-d9e5058e-8e1b-c81e-4cb6-c44bfecf5385-09729533, #w-node-_16838ba2-0692-ab0a-64e8-653e10f033cb-09729533, #w-node-_9d89fb70-ea7d-6278-10fc-22cf79dcff91-09729533, #w-node-ced39e3d-bf08-e750-ddd2-3af6c626424b-09729533 {
  place-self: center stretch;
}

#w-node-a7a964ff-cbf8-8da2-3b45-71e839bc4235-09729533, #w-node-fca4a576-e4f0-e756-4d34-6961b54173f9-09729533 {
  justify-self: stretch;
}

#w-node-d9e5058e-8e1b-c81e-4cb6-c44bfecf5385-2a337daf, #w-node-_16838ba2-0692-ab0a-64e8-653e10f033cb-2a337daf, #w-node-_9d89fb70-ea7d-6278-10fc-22cf79dcff91-2a337daf, #w-node-ced39e3d-bf08-e750-ddd2-3af6c626424b-2a337daf {
  place-self: center stretch;
}

#w-node-a7a964ff-cbf8-8da2-3b45-71e839bc4235-2a337daf, #w-node-fca4a576-e4f0-e756-4d34-6961b54173f9-2a337daf {
  justify-self: stretch;
}

#w-node-d9e5058e-8e1b-c81e-4cb6-c44bfecf5385-545f5c21, #w-node-_16838ba2-0692-ab0a-64e8-653e10f033cb-545f5c21, #w-node-_9d89fb70-ea7d-6278-10fc-22cf79dcff91-545f5c21, #w-node-ced39e3d-bf08-e750-ddd2-3af6c626424b-545f5c21 {
  place-self: center stretch;
}

#w-node-a7a964ff-cbf8-8da2-3b45-71e839bc4235-545f5c21, #w-node-fca4a576-e4f0-e756-4d34-6961b54173f9-545f5c21 {
  justify-self: stretch;
}

#w-node-d9e5058e-8e1b-c81e-4cb6-c44bfecf5385-c7e5fd3e, #w-node-_16838ba2-0692-ab0a-64e8-653e10f033cb-c7e5fd3e, #w-node-_9d89fb70-ea7d-6278-10fc-22cf79dcff91-c7e5fd3e, #w-node-ced39e3d-bf08-e750-ddd2-3af6c626424b-c7e5fd3e {
  place-self: center stretch;
}

#w-node-a7a964ff-cbf8-8da2-3b45-71e839bc4235-c7e5fd3e, #w-node-fca4a576-e4f0-e756-4d34-6961b54173f9-c7e5fd3e {
  justify-self: stretch;
}

#w-node-d9e5058e-8e1b-c81e-4cb6-c44bfecf5385-23ad21a8, #w-node-_16838ba2-0692-ab0a-64e8-653e10f033cb-23ad21a8, #w-node-_9d89fb70-ea7d-6278-10fc-22cf79dcff91-23ad21a8, #w-node-ced39e3d-bf08-e750-ddd2-3af6c626424b-23ad21a8 {
  place-self: center stretch;
}

#w-node-a7a964ff-cbf8-8da2-3b45-71e839bc4235-23ad21a8, #w-node-fca4a576-e4f0-e756-4d34-6961b54173f9-23ad21a8 {
  justify-self: stretch;
}

#w-node-d9e5058e-8e1b-c81e-4cb6-c44bfecf5385-175d2f68, #w-node-_16838ba2-0692-ab0a-64e8-653e10f033cb-175d2f68, #w-node-_9d89fb70-ea7d-6278-10fc-22cf79dcff91-175d2f68, #w-node-ced39e3d-bf08-e750-ddd2-3af6c626424b-175d2f68 {
  place-self: center stretch;
}

#w-node-a7a964ff-cbf8-8da2-3b45-71e839bc4235-175d2f68, #w-node-fca4a576-e4f0-e756-4d34-6961b54173f9-175d2f68 {
  justify-self: stretch;
}

#w-node-d9e5058e-8e1b-c81e-4cb6-c44bfecf5385-bf3cbcf6, #w-node-_16838ba2-0692-ab0a-64e8-653e10f033cb-bf3cbcf6, #w-node-_9d89fb70-ea7d-6278-10fc-22cf79dcff91-bf3cbcf6, #w-node-ced39e3d-bf08-e750-ddd2-3af6c626424b-bf3cbcf6 {
  place-self: center stretch;
}

#w-node-a7a964ff-cbf8-8da2-3b45-71e839bc4235-bf3cbcf6, #w-node-fca4a576-e4f0-e756-4d34-6961b54173f9-bf3cbcf6 {
  justify-self: stretch;
}

#w-node-d9e5058e-8e1b-c81e-4cb6-c44bfecf5385-83bcfb9f, #w-node-_16838ba2-0692-ab0a-64e8-653e10f033cb-83bcfb9f, #w-node-_9d89fb70-ea7d-6278-10fc-22cf79dcff91-83bcfb9f, #w-node-ced39e3d-bf08-e750-ddd2-3af6c626424b-83bcfb9f {
  place-self: center stretch;
}

#w-node-a7a964ff-cbf8-8da2-3b45-71e839bc4235-83bcfb9f, #w-node-fca4a576-e4f0-e756-4d34-6961b54173f9-83bcfb9f {
  justify-self: stretch;
}

#w-node-d9e5058e-8e1b-c81e-4cb6-c44bfecf5385-29d20365, #w-node-_16838ba2-0692-ab0a-64e8-653e10f033cb-29d20365, #w-node-_9d89fb70-ea7d-6278-10fc-22cf79dcff91-29d20365, #w-node-ced39e3d-bf08-e750-ddd2-3af6c626424b-29d20365 {
  place-self: center stretch;
}

#w-node-a7a964ff-cbf8-8da2-3b45-71e839bc4235-29d20365, #w-node-fca4a576-e4f0-e756-4d34-6961b54173f9-29d20365 {
  justify-self: stretch;
}

#w-node-d9e5058e-8e1b-c81e-4cb6-c44bfecf5385-97f6f829, #w-node-_16838ba2-0692-ab0a-64e8-653e10f033cb-97f6f829, #w-node-_9d89fb70-ea7d-6278-10fc-22cf79dcff91-97f6f829, #w-node-ced39e3d-bf08-e750-ddd2-3af6c626424b-97f6f829 {
  place-self: center stretch;
}

#w-node-a7a964ff-cbf8-8da2-3b45-71e839bc4235-97f6f829, #w-node-fca4a576-e4f0-e756-4d34-6961b54173f9-97f6f829 {
  justify-self: stretch;
}

#w-node-d9e5058e-8e1b-c81e-4cb6-c44bfecf5385-9bccc6a5, #w-node-_16838ba2-0692-ab0a-64e8-653e10f033cb-9bccc6a5, #w-node-_9d89fb70-ea7d-6278-10fc-22cf79dcff91-9bccc6a5, #w-node-ced39e3d-bf08-e750-ddd2-3af6c626424b-9bccc6a5 {
  place-self: center stretch;
}

#w-node-a7a964ff-cbf8-8da2-3b45-71e839bc4235-9bccc6a5, #w-node-fca4a576-e4f0-e756-4d34-6961b54173f9-9bccc6a5 {
  justify-self: stretch;
}

#w-node-d9e5058e-8e1b-c81e-4cb6-c44bfecf5385-483dad6a, #w-node-_16838ba2-0692-ab0a-64e8-653e10f033cb-483dad6a, #w-node-_9d89fb70-ea7d-6278-10fc-22cf79dcff91-483dad6a, #w-node-ced39e3d-bf08-e750-ddd2-3af6c626424b-483dad6a {
  place-self: center stretch;
}

#w-node-a7a964ff-cbf8-8da2-3b45-71e839bc4235-483dad6a, #w-node-fca4a576-e4f0-e756-4d34-6961b54173f9-483dad6a {
  justify-self: stretch;
}

#w-node-d9e5058e-8e1b-c81e-4cb6-c44bfecf5385-93ad2350, #w-node-_16838ba2-0692-ab0a-64e8-653e10f033cb-93ad2350, #w-node-_9d89fb70-ea7d-6278-10fc-22cf79dcff91-93ad2350, #w-node-ced39e3d-bf08-e750-ddd2-3af6c626424b-93ad2350 {
  place-self: center stretch;
}

#w-node-a7a964ff-cbf8-8da2-3b45-71e839bc4235-93ad2350, #w-node-fca4a576-e4f0-e756-4d34-6961b54173f9-93ad2350 {
  justify-self: stretch;
}

#w-node-d9e5058e-8e1b-c81e-4cb6-c44bfecf5385-eb4cf062, #w-node-_16838ba2-0692-ab0a-64e8-653e10f033cb-eb4cf062, #w-node-_9d89fb70-ea7d-6278-10fc-22cf79dcff91-eb4cf062, #w-node-ced39e3d-bf08-e750-ddd2-3af6c626424b-eb4cf062 {
  place-self: center stretch;
}

#w-node-a7a964ff-cbf8-8da2-3b45-71e839bc4235-eb4cf062, #w-node-fca4a576-e4f0-e756-4d34-6961b54173f9-eb4cf062 {
  justify-self: stretch;
}

#w-node-d9e5058e-8e1b-c81e-4cb6-c44bfecf5385-4a53fa7a, #w-node-_16838ba2-0692-ab0a-64e8-653e10f033cb-4a53fa7a, #w-node-_9d89fb70-ea7d-6278-10fc-22cf79dcff91-4a53fa7a, #w-node-ced39e3d-bf08-e750-ddd2-3af6c626424b-4a53fa7a {
  place-self: center stretch;
}

#w-node-a7a964ff-cbf8-8da2-3b45-71e839bc4235-4a53fa7a, #w-node-fca4a576-e4f0-e756-4d34-6961b54173f9-4a53fa7a {
  justify-self: stretch;
}

#w-node-d9e5058e-8e1b-c81e-4cb6-c44bfecf5385-d1b45ba2, #w-node-_16838ba2-0692-ab0a-64e8-653e10f033cb-d1b45ba2, #w-node-_9d89fb70-ea7d-6278-10fc-22cf79dcff91-d1b45ba2, #w-node-ced39e3d-bf08-e750-ddd2-3af6c626424b-d1b45ba2 {
  place-self: center stretch;
}

#w-node-a7a964ff-cbf8-8da2-3b45-71e839bc4235-d1b45ba2, #w-node-fca4a576-e4f0-e756-4d34-6961b54173f9-d1b45ba2 {
  justify-self: stretch;
}

#w-node-d9e5058e-8e1b-c81e-4cb6-c44bfecf5385-31a576d1, #w-node-_16838ba2-0692-ab0a-64e8-653e10f033cb-31a576d1, #w-node-_9d89fb70-ea7d-6278-10fc-22cf79dcff91-31a576d1, #w-node-ced39e3d-bf08-e750-ddd2-3af6c626424b-31a576d1 {
  place-self: center stretch;
}

#w-node-a7a964ff-cbf8-8da2-3b45-71e839bc4235-31a576d1, #w-node-fca4a576-e4f0-e756-4d34-6961b54173f9-31a576d1 {
  justify-self: stretch;
}

#w-node-d9e5058e-8e1b-c81e-4cb6-c44bfecf5385-f4fc4b4b, #w-node-_16838ba2-0692-ab0a-64e8-653e10f033cb-f4fc4b4b, #w-node-_9d89fb70-ea7d-6278-10fc-22cf79dcff91-f4fc4b4b, #w-node-ced39e3d-bf08-e750-ddd2-3af6c626424b-f4fc4b4b {
  place-self: center stretch;
}

#w-node-a7a964ff-cbf8-8da2-3b45-71e839bc4235-f4fc4b4b, #w-node-fca4a576-e4f0-e756-4d34-6961b54173f9-f4fc4b4b {
  justify-self: stretch;
}

#w-node-d9e5058e-8e1b-c81e-4cb6-c44bfecf5385-63f15411, #w-node-_16838ba2-0692-ab0a-64e8-653e10f033cb-63f15411, #w-node-_9d89fb70-ea7d-6278-10fc-22cf79dcff91-63f15411, #w-node-ced39e3d-bf08-e750-ddd2-3af6c626424b-63f15411 {
  place-self: center stretch;
}

#w-node-a7a964ff-cbf8-8da2-3b45-71e839bc4235-63f15411, #w-node-fca4a576-e4f0-e756-4d34-6961b54173f9-63f15411 {
  justify-self: stretch;
}

#w-node-d9e5058e-8e1b-c81e-4cb6-c44bfecf5385-00badad4, #w-node-_16838ba2-0692-ab0a-64e8-653e10f033cb-00badad4, #w-node-_9d89fb70-ea7d-6278-10fc-22cf79dcff91-00badad4, #w-node-ced39e3d-bf08-e750-ddd2-3af6c626424b-00badad4 {
  place-self: center stretch;
}

#w-node-a7a964ff-cbf8-8da2-3b45-71e839bc4235-00badad4, #w-node-fca4a576-e4f0-e756-4d34-6961b54173f9-00badad4 {
  justify-self: stretch;
}

#w-node-d9e5058e-8e1b-c81e-4cb6-c44bfecf5385-60a9476c, #w-node-_16838ba2-0692-ab0a-64e8-653e10f033cb-60a9476c, #w-node-_9d89fb70-ea7d-6278-10fc-22cf79dcff91-60a9476c, #w-node-ced39e3d-bf08-e750-ddd2-3af6c626424b-60a9476c {
  place-self: center stretch;
}

#w-node-a7a964ff-cbf8-8da2-3b45-71e839bc4235-60a9476c, #w-node-fca4a576-e4f0-e756-4d34-6961b54173f9-60a9476c {
  justify-self: stretch;
}

#w-node-d9e5058e-8e1b-c81e-4cb6-c44bfecf5385-2b11ac0e, #w-node-_16838ba2-0692-ab0a-64e8-653e10f033cb-2b11ac0e, #w-node-_9d89fb70-ea7d-6278-10fc-22cf79dcff91-2b11ac0e, #w-node-ced39e3d-bf08-e750-ddd2-3af6c626424b-2b11ac0e {
  place-self: center stretch;
}

#w-node-a7a964ff-cbf8-8da2-3b45-71e839bc4235-2b11ac0e, #w-node-fca4a576-e4f0-e756-4d34-6961b54173f9-2b11ac0e {
  justify-self: stretch;
}

#w-node-d9e5058e-8e1b-c81e-4cb6-c44bfecf5385-3687686e, #w-node-_16838ba2-0692-ab0a-64e8-653e10f033cb-3687686e, #w-node-_9d89fb70-ea7d-6278-10fc-22cf79dcff91-3687686e, #w-node-ced39e3d-bf08-e750-ddd2-3af6c626424b-3687686e {
  place-self: center stretch;
}

#w-node-a7a964ff-cbf8-8da2-3b45-71e839bc4235-3687686e, #w-node-fca4a576-e4f0-e756-4d34-6961b54173f9-3687686e {
  justify-self: stretch;
}

#w-node-d9e5058e-8e1b-c81e-4cb6-c44bfecf5385-3471284f, #w-node-_16838ba2-0692-ab0a-64e8-653e10f033cb-3471284f, #w-node-_9d89fb70-ea7d-6278-10fc-22cf79dcff91-3471284f, #w-node-ced39e3d-bf08-e750-ddd2-3af6c626424b-3471284f {
  place-self: center stretch;
}

#w-node-a7a964ff-cbf8-8da2-3b45-71e839bc4235-3471284f, #w-node-fca4a576-e4f0-e756-4d34-6961b54173f9-3471284f {
  justify-self: stretch;
}

#w-node-d9e5058e-8e1b-c81e-4cb6-c44bfecf5385-ddda02a5, #w-node-_16838ba2-0692-ab0a-64e8-653e10f033cb-ddda02a5, #w-node-_9d89fb70-ea7d-6278-10fc-22cf79dcff91-ddda02a5, #w-node-ced39e3d-bf08-e750-ddd2-3af6c626424b-ddda02a5 {
  place-self: center stretch;
}

#w-node-a7a964ff-cbf8-8da2-3b45-71e839bc4235-ddda02a5, #w-node-fca4a576-e4f0-e756-4d34-6961b54173f9-ddda02a5 {
  justify-self: stretch;
}

#w-node-d9e5058e-8e1b-c81e-4cb6-c44bfecf5385-4be4f99d, #w-node-_16838ba2-0692-ab0a-64e8-653e10f033cb-4be4f99d, #w-node-_9d89fb70-ea7d-6278-10fc-22cf79dcff91-4be4f99d, #w-node-ced39e3d-bf08-e750-ddd2-3af6c626424b-4be4f99d {
  place-self: center stretch;
}

#w-node-a7a964ff-cbf8-8da2-3b45-71e839bc4235-4be4f99d, #w-node-fca4a576-e4f0-e756-4d34-6961b54173f9-4be4f99d {
  justify-self: stretch;
}

#w-node-d9e5058e-8e1b-c81e-4cb6-c44bfecf5385-2ec99f64, #w-node-_16838ba2-0692-ab0a-64e8-653e10f033cb-2ec99f64, #w-node-_9d89fb70-ea7d-6278-10fc-22cf79dcff91-2ec99f64, #w-node-ced39e3d-bf08-e750-ddd2-3af6c626424b-2ec99f64 {
  place-self: center stretch;
}

#w-node-a7a964ff-cbf8-8da2-3b45-71e839bc4235-2ec99f64, #w-node-fca4a576-e4f0-e756-4d34-6961b54173f9-2ec99f64 {
  justify-self: stretch;
}

#w-node-_7ec68cd8-445b-640a-f2c8-dd012dd7e0ed-f7131583 {
  justify-self: end;
}

#w-node-e2f1a642-ce3d-5311-a1e2-f2f0e32ddb61-f7131583, #w-node-e2f1a642-ce3d-5311-a1e2-f2f0e32ddb64-f7131583, #w-node-e2f1a642-ce3d-5311-a1e2-f2f0e32ddb67-f7131583 {
  justify-self: stretch;
}

#w-node-e2f1a642-ce3d-5311-a1e2-f2f0e32ddb6a-f7131583, #w-node-e2f1a642-ce3d-5311-a1e2-f2f0e32ddb6d-f7131583, #w-node-e2f1a642-ce3d-5311-a1e2-f2f0e32ddb70-f7131583 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: stretch;
}

#w-node-e2f1a642-ce3d-5311-a1e2-f2f0e32ddb73-f7131583, #w-node-e2f1a642-ce3d-5311-a1e2-f2f0e32ddb76-f7131583, #w-node-e2f1a642-ce3d-5311-a1e2-f2f0e32ddb79-f7131583, #w-node-e2f1a642-ce3d-5311-a1e2-f2f0e32ddb7d-f7131583 {
  justify-self: stretch;
}

#w-node-e2d9174b-6def-ad65-bc30-696723cb84c4-f7131583 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: stretch;
}

#w-node-_01c6ba8b-f460-dba6-1e01-afe4fd513b2a-f7131583, #w-node-_6401c823-8663-cdf2-da44-88dc727d1abe-f7131583, #w-node-dee8e8ba-60ad-2781-78a5-ee4d2d4502ca-f7131583, #w-node-_8dc50801-e727-c494-c652-d82b1f690706-f7131583 {
  justify-self: stretch;
}

#w-node-_7ec68cd8-445b-640a-f2c8-dd012dd7e1a3-f7131583 {
  justify-self: start;
}

#w-node-_7ec68cd8-445b-640a-f2c8-dd012dd7e1a4-f7131583, #w-node-_7ec68cd8-445b-640a-f2c8-dd012dd7e1a5-f7131583, #w-node-_7ec68cd8-445b-640a-f2c8-dd012dd7e1a6-f7131583, #w-node-_7ec68cd8-445b-640a-f2c8-dd012dd7e1a7-f7131583 {
  place-self: center start;
}

#w-node-_7ec68cd8-445b-640a-f2c8-dd012dd7e273-f7131583, #w-node-_7ec68cd8-445b-640a-f2c8-dd012dd7e276-f7131583, #w-node-_7ec68cd8-445b-640a-f2c8-dd012dd7e279-f7131583, #w-node-_7ec68cd8-445b-640a-f2c8-dd012dd7e27c-f7131583, #w-node-_7ec68cd8-445b-640a-f2c8-dd012dd7e27f-f7131583, #w-node-_7ec68cd8-445b-640a-f2c8-dd012dd7e282-f7131583, #w-node-_7ec68cd8-445b-640a-f2c8-dd012dd7e285-f7131583, #w-node-_7ec68cd8-445b-640a-f2c8-dd012dd7e288-f7131583, #w-node-_7ec68cd8-445b-640a-f2c8-dd012dd7e28b-f7131583, #w-node-_7ec68cd8-445b-640a-f2c8-dd012dd7e28e-f7131583, #w-node-_7ec68cd8-445b-640a-f2c8-dd012dd7e291-f7131583, #w-node-_7ec68cd8-445b-640a-f2c8-dd012dd7e294-f7131583, #w-node-_7ec68cd8-445b-640a-f2c8-dd012dd7e297-f7131583, #w-node-_7ec68cd8-445b-640a-f2c8-dd012dd7e29a-f7131583, #w-node-_7ec68cd8-445b-640a-f2c8-dd012dd7e29d-f7131583, #w-node-_7ec68cd8-445b-640a-f2c8-dd012dd7e2a0-f7131583, #w-node-_7ec68cd8-445b-640a-f2c8-dd012dd7e2a3-f7131583, #w-node-_7ec68cd8-445b-640a-f2c8-dd012dd7e2a6-f7131583, #w-node-_7ec68cd8-445b-640a-f2c8-dd012dd7e2a9-f7131583, #w-node-_7ec68cd8-445b-640a-f2c8-dd012dd7e2ac-f7131583, #w-node-_7ec68cd8-445b-640a-f2c8-dd012dd7e2af-f7131583, #w-node-_7ec68cd8-445b-640a-f2c8-dd012dd7e2b2-f7131583, #w-node-_7ec68cd8-445b-640a-f2c8-dd012dd7e2b5-f7131583, #w-node-_7ec68cd8-445b-640a-f2c8-dd012dd7e2b8-f7131583, #w-node-_7ec68cd8-445b-640a-f2c8-dd012dd7e2bb-f7131583, #w-node-_7ec68cd8-445b-640a-f2c8-dd012dd7e2be-f7131583, #w-node-_7ec68cd8-445b-640a-f2c8-dd012dd7e2c1-f7131583, #w-node-_7ec68cd8-445b-640a-f2c8-dd012dd7e2c4-f7131583, #w-node-_7ec68cd8-445b-640a-f2c8-dd012dd7e2c7-f7131583, #w-node-_7ec68cd8-445b-640a-f2c8-dd012dd7e2ca-f7131583, #w-node-_7ec68cd8-445b-640a-f2c8-dd012dd7e2cd-f7131583, #w-node-_7ec68cd8-445b-640a-f2c8-dd012dd7e2d0-f7131583, #w-node-_7ec68cd8-445b-640a-f2c8-dd012dd7e2d3-f7131583, #w-node-_7ec68cd8-445b-640a-f2c8-dd012dd7e2d6-f7131583, #w-node-_7ec68cd8-445b-640a-f2c8-dd012dd7e2d9-f7131583 {
  justify-self: stretch;
}

#w-node-_7ec68cd8-445b-640a-f2c8-dd012dd7e30b-f7131583, #w-node-_7ec68cd8-445b-640a-f2c8-dd012dd7e312-f7131583 {
  place-self: center;
}

#w-node-d9e5058e-8e1b-c81e-4cb6-c44bfecf5385-7c6f3fe7, #w-node-_16838ba2-0692-ab0a-64e8-653e10f033cb-7c6f3fe7, #w-node-_9d89fb70-ea7d-6278-10fc-22cf79dcff91-7c6f3fe7, #w-node-ced39e3d-bf08-e750-ddd2-3af6c626424b-7c6f3fe7 {
  place-self: center stretch;
}

#w-node-a7a964ff-cbf8-8da2-3b45-71e839bc4235-7c6f3fe7, #w-node-fca4a576-e4f0-e756-4d34-6961b54173f9-7c6f3fe7 {
  justify-self: stretch;
}

#w-node-_4e7e818e-af94-00d2-2d97-dcc26e051099-8b89a82a {
  grid-area: 1 / 2 / 3 / 3;
}

#w-node-_8d1c6ea8-10c0-8e66-3c0c-ae1107f2ea21-8956b750 {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-fc0ec5dd-9ce1-5b1a-8b41-656e0a346736-8956b750 {
  grid-area: 2 / 1 / 3 / 2;
}

#w-node-f0ae6254-de03-bcaa-c2f1-a55ad850fc04-8956b750 {
  grid-area: 1 / 3 / 2 / 4;
}

#w-node-_9d85f351-d014-a785-dede-2233becbac86-8956b750 {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_1a0072df-a90f-9f9d-ce6c-9767ad46892b-8956b750 {
  grid-area: 2 / 2 / 3 / 3;
}

#w-node-_5739f852-597f-7ef4-3db7-8c1977802634-8956b750 {
  grid-area: 2 / 3 / 3 / 4;
}

#w-node-d91f4787-4094-6c8e-fb7b-215c415d276d-8956b750 {
  grid-area: 3 / 2 / 4 / 3;
}

#w-node-_8d1c6ea8-10c0-8e66-3c0c-ae1107f2ea21-b0bbd831 {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-fc0ec5dd-9ce1-5b1a-8b41-656e0a346736-b0bbd831 {
  grid-area: 2 / 1 / 3 / 2;
}

#w-node-f0ae6254-de03-bcaa-c2f1-a55ad850fc04-b0bbd831 {
  grid-area: 1 / 3 / 2 / 4;
}

#w-node-_9d85f351-d014-a785-dede-2233becbac86-b0bbd831 {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_1a0072df-a90f-9f9d-ce6c-9767ad46892b-b0bbd831 {
  grid-area: 2 / 2 / 3 / 3;
}

#w-node-_5739f852-597f-7ef4-3db7-8c1977802634-b0bbd831 {
  grid-area: 2 / 3 / 3 / 4;
}

#w-node-d91f4787-4094-6c8e-fb7b-215c415d276d-b0bbd831 {
  grid-area: 3 / 2 / 4 / 3;
}

@media screen and (min-width: 1920px) {
  #w-node-_65fb96b7-013e-5bac-c238-a59e2528ca23-c88e6bdc, #w-node-ff8700a1-a947-4f03-e867-0efaad707e0b-10d8b47b, #w-node-e7682553-db72-6c5d-17b5-077b7b9c415a-82c119c6, #w-node-_780b02f8-5d22-c36e-6120-d3f443f7899c-82c119c6, #w-node-_62076512-4d79-5332-fb42-c87344ad00a2-c4ca651a, #w-node-_3c8f5fa0-b11f-7e18-3f2e-a38595ac7847-3abe9afd, #w-node-_3c8f5fa0-b11f-7e18-3f2e-a38595ac7873-3abe9afd, #w-node-c9a23c35-7065-67c0-83e8-4da8704350d1-3abe9afd, #w-node-_56824f37-16bf-cc3a-5542-471521304e75-9c195ecf, #w-node-_56824f37-16bf-cc3a-5542-471521304e78-9c195ecf, #w-node-_42996fb0-bafc-4d60-60e7-4f8837adc791-c7948664, #w-node-_42996fb0-bafc-4d60-60e7-4f8837adc794-c7948664, #w-node-_99b9687f-752f-26d1-8b96-25c5c16ada84-2a12a0b0, #w-node-_99b9687f-752f-26d1-8b96-25c5c16ada87-2a12a0b0, #w-node-_7606d02b-80ff-ae36-6667-788d29d7e5a7-83bb99d1, #w-node-_650d51dc-59a3-a853-339c-b2d67d24888a-6207556a, #w-node-_650d51dc-59a3-a853-339c-b2d67d24888d-6207556a, #w-node-e1fdbb47-9b94-1120-2db0-813e73bd4854-4271598f, #w-node-e1fdbb47-9b94-1120-2db0-813e73bd4857-4271598f, #w-node-e2f1a642-ce3d-5311-a1e2-f2f0e32ddb61-54ee10b8, #w-node-e2f1a642-ce3d-5311-a1e2-f2f0e32ddb64-54ee10b8, #w-node-_3685966b-598f-4f05-c338-604b986b1d1e-54ee10b8, #w-node-_3685966b-598f-4f05-c338-604b986b1d21-54ee10b8, #w-node-_9d9befcb-52b9-26b6-a59d-3812c745786a-2a6a9ccc, #w-node-_9d9befcb-52b9-26b6-a59d-3812c745786d-2a6a9ccc, #w-node-d6628040-8fa7-6a58-ab50-dc6507a6fa23-12973664, #w-node-d6628040-8fa7-6a58-ab50-dc6507a6fa26-12973664, #w-node-_55c227e0-9da8-8c8d-7594-3508373a09db-04d08226, #w-node-_55c227e0-9da8-8c8d-7594-3508373a09de-04d08226, #w-node-e2f1a642-ce3d-5311-a1e2-f2f0e32ddb61-f7131583, #w-node-e2f1a642-ce3d-5311-a1e2-f2f0e32ddb64-f7131583 {
    grid-area: span 1 / span 1 / span 1 / span 1;
    justify-self: stretch;
  }
}

@media screen and (max-width: 991px) {
  #w-node-_20fdd10c-b668-192b-a03d-b690ac34cfdd-676462ed, #w-node-_20fdd10c-b668-192b-a03d-b690ac34cfdd-f35bbd8f {
    order: 9999;
  }

  #w-node-_3013a429-5a72-b104-c64a-9e4fd317de5b-d768e03f, #w-node-_3013a429-5a72-b104-c64a-9e4fd317de6e-d768e03f {
    justify-self: stretch;
  }

  #w-node-e46213f4-cd06-3ea1-75a8-877f4098a484-d768e03f, #w-node-_8b93dec8-64a6-457c-8913-539da2d2c99e-42928dc6, #w-node-d0db7eb7-2b07-a91f-6997-74bff724b379-0dc034f7, #w-node-d0db7eb7-2b07-a91f-6997-74bff724b379-fce5567b, #w-node-d0db7eb7-2b07-a91f-6997-74bff724b379-1ab1a5a1, #w-node-d0db7eb7-2b07-a91f-6997-74bff724b379-3917e08c, #w-node-d0db7eb7-2b07-a91f-6997-74bff724b379-0c9bba93, #w-node-d0db7eb7-2b07-a91f-6997-74bff724b379-2a368780, #w-node-d0db7eb7-2b07-a91f-6997-74bff724b379-d71c587a, #w-node-d0db7eb7-2b07-a91f-6997-74bff724b379-82b43b57, #w-node-d0db7eb7-2b07-a91f-6997-74bff724b379-f0a23791, #w-node-d0db7eb7-2b07-a91f-6997-74bff724b379-075834b3, #w-node-d0db7eb7-2b07-a91f-6997-74bff724b379-58c8f2ec, #w-node-d0db7eb7-2b07-a91f-6997-74bff724b379-072397b8, #w-node-d0db7eb7-2b07-a91f-6997-74bff724b379-57391691, #w-node-d0db7eb7-2b07-a91f-6997-74bff724b379-d5cbc313, #w-node-d0db7eb7-2b07-a91f-6997-74bff724b379-54832dd4, #w-node-d0db7eb7-2b07-a91f-6997-74bff724b379-0963f11a, #w-node-d0db7eb7-2b07-a91f-6997-74bff724b379-59d57dbb, #w-node-d0db7eb7-2b07-a91f-6997-74bff724b379-468de265, #w-node-d0db7eb7-2b07-a91f-6997-74bff724b379-6fa416c9, #w-node-d0db7eb7-2b07-a91f-6997-74bff724b379-a436ec32, #w-node-d0db7eb7-2b07-a91f-6997-74bff724b379-d6aca13d, #w-node-d0db7eb7-2b07-a91f-6997-74bff724b379-876d8f87, #w-node-d0db7eb7-2b07-a91f-6997-74bff724b379-69023e13, #w-node-d0db7eb7-2b07-a91f-6997-74bff724b379-e1bf4482, #w-node-d0db7eb7-2b07-a91f-6997-74bff724b379-0cc93a66, #w-node-d0db7eb7-2b07-a91f-6997-74bff724b379-46c49522, #w-node-d0db7eb7-2b07-a91f-6997-74bff724b379-74d20f0b, #w-node-d0db7eb7-2b07-a91f-6997-74bff724b379-cc0f636f, #w-node-d0db7eb7-2b07-a91f-6997-74bff724b379-47a327ad, #w-node-d0db7eb7-2b07-a91f-6997-74bff724b379-5934e403, #w-node-d0db7eb7-2b07-a91f-6997-74bff724b379-8a2d0985, #w-node-d0db7eb7-2b07-a91f-6997-74bff724b379-70d84d9e, #w-node-d0db7eb7-2b07-a91f-6997-74bff724b379-cea7dc2e, #w-node-d0db7eb7-2b07-a91f-6997-74bff724b379-bacc843a, #w-node-d0db7eb7-2b07-a91f-6997-74bff724b379-bacd86bd, #w-node-d0db7eb7-2b07-a91f-6997-74bff724b379-567e1fa1, #w-node-d0db7eb7-2b07-a91f-6997-74bff724b379-476a6b90, #w-node-d0db7eb7-2b07-a91f-6997-74bff724b379-34a5cb19, #w-node-d0db7eb7-2b07-a91f-6997-74bff724b379-5fe09b5b, #w-node-d0db7eb7-2b07-a91f-6997-74bff724b379-11ba224e, #w-node-d0db7eb7-2b07-a91f-6997-74bff724b379-f0545282, #w-node-d0db7eb7-2b07-a91f-6997-74bff724b379-633a0dcc, #w-node-d0db7eb7-2b07-a91f-6997-74bff724b379-c8429e3b, #w-node-d0db7eb7-2b07-a91f-6997-74bff724b379-2d12b6e4, #w-node-d0db7eb7-2b07-a91f-6997-74bff724b379-50b86179, #w-node-d0db7eb7-2b07-a91f-6997-74bff724b379-5a525f0e, #w-node-d0db7eb7-2b07-a91f-6997-74bff724b379-eb87cf0f, #w-node-d0db7eb7-2b07-a91f-6997-74bff724b379-24410a7b, #w-node-d0db7eb7-2b07-a91f-6997-74bff724b379-6c45c0e7, #w-node-d0db7eb7-2b07-a91f-6997-74bff724b379-5a5799dd, #w-node-d0db7eb7-2b07-a91f-6997-74bff724b379-ea812fbc, #w-node-d0db7eb7-2b07-a91f-6997-74bff724b379-5e41f1fd, #w-node-d0db7eb7-2b07-a91f-6997-74bff724b379-053217a1, #w-node-d0db7eb7-2b07-a91f-6997-74bff724b379-44da45f6, #w-node-d0db7eb7-2b07-a91f-6997-74bff724b379-dde3bc3a, #w-node-d0db7eb7-2b07-a91f-6997-74bff724b379-b4679d55, #w-node-d0db7eb7-2b07-a91f-6997-74bff724b379-3f88d9ea, #w-node-d0db7eb7-2b07-a91f-6997-74bff724b379-5333f82d, #w-node-d0db7eb7-2b07-a91f-6997-74bff724b379-a5f5b4c6, #w-node-d0db7eb7-2b07-a91f-6997-74bff724b379-70f1ff36, #w-node-d0db7eb7-2b07-a91f-6997-74bff724b379-c1dd6e12, #w-node-d0db7eb7-2b07-a91f-6997-74bff724b379-2d3a42af, #w-node-d0db7eb7-2b07-a91f-6997-74bff724b379-670ab45d, #w-node-d0db7eb7-2b07-a91f-6997-74bff724b379-c6bb7ab0 {
    order: 9999;
  }

  #w-node-_1177be47-3809-d182-edfe-8b151bacd564-da546139 {
    align-self: start;
  }

  #w-node-_1177be47-3809-d182-edfe-8b151bacd565-da546139, #w-node-_1177be47-3809-d182-edfe-8b151bacd566-da546139, #w-node-_1177be47-3809-d182-edfe-8b151bacd567-da546139, #w-node-_1177be47-3809-d182-edfe-8b151bacd568-da546139, #w-node-_1177be47-3809-d182-edfe-8b151bacd569-da546139, #w-node-_1177be47-3809-d182-edfe-8b151bacd585-da546139 {
    align-self: center;
  }

  #w-node-d0db7eb7-2b07-a91f-6997-74bff724b379-5d6ac77f {
    order: 9999;
  }

  #w-node-f221fb52-823d-055d-2a9d-efe1ae5f53d6-a1051885 {
    align-self: start;
  }

  #w-node-f221fb52-823d-055d-2a9d-efe1ae5f53d7-a1051885, #w-node-f221fb52-823d-055d-2a9d-efe1ae5f53d8-a1051885, #w-node-f221fb52-823d-055d-2a9d-efe1ae5f53d9-a1051885, #w-node-f221fb52-823d-055d-2a9d-efe1ae5f53da-a1051885, #w-node-f221fb52-823d-055d-2a9d-efe1ae5f53db-a1051885, #w-node-f221fb52-823d-055d-2a9d-efe1ae5f53f7-a1051885 {
    align-self: center;
  }

  #w-node-_9ba38385-20ad-0569-6dbe-908c8ede7afe-e6fc10e6 {
    align-self: start;
  }

  #w-node-_9ba38385-20ad-0569-6dbe-908c8ede7aff-e6fc10e6, #w-node-_9ba38385-20ad-0569-6dbe-908c8ede7b00-e6fc10e6, #w-node-_9ba38385-20ad-0569-6dbe-908c8ede7b01-e6fc10e6, #w-node-_9ba38385-20ad-0569-6dbe-908c8ede7b02-e6fc10e6, #w-node-_9ba38385-20ad-0569-6dbe-908c8ede7b03-e6fc10e6, #w-node-_9ba38385-20ad-0569-6dbe-908c8ede7b1f-e6fc10e6 {
    align-self: center;
  }

  #w-node-e6e202ee-8fdb-0767-53d9-5c138e70a444-97161837 {
    align-self: start;
  }

  #w-node-e6e202ee-8fdb-0767-53d9-5c138e70a445-97161837, #w-node-e6e202ee-8fdb-0767-53d9-5c138e70a446-97161837, #w-node-e6e202ee-8fdb-0767-53d9-5c138e70a447-97161837, #w-node-e6e202ee-8fdb-0767-53d9-5c138e70a448-97161837, #w-node-e6e202ee-8fdb-0767-53d9-5c138e70a449-97161837, #w-node-e6e202ee-8fdb-0767-53d9-5c138e70a465-97161837 {
    align-self: center;
  }

  #w-node-bd250236-e464-c3f4-5b47-379cdd3fcaa7-76cfd579 {
    align-self: start;
  }

  #w-node-bd250236-e464-c3f4-5b47-379cdd3fcaa8-76cfd579, #w-node-bd250236-e464-c3f4-5b47-379cdd3fcaa9-76cfd579, #w-node-bd250236-e464-c3f4-5b47-379cdd3fcaaa-76cfd579, #w-node-bd250236-e464-c3f4-5b47-379cdd3fcaab-76cfd579, #w-node-bd250236-e464-c3f4-5b47-379cdd3fcaac-76cfd579, #w-node-bd250236-e464-c3f4-5b47-379cdd3fcac8-76cfd579 {
    align-self: center;
  }

  #w-node-_1c6fc396-24f5-ba2b-fc95-133180096b3b-e19c1975 {
    align-self: start;
  }

  #w-node-_1c6fc396-24f5-ba2b-fc95-133180096b3c-e19c1975, #w-node-_1c6fc396-24f5-ba2b-fc95-133180096b3d-e19c1975, #w-node-_1c6fc396-24f5-ba2b-fc95-133180096b3e-e19c1975, #w-node-_1c6fc396-24f5-ba2b-fc95-133180096b3f-e19c1975, #w-node-_1c6fc396-24f5-ba2b-fc95-133180096b40-e19c1975, #w-node-_1c6fc396-24f5-ba2b-fc95-133180096b5c-e19c1975 {
    align-self: center;
  }

  #w-node-_174b4cf3-f1f5-83b6-3d50-b757d932274a-c5c462f0 {
    align-self: start;
  }

  #w-node-_174b4cf3-f1f5-83b6-3d50-b757d932274b-c5c462f0, #w-node-_174b4cf3-f1f5-83b6-3d50-b757d932274c-c5c462f0, #w-node-_174b4cf3-f1f5-83b6-3d50-b757d932274d-c5c462f0, #w-node-_174b4cf3-f1f5-83b6-3d50-b757d932274e-c5c462f0, #w-node-_174b4cf3-f1f5-83b6-3d50-b757d932274f-c5c462f0, #w-node-_174b4cf3-f1f5-83b6-3d50-b757d932276b-c5c462f0 {
    align-self: center;
  }

  #w-node-_53c208e8-eddf-4f40-f502-cdf88f8b32ca-1ad9f35a {
    align-self: start;
  }

  #w-node-_53c208e8-eddf-4f40-f502-cdf88f8b32cb-1ad9f35a, #w-node-_53c208e8-eddf-4f40-f502-cdf88f8b32cc-1ad9f35a, #w-node-_53c208e8-eddf-4f40-f502-cdf88f8b32cd-1ad9f35a, #w-node-_53c208e8-eddf-4f40-f502-cdf88f8b32ce-1ad9f35a, #w-node-_53c208e8-eddf-4f40-f502-cdf88f8b32cf-1ad9f35a, #w-node-_53c208e8-eddf-4f40-f502-cdf88f8b32eb-1ad9f35a {
    align-self: center;
  }

  #w-node-c5975713-c462-9685-d3a6-8b79dc731539-8d03f1cb {
    align-self: start;
  }

  #w-node-c5975713-c462-9685-d3a6-8b79dc73153a-8d03f1cb, #w-node-c5975713-c462-9685-d3a6-8b79dc73153b-8d03f1cb, #w-node-c5975713-c462-9685-d3a6-8b79dc73153c-8d03f1cb, #w-node-c5975713-c462-9685-d3a6-8b79dc73153d-8d03f1cb, #w-node-c5975713-c462-9685-d3a6-8b79dc73153e-8d03f1cb, #w-node-c5975713-c462-9685-d3a6-8b79dc73155a-8d03f1cb {
    align-self: center;
  }

  #w-node-_7b4a3e32-fd11-19c1-7621-321e9c5dcbbc-0cf5a105 {
    align-self: start;
  }

  #w-node-_7b4a3e32-fd11-19c1-7621-321e9c5dcbbd-0cf5a105, #w-node-_7b4a3e32-fd11-19c1-7621-321e9c5dcbbe-0cf5a105, #w-node-_7b4a3e32-fd11-19c1-7621-321e9c5dcbbf-0cf5a105, #w-node-_7b4a3e32-fd11-19c1-7621-321e9c5dcbc0-0cf5a105, #w-node-_7b4a3e32-fd11-19c1-7621-321e9c5dcbc1-0cf5a105, #w-node-_7b4a3e32-fd11-19c1-7621-321e9c5dcbdd-0cf5a105 {
    align-self: center;
  }

  #w-node-e603d35c-d261-e063-bc8c-9f12372b6622-4d7aac36 {
    align-self: start;
  }

  #w-node-e603d35c-d261-e063-bc8c-9f12372b6623-4d7aac36, #w-node-e603d35c-d261-e063-bc8c-9f12372b6624-4d7aac36, #w-node-e603d35c-d261-e063-bc8c-9f12372b6625-4d7aac36, #w-node-e603d35c-d261-e063-bc8c-9f12372b6626-4d7aac36, #w-node-e603d35c-d261-e063-bc8c-9f12372b6627-4d7aac36, #w-node-_89b544df-048e-b9a9-5d33-414304c2c7d7-4d7aac36 {
    align-self: center;
  }

  #w-node-_118dee88-5125-4b84-2e8e-2508b1d27d45-abb1fda3 {
    justify-self: stretch;
  }

  #w-node-_4a3f4e35-74ce-8874-2d08-45c9790f2966-789143b8 {
    align-self: start;
  }

  #w-node-_4a3f4e35-74ce-8874-2d08-45c9790f2967-789143b8, #w-node-_4a3f4e35-74ce-8874-2d08-45c9790f2968-789143b8, #w-node-_4a3f4e35-74ce-8874-2d08-45c9790f2969-789143b8, #w-node-_4a3f4e35-74ce-8874-2d08-45c9790f296a-789143b8, #w-node-_4a3f4e35-74ce-8874-2d08-45c9790f296b-789143b8, #w-node-_4a3f4e35-74ce-8874-2d08-45c9790f2987-789143b8 {
    align-self: center;
  }

  #w-node-f841cee8-71ad-d987-909b-0e1e8e35c92c-e0aa17fa {
    align-self: start;
  }

  #w-node-f841cee8-71ad-d987-909b-0e1e8e35c92d-e0aa17fa, #w-node-f841cee8-71ad-d987-909b-0e1e8e35c92e-e0aa17fa, #w-node-f841cee8-71ad-d987-909b-0e1e8e35c92f-e0aa17fa, #w-node-f841cee8-71ad-d987-909b-0e1e8e35c930-e0aa17fa, #w-node-f841cee8-71ad-d987-909b-0e1e8e35c931-e0aa17fa, #w-node-f841cee8-71ad-d987-909b-0e1e8e35c94d-e0aa17fa {
    align-self: center;
  }

  #w-node-_755321c1-0fe1-4cc1-fbba-156eb383deeb-9d695ae7 {
    align-self: start;
  }

  #w-node-_755321c1-0fe1-4cc1-fbba-156eb383deec-9d695ae7, #w-node-_755321c1-0fe1-4cc1-fbba-156eb383deed-9d695ae7, #w-node-_755321c1-0fe1-4cc1-fbba-156eb383deee-9d695ae7, #w-node-_755321c1-0fe1-4cc1-fbba-156eb383deef-9d695ae7, #w-node-_755321c1-0fe1-4cc1-fbba-156eb383def0-9d695ae7, #w-node-_755321c1-0fe1-4cc1-fbba-156eb383df0c-9d695ae7 {
    align-self: center;
  }

  #w-node-da7dcdeb-a3ba-a432-873d-be65c2036970-f24ed3d3 {
    align-self: start;
  }

  #w-node-da7dcdeb-a3ba-a432-873d-be65c2036971-f24ed3d3, #w-node-da7dcdeb-a3ba-a432-873d-be65c2036972-f24ed3d3, #w-node-da7dcdeb-a3ba-a432-873d-be65c2036973-f24ed3d3, #w-node-da7dcdeb-a3ba-a432-873d-be65c2036974-f24ed3d3, #w-node-da7dcdeb-a3ba-a432-873d-be65c2036975-f24ed3d3, #w-node-da7dcdeb-a3ba-a432-873d-be65c2036991-f24ed3d3 {
    align-self: center;
  }

  #w-node-_6fd1b597-5ce1-71d7-2435-2e00e3b2375b-36f423f3 {
    align-self: start;
  }

  #w-node-_6fd1b597-5ce1-71d7-2435-2e00e3b2375c-36f423f3, #w-node-_6fd1b597-5ce1-71d7-2435-2e00e3b2375d-36f423f3, #w-node-_6fd1b597-5ce1-71d7-2435-2e00e3b2375e-36f423f3, #w-node-_6fd1b597-5ce1-71d7-2435-2e00e3b2375f-36f423f3, #w-node-_6fd1b597-5ce1-71d7-2435-2e00e3b23760-36f423f3, #w-node-_6fd1b597-5ce1-71d7-2435-2e00e3b2377c-36f423f3 {
    align-self: center;
  }

  #w-node-_6fd1b597-5ce1-71d7-2435-2e00e3b2375b-32aed2b4 {
    align-self: start;
  }

  #w-node-_6fd1b597-5ce1-71d7-2435-2e00e3b2375c-32aed2b4, #w-node-_6fd1b597-5ce1-71d7-2435-2e00e3b2375d-32aed2b4, #w-node-_6fd1b597-5ce1-71d7-2435-2e00e3b2375e-32aed2b4, #w-node-_6fd1b597-5ce1-71d7-2435-2e00e3b2375f-32aed2b4, #w-node-_6fd1b597-5ce1-71d7-2435-2e00e3b23760-32aed2b4, #w-node-_6fd1b597-5ce1-71d7-2435-2e00e3b2377c-32aed2b4 {
    align-self: center;
  }

  #w-node-_20269476-2068-082d-d2ee-c682949a2339-074d3f34, #w-node-_20269476-2068-082d-d2ee-c682949a2342-074d3f34, #w-node-_20269476-2068-082d-d2ee-c682949a2371-074d3f34 {
    order: -9999;
  }

  #w-node-a03fd37b-66c1-021c-d249-ac30afdceb10-074d3f34 {
    align-self: center;
  }

  #w-node-_20269476-2068-082d-d2ee-c682949a23da-074d3f34, #w-node-_20269476-2068-082d-d2ee-c682949a2433-074d3f34, #w-node-_20269476-2068-082d-d2ee-c682949a243c-074d3f34, #w-node-_9b0de59c-c3bb-548e-1854-60e456989469-988b8689 {
    order: -9999;
  }

  #w-node-_6e10e8f1-ca9b-9c13-55f8-830353e4bc2e-988b8689 {
    justify-self: stretch;
  }

  #w-node-_9b0de59c-c3bb-548e-1854-60e456989469-358a310d {
    order: -9999;
  }

  #w-node-_6e10e8f1-ca9b-9c13-55f8-830353e4bc2e-358a310d {
    justify-self: stretch;
  }

  #w-node-_1177be47-3809-d182-edfe-8b151bacd564-1a45b9ca {
    align-self: start;
  }

  #w-node-_1177be47-3809-d182-edfe-8b151bacd565-1a45b9ca, #w-node-_1177be47-3809-d182-edfe-8b151bacd566-1a45b9ca, #w-node-_1177be47-3809-d182-edfe-8b151bacd567-1a45b9ca, #w-node-_1177be47-3809-d182-edfe-8b151bacd568-1a45b9ca, #w-node-_1177be47-3809-d182-edfe-8b151bacd569-1a45b9ca, #w-node-_1177be47-3809-d182-edfe-8b151bacd585-1a45b9ca, #w-node-_8d09fa6b-49ff-2fcb-224b-cbcb7879c04d-e207f403 {
    align-self: center;
  }

  #w-node-_9b0de59c-c3bb-548e-1854-60e456989469-1b5d149e {
    order: -9999;
  }

  #w-node-_70bf9870-9dcf-23c4-4736-7c519e3817f5-1b5d149e {
    align-self: start;
  }

  #w-node-_70bf9870-9dcf-23c4-4736-7c519e3817f6-1b5d149e, #w-node-_70bf9870-9dcf-23c4-4736-7c519e3817f7-1b5d149e, #w-node-_70bf9870-9dcf-23c4-4736-7c519e3817f8-1b5d149e, #w-node-_70bf9870-9dcf-23c4-4736-7c519e3817f9-1b5d149e, #w-node-_70bf9870-9dcf-23c4-4736-7c519e3817fa-1b5d149e, #w-node-_70bf9870-9dcf-23c4-4736-7c519e381816-1b5d149e {
    align-self: center;
  }

  #w-node-_6e10e8f1-ca9b-9c13-55f8-830353e4bc2e-1b5d149e {
    justify-self: stretch;
  }

  #w-node-_4c1e5b34-35f6-54f0-4466-be256d3796ce-146b4129 {
    align-self: start;
  }

  #w-node-_4c1e5b34-35f6-54f0-4466-be256d3796cf-146b4129, #w-node-_4c1e5b34-35f6-54f0-4466-be256d3796d0-146b4129, #w-node-_4c1e5b34-35f6-54f0-4466-be256d3796d1-146b4129, #w-node-_4c1e5b34-35f6-54f0-4466-be256d3796d2-146b4129, #w-node-_4c1e5b34-35f6-54f0-4466-be256d3796d3-146b4129, #w-node-_4c1e5b34-35f6-54f0-4466-be256d3796ef-146b4129 {
    align-self: center;
  }

  #w-node-_6e10e8f1-ca9b-9c13-55f8-830353e4bc2e-146b4129 {
    justify-self: stretch;
  }

  #w-node-_828c730e-1164-b3f4-e0b5-068bd896ec25-84596bf9, #w-node-_9b0de59c-c3bb-548e-1854-60e456989469-84596bf9 {
    order: -9999;
  }

  #w-node-_1c731515-a50d-d0aa-0f91-ced025acd191-84596bf9 {
    align-self: start;
  }

  #w-node-_1c731515-a50d-d0aa-0f91-ced025acd192-84596bf9, #w-node-_1c731515-a50d-d0aa-0f91-ced025acd193-84596bf9, #w-node-_1c731515-a50d-d0aa-0f91-ced025acd194-84596bf9, #w-node-_1c731515-a50d-d0aa-0f91-ced025acd195-84596bf9, #w-node-_1c731515-a50d-d0aa-0f91-ced025acd196-84596bf9, #w-node-_1c731515-a50d-d0aa-0f91-ced025acd1b2-84596bf9 {
    align-self: center;
  }

  #w-node-_6e10e8f1-ca9b-9c13-55f8-830353e4bc2e-84596bf9 {
    justify-self: stretch;
  }

  #w-node-_1177be47-3809-d182-edfe-8b151bacd564-7d73c5b5 {
    align-self: start;
  }

  #w-node-_1177be47-3809-d182-edfe-8b151bacd565-7d73c5b5, #w-node-_1177be47-3809-d182-edfe-8b151bacd566-7d73c5b5, #w-node-_1177be47-3809-d182-edfe-8b151bacd567-7d73c5b5, #w-node-_1177be47-3809-d182-edfe-8b151bacd568-7d73c5b5, #w-node-_1177be47-3809-d182-edfe-8b151bacd569-7d73c5b5, #w-node-_1177be47-3809-d182-edfe-8b151bacd585-7d73c5b5 {
    align-self: center;
  }

  #w-node-_3d937813-1010-1017-def4-a37a7eea0b73-4341e8ba, #w-node-_6e5903c7-f817-331a-ff88-c65a9c0440c5-4341e8ba, #w-node-c32d4632-15aa-7fe8-2dfa-bbea041427f7-4341e8ba {
    order: -9999;
  }

  #w-node-_6e10e8f1-ca9b-9c13-55f8-830353e4bc2e-4341e8ba {
    justify-self: stretch;
  }

  #w-node-_167e6d05-5df0-ea9d-3098-ea2e9c1787f0-07023bcd, #w-node-_9b0de59c-c3bb-548e-1854-60e456989469-07023bcd {
    order: -9999;
  }

  #w-node-_70bf9870-9dcf-23c4-4736-7c519e3817f5-07023bcd {
    align-self: start;
  }

  #w-node-_70bf9870-9dcf-23c4-4736-7c519e3817f6-07023bcd, #w-node-_70bf9870-9dcf-23c4-4736-7c519e3817f7-07023bcd, #w-node-_70bf9870-9dcf-23c4-4736-7c519e3817f8-07023bcd, #w-node-_70bf9870-9dcf-23c4-4736-7c519e3817f9-07023bcd, #w-node-_70bf9870-9dcf-23c4-4736-7c519e3817fa-07023bcd, #w-node-_70bf9870-9dcf-23c4-4736-7c519e381816-07023bcd {
    align-self: center;
  }

  #w-node-_6e10e8f1-ca9b-9c13-55f8-830353e4bc2e-07023bcd {
    justify-self: stretch;
  }

  #w-node-_9b0de59c-c3bb-548e-1854-60e456989469-c88e6bdc, #w-node-_37cad447-8cc0-80be-91e2-dcc4f6f4238d-c88e6bdc, #w-node-_3e3a2931-bd8b-9c55-cb0a-260691ddae0d-c88e6bdc {
    order: -9999;
  }

  #w-node-_70bf9870-9dcf-23c4-4736-7c519e3817f5-c88e6bdc {
    align-self: start;
  }

  #w-node-_70bf9870-9dcf-23c4-4736-7c519e3817f6-c88e6bdc, #w-node-_70bf9870-9dcf-23c4-4736-7c519e3817f7-c88e6bdc, #w-node-_70bf9870-9dcf-23c4-4736-7c519e3817f8-c88e6bdc, #w-node-_70bf9870-9dcf-23c4-4736-7c519e3817f9-c88e6bdc, #w-node-_70bf9870-9dcf-23c4-4736-7c519e3817fa-c88e6bdc, #w-node-_70bf9870-9dcf-23c4-4736-7c519e381816-c88e6bdc {
    align-self: center;
  }

  #w-node-_6e10e8f1-ca9b-9c13-55f8-830353e4bc2e-c88e6bdc {
    justify-self: stretch;
  }

  #w-node-_9b0de59c-c3bb-548e-1854-60e456989469-8ca72e46 {
    order: -9999;
  }

  #w-node-_70bf9870-9dcf-23c4-4736-7c519e3817f5-8ca72e46 {
    align-self: start;
  }

  #w-node-_70bf9870-9dcf-23c4-4736-7c519e3817f6-8ca72e46, #w-node-_70bf9870-9dcf-23c4-4736-7c519e3817f7-8ca72e46, #w-node-_70bf9870-9dcf-23c4-4736-7c519e3817f8-8ca72e46, #w-node-_70bf9870-9dcf-23c4-4736-7c519e3817f9-8ca72e46, #w-node-_70bf9870-9dcf-23c4-4736-7c519e3817fa-8ca72e46, #w-node-_70bf9870-9dcf-23c4-4736-7c519e381816-8ca72e46 {
    align-self: center;
  }

  #w-node-_6e10e8f1-ca9b-9c13-55f8-830353e4bc2e-8ca72e46 {
    justify-self: stretch;
  }

  #w-node-f841cee8-71ad-d987-909b-0e1e8e35c92c-0365d38e {
    align-self: start;
  }

  #w-node-f841cee8-71ad-d987-909b-0e1e8e35c92d-0365d38e, #w-node-f841cee8-71ad-d987-909b-0e1e8e35c92e-0365d38e, #w-node-f841cee8-71ad-d987-909b-0e1e8e35c92f-0365d38e, #w-node-f841cee8-71ad-d987-909b-0e1e8e35c930-0365d38e, #w-node-f841cee8-71ad-d987-909b-0e1e8e35c931-0365d38e, #w-node-f841cee8-71ad-d987-909b-0e1e8e35c94d-0365d38e {
    align-self: center;
  }

  #w-node-_6fd1b597-5ce1-71d7-2435-2e00e3b2375b-417e8352 {
    align-self: start;
  }

  #w-node-_6fd1b597-5ce1-71d7-2435-2e00e3b2375c-417e8352, #w-node-_6fd1b597-5ce1-71d7-2435-2e00e3b2375d-417e8352, #w-node-_6fd1b597-5ce1-71d7-2435-2e00e3b2375e-417e8352, #w-node-_6fd1b597-5ce1-71d7-2435-2e00e3b2375f-417e8352, #w-node-_6fd1b597-5ce1-71d7-2435-2e00e3b23760-417e8352, #w-node-_6fd1b597-5ce1-71d7-2435-2e00e3b2377c-417e8352 {
    align-self: center;
  }

  #w-node-_53c208e8-eddf-4f40-f502-cdf88f8b32ca-3a03556b {
    align-self: start;
  }

  #w-node-_53c208e8-eddf-4f40-f502-cdf88f8b32cb-3a03556b, #w-node-_53c208e8-eddf-4f40-f502-cdf88f8b32cc-3a03556b, #w-node-_53c208e8-eddf-4f40-f502-cdf88f8b32cd-3a03556b, #w-node-_53c208e8-eddf-4f40-f502-cdf88f8b32ce-3a03556b, #w-node-_53c208e8-eddf-4f40-f502-cdf88f8b32cf-3a03556b, #w-node-_53c208e8-eddf-4f40-f502-cdf88f8b32eb-3a03556b {
    align-self: center;
  }

  #w-node-c5975713-c462-9685-d3a6-8b79dc731539-050786c9 {
    align-self: start;
  }

  #w-node-c5975713-c462-9685-d3a6-8b79dc73153a-050786c9, #w-node-c5975713-c462-9685-d3a6-8b79dc73153b-050786c9, #w-node-c5975713-c462-9685-d3a6-8b79dc73153c-050786c9, #w-node-c5975713-c462-9685-d3a6-8b79dc73153d-050786c9, #w-node-c5975713-c462-9685-d3a6-8b79dc73153e-050786c9, #w-node-c5975713-c462-9685-d3a6-8b79dc73155a-050786c9 {
    align-self: center;
  }

  #w-node-_6fd1b597-5ce1-71d7-2435-2e00e3b2375b-347797a8 {
    align-self: start;
  }

  #w-node-_6fd1b597-5ce1-71d7-2435-2e00e3b2375c-347797a8, #w-node-_6fd1b597-5ce1-71d7-2435-2e00e3b2375d-347797a8, #w-node-_6fd1b597-5ce1-71d7-2435-2e00e3b2375e-347797a8, #w-node-_6fd1b597-5ce1-71d7-2435-2e00e3b2375f-347797a8, #w-node-_6fd1b597-5ce1-71d7-2435-2e00e3b23760-347797a8, #w-node-_6fd1b597-5ce1-71d7-2435-2e00e3b2377c-347797a8 {
    align-self: center;
  }

  #w-node-_9ba38385-20ad-0569-6dbe-908c8ede7afe-410de65f {
    align-self: start;
  }

  #w-node-_9ba38385-20ad-0569-6dbe-908c8ede7aff-410de65f, #w-node-_9ba38385-20ad-0569-6dbe-908c8ede7b00-410de65f, #w-node-_9ba38385-20ad-0569-6dbe-908c8ede7b01-410de65f, #w-node-_9ba38385-20ad-0569-6dbe-908c8ede7b02-410de65f, #w-node-_9ba38385-20ad-0569-6dbe-908c8ede7b03-410de65f, #w-node-_9ba38385-20ad-0569-6dbe-908c8ede7b1f-410de65f {
    align-self: center;
  }

  #w-node-f221fb52-823d-055d-2a9d-efe1ae5f53d6-26f460ba {
    align-self: start;
  }

  #w-node-f221fb52-823d-055d-2a9d-efe1ae5f53d7-26f460ba, #w-node-f221fb52-823d-055d-2a9d-efe1ae5f53d8-26f460ba, #w-node-f221fb52-823d-055d-2a9d-efe1ae5f53d9-26f460ba, #w-node-f221fb52-823d-055d-2a9d-efe1ae5f53da-26f460ba, #w-node-f221fb52-823d-055d-2a9d-efe1ae5f53db-26f460ba, #w-node-f221fb52-823d-055d-2a9d-efe1ae5f53f7-26f460ba {
    align-self: center;
  }

  #w-node-b4c3f944-b509-62dd-d54f-feaaa2a604d2-e3b87963, #w-node-_5d5ca653-b162-6bac-7ffb-66f9357af3e1-e3b87963, #w-node-b4c3f944-b509-62dd-d54f-feaaa2a60501-e3b87963, #w-node-b4c3f944-b509-62dd-d54f-feaaa2a604db-e3b87963, #w-node-c58fa442-257e-0e69-fca6-7f6be1679ecd-001f7478, #w-node-c58fa442-257e-0e69-fca6-7f6be1679f20-001f7478, #w-node-c58fa442-257e-0e69-fca6-7f6be1679f59-001f7478, #w-node-c58fa442-257e-0e69-fca6-7f6be1679f62-001f7478, #w-node-_9e7fd5c6-52a1-900c-05e8-9c0004cce55e-001f7478, #w-node-be17c335-da16-958d-27f7-515df3f874a5-001f7478, #w-node-_5b9ecfee-086c-9c22-c039-8a838c6c0aa7-60c83cb2, #w-node-_5b9ecfee-086c-9c22-c039-8a838c6c0ab0-60c83cb2 {
    order: -9999;
  }

  #w-node-eeb22a5c-1ae6-f311-5c9f-e465be13c731-60c83cb2 {
    align-self: center;
  }

  #w-node-_5b9ecfee-086c-9c22-c039-8a838c6c0ad6-60c83cb2, #w-node-_57ec880f-f742-a241-48f2-f8ba73fee7fc-60c83cb2, #w-node-_7f4d8446-5b60-f7d8-7079-acd5561f8f00-229f8a95, #w-node-_7f4d8446-5b60-f7d8-7079-acd5561f8f09-229f8a95 {
    order: -9999;
  }

  #w-node-_852b3598-023e-b73b-f3c8-eb5b0896a6dd-229f8a95, #w-node-e60c3394-be0a-fe7f-d4be-48413e8bc96f-229f8a95 {
    align-self: center;
  }

  #w-node-_7f4d8446-5b60-f7d8-7079-acd5561f8fe3-229f8a95, #w-node-_7f4d8446-5b60-f7d8-7079-acd5561f8fec-229f8a95, #w-node-_56e912bf-3092-e1c9-fb47-53a7451da80e-229f8a95, #w-node-_1b808656-c083-0723-d4c7-11a3235cf2a1-5648bb18, #w-node-_1b808656-c083-0723-d4c7-11a3235cf2aa-5648bb18, #w-node-_1b808656-c083-0723-d4c7-11a3235cf352-5648bb18 {
    order: -9999;
  }

  #w-node-_37d9e954-3419-f86d-1bca-d6dc8857e43e-5648bb18 {
    align-self: center;
  }

  #w-node-_1b808656-c083-0723-d4c7-11a3235cf35b-5648bb18, #w-node-_1b808656-c083-0723-d4c7-11a3235cf3ae-5648bb18, #w-node-_14c8df4c-6b8c-11e6-b797-b4d87ce808f8-5648bb18, #w-node-_13c91a41-dfd8-30f4-c3e1-f175d5c2e908-51ec824b, #w-node-_13c91a41-dfd8-30f4-c3e1-f175d5c2e911-51ec824b, #w-node-_13c91a41-dfd8-30f4-c3e1-f175d5c2e940-51ec824b {
    order: -9999;
  }

  #w-node-b818e663-6837-f0a3-134c-c85eb2ac5bba-51ec824b {
    align-self: center;
  }

  #w-node-_13c91a41-dfd8-30f4-c3e1-f175d5c2e9a9-51ec824b, #w-node-_13c91a41-dfd8-30f4-c3e1-f175d5c2ea02-51ec824b, #w-node-f935024e-67f5-976d-ecae-6ab046f5fb4d-0385be39, #w-node-f935024e-67f5-976d-ecae-6ab046f5fb56-0385be39, #w-node-f935024e-67f5-976d-ecae-6ab046f5fb90-0385be39 {
    order: -9999;
  }

  #w-node-ec3d2a4d-4001-c192-c235-d04c8ca4ab47-0385be39, #w-node-_0b6c846b-3a94-d9d7-b081-d4c6f2e4afd7-0385be39 {
    align-self: center;
  }

  #w-node-f935024e-67f5-976d-ecae-6ab046f5fbf8-0385be39, #w-node-f935024e-67f5-976d-ecae-6ab046f5fc4e-0385be39, #w-node-_74b194f5-54d1-0904-8784-1a457d5bbf62-0385be39, #w-node-_811e10ba-3f02-8a4a-0aa9-ad62c09fc85e-70806b50, #w-node-_811e10ba-3f02-8a4a-0aa9-ad62c09fc867-70806b50, #w-node-_811e10ba-3f02-8a4a-0aa9-ad62c09fc8a5-70806b50 {
    order: -9999;
  }

  #w-node-_24ae2fd3-4df5-b3d8-1d9c-a4fd0d91be3e-70806b50 {
    align-self: center;
  }

  #w-node-_811e10ba-3f02-8a4a-0aa9-ad62c09fc92b-70806b50, #w-node-_811e10ba-3f02-8a4a-0aa9-ad62c09fc978-70806b50, #w-node-_9fd90b4a-282b-6e33-2e58-fe5d9bf9496d-70806b50, #w-node-_909a98c7-b81c-d88d-6207-2d889c901e96-d2a55a86, #w-node-_909a98c7-b81c-d88d-6207-2d889c901e9f-d2a55a86, #w-node-_909a98c7-b81c-d88d-6207-2d889c901ed9-d2a55a86, #w-node-_909a98c7-b81c-d88d-6207-2d889c901f53-d2a55a86 {
    order: -9999;
  }

  #w-node-c7160590-77ce-b1e9-8af9-e27daf875cf6-d2a55a86 {
    align-self: center;
  }

  #w-node-_909a98c7-b81c-d88d-6207-2d889c901f96-d2a55a86, #w-node-_909a98c7-b81c-d88d-6207-2d889c90201d-d2a55a86, #w-node-d8e4f991-de0e-f054-f89a-f2aee378f9c3-ad1b379c {
    order: -9999;
  }

  #w-node-_9772afd1-a75d-8bdd-600b-e17c6582fd73-ad1b379c {
    align-self: center;
  }

  #w-node-d8e4f991-de0e-f054-f89a-f2aee378f9cc-ad1b379c, #w-node-d8e4f991-de0e-f054-f89a-f2aee378fa18-ad1b379c, #w-node-_8ae7ada0-e7e3-dbe5-d0f1-221750532abc-2a3e160e, #w-node-_8ae7ada0-e7e3-dbe5-d0f1-221750532ac5-2a3e160e, #w-node-_8ae7ada0-e7e3-dbe5-d0f1-221750532af4-2a3e160e, #w-node-_2cf3ecb5-8a1b-85a7-fb28-a17d33a64961-2a3e160e {
    order: -9999;
  }

  #w-node-c0ee2549-cae4-918f-09b3-10b0cddd88b9-2a3e160e {
    align-self: center;
  }

  #w-node-_8ae7ada0-e7e3-dbe5-d0f1-221750532b5d-2a3e160e, #w-node-_8ae7ada0-e7e3-dbe5-d0f1-221750532bbc-2a3e160e, #w-node-_8ae7ada0-e7e3-dbe5-d0f1-221750532bc5-2a3e160e {
    order: -9999;
  }

  #w-node-_1177be47-3809-d182-edfe-8b151bacd564-a2b32f66 {
    align-self: start;
  }

  #w-node-_1177be47-3809-d182-edfe-8b151bacd565-a2b32f66, #w-node-_1177be47-3809-d182-edfe-8b151bacd566-a2b32f66, #w-node-_1177be47-3809-d182-edfe-8b151bacd567-a2b32f66, #w-node-_1177be47-3809-d182-edfe-8b151bacd568-a2b32f66, #w-node-_1177be47-3809-d182-edfe-8b151bacd569-a2b32f66, #w-node-_1177be47-3809-d182-edfe-8b151bacd585-a2b32f66 {
    align-self: center;
  }

  #w-node-_8a8b433f-c89e-5143-1c97-9a27f06d280f-95ca8f83, #w-node-_8a8b433f-c89e-5143-1c97-9a27f06d2818-95ca8f83, #w-node-_8a8b433f-c89e-5143-1c97-9a27f06d2855-95ca8f83, #w-node-_8a8b433f-c89e-5143-1c97-9a27f06d285e-95ca8f83, #w-node-_8a8b433f-c89e-5143-1c97-9a27f06d28fb-95ca8f83, #w-node-_8a8b433f-c89e-5143-1c97-9a27f06d2904-95ca8f83, #w-node-_7354c798-f7c0-64f9-c085-b1dee8882cf9-4b78396c, #w-node-_7354c798-f7c0-64f9-c085-b1dee8882d02-4b78396c, #w-node-_7354c798-f7c0-64f9-c085-b1dee8882d3b-4b78396c {
    order: -9999;
  }

  #w-node-_2cd3956d-87de-3e90-a726-2a698cf9bd8a-4b78396c {
    align-self: center;
  }

  #w-node-_7354c798-f7c0-64f9-c085-b1dee8882df8-4b78396c, #w-node-cb13ae0d-cae3-f5aa-2605-a4fd564e7375-4b78396c, #w-node-e4d3507a-2793-d69e-46af-19657f01379d-2323c8ee, #w-node-e4d3507a-2793-d69e-46af-19657f0137a6-2323c8ee, #w-node-e4d3507a-2793-d69e-46af-19657f0137bd-2323c8ee {
    order: -9999;
  }

  #w-node-_52b3f86a-6289-99c3-f18b-c8132ebe6cd9-2323c8ee {
    align-self: center;
  }

  #w-node-e4d3507a-2793-d69e-46af-19657f013859-2323c8ee {
    order: -9999;
  }

  #w-node-_7b4a3e32-fd11-19c1-7621-321e9c5dcbbc-1dd0843a {
    align-self: start;
  }

  #w-node-_7b4a3e32-fd11-19c1-7621-321e9c5dcbbd-1dd0843a, #w-node-_7b4a3e32-fd11-19c1-7621-321e9c5dcbbe-1dd0843a, #w-node-_7b4a3e32-fd11-19c1-7621-321e9c5dcbbf-1dd0843a, #w-node-_7b4a3e32-fd11-19c1-7621-321e9c5dcbc0-1dd0843a, #w-node-_7b4a3e32-fd11-19c1-7621-321e9c5dcbc1-1dd0843a, #w-node-_7b4a3e32-fd11-19c1-7621-321e9c5dcbdd-1dd0843a {
    align-self: center;
  }

  #w-node-_1c6fc396-24f5-ba2b-fc95-133180096b3b-dc8a894a {
    align-self: start;
  }

  #w-node-_1c6fc396-24f5-ba2b-fc95-133180096b3c-dc8a894a, #w-node-_1c6fc396-24f5-ba2b-fc95-133180096b3d-dc8a894a, #w-node-_1c6fc396-24f5-ba2b-fc95-133180096b3e-dc8a894a, #w-node-_1c6fc396-24f5-ba2b-fc95-133180096b3f-dc8a894a, #w-node-_1c6fc396-24f5-ba2b-fc95-133180096b40-dc8a894a, #w-node-_1c6fc396-24f5-ba2b-fc95-133180096b5c-dc8a894a {
    align-self: center;
  }

  #w-node-bd250236-e464-c3f4-5b47-379cdd3fcaa7-40f7dba3 {
    align-self: start;
  }

  #w-node-bd250236-e464-c3f4-5b47-379cdd3fcaa8-40f7dba3, #w-node-bd250236-e464-c3f4-5b47-379cdd3fcaa9-40f7dba3, #w-node-bd250236-e464-c3f4-5b47-379cdd3fcaaa-40f7dba3, #w-node-bd250236-e464-c3f4-5b47-379cdd3fcaab-40f7dba3, #w-node-bd250236-e464-c3f4-5b47-379cdd3fcaac-40f7dba3, #w-node-bd250236-e464-c3f4-5b47-379cdd3fcac8-40f7dba3 {
    align-self: center;
  }

  #w-node-_19a1c453-5478-0be1-d89d-b3880da61cb1-10d8b47b, #w-node-_19a1c453-5478-0be1-d89d-b3880da61cba-10d8b47b {
    order: -9999;
  }

  #w-node-_8dd8f0f9-f2ef-485e-3ffe-a8b713e27554-10d8b47b {
    align-self: center;
  }

  #w-node-_19a1c453-5478-0be1-d89d-b3880da61ce9-10d8b47b, #w-node-_19a1c453-5478-0be1-d89d-b3880da61d60-10d8b47b, #w-node-_19a1c453-5478-0be1-d89d-b3880da61dbf-10d8b47b, #w-node-e7682553-db72-6c5d-17b5-077b7b9c4150-82c119c6 {
    order: -9999;
  }

  #w-node-e018c613-cbd1-6247-4bf3-c815bdec6571-82c119c6, #w-node-f5b68a62-98bf-23fe-82b6-5241a09ef0a6-82c119c6 {
    align-self: center;
  }

  #w-node-e7682553-db72-6c5d-17b5-077b7b9c41c1-82c119c6, #w-node-e7682553-db72-6c5d-17b5-077b7b9c4257-82c119c6, #w-node-e7682553-db72-6c5d-17b5-077b7b9c4260-82c119c6, #w-node-b4d74f7e-5dd9-0ff1-5342-7e4c35918883-efb4769d, #w-node-b4d74f7e-5dd9-0ff1-5342-7e4c359189ae-efb4769d, #w-node-b4d74f7e-5dd9-0ff1-5342-7e4c359189e8-efb4769d {
    order: -9999;
  }

  #w-node-b9305b77-a7b7-b096-da0f-f702bec58162-efb4769d {
    align-self: center;
  }

  #w-node-b4d74f7e-5dd9-0ff1-5342-7e4c359189f1-efb4769d, #w-node-ad6c7831-c645-db65-21d5-2d4f0aa32be2-efb4769d, #w-node-b16f1893-6f0f-b737-503a-1f967d867e4d-a5d11d70, #w-node-b16f1893-6f0f-b737-503a-1f967d867e56-a5d11d70, #w-node-b16f1893-6f0f-b737-503a-1f967d867e97-a5d11d70 {
    order: -9999;
  }

  #w-node-a3b42358-2bf1-aac4-0659-3d08ad0dd032-a5d11d70 {
    align-self: center;
  }

  #w-node-b16f1893-6f0f-b737-503a-1f967d867f4a-a5d11d70, #w-node-b16f1893-6f0f-b737-503a-1f967d867f8b-a5d11d70, #w-node-f4027e78-bd55-5c2e-4561-f90e91c5f35c-a5d11d70, #w-node-_62076512-4d79-5332-fb42-c87344ad0095-c4ca651a, #w-node-_62076512-4d79-5332-fb42-c87344ad01c0-c4ca651a, #w-node-_62076512-4d79-5332-fb42-c87344ad01fa-c4ca651a {
    order: -9999;
  }

  #w-node-_7c97fe51-37fa-763a-246f-8881cc6642d6-c4ca651a, #w-node-af767f64-7ee7-978d-c620-4ace69418049-c4ca651a {
    align-self: center;
  }

  #w-node-_62076512-4d79-5332-fb42-c87344ad0203-c4ca651a, #w-node-_240f3341-1dd9-0c02-7ed1-b48205dec5aa-c4ca651a, #w-node-c3d1c431-9f2d-cdc9-eb86-069994ac14b8-c4ca651a, #w-node-_73ac93ea-19ee-dce3-e509-13df38256754-23d1748f, #w-node-_73ac93ea-19ee-dce3-e509-13df3825675d-23d1748f, #w-node-_73ac93ea-19ee-dce3-e509-13df3825679e-23d1748f {
    order: -9999;
  }

  #w-node-f850f2b7-76ce-ff67-5ebb-dd33b9802e18-23d1748f {
    align-self: center;
  }

  #w-node-_73ac93ea-19ee-dce3-e509-13df38256851-23d1748f, #w-node-_73ac93ea-19ee-dce3-e509-13df38256892-23d1748f, #w-node-_673974b4-6dda-2323-b15d-30b5e76cea7b-6f2dda67, #w-node-_673974b4-6dda-2323-b15d-30b5e76cea84-6f2dda67, #w-node-_673974b4-6dda-2323-b15d-30b5e76ceab9-6f2dda67 {
    order: -9999;
  }

  #w-node-_84797d0c-7533-9203-e9ff-ea0f84546b89-6f2dda67 {
    align-self: center;
  }

  #w-node-_673974b4-6dda-2323-b15d-30b5e76ceb4f-6f2dda67, #w-node-_673974b4-6dda-2323-b15d-30b5e76ceb92-6f2dda67, #w-node-cc066ca0-2f2a-eeba-b9e7-9290e2b33037-6f2dda67, #w-node-_3c8f5fa0-b11f-7e18-3f2e-a38595ac783a-3abe9afd {
    order: -9999;
  }

  #w-node-_4ce614d3-bb31-7a7d-affc-6aa0868e325a-3abe9afd, #w-node-_2e959ede-442f-d542-1e65-95fe36b84a95-3abe9afd {
    align-self: center;
  }

  #w-node-_3c8f5fa0-b11f-7e18-3f2e-a38595ac7965-3abe9afd, #w-node-_3c8f5fa0-b11f-7e18-3f2e-a38595ac799f-3abe9afd, #w-node-befd5c89-df0d-d3e9-8d94-89f6018db30c-d89b484c, #w-node-befd5c89-df0d-d3e9-8d94-89f6018db315-d89b484c, #w-node-befd5c89-df0d-d3e9-8d94-89f6018db353-d89b484c {
    order: -9999;
  }

  #w-node-_919ddb35-786f-8c9f-adab-984815008fd9-d89b484c {
    align-self: center;
  }

  #w-node-befd5c89-df0d-d3e9-8d94-89f6018db401-d89b484c, #w-node-befd5c89-df0d-d3e9-8d94-89f6018db439-d89b484c, #w-node-befd5c89-df0d-d3e9-8d94-89f6018db442-d89b484c, #w-node-_702e02c1-e3a4-28cc-eacb-f0cd5a2ee1db-72ef2cd0, #w-node-_702e02c1-e3a4-28cc-eacb-f0cd5a2ee1e4-72ef2cd0, #w-node-_702e02c1-e3a4-28cc-eacb-f0cd5a2ee23a-72ef2cd0 {
    order: -9999;
  }

  #w-node-_4a9ccbae-e21d-1b7f-c3b1-90b38d515bad-72ef2cd0 {
    align-self: center;
  }

  #w-node-_0f7a7d24-5ecd-07e0-6319-0d351aca7da6-72ef2cd0, #w-node-_702e02c1-e3a4-28cc-eacb-f0cd5a2ee319-72ef2cd0, #w-node-_702e02c1-e3a4-28cc-eacb-f0cd5a2ee322-72ef2cd0, #w-node-_7fbdebff-b004-76c8-5cd9-847fb705e633-027880bc, #w-node-_7fbdebff-b004-76c8-5cd9-847fb705e63c-027880bc, #w-node-_7fbdebff-b004-76c8-5cd9-847fb705e69b-027880bc {
    order: -9999;
  }

  #w-node-abcc74b8-acb1-d265-1744-94f84067b1d5-027880bc {
    align-self: center;
  }

  #w-node-_7fbdebff-b004-76c8-5cd9-847fb705e732-027880bc, #w-node-_7fbdebff-b004-76c8-5cd9-847fb705e7aa-027880bc {
    order: -9999;
  }

  #w-node-_1177be47-3809-d182-edfe-8b151bacd564-f55d84f2 {
    align-self: start;
  }

  #w-node-_1177be47-3809-d182-edfe-8b151bacd565-f55d84f2, #w-node-_1177be47-3809-d182-edfe-8b151bacd566-f55d84f2, #w-node-_1177be47-3809-d182-edfe-8b151bacd567-f55d84f2, #w-node-_1177be47-3809-d182-edfe-8b151bacd568-f55d84f2, #w-node-_1177be47-3809-d182-edfe-8b151bacd569-f55d84f2, #w-node-_1177be47-3809-d182-edfe-8b151bacd585-f55d84f2 {
    align-self: center;
  }

  #w-node-f3559764-b1a9-3182-57f2-e8c87f51f55d-84d06c0d, #w-node-f3559764-b1a9-3182-57f2-e8c87f51f566-84d06c0d, #w-node-f3559764-b1a9-3182-57f2-e8c87f51f5c5-84d06c0d {
    order: -9999;
  }

  #w-node-f3559764-b1a9-3182-57f2-e8c87f51f631-84d06c0d {
    align-self: center;
  }

  #w-node-f3559764-b1a9-3182-57f2-e8c87f51f656-84d06c0d, #w-node-f3559764-b1a9-3182-57f2-e8c87f51f6ce-84d06c0d, #w-node-f3559764-b1a9-3182-57f2-e8c87f51f6d7-84d06c0d, #w-node-_3dab6675-eb25-e5cb-8013-b6d317164439-554dcfb9, #w-node-_3dab6675-eb25-e5cb-8013-b6d317164442-554dcfb9, #w-node-_3dab6675-eb25-e5cb-8013-b6d31716446e-554dcfb9 {
    order: -9999;
  }

  #w-node-ecb94b2a-23cd-b843-3289-920bac6be442-554dcfb9 {
    align-self: center;
  }

  #w-node-_3dab6675-eb25-e5cb-8013-b6d31716455c-554dcfb9, #w-node-_3dab6675-eb25-e5cb-8013-b6d31716459a-554dcfb9, #w-node-_3dab6675-eb25-e5cb-8013-b6d3171645a3-554dcfb9, #w-node-_1595a464-9b3c-cf38-b103-76ea143b6897-cbf2228e, #w-node-_1595a464-9b3c-cf38-b103-76ea143b68a0-cbf2228e, #w-node-_1595a464-9b3c-cf38-b103-76ea143b68ff-cbf2228e, #w-node-_1595a464-9b3c-cf38-b103-76ea143b6990-cbf2228e, #w-node-_1595a464-9b3c-cf38-b103-76ea143b6a08-cbf2228e, #w-node-_1595a464-9b3c-cf38-b103-76ea143b6a11-cbf2228e, #w-node-_19246188-c778-2012-f6dc-6944ad22f523-cbf2228e, #w-node-_125a9fcb-b5c0-806a-5a58-2147929b3ed5-9c195ecf {
    order: -9999;
  }

  #w-node-_125a9fcb-b5c0-806a-5a58-2147929b3ffd-9c195ecf {
    align-self: center;
  }

  #w-node-_125a9fcb-b5c0-806a-5a58-2147929b409c-9c195ecf, #w-node-_125a9fcb-b5c0-806a-5a58-2147929b40c5-9c195ecf, #w-node-_6c522fec-76df-a901-e4da-a2d046f9428c-9c195ecf, #w-node-ef3b6cf7-cc70-918e-3808-6879833a1692-c0abfc55, #w-node-ef3b6cf7-cc70-918e-3808-6879833a169b-c0abfc55, #w-node-ef3b6cf7-cc70-918e-3808-6879833a16c7-c0abfc55 {
    order: -9999;
  }

  #w-node-ef3b6cf7-cc70-918e-3808-6879833a1792-c0abfc55 {
    align-self: center;
  }

  #w-node-ef3b6cf7-cc70-918e-3808-6879833a17ca-c0abfc55, #w-node-ef3b6cf7-cc70-918e-3808-6879833a1808-c0abfc55, #w-node-ef3b6cf7-cc70-918e-3808-6879833a1811-c0abfc55, #w-node-_42996fb0-bafc-4d60-60e7-4f8837adc75e-c7948664, #w-node-_42996fb0-bafc-4d60-60e7-4f8837adc925-c7948664 {
    order: -9999;
  }

  #w-node-_42996fb0-bafc-4d60-60e7-4f8837adc886-c7948664 {
    align-self: center;
  }

  #w-node-_42996fb0-bafc-4d60-60e7-4f8837adc94e-c7948664, #w-node-dc6f840b-3dcf-17bd-241a-31f8649ed3c7-c7948664, #w-node-_9503776e-dd54-ab8b-dea5-2b345b5d9d48-c7948664 {
    order: -9999;
  }

  #w-node-_1177be47-3809-d182-edfe-8b151bacd564-1bfe8f41 {
    align-self: start;
  }

  #w-node-_1177be47-3809-d182-edfe-8b151bacd565-1bfe8f41, #w-node-_1177be47-3809-d182-edfe-8b151bacd566-1bfe8f41, #w-node-_1177be47-3809-d182-edfe-8b151bacd567-1bfe8f41, #w-node-_1177be47-3809-d182-edfe-8b151bacd568-1bfe8f41, #w-node-_1177be47-3809-d182-edfe-8b151bacd569-1bfe8f41, #w-node-_1177be47-3809-d182-edfe-8b151bacd585-1bfe8f41 {
    align-self: center;
  }

  #w-node-_99b9687f-752f-26d1-8b96-25c5c16ada77-2a12a0b0, #w-node-_99b9687f-752f-26d1-8b96-25c5c16adafc-2a12a0b0 {
    order: -9999;
  }

  #w-node-_99b9687f-752f-26d1-8b96-25c5c16adb82-2a12a0b0 {
    align-self: center;
  }

  #w-node-_99b9687f-752f-26d1-8b96-25c5c16adbc4-2a12a0b0, #w-node-_99b9687f-752f-26d1-8b96-25c5c16adbcd-2a12a0b0, #w-node-_99b9687f-752f-26d1-8b96-25c5c16adc05-2a12a0b0, #w-node-_7606d02b-80ff-ae36-6667-788d29d7e59e-83bb99d1, #w-node-_7606d02b-80ff-ae36-6667-788d29d7e765-83bb99d1 {
    order: -9999;
  }

  #w-node-_7606d02b-80ff-ae36-6667-788d29d7e6c6-83bb99d1 {
    align-self: center;
  }

  #w-node-_7606d02b-80ff-ae36-6667-788d29d7e78e-83bb99d1, #w-node-_9b77cf14-6256-866d-665c-35184480276a-83bb99d1, #w-node-_6ce6e5e6-313d-3f15-39a8-35b14c986e24-83bb99d1, #w-node-e7d26150-94ea-8288-1dcc-a87e4030a2ae-7ffa60b9, #w-node-e7d26150-94ea-8288-1dcc-a87e4030a2df-7ffa60b9, #w-node-e7d26150-94ea-8288-1dcc-a87e4030a3c8-7ffa60b9 {
    order: -9999;
  }

  #w-node-e7d26150-94ea-8288-1dcc-a87e4030a359-7ffa60b9 {
    align-self: center;
  }

  #w-node-e7d26150-94ea-8288-1dcc-a87e4030a497-7ffa60b9, #w-node-e7d26150-94ea-8288-1dcc-a87e4030a4d6-7ffa60b9, #w-node-_6acb7a53-bf1e-5a01-799e-e8528f3883c9-7ffa60b9, #w-node-ef60d4bf-045a-ab9e-b7ae-f222557f4a7e-270f0098, #w-node-ef60d4bf-045a-ab9e-b7ae-f222557f4a87-270f0098, #w-node-ef60d4bf-045a-ab9e-b7ae-f222557f4ac1-270f0098 {
    order: -9999;
  }

  #w-node-ef60d4bf-045a-ab9e-b7ae-f222557f4b1b-270f0098 {
    align-self: center;
  }

  #w-node-ef60d4bf-045a-ab9e-b7ae-f222557f4c46-270f0098, #w-node-ef60d4bf-045a-ab9e-b7ae-f222557f4c8e-270f0098, #w-node-_650d51dc-59a3-a853-339c-b2d67d24887d-6207556a, #w-node-_650d51dc-59a3-a853-339c-b2d67d248902-6207556a {
    order: -9999;
  }

  #w-node-_650d51dc-59a3-a853-339c-b2d67d248988-6207556a {
    align-self: center;
  }

  #w-node-_650d51dc-59a3-a853-339c-b2d67d2489ca-6207556a, #w-node-_650d51dc-59a3-a853-339c-b2d67d2489d3-6207556a, #w-node-_650d51dc-59a3-a853-339c-b2d67d248a0b-6207556a, #w-node-e1fdbb47-9b94-1120-2db0-813e73bd484b-4271598f {
    order: -9999;
  }

  #w-node-e1fdbb47-9b94-1120-2db0-813e73bd490a-4271598f {
    align-self: center;
  }

  #w-node-e1fdbb47-9b94-1120-2db0-813e73bd488b-4271598f, #w-node-e1fdbb47-9b94-1120-2db0-813e73bd492b-4271598f, #w-node-e1fdbb47-9b94-1120-2db0-813e73bd4934-4271598f, #w-node-_7ec68cd8-445b-640a-f2c8-dd012dd7e17b-54ee10b8 {
    order: -9999;
  }

  #w-node-_7ec68cd8-445b-640a-f2c8-dd012dd7e1de-54ee10b8 {
    align-self: center;
  }

  #w-node-_7ec68cd8-445b-640a-f2c8-dd012dd7e1f6-54ee10b8, #w-node-_7ec68cd8-445b-640a-f2c8-dd012dd7e22e-54ee10b8, #w-node-_7ec68cd8-445b-640a-f2c8-dd012dd7e237-54ee10b8, #w-node-f3b759bf-b363-b90d-a9fa-d28fdc96037a-2a6a9ccc {
    order: -9999;
  }

  #w-node-f3b759bf-b363-b90d-a9fa-d28fdc9603dc-2a6a9ccc {
    align-self: center;
  }

  #w-node-f3b759bf-b363-b90d-a9fa-d28fdc9603f4-2a6a9ccc, #w-node-f3b759bf-b363-b90d-a9fa-d28fdc960429-2a6a9ccc, #w-node-f3b759bf-b363-b90d-a9fa-d28fdc960432-2a6a9ccc, #w-node-c4a58bd5-ab7c-fe9f-fa39-bf3152958822-12973664 {
    order: -9999;
  }

  #w-node-c4a58bd5-ab7c-fe9f-fa39-bf3152958886-12973664 {
    align-self: center;
  }

  #w-node-c4a58bd5-ab7c-fe9f-fa39-bf315295889c-12973664, #w-node-c4a58bd5-ab7c-fe9f-fa39-bf31529588da-12973664, #w-node-c4a58bd5-ab7c-fe9f-fa39-bf31529588e3-12973664, #w-node-_9c0cf1a5-631b-3e03-2ce8-5ae53054950f-04d08226 {
    order: -9999;
  }

  #w-node-_9c0cf1a5-631b-3e03-2ce8-5ae530549573-04d08226 {
    align-self: center;
  }

  #w-node-_9c0cf1a5-631b-3e03-2ce8-5ae530549589-04d08226, #w-node-_9c0cf1a5-631b-3e03-2ce8-5ae5305495d3-04d08226, #w-node-_9c0cf1a5-631b-3e03-2ce8-5ae5305495dc-04d08226 {
    order: -9999;
  }

  #w-node-_1177be47-3809-d182-edfe-8b151bacd564-b4d7747c {
    align-self: start;
  }

  #w-node-_1177be47-3809-d182-edfe-8b151bacd565-b4d7747c, #w-node-_1177be47-3809-d182-edfe-8b151bacd566-b4d7747c, #w-node-_1177be47-3809-d182-edfe-8b151bacd567-b4d7747c, #w-node-_1177be47-3809-d182-edfe-8b151bacd568-b4d7747c, #w-node-_1177be47-3809-d182-edfe-8b151bacd569-b4d7747c, #w-node-_1177be47-3809-d182-edfe-8b151bacd585-b4d7747c {
    align-self: center;
  }

  #w-node-_1177be47-3809-d182-edfe-8b151bacd564-f4c1b2b7 {
    align-self: start;
  }

  #w-node-_1177be47-3809-d182-edfe-8b151bacd565-f4c1b2b7, #w-node-_1177be47-3809-d182-edfe-8b151bacd566-f4c1b2b7, #w-node-_1177be47-3809-d182-edfe-8b151bacd567-f4c1b2b7, #w-node-_1177be47-3809-d182-edfe-8b151bacd568-f4c1b2b7, #w-node-_1177be47-3809-d182-edfe-8b151bacd569-f4c1b2b7, #w-node-_1177be47-3809-d182-edfe-8b151bacd585-f4c1b2b7 {
    align-self: center;
  }

  #w-node-_7ec68cd8-445b-640a-f2c8-dd012dd7e17b-f7131583 {
    order: -9999;
  }

  #w-node-_7ec68cd8-445b-640a-f2c8-dd012dd7e1de-f7131583 {
    align-self: center;
  }

  #w-node-_7ec68cd8-445b-640a-f2c8-dd012dd7e1f6-f7131583, #w-node-_7ec68cd8-445b-640a-f2c8-dd012dd7e22e-f7131583, #w-node-_7ec68cd8-445b-640a-f2c8-dd012dd7e237-f7131583 {
    order: -9999;
  }

  #w-node-_4e7e818e-af94-00d2-2d97-dcc26e051099-8b89a82a {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_00ad1588-4ee2-821f-b549-51f8df8cfccd-f8fe4b70 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_8f35f83b-8029-6b1d-f7bc-29139f1da833-c641bf25 {
    order: -9999;
  }

  #w-node-_3013a429-5a72-b104-c64a-9e4fd317de6e-d768e03f {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_9d4b4ea3-7908-5a26-eca6-d4c4b27069ac-4da8657f, #w-node-_9d4b4ea3-7908-5a26-eca6-d4c4b27069ac-42928dc6, #w-node-_8b93dec8-64a6-457c-8913-539da2d2c99e-42928dc6, #w-node-_9d4b4ea3-7908-5a26-eca6-d4c4b27069ac-069f36d8, #w-node-_9d4b4ea3-7908-5a26-eca6-d4c4b27069ac-0dc034f7, #w-node-d0db7eb7-2b07-a91f-6997-74bff724b379-0dc034f7, #w-node-_9d4b4ea3-7908-5a26-eca6-d4c4b27069ac-fce5567b, #w-node-d0db7eb7-2b07-a91f-6997-74bff724b379-fce5567b, #w-node-_9d4b4ea3-7908-5a26-eca6-d4c4b27069ac-1ab1a5a1, #w-node-d0db7eb7-2b07-a91f-6997-74bff724b379-1ab1a5a1, #w-node-_9d4b4ea3-7908-5a26-eca6-d4c4b27069ac-3917e08c, #w-node-b050d69b-1d73-d82c-b2c1-16b363256042-3917e08c, #w-node-_8f3d4f94-687a-24c6-6f38-0bac2db8d36a-3917e08c, #w-node-d0db7eb7-2b07-a91f-6997-74bff724b379-3917e08c, #w-node-_9d4b4ea3-7908-5a26-eca6-d4c4b27069ac-0c9bba93, #w-node-d0db7eb7-2b07-a91f-6997-74bff724b379-0c9bba93, #w-node-a15bbc39-cc65-0bd9-c88f-4551f9dac501-2a368780, #w-node-d0db7eb7-2b07-a91f-6997-74bff724b379-2a368780, #w-node-a15bbc39-cc65-0bd9-c88f-4551f9dac501-d71c587a, #w-node-d0db7eb7-2b07-a91f-6997-74bff724b379-d71c587a, #w-node-a15bbc39-cc65-0bd9-c88f-4551f9dac501-82b43b57, #w-node-d0db7eb7-2b07-a91f-6997-74bff724b379-82b43b57, #w-node-a15bbc39-cc65-0bd9-c88f-4551f9dac501-f0a23791, #w-node-d0db7eb7-2b07-a91f-6997-74bff724b379-f0a23791, #w-node-a15bbc39-cc65-0bd9-c88f-4551f9dac501-075834b3, #w-node-d0db7eb7-2b07-a91f-6997-74bff724b379-075834b3, #w-node-a15bbc39-cc65-0bd9-c88f-4551f9dac501-58c8f2ec, #w-node-d0db7eb7-2b07-a91f-6997-74bff724b379-58c8f2ec, #w-node-a15bbc39-cc65-0bd9-c88f-4551f9dac501-072397b8, #w-node-d0db7eb7-2b07-a91f-6997-74bff724b379-072397b8, #w-node-a15bbc39-cc65-0bd9-c88f-4551f9dac501-57391691, #w-node-d0db7eb7-2b07-a91f-6997-74bff724b379-57391691, #w-node-a15bbc39-cc65-0bd9-c88f-4551f9dac501-d5cbc313, #w-node-d0db7eb7-2b07-a91f-6997-74bff724b379-d5cbc313, #w-node-a15bbc39-cc65-0bd9-c88f-4551f9dac501-54832dd4, #w-node-d0db7eb7-2b07-a91f-6997-74bff724b379-54832dd4, #w-node-a15bbc39-cc65-0bd9-c88f-4551f9dac501-0963f11a, #w-node-d0db7eb7-2b07-a91f-6997-74bff724b379-0963f11a, #w-node-a15bbc39-cc65-0bd9-c88f-4551f9dac501-59d57dbb, #w-node-d0db7eb7-2b07-a91f-6997-74bff724b379-59d57dbb, #w-node-a15bbc39-cc65-0bd9-c88f-4551f9dac501-468de265, #w-node-d0db7eb7-2b07-a91f-6997-74bff724b379-468de265, #w-node-a15bbc39-cc65-0bd9-c88f-4551f9dac501-6fa416c9, #w-node-d0db7eb7-2b07-a91f-6997-74bff724b379-6fa416c9, #w-node-a15bbc39-cc65-0bd9-c88f-4551f9dac501-a436ec32, #w-node-d0db7eb7-2b07-a91f-6997-74bff724b379-a436ec32, #w-node-a15bbc39-cc65-0bd9-c88f-4551f9dac501-d6aca13d, #w-node-d0db7eb7-2b07-a91f-6997-74bff724b379-d6aca13d, #w-node-a15bbc39-cc65-0bd9-c88f-4551f9dac501-876d8f87, #w-node-d0db7eb7-2b07-a91f-6997-74bff724b379-876d8f87, #w-node-a15bbc39-cc65-0bd9-c88f-4551f9dac501-69023e13, #w-node-d0db7eb7-2b07-a91f-6997-74bff724b379-69023e13, #w-node-a15bbc39-cc65-0bd9-c88f-4551f9dac501-e1bf4482, #w-node-d0db7eb7-2b07-a91f-6997-74bff724b379-e1bf4482, #w-node-a15bbc39-cc65-0bd9-c88f-4551f9dac501-0cc93a66, #w-node-d0db7eb7-2b07-a91f-6997-74bff724b379-0cc93a66, #w-node-a15bbc39-cc65-0bd9-c88f-4551f9dac501-46c49522, #w-node-d0db7eb7-2b07-a91f-6997-74bff724b379-46c49522, #w-node-a15bbc39-cc65-0bd9-c88f-4551f9dac501-74d20f0b, #w-node-d0db7eb7-2b07-a91f-6997-74bff724b379-74d20f0b, #w-node-a15bbc39-cc65-0bd9-c88f-4551f9dac501-cc0f636f, #w-node-d0db7eb7-2b07-a91f-6997-74bff724b379-cc0f636f, #w-node-a15bbc39-cc65-0bd9-c88f-4551f9dac501-47a327ad, #w-node-d0db7eb7-2b07-a91f-6997-74bff724b379-47a327ad, #w-node-a15bbc39-cc65-0bd9-c88f-4551f9dac501-5934e403, #w-node-d0db7eb7-2b07-a91f-6997-74bff724b379-5934e403, #w-node-a15bbc39-cc65-0bd9-c88f-4551f9dac501-8a2d0985, #w-node-d0db7eb7-2b07-a91f-6997-74bff724b379-8a2d0985, #w-node-a15bbc39-cc65-0bd9-c88f-4551f9dac501-70d84d9e, #w-node-d0db7eb7-2b07-a91f-6997-74bff724b379-70d84d9e, #w-node-a15bbc39-cc65-0bd9-c88f-4551f9dac501-cea7dc2e, #w-node-d0db7eb7-2b07-a91f-6997-74bff724b379-cea7dc2e, #w-node-a15bbc39-cc65-0bd9-c88f-4551f9dac501-bacc843a, #w-node-d0db7eb7-2b07-a91f-6997-74bff724b379-bacc843a, #w-node-a15bbc39-cc65-0bd9-c88f-4551f9dac501-bacd86bd, #w-node-d0db7eb7-2b07-a91f-6997-74bff724b379-bacd86bd, #w-node-a15bbc39-cc65-0bd9-c88f-4551f9dac501-567e1fa1, #w-node-d0db7eb7-2b07-a91f-6997-74bff724b379-567e1fa1, #w-node-a15bbc39-cc65-0bd9-c88f-4551f9dac501-476a6b90, #w-node-d0db7eb7-2b07-a91f-6997-74bff724b379-476a6b90, #w-node-a15bbc39-cc65-0bd9-c88f-4551f9dac501-34a5cb19, #w-node-d0db7eb7-2b07-a91f-6997-74bff724b379-34a5cb19, #w-node-a15bbc39-cc65-0bd9-c88f-4551f9dac501-5fe09b5b, #w-node-d0db7eb7-2b07-a91f-6997-74bff724b379-5fe09b5b, #w-node-a15bbc39-cc65-0bd9-c88f-4551f9dac501-11ba224e, #w-node-d0db7eb7-2b07-a91f-6997-74bff724b379-11ba224e, #w-node-a15bbc39-cc65-0bd9-c88f-4551f9dac501-f0545282, #w-node-d0db7eb7-2b07-a91f-6997-74bff724b379-f0545282, #w-node-a15bbc39-cc65-0bd9-c88f-4551f9dac501-633a0dcc, #w-node-d0db7eb7-2b07-a91f-6997-74bff724b379-633a0dcc, #w-node-a15bbc39-cc65-0bd9-c88f-4551f9dac501-c8429e3b, #w-node-d0db7eb7-2b07-a91f-6997-74bff724b379-c8429e3b, #w-node-a15bbc39-cc65-0bd9-c88f-4551f9dac501-2d12b6e4, #w-node-d0db7eb7-2b07-a91f-6997-74bff724b379-2d12b6e4, #w-node-a15bbc39-cc65-0bd9-c88f-4551f9dac501-50b86179, #w-node-d0db7eb7-2b07-a91f-6997-74bff724b379-50b86179, #w-node-a15bbc39-cc65-0bd9-c88f-4551f9dac501-5a525f0e, #w-node-d0db7eb7-2b07-a91f-6997-74bff724b379-5a525f0e, #w-node-a15bbc39-cc65-0bd9-c88f-4551f9dac501-eb87cf0f, #w-node-d0db7eb7-2b07-a91f-6997-74bff724b379-eb87cf0f, #w-node-a15bbc39-cc65-0bd9-c88f-4551f9dac501-24410a7b, #w-node-d0db7eb7-2b07-a91f-6997-74bff724b379-24410a7b, #w-node-a15bbc39-cc65-0bd9-c88f-4551f9dac501-6c45c0e7, #w-node-d0db7eb7-2b07-a91f-6997-74bff724b379-6c45c0e7, #w-node-a15bbc39-cc65-0bd9-c88f-4551f9dac501-5a5799dd, #w-node-d0db7eb7-2b07-a91f-6997-74bff724b379-5a5799dd, #w-node-a15bbc39-cc65-0bd9-c88f-4551f9dac501-ea812fbc, #w-node-d0db7eb7-2b07-a91f-6997-74bff724b379-ea812fbc, #w-node-a15bbc39-cc65-0bd9-c88f-4551f9dac501-5e41f1fd, #w-node-d0db7eb7-2b07-a91f-6997-74bff724b379-5e41f1fd, #w-node-a15bbc39-cc65-0bd9-c88f-4551f9dac501-053217a1, #w-node-d0db7eb7-2b07-a91f-6997-74bff724b379-053217a1, #w-node-a15bbc39-cc65-0bd9-c88f-4551f9dac501-44da45f6, #w-node-d0db7eb7-2b07-a91f-6997-74bff724b379-44da45f6, #w-node-a15bbc39-cc65-0bd9-c88f-4551f9dac501-dde3bc3a, #w-node-d0db7eb7-2b07-a91f-6997-74bff724b379-dde3bc3a, #w-node-_9d4b4ea3-7908-5a26-eca6-d4c4b27069ac-b4679d55, #w-node-d0db7eb7-2b07-a91f-6997-74bff724b379-b4679d55, #w-node-_9d4b4ea3-7908-5a26-eca6-d4c4b27069ac-3f88d9ea, #w-node-d0db7eb7-2b07-a91f-6997-74bff724b379-3f88d9ea, #w-node-_9d4b4ea3-7908-5a26-eca6-d4c4b27069ac-5333f82d, #w-node-d0db7eb7-2b07-a91f-6997-74bff724b379-5333f82d, #w-node-_9d4b4ea3-7908-5a26-eca6-d4c4b27069ac-a5f5b4c6, #w-node-d0db7eb7-2b07-a91f-6997-74bff724b379-a5f5b4c6, #w-node-_9d4b4ea3-7908-5a26-eca6-d4c4b27069ac-70f1ff36, #w-node-d0db7eb7-2b07-a91f-6997-74bff724b379-70f1ff36, #w-node-_9d4b4ea3-7908-5a26-eca6-d4c4b27069ac-c1dd6e12, #w-node-d0db7eb7-2b07-a91f-6997-74bff724b379-c1dd6e12, #w-node-_9d4b4ea3-7908-5a26-eca6-d4c4b27069ac-2d3a42af, #w-node-d0db7eb7-2b07-a91f-6997-74bff724b379-2d3a42af, #w-node-_9d4b4ea3-7908-5a26-eca6-d4c4b27069ac-670ab45d, #w-node-d0db7eb7-2b07-a91f-6997-74bff724b379-670ab45d, #w-node-_9d4b4ea3-7908-5a26-eca6-d4c4b27069ac-c6bb7ab0, #w-node-d0db7eb7-2b07-a91f-6997-74bff724b379-c6bb7ab0, #w-node-_9d4b4ea3-7908-5a26-eca6-d4c4b27069ac-5d6ac77f, #w-node-d0db7eb7-2b07-a91f-6997-74bff724b379-5d6ac77f {
    order: -9999;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_3013a429-5a72-b104-c64a-9e4fd317de5b-d768e03f {
    justify-self: auto;
  }

  #w-node-_118dee88-5125-4b84-2e8e-2508b1d27ccc-abb1fda3 {
    align-self: start;
  }

  #w-node-_118dee88-5125-4b84-2e8e-2508b1d27dca-abb1fda3 {
    justify-self: start;
  }

  #w-node-_118dee88-5125-4b84-2e8e-2508b1d27dcb-abb1fda3, #w-node-_118dee88-5125-4b84-2e8e-2508b1d27dd6-abb1fda3, #w-node-_118dee88-5125-4b84-2e8e-2508b1d27de1-abb1fda3 {
    justify-self: stretch;
  }

  #w-node-_16838ba2-0692-ab0a-64e8-653e10f033ca-fd695405 {
    order: -9999;
  }

  #w-node-_20269476-2068-082d-d2ee-c682949a22eb-074d3f34, #w-node-f83f2e50-e225-2147-a1ed-8435054d02a6-988b8689, #w-node-f83f2e50-e225-2147-a1ed-8435054d02a6-358a310d, #w-node-f83f2e50-e225-2147-a1ed-8435054d02a6-1b5d149e, #w-node-f83f2e50-e225-2147-a1ed-8435054d02a6-146b4129, #w-node-f83f2e50-e225-2147-a1ed-8435054d02a6-84596bf9, #w-node-f83f2e50-e225-2147-a1ed-8435054d02a6-4341e8ba, #w-node-f83f2e50-e225-2147-a1ed-8435054d02a6-07023bcd, #w-node-f83f2e50-e225-2147-a1ed-8435054d02a6-c88e6bdc {
    align-self: start;
  }

  #w-node-_65fb96b7-013e-5bac-c238-a59e2528ca50-c88e6bdc {
    justify-self: stretch;
  }

  #w-node-f83f2e50-e225-2147-a1ed-8435054d02a6-8ca72e46 {
    align-self: start;
  }

  #w-node-_6529425f-915a-6a63-bc73-464c8d04b3bb-8ca72e46 {
    justify-self: stretch;
  }

  #w-node-b4c3f944-b509-62dd-d54f-feaaa2a60496-e3b87963, #w-node-c58fa442-257e-0e69-fca6-7f6be1679e7d-001f7478, #w-node-_5b9ecfee-086c-9c22-c039-8a838c6c0a6b-60c83cb2, #w-node-_7f4d8446-5b60-f7d8-7079-acd5561f8e83-229f8a95, #w-node-_1b808656-c083-0723-d4c7-11a3235cf22a-5648bb18, #w-node-_13c91a41-dfd8-30f4-c3e1-f175d5c2e8ba-51ec824b, #w-node-f935024e-67f5-976d-ecae-6ab046f5fb02-0385be39 {
    align-self: start;
  }

  #w-node-f935024e-67f5-976d-ecae-6ab046f5fb13-0385be39 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_811e10ba-3f02-8a4a-0aa9-ad62c09fc7e5-70806b50, #w-node-_909a98c7-b81c-d88d-6207-2d889c901e5b-d2a55a86, #w-node-d8e4f991-de0e-f054-f89a-f2aee378f967-ad1b379c, #w-node-_8ae7ada0-e7e3-dbe5-d0f1-221750532a6c-2a3e160e, #w-node-_8a8b433f-c89e-5143-1c97-9a27f06d27d7-95ca8f83, #w-node-_7354c798-f7c0-64f9-c085-b1dee8882caf-4b78396c, #w-node-e4d3507a-2793-d69e-46af-19657f013754-2323c8ee, #w-node-_19a1c453-5478-0be1-d89d-b3880da61c61-10d8b47b {
    align-self: start;
  }

  #w-node-ff8700a1-a947-4f03-e867-0efaad707e34-10d8b47b {
    justify-self: stretch;
  }

  #w-node-e7682553-db72-6c5d-17b5-077b7b9c4108-82c119c6 {
    align-self: start;
  }

  #w-node-_780b02f8-5d22-c36e-6120-d3f443f789d0-82c119c6 {
    justify-self: stretch;
  }

  #w-node-b4d74f7e-5dd9-0ff1-5342-7e4c35918834-efb4769d, #w-node-b16f1893-6f0f-b737-503a-1f967d867dee-a5d11d70, #w-node-_62076512-4d79-5332-fb42-c87344ad0046-c4ca651a, #w-node-_73ac93ea-19ee-dce3-e509-13df382566f5-23d1748f, #w-node-_673974b4-6dda-2323-b15d-30b5e76cea0f-6f2dda67, #w-node-_3c8f5fa0-b11f-7e18-3f2e-a38595ac77eb-3abe9afd {
    align-self: start;
  }

  #w-node-_3c8f5fa0-b11f-7e18-3f2e-a38595ac789c-3abe9afd {
    justify-self: stretch;
  }

  #w-node-befd5c89-df0d-d3e9-8d94-89f6018db29e-d89b484c, #w-node-_702e02c1-e3a4-28cc-eacb-f0cd5a2ee17d-72ef2cd0, #w-node-_7fbdebff-b004-76c8-5cd9-847fb705e5d1-027880bc, #w-node-f3559764-b1a9-3182-57f2-e8c87f51f4fc-84d06c0d, #w-node-_3dab6675-eb25-e5cb-8013-b6d3171643d4-554dcfb9, #w-node-_1595a464-9b3c-cf38-b103-76ea143b6836-cbf2228e, #w-node-_125a9fcb-b5c0-806a-5a58-2147929b3e79-9c195ecf {
    align-self: start;
  }

  #w-node-_56824f37-16bf-cc3a-5542-471521304ea1-9c195ecf {
    justify-self: stretch;
  }

  #w-node-ef3b6cf7-cc70-918e-3808-6879833a162d-c0abfc55, #w-node-_42996fb0-bafc-4d60-60e7-4f8837adc702-c7948664 {
    align-self: start;
  }

  #w-node-_42996fb0-bafc-4d60-60e7-4f8837adc7bd-c7948664 {
    justify-self: stretch;
  }

  #w-node-_99b9687f-752f-26d1-8b96-25c5c16ada22-2a12a0b0 {
    align-self: start;
  }

  #w-node-_99b9687f-752f-26d1-8b96-25c5c16adab4-2a12a0b0 {
    justify-self: stretch;
  }

  #w-node-_7606d02b-80ff-ae36-6667-788d29d7e542-83bb99d1, #w-node-e7d26150-94ea-8288-1dcc-a87e4030a253-7ffa60b9, #w-node-ef60d4bf-045a-ab9e-b7ae-f222557f4a38-270f0098, #w-node-_650d51dc-59a3-a853-339c-b2d67d248828-6207556a, #w-node-e1fdbb47-9b94-1120-2db0-813e73bd480c-4271598f, #w-node-_7ec68cd8-445b-640a-f2c8-dd012dd7e0e4-54ee10b8, #w-node-f3b759bf-b363-b90d-a9fa-d28fdc9602db-2a6a9ccc, #w-node-c4a58bd5-ab7c-fe9f-fa39-bf315295878a-12973664, #w-node-_9c0cf1a5-631b-3e03-2ce8-5ae53054945c-04d08226 {
    align-self: start;
  }

  #w-node-_16838ba2-0692-ab0a-64e8-653e10f033ca-c386f6ec, #w-node-_16838ba2-0692-ab0a-64e8-653e10f033ca-09729533, #w-node-_16838ba2-0692-ab0a-64e8-653e10f033ca-2a337daf, #w-node-_16838ba2-0692-ab0a-64e8-653e10f033ca-545f5c21, #w-node-_16838ba2-0692-ab0a-64e8-653e10f033ca-c7e5fd3e, #w-node-_16838ba2-0692-ab0a-64e8-653e10f033ca-23ad21a8, #w-node-_16838ba2-0692-ab0a-64e8-653e10f033ca-175d2f68, #w-node-_16838ba2-0692-ab0a-64e8-653e10f033ca-bf3cbcf6, #w-node-_16838ba2-0692-ab0a-64e8-653e10f033ca-83bcfb9f, #w-node-_16838ba2-0692-ab0a-64e8-653e10f033ca-29d20365, #w-node-_16838ba2-0692-ab0a-64e8-653e10f033ca-97f6f829, #w-node-_16838ba2-0692-ab0a-64e8-653e10f033ca-9bccc6a5, #w-node-_16838ba2-0692-ab0a-64e8-653e10f033ca-483dad6a, #w-node-_16838ba2-0692-ab0a-64e8-653e10f033ca-93ad2350, #w-node-_16838ba2-0692-ab0a-64e8-653e10f033ca-eb4cf062, #w-node-_16838ba2-0692-ab0a-64e8-653e10f033ca-4a53fa7a, #w-node-_16838ba2-0692-ab0a-64e8-653e10f033ca-d1b45ba2, #w-node-_16838ba2-0692-ab0a-64e8-653e10f033ca-31a576d1, #w-node-_16838ba2-0692-ab0a-64e8-653e10f033ca-f4fc4b4b, #w-node-_16838ba2-0692-ab0a-64e8-653e10f033ca-63f15411, #w-node-_16838ba2-0692-ab0a-64e8-653e10f033ca-00badad4, #w-node-_16838ba2-0692-ab0a-64e8-653e10f033ca-60a9476c, #w-node-_16838ba2-0692-ab0a-64e8-653e10f033ca-2b11ac0e, #w-node-_16838ba2-0692-ab0a-64e8-653e10f033ca-3687686e, #w-node-_16838ba2-0692-ab0a-64e8-653e10f033ca-3471284f, #w-node-_16838ba2-0692-ab0a-64e8-653e10f033ca-ddda02a5, #w-node-_16838ba2-0692-ab0a-64e8-653e10f033ca-4be4f99d, #w-node-_16838ba2-0692-ab0a-64e8-653e10f033ca-2ec99f64 {
    order: -9999;
  }

  #w-node-_7ec68cd8-445b-640a-f2c8-dd012dd7e0e4-f7131583 {
    align-self: start;
  }

  #w-node-_16838ba2-0692-ab0a-64e8-653e10f033ca-7c6f3fe7 {
    order: -9999;
  }

  #w-node-_70ad201b-138d-4922-4861-dc016570c9f1-8b89a82a {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }
}

@media screen and (min-width: 1500px) {
  .feb-content {
    gap: 240px;
    padding-right: 160px;
  }
}

@media screen and (max-width: 1280px) {
  .diagram-wrapper {
    background-color: #00000003;
    border: 1px solid #0000001a;
    padding: 48px 32px;
    width: 100%;
  }

  .carousel-block-wrapper {
    flex-flow: column;
  }
}
