
      
    


      body { font-family: Montserrat, sans-serif }
     


      /* ===== RESET & BASE ===== */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --navy: #0B1B3D;
      --navy-light: #15295A;
      --navy-accent: #1E3A6E;
      --white: #FFFFFF;
      --gray-50: #F8FAFC;
      --gray-100: #F1F5F9;
      --gray-200: #E2E8F0;
      --gray-300: #CBD5E1;
      --gray-400: #94A3B8;
      --gray-500: #64748B;
      --gray-600: #475569;
      --gray-700: #334155;
      --gray-800: #1E293B;
      --emerald: #10B981;
      --emerald-dark: #059669;
      --emerald-light: #34D399;
      --font-heading: 'Space Grotesk', sans-serif;
      --font-body: 'DM Sans', sans-serif;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: var(--font-body);
      color: var(--gray-600);
      background: var(--white);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }

    h1, h2, h3, h4, h5, h6 {
      font-family: var(--font-heading);
      color: var(--navy);
      line-height: 1.15;
      font-weight: 700;
    }

    a { text-decoration: none; color: inherit; }
    button { font-family: inherit; cursor: pointer; border: none; background: none; }
    img { max-width: 100%; display: block; }

    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px;
    }

    /* ===== CTA BUTTON ===== */
    .cta-btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: var(--emerald);
      color: var(--white);
      font-family: var(--font-heading);
      font-weight: 600;
      font-size: 1.0625rem;
      padding: 16px 36px;
      border-radius: 8px;
      transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
      box-shadow: 0 4px 14px rgba(16, 185, 129, 0.35);
      letter-spacing: 0.01em;
    }
    .cta-btn:hover {
      background: var(--emerald-dark);
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(16, 185, 129, 0.45);
    }
    .cta-btn:active { transform: translateY(0); }
    .cta-btn svg { width: 20px; height: 20px; }

    .cta-btn--lg {
      font-size: 1.125rem;
      padding: 18px 44px;
    }

    /* ===== NAVIGATION ===== */
    .nav {
      position: sticky;
      top: 0;
      z-index: 100;
      background: rgba(11, 27, 61, 0.97);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }
    .nav__inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px;
      height: 72px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .nav__logo {
      font-family: var(--font-heading);
      font-weight: 700;
      font-size: 1.25rem;
      color: var(--white);
      letter-spacing: -0.02em;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .nav__logo-icon {
      width: 36px;
      height: 36px;
      background: var(--emerald);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .nav__logo-icon svg { width: 20px; height: 20px; color: var(--white); }
    .nav__logo-text { display: flex; flex-direction: column; line-height: 1.1; }
    .nav__logo-text span:last-child { font-size: 0.7rem; font-weight: 400; color: var(--gray-400); letter-spacing: 0.05em; }

    .nav__links {
      display: flex;
      align-items: center;
      gap: 36px;
    }
    .nav__link {
      font-size: 0.9375rem;
      font-weight: 500;
      color: rgba(255, 255, 255, 0.75);
      transition: color 0.2s ease;
    }
    .nav__link:hover { color: var(--white); }

    .nav__cta {
      background: var(--emerald);
      color: var(--white);
      font-family: var(--font-heading);
      font-weight: 600;
      font-size: 0.875rem;
      padding: 10px 22px;
      border-radius: 6px;
      transition: all 0.2s ease;
    }
    .nav__cta:hover { background: var(--emerald-dark); transform: translateY(-1px); }

    .nav__toggle { display: none; }

    @media (max-width: 991px) {
      .nav__links { display: none; }
      .nav__toggle {
        display: flex;
        flex-direction: column;
        gap: 5px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 8px;
      }
      .nav__toggle span {
        width: 24px;
        height: 2px;
        background: var(--white);
        border-radius: 2px;
        transition: 0.3s;
      }
    }

    /* ===== HERO SECTION ===== */
    .hero {
      position: relative;
      background: var(--navy);
      overflow: hidden;
      padding: 100px 0 90px;
    }
    .hero__bg {
      position: absolute;
      inset: 0;
      background-image: url('https://images.unsplash.com/photo-1486406146926-c627a207ad36?w=1600&q=80');
      background-size: cover;
      background-position: center;
      opacity: 0.18;
    }
    .hero__overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(11, 27, 61, 0.92) 0%, rgba(11, 27, 61, 0.78) 50%, rgba(11, 27, 61, 0.88) 100%);
    }
    .hero__content {
      position: relative;
      z-index: 2;
      max-width: 760px;
      margin: 0 auto;
      text-align: center;
      padding: 0 24px;
    }
    .hero__badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(16, 185, 129, 0.12);
      border: 1px solid rgba(16, 185, 129, 0.3);
      color: var(--emerald-light);
      font-size: 0.8125rem;
      font-weight: 600;
      padding: 8px 18px;
      border-radius: 100px;
      margin-bottom: 28px;
      letter-spacing: 0.03em;
      text-transform: uppercase;
      animation: fadeInDown 0.6s ease-out;
    }
    .hero__badge-dot {
      width: 8px;
      height: 8px;
      background: var(--emerald);
      border-radius: 50%;
      animation: pulse 2s infinite;
    }
    @keyframes pulse {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: 0.5; transform: scale(1.3); }
    }
    .hero__title {
      font-size: clamp(2.25rem, 5vw, 3.5rem);
      color: var(--white);
      font-weight: 700;
      letter-spacing: -0.03em;
      margin-bottom: 24px;
      animation: fadeInUp 0.7s ease-out 0.1s both;
    }
    .hero__title span { color: var(--emerald-light); }
    .hero__sub {
      font-size: 1.1875rem;
      color: rgba(255, 255, 255, 0.78);
      line-height: 1.65;
      max-width: 640px;
      margin: 0 auto 40px;
      animation: fadeInUp 0.7s ease-out 0.2s both;
    }
    .hero__sub strong { color: var(--white); font-weight: 600; }
    .hero__cta-wrap {
      animation: fadeInUp 0.7s ease-out 0.3s both;
    }
    .hero__trust {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 28px;
      margin-top: 36px;
      flex-wrap: wrap;
      animation: fadeInUp 0.7s ease-out 0.4s both;
    }
    .hero__trust-item {
      display: flex;
      align-items: center;
      gap: 8px;
      color: rgba(255, 255, 255, 0.6);
      font-size: 0.875rem;
      font-weight: 500;
    }
    .hero__trust-item svg { width: 18px; height: 18px; color: var(--emerald-light); flex-shrink: 0; }

    @keyframes fadeInUp {
      from { opacity: 0; transform: translateY(24px); }
      to { opacity: 1; transform: translateY(0); }
    }
    @keyframes fadeInDown {
      from { opacity: 0; transform: translateY(-20px); }
      to { opacity: 1; transform: translateY(0); }
    }

    /* ===== STATS BAR ===== */
    .stats-bar {
      background: var(--white);
      border-bottom: 1px solid var(--gray-200);
      padding: 48px 0;
    }
    .stats-bar__grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 32px;
      text-align: center;
    }
    .stat__number {
      font-family: var(--font-heading);
      font-size: 2.5rem;
      font-weight: 700;
      color: var(--navy);
      letter-spacing: -0.02em;
      line-height: 1;
    }
    .stat__number span { color: var(--emerald); }
    .stat__label {
      font-size: 0.875rem;
      color: var(--gray-500);
      font-weight: 500;
      margin-top: 8px;
      letter-spacing: 0.02em;
    }
    @media (max-width: 767px) {
      .stats-bar__grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
    }

    /* ===== SECTION HEADER ===== */
    .section-header {
      text-align: center;
      max-width: 680px;
      margin: 0 auto 56px;
    }
    .section-header__eyebrow {
      display: inline-block;
      font-family: var(--font-heading);
      font-size: 0.8125rem;
      font-weight: 600;
      color: var(--emerald);
      text-transform: uppercase;
      letter-spacing: 0.12em;
      margin-bottom: 14px;
    }
    .section-header__title {
      font-size: clamp(1.75rem, 3.5vw, 2.5rem);
      letter-spacing: -0.02em;
      margin-bottom: 16px;
    }
    .section-header__sub {
      font-size: 1.0625rem;
      color: var(--gray-500);
      line-height: 1.6;
    }

    /* ===== PILLARS SECTION ===== */
    .pillars {
      background: var(--white);
      padding: 96px 0;
      border-bottom: 1px solid var(--gray-200);
    }
    .pillars__grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 32px;
    }
    .pillar-card {
      background: var(--gray-50);
      border: 1px solid var(--gray-200);
      border-radius: 16px;
      padding: 40px 32px;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      position: relative;
      overflow: hidden;
    }
    .pillar-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: var(--emerald);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.35s ease;
    }
    .pillar-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 40px rgba(11, 27, 61, 0.08);
      border-color: var(--gray-300);
    }
    .pillar-card:hover::before { transform: scaleX(1); }
    .pillar-card__icon {
      width: 56px;
      height: 56px;
      background: var(--navy);
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 24px;
      transition: background 0.3s ease;
    }
    .pillar-card:hover .pillar-card__icon { background: var(--emerald); }
    .pillar-card__icon svg { width: 28px; height: 28px; color: var(--white); }
    .pillar-card__title {
      font-size: 1.375rem;
      font-weight: 700;
      margin-bottom: 12px;
      letter-spacing: -0.01em;
    }
    .pillar-card__copy {
      font-size: 0.9375rem;
      color: var(--gray-500);
      line-height: 1.65;
    }
    @media (max-width: 991px) {
      .pillars__grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
    }

    /* ===== QUALIFICATIONS SECTION ===== */
    .qualifications {
      background: var(--gray-50);
      padding: 96px 0;
      border-bottom: 1px solid var(--gray-200);
    }
    .qual-callout {
      max-width: 720px;
      margin: 0 auto;
      background: var(--white);
      border: 1px solid var(--gray-200);
      border-radius: 20px;
      padding: 56px 48px;
      text-align: center;
      box-shadow: 0 4px 24px rgba(11, 27, 61, 0.04);
    }
    .qual-callout__icon-wrap {
      width: 72px;
      height: 72px;
      background: var(--navy);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 28px;
    }
    .qual-callout__icon-wrap svg { width: 36px; height: 36px; color: var(--emerald-light); }
    .qual-callout__title {
      font-size: clamp(1.75rem, 3.5vw, 2.25rem);
      letter-spacing: -0.02em;
      margin-bottom: 14px;
    }
    .qual-callout__sub {
      font-size: 1.0625rem;
      color: var(--gray-500);
      margin-bottom: 40px;
      line-height: 1.6;
    }
    .qual-list {
      list-style: none;
      text-align: left;
      max-width: 480px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 20px;
    }
    .qual-item {
      display: flex;
      align-items: flex-start;
      gap: 16px;
      padding: 20px 24px;
      background: var(--gray-50);
      border: 1px solid var(--gray-200);
      border-radius: 12px;
      transition: all 0.25s ease;
    }
    .qual-item:hover {
      border-color: var(--emerald);
      background: rgba(16, 185, 129, 0.03);
    }
    .qual-item__check {
      width: 28px;
      height: 28px;
      background: var(--emerald);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      margin-top: 1px;
    }
    .qual-item__check svg { width: 16px; height: 16px; color: var(--white); }
    .qual-item__text {
      font-size: 1rem;
      color: var(--gray-700);
      font-weight: 500;
      line-height: 1.5;
    }
    .qual-item__text strong { color: var(--navy); font-weight: 700; }

    @media (max-width: 639px) {
      .qual-callout { padding: 40px 24px; }
      .qual-item { padding: 16px 18px; }
    }

    /* ===== FINAL CTA SECTION ===== */
    .final-cta {
      background: var(--navy);
      position: relative;
      overflow: hidden;
      padding: 88px 0;
    }
    .final-cta__bg {
      position: absolute;
      inset: 0;
      background-image: url('https://images.unsplash.com/photo-1497366216548-37526070297c?w=1600&q=80');
      background-size: cover;
      background-position: center;
      opacity: 0.1;
    }
    .final-cta__overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(11, 27, 61, 0.95) 0%, rgba(11, 27, 61, 0.98) 100%);
    }
    .final-cta__content {
      position: relative;
      z-index: 2;
      text-align: center;
      max-width: 680px;
      margin: 0 auto;
      padding: 0 24px;
    }
    .final-cta__title {
      font-size: clamp(1.875rem, 4vw, 2.75rem);
      color: var(--white);
      letter-spacing: -0.02em;
      margin-bottom: 18px;
    }
    .final-cta__sub {
      font-size: 1.125rem;
      color: rgba(255, 255, 255, 0.72);
      margin-bottom: 40px;
      line-height: 1.6;
    }
    .final-cta__trust {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 24px;
      margin-top: 32px;
      flex-wrap: wrap;
    }
    .final-cta__trust-item {
      display: flex;
      align-items: center;
      gap: 8px;
      color: rgba(255, 255, 255, 0.55);
      font-size: 0.875rem;
      font-weight: 500;
    }
    .final-cta__trust-item svg { width: 18px; height: 18px; color: var(--emerald-light); flex-shrink: 0; }

    /* ===== FOOTER ===== */
    .footer {
      background: #060F24;
      padding: 56px 0 32px;
      border-top: 1px solid rgba(255, 255, 255, 0.06);
    }
    .footer__top {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      gap: 48px;
      padding-bottom: 40px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
      flex-wrap: wrap;
    }
    .footer__brand {
      max-width: 320px;
    }
    .footer__logo {
      font-family: var(--font-heading);
      font-weight: 700;
      font-size: 1.125rem;
      color: var(--white);
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 16px;
    }
    .footer__logo-icon {
      width: 32px;
      height: 32px;
      background: var(--emerald);
      border-radius: 7px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .footer__logo-icon svg { width: 18px; height: 18px; color: var(--white); }
    .footer__tagline {
      font-size: 0.875rem;
      color: var(--gray-400);
      line-height: 1.6;
    }
    .footer__links {
      display: flex;
      gap: 64px;
      flex-wrap: wrap;
    }
    .footer__col h4 {
      color: var(--white);
      font-size: 0.8125rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      margin-bottom: 16px;
    }
    .footer__col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
    .footer__col a {
      font-size: 0.875rem;
      color: var(--gray-400);
      transition: color 0.2s ease;
    }
    .footer__col a:hover { color: var(--emerald-light); }

    .footer__bottom {
      padding-top: 32px;
    }
    .footer__copyright {
      font-size: 0.8125rem;
      color: var(--gray-500);
      margin-bottom: 16px;
    }
    .footer__disclosure {
      font-size: 0.75rem;
      color: var(--gray-500);
      line-height: 1.7;
      max-width: 900px;
      padding-top: 16px;
      border-top: 1px solid rgba(255, 255, 255, 0.05);
    }

    @media (max-width: 767px) {
      .footer__top { flex-direction: column; gap: 32px; }
      .footer__links { gap: 40px; }
    }

:root {
  --gp-color-primary: #22c55e;
  --gp-color-primary-hover: #1fb155;
  --gp-color-primary-foreground: #0f172a;
  --gp-color-secondary: #0f172a;
  --gp-color-secondary-foreground: #ffffff;
  --gp-color-accent: #f97316;
  --gp-color-accent-foreground: #ffffff;
  --gp-color-surface: #ffffff;
  --gp-color-body: #0f172a;
  --gp-color-heading: #0f172a;
  --gp-color-muted: #f8fafc;
  --gp-color-muted-foreground: #475569;
  --gp-color-border: #cbd5e1;
  --gp-color-card: #ffffff;
  --gp-color-card-dark: #1e293b;
  --gp-font-heading: 'Playfair Display', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --gp-font-body: Inter, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --gp-font-weight-heading: 600;
  --gp-font-weight-body: 400;
  --gp-spacing-unit: 4px;
  --gp-radius-base: 0.75rem;
  --gp-radius-lg: 1rem;
  --gp-radius-pill: 9999px;
  --gp-heading-letter-spacing: -0.02em;
  --gp-heading-line-height: 1.2;
  --gp-body-line-height: 1.5;
}

[data-preview-mode="dark"] {
  --gp-color-primary: #43ce76;
  --gp-color-primary-hover: #59d486;
  --gp-color-primary-foreground: #0f172a;
  --gp-color-secondary: #334155;
  --gp-color-secondary-foreground: #ffffff;
  --gp-color-accent: #fa8839;
  --gp-color-accent-foreground: #0f172a;
  --gp-color-surface: #1e293b;
  --gp-color-body: #e2e8f0;
  --gp-color-heading: #f8fafc;
  --gp-color-muted: #334155;
  --gp-color-muted-foreground: #94a3b8;
  --gp-color-border: #475569;
  --gp-color-card: #334155;
  --gp-color-card-dark: #1e293b;
} *{} {}
     


      #IE-warning {
        display: none;
        position: fixed;
        width: 100%;
        height: 100%;
        z-index: 9999;
        background: white;
      }
      .IE-warning-message {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
      }
    



 @media (max-width: 639px) { [data-gp-text] .gp-component-id-Eg6JoKDcj { font-size: 22px !important;color: rgba(32, 45, 60, 1);font-family: "Plus Jakarta Sans" !important;background-color: rgba(16, 185, 129, 0.2);margin-bottom: 30px;padding-left: 20px;padding-right: 20px;padding-top: 10px;padding-bottom: 10px;text-decoration-line: inherit;font-style: italic !important; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-Eg6JoKDcj { font-size: 22px !important;color: rgba(32, 45, 60, 1);font-family: "Plus Jakarta Sans" !important;background-color: rgba(16, 185, 129, 0.2);margin-bottom: 30px;padding-left: 20px;padding-right: 20px;padding-top: 10px;padding-bottom: 10px;text-decoration-line: inherit;font-style: italic !important; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-Eg6JoKDcj { font-size: 22px !important;color: rgba(32, 45, 60, 1);font-family: "Plus Jakarta Sans" !important;background-color: rgba(16, 185, 129, 0.2);margin-bottom: 30px;padding-left: 20px;padding-right: 20px;padding-top: 10px;padding-bottom: 10px;text-decoration-line: inherit;font-style: italic !important; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-Eg6JoKDcj { font-size: 22px !important;color: rgba(32, 45, 60, 1);font-family: "Plus Jakarta Sans" !important;background-color: rgba(16, 185, 129, 0.2);margin-bottom: 30px;padding-left: 20px;padding-right: 20px;padding-top: 10px;padding-bottom: 10px;text-decoration-line: inherit;font-style: italic !important; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-Eg6JoKDcj { font-size: 22px !important;color: rgba(32, 45, 60, 1);font-family: "Plus Jakarta Sans" !important;background-color: rgba(16, 185, 129, 0.2);margin-bottom: 30px;padding-left: 20px;padding-right: 20px;padding-top: 10px;padding-bottom: 10px;text-decoration-line: inherit;font-style: italic !important; } }

 @media (max-width: 639px) { .gp-component-id-i4YgtG5so6[data-gp-component] { text-align: left;margin-left: auto;margin-right: auto;padding-left: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;position: relative;z-index: 15; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-i4YgtG5so6[data-gp-component] { text-align: left;margin-left: auto;margin-right: auto;padding-left: 0px;width: 100%;max-width: 640px;flex-direction: column;align-items: center;display: flex;position: relative;z-index: 15; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-i4YgtG5so6[data-gp-component] { text-align: left;margin-left: auto;margin-right: auto;padding-left: 0px;width: 100%;max-width: 768px;flex-direction: column;align-items: center;display: flex;position: relative;z-index: 15; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-i4YgtG5so6[data-gp-component] { text-align: left;margin-left: auto;margin-right: auto;padding-left: 0px;width: 100%;max-width: 992px;flex-direction: column;align-items: center;display: flex;position: relative;z-index: 15; } } @media (min-width: 1200px) { .gp-component-id-i4YgtG5so6[data-gp-component] { text-align: left;margin-left: auto;margin-right: auto;padding-left: 0px;width: 100%;max-width: 1200px;flex-direction: column;align-items: center;display: flex;position: relative;z-index: 15; } }

 .gp-component-id-Eg6JoKDcj { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px; } @media (max-width: 639px) { .gp-component-id-Eg6JoKDcj { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-Eg6JoKDcj { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-Eg6JoKDcj { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-Eg6JoKDcj { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px; } } @media (min-width: 1200px) { .gp-component-id-Eg6JoKDcj { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px; } }

 .gp-component-id-T85Pu0Yv_.gp-component > [data-section-overlay] { right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute; } @media (max-width: 639px) { .gp-component-id-T85Pu0Yv_.gp-component > [data-section-overlay] { right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-T85Pu0Yv_.gp-component > [data-section-overlay] { right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-T85Pu0Yv_.gp-component > [data-section-overlay] { right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-T85Pu0Yv_.gp-component > [data-section-overlay] { right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute; } } @media (min-width: 1200px) { .gp-component-id-T85Pu0Yv_.gp-component > [data-section-overlay] { right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute; } }

 .gp-component-id-DTye_4BfB4.gp-component > [data-section-overlay] { position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px; } @media (max-width: 639px) { .gp-component-id-DTye_4BfB4.gp-component > [data-section-overlay] { background-color: rgba(11, 27, 61, 0.5);position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-DTye_4BfB4.gp-component > [data-section-overlay] { background-color: rgba(11, 27, 61, 0.5);position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-DTye_4BfB4.gp-component > [data-section-overlay] { background-color: rgba(11, 27, 61, 0.5);position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-DTye_4BfB4.gp-component > [data-section-overlay] { background-color: rgba(11, 27, 61, 0.5);position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px; } } @media (min-width: 1200px) { .gp-component-id-DTye_4BfB4.gp-component > [data-section-overlay] { background-color: rgba(11, 27, 61, 0.5);position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px; } }

 .gp-component-id-NPaBTLVuy.gp-component > [data-section-overlay] { right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute; } @media (max-width: 639px) { .gp-component-id-NPaBTLVuy.gp-component > [data-section-overlay] { background-color: rgb(255, 255, 255);right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;backdrop-filter: blur(0px); } .gp-component-id-NPaBTLVuy.gp-component > [data-section-overlay]:hover,.gp-component-id-NPaBTLVuy.gp-component > [data-section-overlay].gp-hover { background-color: rgb(255, 255, 255); } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-NPaBTLVuy.gp-component > [data-section-overlay] { background-color: rgb(255, 255, 255);right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;backdrop-filter: blur(0px); } .gp-component-id-NPaBTLVuy.gp-component > [data-section-overlay]:hover,.gp-component-id-NPaBTLVuy.gp-component > [data-section-overlay].gp-hover { background-color: rgb(255, 255, 255); } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-NPaBTLVuy.gp-component > [data-section-overlay] { background-color: rgb(255, 255, 255);right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;backdrop-filter: blur(0px); } .gp-component-id-NPaBTLVuy.gp-component > [data-section-overlay]:hover,.gp-component-id-NPaBTLVuy.gp-component > [data-section-overlay].gp-hover { background-color: rgb(255, 255, 255); } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-NPaBTLVuy.gp-component > [data-section-overlay] { background-color: rgb(255, 255, 255);right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;backdrop-filter: blur(0px); } .gp-component-id-NPaBTLVuy.gp-component > [data-section-overlay]:hover,.gp-component-id-NPaBTLVuy.gp-component > [data-section-overlay].gp-hover { background-color: rgb(255, 255, 255); } } @media (min-width: 1200px) { .gp-component-id-NPaBTLVuy.gp-component > [data-section-overlay] { background-color: rgb(255, 255, 255);right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;backdrop-filter: blur(0px); } .gp-component-id-NPaBTLVuy.gp-component > [data-section-overlay]:hover,.gp-component-id-NPaBTLVuy.gp-component > [data-section-overlay].gp-hover { background-color: rgb(255, 255, 255); } }

 @media (max-width: 639px) { .gp-component-id-T4uaVX7d5K { font-size: 22px !important;color: rgba(57, 75, 86, 0.8);text-align: left;line-height: 2;font-family: "Plus Jakarta Sans" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;padding-left: 30px;padding-right: 30px;padding-bottom: 20px;overflow-wrap: break-word;cursor: text;box-sizing: border-box; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-T4uaVX7d5K { font-size: 22px !important;color: rgba(57, 75, 86, 0.8);text-align: left;line-height: 2;font-family: "Plus Jakarta Sans" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;padding-left: 30px;padding-right: 30px;padding-bottom: 20px;overflow-wrap: break-word;cursor: text;box-sizing: border-box; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-T4uaVX7d5K { font-size: 22px !important;color: rgba(57, 75, 86, 0.8);text-align: left;line-height: 2;font-family: "Plus Jakarta Sans" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;padding-left: 30px;padding-right: 30px;padding-bottom: 20px;overflow-wrap: break-word;cursor: text;box-sizing: border-box; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-T4uaVX7d5K { font-size: 22px !important;color: rgba(57, 75, 86, 0.8);text-align: left;line-height: 2;font-family: "Plus Jakarta Sans" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;padding-left: 30px;padding-right: 30px;padding-bottom: 20px;overflow-wrap: break-word;cursor: text;box-sizing: border-box; } } @media (min-width: 1200px) { .gp-component-id-T4uaVX7d5K { font-size: 22px !important;color: rgba(57, 75, 86, 0.8);text-align: left;line-height: 2;font-family: "Plus Jakarta Sans" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;padding-left: 30px;padding-right: 30px;padding-bottom: 20px;overflow-wrap: break-word;cursor: text;box-sizing: border-box; } }

 @media (max-width: 639px) { .gp-component-id-suk5rMlbRM { font-size: 22px !important;color: rgba(57, 75, 86, 0.8);text-align: left;line-height: 2;font-family: "Plus Jakarta Sans" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;padding-left: 30px;padding-right: 30px;padding-bottom: 20px;overflow-wrap: break-word;cursor: text;box-sizing: border-box; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-suk5rMlbRM { font-size: 22px !important;color: rgba(57, 75, 86, 0.8);text-align: left;line-height: 2;font-family: "Plus Jakarta Sans" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;padding-left: 30px;padding-right: 30px;padding-bottom: 20px;overflow-wrap: break-word;cursor: text;box-sizing: border-box; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-suk5rMlbRM { font-size: 22px !important;color: rgba(57, 75, 86, 0.8);text-align: left;line-height: 2;font-family: "Plus Jakarta Sans" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;padding-left: 30px;padding-right: 30px;padding-bottom: 20px;overflow-wrap: break-word;cursor: text;box-sizing: border-box; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-suk5rMlbRM { font-size: 22px !important;color: rgba(57, 75, 86, 0.8);text-align: left;line-height: 2;font-family: "Plus Jakarta Sans" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;padding-left: 30px;padding-right: 30px;padding-bottom: 20px;overflow-wrap: break-word;cursor: text;box-sizing: border-box; } } @media (min-width: 1200px) { .gp-component-id-suk5rMlbRM { font-size: 22px !important;color: rgba(57, 75, 86, 0.8);text-align: left;line-height: 2;font-family: "Plus Jakarta Sans" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;padding-left: 30px;padding-right: 30px;padding-bottom: 20px;overflow-wrap: break-word;cursor: text;box-sizing: border-box; } }

 @media (max-width: 639px) { .gp-component-id-5vRMQ7z1Qk { font-size: 22px !important;color: rgba(57, 75, 86, 0.8);text-align: left;line-height: 2;font-family: "Plus Jakarta Sans" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;padding-left: 30px;padding-right: 30px;padding-bottom: 20px;overflow-wrap: break-word;cursor: text;box-sizing: border-box; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-5vRMQ7z1Qk { font-size: 22px !important;color: rgba(57, 75, 86, 0.8);text-align: left;line-height: 2;font-family: "Plus Jakarta Sans" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;padding-left: 30px;padding-right: 30px;padding-bottom: 20px;overflow-wrap: break-word;cursor: text;box-sizing: border-box; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-5vRMQ7z1Qk { font-size: 22px !important;color: rgba(57, 75, 86, 0.8);text-align: left;line-height: 2;font-family: "Plus Jakarta Sans" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;padding-left: 30px;padding-right: 30px;padding-bottom: 20px;overflow-wrap: break-word;cursor: text;box-sizing: border-box; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-5vRMQ7z1Qk { font-size: 22px !important;color: rgba(57, 75, 86, 0.8);text-align: left;line-height: 2;font-family: "Plus Jakarta Sans" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;padding-left: 30px;padding-right: 30px;padding-bottom: 20px;overflow-wrap: break-word;cursor: text;box-sizing: border-box; } } @media (min-width: 1200px) { .gp-component-id-5vRMQ7z1Qk { font-size: 22px !important;color: rgba(57, 75, 86, 0.8);text-align: left;line-height: 2;font-family: "Plus Jakarta Sans" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;padding-left: 30px;padding-right: 30px;padding-bottom: 20px;overflow-wrap: break-word;cursor: text;box-sizing: border-box; } }

 @media (max-width: 639px) { [data-gp-text] .gp-component-id-VWeihvx_5q { font-size: 22px !important;color: rgba(57, 75, 86, 0.8);text-align: left;line-height: 2;font-family: "Plus Jakarta Sans" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;padding-left: 30px;padding-right: 30px;padding-bottom: 20px;box-sizing: border-box;cursor: text;overflow-wrap: break-word; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-VWeihvx_5q { font-size: 22px !important;color: rgba(57, 75, 86, 0.8);text-align: left;line-height: 2;font-family: "Plus Jakarta Sans" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;padding-left: 30px;padding-right: 30px;padding-bottom: 20px;box-sizing: border-box;cursor: text;overflow-wrap: break-word; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-VWeihvx_5q { font-size: 22px !important;color: rgba(57, 75, 86, 0.8);text-align: left;line-height: 2;font-family: "Plus Jakarta Sans" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;padding-left: 30px;padding-right: 30px;padding-bottom: 20px;box-sizing: border-box;cursor: text;overflow-wrap: break-word; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-VWeihvx_5q { font-size: 22px !important;color: rgba(57, 75, 86, 0.8);text-align: left;line-height: 2;font-family: "Plus Jakarta Sans" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;padding-left: 30px;padding-right: 30px;padding-bottom: 20px;box-sizing: border-box;cursor: text;overflow-wrap: break-word; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-VWeihvx_5q { font-size: 22px !important;color: rgba(57, 75, 86, 0.8);text-align: left;line-height: 2;font-family: "Plus Jakarta Sans" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;padding-left: 30px;padding-right: 30px;padding-bottom: 20px;box-sizing: border-box;cursor: text;overflow-wrap: break-word; } }

 @media (max-width: 639px) { [data-gp-text] .gp-component-id-k7QivQCshj { font-size: 34px !important;font-weight: inherit !important;text-align: left;font-family: Outfit !important;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 20px;overflow-wrap: break-word; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-k7QivQCshj { font-size: 34px !important;font-weight: inherit !important;text-align: left;font-family: Outfit !important;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 20px;overflow-wrap: break-word; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-k7QivQCshj { font-size: 34px !important;font-weight: inherit !important;text-align: left;font-family: Outfit !important;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 20px;overflow-wrap: break-word; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-k7QivQCshj { font-size: 34px !important;font-weight: inherit !important;text-align: left;font-family: Outfit !important;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 20px;overflow-wrap: break-word; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-k7QivQCshj { font-size: 34px !important;font-weight: inherit !important;text-align: left;font-family: Outfit !important;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 20px;overflow-wrap: break-word; } }

 @media (max-width: 639px) { .gp-component-id-Zibu7fe84[data-gp-component] { border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(255, 255, 255);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 24px;padding-right: 24px;padding-top: 21px;padding-bottom: 20px;width: 80%;height: auto;flex-direction: column;justify-content: flex-end;align-items: flex-end;display: flex;list-style-type: inherit;list-style-position: inside; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-Zibu7fe84[data-gp-component] { border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(255, 255, 255);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 56px;padding-right: 56px;padding-top: 21px;padding-bottom: 20px;width: 80%;height: auto;flex-direction: column;justify-content: flex-end;align-items: flex-end;display: flex;list-style-type: inherit;list-style-position: inside; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-Zibu7fe84[data-gp-component] { border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(255, 255, 255);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 56px;padding-right: 56px;padding-top: 21px;padding-bottom: 20px;width: 80%;height: auto;flex-direction: column;justify-content: flex-end;align-items: flex-end;display: flex;list-style-type: inherit;list-style-position: inside; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-Zibu7fe84[data-gp-component] { border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(255, 255, 255);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 56px;padding-right: 56px;padding-top: 21px;padding-bottom: 20px;width: 80%;height: auto;flex-direction: column;justify-content: flex-end;align-items: flex-end;display: flex;list-style-type: inherit;list-style-position: inside; } } @media (min-width: 1200px) { .gp-component-id-Zibu7fe84[data-gp-component] { border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(255, 255, 255);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 56px;padding-right: 56px;padding-top: 21px;padding-bottom: 20px;width: 80%;height: auto;flex-direction: column;justify-content: flex-end;align-items: flex-end;display: flex;list-style-type: inherit;list-style-position: inside; } }

 @media (max-width: 639px) { .gp-component-id-An8Rj2FtJj[data-gp-component] { width: 100%;flex-direction: column;align-items: center;display: flex; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-An8Rj2FtJj[data-gp-component] { width: 100%;flex-direction: column;align-items: center;display: flex; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-An8Rj2FtJj[data-gp-component] { width: 100%;flex-direction: column;align-items: center;display: flex; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-An8Rj2FtJj[data-gp-component] { width: 100%;flex-direction: column;align-items: center;display: flex; } } @media (min-width: 1200px) { .gp-component-id-An8Rj2FtJj[data-gp-component] { width: 100%;flex-direction: column;align-items: center;display: flex; } }

 @media (max-width: 639px) { .gp-component-id-Njl7puC9EZ[data-gp-component] { font-size: 22px !important;font-weight: 400 !important;color: rgb(255, 255, 255);line-height: 1.15;font-family: inherit !important;border-top-left-radius: 33px;border-top-right-radius: 33px;border-bottom-left-radius: 33px;border-bottom-right-radius: 33px;background-color: rgb(16, 185, 129);background-image: initial;background-size: initial;background-repeat: initial;background-attachment: initial;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 36px;padding-right: 36px;padding-top: 24px;padding-bottom: 24px;width: 100%;display: inline-block;overflow-y: visible;overflow-x: visible;text-transform: none;appearance: button;background-clip: initial;background-origin: initial;background-position-y: initial;background-position-x: initial;cursor: pointer; } .gp-component-id-Njl7puC9EZ[data-gp-component]:focus,.gp-component-id-Njl7puC9EZ[data-gp-component].gp-focus { outline-width: 5px;outline-style: auto;outline-color: -webkit-focus-ring-color; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-Njl7puC9EZ[data-gp-component] { font-size: 22px !important;font-weight: 400 !important;color: rgb(255, 255, 255);line-height: 1.15;font-family: inherit !important;border-top-left-radius: 33px;border-top-right-radius: 33px;border-bottom-left-radius: 33px;border-bottom-right-radius: 33px;background-color: rgb(16, 185, 129);background-image: initial;background-size: initial;background-repeat: initial;background-attachment: initial;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 36px;padding-right: 36px;padding-top: 24px;padding-bottom: 24px;width: 100%;display: inline-block;overflow-y: visible;overflow-x: visible;text-transform: none;appearance: button;background-clip: initial;background-origin: initial;background-position-y: initial;background-position-x: initial;cursor: pointer; } .gp-component-id-Njl7puC9EZ[data-gp-component]:focus,.gp-component-id-Njl7puC9EZ[data-gp-component].gp-focus { outline-width: 5px;outline-style: auto;outline-color: -webkit-focus-ring-color; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-Njl7puC9EZ[data-gp-component] { font-size: 22px !important;font-weight: 400 !important;color: rgb(255, 255, 255);line-height: 1.15;font-family: inherit !important;border-top-left-radius: 33px;border-top-right-radius: 33px;border-bottom-left-radius: 33px;border-bottom-right-radius: 33px;background-color: rgb(16, 185, 129);background-image: initial;background-size: initial;background-repeat: initial;background-attachment: initial;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 36px;padding-right: 36px;padding-top: 24px;padding-bottom: 24px;width: 100%;display: inline-block;overflow-y: visible;overflow-x: visible;text-transform: none;appearance: button;background-clip: initial;background-origin: initial;background-position-y: initial;background-position-x: initial;cursor: pointer; } .gp-component-id-Njl7puC9EZ[data-gp-component]:focus,.gp-component-id-Njl7puC9EZ[data-gp-component].gp-focus { outline-width: 5px;outline-style: auto;outline-color: -webkit-focus-ring-color; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-Njl7puC9EZ[data-gp-component] { font-size: 22px !important;font-weight: 400 !important;color: rgb(255, 255, 255);line-height: 1.15;font-family: inherit !important;border-top-left-radius: 33px;border-top-right-radius: 33px;border-bottom-left-radius: 33px;border-bottom-right-radius: 33px;background-color: rgb(16, 185, 129);background-image: initial;background-size: initial;background-repeat: initial;background-attachment: initial;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 36px;padding-right: 36px;padding-top: 24px;padding-bottom: 24px;width: 100%;display: inline-block;overflow-y: visible;overflow-x: visible;text-transform: none;appearance: button;background-clip: initial;background-origin: initial;background-position-y: initial;background-position-x: initial;cursor: pointer; } .gp-component-id-Njl7puC9EZ[data-gp-component]:focus,.gp-component-id-Njl7puC9EZ[data-gp-component].gp-focus { outline-width: 5px;outline-style: auto;outline-color: -webkit-focus-ring-color; } } @media (min-width: 1200px) { .gp-component-id-Njl7puC9EZ[data-gp-component] { font-size: 22px !important;font-weight: 400 !important;color: rgb(255, 255, 255);line-height: 1.15;font-family: inherit !important;border-top-left-radius: 33px;border-top-right-radius: 33px;border-bottom-left-radius: 33px;border-bottom-right-radius: 33px;background-color: rgb(16, 185, 129);background-image: initial;background-size: initial;background-repeat: initial;background-attachment: initial;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 36px;padding-right: 36px;padding-top: 24px;padding-bottom: 24px;width: 100%;display: inline-block;overflow-y: visible;overflow-x: visible;text-transform: none;appearance: button;background-clip: initial;background-origin: initial;background-position-y: initial;background-position-x: initial;cursor: pointer; } .gp-component-id-Njl7puC9EZ[data-gp-component]:focus,.gp-component-id-Njl7puC9EZ[data-gp-component].gp-focus { outline-width: 5px;outline-style: auto;outline-color: -webkit-focus-ring-color; } }

 @media (max-width: 639px) { .gp-component-id-BEwDaQ4QXX { font-size: 40px !important;font-weight: 400 !important;text-align: center;font-family: Outfit !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;overflow-wrap: break-word; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-BEwDaQ4QXX { font-size: 40px !important;font-weight: 400 !important;text-align: center;font-family: Outfit !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;overflow-wrap: break-word; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-BEwDaQ4QXX { font-size: 40px !important;font-weight: 400 !important;text-align: center;font-family: Outfit !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;overflow-wrap: break-word; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-BEwDaQ4QXX { font-size: 40px !important;font-weight: 400 !important;text-align: center;font-family: Outfit !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;overflow-wrap: break-word; } } @media (min-width: 1200px) { .gp-component-id-BEwDaQ4QXX { font-size: 40px !important;font-weight: 400 !important;text-align: center;font-family: Outfit !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;overflow-wrap: break-word; } }

 @media (max-width: 639px) { [data-gp-text] .gp-component-id-lewclN94RY { font-size: 40px !important;font-weight: 400 !important;text-align: center;font-family: Outfit !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;overflow-wrap: break-word; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-lewclN94RY { font-size: 40px !important;font-weight: 400 !important;text-align: center;font-family: Outfit !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;overflow-wrap: break-word; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-lewclN94RY { font-size: 40px !important;font-weight: 400 !important;text-align: center;font-family: Outfit !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;overflow-wrap: break-word; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-lewclN94RY { font-size: 40px !important;font-weight: 400 !important;text-align: center;font-family: Outfit !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;overflow-wrap: break-word; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-lewclN94RY { font-size: 40px !important;font-weight: 400 !important;text-align: center;font-family: Outfit !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;overflow-wrap: break-word; } }

 @media (max-width: 639px) { .gp-component-id-x0TShuWcw[data-gp-component] { border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(255, 255, 255);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 24px;padding-right: 24px;padding-top: 24px;padding-bottom: 24px;width: 85.71%;height: auto;flex-direction: column;align-items: center;display: flex;list-style-type: inherit;list-style-position: inside; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-x0TShuWcw[data-gp-component] { border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(255, 255, 255);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 56px;padding-right: 56px;padding-top: 56px;padding-bottom: 56px;width: 85.71%;height: auto;flex-direction: column;align-items: center;display: flex;list-style-type: inherit;list-style-position: inside; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-x0TShuWcw[data-gp-component] { border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(255, 255, 255);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 56px;padding-right: 56px;padding-top: 56px;padding-bottom: 56px;width: 100%;height: auto;flex-direction: column;align-items: center;display: flex;list-style-type: inherit;list-style-position: inside; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-x0TShuWcw[data-gp-component] { border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(255, 255, 255);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 56px;padding-right: 56px;padding-top: 56px;padding-bottom: 56px;width: 66.6667%;height: auto;flex-direction: column;align-items: center;display: flex;list-style-type: inherit;list-style-position: inside; } } @media (min-width: 1200px) { .gp-component-id-x0TShuWcw[data-gp-component] { border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(255, 255, 255);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 56px;padding-right: 56px;padding-top: 56px;padding-bottom: 56px;width: 66.6667%;height: auto;flex-direction: column;align-items: center;display: flex;list-style-type: inherit;list-style-position: inside; } }

 .gp-component-id-cEfNdtN7z { padding-right: 8px;width: 100%;padding-left: 8px; } @media (max-width: 639px) { .gp-component-id-cEfNdtN7z { padding-right: 8px;width: 100%;padding-left: 8px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-cEfNdtN7z { padding-right: 8px;width: 100%;padding-left: 8px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-cEfNdtN7z { padding-right: 8px;width: 100%;padding-left: 8px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-cEfNdtN7z { padding-right: 8px;width: 100%;padding-left: 8px; } } @media (min-width: 1200px) { .gp-component-id-cEfNdtN7z { padding-right: 8px;width: 100%;padding-left: 8px; } }

 .gp-component-id-dkrLU1Jwl { margin-right: -8px;margin-left: -8px; } @media (max-width: 639px) { .gp-component-id-dkrLU1Jwl { margin-right: -8px;margin-left: -8px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-dkrLU1Jwl { margin-right: -8px;margin-left: -8px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-dkrLU1Jwl { margin-right: -8px;margin-left: -8px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-dkrLU1Jwl { margin-right: -8px;margin-left: -8px; } } @media (min-width: 1200px) { .gp-component-id-dkrLU1Jwl { margin-right: -8px;margin-left: -8px; } }

 .gp-component-id-0C8j0mzaZl { padding-right: 8px;width: 100%;padding-left: 8px; } @media (max-width: 639px) { .gp-component-id-0C8j0mzaZl { padding-right: 8px;width: 100%;padding-left: 8px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-0C8j0mzaZl { padding-right: 8px;width: 100%;padding-left: 8px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-0C8j0mzaZl { padding-right: 8px;width: 100%;padding-left: 8px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-0C8j0mzaZl { padding-right: 8px;width: 100%;padding-left: 8px; } } @media (min-width: 1200px) { .gp-component-id-0C8j0mzaZl { padding-right: 8px;width: 100%;padding-left: 8px; } }

 @media (max-width: 639px) { [data-gp-text] .gp-component-id-LCJgpYiddc { font-size: 34px !important;font-weight: inherit !important;text-align: left;font-family: Outfit !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;padding-top: 20px;overflow-wrap: break-word; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-LCJgpYiddc { font-size: 34px !important;font-weight: inherit !important;text-align: left;font-family: Outfit !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;padding-top: 20px;overflow-wrap: break-word; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-LCJgpYiddc { font-size: 34px !important;font-weight: inherit !important;text-align: left;font-family: Outfit !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;padding-top: 20px;overflow-wrap: break-word; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-LCJgpYiddc { font-size: 34px !important;font-weight: inherit !important;text-align: left;font-family: Outfit !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;padding-top: 20px;overflow-wrap: break-word; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-LCJgpYiddc { font-size: 34px !important;font-weight: inherit !important;text-align: left;font-family: Outfit !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;padding-top: 20px;overflow-wrap: break-word; } }

 @media (max-width: 639px) { .gp-component-id-yRDCbd49CV { font-size: 22px !important;color: rgba(57, 75, 86, 0.8);text-align: left;line-height: 2;font-family: "Plus Jakarta Sans" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;cursor: text;box-sizing: border-box;overflow-wrap: break-word; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-yRDCbd49CV { font-size: 22px !important;color: rgba(57, 75, 86, 0.8);text-align: left;line-height: 2;font-family: "Plus Jakarta Sans" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;cursor: text;box-sizing: border-box;overflow-wrap: break-word; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-yRDCbd49CV { font-size: 22px !important;color: rgba(57, 75, 86, 0.8);text-align: left;line-height: 2;font-family: "Plus Jakarta Sans" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;cursor: text;box-sizing: border-box;overflow-wrap: break-word; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-yRDCbd49CV { font-size: 22px !important;color: rgba(57, 75, 86, 0.8);text-align: left;line-height: 2;font-family: "Plus Jakarta Sans" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;cursor: text;box-sizing: border-box;overflow-wrap: break-word; } } @media (min-width: 1200px) { .gp-component-id-yRDCbd49CV { font-size: 22px !important;color: rgba(57, 75, 86, 0.8);text-align: left;line-height: 2;font-family: "Plus Jakarta Sans" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;cursor: text;box-sizing: border-box;overflow-wrap: break-word; } }

 @media (max-width: 639px) { [data-gp-text] .gp-component-id-ujJOZuoedY { font-size: 22px !important;color: rgba(57, 75, 86, 0.8);text-align: left;line-height: 2;font-family: "Plus Jakarta Sans" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;overflow-wrap: break-word;box-sizing: border-box;cursor: text; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-ujJOZuoedY { font-size: 22px !important;color: rgba(57, 75, 86, 0.8);text-align: left;line-height: 2;font-family: "Plus Jakarta Sans" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;overflow-wrap: break-word;box-sizing: border-box;cursor: text; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-ujJOZuoedY { font-size: 22px !important;color: rgba(57, 75, 86, 0.8);text-align: left;line-height: 2;font-family: "Plus Jakarta Sans" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;overflow-wrap: break-word;box-sizing: border-box;cursor: text; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-ujJOZuoedY { font-size: 22px !important;color: rgba(57, 75, 86, 0.8);text-align: left;line-height: 2;font-family: "Plus Jakarta Sans" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;overflow-wrap: break-word;box-sizing: border-box;cursor: text; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-ujJOZuoedY { font-size: 22px !important;color: rgba(57, 75, 86, 0.8);text-align: left;line-height: 2;font-family: "Plus Jakarta Sans" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;overflow-wrap: break-word;box-sizing: border-box;cursor: text; } }

 @media (max-width: 639px) { .gp-component-id-Xv7INMgvid { font-size: 34px !important;font-weight: inherit !important;text-align: left;font-family: Outfit !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;overflow-wrap: break-word; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-Xv7INMgvid { font-size: 34px !important;font-weight: inherit !important;text-align: left;font-family: Outfit !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;overflow-wrap: break-word; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-Xv7INMgvid { font-size: 34px !important;font-weight: inherit !important;text-align: left;font-family: Outfit !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;overflow-wrap: break-word; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-Xv7INMgvid { font-size: 34px !important;font-weight: inherit !important;text-align: left;font-family: Outfit !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;overflow-wrap: break-word; } } @media (min-width: 1200px) { .gp-component-id-Xv7INMgvid { font-size: 34px !important;font-weight: inherit !important;text-align: left;font-family: Outfit !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;overflow-wrap: break-word; } }

 @media (max-width: 639px) { .gp-component-id-0r2GOZB4j[data-gp-component] { color: rgba(57, 75, 86, 1);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 16px;padding-right: 0px;padding-top: 16px;padding-bottom: 16px;list-style-position: inside;list-style-type: inherit; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-0r2GOZB4j[data-gp-component] { color: rgba(57, 75, 86, 1);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 16px;padding-right: 0px;padding-top: 16px;padding-bottom: 16px;list-style-position: inside;list-style-type: inherit; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-0r2GOZB4j[data-gp-component] { color: rgba(57, 75, 86, 1);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 16px;padding-right: 0px;padding-top: 16px;padding-bottom: 16px;list-style-position: inside;list-style-type: inherit; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-0r2GOZB4j[data-gp-component] { color: rgba(57, 75, 86, 1);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 16px;padding-right: 0px;padding-top: 16px;padding-bottom: 16px;list-style-position: inside;list-style-type: inherit; } } @media (min-width: 1200px) { .gp-component-id-0r2GOZB4j[data-gp-component] { color: rgba(57, 75, 86, 1);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 16px;padding-right: 0px;padding-top: 16px;padding-bottom: 16px;list-style-position: inside;list-style-type: inherit; } }

 @media (max-width: 639px) { .gp-component-id-_wCTQYtiz[data-gp-component] { font-size: 24px !important;color: inherit;font-family: "Plus Jakarta Sans" !important;background-color: transparent;display: block;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: underline ;cursor: pointer;font-style: italic; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-_wCTQYtiz[data-gp-component] { font-size: 24px !important;color: inherit;font-family: "Plus Jakarta Sans" !important;background-color: transparent;display: block;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: underline ;cursor: pointer;font-style: italic; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-_wCTQYtiz[data-gp-component] { font-size: 24px !important;color: inherit;font-family: "Plus Jakarta Sans" !important;background-color: transparent;display: block;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: underline ;cursor: pointer;font-style: italic; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-_wCTQYtiz[data-gp-component] { font-size: 24px !important;color: inherit;font-family: "Plus Jakarta Sans" !important;background-color: transparent;display: block;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: underline ;cursor: pointer;font-style: italic; } } @media (min-width: 1200px) { .gp-component-id-_wCTQYtiz[data-gp-component] { font-size: 24px !important;color: inherit;font-family: "Plus Jakarta Sans" !important;background-color: transparent;display: block;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: underline ;cursor: pointer;font-style: italic; } }

 @media (max-width: 639px) { [data-gp-text] .gp-component-id-WhuZAqmFh { font-size: 22px !important;font-weight: 700;font-family: Plus Jakarta Sans;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-WhuZAqmFh { font-size: 22px !important;font-weight: 700;font-family: Plus Jakarta Sans;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-WhuZAqmFh { font-size: 22px !important;font-weight: 700;font-family: Plus Jakarta Sans;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-WhuZAqmFh { font-size: 22px !important;font-weight: 700;font-family: Plus Jakarta Sans;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-WhuZAqmFh { font-size: 22px !important;font-weight: 700;font-family: Plus Jakarta Sans;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block; } }

 @media (max-width: 639px) { [data-gp-text] .gp-component-id-sgUQzmN8w { font-size: 22px !important;font-weight: 700;font-family: Plus Jakarta Sans;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-sgUQzmN8w { font-size: 22px !important;font-weight: 700;font-family: Plus Jakarta Sans;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-sgUQzmN8w { font-size: 22px !important;font-weight: 700;font-family: Plus Jakarta Sans;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-sgUQzmN8w { font-size: 22px !important;font-weight: 700;font-family: Plus Jakarta Sans;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-sgUQzmN8w { font-size: 22px !important;font-weight: 700;font-family: Plus Jakarta Sans;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block; } }

 @media (max-width: 639px) { .gp-component-id-CMH_Z9kIx[data-gp-component] { font-size: 22px !important;font-weight: 700;color: rgb(32, 45, 60);font-family: Plus Jakarta Sans;margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space-collapse: collapse;text-wrap-mode: nowrap; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-CMH_Z9kIx[data-gp-component] { font-size: 22px !important;font-weight: 700;color: rgb(32, 45, 60);font-family: Plus Jakarta Sans;margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space-collapse: collapse;text-wrap-mode: nowrap; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-CMH_Z9kIx[data-gp-component] { font-size: 22px !important;font-weight: 700;color: rgb(32, 45, 60);font-family: Plus Jakarta Sans;margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space-collapse: collapse;text-wrap-mode: nowrap; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-CMH_Z9kIx[data-gp-component] { font-size: 22px !important;font-weight: 700;color: rgb(32, 45, 60);font-family: Plus Jakarta Sans;margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space-collapse: collapse;text-wrap-mode: nowrap; } } @media (min-width: 1200px) { .gp-component-id-CMH_Z9kIx[data-gp-component] { font-size: 22px !important;font-weight: 700;color: rgb(32, 45, 60);font-family: Plus Jakarta Sans;margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space-collapse: collapse;text-wrap-mode: nowrap; } }

 .gp-component-id-ymSYiTG5d { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;display: inline-block;width: 100%; } @media (max-width: 639px) { .gp-component-id-ymSYiTG5d { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;display: inline-block;width: 100%; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-ymSYiTG5d { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;display: inline-block;width: 100%; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-ymSYiTG5d { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;display: inline-block;width: 100%; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-ymSYiTG5d { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;display: inline-block;width: 100%; } } @media (min-width: 1200px) { .gp-component-id-ymSYiTG5d { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;display: inline-block;width: 100%; } }

 .gp-component-id-zX8C1qtte { margin-bottom: 12px;padding-top: 8px;padding-bottom: 8px;color: rgb(32, 45, 60);padding-right: 16px;text-wrap-mode: nowrap;white-space-collapse: collapse; } @media (max-width: 639px) { .gp-component-id-zX8C1qtte { margin-bottom: 12px;padding-top: 8px;padding-bottom: 8px;color: rgb(32, 45, 60);padding-right: 16px;text-wrap-mode: nowrap;white-space-collapse: collapse; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-zX8C1qtte { margin-bottom: 12px;padding-top: 8px;padding-bottom: 8px;color: rgb(32, 45, 60);padding-right: 16px;text-wrap-mode: nowrap;white-space-collapse: collapse; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-zX8C1qtte { margin-bottom: 12px;padding-top: 8px;padding-bottom: 8px;color: rgb(32, 45, 60);padding-right: 16px;text-wrap-mode: nowrap;white-space-collapse: collapse; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-zX8C1qtte { margin-bottom: 12px;padding-top: 8px;padding-bottom: 8px;color: rgb(32, 45, 60);padding-right: 16px;text-wrap-mode: nowrap;white-space-collapse: collapse; } } @media (min-width: 1200px) { .gp-component-id-zX8C1qtte { margin-bottom: 12px;padding-top: 8px;padding-bottom: 8px;color: rgb(32, 45, 60);padding-right: 16px;text-wrap-mode: nowrap;white-space-collapse: collapse; } }

 .gp-component-id-m1OLT0aBa { margin-bottom: 12px;padding-top: 8px;padding-bottom: 8px;color: rgb(32, 45, 60);padding-right: 16px;text-wrap-mode: nowrap;white-space-collapse: collapse; } @media (max-width: 639px) { .gp-component-id-m1OLT0aBa { margin-bottom: 12px;padding-top: 8px;padding-bottom: 8px;color: rgb(32, 45, 60);padding-right: 16px;text-wrap-mode: nowrap;white-space-collapse: collapse; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-m1OLT0aBa { margin-bottom: 12px;padding-top: 8px;padding-bottom: 8px;color: rgb(32, 45, 60);padding-right: 16px;text-wrap-mode: nowrap;white-space-collapse: collapse; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-m1OLT0aBa { margin-bottom: 12px;padding-top: 8px;padding-bottom: 8px;color: rgb(32, 45, 60);padding-right: 16px;text-wrap-mode: nowrap;white-space-collapse: collapse; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-m1OLT0aBa { margin-bottom: 12px;padding-top: 8px;padding-bottom: 8px;color: rgb(32, 45, 60);padding-right: 16px;text-wrap-mode: nowrap;white-space-collapse: collapse; } } @media (min-width: 1200px) { .gp-component-id-m1OLT0aBa { margin-bottom: 12px;padding-top: 8px;padding-bottom: 8px;color: rgb(32, 45, 60);padding-right: 16px;text-wrap-mode: nowrap;white-space-collapse: collapse; } }

 .gp-component-id-42oS7HeHG { align-items: flex-start;color: rgb(32, 45, 60);font-size: 18px;margin-bottom: 8px;display: flex; } @media (max-width: 639px) { .gp-component-id-42oS7HeHG { align-items: flex-start;color: rgb(32, 45, 60);font-size: 18px;margin-bottom: 8px;display: flex; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-42oS7HeHG { align-items: flex-start;color: rgb(32, 45, 60);font-size: 18px;margin-bottom: 8px;display: flex; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-42oS7HeHG { align-items: flex-start;color: rgb(32, 45, 60);font-size: 18px;margin-bottom: 8px;display: flex; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-42oS7HeHG { align-items: flex-start;color: rgb(32, 45, 60);font-size: 18px;margin-bottom: 8px;display: flex; } } @media (min-width: 1200px) { .gp-component-id-42oS7HeHG { align-items: flex-start;color: rgb(32, 45, 60);font-size: 18px;margin-bottom: 8px;display: flex; } }

 @media (max-width: 639px) { [data-gp-text] .gp-component-id-8sX5z8VKMF { font-size: 34px !important;font-weight: inherit !important;text-align: left;font-family: Outfit !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;padding-top: 20px;overflow-wrap: break-word; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-8sX5z8VKMF { font-size: 34px !important;font-weight: inherit !important;text-align: left;font-family: Outfit !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;padding-top: 20px;overflow-wrap: break-word; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-8sX5z8VKMF { font-size: 34px !important;font-weight: inherit !important;text-align: left;font-family: Outfit !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;padding-top: 20px;overflow-wrap: break-word; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-8sX5z8VKMF { font-size: 34px !important;font-weight: inherit !important;text-align: left;font-family: Outfit !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;padding-top: 20px;overflow-wrap: break-word; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-8sX5z8VKMF { font-size: 34px !important;font-weight: inherit !important;text-align: left;font-family: Outfit !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;padding-top: 20px;overflow-wrap: break-word; } }

 @media (max-width: 639px) { [data-gp-text] .gp-component-id-Yfr1DORjro { font-size: 34px !important;font-weight: inherit !important;text-align: left;font-family: Outfit !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;padding-top: 20px;overflow-wrap: break-word; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-Yfr1DORjro { font-size: 34px !important;font-weight: inherit !important;text-align: left;font-family: Outfit !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;padding-top: 20px;overflow-wrap: break-word; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-Yfr1DORjro { font-size: 34px !important;font-weight: inherit !important;text-align: left;font-family: Outfit !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;padding-top: 20px;overflow-wrap: break-word; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-Yfr1DORjro { font-size: 34px !important;font-weight: inherit !important;text-align: left;font-family: Outfit !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;padding-top: 20px;overflow-wrap: break-word; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-Yfr1DORjro { font-size: 34px !important;font-weight: inherit !important;text-align: left;font-family: Outfit !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;padding-top: 20px;overflow-wrap: break-word; } }

 @media (max-width: 639px) { [data-gp-text] .gp-component-id-NuNy0YclX { font-size: 40px !important;font-weight: inherit !important;font-family: Outfit !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;padding-top: 20px;overflow-wrap: break-word; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-NuNy0YclX { font-size: 40px !important;font-weight: inherit !important;font-family: Outfit !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;padding-top: 20px;overflow-wrap: break-word; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-NuNy0YclX { font-size: 40px !important;font-weight: inherit !important;font-family: Outfit !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;padding-top: 20px;overflow-wrap: break-word; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-NuNy0YclX { font-size: 40px !important;font-weight: inherit !important;font-family: Outfit !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;padding-top: 20px;overflow-wrap: break-word; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-NuNy0YclX { font-size: 40px !important;font-weight: inherit !important;font-family: Outfit !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;padding-top: 20px;overflow-wrap: break-word; } }

 @media (max-width: 639px) { [data-gp-text] .gp-component-id-Cfe41u6cyc { font-size: 22px !important;color: rgba(57, 75, 86, 0.8);text-align: left;line-height: 2;font-family: "Plus Jakarta Sans" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;padding-left: 30px;padding-right: 30px;overflow-wrap: break-word;cursor: text;box-sizing: border-box; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-Cfe41u6cyc { font-size: 22px !important;color: rgba(57, 75, 86, 0.8);text-align: left;line-height: 2;font-family: "Plus Jakarta Sans" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;padding-left: 30px;padding-right: 30px;overflow-wrap: break-word;cursor: text;box-sizing: border-box; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-Cfe41u6cyc { font-size: 22px !important;color: rgba(57, 75, 86, 0.8);text-align: left;line-height: 2;font-family: "Plus Jakarta Sans" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;padding-left: 30px;padding-right: 30px;overflow-wrap: break-word;cursor: text;box-sizing: border-box; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-Cfe41u6cyc { font-size: 22px !important;color: rgba(57, 75, 86, 0.8);text-align: left;line-height: 2;font-family: "Plus Jakarta Sans" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;padding-left: 30px;padding-right: 30px;overflow-wrap: break-word;cursor: text;box-sizing: border-box; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-Cfe41u6cyc { font-size: 22px !important;color: rgba(57, 75, 86, 0.8);text-align: left;line-height: 2;font-family: "Plus Jakarta Sans" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;padding-left: 30px;padding-right: 30px;overflow-wrap: break-word;cursor: text;box-sizing: border-box; } }

 @media (max-width: 639px) { .gp-component-id-NPaBTLVuy[data-gp-component] { margin-top: 40px;padding-top: 23px;padding-bottom: 24px;z-index: auto !important;position: relative;min-height: 50px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-NPaBTLVuy[data-gp-component] { margin-top: 40px;padding-top: 23px;padding-bottom: 24px;z-index: auto !important;position: relative;min-height: 50px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-NPaBTLVuy[data-gp-component] { margin-top: 40px;padding-top: 23px;padding-bottom: 24px;z-index: auto !important;position: relative;min-height: 50px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-NPaBTLVuy[data-gp-component] { margin-top: 40px;padding-top: 23px;padding-bottom: 24px;z-index: auto !important;position: relative;min-height: 50px; } } @media (min-width: 1200px) { .gp-component-id-NPaBTLVuy[data-gp-component] { margin-top: 40px;padding-top: 23px;padding-bottom: 24px;z-index: auto !important;position: relative;min-height: 50px; } }

 @media (max-width: 639px) { .gp-component-id-IwDjVaCI9N[data-gp-component] { font-size: 22px !important;font-weight: 400 !important;color: rgb(255, 255, 255);line-height: 1.15;font-family: inherit !important;border-top-left-radius: 33px;border-top-right-radius: 33px;border-bottom-left-radius: 33px;border-bottom-right-radius: 33px;background-color: rgb(16, 185, 129);background-image: initial;background-size: initial;background-repeat: initial;background-attachment: initial;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 36px;padding-right: 36px;padding-top: 24px;padding-bottom: 24px;width: 100%;display: inline-block;cursor: pointer;background-position-x: initial;background-position-y: initial;background-origin: initial;background-clip: initial;appearance: button;text-transform: none;overflow-x: visible;overflow-y: visible; } .gp-component-id-IwDjVaCI9N[data-gp-component]:focus,.gp-component-id-IwDjVaCI9N[data-gp-component].gp-focus { outline-color: -webkit-focus-ring-color;outline-style: auto;outline-width: 5px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-IwDjVaCI9N[data-gp-component] { font-size: 22px !important;font-weight: 400 !important;color: rgb(255, 255, 255);line-height: 1.15;font-family: inherit !important;border-top-left-radius: 33px;border-top-right-radius: 33px;border-bottom-left-radius: 33px;border-bottom-right-radius: 33px;background-color: rgb(16, 185, 129);background-image: initial;background-size: initial;background-repeat: initial;background-attachment: initial;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 36px;padding-right: 36px;padding-top: 24px;padding-bottom: 24px;width: 100%;display: inline-block;cursor: pointer;background-position-x: initial;background-position-y: initial;background-origin: initial;background-clip: initial;appearance: button;text-transform: none;overflow-x: visible;overflow-y: visible; } .gp-component-id-IwDjVaCI9N[data-gp-component]:focus,.gp-component-id-IwDjVaCI9N[data-gp-component].gp-focus { outline-color: -webkit-focus-ring-color;outline-style: auto;outline-width: 5px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-IwDjVaCI9N[data-gp-component] { font-size: 22px !important;font-weight: 400 !important;color: rgb(255, 255, 255);line-height: 1.15;font-family: inherit !important;border-top-left-radius: 33px;border-top-right-radius: 33px;border-bottom-left-radius: 33px;border-bottom-right-radius: 33px;background-color: rgb(16, 185, 129);background-image: initial;background-size: initial;background-repeat: initial;background-attachment: initial;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 36px;padding-right: 36px;padding-top: 24px;padding-bottom: 24px;width: 100%;display: inline-block;cursor: pointer;background-position-x: initial;background-position-y: initial;background-origin: initial;background-clip: initial;appearance: button;text-transform: none;overflow-x: visible;overflow-y: visible; } .gp-component-id-IwDjVaCI9N[data-gp-component]:focus,.gp-component-id-IwDjVaCI9N[data-gp-component].gp-focus { outline-color: -webkit-focus-ring-color;outline-style: auto;outline-width: 5px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-IwDjVaCI9N[data-gp-component] { font-size: 22px !important;font-weight: 400 !important;color: rgb(255, 255, 255);line-height: 1.15;font-family: inherit !important;border-top-left-radius: 33px;border-top-right-radius: 33px;border-bottom-left-radius: 33px;border-bottom-right-radius: 33px;background-color: rgb(16, 185, 129);background-image: initial;background-size: initial;background-repeat: initial;background-attachment: initial;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 36px;padding-right: 36px;padding-top: 24px;padding-bottom: 24px;width: 100%;display: inline-block;cursor: pointer;background-position-x: initial;background-position-y: initial;background-origin: initial;background-clip: initial;appearance: button;text-transform: none;overflow-x: visible;overflow-y: visible; } .gp-component-id-IwDjVaCI9N[data-gp-component]:focus,.gp-component-id-IwDjVaCI9N[data-gp-component].gp-focus { outline-color: -webkit-focus-ring-color;outline-style: auto;outline-width: 5px; } } @media (min-width: 1200px) { .gp-component-id-IwDjVaCI9N[data-gp-component] { font-size: 22px !important;font-weight: 400 !important;color: rgb(255, 255, 255);line-height: 1.15;font-family: inherit !important;border-top-left-radius: 33px;border-top-right-radius: 33px;border-bottom-left-radius: 33px;border-bottom-right-radius: 33px;background-color: rgb(16, 185, 129);background-image: initial;background-size: initial;background-repeat: initial;background-attachment: initial;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 36px;padding-right: 36px;padding-top: 24px;padding-bottom: 24px;width: 100%;display: inline-block;cursor: pointer;background-position-x: initial;background-position-y: initial;background-origin: initial;background-clip: initial;appearance: button;text-transform: none;overflow-x: visible;overflow-y: visible; } .gp-component-id-IwDjVaCI9N[data-gp-component]:focus,.gp-component-id-IwDjVaCI9N[data-gp-component].gp-focus { outline-color: -webkit-focus-ring-color;outline-style: auto;outline-width: 5px; } }

 .gp-component-id-08GsIK4fR { padding-right: 8px;width: 100%;padding-left: 8px; } @media (max-width: 639px) { .gp-component-id-08GsIK4fR { padding-right: 8px;width: 100%;padding-left: 8px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-08GsIK4fR { padding-right: 8px;width: 100%;padding-left: 8px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-08GsIK4fR { padding-right: 8px;width: 100%;padding-left: 8px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-08GsIK4fR { padding-right: 8px;width: 100%;padding-left: 8px; } } @media (min-width: 1200px) { .gp-component-id-08GsIK4fR { padding-right: 8px;width: 100%;padding-left: 8px; } }

 .gp-component-id-mUHE0QtZ6 { margin-right: -8px;margin-left: -8px; } @media (max-width: 639px) { .gp-component-id-mUHE0QtZ6 { margin-right: -8px;margin-left: -8px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-mUHE0QtZ6 { margin-right: -8px;margin-left: -8px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-mUHE0QtZ6 { margin-right: -8px;margin-left: -8px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-mUHE0QtZ6 { margin-right: -8px;margin-left: -8px; } } @media (min-width: 1200px) { .gp-component-id-mUHE0QtZ6 { margin-right: -8px;margin-left: -8px; } }

 .gp-component-id-q9M60IIp3G { padding-right: 8px;width: 100%;padding-left: 8px; } @media (max-width: 639px) { .gp-component-id-q9M60IIp3G { padding-right: 8px;width: 100%;padding-left: 8px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-q9M60IIp3G { padding-right: 8px;width: 100%;padding-left: 8px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-q9M60IIp3G { padding-right: 8px;width: 100%;padding-left: 8px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-q9M60IIp3G { padding-right: 8px;width: 100%;padding-left: 8px; } } @media (min-width: 1200px) { .gp-component-id-q9M60IIp3G { padding-right: 8px;width: 100%;padding-left: 8px; } }

 @media (max-width: 639px) { .gp-component-id-N2oOKf5KGF[data-gp-component] { background-color: rgb(255, 255, 255);margin-left: auto;margin-right: auto;width: 100%;flex-direction: column;align-items: center;display: flex;z-index: 15;position: relative; } .gp-component-id-N2oOKf5KGF[data-gp-component]:active,.gp-component-id-N2oOKf5KGF[data-gp-component].gp-active { background-color: rgba(255, 255, 255, 1); } .gp-component-id-N2oOKf5KGF[data-gp-component]:focus,.gp-component-id-N2oOKf5KGF[data-gp-component].gp-focus { background-color: rgba(255, 255, 255, 1); } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-N2oOKf5KGF[data-gp-component] { background-color: rgb(255, 255, 255);margin-left: auto;margin-right: auto;width: 100%;max-width: 640px;flex-direction: column;align-items: center;display: flex;z-index: 15;position: relative; } .gp-component-id-N2oOKf5KGF[data-gp-component]:active,.gp-component-id-N2oOKf5KGF[data-gp-component].gp-active { background-color: rgba(255, 255, 255, 1); } .gp-component-id-N2oOKf5KGF[data-gp-component]:focus,.gp-component-id-N2oOKf5KGF[data-gp-component].gp-focus { background-color: rgba(255, 255, 255, 1); } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-N2oOKf5KGF[data-gp-component] { background-color: rgb(255, 255, 255);margin-left: auto;margin-right: auto;width: 100%;max-width: 768px;flex-direction: column;align-items: center;display: flex;z-index: 15;position: relative; } .gp-component-id-N2oOKf5KGF[data-gp-component]:active,.gp-component-id-N2oOKf5KGF[data-gp-component].gp-active { background-color: rgba(255, 255, 255, 1); } .gp-component-id-N2oOKf5KGF[data-gp-component]:focus,.gp-component-id-N2oOKf5KGF[data-gp-component].gp-focus { background-color: rgba(255, 255, 255, 1); } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-N2oOKf5KGF[data-gp-component] { background-color: rgb(255, 255, 255);margin-left: auto;margin-right: auto;width: 100%;max-width: 992px;flex-direction: column;align-items: center;display: flex;z-index: 15;position: relative; } .gp-component-id-N2oOKf5KGF[data-gp-component]:active,.gp-component-id-N2oOKf5KGF[data-gp-component].gp-active { background-color: rgba(255, 255, 255, 1); } .gp-component-id-N2oOKf5KGF[data-gp-component]:focus,.gp-component-id-N2oOKf5KGF[data-gp-component].gp-focus { background-color: rgba(255, 255, 255, 1); } } @media (min-width: 1200px) { .gp-component-id-N2oOKf5KGF[data-gp-component] { background-color: rgb(255, 255, 255);margin-left: auto;margin-right: auto;width: 100%;max-width: 1200px;flex-direction: column;align-items: center;display: flex;z-index: 15;position: relative; } .gp-component-id-N2oOKf5KGF[data-gp-component]:active,.gp-component-id-N2oOKf5KGF[data-gp-component].gp-active { background-color: rgba(255, 255, 255, 1); } .gp-component-id-N2oOKf5KGF[data-gp-component]:focus,.gp-component-id-N2oOKf5KGF[data-gp-component].gp-focus { background-color: rgba(255, 255, 255, 1); } }

 .gp-component-id-gZ54q7EDl { margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;list-style-type: inherit;list-style-position: inside;padding-left: 16px;padding-bottom: 16px;padding-right: 0px;padding-top: 16px; } @media (max-width: 639px) { .gp-component-id-gZ54q7EDl { margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;list-style-type: inherit;list-style-position: inside;padding-left: 16px;padding-bottom: 16px;padding-right: 0px;padding-top: 16px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-gZ54q7EDl { margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;list-style-type: inherit;list-style-position: inside;padding-left: 16px;padding-bottom: 16px;padding-right: 0px;padding-top: 16px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-gZ54q7EDl { margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;list-style-type: inherit;list-style-position: inside;padding-left: 16px;padding-bottom: 16px;padding-right: 0px;padding-top: 16px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-gZ54q7EDl { margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;list-style-type: inherit;list-style-position: inside;padding-left: 16px;padding-bottom: 16px;padding-right: 0px;padding-top: 16px; } } @media (min-width: 1200px) { .gp-component-id-gZ54q7EDl { margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;list-style-type: inherit;list-style-position: inside;padding-left: 16px;padding-bottom: 16px;padding-right: 0px;padding-top: 16px; } }

 @media (max-width: 639px) { [data-gp-text] .gp-component-id-hlNPDinezX { font-size: 22px !important;color: rgba(57, 75, 86, 0.8);text-align: left;line-height: 2;font-family: "Plus Jakarta Sans" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;overflow-wrap: break-word;cursor: text;box-sizing: border-box; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-hlNPDinezX { font-size: 22px !important;color: rgba(57, 75, 86, 0.8);text-align: left;line-height: 2;font-family: "Plus Jakarta Sans" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;overflow-wrap: break-word;cursor: text;box-sizing: border-box; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-hlNPDinezX { font-size: 22px !important;color: rgba(57, 75, 86, 0.8);text-align: left;line-height: 2;font-family: "Plus Jakarta Sans" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;overflow-wrap: break-word;cursor: text;box-sizing: border-box; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-hlNPDinezX { font-size: 22px !important;color: rgba(57, 75, 86, 0.8);text-align: left;line-height: 2;font-family: "Plus Jakarta Sans" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;overflow-wrap: break-word;cursor: text;box-sizing: border-box; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-hlNPDinezX { font-size: 22px !important;color: rgba(57, 75, 86, 0.8);text-align: left;line-height: 2;font-family: "Plus Jakarta Sans" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;overflow-wrap: break-word;cursor: text;box-sizing: border-box; } }

 .gp-component-id-yik3cn833 { border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center; } @media (max-width: 639px) { .gp-component-id-yik3cn833 { border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-yik3cn833 { border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-yik3cn833 { border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-yik3cn833 { border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center; } } @media (min-width: 1200px) { .gp-component-id-yik3cn833 { border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center; } }

 .gp-component-id-wwSGst7D7 { margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;list-style-type: inherit;list-style-position: inside;padding-left: 16px;padding-bottom: 16px;padding-right: 0px;padding-top: 16px; } @media (max-width: 639px) { .gp-component-id-wwSGst7D7 { margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;list-style-type: inherit;list-style-position: inside;padding-left: 16px;padding-bottom: 16px;padding-right: 0px;padding-top: 16px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-wwSGst7D7 { margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;list-style-type: inherit;list-style-position: inside;padding-left: 16px;padding-bottom: 16px;padding-right: 0px;padding-top: 16px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-wwSGst7D7 { margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;list-style-type: inherit;list-style-position: inside;padding-left: 16px;padding-bottom: 16px;padding-right: 0px;padding-top: 16px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-wwSGst7D7 { margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;list-style-type: inherit;list-style-position: inside;padding-left: 16px;padding-bottom: 16px;padding-right: 0px;padding-top: 16px; } } @media (min-width: 1200px) { .gp-component-id-wwSGst7D7 { margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;list-style-type: inherit;list-style-position: inside;padding-left: 16px;padding-bottom: 16px;padding-right: 0px;padding-top: 16px; } }

 @media (max-width: 639px) { .gp-component-id-7hpMu_oXWR { font-size: 22px !important;color: rgba(57, 75, 86, 0.8);text-align: left;line-height: 2;font-family: "Plus Jakarta Sans" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;box-sizing: border-box;cursor: text;overflow-wrap: break-word; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-7hpMu_oXWR { font-size: 22px !important;color: rgba(57, 75, 86, 0.8);text-align: left;line-height: 2;font-family: "Plus Jakarta Sans" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;box-sizing: border-box;cursor: text;overflow-wrap: break-word; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-7hpMu_oXWR { font-size: 22px !important;color: rgba(57, 75, 86, 0.8);text-align: left;line-height: 2;font-family: "Plus Jakarta Sans" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;box-sizing: border-box;cursor: text;overflow-wrap: break-word; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-7hpMu_oXWR { font-size: 22px !important;color: rgba(57, 75, 86, 0.8);text-align: left;line-height: 2;font-family: "Plus Jakarta Sans" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;box-sizing: border-box;cursor: text;overflow-wrap: break-word; } } @media (min-width: 1200px) { .gp-component-id-7hpMu_oXWR { font-size: 22px !important;color: rgba(57, 75, 86, 0.8);text-align: left;line-height: 2;font-family: "Plus Jakarta Sans" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;box-sizing: border-box;cursor: text;overflow-wrap: break-word; } }

 @media (max-width: 639px) { [data-gp-text] .gp-component-id-0NSK6C8Z3k { font-size: 22px !important;color: rgba(57, 75, 86, 0.8);text-align: left;line-height: 2;font-family: "Plus Jakarta Sans" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;overflow-wrap: break-word;cursor: text;box-sizing: border-box; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-0NSK6C8Z3k { font-size: 22px !important;color: rgba(57, 75, 86, 0.8);text-align: left;line-height: 2;font-family: "Plus Jakarta Sans" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;overflow-wrap: break-word;cursor: text;box-sizing: border-box; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-0NSK6C8Z3k { font-size: 22px !important;color: rgba(57, 75, 86, 0.8);text-align: left;line-height: 2;font-family: "Plus Jakarta Sans" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;overflow-wrap: break-word;cursor: text;box-sizing: border-box; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-0NSK6C8Z3k { font-size: 22px !important;color: rgba(57, 75, 86, 0.8);text-align: left;line-height: 2;font-family: "Plus Jakarta Sans" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;overflow-wrap: break-word;cursor: text;box-sizing: border-box; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-0NSK6C8Z3k { font-size: 22px !important;color: rgba(57, 75, 86, 0.8);text-align: left;line-height: 2;font-family: "Plus Jakarta Sans" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;overflow-wrap: break-word;cursor: text;box-sizing: border-box; } }

 @media (max-width: 639px) { [data-gp-text] .gp-component-id-IpeTOCH7P7 { font-size: 22px !important;color: rgba(57, 75, 86, 0.8);text-align: left;line-height: 2;font-family: "Plus Jakarta Sans" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;overflow-wrap: break-word;cursor: text;box-sizing: border-box; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-IpeTOCH7P7 { font-size: 22px !important;color: rgba(57, 75, 86, 0.8);text-align: left;line-height: 2;font-family: "Plus Jakarta Sans" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;overflow-wrap: break-word;cursor: text;box-sizing: border-box; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-IpeTOCH7P7 { font-size: 22px !important;color: rgba(57, 75, 86, 0.8);text-align: left;line-height: 2;font-family: "Plus Jakarta Sans" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;overflow-wrap: break-word;cursor: text;box-sizing: border-box; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-IpeTOCH7P7 { font-size: 22px !important;color: rgba(57, 75, 86, 0.8);text-align: left;line-height: 2;font-family: "Plus Jakarta Sans" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;overflow-wrap: break-word;cursor: text;box-sizing: border-box; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-IpeTOCH7P7 { font-size: 22px !important;color: rgba(57, 75, 86, 0.8);text-align: left;line-height: 2;font-family: "Plus Jakarta Sans" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;overflow-wrap: break-word;cursor: text;box-sizing: border-box; } }

 .gp-component-id-edETzVtki { border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center; } @media (max-width: 639px) { .gp-component-id-edETzVtki { border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-edETzVtki { border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-edETzVtki { border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-edETzVtki { border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center; } } @media (min-width: 1200px) { .gp-component-id-edETzVtki { border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center; } }

 @media (max-width: 639px) { .gp-component-id-J1jLpzRvxb[data-gp-component] { min-height: 50px;position: relative;z-index: auto; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-J1jLpzRvxb[data-gp-component] { min-height: 50px;position: relative;z-index: auto; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-J1jLpzRvxb[data-gp-component] { min-height: 50px;position: relative;z-index: auto; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-J1jLpzRvxb[data-gp-component] { min-height: 50px;position: relative;z-index: auto; } } @media (min-width: 1200px) { .gp-component-id-J1jLpzRvxb[data-gp-component] { min-height: 50px;position: relative;z-index: auto; } }

 @media (max-width: 639px) { .gp-component-id-J1jLpzRvxb.gp-component > [data-section-overlay] { background-color: rgba(10, 27, 61, 1); } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-J1jLpzRvxb.gp-component > [data-section-overlay] { background-color: rgba(10, 27, 61, 1); } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-J1jLpzRvxb.gp-component > [data-section-overlay] { background-color: rgba(10, 27, 61, 1); } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-J1jLpzRvxb.gp-component > [data-section-overlay] { background-color: rgba(10, 27, 61, 1); } } @media (min-width: 1200px) { .gp-component-id-J1jLpzRvxb.gp-component > [data-section-overlay] { background-color: rgba(10, 27, 61, 1); } }

 @media (max-width: 639px) { .gp-component-id-Spa_n7Zgd5[data-gp-component] { z-index: auto;position: relative;min-height: 50px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-Spa_n7Zgd5[data-gp-component] { z-index: auto;position: relative;min-height: 50px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-Spa_n7Zgd5[data-gp-component] { z-index: auto;position: relative;min-height: 50px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-Spa_n7Zgd5[data-gp-component] { z-index: auto;position: relative;min-height: 50px; } } @media (min-width: 1200px) { .gp-component-id-Spa_n7Zgd5[data-gp-component] { z-index: auto;position: relative;min-height: 50px; } }

 @media (max-width: 639px) { .gp-component-id-Spa_n7Zgd5.gp-component > [data-section-overlay] { background-color: rgba(6, 15, 36, 1); } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-Spa_n7Zgd5.gp-component > [data-section-overlay] { background-color: rgba(6, 15, 36, 1); } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-Spa_n7Zgd5.gp-component > [data-section-overlay] { background-color: rgba(6, 15, 36, 1); } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-Spa_n7Zgd5.gp-component > [data-section-overlay] { background-color: rgba(6, 15, 36, 1); } } @media (min-width: 1200px) { .gp-component-id-Spa_n7Zgd5.gp-component > [data-section-overlay] { background-color: rgba(6, 15, 36, 1); } }

 .gp-component-id-dGLoqbHC4 { width: 100%;overflow-wrap: break-word; } @media (max-width: 639px) { .gp-component-id-dGLoqbHC4 { width: 100%;overflow-wrap: break-word; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-dGLoqbHC4 { width: 100%;overflow-wrap: break-word; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-dGLoqbHC4 { width: 100%;overflow-wrap: break-word; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-dGLoqbHC4 { width: 100%;overflow-wrap: break-word; } } @media (min-width: 1200px) { .gp-component-id-dGLoqbHC4 { width: 100%;overflow-wrap: break-word; } }

 .gp-component-id-OQAjFQg5z { width: 100%;overflow-wrap: break-word; } @media (max-width: 639px) { .gp-component-id-OQAjFQg5z { width: 100%;overflow-wrap: break-word; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-OQAjFQg5z { width: 100%;overflow-wrap: break-word; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-OQAjFQg5z { width: 100%;overflow-wrap: break-word; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-OQAjFQg5z { width: 100%;overflow-wrap: break-word; } } @media (min-width: 1200px) { .gp-component-id-OQAjFQg5z { width: 100%;overflow-wrap: break-word; } }

 @media (max-width: 639px) { .gp-component-id-OOSbtwVGra[data-gp-component] { background-color: rgba(16, 185, 129, 1);margin-left: auto;margin-right: auto;width: 100%;height: 171px;position: relative;z-index: 15; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-OOSbtwVGra[data-gp-component] { background-color: rgba(16, 185, 129, 1);margin-left: auto;margin-right: auto;width: 100%;height: 171px;max-width: 640px;position: relative;z-index: 15; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-OOSbtwVGra[data-gp-component] { background-color: rgba(16, 185, 129, 1);margin-left: auto;margin-right: auto;width: 100%;height: 171px;max-width: 768px;position: relative;z-index: 15; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-OOSbtwVGra[data-gp-component] { background-color: rgba(16, 185, 129, 1);margin-left: auto;margin-right: auto;width: 100%;height: 171px;max-width: 992px;position: relative;z-index: 15; } } @media (min-width: 1200px) { .gp-component-id-OOSbtwVGra[data-gp-component] { background-color: rgba(16, 185, 129, 1);margin-left: auto;margin-right: auto;width: 100%;height: 171px;max-width: 1200px;position: relative;z-index: 15; } }

 @media (max-width: 639px) { .gp-component-id-7y7HI6d80[data-gp-component] { padding-top: 0px;padding-bottom: 0px;min-height: 50px;position: relative;z-index: auto !important; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-7y7HI6d80[data-gp-component] { padding-top: 0px;padding-bottom: 0px;min-height: 50px;position: relative;z-index: auto !important; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-7y7HI6d80[data-gp-component] { padding-top: 0px;padding-bottom: 0px;min-height: 50px;position: relative;z-index: auto !important; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-7y7HI6d80[data-gp-component] { padding-top: 0px;padding-bottom: 0px;min-height: 50px;position: relative;z-index: auto !important; } } @media (min-width: 1200px) { .gp-component-id-7y7HI6d80[data-gp-component] { padding-top: 0px;padding-bottom: 0px;min-height: 50px;position: relative;z-index: auto !important; } }

 .gp-component-id-7y7HI6d80.gp-component > [data-section-overlay] { position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;background-color: rgba(155, 93, 229, 0.1); } @media (max-width: 639px) { .gp-component-id-7y7HI6d80.gp-component > [data-section-overlay] { background-color: rgba(16, 185, 129, 1);position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-7y7HI6d80.gp-component > [data-section-overlay] { background-color: rgba(16, 185, 129, 1);position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-7y7HI6d80.gp-component > [data-section-overlay] { background-color: rgba(16, 185, 129, 1);position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-7y7HI6d80.gp-component > [data-section-overlay] { background-color: rgba(16, 185, 129, 1);position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px; } } @media (min-width: 1200px) { .gp-component-id-7y7HI6d80.gp-component > [data-section-overlay] { background-color: rgba(16, 185, 129, 1);position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px; } }

 @media (max-width: 639px) { .gp-component-id-DTye_4BfB4[data-gp-component] { background-image: url("https://images.groovetech.io/Oz6b8TlLfNg418pVBYcZN7d5xBq005Tz5_GC7FFs76M/rs:fit:0:0:0/g:no:0:0/c:0:0/aHR0cHM6Ly9hc3NldHMuZ3Jvb3ZlYXBwcy5jb20vaW1hZ2VzLzVlOGNiOWQyNzI2OTE2MGNhMTk0NGZkMS8xNzg1NTA5MDM5XzE3ODU1MDY4NjY1OTgwMTlmYjg3YTQ1MWU3YzJiYWQ1NmY2NjA3MGQxZDgyYy5wbmc.webp");background-size: cover;background-attachment: fixed;padding-top: 80px;padding-bottom: 80px;min-height: 50px;position: relative;z-index: auto !important;background-position-y: 50%;background-position-x: 50%; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-DTye_4BfB4[data-gp-component] { background-image: url("https://images.groovetech.io/Oz6b8TlLfNg418pVBYcZN7d5xBq005Tz5_GC7FFs76M/rs:fit:0:0:0/g:no:0:0/c:0:0/aHR0cHM6Ly9hc3NldHMuZ3Jvb3ZlYXBwcy5jb20vaW1hZ2VzLzVlOGNiOWQyNzI2OTE2MGNhMTk0NGZkMS8xNzg1NTA5MDM5XzE3ODU1MDY4NjY1OTgwMTlmYjg3YTQ1MWU3YzJiYWQ1NmY2NjA3MGQxZDgyYy5wbmc.webp");background-size: cover;background-attachment: fixed;padding-top: 80px;padding-bottom: 80px;min-height: 50px;position: relative;z-index: auto !important;background-position-y: 50%;background-position-x: 50%; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-DTye_4BfB4[data-gp-component] { background-image: url("https://images.groovetech.io/Oz6b8TlLfNg418pVBYcZN7d5xBq005Tz5_GC7FFs76M/rs:fit:0:0:0/g:no:0:0/c:0:0/aHR0cHM6Ly9hc3NldHMuZ3Jvb3ZlYXBwcy5jb20vaW1hZ2VzLzVlOGNiOWQyNzI2OTE2MGNhMTk0NGZkMS8xNzg1NTA5MDM5XzE3ODU1MDY4NjY1OTgwMTlmYjg3YTQ1MWU3YzJiYWQ1NmY2NjA3MGQxZDgyYy5wbmc.webp");background-size: cover;background-attachment: fixed;padding-top: 80px;padding-bottom: 80px;min-height: 50px;position: relative;z-index: auto !important;background-position-y: 50%;background-position-x: 50%; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-DTye_4BfB4[data-gp-component] { background-image: url("https://images.groovetech.io/Oz6b8TlLfNg418pVBYcZN7d5xBq005Tz5_GC7FFs76M/rs:fit:0:0:0/g:no:0:0/c:0:0/aHR0cHM6Ly9hc3NldHMuZ3Jvb3ZlYXBwcy5jb20vaW1hZ2VzLzVlOGNiOWQyNzI2OTE2MGNhMTk0NGZkMS8xNzg1NTA5MDM5XzE3ODU1MDY4NjY1OTgwMTlmYjg3YTQ1MWU3YzJiYWQ1NmY2NjA3MGQxZDgyYy5wbmc.webp");background-size: cover;background-attachment: fixed;padding-top: 80px;padding-bottom: 80px;min-height: 50px;position: relative;z-index: auto !important;background-position-y: 50%;background-position-x: 50%; } } @media (min-width: 1200px) { .gp-component-id-DTye_4BfB4[data-gp-component] { background-image: url("https://images.groovetech.io/Oz6b8TlLfNg418pVBYcZN7d5xBq005Tz5_GC7FFs76M/rs:fit:0:0:0/g:no:0:0/c:0:0/aHR0cHM6Ly9hc3NldHMuZ3Jvb3ZlYXBwcy5jb20vaW1hZ2VzLzVlOGNiOWQyNzI2OTE2MGNhMTk0NGZkMS8xNzg1NTA5MDM5XzE3ODU1MDY4NjY1OTgwMTlmYjg3YTQ1MWU3YzJiYWQ1NmY2NjA3MGQxZDgyYy5wbmc.webp");background-size: cover;background-attachment: fixed;padding-top: 80px;padding-bottom: 80px;min-height: 50px;position: relative;z-index: auto !important;background-position-y: 50%;background-position-x: 50%; } }

 .gp-component-id-zByDu8DxP6 { margin-left: auto;margin-right: auto;width: 100%;flex-direction: column;align-items: center;display: flex;z-index: 15;position: relative; } @media (max-width: 639px) { .gp-component-id-zByDu8DxP6 { margin-left: auto;margin-right: auto;width: 100%;flex-direction: column;align-items: center;display: flex;z-index: 15;position: relative; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-zByDu8DxP6 { margin-left: auto;margin-right: auto;width: 100%;flex-direction: column;align-items: center;display: flex;z-index: 15;position: relative;max-width: 640px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-zByDu8DxP6 { margin-left: auto;margin-right: auto;width: 100%;flex-direction: column;align-items: center;display: flex;z-index: 15;position: relative;max-width: 768px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-zByDu8DxP6 { margin-left: auto;margin-right: auto;width: 100%;flex-direction: column;align-items: center;display: flex;z-index: 15;position: relative;max-width: 992px; } } @media (min-width: 1200px) { .gp-component-id-zByDu8DxP6 { margin-left: auto;margin-right: auto;width: 100%;flex-direction: column;align-items: center;display: flex;z-index: 15;position: relative;max-width: 992px; } }

 .gp-component-id-b41WYeGkbt { width: 100%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto; } @media (max-width: 639px) { .gp-component-id-b41WYeGkbt { width: 100%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-b41WYeGkbt { width: 100%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-b41WYeGkbt { width: 33.3333%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-b41WYeGkbt { width: 33.3333%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto; } } @media (min-width: 1200px) { .gp-component-id-b41WYeGkbt { width: 33.3333%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto; } }

 .gp-component-id-lQwT1Xrd6F { width: 100%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto; } @media (max-width: 639px) { .gp-component-id-lQwT1Xrd6F { width: 100%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-lQwT1Xrd6F { width: 100%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-lQwT1Xrd6F { width: 33.3333%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-lQwT1Xrd6F { width: 33.3333%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto; } } @media (min-width: 1200px) { .gp-component-id-lQwT1Xrd6F { width: 33.3333%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto; } }

 .gp-component-id-8uNrUz01EW { width: 100%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto; } @media (max-width: 639px) { .gp-component-id-8uNrUz01EW { width: 100%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-8uNrUz01EW { width: 100%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-8uNrUz01EW { width: 33.3333%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-8uNrUz01EW { width: 33.3333%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto; } } @media (min-width: 1200px) { .gp-component-id-8uNrUz01EW { width: 33.3333%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto; } }

 .gp-component-id-GhEn4XOsz { margin-left: -8px;margin-right: -8px;flex-wrap: wrap; } @media (max-width: 639px) { .gp-component-id-GhEn4XOsz { margin-left: -8px;margin-right: -8px;flex-wrap: wrap; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-GhEn4XOsz { margin-left: -8px;margin-right: -8px;flex-wrap: wrap; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-GhEn4XOsz { margin-left: -8px;margin-right: -8px;flex-wrap: wrap;display: flex; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-GhEn4XOsz { margin-left: -8px;margin-right: -8px;flex-wrap: wrap;display: flex; } } @media (min-width: 1200px) { .gp-component-id-GhEn4XOsz { margin-left: -8px;margin-right: -8px;flex-wrap: wrap;display: flex; } }

 .gp-component-id-tTaHSac0v { width: 100%;padding-left: 8px;padding-right: 8px; } @media (max-width: 639px) { .gp-component-id-tTaHSac0v { width: 100%;padding-left: 8px;padding-right: 8px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-tTaHSac0v { width: 100%;padding-left: 8px;padding-right: 8px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-tTaHSac0v { width: 100%;padding-left: 8px;padding-right: 8px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-tTaHSac0v { width: 100%;padding-left: 8px;padding-right: 8px; } } @media (min-width: 1200px) { .gp-component-id-tTaHSac0v { width: 100%;padding-left: 8px;padding-right: 8px; } }

 .gp-component-id-bHIXptWdM { flex-direction: column;display: flex; } @media (max-width: 639px) { .gp-component-id-bHIXptWdM { flex-direction: column;display: flex; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-bHIXptWdM { flex-direction: column;display: flex; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-bHIXptWdM { flex-direction: column;display: flex; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-bHIXptWdM { flex-direction: column;display: flex; } } @media (min-width: 1200px) { .gp-component-id-bHIXptWdM { flex-direction: column;display: flex; } }

 .gp-component-id-fU8KvGg7m { flex-direction: column;display: flex; } @media (max-width: 639px) { .gp-component-id-fU8KvGg7m { flex-direction: column;display: flex; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-fU8KvGg7m { flex-direction: column;display: flex; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-fU8KvGg7m { flex-direction: column;display: flex; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-fU8KvGg7m { flex-direction: column;display: flex; } } @media (min-width: 1200px) { .gp-component-id-fU8KvGg7m { flex-direction: column;display: flex; } }

 .gp-component-id-Ujw3g_SkiP { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word; } @media (max-width: 639px) { .gp-component-id-Ujw3g_SkiP { margin-left: 0px;margin-bottom: 20px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-family: "Plus Jakarta Sans" !important;font-size: 22px !important;box-sizing: border-box;cursor: text;line-height: 2;text-align: left;color: rgba(57, 75, 86, 0.8); } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-Ujw3g_SkiP { margin-left: 0px;margin-bottom: 20px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-family: "Plus Jakarta Sans" !important;font-size: 22px !important;box-sizing: border-box;cursor: text;line-height: 2;text-align: left;color: rgba(57, 75, 86, 0.8); } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-Ujw3g_SkiP { margin-left: 0px;margin-bottom: 20px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-family: "Plus Jakarta Sans" !important;font-size: 22px !important;box-sizing: border-box;cursor: text;line-height: 2;text-align: left;color: rgba(57, 75, 86, 0.8); } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-Ujw3g_SkiP { margin-left: 0px;margin-bottom: 20px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-family: "Plus Jakarta Sans" !important;font-size: 22px !important;box-sizing: border-box;cursor: text;line-height: 2;text-align: left;color: rgba(57, 75, 86, 0.8); } } @media (min-width: 1200px) { .gp-component-id-Ujw3g_SkiP { margin-left: 0px;margin-bottom: 20px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-family: "Plus Jakarta Sans" !important;font-size: 22px !important;box-sizing: border-box;cursor: text;line-height: 2;text-align: left;color: rgba(57, 75, 86, 0.8); } }

 .gp-component-id-btIn1R88z { flex-direction: column;display: flex; } @media (max-width: 639px) { .gp-component-id-btIn1R88z { flex-direction: column;display: flex; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-btIn1R88z { flex-direction: column;display: flex; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-btIn1R88z { flex-direction: column;display: flex; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-btIn1R88z { flex-direction: column;display: flex; } } @media (min-width: 1200px) { .gp-component-id-btIn1R88z { flex-direction: column;display: flex; } }

 .gp-component-id-OxuTdabp0 { flex-direction: column;display: flex; } @media (max-width: 639px) { .gp-component-id-OxuTdabp0 { flex-direction: column;display: flex; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-OxuTdabp0 { flex-direction: column;display: flex; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-OxuTdabp0 { flex-direction: column;display: flex; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-OxuTdabp0 { flex-direction: column;display: flex; } } @media (min-width: 1200px) { .gp-component-id-OxuTdabp0 { flex-direction: column;display: flex; } }

 .gp-component-id-n5ffVjBM9 { flex-direction: column;display: flex; } @media (max-width: 639px) { .gp-component-id-n5ffVjBM9 { flex-direction: column;display: flex; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-n5ffVjBM9 { flex-direction: column;display: flex; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-n5ffVjBM9 { flex-direction: column;display: flex; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-n5ffVjBM9 { flex-direction: column;display: flex; } } @media (min-width: 1200px) { .gp-component-id-n5ffVjBM9 { flex-direction: column;display: flex; } }

 .gp-component-id-lZk0dCLY7 { flex-direction: column;display: flex; } @media (max-width: 639px) { .gp-component-id-lZk0dCLY7 { flex-direction: column;display: flex; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-lZk0dCLY7 { flex-direction: column;display: flex; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-lZk0dCLY7 { flex-direction: column;display: flex; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-lZk0dCLY7 { flex-direction: column;display: flex; } } @media (min-width: 1200px) { .gp-component-id-lZk0dCLY7 { flex-direction: column;display: flex; } }

 .gp-component-id-LBAhuTM5Jy { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word; } @media (max-width: 639px) { .gp-component-id-LBAhuTM5Jy { margin-left: 0px;margin-bottom: 20px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-family: "Plus Jakarta Sans" !important;font-size: 22px !important;box-sizing: border-box;cursor: text;line-height: 2;text-align: left;color: rgba(57, 75, 86, 0.8); } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-LBAhuTM5Jy { margin-left: 0px;margin-bottom: 20px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-family: "Plus Jakarta Sans" !important;font-size: 22px !important;box-sizing: border-box;cursor: text;line-height: 2;text-align: left;color: rgba(57, 75, 86, 0.8); } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-LBAhuTM5Jy { margin-left: 0px;margin-bottom: 20px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-family: "Plus Jakarta Sans" !important;font-size: 22px !important;box-sizing: border-box;cursor: text;line-height: 2;text-align: left;color: rgba(57, 75, 86, 0.8); } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-LBAhuTM5Jy { margin-left: 0px;margin-bottom: 20px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-family: "Plus Jakarta Sans" !important;font-size: 22px !important;box-sizing: border-box;cursor: text;line-height: 2;text-align: left;color: rgba(57, 75, 86, 0.8); } } @media (min-width: 1200px) { .gp-component-id-LBAhuTM5Jy { margin-left: 0px;margin-bottom: 20px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-family: "Plus Jakarta Sans" !important;font-size: 22px !important;box-sizing: border-box;cursor: text;line-height: 2;text-align: left;color: rgba(57, 75, 86, 0.8); } }

 .gp-component-id-MCm8H3WQ0 { flex-direction: column;display: flex; } @media (max-width: 639px) { .gp-component-id-MCm8H3WQ0 { flex-direction: column;display: flex; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-MCm8H3WQ0 { flex-direction: column;display: flex; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-MCm8H3WQ0 { flex-direction: column;display: flex; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-MCm8H3WQ0 { flex-direction: column;display: flex; } } @media (min-width: 1200px) { .gp-component-id-MCm8H3WQ0 { flex-direction: column;display: flex; } }

 .gp-component-id-ysS9wMhYO { flex-direction: column;display: flex; } @media (max-width: 639px) { .gp-component-id-ysS9wMhYO { flex-direction: column;display: flex; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-ysS9wMhYO { flex-direction: column;display: flex; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-ysS9wMhYO { flex-direction: column;display: flex; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-ysS9wMhYO { flex-direction: column;display: flex; } } @media (min-width: 1200px) { .gp-component-id-ysS9wMhYO { flex-direction: column;display: flex; } }

 .gp-component-id-h1Lb3RnUK { flex-direction: column;display: flex; } @media (max-width: 639px) { .gp-component-id-h1Lb3RnUK { flex-direction: column;display: flex; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-h1Lb3RnUK { flex-direction: column;display: flex; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-h1Lb3RnUK { flex-direction: column;display: flex; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-h1Lb3RnUK { flex-direction: column;display: flex; } } @media (min-width: 1200px) { .gp-component-id-h1Lb3RnUK { flex-direction: column;display: flex; } }

 .gp-component-id-Eh9fcD2r80 { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-weight: inherit;font-size: inherit; } @media (max-width: 639px) { .gp-component-id-Eh9fcD2r80 { margin-left: 0px;margin-bottom: 20px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-weight: inherit !important;font-size: 34px !important;font-family: Outfit !important;text-align: left; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-Eh9fcD2r80 { margin-left: 0px;margin-bottom: 20px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-weight: inherit !important;font-size: 34px !important;font-family: Outfit !important;text-align: left; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-Eh9fcD2r80 { margin-left: 0px;margin-bottom: 20px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-weight: inherit !important;font-size: 34px !important;font-family: Outfit !important;text-align: left; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-Eh9fcD2r80 { margin-left: 0px;margin-bottom: 20px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-weight: inherit !important;font-size: 34px !important;font-family: Outfit !important;text-align: left; } } @media (min-width: 1200px) { .gp-component-id-Eh9fcD2r80 { margin-left: 0px;margin-bottom: 20px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-weight: inherit !important;font-size: 34px !important;font-family: Outfit !important;text-align: left; } }

 .gp-component-id-VDHDLpE8f { flex-direction: column;display: flex; } @media (max-width: 639px) { .gp-component-id-VDHDLpE8f { flex-direction: column;display: flex; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-VDHDLpE8f { flex-direction: column;display: flex; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-VDHDLpE8f { flex-direction: column;display: flex; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-VDHDLpE8f { flex-direction: column;display: flex; } } @media (min-width: 1200px) { .gp-component-id-VDHDLpE8f { flex-direction: column;display: flex; } }

 .gp-component-id-gff0v9dJbV { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word; } @media (max-width: 639px) { .gp-component-id-gff0v9dJbV { margin-left: 0px;margin-bottom: 20px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-family: "Plus Jakarta Sans" !important;font-size: 22px !important;cursor: text;box-sizing: border-box;line-height: 2;text-align: left;color: rgba(57, 75, 86, 0.8); } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-gff0v9dJbV { margin-left: 0px;margin-bottom: 20px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-family: "Plus Jakarta Sans" !important;font-size: 22px !important;cursor: text;box-sizing: border-box;line-height: 2;text-align: left;color: rgba(57, 75, 86, 0.8); } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-gff0v9dJbV { margin-left: 0px;margin-bottom: 20px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-family: "Plus Jakarta Sans" !important;font-size: 22px !important;cursor: text;box-sizing: border-box;line-height: 2;text-align: left;color: rgba(57, 75, 86, 0.8); } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-gff0v9dJbV { margin-left: 0px;margin-bottom: 20px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-family: "Plus Jakarta Sans" !important;font-size: 22px !important;cursor: text;box-sizing: border-box;line-height: 2;text-align: left;color: rgba(57, 75, 86, 0.8); } } @media (min-width: 1200px) { .gp-component-id-gff0v9dJbV { margin-left: 0px;margin-bottom: 20px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-family: "Plus Jakarta Sans" !important;font-size: 22px !important;cursor: text;box-sizing: border-box;line-height: 2;text-align: left;color: rgba(57, 75, 86, 0.8); } }

 .gp-component-id-e0beQkVk5 { flex-direction: column;display: flex; } @media (max-width: 639px) { .gp-component-id-e0beQkVk5 { flex-direction: column;display: flex; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-e0beQkVk5 { flex-direction: column;display: flex; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-e0beQkVk5 { flex-direction: column;display: flex; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-e0beQkVk5 { flex-direction: column;display: flex; } } @media (min-width: 1200px) { .gp-component-id-e0beQkVk5 { flex-direction: column;display: flex; } }

 .gp-component-id-S549_VAae { flex-direction: column;display: flex; } @media (max-width: 639px) { .gp-component-id-S549_VAae { flex-direction: column;display: flex; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-S549_VAae { flex-direction: column;display: flex; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-S549_VAae { flex-direction: column;display: flex; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-S549_VAae { flex-direction: column;display: flex; } } @media (min-width: 1200px) { .gp-component-id-S549_VAae { flex-direction: column;display: flex; } }

 .gp-component-id-DCSk7e55Sg { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word; } @media (max-width: 639px) { .gp-component-id-DCSk7e55Sg { margin-left: 0px;margin-bottom: 30px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-family: "Plus Jakarta Sans" !important;font-size: 22px !important;box-sizing: border-box;cursor: text;line-height: 2;text-align: left;color: rgba(57, 75, 86, 0.8); } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-DCSk7e55Sg { margin-left: 0px;margin-bottom: 30px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-family: "Plus Jakarta Sans" !important;font-size: 22px !important;box-sizing: border-box;cursor: text;line-height: 2;text-align: left;color: rgba(57, 75, 86, 0.8); } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-DCSk7e55Sg { margin-left: 0px;margin-bottom: 30px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-family: "Plus Jakarta Sans" !important;font-size: 22px !important;box-sizing: border-box;cursor: text;line-height: 2;text-align: left;color: rgba(57, 75, 86, 0.8); } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-DCSk7e55Sg { margin-left: 0px;margin-bottom: 30px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-family: "Plus Jakarta Sans" !important;font-size: 22px !important;box-sizing: border-box;cursor: text;line-height: 2;text-align: left;color: rgba(57, 75, 86, 0.8); } } @media (min-width: 1200px) { .gp-component-id-DCSk7e55Sg { margin-left: 0px;margin-bottom: 30px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-family: "Plus Jakarta Sans" !important;font-size: 22px !important;box-sizing: border-box;cursor: text;line-height: 2;text-align: left;color: rgba(57, 75, 86, 0.8); } }

 .gp-component-id-Js0pjU417 { flex-direction: column;display: flex; } @media (max-width: 639px) { .gp-component-id-Js0pjU417 { flex-direction: column;display: flex; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-Js0pjU417 { flex-direction: column;display: flex; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-Js0pjU417 { flex-direction: column;display: flex; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-Js0pjU417 { flex-direction: column;display: flex; } } @media (min-width: 1200px) { .gp-component-id-Js0pjU417 { flex-direction: column;display: flex; } }

 .gp-component-id-QqfB59UDx { width: 100%; } @media (max-width: 639px) { .gp-component-id-QqfB59UDx { width: 100%; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-QqfB59UDx { width: 100%; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-QqfB59UDx { width: 100%; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-QqfB59UDx { width: 80%; } } @media (min-width: 1200px) { .gp-component-id-QqfB59UDx { width: 80%; } }

 @media (max-width: 639px) { .gp-component-id-RDbgPuw8i { display: flex;align-items: center;flex-direction: column;width: 75%; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-RDbgPuw8i { display: flex;align-items: center;flex-direction: column;width: 75%; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-RDbgPuw8i { display: flex;align-items: center;flex-direction: column;width: 75%; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-RDbgPuw8i { display: flex;align-items: center;flex-direction: column;width: 75%; } } @media (min-width: 1200px) { .gp-component-id-RDbgPuw8i { display: flex;align-items: center;flex-direction: column;width: 75%; } }

 .gp-component-id-T85Pu0Yv_ { min-height: 50px;position: relative;z-index: auto; } @media (max-width: 639px) { .gp-component-id-T85Pu0Yv_ { min-height: 50px;position: relative;z-index: auto !important;padding-bottom: 72px;padding-top: 72px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-T85Pu0Yv_ { min-height: 50px;position: relative;z-index: auto !important;padding-bottom: 72px;padding-top: 72px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-T85Pu0Yv_ { min-height: 50px;position: relative;z-index: auto !important;padding-bottom: 72px;padding-top: 72px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-T85Pu0Yv_ { min-height: 50px;position: relative;z-index: auto !important;padding-bottom: 72px;padding-top: 72px; } } @media (min-width: 1200px) { .gp-component-id-T85Pu0Yv_ { min-height: 50px;position: relative;z-index: auto !important;padding-bottom: 72px;padding-top: 34px; } }

 .gp-component-id-NHz9bzYaB { width: 100%; } @media (max-width: 639px) { .gp-component-id-NHz9bzYaB { width: 100%; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-NHz9bzYaB { width: 100%; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-NHz9bzYaB { width: 100%; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-NHz9bzYaB { width: 100%; } } @media (min-width: 1200px) { .gp-component-id-NHz9bzYaB { width: 100%; } }

 .gp-component-id-nplPUlyXB { font-weight: inherit;font-size: inherit;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;overflow-wrap: break-word; } @media (max-width: 639px) { .gp-component-id-nplPUlyXB { font-weight: inherit !important;font-size: 40px !important;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;overflow-wrap: break-word;font-family: Outfit !important;padding-bottom: 30px;text-align: center; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-nplPUlyXB { font-weight: inherit !important;font-size: 40px !important;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;overflow-wrap: break-word;font-family: Outfit !important;padding-bottom: 30px;text-align: center; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-nplPUlyXB { font-weight: inherit !important;font-size: 40px !important;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;overflow-wrap: break-word;font-family: Outfit !important;padding-bottom: 30px;text-align: center; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-nplPUlyXB { font-weight: inherit !important;font-size: 40px !important;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;overflow-wrap: break-word;font-family: Outfit !important;padding-bottom: 30px;text-align: center; } } @media (min-width: 1200px) { .gp-component-id-nplPUlyXB { font-weight: inherit !important;font-size: 40px !important;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;overflow-wrap: break-word;font-family: Outfit !important;padding-bottom: 30px;text-align: center; } }

 .gp-component-id-BVqsAM0KmS { flex-direction: column;display: flex; } @media (max-width: 639px) { .gp-component-id-BVqsAM0KmS { flex-direction: column;display: flex; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-BVqsAM0KmS { flex-direction: column;display: flex; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-BVqsAM0KmS { flex-direction: column;display: flex; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-BVqsAM0KmS { flex-direction: column;display: flex; } } @media (min-width: 1200px) { .gp-component-id-BVqsAM0KmS { flex-direction: column;display: flex; } }

 .gp-component-id-crYQtkvhce { z-index: 15;position: relative;margin-left: auto;margin-right: auto;width: 100%; } @media (max-width: 639px) { .gp-component-id-crYQtkvhce { z-index: 15;position: relative;margin-left: auto;margin-right: auto;width: 100%; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-crYQtkvhce { z-index: 15;position: relative;margin-left: auto;margin-right: auto;width: 100%;max-width: 640px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-crYQtkvhce { z-index: 15;position: relative;margin-left: auto;margin-right: auto;width: 100%;max-width: 768px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-crYQtkvhce { z-index: 15;position: relative;margin-left: auto;margin-right: auto;width: 100%;max-width: 992px; } } @media (min-width: 1200px) { .gp-component-id-crYQtkvhce { z-index: 15;position: relative;margin-left: auto;margin-right: auto;width: 100%;max-width: 1200px; } }

 .gp-component-id-mo71qA8gtO { z-index: 15;position: relative;margin-left: auto;margin-right: auto;width: 100%; } @media (max-width: 639px) { .gp-component-id-mo71qA8gtO { z-index: 15;position: relative;margin-left: auto;margin-right: auto;width: 100%; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-mo71qA8gtO { z-index: 15;position: relative;margin-left: auto;margin-right: auto;width: 100%;max-width: 640px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-mo71qA8gtO { z-index: 15;position: relative;margin-left: auto;margin-right: auto;width: 100%;max-width: 768px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-mo71qA8gtO { z-index: 15;position: relative;margin-left: auto;margin-right: auto;width: 100%;max-width: 992px; } } @media (min-width: 1200px) { .gp-component-id-mo71qA8gtO { z-index: 15;position: relative;margin-left: auto;margin-right: auto;width: 100%;max-width: 1200px; } }

