 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; } .gp-component-id-T85Pu0Yv_.gp-component > [data-section-overlay] { position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px; } @media (max-width: 639px) { .gp-component-id-T85Pu0Yv_.gp-component > [data-section-overlay] { position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-T85Pu0Yv_.gp-component > [data-section-overlay] { position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-T85Pu0Yv_.gp-component > [data-section-overlay] { position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-T85Pu0Yv_.gp-component > [data-section-overlay] { position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px; } } @media (min-width: 1200px) { .gp-component-id-T85Pu0Yv_.gp-component > [data-section-overlay] { position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px; } } @media (max-width: 639px) { .gp-component-id-4DOhg40Ly[data-gp-component] { border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 25%;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-4DOhg40Ly[data-gp-component] { border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 25%;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-4DOhg40Ly[data-gp-component] { border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 25%;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-4DOhg40Ly[data-gp-component] { border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 25%;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover; } } @media (min-width: 1200px) { .gp-component-id-4DOhg40Ly[data-gp-component] { border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 25%;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover; } } @media (max-width: 639px) { .gp-component-id-D_SI10a7Es { font-size: 22px !important;color: rgba(57, 75, 86, 0.8);line-height: 2;font-family: "Plus Jakarta Sans" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;width: 100%;display: inline-block;overflow-wrap: break-word; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-D_SI10a7Es { font-size: 22px !important;color: rgba(57, 75, 86, 0.8);line-height: 2;font-family: "Plus Jakarta Sans" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;width: 100%;display: inline-block;overflow-wrap: break-word; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-D_SI10a7Es { font-size: 22px !important;color: rgba(57, 75, 86, 0.8);line-height: 2;font-family: "Plus Jakarta Sans" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;width: 100%;display: inline-block;overflow-wrap: break-word; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-D_SI10a7Es { font-size: 22px !important;color: rgba(57, 75, 86, 0.8);line-height: 2;font-family: "Plus Jakarta Sans" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;width: 100%;display: inline-block;overflow-wrap: break-word; } } @media (min-width: 1200px) { .gp-component-id-D_SI10a7Es { font-size: 22px !important;color: rgba(57, 75, 86, 0.8);line-height: 2;font-family: "Plus Jakarta Sans" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;width: 100%;display: inline-block;overflow-wrap: break-word; } } @media (max-width: 639px) { [data-gp-text] .gp-component-id-bmBxMAXf0u { font-size: 22px !important;color: rgba(57, 75, 86, 0.8);line-height: 2;font-family: "Plus Jakarta Sans" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;width: 100%;display: inline-block;overflow-wrap: break-word; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-bmBxMAXf0u { font-size: 22px !important;color: rgba(57, 75, 86, 0.8);line-height: 2;font-family: "Plus Jakarta Sans" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;width: 100%;display: inline-block;overflow-wrap: break-word; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-bmBxMAXf0u { font-size: 22px !important;color: rgba(57, 75, 86, 0.8);line-height: 2;font-family: "Plus Jakarta Sans" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;width: 100%;display: inline-block;overflow-wrap: break-word; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-bmBxMAXf0u { font-size: 22px !important;color: rgba(57, 75, 86, 0.8);line-height: 2;font-family: "Plus Jakarta Sans" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;width: 100%;display: inline-block;overflow-wrap: break-word; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-bmBxMAXf0u { font-size: 22px !important;color: rgba(57, 75, 86, 0.8);line-height: 2;font-family: "Plus Jakarta Sans" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;width: 100%;display: inline-block;overflow-wrap: break-word; } } @media (max-width: 639px) { .gp-component-id-EIlDdzCcRe[data-gp-component] { color: rgb(32, 45, 60);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-EIlDdzCcRe[data-gp-component] { color: rgb(32, 45, 60);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-EIlDdzCcRe[data-gp-component] { color: rgb(32, 45, 60);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-EIlDdzCcRe[data-gp-component] { color: rgb(32, 45, 60);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-EIlDdzCcRe[data-gp-component] { color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space-collapse: collapse;text-wrap-mode: nowrap; } } @media (max-width: 639px) { .gp-component-id-E1G4RZqMpM { font-size: 22px !important;color: rgba(57, 75, 86, 0.8);line-height: 2;font-family: "Plus Jakarta Sans" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;width: 100%;display: inline-block;overflow-wrap: break-word; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-E1G4RZqMpM { font-size: 22px !important;color: rgba(57, 75, 86, 0.8);line-height: 2;font-family: "Plus Jakarta Sans" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;width: 100%;display: inline-block;overflow-wrap: break-word; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-E1G4RZqMpM { font-size: 22px !important;color: rgba(57, 75, 86, 0.8);line-height: 2;font-family: "Plus Jakarta Sans" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;width: 100%;display: inline-block;overflow-wrap: break-word; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-E1G4RZqMpM { font-size: 22px !important;color: rgba(57, 75, 86, 0.8);line-height: 2;font-family: "Plus Jakarta Sans" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;width: 100%;display: inline-block;overflow-wrap: break-word; } } @media (min-width: 1200px) { .gp-component-id-E1G4RZqMpM { font-size: 22px !important;color: rgba(57, 75, 86, 0.8);line-height: 2;font-family: "Plus Jakarta Sans" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;width: 100%;display: inline-block;overflow-wrap: break-word; } } @media (max-width: 639px) { .gp-component-id-VdnSTrnS8[data-gp-component] { color: rgb(32, 45, 60);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-VdnSTrnS8[data-gp-component] { color: rgb(32, 45, 60);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-VdnSTrnS8[data-gp-component] { color: rgb(32, 45, 60);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-VdnSTrnS8[data-gp-component] { color: rgb(32, 45, 60);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-VdnSTrnS8[data-gp-component] { color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space-collapse: collapse;text-wrap-mode: nowrap; } } @media (max-width: 639px) { .gp-component-id-x89fFmKxAm { font-size: 22px !important;color: rgba(57, 75, 86, 0.8);line-height: 2;font-family: "Plus Jakarta Sans" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;width: 100%;display: inline-block;overflow-wrap: break-word; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-x89fFmKxAm { font-size: 22px !important;color: rgba(57, 75, 86, 0.8);line-height: 2;font-family: "Plus Jakarta Sans" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;width: 100%;display: inline-block;overflow-wrap: break-word; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-x89fFmKxAm { font-size: 22px !important;color: rgba(57, 75, 86, 0.8);line-height: 2;font-family: "Plus Jakarta Sans" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;width: 100%;display: inline-block;overflow-wrap: break-word; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-x89fFmKxAm { font-size: 22px !important;color: rgba(57, 75, 86, 0.8);line-height: 2;font-family: "Plus Jakarta Sans" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;width: 100%;display: inline-block;overflow-wrap: break-word; } } @media (min-width: 1200px) { .gp-component-id-x89fFmKxAm { font-size: 22px !important;color: rgba(57, 75, 86, 0.8);line-height: 2;font-family: "Plus Jakarta Sans" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;width: 100%;display: inline-block;overflow-wrap: break-word; } } @media (max-width: 639px) { .gp-component-id-wRcpQ6kxQ[data-gp-component] { color: rgb(32, 45, 60);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-wRcpQ6kxQ[data-gp-component] { color: rgb(32, 45, 60);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-wRcpQ6kxQ[data-gp-component] { color: rgb(32, 45, 60);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-wRcpQ6kxQ[data-gp-component] { color: rgb(32, 45, 60);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-wRcpQ6kxQ[data-gp-component] { color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space-collapse: collapse;text-wrap-mode: nowrap; } } @media (max-width: 639px) { .gp-component-id-NmNFER3MZo { font-size: 22px !important;color: rgba(57, 75, 86, 0.8);line-height: 2;font-family: "Plus Jakarta Sans" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;width: 100%;display: inline-block;overflow-wrap: break-word; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-NmNFER3MZo { font-size: 22px !important;color: rgba(57, 75, 86, 0.8);line-height: 2;font-family: "Plus Jakarta Sans" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;width: 100%;display: inline-block;overflow-wrap: break-word; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-NmNFER3MZo { font-size: 22px !important;color: rgba(57, 75, 86, 0.8);line-height: 2;font-family: "Plus Jakarta Sans" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;width: 100%;display: inline-block;overflow-wrap: break-word; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-NmNFER3MZo { font-size: 22px !important;color: rgba(57, 75, 86, 0.8);line-height: 2;font-family: "Plus Jakarta Sans" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;width: 100%;display: inline-block;overflow-wrap: break-word; } } @media (min-width: 1200px) { .gp-component-id-NmNFER3MZo { font-size: 22px !important;color: rgba(57, 75, 86, 0.8);line-height: 2;font-family: "Plus Jakarta Sans" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;width: 100%;display: inline-block;overflow-wrap: break-word; } } @media (max-width: 639px) { .gp-component-id-xX4uiAsZP[data-gp-component] { color: rgb(32, 45, 60);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-xX4uiAsZP[data-gp-component] { color: rgb(32, 45, 60);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-xX4uiAsZP[data-gp-component] { color: rgb(32, 45, 60);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-xX4uiAsZP[data-gp-component] { color: rgb(32, 45, 60);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-xX4uiAsZP[data-gp-component] { color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space-collapse: collapse;text-wrap-mode: nowrap; } } .gp-component-id-OT8arqLdw { 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-OT8arqLdw { 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-OT8arqLdw { 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-OT8arqLdw { 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-OT8arqLdw { 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-OT8arqLdw { 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; } } .gp-component-id-NPaBTLVuy.gp-component > [data-section-overlay] { position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px; } @media (max-width: 639px) { .gp-component-id-NPaBTLVuy.gp-component > [data-section-overlay] { background-color: rgb(255, 255, 255);position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;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);position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;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);position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;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);position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;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);position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;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); } } .gp-component-id-dGLoqbHC4 { overflow-wrap: break-word;width: 100%; } @media (max-width: 639px) { .gp-component-id-dGLoqbHC4 { overflow-wrap: break-word;width: 100%; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-dGLoqbHC4 { overflow-wrap: break-word;width: 100%; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-dGLoqbHC4 { overflow-wrap: break-word;width: 100%; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-dGLoqbHC4 { overflow-wrap: break-word;width: 100%; } } @media (min-width: 1200px) { .gp-component-id-dGLoqbHC4 { overflow-wrap: break-word;width: 100%; } } .gp-component-id-mo71qA8gtO { z-index: 15;position: relative;width: 100%;margin-right: auto;margin-left: auto; } @media (max-width: 639px) { .gp-component-id-mo71qA8gtO { z-index: 15;position: relative;width: 100%;margin-right: auto;margin-left: auto; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-mo71qA8gtO { z-index: 15;position: relative;width: 100%;margin-right: auto;margin-left: auto;max-width: 640px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-mo71qA8gtO { z-index: 15;position: relative;width: 100%;margin-right: auto;margin-left: auto;max-width: 768px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-mo71qA8gtO { z-index: 15;position: relative;width: 100%;margin-right: auto;margin-left: auto;max-width: 992px; } } @media (min-width: 1200px) { .gp-component-id-mo71qA8gtO { z-index: 15;position: relative;width: 100%;margin-right: auto;margin-left: auto;max-width: 1200px; } } .gp-component-id-Spa_n7Zgd5.gp-component > [data-section-overlay] { z-index: 14;position: absolute;right: 0px;left: 0px;top: 0px;bottom: 0px; } @media (max-width: 639px) { .gp-component-id-Spa_n7Zgd5.gp-component > [data-section-overlay] { z-index: 14;position: absolute;right: 0px;left: 0px;top: 0px;bottom: 0px;background-color: rgb(6, 15, 36); } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-Spa_n7Zgd5.gp-component > [data-section-overlay] { z-index: 14;position: absolute;right: 0px;left: 0px;top: 0px;bottom: 0px;background-color: rgb(6, 15, 36); } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-Spa_n7Zgd5.gp-component > [data-section-overlay] { z-index: 14;position: absolute;right: 0px;left: 0px;top: 0px;bottom: 0px;background-color: rgb(6, 15, 36); } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-Spa_n7Zgd5.gp-component > [data-section-overlay] { z-index: 14;position: absolute;right: 0px;left: 0px;top: 0px;bottom: 0px;background-color: rgb(6, 15, 36); } } @media (min-width: 1200px) { .gp-component-id-Spa_n7Zgd5.gp-component > [data-section-overlay] { z-index: 14;position: absolute;right: 0px;left: 0px;top: 0px;bottom: 0px;background-color: rgb(6, 15, 36); } } .gp-component-id-Spa_n7Zgd5 { min-height: 50px;position: relative;z-index: auto; } @media (max-width: 639px) { .gp-component-id-Spa_n7Zgd5 { min-height: 50px;position: relative;z-index: auto; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-Spa_n7Zgd5 { min-height: 50px;position: relative;z-index: auto; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-Spa_n7Zgd5 { min-height: 50px;position: relative;z-index: auto; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-Spa_n7Zgd5 { min-height: 50px;position: relative;z-index: auto; } } @media (min-width: 1200px) { .gp-component-id-Spa_n7Zgd5 { min-height: 50px;position: relative;z-index: auto; } } .gp-component-id-v2MHvixhQd { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: 100%;font-family: inherit;overflow-y: visible;overflow-x: visible;text-transform: none;appearance: button;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;background-color: transparent;background-clip: initial;background-origin: initial;background-attachment: initial;background-repeat: initial;background-size: initial;background-position-y: initial;background-position-x: initial;background-image: initial;cursor: pointer; } .gp-component-id-v2MHvixhQd:focus,.gp-component-id-v2MHvixhQd.gp-focus { outline-width: 5px;outline-style: auto;outline-color: -webkit-focus-ring-color; } @media (max-width: 639px) { .gp-component-id-v2MHvixhQd { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: 22px !important;font-family: inherit !important;overflow-y: visible;overflow-x: visible;text-transform: none;appearance: button;padding-left: 36px;padding-bottom: 24px;padding-right: 36px;padding-top: 24px;background-color: rgb(16, 185, 129);background-clip: initial;background-origin: initial;background-attachment: initial;background-repeat: initial;background-size: initial;background-position-y: initial;background-position-x: initial;background-image: initial;cursor: pointer;font-weight: 400 !important;display: inline-block;width: 100%;border-bottom-right-radius: 33px;border-bottom-left-radius: 33px;border-top-right-radius: 33px;border-top-left-radius: 33px;color: rgb(255, 255, 255); } .gp-component-id-v2MHvixhQd:focus,.gp-component-id-v2MHvixhQd.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-v2MHvixhQd { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: 22px !important;font-family: inherit !important;overflow-y: visible;overflow-x: visible;text-transform: none;appearance: button;padding-left: 36px;padding-bottom: 24px;padding-right: 36px;padding-top: 24px;background-color: rgb(16, 185, 129);background-clip: initial;background-origin: initial;background-attachment: initial;background-repeat: initial;background-size: initial;background-position-y: initial;background-position-x: initial;background-image: initial;cursor: pointer;font-weight: 400 !important;display: inline-block;width: 100%;border-bottom-right-radius: 33px;border-bottom-left-radius: 33px;border-top-right-radius: 33px;border-top-left-radius: 33px;color: rgb(255, 255, 255); } .gp-component-id-v2MHvixhQd:focus,.gp-component-id-v2MHvixhQd.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-v2MHvixhQd { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: 22px !important;font-family: inherit !important;overflow-y: visible;overflow-x: visible;text-transform: none;appearance: button;padding-left: 36px;padding-bottom: 24px;padding-right: 36px;padding-top: 24px;background-color: rgb(16, 185, 129);background-clip: initial;background-origin: initial;background-attachment: initial;background-repeat: initial;background-size: initial;background-position-y: initial;background-position-x: initial;background-image: initial;cursor: pointer;font-weight: 400 !important;display: inline-block;width: 100%;border-bottom-right-radius: 33px;border-bottom-left-radius: 33px;border-top-right-radius: 33px;border-top-left-radius: 33px;color: rgb(255, 255, 255); } .gp-component-id-v2MHvixhQd:focus,.gp-component-id-v2MHvixhQd.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-v2MHvixhQd { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: 22px !important;font-family: inherit !important;overflow-y: visible;overflow-x: visible;text-transform: none;appearance: button;padding-left: 36px;padding-bottom: 24px;padding-right: 36px;padding-top: 24px;background-color: rgb(16, 185, 129);background-clip: initial;background-origin: initial;background-attachment: initial;background-repeat: initial;background-size: initial;background-position-y: initial;background-position-x: initial;background-image: initial;cursor: pointer;font-weight: 400 !important;display: inline-block;width: 100%;border-bottom-right-radius: 33px;border-bottom-left-radius: 33px;border-top-right-radius: 33px;border-top-left-radius: 33px;color: rgb(255, 255, 255); } .gp-component-id-v2MHvixhQd:focus,.gp-component-id-v2MHvixhQd.gp-focus { outline-width: 5px;outline-style: auto;outline-color: -webkit-focus-ring-color; } } @media (min-width: 1200px) { .gp-component-id-v2MHvixhQd { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: 22px !important;font-family: inherit !important;overflow-y: visible;overflow-x: visible;text-transform: none;appearance: button;padding-left: 36px;padding-bottom: 24px;padding-right: 36px;padding-top: 24px;background-color: rgb(16, 185, 129);background-clip: initial;background-origin: initial;background-attachment: initial;background-repeat: initial;background-size: initial;background-position-y: initial;background-position-x: initial;background-image: initial;cursor: pointer;font-weight: 400 !important;display: inline-block;width: 100%;border-bottom-right-radius: 33px;border-bottom-left-radius: 33px;border-top-right-radius: 33px;border-top-left-radius: 33px;color: rgb(255, 255, 255); } .gp-component-id-v2MHvixhQd:focus,.gp-component-id-v2MHvixhQd.gp-focus { outline-width: 5px;outline-style: auto;outline-color: -webkit-focus-ring-color; } } .gp-component-id-F0qToT2PC7 { 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-F0qToT2PC7 { margin-left: 0px;margin-bottom: 20px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-weight: 400 !important;font-size: 40px !important;font-family: Outfit !important;text-align: center; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-F0qToT2PC7 { margin-left: 0px;margin-bottom: 20px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-weight: 400 !important;font-size: 40px !important;font-family: Outfit !important;text-align: center; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-F0qToT2PC7 { margin-left: 0px;margin-bottom: 20px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-weight: 400 !important;font-size: 40px !important;font-family: Outfit !important;text-align: center; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-F0qToT2PC7 { margin-left: 0px;margin-bottom: 20px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-weight: 400 !important;font-size: 40px !important;font-family: Outfit !important;text-align: center; } } @media (min-width: 1200px) { .gp-component-id-F0qToT2PC7 { margin-left: 0px;margin-bottom: 20px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-weight: 400 !important;font-size: 40px !important;font-family: Outfit !important;text-align: center; } } .gp-component-id-WuvvJQWNKf { flex-direction: column;display: flex; } @media (max-width: 639px) { .gp-component-id-WuvvJQWNKf { flex-direction: column;display: flex; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-WuvvJQWNKf { flex-direction: column;display: flex; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-WuvvJQWNKf { flex-direction: column;display: flex; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-WuvvJQWNKf { flex-direction: column;display: flex; } } @media (min-width: 1200px) { .gp-component-id-WuvvJQWNKf { flex-direction: column;display: flex; } } .gp-component-id-W0wTxCiIl { position: relative; } @media (max-width: 639px) { .gp-component-id-W0wTxCiIl { position: relative;list-style-type: inherit;list-style-position: inside;display: flex;align-items: center;flex-direction: column;height: auto;width: 85.71%;padding-bottom: 24px;padding-top: 24px;padding-right: 24px;padding-left: 24px;margin-bottom: 16px;margin-top: 0px;margin-right: 0px;margin-left: 0px;background-color: rgb(255, 255, 255);border-bottom-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-top-right-radius: 5.6px;border-top-left-radius: 5.6px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-W0wTxCiIl { position: relative;list-style-type: inherit;list-style-position: inside;display: flex;align-items: center;flex-direction: column;height: auto;width: 85.71%;padding-bottom: 56px;padding-top: 56px;padding-right: 56px;padding-left: 56px;margin-bottom: 16px;margin-top: 0px;margin-right: 0px;margin-left: 0px;background-color: rgb(255, 255, 255);border-bottom-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-top-right-radius: 5.6px;border-top-left-radius: 5.6px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-W0wTxCiIl { position: relative;list-style-type: inherit;list-style-position: inside;display: flex;align-items: center;flex-direction: column;height: auto;width: 100%;padding-bottom: 56px;padding-top: 56px;padding-right: 56px;padding-left: 56px;margin-bottom: 16px;margin-top: 0px;margin-right: 0px;margin-left: 0px;background-color: rgb(255, 255, 255);border-bottom-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-top-right-radius: 5.6px;border-top-left-radius: 5.6px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-W0wTxCiIl { position: relative;list-style-type: inherit;list-style-position: inside;display: flex;align-items: center;flex-direction: column;height: auto;width: 66.6667%;padding-bottom: 56px;padding-top: 56px;padding-right: 56px;padding-left: 56px;margin-bottom: 16px;margin-top: 0px;margin-right: 0px;margin-left: 0px;background-color: rgb(255, 255, 255);border-bottom-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-top-right-radius: 5.6px;border-top-left-radius: 5.6px; } } @media (min-width: 1200px) { .gp-component-id-W0wTxCiIl { position: relative;list-style-type: inherit;list-style-position: inside;display: flex;align-items: center;flex-direction: column;height: auto;width: 66.6667%;padding-bottom: 56px;padding-top: 56px;padding-right: 56px;padding-left: 56px;margin-bottom: 16px;margin-top: 0px;margin-right: 0px;margin-left: 0px;background-color: rgb(255, 255, 255);border-bottom-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-top-right-radius: 5.6px;border-top-left-radius: 5.6px; } } .gp-component-id-zByDu8DxP6 { position: relative;z-index: 15;display: flex;align-items: center;flex-direction: column;width: 100%;margin-right: auto;margin-left: auto; } @media (max-width: 639px) { .gp-component-id-zByDu8DxP6 { position: relative;z-index: 15;display: flex;align-items: center;flex-direction: column;width: 100%;margin-right: auto;margin-left: auto; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-zByDu8DxP6 { position: relative;z-index: 15;display: flex;align-items: center;flex-direction: column;width: 100%;margin-right: auto;margin-left: auto;max-width: 640px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-zByDu8DxP6 { position: relative;z-index: 15;display: flex;align-items: center;flex-direction: column;width: 100%;margin-right: auto;margin-left: auto;max-width: 768px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-zByDu8DxP6 { position: relative;z-index: 15;display: flex;align-items: center;flex-direction: column;width: 100%;margin-right: auto;margin-left: auto;max-width: 992px; } } @media (min-width: 1200px) { .gp-component-id-zByDu8DxP6 { position: relative;z-index: 15;display: flex;align-items: center;flex-direction: column;width: 100%;margin-right: auto;margin-left: auto;max-width: 992px; } } .gp-component-id-DTye_4BfB4.gp-component > [data-section-overlay] { z-index: 14;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute; } @media (max-width: 639px) { .gp-component-id-DTye_4BfB4.gp-component > [data-section-overlay] { z-index: 14;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;background-color: rgba(11, 27, 61, 0.5); } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-DTye_4BfB4.gp-component > [data-section-overlay] { z-index: 14;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;background-color: rgba(11, 27, 61, 0.5); } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-DTye_4BfB4.gp-component > [data-section-overlay] { z-index: 14;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;background-color: rgba(11, 27, 61, 0.5); } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-DTye_4BfB4.gp-component > [data-section-overlay] { z-index: 14;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;background-color: rgba(11, 27, 61, 0.5); } } @media (min-width: 1200px) { .gp-component-id-DTye_4BfB4.gp-component > [data-section-overlay] { z-index: 14;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;background-color: rgba(11, 27, 61, 0.5); } } .gp-component-id-DTye_4BfB4 { z-index: auto;position: relative;min-height: 50px; } @media (max-width: 639px) { .gp-component-id-DTye_4BfB4 { z-index: auto !important;position: relative;min-height: 50px;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;background-position-y: 50%;background-position-x: 50%; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-DTye_4BfB4 { z-index: auto !important;position: relative;min-height: 50px;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;background-position-y: 50%;background-position-x: 50%; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-DTye_4BfB4 { z-index: auto !important;position: relative;min-height: 50px;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;background-position-y: 50%;background-position-x: 50%; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-DTye_4BfB4 { z-index: auto !important;position: relative;min-height: 50px;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;background-position-y: 50%;background-position-x: 50%; } } @media (min-width: 1200px) { .gp-component-id-DTye_4BfB4 { z-index: auto !important;position: relative;min-height: 50px;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;background-position-y: 50%;background-position-x: 50%; } } .gp-component-id-b41WYeGkbt { flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%; } @media (max-width: 639px) { .gp-component-id-b41WYeGkbt { flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-b41WYeGkbt { flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-b41WYeGkbt { flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 33.3333%; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-b41WYeGkbt { flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 33.3333%; } } @media (min-width: 1200px) { .gp-component-id-b41WYeGkbt { flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 33.3333%; } } .gp-component-id-lQwT1Xrd6F { flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%; } @media (max-width: 639px) { .gp-component-id-lQwT1Xrd6F { flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-lQwT1Xrd6F { flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-lQwT1Xrd6F { flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 33.3333%; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-lQwT1Xrd6F { flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 33.3333%; } } @media (min-width: 1200px) { .gp-component-id-lQwT1Xrd6F { flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 33.3333%; } } .gp-component-id-8uNrUz01EW { flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%; } @media (max-width: 639px) { .gp-component-id-8uNrUz01EW { flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-8uNrUz01EW { flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-8uNrUz01EW { flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 33.3333%; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-8uNrUz01EW { flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 33.3333%; } } @media (min-width: 1200px) { .gp-component-id-8uNrUz01EW { flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 33.3333%; } } .gp-component-id-GhEn4XOsz { flex-wrap: wrap;margin-right: -8px;margin-left: -8px; } @media (max-width: 639px) { .gp-component-id-GhEn4XOsz { flex-wrap: wrap;margin-right: -8px;margin-left: -8px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-GhEn4XOsz { flex-wrap: wrap;margin-right: -8px;margin-left: -8px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-GhEn4XOsz { flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-GhEn4XOsz { flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex; } } @media (min-width: 1200px) { .gp-component-id-GhEn4XOsz { flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex; } } .gp-component-id-tTaHSac0v { padding-right: 8px;padding-left: 8px;width: 100%; } @media (max-width: 639px) { .gp-component-id-tTaHSac0v { padding-right: 8px;padding-left: 8px;width: 100%; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-tTaHSac0v { padding-right: 8px;padding-left: 8px;width: 100%; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-tTaHSac0v { padding-right: 8px;padding-left: 8px;width: 100%; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-tTaHSac0v { padding-right: 8px;padding-left: 8px;width: 100%; } } @media (min-width: 1200px) { .gp-component-id-tTaHSac0v { padding-right: 8px;padding-left: 8px;width: 100%; } } .gp-component-id-OOSbtwVGra { z-index: 15;position: relative; } @media (max-width: 639px) { .gp-component-id-OOSbtwVGra { z-index: 15;position: relative;height: 171px;width: 100%;margin-right: auto;margin-left: auto;background-color: rgb(16, 185, 129); } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-OOSbtwVGra { z-index: 15;position: relative;max-width: 640px;height: 171px;width: 100%;margin-right: auto;margin-left: auto;background-color: rgb(16, 185, 129); } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-OOSbtwVGra { z-index: 15;position: relative;max-width: 768px;height: 171px;width: 100%;margin-right: auto;margin-left: auto;background-color: rgb(16, 185, 129); } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-OOSbtwVGra { z-index: 15;position: relative;max-width: 992px;height: 171px;width: 100%;margin-right: auto;margin-left: auto;background-color: rgb(16, 185, 129); } } @media (min-width: 1200px) { .gp-component-id-OOSbtwVGra { z-index: 15;position: relative;max-width: 1200px;height: 171px;width: 100%;margin-right: auto;margin-left: auto;background-color: rgb(16, 185, 129); } } .gp-component-id-7y7HI6d80.gp-component > [data-section-overlay] { background-color: rgba(155, 93, 229, 0.1);right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;z-index: 14; } @media (max-width: 639px) { .gp-component-id-7y7HI6d80.gp-component > [data-section-overlay] { background-color: rgb(16, 185, 129);right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;z-index: 14; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-7y7HI6d80.gp-component > [data-section-overlay] { background-color: rgb(16, 185, 129);right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;z-index: 14; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-7y7HI6d80.gp-component > [data-section-overlay] { background-color: rgb(16, 185, 129);right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;z-index: 14; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-7y7HI6d80.gp-component > [data-section-overlay] { background-color: rgb(16, 185, 129);right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;z-index: 14; } } @media (min-width: 1200px) { .gp-component-id-7y7HI6d80.gp-component > [data-section-overlay] { background-color: rgb(16, 185, 129);right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;z-index: 14; } } .gp-component-id-7y7HI6d80 { min-height: 50px;position: relative;z-index: auto; } @media (max-width: 639px) { .gp-component-id-7y7HI6d80 { min-height: 50px;position: relative;z-index: auto !important;padding-bottom: 0px;padding-top: 0px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-7y7HI6d80 { min-height: 50px;position: relative;z-index: auto !important;padding-bottom: 0px;padding-top: 0px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-7y7HI6d80 { min-height: 50px;position: relative;z-index: auto !important;padding-bottom: 0px;padding-top: 0px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-7y7HI6d80 { min-height: 50px;position: relative;z-index: auto !important;padding-bottom: 0px;padding-top: 0px; } } @media (min-width: 1200px) { .gp-component-id-7y7HI6d80 { min-height: 50px;position: relative;z-index: auto !important;padding-bottom: 0px;padding-top: 0px; } } .gp-component-id-6KZhcfBwCS { padding-left: 8px;width: 100%;padding-right: 8px; } @media (max-width: 639px) { .gp-component-id-6KZhcfBwCS { padding-left: 8px;width: 100%;padding-right: 8px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-6KZhcfBwCS { padding-left: 8px;width: 100%;padding-right: 8px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-6KZhcfBwCS { padding-left: 8px;width: 100%;padding-right: 8px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-6KZhcfBwCS { padding-left: 8px;width: 100%;padding-right: 8px; } } @media (min-width: 1200px) { .gp-component-id-6KZhcfBwCS { padding-left: 8px;width: 100%;padding-right: 8px; } } .gp-component-id-s7ygH_mn5 { margin-left: -8px;margin-right: -8px; } @media (max-width: 639px) { .gp-component-id-s7ygH_mn5 { margin-left: -8px;margin-right: -8px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-s7ygH_mn5 { margin-left: -8px;margin-right: -8px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-s7ygH_mn5 { margin-left: -8px;margin-right: -8px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-s7ygH_mn5 { margin-left: -8px;margin-right: -8px; } } @media (min-width: 1200px) { .gp-component-id-s7ygH_mn5 { margin-left: -8px;margin-right: -8px; } } .gp-component-id-7g1gxgQbJ { padding-left: 8px;width: 100%;padding-right: 8px; } @media (max-width: 639px) { .gp-component-id-7g1gxgQbJ { padding-left: 8px;width: 100%;padding-right: 8px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-7g1gxgQbJ { padding-left: 8px;width: 100%;padding-right: 8px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-7g1gxgQbJ { padding-left: 8px;width: 100%;padding-right: 8px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-7g1gxgQbJ { padding-left: 8px;width: 100%;padding-right: 8px; } } @media (min-width: 1200px) { .gp-component-id-7g1gxgQbJ { padding-left: 8px;width: 100%;padding-right: 8px; } } .gp-component-id-ujJOZuoedY { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word; } @media (max-width: 639px) { .gp-component-id-ujJOZuoedY { margin-left: 0px;margin-bottom: 20px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-family: "Plus Jakarta Sans" !important;font-weight: 400 !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-ujJOZuoedY { margin-left: 0px;margin-bottom: 20px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-family: "Plus Jakarta Sans" !important;font-weight: 400 !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-ujJOZuoedY { margin-left: 0px;margin-bottom: 20px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-family: "Plus Jakarta Sans" !important;font-weight: 400 !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-ujJOZuoedY { margin-left: 0px;margin-bottom: 20px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-family: "Plus Jakarta Sans" !important;font-weight: 400 !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-ujJOZuoedY { margin-left: 0px;margin-bottom: 20px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-family: "Plus Jakarta Sans" !important;font-weight: 400 !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-bHIXptWdM { display: flex;flex-direction: column; } @media (max-width: 639px) { .gp-component-id-bHIXptWdM { display: flex;flex-direction: column; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-bHIXptWdM { display: flex;flex-direction: column; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-bHIXptWdM { display: flex;flex-direction: column; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-bHIXptWdM { display: flex;flex-direction: column; } } @media (min-width: 1200px) { .gp-component-id-bHIXptWdM { display: flex;flex-direction: column; } } .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 { display: flex;flex-direction: column; } @media (max-width: 639px) { .gp-component-id-btIn1R88z { display: flex;flex-direction: column; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-btIn1R88z { display: flex;flex-direction: column; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-btIn1R88z { display: flex;flex-direction: column; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-btIn1R88z { display: flex;flex-direction: column; } } @media (min-width: 1200px) { .gp-component-id-btIn1R88z { display: flex;flex-direction: column; } } .gp-component-id-fnerZsctHn { 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-fnerZsctHn { margin-left: 0px;margin-bottom: 20px;margin-right: 0px;margin-top: 31px;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-fnerZsctHn { margin-left: 0px;margin-bottom: 20px;margin-right: 0px;margin-top: 31px;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-fnerZsctHn { margin-left: 0px;margin-bottom: 20px;margin-right: 0px;margin-top: 31px;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-fnerZsctHn { margin-left: 0px;margin-bottom: 20px;margin-right: 0px;margin-top: 31px;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-fnerZsctHn { margin-left: 0px;margin-bottom: 20px;margin-right: 0px;margin-top: 31px;overflow-wrap: break-word;font-weight: inherit !important;font-size: 34px !important;font-family: Outfit !important;text-align: left; } } .gp-component-id-xdue9LNoJ { flex-direction: column;display: flex; } @media (max-width: 639px) { .gp-component-id-xdue9LNoJ { flex-direction: column;display: flex; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-xdue9LNoJ { flex-direction: column;display: flex; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-xdue9LNoJ { flex-direction: column;display: flex; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-xdue9LNoJ { flex-direction: column;display: flex; } } @media (min-width: 1200px) { .gp-component-id-xdue9LNoJ { flex-direction: column;display: flex; } } .gp-component-id-yik3cn833 { object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;max-width: 100%;height: auto;border-top-style: solid;border-right-style: solid;border-bottom-style: solid;border-left-style: solid;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: inherit;overflow-y: hidden;overflow-x: hidden; } @media (max-width: 639px) { .gp-component-id-yik3cn833 { object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;max-width: 100%;height: auto;border-top-style: solid;border-right-style: solid;border-bottom-style: solid;border-left-style: solid;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: inherit;overflow-y: hidden;overflow-x: hidden; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-yik3cn833 { object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;max-width: 100%;height: auto;border-top-style: solid;border-right-style: solid;border-bottom-style: solid;border-left-style: solid;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: inherit;overflow-y: hidden;overflow-x: hidden; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-yik3cn833 { object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;max-width: 100%;height: auto;border-top-style: solid;border-right-style: solid;border-bottom-style: solid;border-left-style: solid;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: inherit;overflow-y: hidden;overflow-x: hidden; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-yik3cn833 { object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;max-width: 100%;height: auto;border-top-style: solid;border-right-style: solid;border-bottom-style: solid;border-left-style: solid;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: inherit;overflow-y: hidden;overflow-x: hidden; } } @media (min-width: 1200px) { .gp-component-id-yik3cn833 { object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;max-width: 100%;height: auto;border-top-style: solid;border-right-style: solid;border-bottom-style: solid;border-left-style: solid;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: inherit;overflow-y: hidden;overflow-x: hidden; } } .gp-component-id-o4OFMEnHn0 { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word; } @media (max-width: 639px) { .gp-component-id-o4OFMEnHn0 { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-family: "Plus Jakarta Sans" !important;font-size: 22px !important;display: inline-block;width: 100%;padding-right: 30px;padding-left: 30px;line-height: 2;color: rgba(57, 75, 86, 0.8); } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-o4OFMEnHn0 { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-family: "Plus Jakarta Sans" !important;font-size: 22px !important;display: inline-block;width: 100%;padding-right: 30px;padding-left: 30px;line-height: 2;color: rgba(57, 75, 86, 0.8); } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-o4OFMEnHn0 { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-family: "Plus Jakarta Sans" !important;font-size: 22px !important;display: inline-block;width: 100%;padding-right: 30px;padding-left: 30px;line-height: 2;color: rgba(57, 75, 86, 0.8); } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-o4OFMEnHn0 { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-family: "Plus Jakarta Sans" !important;font-size: 22px !important;display: inline-block;width: 100%;padding-right: 30px;padding-left: 30px;line-height: 2;color: rgba(57, 75, 86, 0.8); } } @media (min-width: 1200px) { .gp-component-id-o4OFMEnHn0 { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-family: "Plus Jakarta Sans" !important;font-size: 22px !important;display: inline-block;width: 100%;padding-right: 30px;padding-left: 30px;line-height: 2;color: rgba(57, 75, 86, 0.8); } } .gp-component-id-zp6IclGfR1 { flex-direction: column;display: inline-flex;text-wrap-mode: wrap;white-space-collapse: collapse; } @media (max-width: 639px) { .gp-component-id-zp6IclGfR1 { flex-direction: column;display: inline-flex;text-wrap-mode: wrap;white-space-collapse: collapse; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-zp6IclGfR1 { flex-direction: column;display: inline-flex;text-wrap-mode: wrap;white-space-collapse: collapse; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-zp6IclGfR1 { flex-direction: column;display: inline-flex;text-wrap-mode: wrap;white-space-collapse: collapse; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-zp6IclGfR1 { flex-direction: column;display: inline-flex;text-wrap-mode: wrap;white-space-collapse: collapse; } } @media (min-width: 1200px) { .gp-component-id-zp6IclGfR1 { flex-direction: column;display: inline-flex;text-wrap-mode: wrap;white-space-collapse: collapse; } } .gp-component-id-lCDvrzMNk { text-wrap-mode: nowrap;white-space-collapse: collapse; } @media (max-width: 639px) { .gp-component-id-lCDvrzMNk { text-wrap-mode: nowrap;white-space-collapse: collapse;padding-bottom: 8px;padding-top: 8px;padding-right: 16px;margin-bottom: 12px;color: rgb(32, 45, 60); } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-lCDvrzMNk { text-wrap-mode: nowrap;white-space-collapse: collapse;padding-bottom: 8px;padding-top: 8px;padding-right: 16px;margin-bottom: 12px;color: rgb(32, 45, 60); } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-lCDvrzMNk { text-wrap-mode: nowrap;white-space-collapse: collapse;padding-bottom: 8px;padding-top: 8px;padding-right: 16px;margin-bottom: 12px;color: rgb(32, 45, 60); } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-lCDvrzMNk { text-wrap-mode: nowrap;white-space-collapse: collapse;padding-bottom: 8px;padding-top: 8px;padding-right: 16px;margin-bottom: 12px;color: rgb(32, 45, 60); } } @media (min-width: 1200px) { .gp-component-id-lCDvrzMNk { text-wrap-mode: nowrap;white-space-collapse: collapse;padding-bottom: 8px;padding-top: 8px;padding-right: 16px;margin-bottom: 12px;color: rgb(32, 45, 60); } } .gp-component-id-p55uj_GK2x { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word; } @media (max-width: 639px) { .gp-component-id-p55uj_GK2x { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-family: "Plus Jakarta Sans" !important;font-size: 22px !important;display: inline-block;width: 100%;padding-right: 30px;padding-left: 30px;line-height: 2;color: rgba(57, 75, 86, 0.8); } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-p55uj_GK2x { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-family: "Plus Jakarta Sans" !important;font-size: 22px !important;display: inline-block;width: 100%;padding-right: 30px;padding-left: 30px;line-height: 2;color: rgba(57, 75, 86, 0.8); } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-p55uj_GK2x { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-family: "Plus Jakarta Sans" !important;font-size: 22px !important;display: inline-block;width: 100%;padding-right: 30px;padding-left: 30px;line-height: 2;color: rgba(57, 75, 86, 0.8); } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-p55uj_GK2x { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-family: "Plus Jakarta Sans" !important;font-size: 22px !important;display: inline-block;width: 100%;padding-right: 30px;padding-left: 30px;line-height: 2;color: rgba(57, 75, 86, 0.8); } } @media (min-width: 1200px) { .gp-component-id-p55uj_GK2x { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-family: "Plus Jakarta Sans" !important;font-size: 22px !important;display: inline-block;width: 100%;padding-right: 30px;padding-left: 30px;line-height: 2;color: rgba(57, 75, 86, 0.8); } } .gp-component-id-2pzIarKjbU { flex-direction: column;display: inline-flex;text-wrap-mode: wrap;white-space-collapse: collapse; } @media (max-width: 639px) { .gp-component-id-2pzIarKjbU { flex-direction: column;display: inline-flex;text-wrap-mode: wrap;white-space-collapse: collapse; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-2pzIarKjbU { flex-direction: column;display: inline-flex;text-wrap-mode: wrap;white-space-collapse: collapse; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-2pzIarKjbU { flex-direction: column;display: inline-flex;text-wrap-mode: wrap;white-space-collapse: collapse; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-2pzIarKjbU { flex-direction: column;display: inline-flex;text-wrap-mode: wrap;white-space-collapse: collapse; } } @media (min-width: 1200px) { .gp-component-id-2pzIarKjbU { flex-direction: column;display: inline-flex;text-wrap-mode: wrap;white-space-collapse: collapse; } } .gp-component-id-TA5oeTTSM { text-wrap-mode: nowrap;white-space-collapse: collapse; } @media (max-width: 639px) { .gp-component-id-TA5oeTTSM { text-wrap-mode: nowrap;white-space-collapse: collapse;padding-bottom: 8px;padding-top: 8px;padding-right: 16px;margin-bottom: 12px;color: rgb(32, 45, 60); } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-TA5oeTTSM { text-wrap-mode: nowrap;white-space-collapse: collapse;padding-bottom: 8px;padding-top: 8px;padding-right: 16px;margin-bottom: 12px;color: rgb(32, 45, 60); } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-TA5oeTTSM { text-wrap-mode: nowrap;white-space-collapse: collapse;padding-bottom: 8px;padding-top: 8px;padding-right: 16px;margin-bottom: 12px;color: rgb(32, 45, 60); } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-TA5oeTTSM { text-wrap-mode: nowrap;white-space-collapse: collapse;padding-bottom: 8px;padding-top: 8px;padding-right: 16px;margin-bottom: 12px;color: rgb(32, 45, 60); } } @media (min-width: 1200px) { .gp-component-id-TA5oeTTSM { text-wrap-mode: nowrap;white-space-collapse: collapse;padding-bottom: 8px;padding-top: 8px;padding-right: 16px;margin-bottom: 12px;color: rgb(32, 45, 60); } } .gp-component-id-isCZdZTv7r { flex-direction: column;display: inline-flex;text-wrap-mode: wrap;white-space-collapse: collapse; } @media (max-width: 639px) { .gp-component-id-isCZdZTv7r { flex-direction: column;display: inline-flex;text-wrap-mode: wrap;white-space-collapse: collapse; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-isCZdZTv7r { flex-direction: column;display: inline-flex;text-wrap-mode: wrap;white-space-collapse: collapse; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-isCZdZTv7r { flex-direction: column;display: inline-flex;text-wrap-mode: wrap;white-space-collapse: collapse; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-isCZdZTv7r { flex-direction: column;display: inline-flex;text-wrap-mode: wrap;white-space-collapse: collapse; } } @media (min-width: 1200px) { .gp-component-id-isCZdZTv7r { flex-direction: column;display: inline-flex;text-wrap-mode: wrap;white-space-collapse: collapse; } } .gp-component-id-NnbnFH234 { text-wrap-mode: nowrap;white-space-collapse: collapse; } @media (max-width: 639px) { .gp-component-id-NnbnFH234 { text-wrap-mode: nowrap;white-space-collapse: collapse;padding-bottom: 8px;padding-top: 8px;padding-right: 16px;margin-bottom: 12px;color: rgb(32, 45, 60); } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-NnbnFH234 { text-wrap-mode: nowrap;white-space-collapse: collapse;padding-bottom: 8px;padding-top: 8px;padding-right: 16px;margin-bottom: 12px;color: rgb(32, 45, 60); } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-NnbnFH234 { text-wrap-mode: nowrap;white-space-collapse: collapse;padding-bottom: 8px;padding-top: 8px;padding-right: 16px;margin-bottom: 12px;color: rgb(32, 45, 60); } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-NnbnFH234 { text-wrap-mode: nowrap;white-space-collapse: collapse;padding-bottom: 8px;padding-top: 8px;padding-right: 16px;margin-bottom: 12px;color: rgb(32, 45, 60); } } @media (min-width: 1200px) { .gp-component-id-NnbnFH234 { text-wrap-mode: nowrap;white-space-collapse: collapse;padding-bottom: 8px;padding-top: 8px;padding-right: 16px;margin-bottom: 12px;color: rgb(32, 45, 60); } } .gp-component-id-wwSGst7D7 { padding-top: 16px;padding-right: 0px;padding-bottom: 16px;padding-left: 16px;list-style-position: inside;list-style-type: inherit;margin-top: 0px;margin-right: 0px;margin-bottom: 16px;margin-left: 0px; } @media (max-width: 639px) { .gp-component-id-wwSGst7D7 { padding-top: 16px;padding-right: 0px;padding-bottom: 16px;padding-left: 16px;list-style-position: inside;list-style-type: inherit;margin-top: 0px;margin-right: 0px;margin-bottom: 16px;margin-left: 0px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-wwSGst7D7 { padding-top: 16px;padding-right: 0px;padding-bottom: 16px;padding-left: 16px;list-style-position: inside;list-style-type: inherit;margin-top: 0px;margin-right: 0px;margin-bottom: 16px;margin-left: 0px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-wwSGst7D7 { padding-top: 16px;padding-right: 0px;padding-bottom: 16px;padding-left: 16px;list-style-position: inside;list-style-type: inherit;margin-top: 0px;margin-right: 0px;margin-bottom: 16px;margin-left: 0px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-wwSGst7D7 { padding-top: 16px;padding-right: 0px;padding-bottom: 16px;padding-left: 16px;list-style-position: inside;list-style-type: inherit;margin-top: 0px;margin-right: 0px;margin-bottom: 16px;margin-left: 0px; } } @media (min-width: 1200px) { .gp-component-id-wwSGst7D7 { padding-top: 16px;padding-right: 0px;padding-bottom: 16px;padding-left: 16px;list-style-position: inside;list-style-type: inherit;margin-top: 0px;margin-right: 0px;margin-bottom: 16px;margin-left: 0px; } } .gp-component-id-0KQ4KBF7Q { padding-top: 16px;padding-right: 0px;padding-bottom: 16px;padding-left: 16px;list-style-position: inside;list-style-type: inherit;margin-top: 0px;margin-right: 0px;margin-bottom: 16px;margin-left: 0px; } @media (max-width: 639px) { .gp-component-id-0KQ4KBF7Q { padding-top: 16px;padding-right: 0px;padding-bottom: 16px;padding-left: 16px;list-style-position: inside;list-style-type: inherit;margin-top: 0px;margin-right: 0px;margin-bottom: 16px;margin-left: 0px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-0KQ4KBF7Q { padding-top: 16px;padding-right: 0px;padding-bottom: 16px;padding-left: 16px;list-style-position: inside;list-style-type: inherit;margin-top: 0px;margin-right: 0px;margin-bottom: 16px;margin-left: 0px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-0KQ4KBF7Q { padding-top: 16px;padding-right: 0px;padding-bottom: 16px;padding-left: 16px;list-style-position: inside;list-style-type: inherit;margin-top: 0px;margin-right: 0px;margin-bottom: 16px;margin-left: 0px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-0KQ4KBF7Q { padding-top: 16px;padding-right: 0px;padding-bottom: 16px;padding-left: 16px;list-style-position: inside;list-style-type: inherit;margin-top: 0px;margin-right: 0px;margin-bottom: 16px;margin-left: 0px; } } @media (min-width: 1200px) { .gp-component-id-0KQ4KBF7Q { padding-top: 16px;padding-right: 0px;padding-bottom: 16px;padding-left: 16px;list-style-position: inside;list-style-type: inherit;margin-top: 0px;margin-right: 0px;margin-bottom: 16px;margin-left: 0px; } } .gp-component-id-hlNPDinezX { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word; } @media (max-width: 639px) { .gp-component-id-hlNPDinezX { 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-hlNPDinezX { 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-hlNPDinezX { 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-hlNPDinezX { 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-hlNPDinezX { 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-n5ffVjBM9 { display: flex;flex-direction: column; } @media (max-width: 639px) { .gp-component-id-n5ffVjBM9 { display: flex;flex-direction: column; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-n5ffVjBM9 { display: flex;flex-direction: column; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-n5ffVjBM9 { display: flex;flex-direction: column; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-n5ffVjBM9 { display: flex;flex-direction: column; } } @media (min-width: 1200px) { .gp-component-id-n5ffVjBM9 { display: flex;flex-direction: column; } } .gp-component-id-Yfr1DORjro { 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-Yfr1DORjro { margin-left: 0px;margin-bottom: 20px;margin-right: 0px;margin-top: -20px;overflow-wrap: break-word;font-weight: inherit !important;font-size: 36px !important;font-family: Outfit !important;padding-top: 20px;line-height: inherit;text-align: left; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-Yfr1DORjro { margin-left: 0px;margin-bottom: 20px;margin-right: 0px;margin-top: -20px;overflow-wrap: break-word;font-weight: inherit !important;font-size: 36px !important;font-family: Outfit !important;padding-top: 20px;line-height: inherit;text-align: left; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-Yfr1DORjro { margin-left: 0px;margin-bottom: 20px;margin-right: 0px;margin-top: -20px;overflow-wrap: break-word;font-weight: inherit !important;font-size: 36px !important;font-family: Outfit !important;padding-top: 20px;line-height: inherit;text-align: left; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-Yfr1DORjro { margin-left: 0px;margin-bottom: 20px;margin-right: 0px;margin-top: -20px;overflow-wrap: break-word;font-weight: inherit !important;font-size: 36px !important;font-family: Outfit !important;padding-top: 20px;line-height: inherit;text-align: left; } } @media (min-width: 1200px) { .gp-component-id-Yfr1DORjro { margin-left: 0px;margin-bottom: 20px;margin-right: 0px;margin-top: -20px;overflow-wrap: break-word;font-weight: inherit !important;font-size: 36px !important;font-family: Outfit !important;padding-top: 20px;line-height: inherit;text-align: left; } } .gp-component-id-lZk0dCLY7 { display: flex;flex-direction: column; } @media (max-width: 639px) { .gp-component-id-lZk0dCLY7 { display: flex;flex-direction: column; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-lZk0dCLY7 { display: flex;flex-direction: column; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-lZk0dCLY7 { display: flex;flex-direction: column; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-lZk0dCLY7 { display: flex;flex-direction: column; } } @media (min-width: 1200px) { .gp-component-id-lZk0dCLY7 { display: flex;flex-direction: column; } } .gp-component-id-EN1uygDZD { padding-top: 0px;padding-right: 0px;padding-bottom: 0px;padding-left: 0px;list-style-position: inside;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px; } @media (max-width: 639px) { .gp-component-id-EN1uygDZD { padding-top: 16px;padding-right: 0px;padding-bottom: 16px;padding-left: 16px;list-style-position: inside;margin-top: 0px;margin-right: 0px;margin-bottom: 16px;margin-left: 0px;list-style-type: inherit; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-EN1uygDZD { padding-top: 16px;padding-right: 0px;padding-bottom: 16px;padding-left: 16px;list-style-position: inside;margin-top: 0px;margin-right: 0px;margin-bottom: 16px;margin-left: 0px;list-style-type: inherit; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-EN1uygDZD { padding-top: 16px;padding-right: 0px;padding-bottom: 16px;padding-left: 16px;list-style-position: inside;margin-top: 0px;margin-right: 0px;margin-bottom: 16px;margin-left: 0px;list-style-type: inherit; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-EN1uygDZD { padding-top: 16px;padding-right: 0px;padding-bottom: 16px;padding-left: 16px;list-style-position: inside;margin-top: 0px;margin-right: 0px;margin-bottom: 16px;margin-left: 0px;list-style-type: inherit; } } @media (min-width: 1200px) { .gp-component-id-EN1uygDZD { padding-top: 16px;padding-right: 0px;padding-bottom: 16px;padding-left: 16px;list-style-position: inside;margin-top: 0px;margin-right: 0px;margin-bottom: 16px;margin-left: 0px;list-style-type: inherit; } } .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 { display: flex;flex-direction: column; } @media (max-width: 639px) { .gp-component-id-MCm8H3WQ0 { display: flex;flex-direction: column; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-MCm8H3WQ0 { display: flex;flex-direction: column; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-MCm8H3WQ0 { display: flex;flex-direction: column; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-MCm8H3WQ0 { display: flex;flex-direction: column; } } @media (min-width: 1200px) { .gp-component-id-MCm8H3WQ0 { display: flex;flex-direction: column; } } .gp-component-id-en1hmXwnGp { 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-en1hmXwnGp { margin-left: 0px;margin-bottom: 20px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-weight: inherit !important;font-size: 40px !important;font-family: Outfit !important;padding-top: 20px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-en1hmXwnGp { margin-left: 0px;margin-bottom: 20px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-weight: inherit !important;font-size: 40px !important;font-family: Outfit !important;padding-top: 20px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-en1hmXwnGp { margin-left: 0px;margin-bottom: 20px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-weight: inherit !important;font-size: 40px !important;font-family: Outfit !important;padding-top: 20px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-en1hmXwnGp { margin-left: 0px;margin-bottom: 20px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-weight: inherit !important;font-size: 40px !important;font-family: Outfit !important;padding-top: 20px; } } @media (min-width: 1200px) { .gp-component-id-en1hmXwnGp { margin-left: 0px;margin-bottom: 20px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-weight: inherit !important;font-size: 40px !important;font-family: Outfit !important;padding-top: 20px; } } .gp-component-id-bg7lnhw_c { display: flex;flex-direction: column; } @media (max-width: 639px) { .gp-component-id-bg7lnhw_c { display: flex;flex-direction: column; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-bg7lnhw_c { display: flex;flex-direction: column; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-bg7lnhw_c { display: flex;flex-direction: column; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-bg7lnhw_c { display: flex;flex-direction: column; } } @media (min-width: 1200px) { .gp-component-id-bg7lnhw_c { display: flex;flex-direction: column; } } .gp-component-id-Q4JZUn8CWY { cursor: pointer;background-image: initial;background-position-x: initial;background-position-y: initial;background-size: initial;background-repeat: initial;background-attachment: initial;background-origin: initial;background-clip: initial;background-color: transparent;padding-top: 0px;padding-right: 0px;padding-bottom: 0px;padding-left: 0px;appearance: button;text-transform: none;overflow-x: visible;overflow-y: visible;font-family: inherit;font-size: 100%;line-height: 1.15;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px; } .gp-component-id-Q4JZUn8CWY:focus,.gp-component-id-Q4JZUn8CWY.gp-focus { outline-color: -webkit-focus-ring-color;outline-style: auto;outline-width: 5px; } @media (max-width: 639px) { .gp-component-id-Q4JZUn8CWY { cursor: pointer;background-image: initial;background-position-x: initial;background-position-y: initial;background-size: initial;background-repeat: initial;background-attachment: initial;background-origin: initial;background-clip: initial;background-color: rgb(16, 185, 129);padding-top: 24px;padding-right: 36px;padding-bottom: 24px;padding-left: 36px;appearance: button;text-transform: none;overflow-x: visible;overflow-y: visible;font-family: inherit !important;font-size: 22px !important;line-height: 1.15;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;font-weight: 400 !important;color: rgb(255, 255, 255);border-top-left-radius: 33px;border-top-right-radius: 33px;border-bottom-left-radius: 33px;border-bottom-right-radius: 33px;width: 100%;display: inline-block; } .gp-component-id-Q4JZUn8CWY:focus,.gp-component-id-Q4JZUn8CWY.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-Q4JZUn8CWY { cursor: pointer;background-image: initial;background-position-x: initial;background-position-y: initial;background-size: initial;background-repeat: initial;background-attachment: initial;background-origin: initial;background-clip: initial;background-color: rgb(16, 185, 129);padding-top: 24px;padding-right: 36px;padding-bottom: 24px;padding-left: 36px;appearance: button;text-transform: none;overflow-x: visible;overflow-y: visible;font-family: inherit !important;font-size: 22px !important;line-height: 1.15;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;font-weight: 400 !important;color: rgb(255, 255, 255);border-top-left-radius: 33px;border-top-right-radius: 33px;border-bottom-left-radius: 33px;border-bottom-right-radius: 33px;width: 100%;display: inline-block; } .gp-component-id-Q4JZUn8CWY:focus,.gp-component-id-Q4JZUn8CWY.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-Q4JZUn8CWY { cursor: pointer;background-image: initial;background-position-x: initial;background-position-y: initial;background-size: initial;background-repeat: initial;background-attachment: initial;background-origin: initial;background-clip: initial;background-color: rgb(16, 185, 129);padding-top: 24px;padding-right: 36px;padding-bottom: 24px;padding-left: 36px;appearance: button;text-transform: none;overflow-x: visible;overflow-y: visible;font-family: inherit !important;font-size: 22px !important;line-height: 1.15;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;font-weight: 400 !important;color: rgb(255, 255, 255);border-top-left-radius: 33px;border-top-right-radius: 33px;border-bottom-left-radius: 33px;border-bottom-right-radius: 33px;width: 100%;display: inline-block; } .gp-component-id-Q4JZUn8CWY:focus,.gp-component-id-Q4JZUn8CWY.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-Q4JZUn8CWY { cursor: pointer;background-image: initial;background-position-x: initial;background-position-y: initial;background-size: initial;background-repeat: initial;background-attachment: initial;background-origin: initial;background-clip: initial;background-color: rgb(16, 185, 129);padding-top: 24px;padding-right: 36px;padding-bottom: 24px;padding-left: 36px;appearance: button;text-transform: none;overflow-x: visible;overflow-y: visible;font-family: inherit !important;font-size: 22px !important;line-height: 1.15;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;font-weight: 400 !important;color: rgb(255, 255, 255);border-top-left-radius: 33px;border-top-right-radius: 33px;border-bottom-left-radius: 33px;border-bottom-right-radius: 33px;width: 100%;display: inline-block; } .gp-component-id-Q4JZUn8CWY:focus,.gp-component-id-Q4JZUn8CWY.gp-focus { outline-color: -webkit-focus-ring-color;outline-style: auto;outline-width: 5px; } } @media (min-width: 1200px) { .gp-component-id-Q4JZUn8CWY { cursor: pointer;background-image: initial;background-position-x: initial;background-position-y: initial;background-size: initial;background-repeat: initial;background-attachment: initial;background-origin: initial;background-clip: initial;background-color: rgb(16, 185, 129);padding-top: 24px;padding-right: 36px;padding-bottom: 24px;padding-left: 36px;appearance: button;text-transform: none;overflow-x: visible;overflow-y: visible;font-family: inherit !important;font-size: 22px !important;line-height: 1.15;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;font-weight: 400 !important;color: rgb(255, 255, 255);border-top-left-radius: 33px;border-top-right-radius: 33px;border-bottom-left-radius: 33px;border-bottom-right-radius: 33px;width: 100%;display: inline-block; } .gp-component-id-Q4JZUn8CWY:focus,.gp-component-id-Q4JZUn8CWY.gp-focus { outline-color: -webkit-focus-ring-color;outline-style: auto;outline-width: 5px; } } .gp-component-id-ARSBQh8gk { 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-ARSBQh8gk { margin-left: 0px;margin-bottom: 20px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-weight: 400 !important;font-size: 40px !important;font-family: Outfit !important;text-align: center; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-ARSBQh8gk { margin-left: 0px;margin-bottom: 20px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-weight: 400 !important;font-size: 40px !important;font-family: Outfit !important;text-align: center; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-ARSBQh8gk { margin-left: 0px;margin-bottom: 20px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-weight: 400 !important;font-size: 40px !important;font-family: Outfit !important;text-align: center; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-ARSBQh8gk { margin-left: 0px;margin-bottom: 20px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-weight: 400 !important;font-size: 40px !important;font-family: Outfit !important;text-align: center; } } @media (min-width: 1200px) { .gp-component-id-ARSBQh8gk { margin-left: 0px;margin-bottom: 20px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-weight: 400 !important;font-size: 40px !important;font-family: Outfit !important;text-align: center; } } .gp-component-id-tGzUnC7EiL { display: flex;flex-direction: column; } @media (max-width: 639px) { .gp-component-id-tGzUnC7EiL { display: flex;flex-direction: column; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-tGzUnC7EiL { display: flex;flex-direction: column; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-tGzUnC7EiL { display: flex;flex-direction: column; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-tGzUnC7EiL { display: flex;flex-direction: column; } } @media (min-width: 1200px) { .gp-component-id-tGzUnC7EiL { display: flex;flex-direction: column; } } @media (max-width: 639px) { .gp-component-id-Y9ysnemKk { 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: auto;height: auto;flex-direction: column;align-items: flex-end;display: flex;position: relative;list-style-type: inherit;list-style-position: inside; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-Y9ysnemKk { 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: auto;height: auto;flex-direction: column;align-items: flex-end;display: flex;position: relative;list-style-type: inherit;list-style-position: inside; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-Y9ysnemKk { 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: auto;height: auto;flex-direction: column;align-items: flex-end;display: flex;position: relative;list-style-type: inherit;list-style-position: inside; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-Y9ysnemKk { 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: auto;height: auto;flex-direction: column;align-items: flex-end;display: flex;position: relative;list-style-type: inherit;list-style-position: inside; } } @media (min-width: 1200px) { .gp-component-id-Y9ysnemKk { 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: auto;height: auto;flex-direction: column;align-items: flex-end;display: flex;position: relative;list-style-type: inherit;list-style-position: inside; } } .gp-component-id-NeyFCL5X0T { padding-left: 8px;width: 100%;padding-right: 8px; } @media (max-width: 639px) { .gp-component-id-NeyFCL5X0T { padding-left: 8px;width: 100%;padding-right: 8px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-NeyFCL5X0T { padding-left: 8px;width: 100%;padding-right: 8px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-NeyFCL5X0T { padding-left: 8px;width: 100%;padding-right: 8px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-NeyFCL5X0T { padding-left: 8px;width: 100%;padding-right: 8px; } } @media (min-width: 1200px) { .gp-component-id-NeyFCL5X0T { padding-left: 8px;width: 100%;padding-right: 8px; } } .gp-component-id-mXprYZsWH { margin-left: -8px;margin-right: -8px; } @media (max-width: 639px) { .gp-component-id-mXprYZsWH { margin-left: -8px;margin-right: -8px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-mXprYZsWH { margin-left: -8px;margin-right: -8px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-mXprYZsWH { margin-left: -8px;margin-right: -8px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-mXprYZsWH { margin-left: -8px;margin-right: -8px; } } @media (min-width: 1200px) { .gp-component-id-mXprYZsWH { margin-left: -8px;margin-right: -8px; } } @media (max-width: 639px) { .gp-component-id-X8tPOVx8f { width: 100%;padding-right: 8px;padding-left: 8px;border-bottom-color: rgba(255, 255, 255, 0);border-top-color: rgba(255, 255, 255, 0);border-right-color: rgba(255, 255, 255, 0);border-left-color: rgba(255, 255, 255, 0); } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-X8tPOVx8f { width: 100%;padding-right: 8px;padding-left: 8px;border-bottom-color: rgba(255, 255, 255, 0);border-top-color: rgba(255, 255, 255, 0);border-right-color: rgba(255, 255, 255, 0);border-left-color: rgba(255, 255, 255, 0); } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-X8tPOVx8f { width: 100%;padding-right: 8px;padding-left: 8px;border-bottom-color: rgba(255, 255, 255, 0);border-top-color: rgba(255, 255, 255, 0);border-right-color: rgba(255, 255, 255, 0);border-left-color: rgba(255, 255, 255, 0); } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-X8tPOVx8f { width: 100%;padding-right: 8px;padding-left: 8px;border-bottom-color: rgba(255, 255, 255, 0);border-top-color: rgba(255, 255, 255, 0);border-right-color: rgba(255, 255, 255, 0);border-left-color: rgba(255, 255, 255, 0); } } @media (min-width: 1200px) { .gp-component-id-X8tPOVx8f { width: 100%;padding-right: 8px;padding-left: 8px;border-bottom-color: rgba(255, 255, 255, 0);border-top-color: rgba(255, 255, 255, 0);border-right-color: rgba(255, 255, 255, 0);border-left-color: rgba(255, 255, 255, 0); } } .gp-component-id-q9M60IIp3G { padding-left: 8px;width: 100%;padding-right: 8px; } @media (max-width: 639px) { .gp-component-id-q9M60IIp3G { padding-left: 8px;width: 100%;padding-right: 8px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-q9M60IIp3G { padding-left: 8px;width: 100%;padding-right: 8px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-q9M60IIp3G { padding-left: 8px;width: 100%;padding-right: 8px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-q9M60IIp3G { padding-left: 8px;width: 100%;padding-right: 8px; } } @media (min-width: 1200px) { .gp-component-id-q9M60IIp3G { padding-left: 8px;width: 100%;padding-right: 8px; } } .gp-component-id-mUHE0QtZ6 { margin-left: -8px;margin-right: -8px; } @media (max-width: 639px) { .gp-component-id-mUHE0QtZ6 { margin-left: -8px;margin-right: -8px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-mUHE0QtZ6 { margin-left: -8px;margin-right: -8px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-mUHE0QtZ6 { margin-left: -8px;margin-right: -8px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-mUHE0QtZ6 { margin-left: -8px;margin-right: -8px; } } @media (min-width: 1200px) { .gp-component-id-mUHE0QtZ6 { margin-left: -8px;margin-right: -8px; } } .gp-component-id-08GsIK4fR { padding-left: 8px;width: 100%;padding-right: 8px; } @media (max-width: 639px) { .gp-component-id-08GsIK4fR { padding-left: 8px;width: 100%;padding-right: 8px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-08GsIK4fR { padding-left: 8px;width: 100%;padding-right: 8px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-08GsIK4fR { padding-left: 8px;width: 100%;padding-right: 8px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-08GsIK4fR { padding-left: 8px;width: 100%;padding-right: 8px; } } @media (min-width: 1200px) { .gp-component-id-08GsIK4fR { padding-left: 8px;width: 100%;padding-right: 8px; } } .gp-component-id-0NSK6C8Z3k { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word; } @media (max-width: 639px) { .gp-component-id-0NSK6C8Z3k { 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-0NSK6C8Z3k { 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-0NSK6C8Z3k { 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-0NSK6C8Z3k { 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-0NSK6C8Z3k { 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-Eh8azGzn5 { flex-direction: column;display: flex; } @media (max-width: 639px) { .gp-component-id-Eh8azGzn5 { flex-direction: column;display: flex; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-Eh8azGzn5 { flex-direction: column;display: flex; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-Eh8azGzn5 { flex-direction: column;display: flex; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-Eh8azGzn5 { flex-direction: column;display: flex; } } @media (min-width: 1200px) { .gp-component-id-Eh8azGzn5 { flex-direction: column;display: flex; } } .gp-component-id-onX6L0UE5 { padding-top: 16px;padding-right: 0px;padding-bottom: 16px;padding-left: 16px;list-style-position: inside;list-style-type: inherit;margin-top: 0px;margin-right: 0px;margin-bottom: 16px;margin-left: 0px; } @media (max-width: 639px) { .gp-component-id-onX6L0UE5 { padding-top: 16px;padding-right: 0px;padding-bottom: 16px;padding-left: 16px;list-style-position: inside;list-style-type: inherit;margin-top: 0px;margin-right: 0px;margin-bottom: 16px;margin-left: 0px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-onX6L0UE5 { padding-top: 16px;padding-right: 0px;padding-bottom: 16px;padding-left: 16px;list-style-position: inside;list-style-type: inherit;margin-top: 0px;margin-right: 0px;margin-bottom: 16px;margin-left: 0px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-onX6L0UE5 { padding-top: 16px;padding-right: 0px;padding-bottom: 16px;padding-left: 16px;list-style-position: inside;list-style-type: inherit;margin-top: 0px;margin-right: 0px;margin-bottom: 16px;margin-left: 0px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-onX6L0UE5 { padding-top: 16px;padding-right: 0px;padding-bottom: 16px;padding-left: 16px;list-style-position: inside;list-style-type: inherit;margin-top: 0px;margin-right: 0px;margin-bottom: 16px;margin-left: 0px; } } @media (min-width: 1200px) { .gp-component-id-onX6L0UE5 { padding-top: 16px;padding-right: 0px;padding-bottom: 16px;padding-left: 16px;list-style-position: inside;list-style-type: inherit;margin-top: 0px;margin-right: 0px;margin-bottom: 16px;margin-left: 0px; } } .gp-component-id-g07mIsn_EN { 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-g07mIsn_EN { margin-left: 0px;margin-bottom: 20px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-weight: inherit !important;font-size: 40px !important;font-family: Outfit !important;padding-top: 20px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-g07mIsn_EN { margin-left: 0px;margin-bottom: 20px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-weight: inherit !important;font-size: 40px !important;font-family: Outfit !important;padding-top: 20px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-g07mIsn_EN { margin-left: 0px;margin-bottom: 20px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-weight: inherit !important;font-size: 40px !important;font-family: Outfit !important;padding-top: 20px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-g07mIsn_EN { margin-left: 0px;margin-bottom: 20px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-weight: inherit !important;font-size: 40px !important;font-family: Outfit !important;padding-top: 20px; } } @media (min-width: 1200px) { .gp-component-id-g07mIsn_EN { margin-left: 0px;margin-bottom: 20px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-weight: inherit !important;font-size: 40px !important;font-family: Outfit !important;padding-top: 20px; } } .gp-component-id-RNJpD19Ye { display: flex;flex-direction: column; } @media (max-width: 639px) { .gp-component-id-RNJpD19Ye { display: flex;flex-direction: column; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-RNJpD19Ye { display: flex;flex-direction: column; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-RNJpD19Ye { display: flex;flex-direction: column; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-RNJpD19Ye { display: flex;flex-direction: column; } } @media (min-width: 1200px) { .gp-component-id-RNJpD19Ye { display: flex;flex-direction: column; } } .gp-component-id-edETzVtki { object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;max-width: 100%;height: auto;border-top-style: solid;border-right-style: solid;border-bottom-style: solid;border-left-style: solid; } @media (max-width: 639px) { .gp-component-id-edETzVtki { object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;max-width: 100%;height: auto;border-top-style: solid;border-right-style: solid;border-bottom-style: solid;border-left-style: solid;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-edETzVtki { object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;max-width: 100%;height: auto;border-top-style: solid;border-right-style: solid;border-bottom-style: solid;border-left-style: solid;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-edETzVtki { object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;max-width: 100%;height: auto;border-top-style: solid;border-right-style: solid;border-bottom-style: solid;border-left-style: solid;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-edETzVtki { object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;max-width: 100%;height: auto;border-top-style: solid;border-right-style: solid;border-bottom-style: solid;border-left-style: solid;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px; } } @media (min-width: 1200px) { .gp-component-id-edETzVtki { object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;max-width: 100%;height: auto;border-top-style: solid;border-right-style: solid;border-bottom-style: solid;border-left-style: solid;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px; } } .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: auto;margin-bottom: 30px;margin-right: auto;margin-top: 20px;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: auto;margin-bottom: 30px;margin-right: auto;margin-top: 20px;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: auto;margin-bottom: 30px;margin-right: auto;margin-top: 20px;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: auto;margin-bottom: 30px;margin-right: auto;margin-top: 20px;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: auto;margin-bottom: 30px;margin-right: auto;margin-top: 20px;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 { display: flex;flex-direction: column; } @media (max-width: 639px) { .gp-component-id-e0beQkVk5 { display: flex;flex-direction: column; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-e0beQkVk5 { display: flex;flex-direction: column; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-e0beQkVk5 { display: flex;flex-direction: column; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-e0beQkVk5 { display: flex;flex-direction: column; } } @media (min-width: 1200px) { .gp-component-id-e0beQkVk5 { display: flex;flex-direction: column; } } .gp-component-id-NuNy0YclX { 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-NuNy0YclX { margin-left: 0px;margin-bottom: 20px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-weight: inherit !important;font-size: 40px !important;font-family: Outfit !important;padding-top: 20px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-NuNy0YclX { margin-left: 0px;margin-bottom: 20px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-weight: inherit !important;font-size: 40px !important;font-family: Outfit !important;padding-top: 20px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-NuNy0YclX { margin-left: 0px;margin-bottom: 20px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-weight: inherit !important;font-size: 40px !important;font-family: Outfit !important;padding-top: 20px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-NuNy0YclX { margin-left: 0px;margin-bottom: 20px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-weight: inherit !important;font-size: 40px !important;font-family: Outfit !important;padding-top: 20px; } } @media (min-width: 1200px) { .gp-component-id-NuNy0YclX { margin-left: 0px;margin-bottom: 20px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-weight: inherit !important;font-size: 40px !important;font-family: Outfit !important;padding-top: 20px; } } .gp-component-id-S549_VAae { display: flex;flex-direction: column; } @media (max-width: 639px) { .gp-component-id-S549_VAae { display: flex;flex-direction: column; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-S549_VAae { display: flex;flex-direction: column; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-S549_VAae { display: flex;flex-direction: column; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-S549_VAae { display: flex;flex-direction: column; } } @media (min-width: 1200px) { .gp-component-id-S549_VAae { display: flex;flex-direction: column; } } .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 { display: flex;flex-direction: column; } @media (max-width: 639px) { .gp-component-id-Js0pjU417 { display: flex;flex-direction: column; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-Js0pjU417 { display: flex;flex-direction: column; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-Js0pjU417 { display: flex;flex-direction: column; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-Js0pjU417 { display: flex;flex-direction: column; } } @media (min-width: 1200px) { .gp-component-id-Js0pjU417 { display: flex;flex-direction: column; } } .gp-component-id-_1ZEjInOEF { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: 100%;font-family: inherit;overflow-y: visible;overflow-x: visible;text-transform: none;appearance: button;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;background-color: transparent;background-clip: initial;background-origin: initial;background-attachment: initial;background-repeat: initial;background-size: initial;background-position-y: initial;background-position-x: initial;background-image: initial;cursor: pointer; } .gp-component-id-_1ZEjInOEF:focus,.gp-component-id-_1ZEjInOEF.gp-focus { outline-width: 5px;outline-style: auto;outline-color: -webkit-focus-ring-color; } @media (max-width: 639px) { .gp-component-id-_1ZEjInOEF { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: 22px !important;font-family: inherit !important;overflow-y: visible;overflow-x: visible;text-transform: none;appearance: button;padding-left: 36px;padding-bottom: 24px;padding-right: 36px;padding-top: 24px;background-color: rgb(16, 185, 129);background-clip: initial;background-origin: initial;background-attachment: initial;background-repeat: initial;background-size: initial;background-position-y: initial;background-position-x: initial;background-image: initial;cursor: pointer;font-weight: 400 !important;display: inline-block;width: 100%;border-bottom-right-radius: 33px;border-bottom-left-radius: 33px;border-top-right-radius: 33px;border-top-left-radius: 33px;color: rgb(255, 255, 255); } .gp-component-id-_1ZEjInOEF:focus,.gp-component-id-_1ZEjInOEF.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-_1ZEjInOEF { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: 22px !important;font-family: inherit !important;overflow-y: visible;overflow-x: visible;text-transform: none;appearance: button;padding-left: 36px;padding-bottom: 24px;padding-right: 36px;padding-top: 24px;background-color: rgb(16, 185, 129);background-clip: initial;background-origin: initial;background-attachment: initial;background-repeat: initial;background-size: initial;background-position-y: initial;background-position-x: initial;background-image: initial;cursor: pointer;font-weight: 400 !important;display: inline-block;width: 100%;border-bottom-right-radius: 33px;border-bottom-left-radius: 33px;border-top-right-radius: 33px;border-top-left-radius: 33px;color: rgb(255, 255, 255); } .gp-component-id-_1ZEjInOEF:focus,.gp-component-id-_1ZEjInOEF.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-_1ZEjInOEF { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: 22px !important;font-family: inherit !important;overflow-y: visible;overflow-x: visible;text-transform: none;appearance: button;padding-left: 36px;padding-bottom: 24px;padding-right: 36px;padding-top: 24px;background-color: rgb(16, 185, 129);background-clip: initial;background-origin: initial;background-attachment: initial;background-repeat: initial;background-size: initial;background-position-y: initial;background-position-x: initial;background-image: initial;cursor: pointer;font-weight: 400 !important;display: inline-block;width: 100%;border-bottom-right-radius: 33px;border-bottom-left-radius: 33px;border-top-right-radius: 33px;border-top-left-radius: 33px;color: rgb(255, 255, 255); } .gp-component-id-_1ZEjInOEF:focus,.gp-component-id-_1ZEjInOEF.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-_1ZEjInOEF { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: 22px !important;font-family: inherit !important;overflow-y: visible;overflow-x: visible;text-transform: none;appearance: button;padding-left: 36px;padding-bottom: 24px;padding-right: 36px;padding-top: 24px;background-color: rgb(16, 185, 129);background-clip: initial;background-origin: initial;background-attachment: initial;background-repeat: initial;background-size: initial;background-position-y: initial;background-position-x: initial;background-image: initial;cursor: pointer;font-weight: 400 !important;display: inline-block;width: 100%;border-bottom-right-radius: 33px;border-bottom-left-radius: 33px;border-top-right-radius: 33px;border-top-left-radius: 33px;color: rgb(255, 255, 255); } .gp-component-id-_1ZEjInOEF:focus,.gp-component-id-_1ZEjInOEF.gp-focus { outline-width: 5px;outline-style: auto;outline-color: -webkit-focus-ring-color; } } @media (min-width: 1200px) { .gp-component-id-_1ZEjInOEF { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: 22px !important;font-family: inherit !important;overflow-y: visible;overflow-x: visible;text-transform: none;appearance: button;padding-left: 36px;padding-bottom: 24px;padding-right: 36px;padding-top: 24px;background-color: rgb(16, 185, 129);background-clip: initial;background-origin: initial;background-attachment: initial;background-repeat: initial;background-size: initial;background-position-y: initial;background-position-x: initial;background-image: initial;cursor: pointer;font-weight: 400 !important;display: inline-block;width: 100%;border-bottom-right-radius: 33px;border-bottom-left-radius: 33px;border-top-right-radius: 33px;border-top-left-radius: 33px;color: rgb(255, 255, 255); } .gp-component-id-_1ZEjInOEF:focus,.gp-component-id-_1ZEjInOEF.gp-focus { outline-width: 5px;outline-style: auto;outline-color: -webkit-focus-ring-color; } } .gp-component-id-TtCFFTAOIE { 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-TtCFFTAOIE { margin-left: 0px;margin-bottom: 20px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-weight: 400 !important;font-size: 40px !important;font-family: Outfit !important;text-align: center; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-TtCFFTAOIE { margin-left: 0px;margin-bottom: 20px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-weight: 400 !important;font-size: 40px !important;font-family: Outfit !important;text-align: center; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-TtCFFTAOIE { margin-left: 0px;margin-bottom: 20px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-weight: 400 !important;font-size: 40px !important;font-family: Outfit !important;text-align: center; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-TtCFFTAOIE { margin-left: 0px;margin-bottom: 20px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-weight: 400 !important;font-size: 40px !important;font-family: Outfit !important;text-align: center; } } @media (min-width: 1200px) { .gp-component-id-TtCFFTAOIE { margin-left: 0px;margin-bottom: 20px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-weight: 400 !important;font-size: 40px !important;font-family: Outfit !important;text-align: center; } } .gp-component-id-VJ6q3fLB9w { flex-direction: column;display: flex; } @media (max-width: 639px) { .gp-component-id-VJ6q3fLB9w { flex-direction: column;display: flex; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-VJ6q3fLB9w { flex-direction: column;display: flex; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-VJ6q3fLB9w { flex-direction: column;display: flex; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-VJ6q3fLB9w { flex-direction: column;display: flex; } } @media (min-width: 1200px) { .gp-component-id-VJ6q3fLB9w { flex-direction: column;display: flex; } } .gp-component-id-FB5fmyulY { position: relative; } @media (max-width: 639px) { .gp-component-id-FB5fmyulY { position: relative;list-style-position: inside;list-style-type: inherit;display: flex;align-items: flex-end;flex-direction: column;height: auto;width: auto;padding-bottom: 24px;padding-top: 24px;padding-right: 24px;padding-left: 24px;margin-bottom: 16px;margin-top: 0px;margin-right: 0px;margin-left: 0px;background-color: rgb(255, 255, 255);border-bottom-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-top-right-radius: 5.6px;border-top-left-radius: 5.6px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-FB5fmyulY { position: relative;list-style-position: inside;list-style-type: inherit;display: flex;align-items: flex-end;flex-direction: column;height: auto;width: auto;padding-bottom: 56px;padding-top: 56px;padding-right: 56px;padding-left: 56px;margin-bottom: 16px;margin-top: 0px;margin-right: 0px;margin-left: 0px;background-color: rgb(255, 255, 255);border-bottom-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-top-right-radius: 5.6px;border-top-left-radius: 5.6px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-FB5fmyulY { position: relative;list-style-position: inside;list-style-type: inherit;display: flex;align-items: flex-end;flex-direction: column;height: auto;width: auto;padding-bottom: 56px;padding-top: 56px;padding-right: 56px;padding-left: 56px;margin-bottom: 16px;margin-top: 0px;margin-right: 0px;margin-left: 0px;background-color: rgb(255, 255, 255);border-bottom-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-top-right-radius: 5.6px;border-top-left-radius: 5.6px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-FB5fmyulY { position: relative;list-style-position: inside;list-style-type: inherit;display: flex;align-items: flex-end;flex-direction: column;height: auto;width: auto;padding-bottom: 56px;padding-top: 56px;padding-right: 56px;padding-left: 56px;margin-bottom: 16px;margin-top: 0px;margin-right: 0px;margin-left: 0px;background-color: rgb(255, 255, 255);border-bottom-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-top-right-radius: 5.6px;border-top-left-radius: 5.6px; } } @media (min-width: 1200px) { .gp-component-id-FB5fmyulY { position: relative;list-style-position: inside;list-style-type: inherit;display: flex;align-items: flex-end;flex-direction: column;height: auto;width: auto;padding-bottom: 56px;padding-top: 56px;padding-right: 56px;padding-left: 56px;margin-bottom: 16px;margin-top: 0px;margin-right: 0px;margin-left: 0px;background-color: rgb(255, 255, 255);border-bottom-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-top-right-radius: 5.6px;border-top-left-radius: 5.6px; } } .gp-component-id-2dWQh9lxK { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word; } @media (max-width: 639px) { .gp-component-id-2dWQh9lxK { margin-left: 0px;margin-bottom: 2px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-style: italic !important;font-family: "Plus Jakarta Sans" !important;font-size: 22px !important;text-decoration-line: inherit;padding-bottom: 10px;padding-top: 10px;padding-right: 20px;padding-left: 20px;background-color: rgba(16, 185, 129, 0.3); } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-2dWQh9lxK { margin-left: 0px;margin-bottom: 2px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-style: italic !important;font-family: "Plus Jakarta Sans" !important;font-size: 22px !important;text-decoration-line: inherit;padding-bottom: 10px;padding-top: 10px;padding-right: 20px;padding-left: 20px;background-color: rgba(16, 185, 129, 0.3); } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-2dWQh9lxK { margin-left: 0px;margin-bottom: 2px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-style: italic !important;font-family: "Plus Jakarta Sans" !important;font-size: 22px !important;text-decoration-line: inherit;padding-bottom: 10px;padding-top: 10px;padding-right: 20px;padding-left: 20px;background-color: rgba(16, 185, 129, 0.3); } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-2dWQh9lxK { margin-left: 0px;margin-bottom: 2px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-style: italic !important;font-family: "Plus Jakarta Sans" !important;font-size: 22px !important;text-decoration-line: inherit;padding-bottom: 10px;padding-top: 10px;padding-right: 20px;padding-left: 20px;background-color: rgba(16, 185, 129, 0.3); } } @media (min-width: 1200px) { .gp-component-id-2dWQh9lxK { margin-left: 0px;margin-bottom: 2px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-style: italic !important;font-family: "Plus Jakarta Sans" !important;font-size: 22px !important;text-decoration-line: inherit;padding-bottom: 10px;padding-top: 10px;padding-right: 20px;padding-left: 20px;background-color: rgba(16, 185, 129, 0.3); } } .gp-component-id-W5mGNBt7ui { flex-direction: column;display: flex; } @media (max-width: 639px) { .gp-component-id-W5mGNBt7ui { flex-direction: column;display: flex; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-W5mGNBt7ui { flex-direction: column;display: flex; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-W5mGNBt7ui { flex-direction: column;display: flex; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-W5mGNBt7ui { flex-direction: column;display: flex; } } @media (min-width: 1200px) { .gp-component-id-W5mGNBt7ui { 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 { width: 75%;flex-direction: column;align-items: center;display: flex; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-RDbgPuw8i { width: 75%;flex-direction: column;align-items: center;display: flex; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-RDbgPuw8i { width: 75%;flex-direction: column;align-items: center;display: flex; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-RDbgPuw8i { width: 75%;flex-direction: column;align-items: center;display: flex; } } @media (min-width: 1200px) { .gp-component-id-RDbgPuw8i { width: 75%;flex-direction: column;align-items: center;display: flex; } } .gp-component-id-i4YgtG5so6 { z-index: 15;position: relative; } @media (max-width: 639px) { .gp-component-id-i4YgtG5so6 { z-index: 15;position: relative;display: flex;align-items: center;flex-direction: column;width: 100%;padding-left: 0px;margin-right: auto;margin-left: auto;border-bottom-color: rgba(255, 255, 255, 0);border-top-color: rgba(255, 255, 255, 0);border-right-color: rgba(255, 255, 255, 0);border-left-color: rgba(255, 255, 255, 0); } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-i4YgtG5so6 { z-index: 15;position: relative;display: flex;align-items: center;flex-direction: column;max-width: 640px;width: 100%;padding-left: 0px;margin-right: auto;margin-left: auto;border-bottom-color: rgba(255, 255, 255, 0);border-top-color: rgba(255, 255, 255, 0);border-right-color: rgba(255, 255, 255, 0);border-left-color: rgba(255, 255, 255, 0); } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-i4YgtG5so6 { z-index: 15;position: relative;display: flex;align-items: center;flex-direction: column;max-width: 768px;width: 100%;padding-left: 0px;margin-right: auto;margin-left: auto;border-bottom-color: rgba(255, 255, 255, 0);border-top-color: rgba(255, 255, 255, 0);border-right-color: rgba(255, 255, 255, 0);border-left-color: rgba(255, 255, 255, 0); } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-i4YgtG5so6 { z-index: 15;position: relative;display: flex;align-items: center;flex-direction: column;max-width: 992px;width: 100%;padding-left: 0px;margin-right: auto;margin-left: auto;border-bottom-color: rgba(255, 255, 255, 0);border-top-color: rgba(255, 255, 255, 0);border-right-color: rgba(255, 255, 255, 0);border-left-color: rgba(255, 255, 255, 0); } } @media (min-width: 1200px) { .gp-component-id-i4YgtG5so6 { z-index: 15;position: relative;display: flex;align-items: center;flex-direction: column;max-width: 1200px;width: 100%;padding-left: 0px;margin-right: auto;margin-left: auto;border-bottom-color: rgba(255, 255, 255, 0);border-top-color: rgba(255, 255, 255, 0);border-right-color: rgba(255, 255, 255, 0);border-left-color: rgba(255, 255, 255, 0); } } .gp-component-id-T85Pu0Yv_ { z-index: auto;position: relative;min-height: 50px; } @media (max-width: 639px) { .gp-component-id-T85Pu0Yv_ { z-index: auto !important;position: relative;min-height: 50px;padding-top: 72px;padding-bottom: 72px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-T85Pu0Yv_ { z-index: auto !important;position: relative;min-height: 50px;padding-top: 72px;padding-bottom: 72px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-T85Pu0Yv_ { z-index: auto !important;position: relative;min-height: 50px;padding-top: 72px;padding-bottom: 72px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-T85Pu0Yv_ { z-index: auto !important;position: relative;min-height: 50px;padding-top: 72px;padding-bottom: 72px; } } @media (min-width: 1200px) { .gp-component-id-T85Pu0Yv_ { z-index: auto !important;position: relative;min-height: 50px;padding-top: 34px;padding-bottom: 72px; } } @media (max-width: 639px) { .gp-component-id-NHz9bzYaB { margin-top: 20px;width: 100%; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-NHz9bzYaB { margin-top: 20px;width: 100%; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-NHz9bzYaB { margin-top: 20px;width: 100%; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-NHz9bzYaB { margin-top: 20px;width: 100%; } } @media (min-width: 1200px) { .gp-component-id-NHz9bzYaB { margin-top: 20px;width: 100%; } } .gp-component-id-nplPUlyXB { overflow-wrap: break-word;margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: inherit;font-weight: inherit; } @media (max-width: 639px) { .gp-component-id-nplPUlyXB { overflow-wrap: break-word;margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 40px !important;font-weight: inherit !important;font-family: Outfit !important;text-align: center;padding-bottom: 30px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-nplPUlyXB { overflow-wrap: break-word;margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 40px !important;font-weight: inherit !important;font-family: Outfit !important;text-align: center;padding-bottom: 30px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-nplPUlyXB { overflow-wrap: break-word;margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 40px !important;font-weight: inherit !important;font-family: Outfit !important;text-align: center;padding-bottom: 30px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-nplPUlyXB { overflow-wrap: break-word;margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 40px !important;font-weight: inherit !important;font-family: Outfit !important;text-align: center;padding-bottom: 30px; } } @media (min-width: 1200px) { .gp-component-id-nplPUlyXB { overflow-wrap: break-word;margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 40px !important;font-weight: inherit !important;font-family: Outfit !important;text-align: center;padding-bottom: 30px; } } .gp-component-id-BVqsAM0KmS { display: flex;flex-direction: column; } @media (max-width: 639px) { .gp-component-id-BVqsAM0KmS { display: flex;flex-direction: column; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-BVqsAM0KmS { display: flex;flex-direction: column; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-BVqsAM0KmS { display: flex;flex-direction: column; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-BVqsAM0KmS { display: flex;flex-direction: column; } } @media (min-width: 1200px) { .gp-component-id-BVqsAM0KmS { display: flex;flex-direction: column; } } .gp-component-id-N2oOKf5KGF { z-index: 15;position: relative; } @media (max-width: 639px) { .gp-component-id-N2oOKf5KGF { z-index: 15;position: relative;display: flex;align-items: center;flex-direction: column;width: 100%;margin-right: auto;margin-left: auto;background-color: rgb(255, 255, 255); } .gp-component-id-N2oOKf5KGF:active,.gp-component-id-N2oOKf5KGF.gp-active { background-color: rgb(255, 255, 255); } .gp-component-id-N2oOKf5KGF:focus,.gp-component-id-N2oOKf5KGF.gp-focus { background-color: rgb(255, 255, 255); } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-N2oOKf5KGF { z-index: 15;position: relative;display: flex;align-items: center;flex-direction: column;max-width: 640px;width: 100%;margin-right: auto;margin-left: auto;background-color: rgb(255, 255, 255); } .gp-component-id-N2oOKf5KGF:active,.gp-component-id-N2oOKf5KGF.gp-active { background-color: rgb(255, 255, 255); } .gp-component-id-N2oOKf5KGF:focus,.gp-component-id-N2oOKf5KGF.gp-focus { background-color: rgb(255, 255, 255); } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-N2oOKf5KGF { z-index: 15;position: relative;display: flex;align-items: center;flex-direction: column;max-width: 768px;width: 100%;margin-right: auto;margin-left: auto;background-color: rgb(255, 255, 255); } .gp-component-id-N2oOKf5KGF:active,.gp-component-id-N2oOKf5KGF.gp-active { background-color: rgb(255, 255, 255); } .gp-component-id-N2oOKf5KGF:focus,.gp-component-id-N2oOKf5KGF.gp-focus { background-color: rgb(255, 255, 255); } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-N2oOKf5KGF { z-index: 15;position: relative;display: flex;align-items: center;flex-direction: column;max-width: 992px;width: 100%;margin-right: auto;margin-left: auto;background-color: rgb(255, 255, 255); } .gp-component-id-N2oOKf5KGF:active,.gp-component-id-N2oOKf5KGF.gp-active { background-color: rgb(255, 255, 255); } .gp-component-id-N2oOKf5KGF:focus,.gp-component-id-N2oOKf5KGF.gp-focus { background-color: rgb(255, 255, 255); } } @media (min-width: 1200px) { .gp-component-id-N2oOKf5KGF { z-index: 15;position: relative;display: flex;align-items: center;flex-direction: column;max-width: 1200px;width: 100%;margin-right: auto;margin-left: auto;background-color: rgb(255, 255, 255); } .gp-component-id-N2oOKf5KGF:active,.gp-component-id-N2oOKf5KGF.gp-active { background-color: rgb(255, 255, 255); } .gp-component-id-N2oOKf5KGF:focus,.gp-component-id-N2oOKf5KGF.gp-focus { background-color: rgb(255, 255, 255); } } .gp-component-id-NPaBTLVuy { min-height: 50px;position: relative;z-index: auto; } @media (max-width: 639px) { .gp-component-id-NPaBTLVuy { min-height: 50px;position: relative;z-index: auto !important;padding-bottom: 24px;padding-top: 23px;margin-top: 40px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-NPaBTLVuy { min-height: 50px;position: relative;z-index: auto !important;padding-bottom: 24px;padding-top: 23px;margin-top: 40px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-NPaBTLVuy { min-height: 50px;position: relative;z-index: auto !important;padding-bottom: 24px;padding-top: 23px;margin-top: 40px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-NPaBTLVuy { min-height: 50px;position: relative;z-index: auto !important;padding-bottom: 24px;padding-top: 23px;margin-top: 40px; } } @media (min-width: 1200px) { .gp-component-id-NPaBTLVuy { min-height: 50px;position: relative;z-index: auto !important;padding-bottom: 24px;padding-top: 23px;margin-top: 40px; } } .gp-component-id-OQAjFQg5z { overflow-wrap: break-word;width: 100%; } @media (max-width: 639px) { .gp-component-id-OQAjFQg5z { overflow-wrap: break-word;width: 100%; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-OQAjFQg5z { overflow-wrap: break-word;width: 100%; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-OQAjFQg5z { overflow-wrap: break-word;width: 100%; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-OQAjFQg5z { overflow-wrap: break-word;width: 100%; } } @media (min-width: 1200px) { .gp-component-id-OQAjFQg5z { overflow-wrap: break-word;width: 100%; } } .gp-component-id-crYQtkvhce { z-index: 15;position: relative;width: 100%;margin-right: auto;margin-left: auto; } @media (max-width: 639px) { .gp-component-id-crYQtkvhce { z-index: 15;position: relative;width: 100%;margin-right: auto;margin-left: auto; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-crYQtkvhce { z-index: 15;position: relative;width: 100%;margin-right: auto;margin-left: auto;max-width: 640px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-crYQtkvhce { z-index: 15;position: relative;width: 100%;margin-right: auto;margin-left: auto;max-width: 768px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-crYQtkvhce { z-index: 15;position: relative;width: 100%;margin-right: auto;margin-left: auto;max-width: 992px; } } @media (min-width: 1200px) { .gp-component-id-crYQtkvhce { z-index: 15;position: relative;width: 100%;margin-right: auto;margin-left: auto;max-width: 1200px; } } .gp-component-id-J1jLpzRvxb.gp-component > [data-section-overlay] { z-index: 14;position: absolute;right: 0px;left: 0px;top: 0px;bottom: 0px; } @media (max-width: 639px) { .gp-component-id-J1jLpzRvxb.gp-component > [data-section-overlay] { z-index: 14;position: absolute;right: 0px;left: 0px;top: 0px;bottom: 0px;background-color: rgb(10, 27, 61); } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-J1jLpzRvxb.gp-component > [data-section-overlay] { z-index: 14;position: absolute;right: 0px;left: 0px;top: 0px;bottom: 0px;background-color: rgb(10, 27, 61); } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-J1jLpzRvxb.gp-component > [data-section-overlay] { z-index: 14;position: absolute;right: 0px;left: 0px;top: 0px;bottom: 0px;background-color: rgb(10, 27, 61); } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-J1jLpzRvxb.gp-component > [data-section-overlay] { z-index: 14;position: absolute;right: 0px;left: 0px;top: 0px;bottom: 0px;background-color: rgb(10, 27, 61); } } @media (min-width: 1200px) { .gp-component-id-J1jLpzRvxb.gp-component > [data-section-overlay] { z-index: 14;position: absolute;right: 0px;left: 0px;top: 0px;bottom: 0px;background-color: rgb(10, 27, 61); } } .gp-component-id-J1jLpzRvxb { min-height: 50px;position: relative;z-index: auto; } @media (max-width: 639px) { .gp-component-id-J1jLpzRvxb { min-height: 50px;position: relative;z-index: auto; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-J1jLpzRvxb { min-height: 50px;position: relative;z-index: auto; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-J1jLpzRvxb { min-height: 50px;position: relative;z-index: auto; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-J1jLpzRvxb { min-height: 50px;position: relative;z-index: auto; } } @media (min-width: 1200px) { .gp-component-id-J1jLpzRvxb { min-height: 50px;position: relative;z-index: auto; } }
