:root {
  --accent: #25b177;
  --primary: #152547;
  --accent-foreground: white;
}

body {
  color: #141d2e;
  background-color: #f5f7f9;
  font-family: Plus Jakarta Sans, sans-serif;
  font-size: 1rem;
  line-height: 1.5rem;
}

h1 {
  letter-spacing: -.025em;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 38px;
  font-weight: 700;
  line-height: 44px;
}

h2 {
  letter-spacing: -.025rem;
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 2.5rem;
}

h3 {
  letter-spacing: -.025em;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.75rem;
}

h4 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
}

p {
  margin-bottom: 0;
}

a {
  color: #141d2e;
  cursor: pointer;
  text-decoration: none;
}

a:hover {
  color: var(--accent);
}

ul {
  flex-flow: column;
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 0;
  list-style-type: none;
  display: flex;
}

label {
  margin-bottom: 0;
  font-weight: 700;
  display: block;
}

.min-h-screen {
  min-height: 100vh;
}

.flex {
  display: flex;
}

.flex.flex-col {
  flex-flow: column;
}

.flex.flex-col.space-y-3 {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
}

.flex.flex-col.space-y-6 {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
}

.flex.flex-col.space-y-2.mb-8 {
  margin-bottom: 2rem;
}

.flex.flex-col.space-y-5 {
  grid-row-gap: 1.25rem;
}

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

.flex.items-center.w--current {
  justify-content: space-between;
  align-items: center;
}

.flex.items-center.gap-2 {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
}

.flex.items-center.gap-2.font-bold {
  font-weight: 700;
}

.flex.items-center.gap-2.font-bold.font-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}

.flex.items-center.gap-2.font-bold.font-xl.text-primary {
  color: var(--primary);
}

.flex.items-center.gap-2.font-bold.text-xl.mb-4 {
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 1rem;
}

.flex.items-center.gap-2.text-sm.text-primary-foreground-70.mb-6 {
  margin-bottom: 1.5rem;
}

.flex.items-center.gap-3 {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
}

.flex.items-center.gap-3.bg-card.rounded-xl {
  border-radius: .75rem;
}

.flex.items-center.gap-3.bg-card.rounded-xl.p-5 {
  padding: 1.25rem;
}

.flex.items-center.gap-3.bg-card.rounded-xl.p-5.shadow-card {
  box-shadow: 0 4px 24px -4px #15254714;
}

.flex.items-center.gap-4 {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
}

.flex.items-start {
  justify-content: flex-start;
  align-items: flex-start;
}

.flex.items-start.gap-3 {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
}

.flex.items-start.gap-3.items-center {
  justify-content: flex-start;
  align-items: center;
}

.flex.items-end {
  align-items: flex-end;
}

.flex.items-end.justify-between {
  justify-content: space-between;
}

.flex.items-end.justify-between.mb-12 {
  margin-bottom: 3rem;
}

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

.flex.gap-6 {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
}

.flex.gap-6.items-start.bg-card.rounded-2xl.p-8.shadow-card {
  box-shadow: 0 4px 24px -4px #15254714;
}

.flex.gap-6.items-start.bg-card.rounded-2xl.p-8.shadow-card.items-center {
  justify-content: flex-start;
  align-items: flex-start;
}

.flex.gap-1 {
  grid-column-gap: .25rem;
  grid-row-gap: .25rem;
}

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

.flex.flex-wrap.gap-2 {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
}

.flex.flex-wrap.gap-2.mb-12 {
  margin-bottom: 3rem;
}

.flex.gap-3 {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
}

.flex.gap-3.max-w-md {
  max-width: 28rem;
}

.flex.gap-3.max-w-md.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.flex.gap-3.mb-8 {
  margin-bottom: 2rem;
}

.container {
  width: 100%;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
}

.container.flex.items-center {
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
}

.container.flex.items-center.justify-between {
  justify-content: space-between;
}

.container.flex.items-center.justify-between.h-16 {
  height: 4rem;
}

.container.py-16 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.container.max-w-4xl {
  max-width: 56rem;
}

._w-8 {
  width: 2rem;
}

._w-8.h-8 {
  height: 2rem;
}

._w-8.h-8.rounded-lg {
  border-radius: .75rem;
}

._w-8.h-8.rounded-lg.bg-accent {
  background-color: var(--accent);
}

._w-8.h-8.rounded-lg.bg-accent.flex.items-center.justify-center {
  justify-content: center;
  align-items: center;
}

._w-8.h-8.rounded-lg.bg-accent.flex.items-center.justify-center.text-accent-foreground {
  color: var(--accent-foreground);
}

._w-8.h-8.rounded-lg.bg-accent.flex.items-center.justify-center.text-accent-foreground.text-sm {
  font-size: .875rem;
  line-height: 1.25rem;
}

._w-8.h-8.rounded-lg.bg-accent.flex.items-center.justify-center.text-accent-foreground.text-sm.font-extrabold {
  font-weight: 700;
}

.hidden {
  display: none;
}

.hidden.active {
  display: block;
}

.nav-button {
  color: #6a7181;
  border-radius: .75rem;
  padding: .5rem 1rem;
  font-size: .875rem;
  font-weight: 500;
  line-height: 1.25rem;
}

.nav-button:hover, .nav-button.w--current {
  color: #141d2e;
  background-color: #eaedf180;
}

.header {
  z-index: 50;
  background-color: #fffc;
  border-bottom: 1px solid #d9dfe8;
  position: sticky;
  top: 0;
}

.flex-1 {
  flex: auto;
}

.flex-1.rounded-lg {
  border-radius: .75rem;
}

.flex-1.rounded-lg.border {
  border: 1px solid #000;
}

.flex-1.rounded-lg.border.border-input {
  border-color: #d9dfe8;
}

.flex-1.rounded-lg.border.border-input.bg-card.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.flex-1.rounded-lg.border.border-input.bg-card.px-4.py-3 {
  padding-top: .75rem;
  padding-bottom: .75rem;
}

.flex-1.rounded-lg.border.border-input.bg-card.px-4.py-3.text-sm:focus {
  outline-offset: 2px;
  border-width: 2px;
  border-color: #25b177;
  outline: 2px solid #0000;
}

.flex-1.rounded-lg.border.border-input.bg-card.px-4.py-3.text-sm.m-0 {
  margin: 0;
}

.hero-section {
  background-image: linear-gradient(135deg, #152547, #243b6b);
  justify-content: space-between;
  align-items: center;
  min-height: 85vh;
  display: flex;
  position: relative;
  overflow: hidden;
}

.hero-section.vh-0 {
  min-height: 0;
}

.hero-section.vh-0.py-16 {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.hero-container {
  z-index: 20;
  width: 100%;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding: 8rem 2rem;
  position: relative;
}

.max-w-3xl {
  max-width: 48rem;
}

.hero-heading {
  color: #fff;
  margin-top: 0;
  margin-bottom: 1.5rem;
  font-size: 3.75rem;
  line-height: 100%;
}

.text-gradient {
  color: #0000;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(135deg, #25b177, #42d799);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-paragraph {
  color: #fffc;
  max-width: 42rem;
  margin-bottom: 2.5rem;
  font-size: 1.25rem;
  line-height: 1.75rem;
}

.hero-paragraph.text-primary-foreground-80 {
  color: #fffc;
}

.hero-paragraph.text-primary-foreground-80.mb-8 {
  margin-bottom: 2rem;
}

.hero-button-wrap {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: wrap;
  display: flex;
}

.button {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  color: var(--primary);
  cursor: pointer;
  border-radius: calc(.75rem - 2px);
  justify-content: center;
  align-items: center;
  height: 2.5rem;
  padding: .5rem 2rem;
  font-size: .875rem;
  font-weight: 600;
  line-height: 1.25rem;
  display: flex;
}

.button.cta {
  background-color: var(--accent);
  color: var(--accent-foreground);
}

.button.cta:hover {
  background-color: #25b177e6;
  box-shadow: 0 8px 10px -6px #0003, 0 20px 25px -5px #0000001a;
}

.button.cta.arrow {
  flex-flow: row;
}

.button.cta.arrow.small.inline-flex {
  display: inline-flex;
}

.button.cta.bg-primary {
  background-color: var(--primary);
}

.button.cta.hidden {
  display: flex;
}

.button.cta.inline-flex {
  display: inline-flex;
}

.button.inverse-white {
  color: var(--accent-foreground);
  border: 2px solid #ffffff4d;
}

.button.inverse-white:hover {
  background-color: #ffffff1a;
}

.button.inverse {
  background-color: #f5f7f9;
  border: 2px solid #d9dfe8;
}

.button.inverse:hover {
  background-color: var(--accent);
  color: var(--accent-foreground);
}

.button.plan-now {
  background-color: #f5f7f9;
  border: 1px solid #d9dfe8;
  padding-left: 1rem;
  padding-right: 1rem;
  font-weight: 500;
}

.button.plan-now:hover {
  border-color: var(--accent);
  background-color: var(--accent);
  color: var(--accent-foreground);
}

.section {
  padding-top: 7rem;
  padding-bottom: 7rem;
}

.section.bg-secundary {
  background-color: #eaedf180;
}

.section.bg-secundary.py-16 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.section.bg-hero {
  background-image: linear-gradient(135deg, #152547, #243b6b);
}

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

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

.text-center.mb-16 {
  margin-bottom: 4rem;
}

.text-muted-foreground {
  color: #6a7181;
}

.text-muted-foreground.max-w-xl {
  max-width: 36rem;
}

.text-muted-foreground.max-w-xl.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.text-muted-foreground.mb-8 {
  margin-bottom: 2rem;
}

.text-muted-foreground.mb-6 {
  margin-bottom: 1.5rem;
}

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

.grid.md-grid-cols-3 {
  grid-template-rows: auto;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
  grid-auto-columns: minmax(0, 1fr);
}

.grid.md-grid-cols-3.gap-8 {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
}

.grid.md-grid-cols-2 {
  grid-template-rows: auto;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  grid-auto-columns: minmax(0, 1fr);
}

.grid.md-grid-cols-2.gap-8 {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
}

.grid.md-grid-cols-2.gap-16 {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
}

.grid.md-grid-cols-2.gap-6 {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
}

.grid.lg-grid-cols-3 {
  grid-template-rows: auto;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
  grid-auto-columns: minmax(0, 1fr);
}

.grid.lg-grid-cols-3.gap-8 {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
}

.grid.lg-grid-cols-3.gap-6 {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
}

.grid.footer-grid {
  grid-template-rows: auto;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
  grid-auto-columns: minmax(0, 1fr);
}

.grid.footer-grid.gap-10 {
  grid-column-gap: 2.5rem;
  grid-row-gap: 2.5rem;
}

.grid.sm-grid-cols-2 {
  grid-template-rows: auto;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  grid-auto-columns: minmax(0, 1fr);
}

.grid.sm-grid-cols-2.gap-4 {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-auto-columns: minmax(0, 1fr);
}

.grid.sm-grid-cols-2.gap-5 {
  grid-column-gap: 1.25rem;
  grid-row-gap: 1.25rem;
}

.grid.md-grid-cols-4 {
  grid-template-rows: auto;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
  grid-auto-columns: minmax(0, 1fr);
}

.grid.md-grid-cols-4.gap-8 {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr) 1fr;
}

.grid.lg-grid-cols-5 {
  grid-template-rows: auto;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
  grid-auto-columns: minmax(0, 1fr);
}

.grid.sm-grid-cols-1 {
  grid-template-rows: auto;
  grid-template-columns: minmax(0, 1fr);
  grid-auto-columns: minmax(0, 1fr);
}

.grid.sm-grid-cols-1.gap-8 {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
}

.bg-card {
  background-color: #fff;
}

.bg-card.rounded-2xl {
  border-radius: 1rem;
}

.bg-card.rounded-2xl.p-8 {
  padding: 2rem;
}

.bg-card.rounded-2xl.p-8.text-center.shadow-card {
  box-shadow: 0 4px 24px -4px #15254714;
}

.bg-card.rounded-2xl.p-8.shadow-card.h-fit.sticky {
  position: sticky;
}

.bg-card.rounded-2xl.p-8.shadow-card.h-fit.sticky.top-28 {
  object-position: 50% 100%;
  top: 7rem;
}

.bg-card.rounded-2xl.p-10 {
  padding: 2rem;
}

.bg-card.rounded-2xl.p-10.shadow-card {
  box-shadow: 0 4px 24px -4px #15254714;
}

.bg-card.rounded-2xl.overflow-hidden {
  overflow: hidden;
}

.bg-card.rounded-2xl.overflow-hidden.shadow-card {
  box-shadow: 0 4px 24px -4px #15254714;
}

.bg-card.rounded-2xl.overflow-hidden.shadow-card.cursor-pointer {
  cursor: pointer;
}

.text-sm {
  font-size: .875rem;
  line-height: 1.25rem;
}

.text-sm.font-semibold {
  font-weight: 600;
}

.text-sm.font-semibold.text-accent {
  color: var(--accent);
}

.text-sm.font-semibold.text-accent.mb-2 {
  margin-bottom: .5rem;
}

.text-sm.text-muted-foreground.mb-4 {
  margin-bottom: 1rem;
}

.text-sm.text-primary-foreground-70:hover {
  color: var(--accent-foreground);
}

.text-sm.font-medium {
  font-weight: 500;
}

._w-16 {
  width: 4rem;
}

._w-16.h-16 {
  height: 4rem;
}

._w-16.h-16.rounded-2xl {
  border-radius: 1rem;
}

._w-16.h-16.rounded-2xl.bg-accent-10 {
  background-color: #25b1771a;
}

._w-16.h-16.rounded-2xl.bg-accent-10.flex.items-center.justify-center {
  justify-content: center;
}

._w-16.h-16.rounded-2xl.bg-accent-10.flex.items-center.justify-center.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

._w-16.h-16.rounded-2xl.bg-accent-10.flex.items-center.justify-center.mx-auto.mb-6 {
  margin-bottom: 1.5rem;
}

.text-accent {
  color: var(--accent);
}

.text-accent.mb-4 {
  margin-bottom: 1rem;
}

.text-accent.shrink-0.mt-0-5 {
  margin-top: .125rem;
}

.text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}

.text-xl.font-bold {
  font-weight: 700;
}

.text-xl.font-bold.mb-2 {
  margin-bottom: .5rem;
}

._w-12 {
  width: 3rem;
}

._w-12.h-12 {
  height: 3rem;
}

._w-12.h-12.rounded-xl {
  border-radius: .75rem;
}

._w-12.h-12.rounded-xl.bg-accent-10 {
  background-color: #25b1771a;
}

._w-12.h-12.rounded-xl.bg-accent-10.flex.items-center {
  justify-content: space-between;
  align-items: center;
}

._w-12.h-12.rounded-xl.bg-accent-10.flex.items-center.justify-center {
  justify-content: center;
  align-items: center;
}

._w-12.h-12.rounded-xl.bg-accent-10.flex.items-center.justify-center.mb-6 {
  margin-bottom: 1.5rem;
}

._w-12.h-12.rounded-xl.bg-accent-10.flex.items-center.justify-center.mb-4 {
  margin-bottom: 1rem;
}

.text-2xl {
  font-size: 1.5rem;
  line-height: 2rem;
}

.text-2xl.font-bold {
  font-weight: 700;
}

.text-2xl.font-bold.mb-4 {
  margin-bottom: 1rem;
}

.text-lg {
  font-size: 1.125rem;
  line-height: 1.745rem;
}

.text-lg.font-bold {
  font-weight: 700;
}

.text-lg.font-bold.mb-1 {
  margin-bottom: .25rem;
}

.text-lg.font-bold.mb-2 {
  margin-bottom: .5rem;
}

.text-lg.text-muted-foreground.font-medium {
  font-weight: 500;
}

.text-lg.text-muted-foreground.font-medium.mb-8.leading-relaxed {
  line-height: 1.625rem;
}

.text-primary-foreground {
  color: var(--accent-foreground);
}

.bg-primary-foreground-10 {
  background-color: #ffffff1a;
}

.bg-primary-foreground-10.backdrop-blur {
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.bg-primary-foreground-10.backdrop-blur.rounded-2xl {
  border-radius: 1rem;
}

.bg-primary-foreground-10.backdrop-blur.rounded-2xl.p-8 {
  padding: 2rem;
}

.bg-primary-foreground-10.backdrop-blur.rounded-2xl.p-8.border {
  border: 1px solid #000;
}

.bg-primary-foreground-10.backdrop-blur.rounded-2xl.p-8.border.border-primary-foreground-10 {
  border-color: #ffffff1a;
}

.text-primary-foreground-90 {
  color: #ffffffe6;
}

.text-primary-foreground-90.text-sm.leading-relaxed {
  line-height: 1.65rem;
}

.text-primary-foreground-90.text-sm.leading-relaxed.mb-6 {
  margin-bottom: 1.5rem;
}

.font-semibold {
  font-weight: 600;
}

.font-semibold.text-sm.mb-3 {
  margin-bottom: .75rem;
}

.text-primary-foreground-60 {
  color: #fff9;
}

.text-primary-foreground-60.text-xs {
  font-size: .75rem;
  line-height: 1rem;
}

.text-3xl {
  font-size: 1.875rem;
  line-height: 2.25rem;
}

.text-3xl.font-extrabold {
  font-weight: 700;
}

.text-3xl.font-extrabold.mb-2 {
  margin-bottom: .5rem;
}

.text-3xl.font-extrabold.mb-6 {
  margin-bottom: 1.5rem;
}

.text-3xl.font-extrabold.text-center.mb-12 {
  margin-bottom: 3rem;
}

.text-3xl.font-extrabold.text-accent.shrink-0 {
  flex: none;
}

.text-3xl.md-text-5xl {
  font-size: 3rem;
  line-height: 3.5rem;
}

.text-3xl.md-text-5xl.font-extrabold.text-primary-foreground.mb-4 {
  margin-bottom: 1rem;
}

.p-6 {
  padding: 1.5rem;
}

.h-48 {
  height: 12rem;
}

.h-48.bg-secondary {
  background-color: #eaedf1;
}

.h-48.bg-secondary.flex.items-center {
  justify-content: space-between;
}

.h-48.bg-secondary.flex.items-center.justify-center {
  justify-content: center;
}

.text-xs {
  font-size: .75rem;
  line-height: 1rem;
}

.text-xs.font-semibold.bg-accent10 {
  background-color: #25b1771a;
}

.text-xs.font-semibold.bg-accent10.text-accent.px-3 {
  padding-left: .75rem;
  padding-right: .75rem;
}

.text-xs.font-semibold.bg-accent10.text-accent.px-3.py-1 {
  padding-top: .25rem;
  padding-bottom: .25rem;
}

.text-xs.font-semibold.bg-accent10.text-accent.px-3.py-1.rounded-full {
  border-radius: 9999px;
}

.text-xs.font-semibold.bg-accent-20 {
  background-color: #25b17733;
}

.text-xs.font-semibold.bg-accent-20.text-accent-foreground {
  color: var(--accent-foreground);
}

.text-xs.font-semibold.bg-accent-20.text-accent-foreground.px-3 {
  padding-left: .75rem;
  padding-right: .75rem;
}

.text-xs.font-semibold.bg-accent-20.text-accent-foreground.px-3.py-1 {
  padding-top: .25rem;
  padding-bottom: .25rem;
}

.text-xs.font-semibold.bg-accent-20.text-accent-foreground.px-3.py-1.rounded-full {
  border-radius: 9999px;
}

.text-xs.font-semibold.bg-accent-20.text-accent-foreground.px-3.py-1.rounded-full.mb-4 {
  margin-bottom: 1rem;
}

.text-xs.font-semibold.bg-accent-20.text-accent-foreground.px-3.py-1.rounded-full.mb-4.inline-block {
  display: inline-block;
}

.text-xs.text-primary-foreground-50 {
  color: #ffffff80;
}

.text-xs.text-muted-foreground.mb-2 {
  margin-bottom: .5rem;
}

.text-accent-foreground-80 {
  color: #fffc;
}

.text-accent-foreground-80.mb-8 {
  margin-bottom: 2rem;
}

.text-accent-foreground-80.mb-8.max-w-lg {
  max-width: 32rem;
}

.text-accent-foreground-80.mb-8.max-w-lg.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.footer {
  background-color: var(--primary);
  color: var(--accent-foreground);
}

.text-primary-foreground-70 {
  color: #ffffffb3;
}

.text-primary-foreground-70.text-sm.leading-relaxed {
  line-height: 1.65rem;
}

.footer-header {
  color: #ffffff80;
  text-transform: uppercase;
  font-size: .875rem;
  font-weight: 600;
  line-height: 1.25rem;
}

.footer-header.mb-4 {
  margin-bottom: 1rem;
}

.space-y-2 {
  grid-column-gap: 0rem;
  grid-row-gap: .5rem;
}

.mt-12 {
  margin-top: 3rem;
}

.mt-12.pt-8 {
  padding-top: 2rem;
}

.mt-12.pt-8.border-t {
  border-top: 1px solid #000;
}

.mt-12.pt-8.border-t.border-primary-foreground-10 {
  border-top-color: #ffffff1a;
}

.mt-12.pt-8.border-t.border-primary-foreground-10.flex.flex-col {
  flex-flow: row;
}

.mt-12.pt-8.border-t.border-primary-foreground-10.flex.flex-col.justify-between {
  flex-flow: row;
  justify-content: space-between;
}

.mt-12.pt-8.border-t.border-primary-foreground-10.flex.flex-col.justify-between.items-center.gap-4 {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
}

.text-primary-foreground-50 {
  color: #ffffff80;
}

.text-primary-foreground-50.hover-text-primary-foreground:hover {
  color: var(--accent-foreground);
}

.text-primary-foreground-50.hover-text-primary-foreground.cursor-pointer {
  cursor: pointer;
}

.lg-hidden {
  display: none;
}

.header-cta {
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.absolute {
  position: absolute;
}

.absolute.inset-0 {
  inset: 0;
}

.absolute.inset-0.bg-hero {
  background-image: linear-gradient(135deg, #152547, #243b6b);
}

._w-full {
  width: 100%;
}

._w-full.h-full {
  height: 100%;
}

._w-full.h-full.object-cover {
  object-fit: cover;
}

._w-full.h-full.object-cover.opacity-20 {
  opacity: .2;
}

.font-bold {
  font-weight: 700;
}

.font-bold.mb-2 {
  margin-bottom: .5rem;
}

.font-bold.text-lg.mb-6 {
  margin-bottom: 1.5rem;
}

.select-button {
  color: #141d2e;
  cursor: pointer;
  background-color: #eaedf1;
  border-radius: 9999px;
  padding: .5rem 1rem;
  font-size: .875rem;
  font-weight: 500;
  line-height: 1.25rem;
}

.select-button.selected {
  background-color: var(--accent);
  color: var(--accent-foreground);
}

.select-button.selected.with-icon {
  justify-content: flex-start;
  align-items: center;
  padding: .75rem 1.25rem;
  display: flex;
}

.select-button.with-icon {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  justify-content: flex-start;
  align-items: center;
  padding: .75rem 1.25rem;
  display: flex;
}

.h-44 {
  height: 12rem;
}

.h-44.bg-secondary {
  background-color: #eaedf1;
}

.h-44.bg-secondary.flex.items-center {
  justify-content: space-between;
}

.h-44.bg-secondary.flex.items-center.justify-center {
  justify-content: center;
  height: 11rem;
}

.success-message, .error-message {
  background-color: #0000;
}

.block.text-sm.font-medium.mb-2 {
  margin-bottom: .5rem;
}

.form-input {
  background-color: var(--accent-foreground);
  border: 1px solid #d9dfe8;
  border-radius: .75rem;
  width: 100%;
  margin-bottom: 0;
  padding: .75rem 1rem;
  font-size: .875rem;
  line-height: 1.25rem;
}

.form-input:focus {
  outline-offset: 2px;
  border-width: 2px;
  border-color: #25b177;
  outline: 2px solid #0000;
}

.form-input.select {
  justify-content: flex-start;
  align-items: center;
  padding-top: .25rem;
  padding-bottom: .25rem;
}

.mt-8 {
  margin-top: 2rem;
}

.mt-8.pt-8 {
  padding-top: 2rem;
}

.mt-8.pt-8.border-t {
  border-top: 1px solid #000;
}

.mt-8.pt-8.border-t.border-border {
  border-top-color: #d9dfe8;
}

._w-24 {
  width: 6rem;
}

._w-24.h-24 {
  height: 6rem;
}

._w-24.h-24.rounded-full {
  border-radius: 9999px;
}

._w-24.h-24.rounded-full.bg-accent-10 {
  background-color: #25b1771a;
}

._w-24.h-24.rounded-full.bg-accent-10.flex.items-center.justify-center.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

._w-24.h-24.rounded-full.bg-accent-10.flex.items-center.justify-center.mx-auto.mb-4 {
  margin-bottom: 1rem;
}

.text-foreground-80 {
  color: #141d2ecc;
}

.text-foreground-80.leading-relaxed {
  line-height: 1.625rem;
}

.text-foreground-80.leading-relaxed.mb-6 {
  margin-bottom: 1.5rem;
}

@media screen and (max-width: 991px) {
  .flex.gap-1.md-container {
    margin-left: auto;
    margin-right: auto;
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .flex.gap-1.md-container.md-py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .flex.gap-1.md-container.md-py-4.md-flex-col {
    flex-flow: column;
  }

  .flex.gap-1.md-container.md-py-4.md-flex-col.md-bg-card {
    background-color: #fff;
  }

  .nav-button {
    margin-bottom: .75rem;
  }

  .button.cta.hidden {
    display: none;
  }

  .section {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .grid.lg-grid-cols-3.gap-6.md-grid-cols-2 {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .grid.footer-grid.gap-10 {
    grid-template-rows: auto auto;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .grid.lg-grid-cols-5 {
    grid-template-columns: minmax(0, 1fr);
  }

  .lg-hidden {
    display: block;
  }

  .px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .px-4.py-3 {
    padding-top: .75rem;
    padding-bottom: .75rem;
  }

  .px-4.py-3.rounded-lg {
    border-radius: .75rem;
  }

  .header-menu.w--open {
    background-color: #fff;
  }

  .text-primary {
    color: var(--primary);
  }
}

@media screen and (max-width: 767px) {
  h1 {
    letter-spacing: normal;
  }

  .hero-container {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .hero-heading {
    font-size: 2.25rem;
  }

  .hero-paragraph {
    font-size: 1.125rem;
  }

  .section {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .grid.md-grid-cols-3, .grid.md-grid-cols-3.gap-8, .grid.md-grid-cols-2.gap-8, .grid.md-grid-cols-4.gap-8 {
    grid-template-columns: minmax(0, 1fr);
  }

  .text-3xl.md-text-5xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
  }
}

@media screen and (max-width: 479px) {
  .button.inverse {
    white-space: nowrap;
    word-break: keep-all;
  }

  .section {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .grid.lg-grid-cols-3.gap-6.md-grid-cols-2, .grid.footer-grid.gap-10 {
    grid-template-columns: minmax(0, 1fr);
  }

  .mt-12.pt-8.border-t.border-primary-foreground-10.flex.flex-col.justify-between.items-center.gap-4 {
    flex-flow: column;
  }
}

#w-node-_2795bad3-fe84-e086-b264-8de24161032f-b1c878a1 {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-_3f5e1e92-9f4d-1644-24a6-fe54564e9fa3-b1c878a1 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

@media screen and (max-width: 991px) {
  #w-node-_2795bad3-fe84-e086-b264-8de24161032f-b1c878a1, #w-node-_3f5e1e92-9f4d-1644-24a6-fe54564e9fa3-b1c878a1 {
    grid-column: span 1 / span 1;
  }
}


