
      
    


      
     


      /* ============================================================
   PHENOM CENTRAL — CSS EFFECTS PACK (full)
   Paste this whole block into: Page Settings → Custom CSS.
   Then add the class name (no dot) in each element's
   "Element's Class" field — NOT the Custom CSS box.
   ============================================================ */

/* ---------- VARIABLES ---------- */
:root{
  --ph-bg:#0B0A0F; --ph-panel:#121019;
  --ph-lime:#b8fc70; --ph-lime-deep:#7fce3c;
  --ph-green:#305b02; --ph-green-h:#407c03;
  --ph-blue:#002277; --ph-blue-h:#003399; --ph-blue-t:#6f9bff;
  --ph-red:#cc2b2b;
  --ph-cream:#F6F0E6; --ph-dim:#A6A29D; --ph-faint:#6F6B69;
  --ph-border:#26242B; --ph-border-acc:#4A6B28;
}

/* ---------- FONTS ---------- */
.ph-display{ font-family:'Big Shoulders Display', sans-serif !important; }
.ph-body{ font-family:'Hanken Grotesk', sans-serif !important; }

/* ---------- HERO SPOTLIGHT GLOWS ---------- */
.ph-hero-glow{
  background-color:#0B0A0F !important;
  background-image:
    radial-gradient(620px circle at 6% -12%, rgba(184,252,112,.22), transparent 60%),
    radial-gradient(540px circle at 94% -4%,  rgba(64,124,3,.32),    transparent 60%),
    radial-gradient(520px circle at 50% 124%, rgba(111,155,255,.12), transparent 65%) !important;
}

/* ---------- FINAL CTA CENTRE GLOW ---------- */
.ph-cta-glow{
  background-color:#0B0A0F !important;
  background-image:radial-gradient(700px circle at 50% 50%, rgba(184,252,112,.16), transparent 62%) !important;
}

/* ---------- SECTION FADE (dark -> panel) ---------- */
.ph-section-fade{
  background:linear-gradient(180deg,#0B0A0F 0%, #121019 100%) !important;
}

/* ---------- FILM-GRAIN OVERLAY (subtle, optional) ---------- */
.ph-grain{position:relative;}
.ph-grain::before{
  content:"";position:absolute;inset:0;pointer-events:none;z-index:1;
  opacity:.05;mix-blend-mode:overlay;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- MARQUEE BULB ROW ----------
   Apply .ph-bulbs to a small EMPTY element on its OWN line above the
   eyebrow. The 5 dots are a fixed-width background so Groove cannot
   collapse or stack them. */
.ph-bulbs{
  display:block !important;
  width:89px !important; min-width:89px !important; max-width:89px !important;
  height:12px !important; min-height:0 !important;
  flex:0 0 auto !important; align-self:flex-start !important;
  padding:0 !important; border:0 !important;
  background-color:transparent !important; background-repeat:no-repeat !important;
  background-image:
    radial-gradient(circle 4px at 4px 50%,  #b8fc70 65%, transparent 67%),
    radial-gradient(circle 4px at 24px 50%, #6f9bff 65%, transparent 67%),
    radial-gradient(circle 4px at 44px 50%, #b8fc70 65%, transparent 67%),
    radial-gradient(circle 4px at 64px 50%, #7fce3c 65%, transparent 67%),
    radial-gradient(circle 4px at 84px 50%, #b8fc70 65%, transparent 67%) !important;
  filter:drop-shadow(0 0 5px rgba(184,252,112,.55));
  margin:0 0 22px 4px !important;
  animation:ph-flick 2.6s infinite ease-in-out;
}
@keyframes ph-flick{0%,100%{opacity:1}45%{opacity:.45}55%{opacity:.95}}
/* center the bulb row in its container (use with .ph-bulbs) */
.ph-bulbs-center{ margin-left:auto !important; margin-right:auto !important; }

/* ---------- BUTTONS ---------- */
.ph-btn-green,.ph-btn-blue,.ph-btn-ghost{
  display:inline-flex;align-items:center;gap:.5em;
  font-weight:700;font-size:15.5px;line-height:1;text-decoration:none;
  padding:14px 24px;border-radius:100px;border:1px solid transparent;cursor:pointer;
  transition:transform .25s cubic-bezier(.2,.8,.2,1),box-shadow .25s,background .25s,border-color .25s;
}
.ph-btn-green{background:#305b02 !important;color:#F6F0E6 !important;}
.ph-btn-green:hover{background:#407c03 !important;transform:translateY(-2px);box-shadow:0 16px 40px -14px rgba(184,252,112,.5);}
.ph-btn-blue{background:#002277 !important;color:#F6F0E6 !important;}
.ph-btn-blue:hover{background:#003399 !important;transform:translateY(-2px);box-shadow:0 16px 40px -14px rgba(111,155,255,.45);}
.ph-btn-ghost{background:transparent !important;color:#F6F0E6 !important;border-color:#26242B !important;}
.ph-btn-ghost:hover{border-color:#F6F0E6 !important;transform:translateY(-2px);}

/* ---------- CARDS (hover lift + top glow) ---------- */
.ph-card{
  position:relative;overflow:hidden;
  background:#121019 !important;border:1px solid #26242B;border-radius:18px;
  transition:transform .35s cubic-bezier(.2,.8,.2,1),border-color .35s,box-shadow .35s;
}
.ph-card:hover{transform:translateY(-6px);border-color:#3a3744;box-shadow:0 30px 60px -30px rgba(0,0,0,.8);}
.ph-card::before{
  content:"";position:absolute;inset:0;pointer-events:none;opacity:0;transition:opacity .4s;
  background:radial-gradient(420px circle at 50% -10%, rgba(184,252,112,.12), transparent 60%);
}
.ph-card:hover::before{opacity:1;}

/* ---------- HIGHLIGHTED "PHENOM WAY" CARD ---------- */
.ph-accent-border{
  border:1px solid #4A6B28 !important;
  background:rgba(184,252,112,.05) !important;
}

/* ---------- ICON CHIP (lime square) ---------- */
.ph-icon-chip{
  display:inline-grid;place-items:center;width:46px;height:46px;border-radius:12px;
  background:#b8fc70 !important;color:#14210a !important;font-weight:900;font-size:22px;
}

/* ---------- KICKER LABEL (dash beside text, left-aligned) ---------- */
.ph-kicker{
  display:flex !important;
  flex-direction:row !important;
  align-items:center !important;
  justify-content:flex-start !important;
  gap:10px !important;
  width:fit-content !important;
  margin:0 auto 0 0 !important;     /* keeps it left even inside a centered column */
  text-align:left !important;
  color:#b8fc70 !important;font-weight:700;font-size:12.5px;letter-spacing:.2em;text-transform:uppercase;
}
.ph-kicker::before{
  content:"" !important;
  display:block !important;
  flex:0 0 auto !important;
  width:26px !important;height:2px !important;
  background:#b8fc70 !important;
}

/* ---------- GLOWING HEADLINE LINE ---------- */
.ph-glow-text{color:#b8fc70 !important;text-shadow:0 0 40px rgba(184,252,112,.5);}

/* ---------- PROBLEM-AREA PANEL ----------
   Apply .ph-prob to each bordered mini-card in the Problem section
   (the container holding one X marker + its text). Set the text colours
   on the inner elements: X = #cc2b2b, bold lead-in = #F6F0E6, body = #A6A29D. */
.ph-prob{
  display:flex !important;
  gap:14px !important;
  align-items:flex-start !important;
  padding:16px 18px !important;
  background:rgba(255,255,255,.02) !important;
  border:1px solid #26242B !important;
  border-radius:14px !important;
}

/* ---------- WHY PANELS ----------
   Apply .ph-why to each card in the "Why Phenom" section.
   .ph-why-ic on the lime icon element; titles/body styled automatically,
   or use .ph-why-title / .ph-why-text on the inner elements directly. */
.ph-why{
  background:#121019 !important;
  border:1px solid #26242B !important;
  border-radius:18px;
  padding:30px !important;
  transition:transform .3s ease,border-color .3s ease;
}
.ph-why:hover{ transform:translateY(-4px); border-color:#3a3744 !important; }
.ph-why-ic{
  display:block;line-height:1;margin-bottom:14px;
  font-family:'Big Shoulders Display',sans-serif !important;
  font-weight:900;font-size:26px;color:#b8fc70 !important;
}
.ph-why h3, .ph-why-title{ color:#F6F0E6 !important; }
.ph-why p,  .ph-why-text{ color:#A6A29D !important; }

/* ---------- DIFFERENCE / COMPARISON PANELS ----------
   Apply .ph-diff to each column, PLUS .ph-diff-old (red) or
   .ph-diff-new (lime) for the variant — e.g. "ph-diff ph-diff-new".
   Headings, body and markers colour automatically; helper classes
   (.ph-diff-title / .ph-diff-text / .ph-diff-yes / .ph-diff-no) are
   there if you need to target inner elements directly. */
.ph-diff{
  border:1px solid #26242B !important;
  border-radius:18px;
  padding:32px !important;
}
.ph-diff-old{ background:rgba(204,43,43,.05) !important; }
.ph-diff-new{ background:rgba(184,252,112,.05) !important; border-color:#4A6B28 !important; }

/* headings */
.ph-diff h3, .ph-diff-title{ font-weight:800; margin-bottom:18px; }
.ph-diff-old h3, .ph-diff-old .ph-diff-title{ color:#cc2b2b !important; }
.ph-diff-new h3, .ph-diff-new .ph-diff-title{ color:#b8fc70 !important; }

/* body text */
.ph-diff p, .ph-diff li, .ph-diff-text{ color:#A6A29D !important; }

/* tick / cross markers */
.ph-diff-yes{ color:#b8fc70 !important; font-weight:800; }
.ph-diff-no { color:#cc2b2b !important; font-weight:800; }

/* ---------- DROPDOWN STACKING FIX ----------
   Fixes nav dropdowns rendering BEHIND the next section (e.g. the hero
   with ph-hero-glow / ph-grain, which create their own stacking context).
   Put ph-navsec on the SECTION/ROW that holds the nav embed.
   If the hero still wins, also put ph-herosec on the hero section. */
.ph-navsec{ position:relative !important; z-index:1000 !important; overflow:visible !important; }
.ph-herosec{ position:relative !important; z-index:1 !important; }

/* ---------- STICKY NAV WITH FROSTED BLUR ----------
   Apply .ph-nav to the nav block, and turn on Groove's Sticky option. */
.ph-nav{
  position:sticky;top:0;z-index:1000;
  background:rgba(11,10,15,.7) !important;
  -webkit-backdrop-filter:blur(14px); backdrop-filter:blur(14px);
  border-bottom:1px solid #26242B !important;
}

/* ---------- ANIMATED BETA-CARD BORDER (rotating gradient edge) ----------
   Apply alongside .ph-card on the Phenom Trivia card.
   Element's Class field:  ph-card ph-beta-border
   Uses ::after, so it coexists with .ph-card's ::before hover glow.
   On browsers without @property support the edge shows as a static
   gradient (no spin) — still looks good. */
@property --ph-angle{ syntax:'<angle>'; initial-value:0deg; inherits:false; }

.ph-beta-border{
  border-color:transparent !important;   /* gradient ring replaces the flat border */
}
.ph-beta-border::after{
  content:"" !important;
  position:absolute; inset:0;
  border-radius:inherit; padding:1px;
  background:conic-gradient(from var(--ph-angle,0deg),
    #002277, #6f9bff, #b8fc70, #6f9bff, #002277) !important;
  -webkit-mask:linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask:linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite:xor; mask-composite:exclude;
  pointer-events:none; z-index:2;
  animation:ph-angle-spin 6s linear infinite;
}
@keyframes ph-angle-spin{ to{ --ph-angle:360deg; } }

/* Simpler alternative — pulsing blue glow (works everywhere). To use this
   instead, delete the rotating block above and uncomment this:
.ph-beta-border{ border:1px solid #002277 !important; animation:ph-beta-pulse 3s ease-in-out infinite; }
@keyframes ph-beta-pulse{
  0%,100%{box-shadow:0 0 0 1px rgba(0,34,119,.6), 0 0 24px -8px rgba(111,155,255,.5);}
  50%    {box-shadow:0 0 0 1px rgba(111,155,255,.9), 0 0 42px -6px rgba(111,155,255,.85);}
}
*/

/* ---------- ANIMATED LINK UNDERLINE ("Learn more ->") ----------
   Apply .ph-link to text links / text CTAs. */
.ph-link{
  position:relative;color:#b8fc70 !important;font-weight:700;text-decoration:none !important;
  display:inline-flex;align-items:center;gap:.4em;
}
.ph-link::after{
  content:"";position:absolute;left:0;bottom:-3px;height:2px;width:100%;
  background:#b8fc70;transform:scaleX(0);transform-origin:left;transition:transform .25s ease;
}
.ph-link:hover::after{transform:scaleX(1);}
.ph-link:hover{color:#cdfd97 !important;}

/* ---------- DROPDOWN / MENU PANEL ----------
   Apply .ph-menu to a custom dropdown panel; .ph-menu-group on
   non-clickable heading rows; links inside style automatically. */
.ph-menu{
  background:#121019 !important;border:1px solid #26242B !important;border-radius:14px;
  padding:14px;box-shadow:0 30px 70px -30px rgba(0,0,0,.85);min-width:230px;
}
.ph-menu .ph-menu-group{
  display:block;margin:10px 8px 4px;font-size:11px;letter-spacing:.16em;text-transform:uppercase;
  color:#6F6B69;font-weight:700;
}
.ph-menu .ph-menu-group:first-child{margin-top:0;}
.ph-menu a{
  display:block;padding:8px 10px;border-radius:8px;color:#A6A29D !important;
  font-size:14.5px;font-weight:600;text-decoration:none;transition:background .2s,color .2s;
}
.ph-menu a:hover{background:rgba(184,252,112,.08);color:#b8fc70 !important;}

/* ---------- OPTIONAL: CSS FADE-UP ON SCROLL ----------
   Groove's built-in "Fade Up" is the easy route; this is a no-JS
   alternative for browsers that support scroll-driven animations. */
@supports (animation-timeline: view()){
  .ph-reveal{
    opacity:0;transform:translateY(28px);
    animation:ph-rise both;
    animation-timeline:view();
    animation-range:entry 0% entry 40%;
  }
}
@keyframes ph-rise{to{opacity:1;transform:none;}}

/* ---------- ACCESSIBILITY: respect reduced motion ---------- */
@media (prefers-reduced-motion:reduce){
  .ph-reveal{opacity:1 !important;transform:none !important;animation:none !important;}
  .ph-bulbs,.ph-beta-border{animation:none !important;}
  .ph-beta-border::after{animation:none !important;}
  .ph-link::after{transition:none !important;}
  .ph-card,.ph-btn-green,.ph-btn-blue,.ph-btn-ghost{transition:none !important;}
}
/* ============================================================
   PHENOM CENTRAL — CSS EFFECTS PACK (full)
   Paste this whole block into: Page Settings → Custom CSS.
   Then add the class name (no dot) in each element's
   "Element's Class" field — NOT the Custom CSS box.
   ============================================================ */

/* ---------- VARIABLES ---------- */
:root{
  --ph-bg:#0B0A0F; --ph-panel:#121019;
  --ph-lime:#b8fc70; --ph-lime-deep:#7fce3c;
  --ph-green:#305b02; --ph-green-h:#407c03;
  --ph-blue:#002277; --ph-blue-h:#003399; --ph-blue-t:#6f9bff;
  --ph-red:#cc2b2b;
  --ph-cream:#F6F0E6; --ph-dim:#A6A29D; --ph-faint:#6F6B69;
  --ph-border:#26242B; --ph-border-acc:#4A6B28;
}

/* ---------- FONTS ---------- */
.ph-display{ font-family:'Big Shoulders Display', sans-serif !important; }
.ph-body{ font-family:'Hanken Grotesk', sans-serif !important; }

/* ---------- HERO SPOTLIGHT GLOWS ---------- */
.ph-hero-glow{
  background-color:#0B0A0F !important;
  background-image:
    radial-gradient(620px circle at 6% -12%, rgba(184,252,112,.22), transparent 60%),
    radial-gradient(540px circle at 94% -4%,  rgba(64,124,3,.32),    transparent 60%),
    radial-gradient(520px circle at 50% 124%, rgba(111,155,255,.12), transparent 65%) !important;
}

/* ---------- FINAL CTA CENTRE GLOW ---------- */
.ph-cta-glow{
  background-color:#0B0A0F !important;
  background-image:radial-gradient(700px circle at 50% 50%, rgba(184,252,112,.16), transparent 62%) !important;
}

/* ---------- SECTION FADE (dark -> panel) ---------- */
.ph-section-fade{
  background:linear-gradient(180deg,#0B0A0F 0%, #121019 100%) !important;
}

/* ---------- FILM-GRAIN OVERLAY (subtle, optional) ---------- */
.ph-grain{position:relative;}
.ph-grain::before{
  content:"";position:absolute;inset:0;pointer-events:none;z-index:1;
  opacity:.05;mix-blend-mode:overlay;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- MARQUEE BULB ROW ----------
   Apply .ph-bulbs to a small EMPTY element on its OWN line above the
   eyebrow. The 5 dots are a fixed-width background so Groove cannot
   collapse or stack them. */
.ph-bulbs{
  display:block !important;
  width:89px !important; min-width:89px !important; max-width:89px !important;
  height:12px !important; min-height:0 !important;
  flex:0 0 auto !important; align-self:flex-start !important;
  padding:0 !important; border:0 !important;
  background-color:transparent !important; background-repeat:no-repeat !important;
  background-image:
    radial-gradient(circle 4px at 4px 50%,  #b8fc70 65%, transparent 67%),
    radial-gradient(circle 4px at 24px 50%, #6f9bff 65%, transparent 67%),
    radial-gradient(circle 4px at 44px 50%, #b8fc70 65%, transparent 67%),
    radial-gradient(circle 4px at 64px 50%, #7fce3c 65%, transparent 67%),
    radial-gradient(circle 4px at 84px 50%, #b8fc70 65%, transparent 67%) !important;
  filter:drop-shadow(0 0 5px rgba(184,252,112,.55));
  margin:0 0 22px 4px !important;
  animation:ph-flick 2.6s infinite ease-in-out;
}
@keyframes ph-flick{0%,100%{opacity:1}45%{opacity:.45}55%{opacity:.95}}
/* center the bulb row in its container (use with .ph-bulbs) */
.ph-bulbs-center{ margin-left:auto !important; margin-right:auto !important; }

/* ---------- BUTTONS ---------- */
.ph-btn-green,.ph-btn-blue,.ph-btn-ghost{
  display:inline-flex;align-items:center;gap:.5em;
  font-weight:700;font-size:15.5px;line-height:1;text-decoration:none;
  padding:14px 24px;border-radius:100px;border:1px solid transparent;cursor:pointer;
  transition:transform .25s cubic-bezier(.2,.8,.2,1),box-shadow .25s,background .25s,border-color .25s;
}
.ph-btn-green{background:#305b02 !important;color:#F6F0E6 !important;}
.ph-btn-green:hover{background:#407c03 !important;transform:translateY(-2px);box-shadow:0 16px 40px -14px rgba(184,252,112,.5);}
.ph-btn-blue{background:#002277 !important;color:#F6F0E6 !important;}
.ph-btn-blue:hover{background:#003399 !important;transform:translateY(-2px);box-shadow:0 16px 40px -14px rgba(111,155,255,.45);}
.ph-btn-ghost{background:transparent !important;color:#F6F0E6 !important;border-color:#26242B !important;}
.ph-btn-ghost:hover{border-color:#F6F0E6 !important;transform:translateY(-2px);}

/* ---------- CARDS (hover lift + top glow) ---------- */
.ph-card{
  position:relative;overflow:hidden;
  background:#121019 !important;border:1px solid #26242B;border-radius:18px;
  transition:transform .35s cubic-bezier(.2,.8,.2,1),border-color .35s,box-shadow .35s;
}
.ph-card:hover{transform:translateY(-6px);border-color:#3a3744;box-shadow:0 30px 60px -30px rgba(0,0,0,.8);}
.ph-card::before{
  content:"";position:absolute;inset:0;pointer-events:none;opacity:0;transition:opacity .4s;
  background:radial-gradient(420px circle at 50% -10%, rgba(184,252,112,.12), transparent 60%);
}
.ph-card:hover::before{opacity:1;}

/* ---------- HIGHLIGHTED "PHENOM WAY" CARD ---------- */
.ph-accent-border{
  border:1px solid #4A6B28 !important;
  background:rgba(184,252,112,.05) !important;
}

/* ---------- ICON CHIP (lime square) ---------- */
.ph-icon-chip{
  display:inline-grid;place-items:center;width:46px;height:46px;border-radius:12px;
  background:#b8fc70 !important;color:#14210a !important;font-weight:900;font-size:22px;
}

/* ---------- KICKER LABEL (dash beside text, left-aligned) ---------- */
.ph-kicker{
  display:flex !important;
  flex-direction:row !important;
  align-items:center !important;
  justify-content:flex-start !important;
  gap:10px !important;
  width:fit-content !important;
  margin:0 auto 0 0 !important;     /* keeps it left even inside a centered column */
  text-align:left !important;
  color:#b8fc70 !important;font-weight:700;font-size:12.5px;letter-spacing:.2em;text-transform:uppercase;
}
.ph-kicker::before{
  content:"" !important;
  display:block !important;
  flex:0 0 auto !important;
  width:26px !important;height:2px !important;
  background:#b8fc70 !important;
}

/* ---------- GLOWING HEADLINE LINE ---------- */
.ph-glow-text{color:#b8fc70 !important;text-shadow:0 0 40px rgba(184,252,112,.5);}

/* ---------- PROBLEM-AREA PANEL ----------
   Apply .ph-prob to each bordered mini-card in the Problem section
   (the container holding one X marker + its text). Set the text colours
   on the inner elements: X = #cc2b2b, bold lead-in = #F6F0E6, body = #A6A29D. */
.ph-prob{
  display:flex !important;
  gap:14px !important;
  align-items:flex-start !important;
  padding:16px 18px !important;
  background:rgba(255,255,255,.02) !important;
  border:1px solid #26242B !important;
  border-radius:14px !important;
}

/* ---------- WHY PANELS ----------
   Apply .ph-why to each card in the "Why Phenom" section.
   .ph-why-ic on the lime icon element; titles/body styled automatically,
   or use .ph-why-title / .ph-why-text on the inner elements directly. */
.ph-why{
  background:#121019 !important;
  border:1px solid #26242B !important;
  border-radius:18px;
  padding:30px !important;
  transition:transform .3s ease,border-color .3s ease;
}
.ph-why:hover{ transform:translateY(-4px); border-color:#3a3744 !important; }
.ph-why-ic{
  display:block;line-height:1;margin-bottom:14px;
  font-family:'Big Shoulders Display',sans-serif !important;
  font-weight:900;font-size:26px;color:#b8fc70 !important;
}
.ph-why h3, .ph-why-title{ color:#F6F0E6 !important; }
.ph-why p,  .ph-why-text{ color:#A6A29D !important; }

/* ---------- DIFFERENCE / COMPARISON PANELS ----------
   Apply .ph-diff to each column, PLUS .ph-diff-old (red) or
   .ph-diff-new (lime) for the variant — e.g. "ph-diff ph-diff-new".
   Headings, body and markers colour automatically; helper classes
   (.ph-diff-title / .ph-diff-text / .ph-diff-yes / .ph-diff-no) are
   there if you need to target inner elements directly. */
.ph-diff{
  border:1px solid #26242B !important;
  border-radius:18px;
  padding:32px !important;
}
.ph-diff-old{ background:rgba(204,43,43,.05) !important; }
.ph-diff-new{ background:rgba(184,252,112,.05) !important; border-color:#4A6B28 !important; }

/* headings */
.ph-diff h3, .ph-diff-title{ font-weight:800; margin-bottom:18px; }
.ph-diff-old h3, .ph-diff-old .ph-diff-title{ color:#cc2b2b !important; }
.ph-diff-new h3, .ph-diff-new .ph-diff-title{ color:#b8fc70 !important; }

/* body text */
.ph-diff p, .ph-diff li, .ph-diff-text{ color:#A6A29D !important; }

/* tick / cross markers */
.ph-diff-yes{ color:#b8fc70 !important; font-weight:800; }
.ph-diff-no { color:#cc2b2b !important; font-weight:800; }

/* ---------- DROPDOWN STACKING FIX ----------
   Fixes nav dropdowns rendering BEHIND the next section (e.g. the hero
   with ph-hero-glow / ph-grain, which create their own stacking context).
   Put ph-navsec on the SECTION/ROW that holds the nav embed.
   If the hero still wins, also put ph-herosec on the hero section. */
.ph-navsec{ position:relative !important; z-index:1000 !important; overflow:visible !important; }
.ph-herosec{ position:relative !important; z-index:1 !important; }

/* ---------- STICKY NAV WITH FROSTED BLUR ----------
   Apply .ph-nav to the nav block, and turn on Groove's Sticky option. */
.ph-nav{
  position:sticky;top:0;z-index:1000;
  background:rgba(11,10,15,.7) !important;
  -webkit-backdrop-filter:blur(14px); backdrop-filter:blur(14px);
  border-bottom:1px solid #26242B !important;
}

/* ---------- ANIMATED BETA-CARD BORDER (rotating gradient edge) ----------
   Apply alongside .ph-card on the Phenom Trivia card.
   Element's Class field:  ph-card ph-beta-border
   Uses ::after, so it coexists with .ph-card's ::before hover glow.
   On browsers without @property support the edge shows as a static
   gradient (no spin) — still looks good. */
@property --ph-angle{ syntax:'<angle>'; initial-value:0deg; inherits:false; }

.ph-beta-border{
  border-color:transparent !important;   /* gradient ring replaces the flat border */
}
.ph-beta-border::after{
  content:"" !important;
  position:absolute; inset:0;
  border-radius:inherit; padding:1px;
  background:conic-gradient(from var(--ph-angle,0deg),
    #002277, #6f9bff, #b8fc70, #6f9bff, #002277) !important;
  -webkit-mask:linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask:linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite:xor; mask-composite:exclude;
  pointer-events:none; z-index:2;
  animation:ph-angle-spin 6s linear infinite;
}
@keyframes ph-angle-spin{ to{ --ph-angle:360deg; } }

/* Simpler alternative — pulsing blue glow (works everywhere). To use this
   instead, delete the rotating block above and uncomment this:
.ph-beta-border{ border:1px solid #002277 !important; animation:ph-beta-pulse 3s ease-in-out infinite; }
@keyframes ph-beta-pulse{
  0%,100%{box-shadow:0 0 0 1px rgba(0,34,119,.6), 0 0 24px -8px rgba(111,155,255,.5);}
  50%    {box-shadow:0 0 0 1px rgba(111,155,255,.9), 0 0 42px -6px rgba(111,155,255,.85);}
}
*/

/* ---------- ANIMATED LINK UNDERLINE ("Learn more ->") ----------
   Apply .ph-link to text links / text CTAs. */
.ph-link{
  position:relative;color:#b8fc70 !important;font-weight:700;text-decoration:none !important;
  display:inline-flex;align-items:center;gap:.4em;
}
.ph-link::after{
  content:"";position:absolute;left:0;bottom:-3px;height:2px;width:100%;
  background:#b8fc70;transform:scaleX(0);transform-origin:left;transition:transform .25s ease;
}
.ph-link:hover::after{transform:scaleX(1);}
.ph-link:hover{color:#cdfd97 !important;}

/* ---------- DROPDOWN / MENU PANEL ----------
   Apply .ph-menu to a custom dropdown panel; .ph-menu-group on
   non-clickable heading rows; links inside style automatically. */
.ph-menu{
  background:#121019 !important;border:1px solid #26242B !important;border-radius:14px;
  padding:14px;box-shadow:0 30px 70px -30px rgba(0,0,0,.85);min-width:230px;
}
.ph-menu .ph-menu-group{
  display:block;margin:10px 8px 4px;font-size:11px;letter-spacing:.16em;text-transform:uppercase;
  color:#6F6B69;font-weight:700;
}
.ph-menu .ph-menu-group:first-child{margin-top:0;}
.ph-menu a{
  display:block;padding:8px 10px;border-radius:8px;color:#A6A29D !important;
  font-size:14.5px;font-weight:600;text-decoration:none;transition:background .2s,color .2s;
}
.ph-menu a:hover{background:rgba(184,252,112,.08);color:#b8fc70 !important;}

/* ---------- OPTIONAL: CSS FADE-UP ON SCROLL ----------
   Groove's built-in "Fade Up" is the easy route; this is a no-JS
   alternative for browsers that support scroll-driven animations. */
@supports (animation-timeline: view()){
  .ph-reveal{
    opacity:0;transform:translateY(28px);
    animation:ph-rise both;
    animation-timeline:view();
    animation-range:entry 0% entry 40%;
  }
}
@keyframes ph-rise{to{opacity:1;transform:none;}}

/* ---------- ACCESSIBILITY: respect reduced motion ---------- */
@media (prefers-reduced-motion:reduce){
  .ph-reveal{opacity:1 !important;transform:none !important;animation:none !important;}
  .ph-bulbs,.ph-beta-border{animation:none !important;}
  .ph-beta-border::after{animation:none !important;}
  .ph-link::after{transition:none !important;}
  .ph-card,.ph-btn-green,.ph-btn-blue,.ph-btn-ghost{transition:none !important;}
}
 *{} {}
     


      #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-wV741it1gE { position: relative;z-index: 15; } @media (max-width: 639px) { .gp-component-id-wV741it1gE { position: relative;z-index: 15;margin-left: auto;margin-right: auto; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-wV741it1gE { position: relative;z-index: 15;margin-left: auto;margin-right: auto; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-wV741it1gE { position: relative;z-index: 15;margin-left: auto;margin-right: auto; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-wV741it1gE { position: relative;z-index: 15;margin-left: auto;margin-right: auto; } } @media (min-width: 1200px) { .gp-component-id-wV741it1gE { position: relative;z-index: 15;margin-left: auto;margin-right: auto; } }

 .gp-component-id-thgZijjJc { position: relative;z-index: 15;color: inherit;background-color: transparent;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial; } @media (max-width: 639px) { .gp-component-id-thgZijjJc { position: relative;z-index: 15;color: inherit;background-color: transparent;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-thgZijjJc { position: relative;z-index: 15;color: inherit;background-color: transparent;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-thgZijjJc { position: relative;z-index: 15;color: inherit;background-color: transparent;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-thgZijjJc { position: relative;z-index: 15;color: inherit;background-color: transparent;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial; } } @media (min-width: 1200px) { .gp-component-id-thgZijjJc { position: relative;z-index: 15;color: inherit;background-color: transparent;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial; } }

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

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

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

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

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

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

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

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

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

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

 .gp-component-id-AtPmg5_HA { position: relative;z-index: 15;color: inherit;background-color: transparent;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial; } @media (max-width: 639px) { .gp-component-id-AtPmg5_HA { position: relative;z-index: 15;color: inherit;background-color: transparent;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-AtPmg5_HA { position: relative;z-index: 15;color: inherit;background-color: transparent;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-AtPmg5_HA { position: relative;z-index: 15;color: inherit;background-color: transparent;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-AtPmg5_HA { position: relative;z-index: 15;color: inherit;background-color: transparent;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial; } } @media (min-width: 1200px) { .gp-component-id-AtPmg5_HA { position: relative;z-index: 15;color: inherit;background-color: transparent;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial; } }

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

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

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

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

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

 @media (max-width: 639px) { [data-gp-text] .gp-component-id-m4r0Iz_PN { font-size: 70px !important;font-weight: 900 !important;color: rgb(246, 240, 230);text-align: center;line-height: 1.25;margin-top: 0px;margin-bottom: 20px; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-m4r0Iz_PN { font-size: 70px !important;font-weight: 900 !important;color: rgb(246, 240, 230);text-align: center;line-height: 1.25;margin-top: 0px;margin-bottom: 20px; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-m4r0Iz_PN { font-size: 70px !important;font-weight: 900 !important;color: rgb(246, 240, 230);text-align: center;line-height: 1.25;margin-top: 0px;margin-bottom: 20px; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-m4r0Iz_PN { font-size: 70px !important;font-weight: 900 !important;color: rgb(246, 240, 230);text-align: center;line-height: 1.25;margin-top: 0px;margin-bottom: 20px; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-m4r0Iz_PN { font-size: 70px !important;font-weight: 900 !important;color: rgb(246, 240, 230);text-align: center;line-height: 1.25;margin-top: 0px;margin-bottom: 20px; } }

 @media (max-width: 639px) { [data-gp-text] .gp-component-id-8NyTZ99j_ { font-size: 16px !important;color: rgb(166, 162, 157);text-align: center;margin-bottom: 30px; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-8NyTZ99j_ { font-size: 16px !important;color: rgb(166, 162, 157);text-align: center;margin-bottom: 30px; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-8NyTZ99j_ { font-size: 16px !important;color: rgb(166, 162, 157);text-align: center;margin-bottom: 30px; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-8NyTZ99j_ { font-size: 16px !important;color: rgb(166, 162, 157);text-align: center;margin-bottom: 30px; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-8NyTZ99j_ { font-size: 16px !important;color: rgb(166, 162, 157);text-align: center;margin-bottom: 30px; } }

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

 @media (max-width: 639px) { [data-gp-text] .gp-component-id-FzYq8jXE_ { margin-bottom: 0px; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-FzYq8jXE_ { margin-bottom: 0px; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-FzYq8jXE_ { margin-bottom: 0px; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-FzYq8jXE_ { margin-bottom: 0px; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-FzYq8jXE_ { margin-bottom: 0px; } }

 .gp-component-id-GEDH5JKrH { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;background-color: rgb(57, 75, 86);display: inline-flex;align-items: center;padding-top: 8px;padding-bottom: 8px;text-align: center;font-size: 16px;cursor: pointer;color: inherit;padding-left: 16px;padding-right: 16px; } .gp-component-id-GEDH5JKrH:hover,.gp-component-id-GEDH5JKrH.gp-hover { background-color: rgb(120, 136, 155); } .gp-component-id-GEDH5JKrH:active,.gp-component-id-GEDH5JKrH.gp-active { background-color: rgb(32, 45, 60); } @media (max-width: 639px) { .gp-component-id-GEDH5JKrH { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;background-color: rgb(57, 75, 86);display: inline-flex;align-items: center;padding-top: 8px;padding-bottom: 8px;text-align: center;font-size: 16px;cursor: pointer;color: inherit;padding-left: 16px;padding-right: 16px; } .gp-component-id-GEDH5JKrH:hover,.gp-component-id-GEDH5JKrH.gp-hover { background-color: rgb(120, 136, 155); } .gp-component-id-GEDH5JKrH:active,.gp-component-id-GEDH5JKrH.gp-active { background-color: rgb(32, 45, 60); } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-GEDH5JKrH { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;background-color: rgb(57, 75, 86);display: inline-flex;align-items: center;padding-top: 8px;padding-bottom: 8px;text-align: center;font-size: 16px;cursor: pointer;color: inherit;padding-left: 16px;padding-right: 16px; } .gp-component-id-GEDH5JKrH:hover,.gp-component-id-GEDH5JKrH.gp-hover { background-color: rgb(120, 136, 155); } .gp-component-id-GEDH5JKrH:active,.gp-component-id-GEDH5JKrH.gp-active { background-color: rgb(32, 45, 60); } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-GEDH5JKrH { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;background-color: rgb(57, 75, 86);display: inline-flex;align-items: center;padding-top: 8px;padding-bottom: 8px;text-align: center;font-size: 16px;cursor: pointer;color: inherit;padding-left: 16px;padding-right: 16px; } .gp-component-id-GEDH5JKrH:hover,.gp-component-id-GEDH5JKrH.gp-hover { background-color: rgb(120, 136, 155); } .gp-component-id-GEDH5JKrH:active,.gp-component-id-GEDH5JKrH.gp-active { background-color: rgb(32, 45, 60); } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-GEDH5JKrH { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;background-color: rgb(57, 75, 86);display: inline-flex;align-items: center;padding-top: 8px;padding-bottom: 8px;text-align: center;font-size: 16px;cursor: pointer;color: inherit;padding-left: 16px;padding-right: 16px; } .gp-component-id-GEDH5JKrH:hover,.gp-component-id-GEDH5JKrH.gp-hover { background-color: rgb(120, 136, 155); } .gp-component-id-GEDH5JKrH:active,.gp-component-id-GEDH5JKrH.gp-active { background-color: rgb(32, 45, 60); } } @media (min-width: 1200px) { .gp-component-id-GEDH5JKrH { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;background-color: rgb(57, 75, 86);display: inline-flex;align-items: center;padding-top: 8px;padding-bottom: 8px;text-align: center;font-size: 16px;cursor: pointer;color: inherit;padding-left: 16px;padding-right: 16px; } .gp-component-id-GEDH5JKrH:hover,.gp-component-id-GEDH5JKrH.gp-hover { background-color: rgb(120, 136, 155); } .gp-component-id-GEDH5JKrH:active,.gp-component-id-GEDH5JKrH.gp-active { background-color: rgb(32, 45, 60); } }

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

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

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

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

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

 @media (max-width: 639px) { .gp-component-id-92bSibOm7o.gp-component > [data-section-overlay] { background-color: rgb(18, 16, 25); } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-92bSibOm7o.gp-component > [data-section-overlay] { background-color: rgb(18, 16, 25); } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-92bSibOm7o.gp-component > [data-section-overlay] { background-color: rgb(18, 16, 25); } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-92bSibOm7o.gp-component > [data-section-overlay] { background-color: rgb(18, 16, 25); } } @media (min-width: 1200px) { .gp-component-id-92bSibOm7o.gp-component > [data-section-overlay] { background-color: rgb(18, 16, 25); } }

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

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

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

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

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

 @media (max-width: 639px) { .gp-component-id-YELGy64pwA { color: rgb(166, 162, 157);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 16px;padding-right: 16px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-YELGy64pwA { color: rgb(166, 162, 157);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 16px;padding-right: 16px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-YELGy64pwA { color: rgb(166, 162, 157);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 16px;padding-right: 16px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-YELGy64pwA { color: rgb(166, 162, 157);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 16px;padding-right: 16px; } } @media (min-width: 1200px) { .gp-component-id-YELGy64pwA { color: rgb(166, 162, 157);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 16px;padding-right: 16px; } }

 @media (max-width: 639px) { [data-gp-text] .gp-component-id-xhodbJkpf2 { color: rgb(166, 162, 157);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 16px;padding-right: 16px; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-xhodbJkpf2 { color: rgb(166, 162, 157);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 16px;padding-right: 16px; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-xhodbJkpf2 { color: rgb(166, 162, 157);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 16px;padding-right: 16px; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-xhodbJkpf2 { color: rgb(166, 162, 157);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 16px;padding-right: 16px; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-xhodbJkpf2 { color: rgb(166, 162, 157);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 16px;padding-right: 16px; } }

 @media (max-width: 639px) { .gp-component-id-D_4Cce4N87[data-gp-component] { background-color: rgba(255, 255, 255, 0);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-D_4Cce4N87[data-gp-component] { background-color: rgba(255, 255, 255, 0);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-D_4Cce4N87[data-gp-component] { background-color: rgba(255, 255, 255, 0);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-D_4Cce4N87[data-gp-component] { background-color: rgba(255, 255, 255, 0);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px; } } @media (min-width: 1200px) { .gp-component-id-D_4Cce4N87[data-gp-component] { background-color: rgba(255, 255, 255, 0);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px; } }

 @media (max-width: 639px) { .gp-component-id-QvmSNU6mcg[data-gp-component] { font-size: 20px !important;font-weight: 700 !important;color: rgb(246, 240, 230);background-color: rgba(255, 255, 255, 0);margin-bottom: 8px;padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-QvmSNU6mcg[data-gp-component] { font-size: 20px !important;font-weight: 700 !important;color: rgb(246, 240, 230);background-color: rgba(255, 255, 255, 0);margin-bottom: 8px;padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-QvmSNU6mcg[data-gp-component] { font-size: 20px !important;font-weight: 700 !important;color: rgb(246, 240, 230);background-color: rgba(255, 255, 255, 0);margin-bottom: 8px;padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-QvmSNU6mcg[data-gp-component] { font-size: 20px !important;font-weight: 700 !important;color: rgb(246, 240, 230);background-color: rgba(255, 255, 255, 0);margin-bottom: 8px;padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer; } } @media (min-width: 1200px) { .gp-component-id-QvmSNU6mcg[data-gp-component] { font-size: 20px !important;font-weight: 700 !important;color: rgb(246, 240, 230);background-color: rgba(255, 255, 255, 0);margin-bottom: 8px;padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer; } }

 @media (max-width: 639px) { .gp-component-id-EWxEHAV8O[data-gp-component] { margin-bottom: 15px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-EWxEHAV8O[data-gp-component] { margin-bottom: 15px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-EWxEHAV8O[data-gp-component] { margin-bottom: 15px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-EWxEHAV8O[data-gp-component] { margin-bottom: 15px; } } @media (min-width: 1200px) { .gp-component-id-EWxEHAV8O[data-gp-component] { margin-bottom: 15px; } }

 @media (max-width: 639px) { [data-gp-text] .gp-component-id-IXyJUtrWnY { color: rgb(166, 162, 157);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 16px;padding-right: 16px; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-IXyJUtrWnY { color: rgb(166, 162, 157);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 16px;padding-right: 16px; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-IXyJUtrWnY { color: rgb(166, 162, 157);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 16px;padding-right: 16px; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-IXyJUtrWnY { color: rgb(166, 162, 157);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 16px;padding-right: 16px; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-IXyJUtrWnY { color: rgb(166, 162, 157);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 16px;padding-right: 16px; } }

 @media (max-width: 639px) { .gp-component-id-VKWyy8XSAX[data-gp-component] { background-color: rgba(255, 255, 255, 0);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-VKWyy8XSAX[data-gp-component] { background-color: rgba(255, 255, 255, 0);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-VKWyy8XSAX[data-gp-component] { background-color: rgba(255, 255, 255, 0);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-VKWyy8XSAX[data-gp-component] { background-color: rgba(255, 255, 255, 0);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px; } } @media (min-width: 1200px) { .gp-component-id-VKWyy8XSAX[data-gp-component] { background-color: rgba(255, 255, 255, 0);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px; } }

 @media (max-width: 639px) { .gp-component-id-3S0L14l9As[data-gp-component] { font-size: 20px !important;font-weight: 700 !important;color: rgb(246, 240, 230);background-color: rgba(255, 255, 255, 0);margin-bottom: 8px;padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-3S0L14l9As[data-gp-component] { font-size: 20px !important;font-weight: 700 !important;color: rgb(246, 240, 230);background-color: rgba(255, 255, 255, 0);margin-bottom: 8px;padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-3S0L14l9As[data-gp-component] { font-size: 20px !important;font-weight: 700 !important;color: rgb(246, 240, 230);background-color: rgba(255, 255, 255, 0);margin-bottom: 8px;padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-3S0L14l9As[data-gp-component] { font-size: 20px !important;font-weight: 700 !important;color: rgb(246, 240, 230);background-color: rgba(255, 255, 255, 0);margin-bottom: 8px;padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer; } } @media (min-width: 1200px) { .gp-component-id-3S0L14l9As[data-gp-component] { font-size: 20px !important;font-weight: 700 !important;color: rgb(246, 240, 230);background-color: rgba(255, 255, 255, 0);margin-bottom: 8px;padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer; } }

 @media (max-width: 639px) { .gp-component-id-2ZRX5HwA5[data-gp-component] { margin-bottom: 15px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-2ZRX5HwA5[data-gp-component] { margin-bottom: 15px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-2ZRX5HwA5[data-gp-component] { margin-bottom: 15px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-2ZRX5HwA5[data-gp-component] { margin-bottom: 15px; } } @media (min-width: 1200px) { .gp-component-id-2ZRX5HwA5[data-gp-component] { margin-bottom: 15px; } }

 @media (max-width: 639px) { [data-gp-text] .gp-component-id-luCyxjpsls { color: rgb(166, 162, 157);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 16px;padding-right: 16px; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-luCyxjpsls { color: rgb(166, 162, 157);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 16px;padding-right: 16px; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-luCyxjpsls { color: rgb(166, 162, 157);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 16px;padding-right: 16px; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-luCyxjpsls { color: rgb(166, 162, 157);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 16px;padding-right: 16px; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-luCyxjpsls { color: rgb(166, 162, 157);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 16px;padding-right: 16px; } }

 @media (max-width: 639px) { .gp-component-id-n6xAqOfzSF[data-gp-component] { background-color: rgba(255, 255, 255, 0);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-n6xAqOfzSF[data-gp-component] { background-color: rgba(255, 255, 255, 0);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-n6xAqOfzSF[data-gp-component] { background-color: rgba(255, 255, 255, 0);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-n6xAqOfzSF[data-gp-component] { background-color: rgba(255, 255, 255, 0);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px; } } @media (min-width: 1200px) { .gp-component-id-n6xAqOfzSF[data-gp-component] { background-color: rgba(255, 255, 255, 0);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px; } }

 @media (max-width: 639px) { .gp-component-id-o8RyNrbdXP[data-gp-component] { font-size: 20px !important;font-weight: 700 !important;color: rgb(246, 240, 230);background-color: rgba(255, 255, 255, 0);margin-bottom: 8px;padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-o8RyNrbdXP[data-gp-component] { font-size: 20px !important;font-weight: 700 !important;color: rgb(246, 240, 230);background-color: rgba(255, 255, 255, 0);margin-bottom: 8px;padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-o8RyNrbdXP[data-gp-component] { font-size: 20px !important;font-weight: 700 !important;color: rgb(246, 240, 230);background-color: rgba(255, 255, 255, 0);margin-bottom: 8px;padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-o8RyNrbdXP[data-gp-component] { font-size: 20px !important;font-weight: 700 !important;color: rgb(246, 240, 230);background-color: rgba(255, 255, 255, 0);margin-bottom: 8px;padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer; } } @media (min-width: 1200px) { .gp-component-id-o8RyNrbdXP[data-gp-component] { font-size: 20px !important;font-weight: 700 !important;color: rgb(246, 240, 230);background-color: rgba(255, 255, 255, 0);margin-bottom: 8px;padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer; } }

 @media (max-width: 639px) { .gp-component-id-vOth1u3n5[data-gp-component] { margin-bottom: 15px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-vOth1u3n5[data-gp-component] { margin-bottom: 15px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-vOth1u3n5[data-gp-component] { margin-bottom: 15px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-vOth1u3n5[data-gp-component] { margin-bottom: 15px; } } @media (min-width: 1200px) { .gp-component-id-vOth1u3n5[data-gp-component] { margin-bottom: 15px; } }

 @media (max-width: 639px) { [data-gp-text] .gp-component-id-r9MX7U4Ub { color: rgb(166, 162, 157);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 16px;padding-right: 16px; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-r9MX7U4Ub { color: rgb(166, 162, 157);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 16px;padding-right: 16px; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-r9MX7U4Ub { color: rgb(166, 162, 157);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 16px;padding-right: 16px; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-r9MX7U4Ub { color: rgb(166, 162, 157);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 16px;padding-right: 16px; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-r9MX7U4Ub { color: rgb(166, 162, 157);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 16px;padding-right: 16px; } }

 @media (max-width: 639px) { .gp-component-id-IKEbKkqLGr[data-gp-component] { background-color: rgba(255, 255, 255, 0);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-IKEbKkqLGr[data-gp-component] { background-color: rgba(255, 255, 255, 0);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-IKEbKkqLGr[data-gp-component] { background-color: rgba(255, 255, 255, 0);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-IKEbKkqLGr[data-gp-component] { background-color: rgba(255, 255, 255, 0);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px; } } @media (min-width: 1200px) { .gp-component-id-IKEbKkqLGr[data-gp-component] { background-color: rgba(255, 255, 255, 0);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px; } }

 @media (max-width: 639px) { .gp-component-id-_cApeND9iK[data-gp-component] { font-size: 20px !important;font-weight: 700 !important;color: rgb(246, 240, 230);background-color: rgba(255, 255, 255, 0);margin-bottom: 8px;padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-_cApeND9iK[data-gp-component] { font-size: 20px !important;font-weight: 700 !important;color: rgb(246, 240, 230);background-color: rgba(255, 255, 255, 0);margin-bottom: 8px;padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-_cApeND9iK[data-gp-component] { font-size: 20px !important;font-weight: 700 !important;color: rgb(246, 240, 230);background-color: rgba(255, 255, 255, 0);margin-bottom: 8px;padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-_cApeND9iK[data-gp-component] { font-size: 20px !important;font-weight: 700 !important;color: rgb(246, 240, 230);background-color: rgba(255, 255, 255, 0);margin-bottom: 8px;padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer; } } @media (min-width: 1200px) { .gp-component-id-_cApeND9iK[data-gp-component] { font-size: 20px !important;font-weight: 700 !important;color: rgb(246, 240, 230);background-color: rgba(255, 255, 255, 0);margin-bottom: 8px;padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer; } }

 @media (max-width: 639px) { .gp-component-id-V5vezaxle[data-gp-component] { margin-bottom: 15px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-V5vezaxle[data-gp-component] { margin-bottom: 15px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-V5vezaxle[data-gp-component] { margin-bottom: 15px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-V5vezaxle[data-gp-component] { margin-bottom: 15px; } } @media (min-width: 1200px) { .gp-component-id-V5vezaxle[data-gp-component] { margin-bottom: 15px; } }

 @media (max-width: 639px) { [data-gp-text] .gp-component-id-9sPVEITmzg { color: rgb(166, 162, 157);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 16px;padding-right: 16px; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-9sPVEITmzg { color: rgb(166, 162, 157);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 16px;padding-right: 16px; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-9sPVEITmzg { color: rgb(166, 162, 157);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 16px;padding-right: 16px; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-9sPVEITmzg { color: rgb(166, 162, 157);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 16px;padding-right: 16px; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-9sPVEITmzg { color: rgb(166, 162, 157);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 16px;padding-right: 16px; } }

 @media (max-width: 639px) { .gp-component-id-jaEj13PVG3[data-gp-component] { background-color: rgba(255, 255, 255, 0);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-jaEj13PVG3[data-gp-component] { background-color: rgba(255, 255, 255, 0);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-jaEj13PVG3[data-gp-component] { background-color: rgba(255, 255, 255, 0);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-jaEj13PVG3[data-gp-component] { background-color: rgba(255, 255, 255, 0);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px; } } @media (min-width: 1200px) { .gp-component-id-jaEj13PVG3[data-gp-component] { background-color: rgba(255, 255, 255, 0);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px; } }

 @media (max-width: 639px) { .gp-component-id-u8ax5TxMAt[data-gp-component] { font-size: 20px !important;font-weight: 700 !important;color: rgb(246, 240, 230);background-color: rgba(255, 255, 255, 0);margin-bottom: 8px;padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-u8ax5TxMAt[data-gp-component] { font-size: 20px !important;font-weight: 700 !important;color: rgb(246, 240, 230);background-color: rgba(255, 255, 255, 0);margin-bottom: 8px;padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-u8ax5TxMAt[data-gp-component] { font-size: 20px !important;font-weight: 700 !important;color: rgb(246, 240, 230);background-color: rgba(255, 255, 255, 0);margin-bottom: 8px;padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-u8ax5TxMAt[data-gp-component] { font-size: 20px !important;font-weight: 700 !important;color: rgb(246, 240, 230);background-color: rgba(255, 255, 255, 0);margin-bottom: 8px;padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer; } } @media (min-width: 1200px) { .gp-component-id-u8ax5TxMAt[data-gp-component] { font-size: 20px !important;font-weight: 700 !important;color: rgb(246, 240, 230);background-color: rgba(255, 255, 255, 0);margin-bottom: 8px;padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer; } }

 @media (max-width: 639px) { .gp-component-id-WHkBis7fU[data-gp-component] { margin-bottom: 15px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-WHkBis7fU[data-gp-component] { margin-bottom: 15px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-WHkBis7fU[data-gp-component] { margin-bottom: 15px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-WHkBis7fU[data-gp-component] { margin-bottom: 15px; } } @media (min-width: 1200px) { .gp-component-id-WHkBis7fU[data-gp-component] { margin-bottom: 15px; } }

 @media (max-width: 639px) { [data-gp-text] .gp-component-id-vC5PdqK4Rl { color: rgb(166, 162, 157);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 16px;padding-right: 16px; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-vC5PdqK4Rl { color: rgb(166, 162, 157);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 16px;padding-right: 16px; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-vC5PdqK4Rl { color: rgb(166, 162, 157);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 16px;padding-right: 16px; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-vC5PdqK4Rl { color: rgb(166, 162, 157);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 16px;padding-right: 16px; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-vC5PdqK4Rl { color: rgb(166, 162, 157);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 16px;padding-right: 16px; } }

 @media (max-width: 639px) { .gp-component-id-ik4W4eOh43[data-gp-component] { background-color: rgba(255, 255, 255, 0);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-ik4W4eOh43[data-gp-component] { background-color: rgba(255, 255, 255, 0);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-ik4W4eOh43[data-gp-component] { background-color: rgba(255, 255, 255, 0);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-ik4W4eOh43[data-gp-component] { background-color: rgba(255, 255, 255, 0);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px; } } @media (min-width: 1200px) { .gp-component-id-ik4W4eOh43[data-gp-component] { background-color: rgba(255, 255, 255, 0);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px; } }

 @media (max-width: 639px) { .gp-component-id-QumP7qQUpG[data-gp-component] { font-size: 20px !important;font-weight: 700 !important;color: rgb(246, 240, 230);background-color: rgba(255, 255, 255, 0);margin-bottom: 8px;padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-QumP7qQUpG[data-gp-component] { font-size: 20px !important;font-weight: 700 !important;color: rgb(246, 240, 230);background-color: rgba(255, 255, 255, 0);margin-bottom: 8px;padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-QumP7qQUpG[data-gp-component] { font-size: 20px !important;font-weight: 700 !important;color: rgb(246, 240, 230);background-color: rgba(255, 255, 255, 0);margin-bottom: 8px;padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-QumP7qQUpG[data-gp-component] { font-size: 20px !important;font-weight: 700 !important;color: rgb(246, 240, 230);background-color: rgba(255, 255, 255, 0);margin-bottom: 8px;padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer; } } @media (min-width: 1200px) { .gp-component-id-QumP7qQUpG[data-gp-component] { font-size: 20px !important;font-weight: 700 !important;color: rgb(246, 240, 230);background-color: rgba(255, 255, 255, 0);margin-bottom: 8px;padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer; } }

 @media (max-width: 639px) { .gp-component-id-yXDCCS5je[data-gp-component] { margin-bottom: 15px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-yXDCCS5je[data-gp-component] { margin-bottom: 15px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-yXDCCS5je[data-gp-component] { margin-bottom: 15px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-yXDCCS5je[data-gp-component] { margin-bottom: 15px; } } @media (min-width: 1200px) { .gp-component-id-yXDCCS5je[data-gp-component] { margin-bottom: 15px; } }

 @media (max-width: 639px) { .gp-component-id-QsvETn639[data-gp-component] { font-size: 20px !important;font-weight: 700 !important;color: rgb(246, 240, 230);background-color: rgba(255, 255, 255, 0);margin-bottom: 8px;padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-QsvETn639[data-gp-component] { font-size: 20px !important;font-weight: 700 !important;color: rgb(246, 240, 230);background-color: rgba(255, 255, 255, 0);margin-bottom: 8px;padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-QsvETn639[data-gp-component] { font-size: 20px !important;font-weight: 700 !important;color: rgb(246, 240, 230);background-color: rgba(255, 255, 255, 0);margin-bottom: 8px;padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-QsvETn639[data-gp-component] { font-size: 20px !important;font-weight: 700 !important;color: rgb(246, 240, 230);background-color: rgba(255, 255, 255, 0);margin-bottom: 8px;padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer; } } @media (min-width: 1200px) { .gp-component-id-QsvETn639[data-gp-component] { font-size: 20px !important;font-weight: 700 !important;color: rgb(246, 240, 230);background-color: rgba(255, 255, 255, 0);margin-bottom: 8px;padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer; } }

 @media (max-width: 639px) { .gp-component-id-0xmkM_sVW[data-gp-component] { margin-bottom: 15px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-0xmkM_sVW[data-gp-component] { margin-bottom: 15px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-0xmkM_sVW[data-gp-component] { margin-bottom: 15px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-0xmkM_sVW[data-gp-component] { margin-bottom: 15px; } } @media (min-width: 1200px) { .gp-component-id-0xmkM_sVW[data-gp-component] { margin-bottom: 15px; } }

 @media (max-width: 639px) { .gp-component-id-la5grO0Op.gp-component > [data-section-overlay] { background-color: rgb(18, 16, 25); } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-la5grO0Op.gp-component > [data-section-overlay] { background-color: rgb(18, 16, 25); } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-la5grO0Op.gp-component > [data-section-overlay] { background-color: rgb(18, 16, 25); } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-la5grO0Op.gp-component > [data-section-overlay] { background-color: rgb(18, 16, 25); } } @media (min-width: 1200px) { .gp-component-id-la5grO0Op.gp-component > [data-section-overlay] { background-color: rgb(18, 16, 25); } }

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

 @media (max-width: 639px) { .gp-component-id-dgsXu4ei_p[data-gp-component] { background-color: rgba(256, 256, 256, 0);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-dgsXu4ei_p[data-gp-component] { background-color: rgba(256, 256, 256, 0);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-dgsXu4ei_p[data-gp-component] { background-color: rgba(256, 256, 256, 0);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-dgsXu4ei_p[data-gp-component] { background-color: rgba(256, 256, 256, 0);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px; } } @media (min-width: 1200px) { .gp-component-id-dgsXu4ei_p[data-gp-component] { background-color: rgba(256, 256, 256, 0);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px; } }

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

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

 @media (max-width: 639px) { .gp-component-id-aTE0BM8Ux3[data-gp-component] { width: 100%;height: 100%;flex-direction: column;justify-content: flex-end;display: flex; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-aTE0BM8Ux3[data-gp-component] { width: 100%;height: 100%;flex-direction: column;justify-content: flex-end;display: flex; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-aTE0BM8Ux3[data-gp-component] { width: 100%;height: 100%;flex-direction: column;justify-content: flex-end;display: flex; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-aTE0BM8Ux3[data-gp-component] { width: 100%;height: 100%;flex-direction: column;justify-content: flex-end;display: flex; } } @media (min-width: 1200px) { .gp-component-id-aTE0BM8Ux3[data-gp-component] { width: 100%;height: 100%;flex-direction: column;justify-content: flex-end;display: flex; } }

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

 @media (max-width: 639px) { .gp-component-id-JSPrcQZyq2 { font-size: 56px !important;font-weight: 900 !important;color: rgb(246, 240, 230);line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 20px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-JSPrcQZyq2 { font-size: 56px !important;font-weight: 900 !important;color: rgb(246, 240, 230);line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 20px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-JSPrcQZyq2 { font-size: 56px !important;font-weight: 900 !important;color: rgb(246, 240, 230);line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 20px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-JSPrcQZyq2 { font-size: 56px !important;font-weight: 900 !important;color: rgb(246, 240, 230);line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 20px; } } @media (min-width: 1200px) { .gp-component-id-JSPrcQZyq2 { font-size: 56px !important;font-weight: 900 !important;color: rgb(246, 240, 230);line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 20px; } }

 @media (max-width: 639px) { [data-gp-text] .gp-component-id-qROAPmdpVT { font-size: 56px !important;font-weight: 900 !important;color: rgb(246, 240, 230);line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 20px; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-qROAPmdpVT { font-size: 56px !important;font-weight: 900 !important;color: rgb(246, 240, 230);line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 20px; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-qROAPmdpVT { font-size: 56px !important;font-weight: 900 !important;color: rgb(246, 240, 230);line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 20px; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-qROAPmdpVT { font-size: 56px !important;font-weight: 900 !important;color: rgb(246, 240, 230);line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 20px; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-qROAPmdpVT { font-size: 56px !important;font-weight: 900 !important;color: rgb(246, 240, 230);line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 20px; } }

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

 @media (max-width: 639px) { [data-gp-text] .gp-component-id-9WpXc_xlfM { font-size: inherit;font-weight: inherit;text-align: left;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-9WpXc_xlfM { font-size: inherit;font-weight: inherit;text-align: left;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-9WpXc_xlfM { font-size: inherit;font-weight: inherit;text-align: left;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-9WpXc_xlfM { font-size: inherit;font-weight: inherit;text-align: left;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-9WpXc_xlfM { font-size: inherit;font-weight: inherit;text-align: left;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } }

 @media (max-width: 639px) { .gp-component-id-I9aZXhLYrB[data-gp-component] { padding-left: 20px;padding-right: 20px;width: 100%;height: 100%;flex-direction: column;justify-content: flex-end;display: flex; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-I9aZXhLYrB[data-gp-component] { padding-left: 20px;padding-right: 20px;width: 100%;height: 100%;flex-direction: column;justify-content: flex-end;display: flex; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-I9aZXhLYrB[data-gp-component] { padding-left: 20px;padding-right: 20px;width: 100%;height: 100%;flex-direction: column;justify-content: flex-end;display: flex; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-I9aZXhLYrB[data-gp-component] { padding-left: 20px;padding-right: 20px;width: 100%;height: 100%;flex-direction: column;justify-content: flex-end;display: flex; } } @media (min-width: 1200px) { .gp-component-id-I9aZXhLYrB[data-gp-component] { padding-left: 20px;padding-right: 20px;width: 100%;height: 100%;flex-direction: column;justify-content: flex-end;display: flex; } }

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

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

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

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

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

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

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

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

 @media (max-width: 639px) { .gp-component-id-R6aaZ0gAdB { font-size: 15px !important;margin-left: 4px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-R6aaZ0gAdB { font-size: 15px !important;margin-left: 4px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-R6aaZ0gAdB { font-size: 15px !important;margin-left: 4px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-R6aaZ0gAdB { font-size: 15px !important;margin-left: 4px; } } @media (min-width: 1200px) { .gp-component-id-R6aaZ0gAdB { font-size: 15px !important;margin-left: 4px; } }

 @media (max-width: 639px) { [data-gp-text] .gp-component-id-g1MPCAD2De { font-size: 15px !important;margin-left: 4px; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-g1MPCAD2De { font-size: 15px !important;margin-left: 4px; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-g1MPCAD2De { font-size: 15px !important;margin-left: 4px; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-g1MPCAD2De { font-size: 15px !important;margin-left: 4px; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-g1MPCAD2De { font-size: 15px !important;margin-left: 4px; } }

 @media (max-width: 639px) { .gp-component-id-R5lyyKwVBZ[data-gp-component] { font-size: 15px !important;color: rgb(184, 252, 112);line-height: 1;display: inline-block; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-R5lyyKwVBZ[data-gp-component] { font-size: 15px !important;color: rgb(184, 252, 112);line-height: 1;display: inline-block; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-R5lyyKwVBZ[data-gp-component] { font-size: 15px !important;color: rgb(184, 252, 112);line-height: 1;display: inline-block; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-R5lyyKwVBZ[data-gp-component] { font-size: 15px !important;color: rgb(184, 252, 112);line-height: 1;display: inline-block; } } @media (min-width: 1200px) { .gp-component-id-R5lyyKwVBZ[data-gp-component] { font-size: 15px !important;color: rgb(184, 252, 112);line-height: 1;display: inline-block; } }

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

 @media (max-width: 639px) { .gp-component-id-gmhImiDvQ8 { font-size: 15px !important;margin-left: 4px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-gmhImiDvQ8 { font-size: 15px !important;margin-left: 4px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-gmhImiDvQ8 { font-size: 15px !important;margin-left: 4px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-gmhImiDvQ8 { font-size: 15px !important;margin-left: 4px; } } @media (min-width: 1200px) { .gp-component-id-gmhImiDvQ8 { font-size: 15px !important;margin-left: 4px; } }

 @media (max-width: 639px) { .gp-component-id-H1fOwga3I_[data-gp-component] { font-size: 15px !important;color: rgb(184, 252, 112);line-height: 1;display: inline-block; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-H1fOwga3I_[data-gp-component] { font-size: 15px !important;color: rgb(184, 252, 112);line-height: 1;display: inline-block; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-H1fOwga3I_[data-gp-component] { font-size: 15px !important;color: rgb(184, 252, 112);line-height: 1;display: inline-block; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-H1fOwga3I_[data-gp-component] { font-size: 15px !important;color: rgb(184, 252, 112);line-height: 1;display: inline-block; } } @media (min-width: 1200px) { .gp-component-id-H1fOwga3I_[data-gp-component] { font-size: 15px !important;color: rgb(184, 252, 112);line-height: 1;display: inline-block; } }

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

 @media (max-width: 639px) { .gp-component-id-MGmGlKEt14 { font-size: 15px !important;margin-left: 4px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-MGmGlKEt14 { font-size: 15px !important;margin-left: 4px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-MGmGlKEt14 { font-size: 15px !important;margin-left: 4px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-MGmGlKEt14 { font-size: 15px !important;margin-left: 4px; } } @media (min-width: 1200px) { .gp-component-id-MGmGlKEt14 { font-size: 15px !important;margin-left: 4px; } }

 @media (max-width: 639px) { .gp-component-id-MI2jomAK8G[data-gp-component] { font-size: 15px !important;color: rgb(184, 252, 112);line-height: 1;display: inline-block; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-MI2jomAK8G[data-gp-component] { font-size: 15px !important;color: rgb(184, 252, 112);line-height: 1;display: inline-block; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-MI2jomAK8G[data-gp-component] { font-size: 15px !important;color: rgb(184, 252, 112);line-height: 1;display: inline-block; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-MI2jomAK8G[data-gp-component] { font-size: 15px !important;color: rgb(184, 252, 112);line-height: 1;display: inline-block; } } @media (min-width: 1200px) { .gp-component-id-MI2jomAK8G[data-gp-component] { font-size: 15px !important;color: rgb(184, 252, 112);line-height: 1;display: inline-block; } }

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

 @media (max-width: 639px) { .gp-component-id-PSQDLeMLh { font-size: 15px !important;margin-left: 4px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-PSQDLeMLh { font-size: 15px !important;margin-left: 4px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-PSQDLeMLh { font-size: 15px !important;margin-left: 4px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-PSQDLeMLh { font-size: 15px !important;margin-left: 4px; } } @media (min-width: 1200px) { .gp-component-id-PSQDLeMLh { font-size: 15px !important;margin-left: 4px; } }

 @media (max-width: 639px) { .gp-component-id-YP8kCjItl6[data-gp-component] { font-size: 15px !important;color: rgb(184, 252, 112);line-height: 1;display: inline-block; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-YP8kCjItl6[data-gp-component] { font-size: 15px !important;color: rgb(184, 252, 112);line-height: 1;display: inline-block; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-YP8kCjItl6[data-gp-component] { font-size: 15px !important;color: rgb(184, 252, 112);line-height: 1;display: inline-block; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-YP8kCjItl6[data-gp-component] { font-size: 15px !important;color: rgb(184, 252, 112);line-height: 1;display: inline-block; } } @media (min-width: 1200px) { .gp-component-id-YP8kCjItl6[data-gp-component] { font-size: 15px !important;color: rgb(184, 252, 112);line-height: 1;display: inline-block; } }

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

 @media (max-width: 639px) { .gp-component-id-sQBlhgEcdb { font-size: 15px !important;margin-left: 4px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-sQBlhgEcdb { font-size: 15px !important;margin-left: 4px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-sQBlhgEcdb { font-size: 15px !important;margin-left: 4px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-sQBlhgEcdb { font-size: 15px !important;margin-left: 4px; } } @media (min-width: 1200px) { .gp-component-id-sQBlhgEcdb { font-size: 15px !important;margin-left: 4px; } }

 @media (max-width: 639px) { .gp-component-id-74NDt94RNI[data-gp-component] { font-size: 15px !important;color: rgb(184, 252, 112);line-height: 1;display: inline-block; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-74NDt94RNI[data-gp-component] { font-size: 15px !important;color: rgb(184, 252, 112);line-height: 1;display: inline-block; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-74NDt94RNI[data-gp-component] { font-size: 15px !important;color: rgb(184, 252, 112);line-height: 1;display: inline-block; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-74NDt94RNI[data-gp-component] { font-size: 15px !important;color: rgb(184, 252, 112);line-height: 1;display: inline-block; } } @media (min-width: 1200px) { .gp-component-id-74NDt94RNI[data-gp-component] { font-size: 15px !important;color: rgb(184, 252, 112);line-height: 1;display: inline-block; } }

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

 @media (max-width: 639px) { .gp-component-id-tj2nIQQ_DD { font-size: 15px !important;margin-left: 4px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-tj2nIQQ_DD { font-size: 15px !important;margin-left: 4px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-tj2nIQQ_DD { font-size: 15px !important;margin-left: 4px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-tj2nIQQ_DD { font-size: 15px !important;margin-left: 4px; } } @media (min-width: 1200px) { .gp-component-id-tj2nIQQ_DD { font-size: 15px !important;margin-left: 4px; } }

 @media (max-width: 639px) { [data-gp-text] .gp-component-id-xCz88MtVM_ { font-size: 15px !important;margin-left: 4px; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-xCz88MtVM_ { font-size: 15px !important;margin-left: 4px; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-xCz88MtVM_ { font-size: 15px !important;margin-left: 4px; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-xCz88MtVM_ { font-size: 15px !important;margin-left: 4px; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-xCz88MtVM_ { font-size: 15px !important;margin-left: 4px; } }

 @media (max-width: 639px) { .gp-component-id-sIr5ih7vNa[data-gp-component] { font-size: 15px !important;color: rgb(204, 43, 43);line-height: 1;display: inline-block; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-sIr5ih7vNa[data-gp-component] { font-size: 15px !important;color: rgb(204, 43, 43);line-height: 1;display: inline-block; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-sIr5ih7vNa[data-gp-component] { font-size: 15px !important;color: rgb(204, 43, 43);line-height: 1;display: inline-block; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-sIr5ih7vNa[data-gp-component] { font-size: 15px !important;color: rgb(204, 43, 43);line-height: 1;display: inline-block; } } @media (min-width: 1200px) { .gp-component-id-sIr5ih7vNa[data-gp-component] { font-size: 15px !important;color: rgb(204, 43, 43);line-height: 1;display: inline-block; } }

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

 @media (max-width: 639px) { .gp-component-id-NuCZFcYc1J { font-size: 15px !important;margin-left: 4px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-NuCZFcYc1J { font-size: 15px !important;margin-left: 4px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-NuCZFcYc1J { font-size: 15px !important;margin-left: 4px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-NuCZFcYc1J { font-size: 15px !important;margin-left: 4px; } } @media (min-width: 1200px) { .gp-component-id-NuCZFcYc1J { font-size: 15px !important;margin-left: 4px; } }

 @media (max-width: 639px) { .gp-component-id-OhNfi51Yj7[data-gp-component] { font-size: 15px !important;color: rgb(204, 43, 43);line-height: 1;display: inline-block; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-OhNfi51Yj7[data-gp-component] { font-size: 15px !important;color: rgb(204, 43, 43);line-height: 1;display: inline-block; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-OhNfi51Yj7[data-gp-component] { font-size: 15px !important;color: rgb(204, 43, 43);line-height: 1;display: inline-block; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-OhNfi51Yj7[data-gp-component] { font-size: 15px !important;color: rgb(204, 43, 43);line-height: 1;display: inline-block; } } @media (min-width: 1200px) { .gp-component-id-OhNfi51Yj7[data-gp-component] { font-size: 15px !important;color: rgb(204, 43, 43);line-height: 1;display: inline-block; } }

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

 @media (max-width: 639px) { .gp-component-id-GiUJ6_98wE { font-size: 15px !important;margin-left: 4px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-GiUJ6_98wE { font-size: 15px !important;margin-left: 4px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-GiUJ6_98wE { font-size: 15px !important;margin-left: 4px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-GiUJ6_98wE { font-size: 15px !important;margin-left: 4px; } } @media (min-width: 1200px) { .gp-component-id-GiUJ6_98wE { font-size: 15px !important;margin-left: 4px; } }

 @media (max-width: 639px) { .gp-component-id-gquPcnDQd8[data-gp-component] { font-size: 15px !important;color: rgb(204, 43, 43);line-height: 1;display: inline-block; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-gquPcnDQd8[data-gp-component] { font-size: 15px !important;color: rgb(204, 43, 43);line-height: 1;display: inline-block; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-gquPcnDQd8[data-gp-component] { font-size: 15px !important;color: rgb(204, 43, 43);line-height: 1;display: inline-block; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-gquPcnDQd8[data-gp-component] { font-size: 15px !important;color: rgb(204, 43, 43);line-height: 1;display: inline-block; } } @media (min-width: 1200px) { .gp-component-id-gquPcnDQd8[data-gp-component] { font-size: 15px !important;color: rgb(204, 43, 43);line-height: 1;display: inline-block; } }

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

 @media (max-width: 639px) { .gp-component-id-qwoDRvknlM { font-size: 15px !important;margin-left: 4px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-qwoDRvknlM { font-size: 15px !important;margin-left: 4px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-qwoDRvknlM { font-size: 15px !important;margin-left: 4px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-qwoDRvknlM { font-size: 15px !important;margin-left: 4px; } } @media (min-width: 1200px) { .gp-component-id-qwoDRvknlM { font-size: 15px !important;margin-left: 4px; } }

 @media (max-width: 639px) { .gp-component-id-5HfRC0PcQ7[data-gp-component] { font-size: 15px !important;color: rgb(204, 43, 43);line-height: 1;display: inline-block; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-5HfRC0PcQ7[data-gp-component] { font-size: 15px !important;color: rgb(204, 43, 43);line-height: 1;display: inline-block; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-5HfRC0PcQ7[data-gp-component] { font-size: 15px !important;color: rgb(204, 43, 43);line-height: 1;display: inline-block; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-5HfRC0PcQ7[data-gp-component] { font-size: 15px !important;color: rgb(204, 43, 43);line-height: 1;display: inline-block; } } @media (min-width: 1200px) { .gp-component-id-5HfRC0PcQ7[data-gp-component] { font-size: 15px !important;color: rgb(204, 43, 43);line-height: 1;display: inline-block; } }

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

 @media (max-width: 639px) { .gp-component-id-QdRdOUfbXV { font-size: 15px !important;margin-left: 4px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-QdRdOUfbXV { font-size: 15px !important;margin-left: 4px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-QdRdOUfbXV { font-size: 15px !important;margin-left: 4px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-QdRdOUfbXV { font-size: 15px !important;margin-left: 4px; } } @media (min-width: 1200px) { .gp-component-id-QdRdOUfbXV { font-size: 15px !important;margin-left: 4px; } }

 @media (max-width: 639px) { .gp-component-id-hXhqKLQfm[data-gp-component] { font-size: 15px !important;color: rgb(204, 43, 43);line-height: 1;display: inline-block; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-hXhqKLQfm[data-gp-component] { font-size: 15px !important;color: rgb(204, 43, 43);line-height: 1;display: inline-block; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-hXhqKLQfm[data-gp-component] { font-size: 15px !important;color: rgb(204, 43, 43);line-height: 1;display: inline-block; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-hXhqKLQfm[data-gp-component] { font-size: 15px !important;color: rgb(204, 43, 43);line-height: 1;display: inline-block; } } @media (min-width: 1200px) { .gp-component-id-hXhqKLQfm[data-gp-component] { font-size: 15px !important;color: rgb(204, 43, 43);line-height: 1;display: inline-block; } }

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

 @media (max-width: 639px) { .gp-component-id-rgqsDnWe2[data-gp-component] { font-size: 15px !important;color: rgba(184, 252, 112, 1);line-height: 1;display: inline-block; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-rgqsDnWe2[data-gp-component] { font-size: 15px !important;color: rgba(184, 252, 112, 1);line-height: 1;display: inline-block; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-rgqsDnWe2[data-gp-component] { font-size: 15px !important;color: rgba(184, 252, 112, 1);line-height: 1;display: inline-block; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-rgqsDnWe2[data-gp-component] { font-size: 15px !important;color: rgba(184, 252, 112, 1);line-height: 1;display: inline-block; } } @media (min-width: 1200px) { .gp-component-id-rgqsDnWe2[data-gp-component] { font-size: 15px !important;color: rgba(184, 252, 112, 1);line-height: 1;display: inline-block; } }

 @media (max-width: 639px) { .gp-component-id-L_oEI_XAj[data-gp-component] { font-size: 15px !important;color: rgba(204, 43, 43, 1);line-height: 1;display: inline-block; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-L_oEI_XAj[data-gp-component] { font-size: 15px !important;color: rgba(204, 43, 43, 1);line-height: 1;display: inline-block; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-L_oEI_XAj[data-gp-component] { font-size: 15px !important;color: rgba(204, 43, 43, 1);line-height: 1;display: inline-block; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-L_oEI_XAj[data-gp-component] { font-size: 15px !important;color: rgba(204, 43, 43, 1);line-height: 1;display: inline-block; } } @media (min-width: 1200px) { .gp-component-id-L_oEI_XAj[data-gp-component] { font-size: 15px !important;color: rgba(204, 43, 43, 1);line-height: 1;display: inline-block; } }

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

 @media (max-width: 639px) { [data-gp-text] .gp-component-id-26g_aBY2h { font-size: 30px !important; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-26g_aBY2h { font-size: 30px !important; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-26g_aBY2h { font-size: 30px !important; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-26g_aBY2h { font-size: 30px !important; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-26g_aBY2h { font-size: 30px !important; } }

 @media (max-width: 639px) { [data-gp-text] .gp-component-id-F2Sd0R_iU { font-size: 30px !important; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-F2Sd0R_iU { font-size: 30px !important; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-F2Sd0R_iU { font-size: 30px !important; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-F2Sd0R_iU { font-size: 30px !important; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-F2Sd0R_iU { font-size: 30px !important; } }

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

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

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

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

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

 @media (max-width: 639px) { .gp-component-id-Y9B10kBYqrE[data-gp-component] { padding-left: 20px;padding-right: 20px;padding-top: 20px;padding-bottom: 20px;width: 100%;height: 100%; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-Y9B10kBYqrE[data-gp-component] { padding-left: 20px;padding-right: 20px;padding-top: 20px;padding-bottom: 20px;width: 100%;height: 100%; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-Y9B10kBYqrE[data-gp-component] { padding-left: 20px;padding-right: 20px;padding-top: 20px;padding-bottom: 20px;width: 100%;height: 100%; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-Y9B10kBYqrE[data-gp-component] { padding-left: 20px;padding-right: 20px;padding-top: 20px;padding-bottom: 20px;width: 100%;height: 100%; } } @media (min-width: 1200px) { .gp-component-id-Y9B10kBYqrE[data-gp-component] { padding-left: 20px;padding-right: 20px;padding-top: 20px;padding-bottom: 20px;width: 100%;height: 100%; } }

 @media (max-width: 639px) { .gp-component-id-Z9xtkqu0Bl[data-gp-component] { padding-left: 20px;padding-right: 20px;padding-top: 20px;padding-bottom: 20px;width: 100%;height: 100%; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-Z9xtkqu0Bl[data-gp-component] { padding-left: 20px;padding-right: 20px;padding-top: 20px;padding-bottom: 20px;width: 100%;height: 100%; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-Z9xtkqu0Bl[data-gp-component] { padding-left: 20px;padding-right: 20px;padding-top: 20px;padding-bottom: 20px;width: 100%;height: 100%; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-Z9xtkqu0Bl[data-gp-component] { padding-left: 20px;padding-right: 20px;padding-top: 20px;padding-bottom: 20px;width: 100%;height: 100%; } } @media (min-width: 1200px) { .gp-component-id-Z9xtkqu0Bl[data-gp-component] { padding-left: 20px;padding-right: 20px;padding-top: 20px;padding-bottom: 20px;width: 100%;height: 100%; } }

 @media (max-width: 639px) { .gp-component-id-c_MIOHJ5UF[data-gp-component] { width: 100%;height: 100%;flex-direction: column;justify-content: flex-end;display: flex; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-c_MIOHJ5UF[data-gp-component] { width: 100%;height: 100%;flex-direction: column;justify-content: flex-end;display: flex; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-c_MIOHJ5UF[data-gp-component] { width: 100%;height: 100%;flex-direction: column;justify-content: flex-end;display: flex; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-c_MIOHJ5UF[data-gp-component] { width: 100%;height: 100%;flex-direction: column;justify-content: flex-end;display: flex; } } @media (min-width: 1200px) { .gp-component-id-c_MIOHJ5UF[data-gp-component] { width: 100%;height: 100%;flex-direction: column;justify-content: flex-end;display: flex; } }

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

 @media (max-width: 639px) { [data-gp-text] .gp-component-id-AA1bllJW0U { font-size: 18px !important;color: rgb(166, 162, 157);line-height: 2;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-AA1bllJW0U { font-size: 18px !important;color: rgb(166, 162, 157);line-height: 2;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-AA1bllJW0U { font-size: 18px !important;color: rgb(166, 162, 157);line-height: 2;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-AA1bllJW0U { font-size: 18px !important;color: rgb(166, 162, 157);line-height: 2;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-AA1bllJW0U { font-size: 18px !important;color: rgb(166, 162, 157);line-height: 2;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } }

 @media (max-width: 639px) { [data-gp-text] .gp-component-id-U9wu6cAUUb { font-size: 56px !important;font-weight: 900 !important;color: rgb(246, 240, 230);line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 20px; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-U9wu6cAUUb { font-size: 56px !important;font-weight: 900 !important;color: rgb(246, 240, 230);line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 20px; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-U9wu6cAUUb { font-size: 56px !important;font-weight: 900 !important;color: rgb(246, 240, 230);line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 20px; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-U9wu6cAUUb { font-size: 56px !important;font-weight: 900 !important;color: rgb(246, 240, 230);line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 20px; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-U9wu6cAUUb { font-size: 56px !important;font-weight: 900 !important;color: rgb(246, 240, 230);line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 20px; } }

 @media (max-width: 639px) { [data-gp-text] .gp-component-id-2gjSycntgG { font-size: inherit;font-weight: inherit;text-align: left;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-2gjSycntgG { font-size: inherit;font-weight: inherit;text-align: left;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-2gjSycntgG { font-size: inherit;font-weight: inherit;text-align: left;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-2gjSycntgG { font-size: inherit;font-weight: inherit;text-align: left;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-2gjSycntgG { font-size: inherit;font-weight: inherit;text-align: left;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } }

 @media (max-width: 639px) { .gp-component-id-_mgFya8c27[data-gp-component] { padding-left: 20px;padding-right: 20px;width: 100%;height: 100%;flex-direction: column;justify-content: flex-end;display: flex; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-_mgFya8c27[data-gp-component] { padding-left: 20px;padding-right: 20px;width: 100%;height: 100%;flex-direction: column;justify-content: flex-end;display: flex; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-_mgFya8c27[data-gp-component] { padding-left: 20px;padding-right: 20px;width: 100%;height: 100%;flex-direction: column;justify-content: flex-end;display: flex; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-_mgFya8c27[data-gp-component] { padding-left: 20px;padding-right: 20px;width: 100%;height: 100%;flex-direction: column;justify-content: flex-end;display: flex; } } @media (min-width: 1200px) { .gp-component-id-_mgFya8c27[data-gp-component] { padding-left: 20px;padding-right: 20px;width: 100%;height: 100%;flex-direction: column;justify-content: flex-end;display: flex; } }

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

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

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

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

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

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

 @media (max-width: 639px) { [data-gp-text] .gp-component-id-CEQ7aIl0Mz { font-size: 20px !important;font-weight: 700;color: rgb(246, 240, 230);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-CEQ7aIl0Mz { font-size: 20px !important;font-weight: 700;color: rgb(246, 240, 230);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-CEQ7aIl0Mz { font-size: 20px !important;font-weight: 700;color: rgb(246, 240, 230);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-CEQ7aIl0Mz { font-size: 20px !important;font-weight: 700;color: rgb(246, 240, 230);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-CEQ7aIl0Mz { font-size: 20px !important;font-weight: 700;color: rgb(246, 240, 230);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px; } }

 @media (max-width: 639px) { [data-gp-text] .gp-component-id-rzgblK05s6 { font-size: 20px !important;font-weight: 700;color: rgb(246, 240, 230);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-rzgblK05s6 { font-size: 20px !important;font-weight: 700;color: rgb(246, 240, 230);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-rzgblK05s6 { font-size: 20px !important;font-weight: 700;color: rgb(246, 240, 230);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-rzgblK05s6 { font-size: 20px !important;font-weight: 700;color: rgb(246, 240, 230);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-rzgblK05s6 { font-size: 20px !important;font-weight: 700;color: rgb(246, 240, 230);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px; } }

 @media (max-width: 639px) { [data-gp-text] .gp-component-id-AQzkJCK1iS { font-size: 20px !important;font-weight: 700;color: rgb(246, 240, 230);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-AQzkJCK1iS { font-size: 20px !important;font-weight: 700;color: rgb(246, 240, 230);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-AQzkJCK1iS { font-size: 20px !important;font-weight: 700;color: rgb(246, 240, 230);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-AQzkJCK1iS { font-size: 20px !important;font-weight: 700;color: rgb(246, 240, 230);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-AQzkJCK1iS { font-size: 20px !important;font-weight: 700;color: rgb(246, 240, 230);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px; } }

 @media (max-width: 639px) { [data-gp-text] .gp-component-id-Zz1P_bRv8 { font-size: 20px !important;font-weight: 700;color: rgb(246, 240, 230);margin-bottom: 10px; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-Zz1P_bRv8 { font-size: 20px !important;font-weight: 700;color: rgb(246, 240, 230);margin-bottom: 10px; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-Zz1P_bRv8 { font-size: 20px !important;font-weight: 700;color: rgb(246, 240, 230);margin-bottom: 10px; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-Zz1P_bRv8 { font-size: 20px !important;font-weight: 700;color: rgb(246, 240, 230);margin-bottom: 10px; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-Zz1P_bRv8 { font-size: 20px !important;font-weight: 700;color: rgb(246, 240, 230);margin-bottom: 10px; } }

 @media (max-width: 639px) { [data-gp-text] .gp-component-id-f7Li607Xfa { font-size: 20px !important;font-weight: 700;color: rgb(246, 240, 230);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-f7Li607Xfa { font-size: 20px !important;font-weight: 700;color: rgb(246, 240, 230);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-f7Li607Xfa { font-size: 20px !important;font-weight: 700;color: rgb(246, 240, 230);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-f7Li607Xfa { font-size: 20px !important;font-weight: 700;color: rgb(246, 240, 230);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-f7Li607Xfa { font-size: 20px !important;font-weight: 700;color: rgb(246, 240, 230);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px; } }

 @media (max-width: 639px) { [data-gp-text] .gp-component-id-_EOo6NyHeN { font-size: 20px !important;font-weight: 700;color: rgb(246, 240, 230);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-_EOo6NyHeN { font-size: 20px !important;font-weight: 700;color: rgb(246, 240, 230);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-_EOo6NyHeN { font-size: 20px !important;font-weight: 700;color: rgb(246, 240, 230);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-_EOo6NyHeN { font-size: 20px !important;font-weight: 700;color: rgb(246, 240, 230);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-_EOo6NyHeN { font-size: 20px !important;font-weight: 700;color: rgb(246, 240, 230);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px; } }

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

 @media (max-width: 639px) { .gp-component-id-yN1poFHrF[data-gp-component] { padding-bottom: 90px;z-index: 10;position: relative; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-yN1poFHrF[data-gp-component] { padding-bottom: 90px;z-index: 10;position: relative; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-yN1poFHrF[data-gp-component] { padding-bottom: 90px;z-index: 10;position: relative; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-yN1poFHrF[data-gp-component] { padding-bottom: 90px;z-index: 10;position: relative; } } @media (min-width: 1200px) { .gp-component-id-yN1poFHrF[data-gp-component] { padding-bottom: 90px;z-index: 10;position: relative; } }

 .gp-component-id-TsgiV2wIHD { margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px; } @media (max-width: 639px) { .gp-component-id-TsgiV2wIHD { font-size: 15px !important;color: rgb(166, 162, 157);line-height: 2;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-TsgiV2wIHD { font-size: 15px !important;color: rgb(166, 162, 157);line-height: 2;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-TsgiV2wIHD { font-size: 15px !important;color: rgb(166, 162, 157);line-height: 2;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-TsgiV2wIHD { font-size: 15px !important;color: rgb(166, 162, 157);line-height: 2;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } } @media (min-width: 1200px) { .gp-component-id-TsgiV2wIHD { font-size: 15px !important;color: rgb(166, 162, 157);line-height: 2;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } }

 @media (max-width: 639px) { [data-gp-text] .gp-component-id-C707YNEd9 { font-size: 15px !important;color: rgb(166, 162, 157);line-height: 2; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-C707YNEd9 { font-size: 15px !important;color: rgb(166, 162, 157);line-height: 2; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-C707YNEd9 { font-size: 15px !important;color: rgb(166, 162, 157);line-height: 2; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-C707YNEd9 { font-size: 15px !important;color: rgb(166, 162, 157);line-height: 2; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-C707YNEd9 { font-size: 15px !important;color: rgb(166, 162, 157);line-height: 2; } }

 .gp-component-id-TlFnQsJbhO { margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px; } @media (max-width: 639px) { .gp-component-id-TlFnQsJbhO { font-size: 25px !important;color: rgb(185, 252, 116);line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-TlFnQsJbhO { font-size: 25px !important;color: rgb(185, 252, 116);line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-TlFnQsJbhO { font-size: 25px !important;color: rgb(185, 252, 116);line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-TlFnQsJbhO { font-size: 25px !important;color: rgb(185, 252, 116);line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px; } } @media (min-width: 1200px) { .gp-component-id-TlFnQsJbhO { font-size: 25px !important;color: rgb(185, 252, 116);line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px; } }

 @media (max-width: 639px) { [data-gp-text] .gp-component-id-3Zb7fxksU { font-size: 25px !important;color: rgb(185, 252, 116);line-height: 1.25;margin-bottom: 10px; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-3Zb7fxksU { font-size: 25px !important;color: rgb(185, 252, 116);line-height: 1.25;margin-bottom: 10px; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-3Zb7fxksU { font-size: 25px !important;color: rgb(185, 252, 116);line-height: 1.25;margin-bottom: 10px; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-3Zb7fxksU { font-size: 25px !important;color: rgb(185, 252, 116);line-height: 1.25;margin-bottom: 10px; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-3Zb7fxksU { font-size: 25px !important;color: rgb(185, 252, 116);line-height: 1.25;margin-bottom: 10px; } }

 @media (max-width: 639px) { .gp-component-id-xB0CuBd4B0[data-gp-component] { padding-left: 20px;padding-right: 20px;padding-top: 40px;padding-bottom: 40px;width: 100%;height: 100%; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-xB0CuBd4B0[data-gp-component] { padding-left: 20px;padding-right: 20px;padding-top: 40px;padding-bottom: 40px;width: 100%;height: 100%; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-xB0CuBd4B0[data-gp-component] { padding-left: 20px;padding-right: 20px;padding-top: 40px;padding-bottom: 40px;width: 100%;height: 100%; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-xB0CuBd4B0[data-gp-component] { padding-left: 20px;padding-right: 20px;padding-top: 40px;padding-bottom: 40px;width: 100%;height: 100%; } } @media (min-width: 1200px) { .gp-component-id-xB0CuBd4B0[data-gp-component] { padding-left: 20px;padding-right: 20px;padding-top: 40px;padding-bottom: 40px;width: 100%;height: 100%; } }

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

 @media (max-width: 639px) { .gp-component-id-0WPZEcIYL_ { font-size: 15px !important;color: rgb(166, 162, 157);line-height: 2;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-0WPZEcIYL_ { font-size: 15px !important;color: rgb(166, 162, 157);line-height: 2;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-0WPZEcIYL_ { font-size: 15px !important;color: rgb(166, 162, 157);line-height: 2;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-0WPZEcIYL_ { font-size: 15px !important;color: rgb(166, 162, 157);line-height: 2;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } } @media (min-width: 1200px) { .gp-component-id-0WPZEcIYL_ { font-size: 15px !important;color: rgb(166, 162, 157);line-height: 2;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } }

 @media (max-width: 639px) { [data-gp-text] .gp-component-id-YQtx3PLv9I { font-size: 15px !important;color: rgb(166, 162, 157);line-height: 2;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-YQtx3PLv9I { font-size: 15px !important;color: rgb(166, 162, 157);line-height: 2;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-YQtx3PLv9I { font-size: 15px !important;color: rgb(166, 162, 157);line-height: 2;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-YQtx3PLv9I { font-size: 15px !important;color: rgb(166, 162, 157);line-height: 2;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-YQtx3PLv9I { font-size: 15px !important;color: rgb(166, 162, 157);line-height: 2;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } }

 @media (max-width: 639px) { .gp-component-id-Naex07woQ { font-size: 25px !important;color: rgb(185, 252, 116);line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-Naex07woQ { font-size: 25px !important;color: rgb(185, 252, 116);line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-Naex07woQ { font-size: 25px !important;color: rgb(185, 252, 116);line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-Naex07woQ { font-size: 25px !important;color: rgb(185, 252, 116);line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px; } } @media (min-width: 1200px) { .gp-component-id-Naex07woQ { font-size: 25px !important;color: rgb(185, 252, 116);line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px; } }

 @media (max-width: 639px) { [data-gp-text] .gp-component-id-vZJFS7fdZI { font-size: 25px !important;color: rgb(185, 252, 116);line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-vZJFS7fdZI { font-size: 25px !important;color: rgb(185, 252, 116);line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-vZJFS7fdZI { font-size: 25px !important;color: rgb(185, 252, 116);line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-vZJFS7fdZI { font-size: 25px !important;color: rgb(185, 252, 116);line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-vZJFS7fdZI { font-size: 25px !important;color: rgb(185, 252, 116);line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px; } }

 @media (max-width: 639px) { .gp-component-id-enSiTyzsR6[data-gp-component] { padding-left: 20px;padding-right: 20px;padding-top: 40px;padding-bottom: 40px;width: 100%;height: 100%; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-enSiTyzsR6[data-gp-component] { padding-left: 20px;padding-right: 20px;padding-top: 40px;padding-bottom: 40px;width: 100%;height: 100%; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-enSiTyzsR6[data-gp-component] { padding-left: 20px;padding-right: 20px;padding-top: 40px;padding-bottom: 40px;width: 100%;height: 100%; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-enSiTyzsR6[data-gp-component] { padding-left: 20px;padding-right: 20px;padding-top: 40px;padding-bottom: 40px;width: 100%;height: 100%; } } @media (min-width: 1200px) { .gp-component-id-enSiTyzsR6[data-gp-component] { padding-left: 20px;padding-right: 20px;padding-top: 40px;padding-bottom: 40px;width: 100%;height: 100%; } }

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

 @media (max-width: 639px) { .gp-component-id-AR4LTgt44P { font-size: 15px !important;color: rgb(166, 162, 157);line-height: 2;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-AR4LTgt44P { font-size: 15px !important;color: rgb(166, 162, 157);line-height: 2;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-AR4LTgt44P { font-size: 15px !important;color: rgb(166, 162, 157);line-height: 2;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-AR4LTgt44P { font-size: 15px !important;color: rgb(166, 162, 157);line-height: 2;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } } @media (min-width: 1200px) { .gp-component-id-AR4LTgt44P { font-size: 15px !important;color: rgb(166, 162, 157);line-height: 2;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } }

 @media (max-width: 639px) { [data-gp-text] .gp-component-id-CRkLOa3Vmx { font-size: 15px !important;color: rgb(166, 162, 157);line-height: 2;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-CRkLOa3Vmx { font-size: 15px !important;color: rgb(166, 162, 157);line-height: 2;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-CRkLOa3Vmx { font-size: 15px !important;color: rgb(166, 162, 157);line-height: 2;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-CRkLOa3Vmx { font-size: 15px !important;color: rgb(166, 162, 157);line-height: 2;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-CRkLOa3Vmx { font-size: 15px !important;color: rgb(166, 162, 157);line-height: 2;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } }

 @media (max-width: 639px) { .gp-component-id-c3TCpunB59 { font-size: 25px !important;color: rgb(185, 252, 116);line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-c3TCpunB59 { font-size: 25px !important;color: rgb(185, 252, 116);line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-c3TCpunB59 { font-size: 25px !important;color: rgb(185, 252, 116);line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-c3TCpunB59 { font-size: 25px !important;color: rgb(185, 252, 116);line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px; } } @media (min-width: 1200px) { .gp-component-id-c3TCpunB59 { font-size: 25px !important;color: rgb(185, 252, 116);line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px; } }

 @media (max-width: 639px) { [data-gp-text] .gp-component-id-8dsww4AFb { font-size: 25px !important;color: rgb(185, 252, 116);line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-8dsww4AFb { font-size: 25px !important;color: rgb(185, 252, 116);line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-8dsww4AFb { font-size: 25px !important;color: rgb(185, 252, 116);line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-8dsww4AFb { font-size: 25px !important;color: rgb(185, 252, 116);line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-8dsww4AFb { font-size: 25px !important;color: rgb(185, 252, 116);line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px; } }

 @media (max-width: 639px) { .gp-component-id-3vqIwaHedv[data-gp-component] { padding-left: 20px;padding-right: 20px;padding-top: 40px;padding-bottom: 40px;width: 100%;height: 100%; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-3vqIwaHedv[data-gp-component] { padding-left: 20px;padding-right: 20px;padding-top: 40px;padding-bottom: 40px;width: 100%;height: 100%; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-3vqIwaHedv[data-gp-component] { padding-left: 20px;padding-right: 20px;padding-top: 40px;padding-bottom: 40px;width: 100%;height: 100%; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-3vqIwaHedv[data-gp-component] { padding-left: 20px;padding-right: 20px;padding-top: 40px;padding-bottom: 40px;width: 100%;height: 100%; } } @media (min-width: 1200px) { .gp-component-id-3vqIwaHedv[data-gp-component] { padding-left: 20px;padding-right: 20px;padding-top: 40px;padding-bottom: 40px;width: 100%;height: 100%; } }

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

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

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

 @media (max-width: 639px) { .gp-component-id-CWsaEb4E0s[data-gp-component] { margin-left: auto;margin-right: auto;width: 100%; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-CWsaEb4E0s[data-gp-component] { margin-left: auto;margin-right: auto;width: 100%;max-width: 640px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-CWsaEb4E0s[data-gp-component] { margin-left: auto;margin-right: auto;width: 100%;max-width: 768px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-CWsaEb4E0s[data-gp-component] { margin-left: auto;margin-right: auto;width: 100%;max-width: 992px; } } @media (min-width: 1200px) { .gp-component-id-CWsaEb4E0s[data-gp-component] { margin-left: auto;margin-right: auto;width: 100%;max-width: 1200px; } }

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

 @media (max-width: 639px) { .gp-component-id-KHxBIHSidk[data-gp-component] { font-size: 15px !important;color: rgb(185, 252, 116);line-height: 1;display: inline-block; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-KHxBIHSidk[data-gp-component] { font-size: 15px !important;color: rgb(185, 252, 116);line-height: 1;display: inline-block; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-KHxBIHSidk[data-gp-component] { font-size: 15px !important;color: rgb(185, 252, 116);line-height: 1;display: inline-block; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-KHxBIHSidk[data-gp-component] { font-size: 15px !important;color: rgb(185, 252, 116);line-height: 1;display: inline-block; } } @media (min-width: 1200px) { .gp-component-id-KHxBIHSidk[data-gp-component] { font-size: 15px !important;color: rgb(185, 252, 116);line-height: 1;display: inline-block; } }

 @media (max-width: 639px) { .gp-component-id-s9FigNLFzM[data-gp-component] { font-size: 15px !important;color: rgb(185, 252, 116);line-height: 1;display: inline-block; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-s9FigNLFzM[data-gp-component] { font-size: 15px !important;color: rgb(185, 252, 116);line-height: 1;display: inline-block; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-s9FigNLFzM[data-gp-component] { font-size: 15px !important;color: rgb(185, 252, 116);line-height: 1;display: inline-block; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-s9FigNLFzM[data-gp-component] { font-size: 15px !important;color: rgb(185, 252, 116);line-height: 1;display: inline-block; } } @media (min-width: 1200px) { .gp-component-id-s9FigNLFzM[data-gp-component] { font-size: 15px !important;color: rgb(185, 252, 116);line-height: 1;display: inline-block; } }

 @media (max-width: 639px) { .gp-component-id-63iJBfZjs3[data-gp-component] { font-size: 15px !important;color: rgb(185, 252, 116);line-height: 1;display: inline-block; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-63iJBfZjs3[data-gp-component] { font-size: 15px !important;color: rgb(185, 252, 116);line-height: 1;display: inline-block; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-63iJBfZjs3[data-gp-component] { font-size: 15px !important;color: rgb(185, 252, 116);line-height: 1;display: inline-block; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-63iJBfZjs3[data-gp-component] { font-size: 15px !important;color: rgb(185, 252, 116);line-height: 1;display: inline-block; } } @media (min-width: 1200px) { .gp-component-id-63iJBfZjs3[data-gp-component] { font-size: 15px !important;color: rgb(185, 252, 116);line-height: 1;display: inline-block; } }

 @media (max-width: 639px) { .gp-component-id-6ClHDLRvA[data-gp-component] { font-size: 15px !important;color: rgb(185, 252, 116);line-height: 1;display: inline-block; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-6ClHDLRvA[data-gp-component] { font-size: 15px !important;color: rgb(185, 252, 116);line-height: 1;display: inline-block; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-6ClHDLRvA[data-gp-component] { font-size: 15px !important;color: rgb(185, 252, 116);line-height: 1;display: inline-block; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-6ClHDLRvA[data-gp-component] { font-size: 15px !important;color: rgb(185, 252, 116);line-height: 1;display: inline-block; } } @media (min-width: 1200px) { .gp-component-id-6ClHDLRvA[data-gp-component] { font-size: 15px !important;color: rgb(185, 252, 116);line-height: 1;display: inline-block; } }

 @media (max-width: 639px) { .gp-component-id-0GXM50db5x[data-gp-component] { font-size: 15px !important;color: rgb(185, 252, 116);line-height: 1;display: inline-block; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-0GXM50db5x[data-gp-component] { font-size: 15px !important;color: rgb(185, 252, 116);line-height: 1;display: inline-block; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-0GXM50db5x[data-gp-component] { font-size: 15px !important;color: rgb(185, 252, 116);line-height: 1;display: inline-block; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-0GXM50db5x[data-gp-component] { font-size: 15px !important;color: rgb(185, 252, 116);line-height: 1;display: inline-block; } } @media (min-width: 1200px) { .gp-component-id-0GXM50db5x[data-gp-component] { font-size: 15px !important;color: rgb(185, 252, 116);line-height: 1;display: inline-block; } }

 @media (max-width: 639px) { .gp-component-id-LvgwAAK3Pp[data-gp-component] { font-size: 15px !important;color: rgb(185, 252, 116);line-height: 1;display: inline-block; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-LvgwAAK3Pp[data-gp-component] { font-size: 15px !important;color: rgb(185, 252, 116);line-height: 1;display: inline-block; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-LvgwAAK3Pp[data-gp-component] { font-size: 15px !important;color: rgb(185, 252, 116);line-height: 1;display: inline-block; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-LvgwAAK3Pp[data-gp-component] { font-size: 15px !important;color: rgb(185, 252, 116);line-height: 1;display: inline-block; } } @media (min-width: 1200px) { .gp-component-id-LvgwAAK3Pp[data-gp-component] { font-size: 15px !important;color: rgb(185, 252, 116);line-height: 1;display: inline-block; } }

 @media (max-width: 639px) { .gp-component-id-f7kaIg1h7i[data-gp-component] { font-size: 15px !important;color: rgb(185, 252, 116);line-height: 1;display: inline-block; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-f7kaIg1h7i[data-gp-component] { font-size: 15px !important;color: rgb(185, 252, 116);line-height: 1;display: inline-block; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-f7kaIg1h7i[data-gp-component] { font-size: 15px !important;color: rgb(185, 252, 116);line-height: 1;display: inline-block; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-f7kaIg1h7i[data-gp-component] { font-size: 15px !important;color: rgb(185, 252, 116);line-height: 1;display: inline-block; } } @media (min-width: 1200px) { .gp-component-id-f7kaIg1h7i[data-gp-component] { font-size: 15px !important;color: rgb(185, 252, 116);line-height: 1;display: inline-block; } }

 @media (max-width: 639px) { .gp-component-id-_KtuWDFe1A[data-gp-component] { font-size: 15px !important;color: rgb(185, 252, 116);line-height: 1;display: inline-block; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-_KtuWDFe1A[data-gp-component] { font-size: 15px !important;color: rgb(185, 252, 116);line-height: 1;display: inline-block; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-_KtuWDFe1A[data-gp-component] { font-size: 15px !important;color: rgb(185, 252, 116);line-height: 1;display: inline-block; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-_KtuWDFe1A[data-gp-component] { font-size: 15px !important;color: rgb(185, 252, 116);line-height: 1;display: inline-block; } } @media (min-width: 1200px) { .gp-component-id-_KtuWDFe1A[data-gp-component] { font-size: 15px !important;color: rgb(185, 252, 116);line-height: 1;display: inline-block; } }

 @media (max-width: 639px) { .gp-component-id-shHLhzIK0[data-gp-component] { padding-bottom: 15px;z-index: 10;position: relative; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-shHLhzIK0[data-gp-component] { padding-bottom: 15px;z-index: 10;position: relative; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-shHLhzIK0[data-gp-component] { padding-bottom: 15px;z-index: 10;position: relative; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-shHLhzIK0[data-gp-component] { padding-bottom: 15px;z-index: 10;position: relative; } } @media (min-width: 1200px) { .gp-component-id-shHLhzIK0[data-gp-component] { padding-bottom: 15px;z-index: 10;position: relative; } }

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

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

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

 @media (max-width: 639px) { .gp-component-id-8Sfl6UyZR7[data-gp-component] { padding-left: 20px;padding-right: 20px;padding-top: 40px;padding-bottom: 40px;width: 100%;height: 100%; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-8Sfl6UyZR7[data-gp-component] { padding-left: 20px;padding-right: 20px;padding-top: 40px;padding-bottom: 40px;width: 100%;height: 100%; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-8Sfl6UyZR7[data-gp-component] { padding-left: 20px;padding-right: 20px;padding-top: 40px;padding-bottom: 40px;width: 100%;height: 100%; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-8Sfl6UyZR7[data-gp-component] { padding-left: 20px;padding-right: 20px;padding-top: 40px;padding-bottom: 40px;width: 100%;height: 100%; } } @media (min-width: 1200px) { .gp-component-id-8Sfl6UyZR7[data-gp-component] { padding-left: 20px;padding-right: 20px;padding-top: 40px;padding-bottom: 40px;width: 100%;height: 100%; } }

 @media (max-width: 639px) { .gp-component-id-GdeI5yY_Pt[data-gp-component] { padding-left: 20px;padding-right: 20px;padding-top: 40px;padding-bottom: 40px;width: 100%;height: 100%; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-GdeI5yY_Pt[data-gp-component] { padding-left: 20px;padding-right: 20px;padding-top: 40px;padding-bottom: 40px;width: 100%;height: 100%; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-GdeI5yY_Pt[data-gp-component] { padding-left: 20px;padding-right: 20px;padding-top: 40px;padding-bottom: 40px;width: 100%;height: 100%; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-GdeI5yY_Pt[data-gp-component] { padding-left: 20px;padding-right: 20px;padding-top: 40px;padding-bottom: 40px;width: 100%;height: 100%; } } @media (min-width: 1200px) { .gp-component-id-GdeI5yY_Pt[data-gp-component] { padding-left: 20px;padding-right: 20px;padding-top: 40px;padding-bottom: 40px;width: 100%;height: 100%; } }

 @media (max-width: 639px) { .gp-component-id-_wJS1kBgcX[data-gp-component] { padding-left: 20px;padding-right: 20px;padding-top: 40px;padding-bottom: 40px;width: 100%;height: 100%; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-_wJS1kBgcX[data-gp-component] { padding-left: 20px;padding-right: 20px;padding-top: 40px;padding-bottom: 40px;width: 100%;height: 100%; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-_wJS1kBgcX[data-gp-component] { padding-left: 20px;padding-right: 20px;padding-top: 40px;padding-bottom: 40px;width: 100%;height: 100%; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-_wJS1kBgcX[data-gp-component] { padding-left: 20px;padding-right: 20px;padding-top: 40px;padding-bottom: 40px;width: 100%;height: 100%; } } @media (min-width: 1200px) { .gp-component-id-_wJS1kBgcX[data-gp-component] { padding-left: 20px;padding-right: 20px;padding-top: 40px;padding-bottom: 40px;width: 100%;height: 100%; } }

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

 @media (max-width: 639px) { [data-gp-text] .gp-component-id-1PFqZbl9k { font-size: 18px !important;color: rgb(166, 162, 157);line-height: 2;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-1PFqZbl9k { font-size: 18px !important;color: rgb(166, 162, 157);line-height: 2;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-1PFqZbl9k { font-size: 18px !important;color: rgb(166, 162, 157);line-height: 2;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-1PFqZbl9k { font-size: 18px !important;color: rgb(166, 162, 157);line-height: 2;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-1PFqZbl9k { font-size: 18px !important;color: rgb(166, 162, 157);line-height: 2;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } }

 @media (max-width: 639px) { .gp-component-id-V0vb9EfXhv[data-gp-component] { width: 100%;height: 100%;flex-direction: column;justify-content: flex-end;display: flex; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-V0vb9EfXhv[data-gp-component] { width: 100%;height: 100%;flex-direction: column;justify-content: flex-end;display: flex; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-V0vb9EfXhv[data-gp-component] { width: 100%;height: 100%;flex-direction: column;justify-content: flex-end;display: flex; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-V0vb9EfXhv[data-gp-component] { width: 100%;height: 100%;flex-direction: column;justify-content: flex-end;display: flex; } } @media (min-width: 1200px) { .gp-component-id-V0vb9EfXhv[data-gp-component] { width: 100%;height: 100%;flex-direction: column;justify-content: flex-end;display: flex; } }

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

 @media (max-width: 639px) { [data-gp-text] .gp-component-id-fd9nTJwIPo { font-size: 56px !important;font-weight: 900 !important;color: rgb(246, 240, 230);line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-fd9nTJwIPo { font-size: 56px !important;font-weight: 900 !important;color: rgb(246, 240, 230);line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-fd9nTJwIPo { font-size: 56px !important;font-weight: 900 !important;color: rgb(246, 240, 230);line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-fd9nTJwIPo { font-size: 56px !important;font-weight: 900 !important;color: rgb(246, 240, 230);line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-fd9nTJwIPo { font-size: 56px !important;font-weight: 900 !important;color: rgb(246, 240, 230);line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px; } }

 @media (max-width: 639px) { [data-gp-text] .gp-component-id-Zf4WDO7oc6 { font-size: inherit;font-weight: inherit;text-align: left;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-Zf4WDO7oc6 { font-size: inherit;font-weight: inherit;text-align: left;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-Zf4WDO7oc6 { font-size: inherit;font-weight: inherit;text-align: left;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-Zf4WDO7oc6 { font-size: inherit;font-weight: inherit;text-align: left;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-Zf4WDO7oc6 { font-size: inherit;font-weight: inherit;text-align: left;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } }

 @media (max-width: 639px) { .gp-component-id-G8hJLTDEq7[data-gp-component] { padding-left: 20px;padding-right: 20px;width: 100%;height: 100%;flex-direction: column;justify-content: flex-end;display: flex; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-G8hJLTDEq7[data-gp-component] { padding-left: 20px;padding-right: 20px;width: 100%;height: 100%;flex-direction: column;justify-content: flex-end;display: flex; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-G8hJLTDEq7[data-gp-component] { padding-left: 20px;padding-right: 20px;width: 100%;height: 100%;flex-direction: column;justify-content: flex-end;display: flex; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-G8hJLTDEq7[data-gp-component] { padding-left: 20px;padding-right: 20px;width: 100%;height: 100%;flex-direction: column;justify-content: flex-end;display: flex; } } @media (min-width: 1200px) { .gp-component-id-G8hJLTDEq7[data-gp-component] { padding-left: 20px;padding-right: 20px;width: 100%;height: 100%;flex-direction: column;justify-content: flex-end;display: flex; } }

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

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

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

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

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

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

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

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

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

 @media (max-width: 639px) { .gp-component-id-1w2QiTUDg[data-gp-component] { border-top-left-radius: 38px;border-top-right-radius: 38px;border-bottom-left-radius: 38px;border-bottom-right-radius: 38px;border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;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-1w2QiTUDg[data-gp-component] { border-top-left-radius: 38px;border-top-right-radius: 38px;border-bottom-left-radius: 38px;border-bottom-right-radius: 38px;border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;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-1w2QiTUDg[data-gp-component] { border-top-left-radius: 38px;border-top-right-radius: 38px;border-bottom-left-radius: 38px;border-bottom-right-radius: 38px;border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;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-1w2QiTUDg[data-gp-component] { border-top-left-radius: 38px;border-top-right-radius: 38px;border-bottom-left-radius: 38px;border-bottom-right-radius: 38px;border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;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-1w2QiTUDg[data-gp-component] { border-top-left-radius: 38px;border-top-right-radius: 38px;border-bottom-left-radius: 38px;border-bottom-right-radius: 38px;border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;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-RZsl70rtai[data-gp-component] { border-top-left-radius: 33px;border-top-right-radius: 33px;border-bottom-left-radius: 33px;border-bottom-right-radius: 33px;padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;height: 100%; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-RZsl70rtai[data-gp-component] { border-top-left-radius: 33px;border-top-right-radius: 33px;border-bottom-left-radius: 33px;border-bottom-right-radius: 33px;padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;height: 100%; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-RZsl70rtai[data-gp-component] { border-top-left-radius: 33px;border-top-right-radius: 33px;border-bottom-left-radius: 33px;border-bottom-right-radius: 33px;padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;height: 100%; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-RZsl70rtai[data-gp-component] { border-top-left-radius: 33px;border-top-right-radius: 33px;border-bottom-left-radius: 33px;border-bottom-right-radius: 33px;padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;height: 100%; } } @media (min-width: 1200px) { .gp-component-id-RZsl70rtai[data-gp-component] { border-top-left-radius: 33px;border-top-right-radius: 33px;border-bottom-left-radius: 33px;border-bottom-right-radius: 33px;padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;height: 100%; } }

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

 .gp-component-id-LTOU00HgRZ { margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px; } @media (max-width: 639px) { .gp-component-id-LTOU00HgRZ { font-size: 18px !important;color: rgb(166, 162, 157);line-height: 2;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-LTOU00HgRZ { font-size: 18px !important;color: rgb(166, 162, 157);line-height: 2;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-LTOU00HgRZ { font-size: 18px !important;color: rgb(166, 162, 157);line-height: 2;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-LTOU00HgRZ { font-size: 18px !important;color: rgb(166, 162, 157);line-height: 2;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } } @media (min-width: 1200px) { .gp-component-id-LTOU00HgRZ { font-size: 18px !important;color: rgb(166, 162, 157);line-height: 2;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } }

 @media (max-width: 639px) { [data-gp-text] .gp-component-id-1M98NCezWY { font-size: 18px !important;color: rgb(166, 162, 157);line-height: 2; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-1M98NCezWY { font-size: 18px !important;color: rgb(166, 162, 157);line-height: 2; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-1M98NCezWY { font-size: 18px !important;color: rgb(166, 162, 157);line-height: 2; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-1M98NCezWY { font-size: 18px !important;color: rgb(166, 162, 157);line-height: 2; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-1M98NCezWY { font-size: 18px !important;color: rgb(166, 162, 157);line-height: 2; } }

 .gp-component-id-wr0XFWJOqd { font-size: inherit;font-weight: inherit;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px; } @media (max-width: 639px) { .gp-component-id-wr0XFWJOqd { font-size: 56px !important;font-weight: 900 !important;color: rgb(246, 240, 230);line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 20px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-wr0XFWJOqd { font-size: 56px !important;font-weight: 900 !important;color: rgb(246, 240, 230);line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 20px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-wr0XFWJOqd { font-size: 56px !important;font-weight: 900 !important;color: rgb(246, 240, 230);line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 20px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-wr0XFWJOqd { font-size: 56px !important;font-weight: 900 !important;color: rgb(246, 240, 230);line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 20px; } } @media (min-width: 1200px) { .gp-component-id-wr0XFWJOqd { font-size: 56px !important;font-weight: 900 !important;color: rgb(246, 240, 230);line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 20px; } }

 @media (max-width: 639px) { [data-gp-text] .gp-component-id-sprqzNV18Q { font-size: 56px !important;font-weight: 900 !important;color: rgb(246, 240, 230);line-height: 1.25;margin-top: 20px;margin-bottom: 20px; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-sprqzNV18Q { font-size: 56px !important;font-weight: 900 !important;color: rgb(246, 240, 230);line-height: 1.25;margin-top: 20px;margin-bottom: 20px; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-sprqzNV18Q { font-size: 56px !important;font-weight: 900 !important;color: rgb(246, 240, 230);line-height: 1.25;margin-top: 20px;margin-bottom: 20px; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-sprqzNV18Q { font-size: 56px !important;font-weight: 900 !important;color: rgb(246, 240, 230);line-height: 1.25;margin-top: 20px;margin-bottom: 20px; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-sprqzNV18Q { font-size: 56px !important;font-weight: 900 !important;color: rgb(246, 240, 230);line-height: 1.25;margin-top: 20px;margin-bottom: 20px; } }

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

 @media (max-width: 639px) { [data-gp-text] .gp-component-id-8Ru6oZwKcE { text-align: left;margin-bottom: 0px; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-8Ru6oZwKcE { text-align: left;margin-bottom: 0px; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-8Ru6oZwKcE { text-align: left;margin-bottom: 0px; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-8Ru6oZwKcE { text-align: left;margin-bottom: 0px; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-8Ru6oZwKcE { text-align: left;margin-bottom: 0px; } }

 @media (max-width: 639px) { .gp-component-id-3py_THLEcZ[data-gp-component] { padding-left: 20px;padding-right: 20px;width: 100%;height: 100%; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-3py_THLEcZ[data-gp-component] { padding-left: 20px;padding-right: 20px;width: 100%;height: 100%; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-3py_THLEcZ[data-gp-component] { padding-left: 20px;padding-right: 20px;width: 100%;height: 100%; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-3py_THLEcZ[data-gp-component] { padding-left: 20px;padding-right: 20px;width: 100%;height: 100%; } } @media (min-width: 1200px) { .gp-component-id-3py_THLEcZ[data-gp-component] { padding-left: 20px;padding-right: 20px;width: 100%;height: 100%; } }

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

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

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

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

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

 @media (max-width: 639px) { .gp-component-id-9xL0whXX4S[data-gp-component] { width: 100%;height: 100%;flex-direction: row;justify-content: flex-end;align-items: flex-end;display: flex; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-9xL0whXX4S[data-gp-component] { width: 100%;height: 100%;flex-direction: row;justify-content: flex-end;align-items: flex-end;display: flex; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-9xL0whXX4S[data-gp-component] { width: 100%;height: 100%;flex-direction: row;justify-content: flex-end;align-items: flex-end;display: flex; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-9xL0whXX4S[data-gp-component] { width: 100%;height: 100%;flex-direction: row;justify-content: flex-end;align-items: flex-end;display: flex; } } @media (min-width: 1200px) { .gp-component-id-9xL0whXX4S[data-gp-component] { width: 100%;height: 100%;flex-direction: row;justify-content: flex-end;align-items: flex-end;display: flex; } }

 @media (max-width: 639px) { .gp-component-id-Jgl8NQVfLg[data-gp-component] { width: 100%;height: 100%;flex-direction: row;justify-content: flex-end;display: flex; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-Jgl8NQVfLg[data-gp-component] { width: 100%;height: 100%;flex-direction: row;justify-content: flex-end;display: flex; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-Jgl8NQVfLg[data-gp-component] { width: 100%;height: 100%;flex-direction: row;justify-content: flex-end;display: flex; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-Jgl8NQVfLg[data-gp-component] { width: 100%;height: 100%;flex-direction: row;justify-content: flex-end;display: flex; } } @media (min-width: 1200px) { .gp-component-id-Jgl8NQVfLg[data-gp-component] { width: 100%;height: 100%;flex-direction: row;justify-content: flex-end;display: flex; } }

 @media (max-width: 639px) { .gp-component-id-LbI4ZTS40G[data-gp-component] { font-size: 14px !important;color: rgb(185, 252, 116);background-color: transparent;display: block;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-LbI4ZTS40G[data-gp-component] { font-size: 14px !important;color: rgb(185, 252, 116);background-color: transparent;display: block;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-LbI4ZTS40G[data-gp-component] { font-size: 14px !important;color: rgb(185, 252, 116);background-color: transparent;display: block;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-LbI4ZTS40G[data-gp-component] { font-size: 14px !important;color: rgb(185, 252, 116);background-color: transparent;display: block;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer; } } @media (min-width: 1200px) { .gp-component-id-LbI4ZTS40G[data-gp-component] { font-size: 14px !important;color: rgb(185, 252, 116);background-color: transparent;display: block;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer; } }

 @media (max-width: 639px) { .gp-component-id-OfXvZ5pbDd { font-size: 14px !important;color: rgb(166, 162, 157);line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-OfXvZ5pbDd { font-size: 14px !important;color: rgb(166, 162, 157);line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-OfXvZ5pbDd { font-size: 14px !important;color: rgb(166, 162, 157);line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-OfXvZ5pbDd { font-size: 14px !important;color: rgb(166, 162, 157);line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } } @media (min-width: 1200px) { .gp-component-id-OfXvZ5pbDd { font-size: 14px !important;color: rgb(166, 162, 157);line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } }

 @media (max-width: 639px) { [data-gp-text] .gp-component-id-WFpEavom6C { font-size: 14px !important;color: rgb(166, 162, 157);line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-WFpEavom6C { font-size: 14px !important;color: rgb(166, 162, 157);line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-WFpEavom6C { font-size: 14px !important;color: rgb(166, 162, 157);line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-WFpEavom6C { font-size: 14px !important;color: rgb(166, 162, 157);line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-WFpEavom6C { font-size: 14px !important;color: rgb(166, 162, 157);line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } }

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

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

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

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

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

 @media (max-width: 639px) { .gp-component-id-zeLbgTZtx[data-gp-component] { border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;border-left-width: 0px;border-right-width: 0px;border-top-width: 2px;border-bottom-width: 0px;border-left-color: rgb(20, 33, 10);border-right-color: rgb(20, 33, 10);border-top-color: rgb(20, 33, 10);border-bottom-color: rgb(20, 33, 10);margin-left: auto;margin-right: auto;margin-top: 16px;padding-bottom: 8px;width: 100%; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-zeLbgTZtx[data-gp-component] { border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;border-left-width: 0px;border-right-width: 0px;border-top-width: 2px;border-bottom-width: 0px;border-left-color: rgb(20, 33, 10);border-right-color: rgb(20, 33, 10);border-top-color: rgb(20, 33, 10);border-bottom-color: rgb(20, 33, 10);margin-left: auto;margin-right: auto;margin-top: 16px;padding-bottom: 8px;width: 100%; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-zeLbgTZtx[data-gp-component] { border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;border-left-width: 0px;border-right-width: 0px;border-top-width: 2px;border-bottom-width: 0px;border-left-color: rgb(20, 33, 10);border-right-color: rgb(20, 33, 10);border-top-color: rgb(20, 33, 10);border-bottom-color: rgb(20, 33, 10);margin-left: auto;margin-right: auto;margin-top: 16px;padding-bottom: 8px;width: 100%; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-zeLbgTZtx[data-gp-component] { border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;border-left-width: 0px;border-right-width: 0px;border-top-width: 2px;border-bottom-width: 0px;border-left-color: rgb(20, 33, 10);border-right-color: rgb(20, 33, 10);border-top-color: rgb(20, 33, 10);border-bottom-color: rgb(20, 33, 10);margin-left: auto;margin-right: auto;margin-top: 16px;padding-bottom: 8px;width: 100%; } } @media (min-width: 1200px) { .gp-component-id-zeLbgTZtx[data-gp-component] { border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;border-left-width: 0px;border-right-width: 0px;border-top-width: 2px;border-bottom-width: 0px;border-left-color: rgb(20, 33, 10);border-right-color: rgb(20, 33, 10);border-top-color: rgb(20, 33, 10);border-bottom-color: rgb(20, 33, 10);margin-left: auto;margin-right: auto;margin-top: 16px;padding-bottom: 8px;width: 100%; } }

 @media (max-width: 639px) { .gp-component-id-qp6vU7BqAY { font-size: 15px !important;color: rgb(166, 162, 157);margin-left: 4px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-qp6vU7BqAY { font-size: 15px !important;color: rgb(166, 162, 157);margin-left: 4px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-qp6vU7BqAY { font-size: 15px !important;color: rgb(166, 162, 157);margin-left: 4px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-qp6vU7BqAY { font-size: 15px !important;color: rgb(166, 162, 157);margin-left: 4px; } } @media (min-width: 1200px) { .gp-component-id-qp6vU7BqAY { font-size: 15px !important;color: rgb(166, 162, 157);margin-left: 4px; } }

 @media (max-width: 639px) { [data-gp-text] .gp-component-id-iqIi0pDFak { font-size: 15px !important;color: rgb(166, 162, 157);margin-left: 4px; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-iqIi0pDFak { font-size: 15px !important;color: rgb(166, 162, 157);margin-left: 4px; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-iqIi0pDFak { font-size: 15px !important;color: rgb(166, 162, 157);margin-left: 4px; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-iqIi0pDFak { font-size: 15px !important;color: rgb(166, 162, 157);margin-left: 4px; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-iqIi0pDFak { font-size: 15px !important;color: rgb(166, 162, 157);margin-left: 4px; } }

 @media (max-width: 639px) { .gp-component-id-_cgEEyRy1p[data-gp-component] { font-size: 11px !important;color: rgb(185, 252, 116);line-height: 1;display: inline-block; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-_cgEEyRy1p[data-gp-component] { font-size: 11px !important;color: rgb(185, 252, 116);line-height: 1;display: inline-block; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-_cgEEyRy1p[data-gp-component] { font-size: 11px !important;color: rgb(185, 252, 116);line-height: 1;display: inline-block; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-_cgEEyRy1p[data-gp-component] { font-size: 11px !important;color: rgb(185, 252, 116);line-height: 1;display: inline-block; } } @media (min-width: 1200px) { .gp-component-id-_cgEEyRy1p[data-gp-component] { font-size: 11px !important;color: rgb(185, 252, 116);line-height: 1;display: inline-block; } }

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

 @media (max-width: 639px) { .gp-component-id-3rCnd7J4aU { font-size: 15px !important;color: rgb(166, 162, 157);margin-left: 4px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-3rCnd7J4aU { font-size: 15px !important;color: rgb(166, 162, 157);margin-left: 4px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-3rCnd7J4aU { font-size: 15px !important;color: rgb(166, 162, 157);margin-left: 4px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-3rCnd7J4aU { font-size: 15px !important;color: rgb(166, 162, 157);margin-left: 4px; } } @media (min-width: 1200px) { .gp-component-id-3rCnd7J4aU { font-size: 15px !important;color: rgb(166, 162, 157);margin-left: 4px; } }

 @media (max-width: 639px) { [data-gp-text] .gp-component-id-Jkd0MytTHh { font-size: 15px !important;color: rgb(166, 162, 157);margin-left: 4px; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-Jkd0MytTHh { font-size: 15px !important;color: rgb(166, 162, 157);margin-left: 4px; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-Jkd0MytTHh { font-size: 15px !important;color: rgb(166, 162, 157);margin-left: 4px; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-Jkd0MytTHh { font-size: 15px !important;color: rgb(166, 162, 157);margin-left: 4px; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-Jkd0MytTHh { font-size: 15px !important;color: rgb(166, 162, 157);margin-left: 4px; } }

 @media (max-width: 639px) { .gp-component-id-fWtt2sFRr[data-gp-component] { font-size: 11px !important;color: rgb(185, 252, 116);line-height: 1;display: inline-block; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-fWtt2sFRr[data-gp-component] { font-size: 11px !important;color: rgb(185, 252, 116);line-height: 1;display: inline-block; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-fWtt2sFRr[data-gp-component] { font-size: 11px !important;color: rgb(185, 252, 116);line-height: 1;display: inline-block; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-fWtt2sFRr[data-gp-component] { font-size: 11px !important;color: rgb(185, 252, 116);line-height: 1;display: inline-block; } } @media (min-width: 1200px) { .gp-component-id-fWtt2sFRr[data-gp-component] { font-size: 11px !important;color: rgb(185, 252, 116);line-height: 1;display: inline-block; } }

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

 @media (max-width: 639px) { .gp-component-id-ALW50LevBl { font-size: 15px !important;color: rgb(166, 162, 157);margin-left: 4px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-ALW50LevBl { font-size: 15px !important;color: rgb(166, 162, 157);margin-left: 4px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-ALW50LevBl { font-size: 15px !important;color: rgb(166, 162, 157);margin-left: 4px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-ALW50LevBl { font-size: 15px !important;color: rgb(166, 162, 157);margin-left: 4px; } } @media (min-width: 1200px) { .gp-component-id-ALW50LevBl { font-size: 15px !important;color: rgb(166, 162, 157);margin-left: 4px; } }

 @media (max-width: 639px) { [data-gp-text] .gp-component-id-13ubJ67hNG { font-size: 15px !important;color: rgb(166, 162, 157);margin-left: 4px; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-13ubJ67hNG { font-size: 15px !important;color: rgb(166, 162, 157);margin-left: 4px; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-13ubJ67hNG { font-size: 15px !important;color: rgb(166, 162, 157);margin-left: 4px; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-13ubJ67hNG { font-size: 15px !important;color: rgb(166, 162, 157);margin-left: 4px; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-13ubJ67hNG { font-size: 15px !important;color: rgb(166, 162, 157);margin-left: 4px; } }

 @media (max-width: 639px) { .gp-component-id-3jHZbKa3AW[data-gp-component] { font-size: 11px !important;color: rgb(185, 252, 116);line-height: 1;display: inline-block; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-3jHZbKa3AW[data-gp-component] { font-size: 11px !important;color: rgb(185, 252, 116);line-height: 1;display: inline-block; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-3jHZbKa3AW[data-gp-component] { font-size: 11px !important;color: rgb(185, 252, 116);line-height: 1;display: inline-block; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-3jHZbKa3AW[data-gp-component] { font-size: 11px !important;color: rgb(185, 252, 116);line-height: 1;display: inline-block; } } @media (min-width: 1200px) { .gp-component-id-3jHZbKa3AW[data-gp-component] { font-size: 11px !important;color: rgb(185, 252, 116);line-height: 1;display: inline-block; } }

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

 @media (max-width: 639px) { .gp-component-id-HN4fIXDutx { font-size: 15px !important;color: rgb(166, 162, 157);margin-left: 4px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-HN4fIXDutx { font-size: 15px !important;color: rgb(166, 162, 157);margin-left: 4px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-HN4fIXDutx { font-size: 15px !important;color: rgb(166, 162, 157);margin-left: 4px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-HN4fIXDutx { font-size: 15px !important;color: rgb(166, 162, 157);margin-left: 4px; } } @media (min-width: 1200px) { .gp-component-id-HN4fIXDutx { font-size: 15px !important;color: rgb(166, 162, 157);margin-left: 4px; } }

 @media (max-width: 639px) { [data-gp-text] .gp-component-id-6W6a0REDzB { font-size: 15px !important;color: rgb(166, 162, 157);margin-left: 4px; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-6W6a0REDzB { font-size: 15px !important;color: rgb(166, 162, 157);margin-left: 4px; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-6W6a0REDzB { font-size: 15px !important;color: rgb(166, 162, 157);margin-left: 4px; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-6W6a0REDzB { font-size: 15px !important;color: rgb(166, 162, 157);margin-left: 4px; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-6W6a0REDzB { font-size: 15px !important;color: rgb(166, 162, 157);margin-left: 4px; } }

 @media (max-width: 639px) { .gp-component-id-S7foKuEoIW[data-gp-component] { font-size: 11px !important;color: rgb(185, 252, 116);line-height: 1;display: inline-block; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-S7foKuEoIW[data-gp-component] { font-size: 11px !important;color: rgb(185, 252, 116);line-height: 1;display: inline-block; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-S7foKuEoIW[data-gp-component] { font-size: 11px !important;color: rgb(185, 252, 116);line-height: 1;display: inline-block; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-S7foKuEoIW[data-gp-component] { font-size: 11px !important;color: rgb(185, 252, 116);line-height: 1;display: inline-block; } } @media (min-width: 1200px) { .gp-component-id-S7foKuEoIW[data-gp-component] { font-size: 11px !important;color: rgb(185, 252, 116);line-height: 1;display: inline-block; } }

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

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

 @media (max-width: 639px) { .gp-component-id-0dBdQGzeSU { font-size: 16px !important;color: rgb(166, 162, 157);line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 5px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-0dBdQGzeSU { font-size: 16px !important;color: rgb(166, 162, 157);line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 5px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-0dBdQGzeSU { font-size: 16px !important;color: rgb(166, 162, 157);line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 5px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-0dBdQGzeSU { font-size: 16px !important;color: rgb(166, 162, 157);line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 5px; } } @media (min-width: 1200px) { .gp-component-id-0dBdQGzeSU { font-size: 16px !important;color: rgb(166, 162, 157);line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 5px; } }

 @media (max-width: 639px) { [data-gp-text] .gp-component-id-E3XHIBPdyj { font-size: 16px !important;color: rgb(166, 162, 157);line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 5px; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-E3XHIBPdyj { font-size: 16px !important;color: rgb(166, 162, 157);line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 5px; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-E3XHIBPdyj { font-size: 16px !important;color: rgb(166, 162, 157);line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 5px; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-E3XHIBPdyj { font-size: 16px !important;color: rgb(166, 162, 157);line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 5px; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-E3XHIBPdyj { font-size: 16px !important;color: rgb(166, 162, 157);line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 5px; } }

 .gp-component-id-LvjVUd2Nxa { margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px; } @media (max-width: 639px) { .gp-component-id-LvjVUd2Nxa { font-size: 16px !important;font-weight: 700 !important;color: rgb(166, 162, 157);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-LvjVUd2Nxa { font-size: 16px !important;font-weight: 700 !important;color: rgb(166, 162, 157);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-LvjVUd2Nxa { font-size: 16px !important;font-weight: 700 !important;color: rgb(166, 162, 157);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-LvjVUd2Nxa { font-size: 16px !important;font-weight: 700 !important;color: rgb(166, 162, 157);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px; } } @media (min-width: 1200px) { .gp-component-id-LvjVUd2Nxa { font-size: 16px !important;font-weight: 700 !important;color: rgb(166, 162, 157);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px; } }

 @media (max-width: 639px) { [data-gp-text] .gp-component-id-ZeV9fPmZ5 { font-size: 16px !important;font-weight: 700 !important;color: rgb(166, 162, 157);margin-bottom: 10px; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-ZeV9fPmZ5 { font-size: 16px !important;font-weight: 700 !important;color: rgb(166, 162, 157);margin-bottom: 10px; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-ZeV9fPmZ5 { font-size: 16px !important;font-weight: 700 !important;color: rgb(166, 162, 157);margin-bottom: 10px; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-ZeV9fPmZ5 { font-size: 16px !important;font-weight: 700 !important;color: rgb(166, 162, 157);margin-bottom: 10px; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-ZeV9fPmZ5 { font-size: 16px !important;font-weight: 700 !important;color: rgb(166, 162, 157);margin-bottom: 10px; } }

 .gp-component-id-0eksqsL7o1 { font-size: inherit;font-weight: inherit;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px; } @media (max-width: 639px) { .gp-component-id-0eksqsL7o1 { font-size: 21px !important;font-weight: 900 !important;color: rgb(246, 240, 230);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-0eksqsL7o1 { font-size: 21px !important;font-weight: 900 !important;color: rgb(246, 240, 230);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-0eksqsL7o1 { font-size: 21px !important;font-weight: 900 !important;color: rgb(246, 240, 230);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-0eksqsL7o1 { font-size: 21px !important;font-weight: 900 !important;color: rgb(246, 240, 230);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } } @media (min-width: 1200px) { .gp-component-id-0eksqsL7o1 { font-size: 21px !important;font-weight: 900 !important;color: rgb(246, 240, 230);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } }

 @media (max-width: 639px) { [data-gp-text] .gp-component-id-5MxrcaXGd { font-size: 21px !important;font-weight: 900 !important;color: rgb(246, 240, 230); } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-5MxrcaXGd { font-size: 21px !important;font-weight: 900 !important;color: rgb(246, 240, 230); } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-5MxrcaXGd { font-size: 21px !important;font-weight: 900 !important;color: rgb(246, 240, 230); } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-5MxrcaXGd { font-size: 21px !important;font-weight: 900 !important;color: rgb(246, 240, 230); } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-5MxrcaXGd { font-size: 21px !important;font-weight: 900 !important;color: rgb(246, 240, 230); } }

 @media (max-width: 639px) { .gp-component-id-wH9HAMKd0[data-gp-component] { border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-bottom: 15px;height: auto;max-width: 20%;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-wH9HAMKd0[data-gp-component] { border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-bottom: 15px;height: auto;max-width: 20%;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-wH9HAMKd0[data-gp-component] { border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-bottom: 15px;height: auto;max-width: 20%;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-wH9HAMKd0[data-gp-component] { border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-bottom: 15px;height: auto;max-width: 20%;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-wH9HAMKd0[data-gp-component] { border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-bottom: 15px;height: auto;max-width: 20%;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-HaY0mRcVd_[data-gp-component] { font-size: 14px !important;color: rgb(185, 252, 116);background-color: transparent;display: block;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-HaY0mRcVd_[data-gp-component] { font-size: 14px !important;color: rgb(185, 252, 116);background-color: transparent;display: block;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-HaY0mRcVd_[data-gp-component] { font-size: 14px !important;color: rgb(185, 252, 116);background-color: transparent;display: block;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-HaY0mRcVd_[data-gp-component] { font-size: 14px !important;color: rgb(185, 252, 116);background-color: transparent;display: block;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer; } } @media (min-width: 1200px) { .gp-component-id-HaY0mRcVd_[data-gp-component] { font-size: 14px !important;color: rgb(185, 252, 116);background-color: transparent;display: block;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer; } }

 @media (max-width: 639px) { [data-gp-text] .gp-component-id-AYKVPjIxS { font-size: 14px !important;color: rgb(166, 162, 157);line-height: 1.5; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-AYKVPjIxS { font-size: 14px !important;color: rgb(166, 162, 157);line-height: 1.5; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-AYKVPjIxS { font-size: 14px !important;color: rgb(166, 162, 157);line-height: 1.5; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-AYKVPjIxS { font-size: 14px !important;color: rgb(166, 162, 157);line-height: 1.5; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-AYKVPjIxS { font-size: 14px !important;color: rgb(166, 162, 157);line-height: 1.5; } }

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

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

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

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

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

 @media (max-width: 639px) { .gp-component-id-oAtVdWEsr[data-gp-component] { border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;border-left-width: 0px;border-right-width: 0px;border-top-width: 2px;border-bottom-width: 0px;border-left-color: rgb(20, 33, 10);border-right-color: rgb(20, 33, 10);border-top-color: rgb(20, 33, 10);border-bottom-color: rgb(20, 33, 10);margin-left: auto;margin-right: auto;margin-top: 16px;padding-bottom: 8px;width: 100%; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-oAtVdWEsr[data-gp-component] { border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;border-left-width: 0px;border-right-width: 0px;border-top-width: 2px;border-bottom-width: 0px;border-left-color: rgb(20, 33, 10);border-right-color: rgb(20, 33, 10);border-top-color: rgb(20, 33, 10);border-bottom-color: rgb(20, 33, 10);margin-left: auto;margin-right: auto;margin-top: 16px;padding-bottom: 8px;width: 100%; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-oAtVdWEsr[data-gp-component] { border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;border-left-width: 0px;border-right-width: 0px;border-top-width: 2px;border-bottom-width: 0px;border-left-color: rgb(20, 33, 10);border-right-color: rgb(20, 33, 10);border-top-color: rgb(20, 33, 10);border-bottom-color: rgb(20, 33, 10);margin-left: auto;margin-right: auto;margin-top: 16px;padding-bottom: 8px;width: 100%; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-oAtVdWEsr[data-gp-component] { border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;border-left-width: 0px;border-right-width: 0px;border-top-width: 2px;border-bottom-width: 0px;border-left-color: rgb(20, 33, 10);border-right-color: rgb(20, 33, 10);border-top-color: rgb(20, 33, 10);border-bottom-color: rgb(20, 33, 10);margin-left: auto;margin-right: auto;margin-top: 16px;padding-bottom: 8px;width: 100%; } } @media (min-width: 1200px) { .gp-component-id-oAtVdWEsr[data-gp-component] { border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;border-left-width: 0px;border-right-width: 0px;border-top-width: 2px;border-bottom-width: 0px;border-left-color: rgb(20, 33, 10);border-right-color: rgb(20, 33, 10);border-top-color: rgb(20, 33, 10);border-bottom-color: rgb(20, 33, 10);margin-left: auto;margin-right: auto;margin-top: 16px;padding-bottom: 8px;width: 100%; } }

 @media (max-width: 639px) { .gp-component-id-dG6wVLysh3 { font-size: 15px !important;color: rgb(166, 162, 157);margin-left: 4px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-dG6wVLysh3 { font-size: 15px !important;color: rgb(166, 162, 157);margin-left: 4px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-dG6wVLysh3 { font-size: 15px !important;color: rgb(166, 162, 157);margin-left: 4px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-dG6wVLysh3 { font-size: 15px !important;color: rgb(166, 162, 157);margin-left: 4px; } } @media (min-width: 1200px) { .gp-component-id-dG6wVLysh3 { font-size: 15px !important;color: rgb(166, 162, 157);margin-left: 4px; } }

 @media (max-width: 639px) { .gp-component-id-tg7x7o1QIh[data-gp-component] { font-size: 11px !important;color: rgb(185, 252, 116);line-height: 1;display: inline-block; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-tg7x7o1QIh[data-gp-component] { font-size: 11px !important;color: rgb(185, 252, 116);line-height: 1;display: inline-block; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-tg7x7o1QIh[data-gp-component] { font-size: 11px !important;color: rgb(185, 252, 116);line-height: 1;display: inline-block; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-tg7x7o1QIh[data-gp-component] { font-size: 11px !important;color: rgb(185, 252, 116);line-height: 1;display: inline-block; } } @media (min-width: 1200px) { .gp-component-id-tg7x7o1QIh[data-gp-component] { font-size: 11px !important;color: rgb(185, 252, 116);line-height: 1;display: inline-block; } }

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

 @media (max-width: 639px) { .gp-component-id-tlj4ZyBU6d { font-size: 15px !important;color: rgb(166, 162, 157);margin-left: 4px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-tlj4ZyBU6d { font-size: 15px !important;color: rgb(166, 162, 157);margin-left: 4px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-tlj4ZyBU6d { font-size: 15px !important;color: rgb(166, 162, 157);margin-left: 4px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-tlj4ZyBU6d { font-size: 15px !important;color: rgb(166, 162, 157);margin-left: 4px; } } @media (min-width: 1200px) { .gp-component-id-tlj4ZyBU6d { font-size: 15px !important;color: rgb(166, 162, 157);margin-left: 4px; } }

 @media (max-width: 639px) { .gp-component-id-MPOa4YYi43[data-gp-component] { font-size: 11px !important;color: rgb(185, 252, 116);line-height: 1;display: inline-block; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-MPOa4YYi43[data-gp-component] { font-size: 11px !important;color: rgb(185, 252, 116);line-height: 1;display: inline-block; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-MPOa4YYi43[data-gp-component] { font-size: 11px !important;color: rgb(185, 252, 116);line-height: 1;display: inline-block; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-MPOa4YYi43[data-gp-component] { font-size: 11px !important;color: rgb(185, 252, 116);line-height: 1;display: inline-block; } } @media (min-width: 1200px) { .gp-component-id-MPOa4YYi43[data-gp-component] { font-size: 11px !important;color: rgb(185, 252, 116);line-height: 1;display: inline-block; } }

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

 @media (max-width: 639px) { .gp-component-id-vC0nlTR25 { font-size: 15px !important;color: rgb(166, 162, 157);margin-left: 4px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-vC0nlTR25 { font-size: 15px !important;color: rgb(166, 162, 157);margin-left: 4px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-vC0nlTR25 { font-size: 15px !important;color: rgb(166, 162, 157);margin-left: 4px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-vC0nlTR25 { font-size: 15px !important;color: rgb(166, 162, 157);margin-left: 4px; } } @media (min-width: 1200px) { .gp-component-id-vC0nlTR25 { font-size: 15px !important;color: rgb(166, 162, 157);margin-left: 4px; } }

 @media (max-width: 639px) { .gp-component-id-Ha2MrHk7bh[data-gp-component] { font-size: 11px !important;color: rgb(185, 252, 116);line-height: 1;display: inline-block; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-Ha2MrHk7bh[data-gp-component] { font-size: 11px !important;color: rgb(185, 252, 116);line-height: 1;display: inline-block; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-Ha2MrHk7bh[data-gp-component] { font-size: 11px !important;color: rgb(185, 252, 116);line-height: 1;display: inline-block; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-Ha2MrHk7bh[data-gp-component] { font-size: 11px !important;color: rgb(185, 252, 116);line-height: 1;display: inline-block; } } @media (min-width: 1200px) { .gp-component-id-Ha2MrHk7bh[data-gp-component] { font-size: 11px !important;color: rgb(185, 252, 116);line-height: 1;display: inline-block; } }

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

 @media (max-width: 639px) { .gp-component-id-s9VIa74W_4 { font-size: 15px !important;color: rgb(166, 162, 157);margin-left: 4px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-s9VIa74W_4 { font-size: 15px !important;color: rgb(166, 162, 157);margin-left: 4px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-s9VIa74W_4 { font-size: 15px !important;color: rgb(166, 162, 157);margin-left: 4px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-s9VIa74W_4 { font-size: 15px !important;color: rgb(166, 162, 157);margin-left: 4px; } } @media (min-width: 1200px) { .gp-component-id-s9VIa74W_4 { font-size: 15px !important;color: rgb(166, 162, 157);margin-left: 4px; } }

 @media (max-width: 639px) { .gp-component-id-f5P5oGk5FU[data-gp-component] { font-size: 11px !important;color: rgb(185, 252, 116);line-height: 1;display: inline-block; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-f5P5oGk5FU[data-gp-component] { font-size: 11px !important;color: rgb(185, 252, 116);line-height: 1;display: inline-block; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-f5P5oGk5FU[data-gp-component] { font-size: 11px !important;color: rgb(185, 252, 116);line-height: 1;display: inline-block; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-f5P5oGk5FU[data-gp-component] { font-size: 11px !important;color: rgb(185, 252, 116);line-height: 1;display: inline-block; } } @media (min-width: 1200px) { .gp-component-id-f5P5oGk5FU[data-gp-component] { font-size: 11px !important;color: rgb(185, 252, 116);line-height: 1;display: inline-block; } }

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

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

 @media (max-width: 639px) { .gp-component-id-TbnqcBB93V { font-size: 16px !important;color: rgb(166, 162, 157);line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 5px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-TbnqcBB93V { font-size: 16px !important;color: rgb(166, 162, 157);line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 5px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-TbnqcBB93V { font-size: 16px !important;color: rgb(166, 162, 157);line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 5px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-TbnqcBB93V { font-size: 16px !important;color: rgb(166, 162, 157);line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 5px; } } @media (min-width: 1200px) { .gp-component-id-TbnqcBB93V { font-size: 16px !important;color: rgb(166, 162, 157);line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 5px; } }

 .gp-component-id-_AX7ipDlcr { margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px; } @media (max-width: 639px) { .gp-component-id-_AX7ipDlcr { font-size: 16px !important;font-weight: 700 !important;color: rgb(166, 162, 157);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-_AX7ipDlcr { font-size: 16px !important;font-weight: 700 !important;color: rgb(166, 162, 157);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-_AX7ipDlcr { font-size: 16px !important;font-weight: 700 !important;color: rgb(166, 162, 157);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-_AX7ipDlcr { font-size: 16px !important;font-weight: 700 !important;color: rgb(166, 162, 157);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px; } } @media (min-width: 1200px) { .gp-component-id-_AX7ipDlcr { font-size: 16px !important;font-weight: 700 !important;color: rgb(166, 162, 157);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px; } }

 .gp-component-id-1g_IfUZ4qv { font-size: inherit;font-weight: inherit;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px; } @media (max-width: 639px) { .gp-component-id-1g_IfUZ4qv { font-size: 21px !important;font-weight: 900 !important;color: rgb(246, 240, 230);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-1g_IfUZ4qv { font-size: 21px !important;font-weight: 900 !important;color: rgb(246, 240, 230);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-1g_IfUZ4qv { font-size: 21px !important;font-weight: 900 !important;color: rgb(246, 240, 230);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-1g_IfUZ4qv { font-size: 21px !important;font-weight: 900 !important;color: rgb(246, 240, 230);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } } @media (min-width: 1200px) { .gp-component-id-1g_IfUZ4qv { font-size: 21px !important;font-weight: 900 !important;color: rgb(246, 240, 230);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } }

 @media (max-width: 639px) { .gp-component-id-vnsF6LpJ0[data-gp-component] { border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-bottom: 15px;height: auto;max-width: 20%;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-vnsF6LpJ0[data-gp-component] { border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-bottom: 15px;height: auto;max-width: 20%;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-vnsF6LpJ0[data-gp-component] { border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-bottom: 15px;height: auto;max-width: 20%;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-vnsF6LpJ0[data-gp-component] { border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-bottom: 15px;height: auto;max-width: 20%;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-vnsF6LpJ0[data-gp-component] { border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-bottom: 15px;height: auto;max-width: 20%;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-PZ6ULW0JgV[data-gp-component] { width: 100%;height: 100%;flex-direction: row;justify-content: flex-end;display: flex; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-PZ6ULW0JgV[data-gp-component] { width: 100%;height: 100%;flex-direction: row;justify-content: flex-end;display: flex; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-PZ6ULW0JgV[data-gp-component] { width: 100%;height: 100%;flex-direction: row;justify-content: flex-end;display: flex; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-PZ6ULW0JgV[data-gp-component] { width: 100%;height: 100%;flex-direction: row;justify-content: flex-end;display: flex; } } @media (min-width: 1200px) { .gp-component-id-PZ6ULW0JgV[data-gp-component] { width: 100%;height: 100%;flex-direction: row;justify-content: flex-end;display: flex; } }

 @media (max-width: 639px) { .gp-component-id-vNW0CS2A6[data-gp-component] { font-size: 14px !important;color: rgba(185, 252, 116, 1);background-color: transparent;display: block;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-vNW0CS2A6[data-gp-component] { font-size: 14px !important;color: rgba(185, 252, 116, 1);background-color: transparent;display: block;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-vNW0CS2A6[data-gp-component] { font-size: 14px !important;color: rgba(185, 252, 116, 1);background-color: transparent;display: block;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-vNW0CS2A6[data-gp-component] { font-size: 14px !important;color: rgba(185, 252, 116, 1);background-color: transparent;display: block;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial; } } @media (min-width: 1200px) { .gp-component-id-vNW0CS2A6[data-gp-component] { font-size: 14px !important;color: rgba(185, 252, 116, 1);background-color: transparent;display: block;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial; } }

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

 @media (max-width: 639px) { .gp-component-id-Grlra8ifx_[data-gp-component] { font-size: 11px !important;color: rgb(185, 252, 116);line-height: 1;display: inline-block; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-Grlra8ifx_[data-gp-component] { font-size: 11px !important;color: rgb(185, 252, 116);line-height: 1;display: inline-block; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-Grlra8ifx_[data-gp-component] { font-size: 11px !important;color: rgb(185, 252, 116);line-height: 1;display: inline-block; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-Grlra8ifx_[data-gp-component] { font-size: 11px !important;color: rgb(185, 252, 116);line-height: 1;display: inline-block; } } @media (min-width: 1200px) { .gp-component-id-Grlra8ifx_[data-gp-component] { font-size: 11px !important;color: rgb(185, 252, 116);line-height: 1;display: inline-block; } }

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

 @media (max-width: 639px) { .gp-component-id-Dec2E2KEx4[data-gp-component] { font-size: 11px !important;color: rgb(185, 252, 116);line-height: 1;display: inline-block; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-Dec2E2KEx4[data-gp-component] { font-size: 11px !important;color: rgb(185, 252, 116);line-height: 1;display: inline-block; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-Dec2E2KEx4[data-gp-component] { font-size: 11px !important;color: rgb(185, 252, 116);line-height: 1;display: inline-block; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-Dec2E2KEx4[data-gp-component] { font-size: 11px !important;color: rgb(185, 252, 116);line-height: 1;display: inline-block; } } @media (min-width: 1200px) { .gp-component-id-Dec2E2KEx4[data-gp-component] { font-size: 11px !important;color: rgb(185, 252, 116);line-height: 1;display: inline-block; } }

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

 @media (max-width: 639px) { .gp-component-id-5m0exEbsC[data-gp-component] { font-size: 11px !important;color: rgb(185, 252, 116);line-height: 1;display: inline-block; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-5m0exEbsC[data-gp-component] { font-size: 11px !important;color: rgb(185, 252, 116);line-height: 1;display: inline-block; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-5m0exEbsC[data-gp-component] { font-size: 11px !important;color: rgb(185, 252, 116);line-height: 1;display: inline-block; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-5m0exEbsC[data-gp-component] { font-size: 11px !important;color: rgb(185, 252, 116);line-height: 1;display: inline-block; } } @media (min-width: 1200px) { .gp-component-id-5m0exEbsC[data-gp-component] { font-size: 11px !important;color: rgb(185, 252, 116);line-height: 1;display: inline-block; } }

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

 @media (max-width: 639px) { .gp-component-id-ziVZkXFDl[data-gp-component] { font-size: 11px !important;color: rgb(185, 252, 116);line-height: 1;display: inline-block; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-ziVZkXFDl[data-gp-component] { font-size: 11px !important;color: rgb(185, 252, 116);line-height: 1;display: inline-block; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-ziVZkXFDl[data-gp-component] { font-size: 11px !important;color: rgb(185, 252, 116);line-height: 1;display: inline-block; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-ziVZkXFDl[data-gp-component] { font-size: 11px !important;color: rgb(185, 252, 116);line-height: 1;display: inline-block; } } @media (min-width: 1200px) { .gp-component-id-ziVZkXFDl[data-gp-component] { font-size: 11px !important;color: rgb(185, 252, 116);line-height: 1;display: inline-block; } }

[data-gp-component].gp-component-id-DGzXbBT_aC { }

 @media (max-width: 639px) { .gp-component-id-q6KJN60Dj[data-gp-component] { padding-bottom: 90px;z-index: 10;position: relative; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-q6KJN60Dj[data-gp-component] { padding-bottom: 90px;z-index: 10;position: relative; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-q6KJN60Dj[data-gp-component] { padding-bottom: 90px;z-index: 10;position: relative; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-q6KJN60Dj[data-gp-component] { padding-bottom: 90px;z-index: 10;position: relative; } } @media (min-width: 1200px) { .gp-component-id-q6KJN60Dj[data-gp-component] { padding-bottom: 90px;z-index: 10;position: relative; } }

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

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

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

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

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

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

 .gp-component-id-GBWZEWx7z { margin-top: 16px;padding-bottom: 8px;border-top-color: rgb(32, 45, 60);border-right-color: rgb(32, 45, 60);border-bottom-color: rgb(32, 45, 60);border-left-color: rgb(32, 45, 60);border-top-width: 2px;border-right-width: 0px;border-bottom-width: 0px;border-left-width: 0px;border-top-style: dashed;border-right-style: dashed;border-bottom-style: dashed;border-left-style: dashed;width: 100%;margin-left: auto;margin-right: auto; } @media (max-width: 639px) { .gp-component-id-GBWZEWx7z { margin-top: 16px;padding-bottom: 8px;border-top-color: rgb(32, 45, 60);border-right-color: rgb(32, 45, 60);border-bottom-color: rgb(32, 45, 60);border-left-color: rgb(32, 45, 60);border-top-width: 2px;border-right-width: 0px;border-bottom-width: 0px;border-left-width: 0px;border-top-style: dashed;border-right-style: dashed;border-bottom-style: dashed;border-left-style: dashed;width: 100%;margin-left: auto;margin-right: auto; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-GBWZEWx7z { margin-top: 16px;padding-bottom: 8px;border-top-color: rgb(32, 45, 60);border-right-color: rgb(32, 45, 60);border-bottom-color: rgb(32, 45, 60);border-left-color: rgb(32, 45, 60);border-top-width: 2px;border-right-width: 0px;border-bottom-width: 0px;border-left-width: 0px;border-top-style: dashed;border-right-style: dashed;border-bottom-style: dashed;border-left-style: dashed;width: 100%;margin-left: auto;margin-right: auto; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-GBWZEWx7z { margin-top: 16px;padding-bottom: 8px;border-top-color: rgb(32, 45, 60);border-right-color: rgb(32, 45, 60);border-bottom-color: rgb(32, 45, 60);border-left-color: rgb(32, 45, 60);border-top-width: 2px;border-right-width: 0px;border-bottom-width: 0px;border-left-width: 0px;border-top-style: dashed;border-right-style: dashed;border-bottom-style: dashed;border-left-style: dashed;width: 100%;margin-left: auto;margin-right: auto; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-GBWZEWx7z { margin-top: 16px;padding-bottom: 8px;border-top-color: rgb(32, 45, 60);border-right-color: rgb(32, 45, 60);border-bottom-color: rgb(32, 45, 60);border-left-color: rgb(32, 45, 60);border-top-width: 2px;border-right-width: 0px;border-bottom-width: 0px;border-left-width: 0px;border-top-style: dashed;border-right-style: dashed;border-bottom-style: dashed;border-left-style: dashed;width: 100%;margin-left: auto;margin-right: auto; } } @media (min-width: 1200px) { .gp-component-id-GBWZEWx7z { margin-top: 16px;padding-bottom: 8px;border-top-color: rgb(32, 45, 60);border-right-color: rgb(32, 45, 60);border-bottom-color: rgb(32, 45, 60);border-left-color: rgb(32, 45, 60);border-top-width: 2px;border-right-width: 0px;border-bottom-width: 0px;border-left-width: 0px;border-top-style: dashed;border-right-style: dashed;border-bottom-style: dashed;border-left-style: dashed;width: 100%;margin-left: auto;margin-right: auto; } }

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

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

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

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

 @media (max-width: 639px) { .gp-component-id-Idbik9EMbv[data-gp-component] { padding-left: 20px;padding-right: 20px;padding-top: 40px;padding-bottom: 40px;width: 100%;height: 100%; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-Idbik9EMbv[data-gp-component] { padding-left: 20px;padding-right: 20px;padding-top: 40px;padding-bottom: 40px;width: 100%;height: 100%; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-Idbik9EMbv[data-gp-component] { padding-left: 20px;padding-right: 20px;padding-top: 40px;padding-bottom: 40px;width: 100%;height: 100%; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-Idbik9EMbv[data-gp-component] { padding-left: 20px;padding-right: 20px;padding-top: 40px;padding-bottom: 40px;width: 100%;height: 100%; } } @media (min-width: 1200px) { .gp-component-id-Idbik9EMbv[data-gp-component] { padding-left: 20px;padding-right: 20px;padding-top: 40px;padding-bottom: 40px;width: 100%;height: 100%; } }

 @media (max-width: 639px) { .gp-component-id-zp1v7pE9pn[data-gp-component] { padding-left: 20px;padding-right: 20px;padding-top: 40px;padding-bottom: 40px;width: 100%;height: 100%; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-zp1v7pE9pn[data-gp-component] { padding-left: 20px;padding-right: 20px;padding-top: 40px;padding-bottom: 40px;width: 100%;height: 100%; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-zp1v7pE9pn[data-gp-component] { padding-left: 20px;padding-right: 20px;padding-top: 40px;padding-bottom: 40px;width: 100%;height: 100%; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-zp1v7pE9pn[data-gp-component] { padding-left: 20px;padding-right: 20px;padding-top: 40px;padding-bottom: 40px;width: 100%;height: 100%; } } @media (min-width: 1200px) { .gp-component-id-zp1v7pE9pn[data-gp-component] { padding-left: 20px;padding-right: 20px;padding-top: 40px;padding-bottom: 40px;width: 100%;height: 100%; } }

 @media (max-width: 639px) { .gp-component-id-DGzXbBT_aC[data-gp-component] { padding-left: 20px;padding-right: 20px;padding-top: 40px;padding-bottom: 40px;width: 100%;height: 100%; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-DGzXbBT_aC[data-gp-component] { padding-left: 20px;padding-right: 20px;padding-top: 40px;padding-bottom: 40px;width: 100%;height: 100%; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-DGzXbBT_aC[data-gp-component] { padding-left: 20px;padding-right: 20px;padding-top: 40px;padding-bottom: 40px;width: 100%;height: 100%; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-DGzXbBT_aC[data-gp-component] { padding-left: 20px;padding-right: 20px;padding-top: 40px;padding-bottom: 40px;width: 100%;height: 100%; } } @media (min-width: 1200px) { .gp-component-id-DGzXbBT_aC[data-gp-component] { padding-left: 20px;padding-right: 20px;padding-top: 40px;padding-bottom: 40px;width: 100%;height: 100%; } }

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

 @media (max-width: 639px) { .gp-component-id-T6I5Ydc6R0[data-gp-component] { padding-left: 20px;padding-right: 20px;width: 100%;height: 100%;flex-direction: column;justify-content: flex-end;display: flex; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-T6I5Ydc6R0[data-gp-component] { padding-left: 20px;padding-right: 20px;width: 100%;height: 100%;flex-direction: column;justify-content: flex-end;display: flex; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-T6I5Ydc6R0[data-gp-component] { padding-left: 20px;padding-right: 20px;width: 100%;height: 100%;flex-direction: column;justify-content: flex-end;display: flex; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-T6I5Ydc6R0[data-gp-component] { padding-left: 20px;padding-right: 20px;width: 100%;height: 100%;flex-direction: column;justify-content: flex-end;display: flex; } } @media (min-width: 1200px) { .gp-component-id-T6I5Ydc6R0[data-gp-component] { padding-left: 20px;padding-right: 20px;width: 100%;height: 100%;flex-direction: column;justify-content: flex-end;display: flex; } }

 @media (max-width: 639px) { .gp-component-id-strWhJifdK[data-gp-component] { width: 100%;height: 100%;flex-direction: column;justify-content: flex-end;display: flex; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-strWhJifdK[data-gp-component] { width: 100%;height: 100%;flex-direction: column;justify-content: flex-end;display: flex; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-strWhJifdK[data-gp-component] { width: 100%;height: 100%;flex-direction: column;justify-content: flex-end;display: flex; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-strWhJifdK[data-gp-component] { width: 100%;height: 100%;flex-direction: column;justify-content: flex-end;display: flex; } } @media (min-width: 1200px) { .gp-component-id-strWhJifdK[data-gp-component] { width: 100%;height: 100%;flex-direction: column;justify-content: flex-end;display: flex; } }

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

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

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

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

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

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

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

 @media (max-width: 639px) { .gp-component-id-9cBoDNvBHk[data-gp-component] { width: 100%;height: 100%;flex-direction: row;justify-content: flex-end;align-items: flex-end;display: flex; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-9cBoDNvBHk[data-gp-component] { width: 100%;height: 100%;flex-direction: row;justify-content: flex-end;align-items: flex-end;display: flex; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-9cBoDNvBHk[data-gp-component] { width: 100%;height: 100%;flex-direction: row;justify-content: flex-end;align-items: flex-end;display: flex; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-9cBoDNvBHk[data-gp-component] { width: 100%;height: 100%;flex-direction: row;justify-content: flex-end;align-items: flex-end;display: flex; } } @media (min-width: 1200px) { .gp-component-id-9cBoDNvBHk[data-gp-component] { width: 100%;height: 100%;flex-direction: row;justify-content: flex-end;align-items: flex-end;display: flex; } }

 @media (max-width: 639px) { .gp-component-id-NVvsPeXJg[data-gp-component] { font-weight: 700;color: rgb(46, 140, 255);background-color: transparent;display: block;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-NVvsPeXJg[data-gp-component] { font-weight: 700;color: rgb(46, 140, 255);background-color: transparent;display: block;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-NVvsPeXJg[data-gp-component] { font-weight: 700;color: rgb(46, 140, 255);background-color: transparent;display: block;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-NVvsPeXJg[data-gp-component] { font-weight: 700;color: rgb(46, 140, 255);background-color: transparent;display: block;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer; } } @media (min-width: 1200px) { .gp-component-id-NVvsPeXJg[data-gp-component] { font-weight: 700;color: rgb(46, 140, 255);background-color: transparent;display: block;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer; } }

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

 .gp-component-id-uMJTvpaAS6 { font-size: inherit;font-weight: inherit;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px; } @media (max-width: 639px) { .gp-component-id-uMJTvpaAS6 { font-size: 20px !important;font-weight: inherit;color: rgb(246, 240, 230);margin-left: 5px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-uMJTvpaAS6 { font-size: 20px !important;font-weight: inherit;color: rgb(246, 240, 230);margin-left: 5px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-uMJTvpaAS6 { font-size: 20px !important;font-weight: inherit;color: rgb(246, 240, 230);margin-left: 5px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-uMJTvpaAS6 { font-size: 20px !important;font-weight: inherit;color: rgb(246, 240, 230);margin-left: 5px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } } @media (min-width: 1200px) { .gp-component-id-uMJTvpaAS6 { font-size: 20px !important;font-weight: inherit;color: rgb(246, 240, 230);margin-left: 5px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } }

 @media (max-width: 639px) { [data-gp-text] .gp-component-id-qE_cIBPWY { font-size: 20px !important;color: rgb(246, 240, 230);margin-left: 5px; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-qE_cIBPWY { font-size: 20px !important;color: rgb(246, 240, 230);margin-left: 5px; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-qE_cIBPWY { font-size: 20px !important;color: rgb(246, 240, 230);margin-left: 5px; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-qE_cIBPWY { font-size: 20px !important;color: rgb(246, 240, 230);margin-left: 5px; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-qE_cIBPWY { font-size: 20px !important;color: rgb(246, 240, 230);margin-left: 5px; } }

 .gp-component-id-iW3Ay3UKC1 { margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px; } @media (max-width: 639px) { .gp-component-id-iW3Ay3UKC1 { font-size: 14px !important;color: rgb(166, 162, 157);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-iW3Ay3UKC1 { font-size: 14px !important;color: rgb(166, 162, 157);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-iW3Ay3UKC1 { font-size: 14px !important;color: rgb(166, 162, 157);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-iW3Ay3UKC1 { font-size: 14px !important;color: rgb(166, 162, 157);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } } @media (min-width: 1200px) { .gp-component-id-iW3Ay3UKC1 { font-size: 14px !important;color: rgb(166, 162, 157);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } }

 @media (max-width: 639px) { [data-gp-text] .gp-component-id-8BEvTcu0m { font-size: 14px !important;color: rgb(166, 162, 157); } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-8BEvTcu0m { font-size: 14px !important;color: rgb(166, 162, 157); } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-8BEvTcu0m { font-size: 14px !important;color: rgb(166, 162, 157); } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-8BEvTcu0m { font-size: 14px !important;color: rgb(166, 162, 157); } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-8BEvTcu0m { font-size: 14px !important;color: rgb(166, 162, 157); } }

 @media (max-width: 639px) { .gp-component-id-Qu9g93zsre[data-gp-component] { text-align: right;width: 100%;height: 100%;flex-direction: row;justify-content: flex-end;align-items: flex-end;display: flex; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-Qu9g93zsre[data-gp-component] { text-align: right;width: 100%;height: 100%;flex-direction: row;justify-content: flex-end;align-items: flex-end;display: flex; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-Qu9g93zsre[data-gp-component] { text-align: right;width: 100%;height: 100%;flex-direction: row;justify-content: flex-end;align-items: flex-end;display: flex; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-Qu9g93zsre[data-gp-component] { text-align: right;width: 100%;height: 100%;flex-direction: row;justify-content: flex-end;align-items: flex-end;display: flex; } } @media (min-width: 1200px) { .gp-component-id-Qu9g93zsre[data-gp-component] { text-align: right;width: 100%;height: 100%;flex-direction: row;justify-content: flex-end;align-items: flex-end;display: flex; } }

 @media (max-width: 639px) { .gp-component-id-YQzb5UNNI0[data-gp-component] { padding-left: 20px;padding-right: 20px;padding-top: 40px;padding-bottom: 40px;width: 100%;height: 100%;flex-direction: column;align-items: flex-start;display: flex; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-YQzb5UNNI0[data-gp-component] { padding-left: 20px;padding-right: 20px;padding-top: 40px;padding-bottom: 40px;width: 100%;height: 100%;flex-direction: column;align-items: flex-start;display: flex; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-YQzb5UNNI0[data-gp-component] { padding-left: 20px;padding-right: 20px;padding-top: 40px;padding-bottom: 40px;width: 100%;height: 100%;flex-direction: column;align-items: flex-start;display: flex; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-YQzb5UNNI0[data-gp-component] { padding-left: 20px;padding-right: 20px;padding-top: 40px;padding-bottom: 40px;width: 100%;height: 100%;flex-direction: column;align-items: flex-start;display: flex; } } @media (min-width: 1200px) { .gp-component-id-YQzb5UNNI0[data-gp-component] { padding-left: 20px;padding-right: 20px;padding-top: 40px;padding-bottom: 40px;width: 100%;height: 100%;flex-direction: column;align-items: flex-start;display: flex; } }

 @media (max-width: 639px) { [data-gp-text] .gp-component-id-FDVq2LxwZ { text-align: right; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-FDVq2LxwZ { text-align: right; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-FDVq2LxwZ { text-align: right; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-FDVq2LxwZ { text-align: right; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-FDVq2LxwZ { text-align: right; } }

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

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

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

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

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

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

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

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

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

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

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

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

 @media (max-width: 639px) { .gp-component-id-x8S1bt_xo[data-gp-component] { color: rgb(20, 33, 10);border-left-style: dashed;border-right-style: dashed;border-top-style: dashed;border-bottom-style: dashed;border-left-width: 0px;border-right-width: 0px;border-top-width: 2px;border-bottom-width: 0px;border-left-color: rgb(32, 45, 60);border-right-color: rgb(32, 45, 60);border-top-color: rgb(32, 45, 60);border-bottom-color: rgb(32, 45, 60);margin-left: auto;margin-right: auto;margin-top: 16px;padding-bottom: 8px;width: 100%; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-x8S1bt_xo[data-gp-component] { color: rgb(20, 33, 10);border-left-style: dashed;border-right-style: dashed;border-top-style: dashed;border-bottom-style: dashed;border-left-width: 0px;border-right-width: 0px;border-top-width: 2px;border-bottom-width: 0px;border-left-color: rgb(32, 45, 60);border-right-color: rgb(32, 45, 60);border-top-color: rgb(32, 45, 60);border-bottom-color: rgb(32, 45, 60);margin-left: auto;margin-right: auto;margin-top: 16px;padding-bottom: 8px;width: 100%; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-x8S1bt_xo[data-gp-component] { color: rgb(20, 33, 10);border-left-style: dashed;border-right-style: dashed;border-top-style: dashed;border-bottom-style: dashed;border-left-width: 0px;border-right-width: 0px;border-top-width: 2px;border-bottom-width: 0px;border-left-color: rgb(32, 45, 60);border-right-color: rgb(32, 45, 60);border-top-color: rgb(32, 45, 60);border-bottom-color: rgb(32, 45, 60);margin-left: auto;margin-right: auto;margin-top: 16px;padding-bottom: 8px;width: 100%; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-x8S1bt_xo[data-gp-component] { color: rgb(20, 33, 10);border-left-style: dashed;border-right-style: dashed;border-top-style: dashed;border-bottom-style: dashed;border-left-width: 0px;border-right-width: 0px;border-top-width: 2px;border-bottom-width: 0px;border-left-color: rgb(32, 45, 60);border-right-color: rgb(32, 45, 60);border-top-color: rgb(32, 45, 60);border-bottom-color: rgb(32, 45, 60);margin-left: auto;margin-right: auto;margin-top: 16px;padding-bottom: 8px;width: 100%; } } @media (min-width: 1200px) { .gp-component-id-x8S1bt_xo[data-gp-component] { color: rgb(20, 33, 10);border-left-style: dashed;border-right-style: dashed;border-top-style: dashed;border-bottom-style: dashed;border-left-width: 0px;border-right-width: 0px;border-top-width: 2px;border-bottom-width: 0px;border-left-color: rgb(32, 45, 60);border-right-color: rgb(32, 45, 60);border-top-color: rgb(32, 45, 60);border-bottom-color: rgb(32, 45, 60);margin-left: auto;margin-right: auto;margin-top: 16px;padding-bottom: 8px;width: 100%; } }

 @media (max-width: 639px) { .gp-component-id-elzYPb9Nk[data-gp-component] { color: rgba(20, 33, 10, 1);border-left-style: dashed;border-right-style: dashed;border-top-style: dashed;border-bottom-style: dashed;border-left-width: 0px;border-right-width: 0px;border-top-width: 2px;border-bottom-width: 0px;border-left-color: rgb(32, 45, 60);border-right-color: rgb(32, 45, 60);border-top-color: rgb(32, 45, 60);border-bottom-color: rgb(32, 45, 60);margin-left: auto;margin-right: auto;margin-top: 16px;padding-bottom: 8px;width: 100%; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-elzYPb9Nk[data-gp-component] { color: rgba(20, 33, 10, 1);border-left-style: dashed;border-right-style: dashed;border-top-style: dashed;border-bottom-style: dashed;border-left-width: 0px;border-right-width: 0px;border-top-width: 2px;border-bottom-width: 0px;border-left-color: rgb(32, 45, 60);border-right-color: rgb(32, 45, 60);border-top-color: rgb(32, 45, 60);border-bottom-color: rgb(32, 45, 60);margin-left: auto;margin-right: auto;margin-top: 16px;padding-bottom: 8px;width: 100%; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-elzYPb9Nk[data-gp-component] { color: rgba(20, 33, 10, 1);border-left-style: dashed;border-right-style: dashed;border-top-style: dashed;border-bottom-style: dashed;border-left-width: 0px;border-right-width: 0px;border-top-width: 2px;border-bottom-width: 0px;border-left-color: rgb(32, 45, 60);border-right-color: rgb(32, 45, 60);border-top-color: rgb(32, 45, 60);border-bottom-color: rgb(32, 45, 60);margin-left: auto;margin-right: auto;margin-top: 16px;padding-bottom: 8px;width: 100%; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-elzYPb9Nk[data-gp-component] { color: rgba(20, 33, 10, 1);border-left-style: dashed;border-right-style: dashed;border-top-style: dashed;border-bottom-style: dashed;border-left-width: 0px;border-right-width: 0px;border-top-width: 2px;border-bottom-width: 0px;border-left-color: rgb(32, 45, 60);border-right-color: rgb(32, 45, 60);border-top-color: rgb(32, 45, 60);border-bottom-color: rgb(32, 45, 60);margin-left: auto;margin-right: auto;margin-top: 16px;padding-bottom: 8px;width: 100%; } } @media (min-width: 1200px) { .gp-component-id-elzYPb9Nk[data-gp-component] { color: rgba(20, 33, 10, 1);border-left-style: dashed;border-right-style: dashed;border-top-style: dashed;border-bottom-style: dashed;border-left-width: 0px;border-right-width: 0px;border-top-width: 2px;border-bottom-width: 0px;border-left-color: rgb(32, 45, 60);border-right-color: rgb(32, 45, 60);border-top-color: rgb(32, 45, 60);border-bottom-color: rgb(32, 45, 60);margin-left: auto;margin-right: auto;margin-top: 16px;padding-bottom: 8px;width: 100%; } }

 @media (max-width: 639px) { .gp-component-id-RLmaOgGQPa { font-size: 15px !important;color: rgb(166, 162, 157);line-height: 2;margin-left: 4px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-RLmaOgGQPa { font-size: 15px !important;color: rgb(166, 162, 157);line-height: 2;margin-left: 4px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-RLmaOgGQPa { font-size: 15px !important;color: rgb(166, 162, 157);line-height: 2;margin-left: 4px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-RLmaOgGQPa { font-size: 15px !important;color: rgb(166, 162, 157);line-height: 2;margin-left: 4px; } } @media (min-width: 1200px) { .gp-component-id-RLmaOgGQPa { font-size: 15px !important;color: rgb(166, 162, 157);line-height: 2;margin-left: 4px; } }

 @media (max-width: 639px) { [data-gp-text] .gp-component-id-iVG0BQdt9t { font-size: 15px !important;color: rgb(166, 162, 157);line-height: 2;margin-left: 4px; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-iVG0BQdt9t { font-size: 15px !important;color: rgb(166, 162, 157);line-height: 2;margin-left: 4px; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-iVG0BQdt9t { font-size: 15px !important;color: rgb(166, 162, 157);line-height: 2;margin-left: 4px; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-iVG0BQdt9t { font-size: 15px !important;color: rgb(166, 162, 157);line-height: 2;margin-left: 4px; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-iVG0BQdt9t { font-size: 15px !important;color: rgb(166, 162, 157);line-height: 2;margin-left: 4px; } }

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

 @media (max-width: 639px) { .gp-component-id-fliVay1zy2 { font-size: 15px !important;color: rgb(166, 162, 157);line-height: 2;margin-left: 4px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-fliVay1zy2 { font-size: 15px !important;color: rgb(166, 162, 157);line-height: 2;margin-left: 4px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-fliVay1zy2 { font-size: 15px !important;color: rgb(166, 162, 157);line-height: 2;margin-left: 4px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-fliVay1zy2 { font-size: 15px !important;color: rgb(166, 162, 157);line-height: 2;margin-left: 4px; } } @media (min-width: 1200px) { .gp-component-id-fliVay1zy2 { font-size: 15px !important;color: rgb(166, 162, 157);line-height: 2;margin-left: 4px; } }

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

 @media (max-width: 639px) { .gp-component-id-bh8_2_lPgG { font-size: 15px !important;color: rgb(166, 162, 157);line-height: 2;margin-left: 4px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-bh8_2_lPgG { font-size: 15px !important;color: rgb(166, 162, 157);line-height: 2;margin-left: 4px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-bh8_2_lPgG { font-size: 15px !important;color: rgb(166, 162, 157);line-height: 2;margin-left: 4px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-bh8_2_lPgG { font-size: 15px !important;color: rgb(166, 162, 157);line-height: 2;margin-left: 4px; } } @media (min-width: 1200px) { .gp-component-id-bh8_2_lPgG { font-size: 15px !important;color: rgb(166, 162, 157);line-height: 2;margin-left: 4px; } }

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

 @media (max-width: 639px) { .gp-component-id-6c66moLeaz { font-size: 15px !important;color: rgb(166, 162, 157);line-height: 2;margin-left: 4px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-6c66moLeaz { font-size: 15px !important;color: rgb(166, 162, 157);line-height: 2;margin-left: 4px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-6c66moLeaz { font-size: 15px !important;color: rgb(166, 162, 157);line-height: 2;margin-left: 4px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-6c66moLeaz { font-size: 15px !important;color: rgb(166, 162, 157);line-height: 2;margin-left: 4px; } } @media (min-width: 1200px) { .gp-component-id-6c66moLeaz { font-size: 15px !important;color: rgb(166, 162, 157);line-height: 2;margin-left: 4px; } }

 @media (max-width: 639px) { [data-gp-text] .gp-component-id-W0XKwhDgaD { font-size: 15px !important;color: rgb(166, 162, 157);line-height: 2;margin-left: 4px; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-W0XKwhDgaD { font-size: 15px !important;color: rgb(166, 162, 157);line-height: 2;margin-left: 4px; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-W0XKwhDgaD { font-size: 15px !important;color: rgb(166, 162, 157);line-height: 2;margin-left: 4px; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-W0XKwhDgaD { font-size: 15px !important;color: rgb(166, 162, 157);line-height: 2;margin-left: 4px; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-W0XKwhDgaD { font-size: 15px !important;color: rgb(166, 162, 157);line-height: 2;margin-left: 4px; } }

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

 @media (max-width: 639px) { .gp-component-id-4psrrLut6R { font-size: 15px !important;color: rgb(166, 162, 157);line-height: 2;margin-left: 4px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-4psrrLut6R { font-size: 15px !important;color: rgb(166, 162, 157);line-height: 2;margin-left: 4px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-4psrrLut6R { font-size: 15px !important;color: rgb(166, 162, 157);line-height: 2;margin-left: 4px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-4psrrLut6R { font-size: 15px !important;color: rgb(166, 162, 157);line-height: 2;margin-left: 4px; } } @media (min-width: 1200px) { .gp-component-id-4psrrLut6R { font-size: 15px !important;color: rgb(166, 162, 157);line-height: 2;margin-left: 4px; } }

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

 @media (max-width: 639px) { .gp-component-id-SMdUaTIF1 { font-size: 15px !important;color: rgb(166, 162, 157);line-height: 2;margin-left: 4px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-SMdUaTIF1 { font-size: 15px !important;color: rgb(166, 162, 157);line-height: 2;margin-left: 4px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-SMdUaTIF1 { font-size: 15px !important;color: rgb(166, 162, 157);line-height: 2;margin-left: 4px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-SMdUaTIF1 { font-size: 15px !important;color: rgb(166, 162, 157);line-height: 2;margin-left: 4px; } } @media (min-width: 1200px) { .gp-component-id-SMdUaTIF1 { font-size: 15px !important;color: rgb(166, 162, 157);line-height: 2;margin-left: 4px; } }

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

 @media (max-width: 639px) { [data-gp-text] .gp-component-id-AElKo91_UO { font-size: 16px !important;color: rgb(166, 162, 157);line-height: 2;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-AElKo91_UO { font-size: 16px !important;color: rgb(166, 162, 157);line-height: 2;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-AElKo91_UO { font-size: 16px !important;color: rgb(166, 162, 157);line-height: 2;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-AElKo91_UO { font-size: 16px !important;color: rgb(166, 162, 157);line-height: 2;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-AElKo91_UO { font-size: 16px !important;color: rgb(166, 162, 157);line-height: 2;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px; } }

 @media (max-width: 639px) { [data-gp-text] .gp-component-id-AAIQk308q { font-size: 16px !important;color: rgb(166, 162, 157);line-height: 2;margin-bottom: 10px; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-AAIQk308q { font-size: 16px !important;color: rgb(166, 162, 157);line-height: 2;margin-bottom: 10px; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-AAIQk308q { font-size: 16px !important;color: rgb(166, 162, 157);line-height: 2;margin-bottom: 10px; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-AAIQk308q { font-size: 16px !important;color: rgb(166, 162, 157);line-height: 2;margin-bottom: 10px; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-AAIQk308q { font-size: 16px !important;color: rgb(166, 162, 157);line-height: 2;margin-bottom: 10px; } }

 @media (max-width: 639px) { [data-gp-text] .gp-component-id-SXDPuGyXw { font-size: 12px !important;color: rgba(246, 240, 230, 1);letter-spacing: 0.05em;border-top-left-radius: 100px;border-top-right-radius: 100px;border-bottom-left-radius: 100px;border-bottom-right-radius: 100px;background-color: rgba(0, 34, 119, 1);margin-bottom: 20px;padding-left: 12px;padding-right: 12px;padding-top: 6px;padding-bottom: 6px;display: table-cell; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-SXDPuGyXw { font-size: 12px !important;color: rgba(246, 240, 230, 1);letter-spacing: 0.05em;border-top-left-radius: 100px;border-top-right-radius: 100px;border-bottom-left-radius: 100px;border-bottom-right-radius: 100px;background-color: rgba(0, 34, 119, 1);margin-bottom: 20px;padding-left: 12px;padding-right: 12px;padding-top: 6px;padding-bottom: 6px;display: table-cell; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-SXDPuGyXw { font-size: 12px !important;color: rgba(246, 240, 230, 1);letter-spacing: 0.05em;border-top-left-radius: 100px;border-top-right-radius: 100px;border-bottom-left-radius: 100px;border-bottom-right-radius: 100px;background-color: rgba(0, 34, 119, 1);margin-bottom: 20px;padding-left: 12px;padding-right: 12px;padding-top: 6px;padding-bottom: 6px;display: table-cell; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-SXDPuGyXw { font-size: 12px !important;color: rgba(246, 240, 230, 1);letter-spacing: 0.05em;border-top-left-radius: 100px;border-top-right-radius: 100px;border-bottom-left-radius: 100px;border-bottom-right-radius: 100px;background-color: rgba(0, 34, 119, 1);margin-bottom: 20px;padding-left: 12px;padding-right: 12px;padding-top: 6px;padding-bottom: 6px;display: table-cell; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-SXDPuGyXw { font-size: 12px !important;color: rgba(246, 240, 230, 1);letter-spacing: 0.05em;border-top-left-radius: 100px;border-top-right-radius: 100px;border-bottom-left-radius: 100px;border-bottom-right-radius: 100px;background-color: rgba(0, 34, 119, 1);margin-bottom: 20px;padding-left: 12px;padding-right: 12px;padding-top: 6px;padding-bottom: 6px;display: table-cell; } }

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

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

 .gp-component-id-3TQ1pfFdPN { margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px; } @media (max-width: 639px) { .gp-component-id-3TQ1pfFdPN { font-weight: 700;color: rgb(166, 162, 157);line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-3TQ1pfFdPN { font-weight: 700;color: rgb(166, 162, 157);line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-3TQ1pfFdPN { font-weight: 700;color: rgb(166, 162, 157);line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-3TQ1pfFdPN { font-weight: 700;color: rgb(166, 162, 157);line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px; } } @media (min-width: 1200px) { .gp-component-id-3TQ1pfFdPN { font-weight: 700;color: rgb(166, 162, 157);line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px; } }

 @media (max-width: 639px) { [data-gp-text] .gp-component-id-rnyxehfic { font-weight: 700;color: rgb(166, 162, 157);line-height: 1.25;margin-bottom: 20px; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-rnyxehfic { font-weight: 700;color: rgb(166, 162, 157);line-height: 1.25;margin-bottom: 20px; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-rnyxehfic { font-weight: 700;color: rgb(166, 162, 157);line-height: 1.25;margin-bottom: 20px; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-rnyxehfic { font-weight: 700;color: rgb(166, 162, 157);line-height: 1.25;margin-bottom: 20px; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-rnyxehfic { font-weight: 700;color: rgb(166, 162, 157);line-height: 1.25;margin-bottom: 20px; } }

 .gp-component-id-vrVTvNfY7A { font-size: inherit;font-weight: inherit;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px; } @media (max-width: 639px) { .gp-component-id-vrVTvNfY7A { font-size: 46px !important;font-weight: 900 !important;color: rgb(246, 240, 230);line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-vrVTvNfY7A { font-size: 46px !important;font-weight: 900 !important;color: rgb(246, 240, 230);line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-vrVTvNfY7A { font-size: 46px !important;font-weight: 900 !important;color: rgb(246, 240, 230);line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-vrVTvNfY7A { font-size: 46px !important;font-weight: 900 !important;color: rgb(246, 240, 230);line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } } @media (min-width: 1200px) { .gp-component-id-vrVTvNfY7A { font-size: 46px !important;font-weight: 900 !important;color: rgb(246, 240, 230);line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } }

 @media (max-width: 639px) { [data-gp-text] .gp-component-id-7BlLewAc1 { font-size: 46px !important;font-weight: 900 !important;color: rgb(246, 240, 230);line-height: 1.25; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-7BlLewAc1 { font-size: 46px !important;font-weight: 900 !important;color: rgb(246, 240, 230);line-height: 1.25; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-7BlLewAc1 { font-size: 46px !important;font-weight: 900 !important;color: rgb(246, 240, 230);line-height: 1.25; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-7BlLewAc1 { font-size: 46px !important;font-weight: 900 !important;color: rgb(246, 240, 230);line-height: 1.25; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-7BlLewAc1 { font-size: 46px !important;font-weight: 900 !important;color: rgb(246, 240, 230);line-height: 1.25; } }

 .gp-component-id-0jfBltvuVq { margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px; } @media (max-width: 639px) { .gp-component-id-0jfBltvuVq { font-size: 12px !important;color: rgb(20, 33, 10);letter-spacing: 0.05em;border-top-left-radius: 100px;border-top-right-radius: 100px;border-bottom-left-radius: 100px;border-bottom-right-radius: 100px;background-color: rgb(184, 252, 112);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;padding-left: 12px;padding-right: 12px;padding-top: 6px;padding-bottom: 6px;display: table-cell; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-0jfBltvuVq { font-size: 12px !important;color: rgb(20, 33, 10);letter-spacing: 0.05em;border-top-left-radius: 100px;border-top-right-radius: 100px;border-bottom-left-radius: 100px;border-bottom-right-radius: 100px;background-color: rgb(184, 252, 112);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;padding-left: 12px;padding-right: 12px;padding-top: 6px;padding-bottom: 6px;display: table-cell; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-0jfBltvuVq { font-size: 12px !important;color: rgb(20, 33, 10);letter-spacing: 0.05em;border-top-left-radius: 100px;border-top-right-radius: 100px;border-bottom-left-radius: 100px;border-bottom-right-radius: 100px;background-color: rgb(184, 252, 112);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;padding-left: 12px;padding-right: 12px;padding-top: 6px;padding-bottom: 6px;display: table-cell; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-0jfBltvuVq { font-size: 12px !important;color: rgb(20, 33, 10);letter-spacing: 0.05em;border-top-left-radius: 100px;border-top-right-radius: 100px;border-bottom-left-radius: 100px;border-bottom-right-radius: 100px;background-color: rgb(184, 252, 112);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;padding-left: 12px;padding-right: 12px;padding-top: 6px;padding-bottom: 6px;display: table-cell; } } @media (min-width: 1200px) { .gp-component-id-0jfBltvuVq { font-size: 12px !important;color: rgb(20, 33, 10);letter-spacing: 0.05em;border-top-left-radius: 100px;border-top-right-radius: 100px;border-bottom-left-radius: 100px;border-bottom-right-radius: 100px;background-color: rgb(184, 252, 112);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;padding-left: 12px;padding-right: 12px;padding-top: 6px;padding-bottom: 6px;display: table-cell; } }

 @media (max-width: 639px) { .gp-component-id-BW4o2GvP0QV[data-gp-component] { padding-left: 20px;padding-right: 20px;padding-top: 40px;padding-bottom: 40px;width: 100%;height: 100%;flex-direction: column;align-items: flex-start;display: flex; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-BW4o2GvP0QV[data-gp-component] { padding-left: 20px;padding-right: 20px;padding-top: 40px;padding-bottom: 40px;width: 100%;height: 100%;flex-direction: column;align-items: flex-start;display: flex; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-BW4o2GvP0QV[data-gp-component] { padding-left: 20px;padding-right: 20px;padding-top: 40px;padding-bottom: 40px;width: 100%;height: 100%;flex-direction: column;align-items: flex-start;display: flex; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-BW4o2GvP0QV[data-gp-component] { padding-left: 20px;padding-right: 20px;padding-top: 40px;padding-bottom: 40px;width: 100%;height: 100%;flex-direction: column;align-items: flex-start;display: flex; } } @media (min-width: 1200px) { .gp-component-id-BW4o2GvP0QV[data-gp-component] { padding-left: 20px;padding-right: 20px;padding-top: 40px;padding-bottom: 40px;width: 100%;height: 100%;flex-direction: column;align-items: flex-start;display: flex; } }

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

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

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

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

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

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

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

 @media (max-width: 639px) { [data-gp-text] .gp-component-id-sFocO5g4Y { font-size: 18px !important;color: rgb(166, 162, 157);line-height: 2; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-sFocO5g4Y { font-size: 18px !important;color: rgb(166, 162, 157);line-height: 2; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-sFocO5g4Y { font-size: 18px !important;color: rgb(166, 162, 157);line-height: 2; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-sFocO5g4Y { font-size: 18px !important;color: rgb(166, 162, 157);line-height: 2; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-sFocO5g4Y { font-size: 18px !important;color: rgb(166, 162, 157);line-height: 2; } }

 @media (max-width: 639px) { .gp-component-id-30HA0unnBm[data-gp-component] { padding-left: 20px;padding-right: 20px;width: 100%;height: 100%; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-30HA0unnBm[data-gp-component] { padding-left: 20px;padding-right: 20px;width: 100%;height: 100%; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-30HA0unnBm[data-gp-component] { padding-left: 20px;padding-right: 20px;width: 100%;height: 100%; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-30HA0unnBm[data-gp-component] { padding-left: 20px;padding-right: 20px;width: 100%;height: 100%; } } @media (min-width: 1200px) { .gp-component-id-30HA0unnBm[data-gp-component] { padding-left: 20px;padding-right: 20px;width: 100%;height: 100%; } }

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

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

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

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

 @media (max-width: 639px) { [data-gp-text] .gp-component-id-yOD1WRRIf { font-size: 56px !important;font-weight: 900 !important;color: rgb(246, 240, 230);line-height: 1.25;margin-top: 20px;margin-bottom: 20px; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-yOD1WRRIf { font-size: 56px !important;font-weight: 900 !important;color: rgb(246, 240, 230);line-height: 1.25;margin-top: 20px;margin-bottom: 20px; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-yOD1WRRIf { font-size: 56px !important;font-weight: 900 !important;color: rgb(246, 240, 230);line-height: 1.25;margin-top: 20px;margin-bottom: 20px; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-yOD1WRRIf { font-size: 56px !important;font-weight: 900 !important;color: rgb(246, 240, 230);line-height: 1.25;margin-top: 20px;margin-bottom: 20px; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-yOD1WRRIf { font-size: 56px !important;font-weight: 900 !important;color: rgb(246, 240, 230);line-height: 1.25;margin-top: 20px;margin-bottom: 20px; } }

 @media (max-width: 639px) { .gp-component-id-SGvMPgaKyXy[data-gp-component] { padding-left: 20px;padding-right: 20px;padding-top: 70px;width: 100%;height: 100%; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-SGvMPgaKyXy[data-gp-component] { padding-left: 20px;padding-right: 20px;padding-top: 70px;width: 100%;height: 100%; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-SGvMPgaKyXy[data-gp-component] { padding-left: 20px;padding-right: 20px;padding-top: 70px;width: 100%;height: 100%; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-SGvMPgaKyXy[data-gp-component] { padding-left: 20px;padding-right: 20px;padding-top: 70px;width: 100%;height: 100%; } } @media (min-width: 1200px) { .gp-component-id-SGvMPgaKyXy[data-gp-component] { padding-left: 20px;padding-right: 20px;padding-top: 70px;width: 100%;height: 100%; } }

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

 @media (max-width: 639px) { [data-gp-text] .gp-component-id-0lqnh3D6zN { font-size: 20px !important;color: rgb(166, 162, 157);line-height: 2;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 30px; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-0lqnh3D6zN { font-size: 20px !important;color: rgb(166, 162, 157);line-height: 2;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 30px; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-0lqnh3D6zN { font-size: 20px !important;color: rgb(166, 162, 157);line-height: 2;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 30px; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-0lqnh3D6zN { font-size: 20px !important;color: rgb(166, 162, 157);line-height: 2;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 30px; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-0lqnh3D6zN { font-size: 20px !important;color: rgb(166, 162, 157);line-height: 2;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 30px; } }

 @media (max-width: 639px) { [data-gp-text] .gp-component-id-0xwZ9bklc { text-align: left;margin-bottom: 0px; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-0xwZ9bklc { text-align: left;margin-bottom: 0px; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-0xwZ9bklc { text-align: left;margin-bottom: 0px; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-0xwZ9bklc { text-align: left;margin-bottom: 0px; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-0xwZ9bklc { text-align: left;margin-bottom: 0px; } }

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

 @media (max-width: 639px) { [data-gp-text] .gp-component-id-TGFX6lpKQ { font-size: 60px !important;font-weight: 900 !important;color: rgb(246, 240, 230);line-height: 1;font-style: inherit !important;text-decoration-line: inherit; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-TGFX6lpKQ { font-size: 57px !important;font-weight: 900 !important;color: rgb(246, 240, 230);line-height: 1;font-style: inherit !important;text-decoration-line: inherit; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-TGFX6lpKQ { font-size: 70px !important;font-weight: 900 !important;color: rgb(246, 240, 230);line-height: 1;font-style: inherit !important;text-decoration-line: inherit; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-TGFX6lpKQ { font-size: 77px !important;font-weight: 900 !important;color: rgb(246, 240, 230);line-height: 1;font-style: inherit !important;text-decoration-line: inherit; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-TGFX6lpKQ { font-size: 96px !important;font-weight: 900 !important;color: rgb(246, 240, 230);line-height: 1;font-style: inherit !important;text-decoration-line: inherit; } }

 @media (max-width: 639px) { .gp-component-id-SW6rdNBVoH { font-size: 15px !important;color: rgb(166, 162, 157);line-height: 2;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-SW6rdNBVoH { font-size: 15px !important;color: rgb(166, 162, 157);line-height: 2;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-SW6rdNBVoH { font-size: 15px !important;color: rgb(166, 162, 157);line-height: 2;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-SW6rdNBVoH { font-size: 15px !important;color: rgb(166, 162, 157);line-height: 2;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } } @media (min-width: 1200px) { .gp-component-id-SW6rdNBVoH { font-size: 15px !important;color: rgb(166, 162, 157);line-height: 2;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } }

 @media (max-width: 639px) { [data-gp-text] .gp-component-id-8tjPImq0N { font-size: 15px !important;color: rgb(166, 162, 157);line-height: 2;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-8tjPImq0N { font-size: 15px !important;color: rgb(166, 162, 157);line-height: 2;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-8tjPImq0N { font-size: 15px !important;color: rgb(166, 162, 157);line-height: 2;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-8tjPImq0N { font-size: 15px !important;color: rgb(166, 162, 157);line-height: 2;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-8tjPImq0N { font-size: 15px !important;color: rgb(166, 162, 157);line-height: 2;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } }

 @media (max-width: 639px) { .gp-component-id-dSR0HR7RdV { font-size: 20px !important;font-weight: 700 !important;color: rgb(204, 43, 43);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-dSR0HR7RdV { font-size: 20px !important;font-weight: 700 !important;color: rgb(204, 43, 43);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-dSR0HR7RdV { font-size: 20px !important;font-weight: 700 !important;color: rgb(204, 43, 43);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-dSR0HR7RdV { font-size: 20px !important;font-weight: 700 !important;color: rgb(204, 43, 43);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } } @media (min-width: 1200px) { .gp-component-id-dSR0HR7RdV { font-size: 20px !important;font-weight: 700 !important;color: rgb(204, 43, 43);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } }

 @media (max-width: 639px) { [data-gp-text] .gp-component-id-goiIbPbw4e { font-size: 20px !important;font-weight: 700 !important;color: rgb(204, 43, 43);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-goiIbPbw4e { font-size: 20px !important;font-weight: 700 !important;color: rgb(204, 43, 43);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-goiIbPbw4e { font-size: 20px !important;font-weight: 700 !important;color: rgb(204, 43, 43);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-goiIbPbw4e { font-size: 20px !important;font-weight: 700 !important;color: rgb(204, 43, 43);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-goiIbPbw4e { font-size: 20px !important;font-weight: 700 !important;color: rgb(204, 43, 43);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } }

 @media (max-width: 639px) { .gp-component-id-J4iYVfHU7[data-gp-component] { margin-bottom: 15px;width: 100%; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-J4iYVfHU7[data-gp-component] { margin-bottom: 15px;width: 100%; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-J4iYVfHU7[data-gp-component] { margin-bottom: 15px;width: 100%; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-J4iYVfHU7[data-gp-component] { margin-bottom: 15px;width: 100%; } } @media (min-width: 1200px) { .gp-component-id-J4iYVfHU7[data-gp-component] { margin-bottom: 15px;width: 100%; } }

 @media (max-width: 639px) { .gp-component-id-s3AClgHMTw { font-size: 15px !important;color: rgb(166, 162, 157);line-height: 2;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-s3AClgHMTw { font-size: 15px !important;color: rgb(166, 162, 157);line-height: 2;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-s3AClgHMTw { font-size: 15px !important;color: rgb(166, 162, 157);line-height: 2;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-s3AClgHMTw { font-size: 15px !important;color: rgb(166, 162, 157);line-height: 2;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } } @media (min-width: 1200px) { .gp-component-id-s3AClgHMTw { font-size: 15px !important;color: rgb(166, 162, 157);line-height: 2;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } }

 @media (max-width: 639px) { .gp-component-id-7tLZVs0gVp { font-size: 20px !important;font-weight: 700 !important;color: rgb(204, 43, 43);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-7tLZVs0gVp { font-size: 20px !important;font-weight: 700 !important;color: rgb(204, 43, 43);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-7tLZVs0gVp { font-size: 20px !important;font-weight: 700 !important;color: rgb(204, 43, 43);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-7tLZVs0gVp { font-size: 20px !important;font-weight: 700 !important;color: rgb(204, 43, 43);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } } @media (min-width: 1200px) { .gp-component-id-7tLZVs0gVp { font-size: 20px !important;font-weight: 700 !important;color: rgb(204, 43, 43);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } }

 @media (max-width: 639px) { .gp-component-id-Ixig6oYCr[data-gp-component] { margin-bottom: 15px;width: 100%; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-Ixig6oYCr[data-gp-component] { margin-bottom: 15px;width: 100%; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-Ixig6oYCr[data-gp-component] { margin-bottom: 15px;width: 100%; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-Ixig6oYCr[data-gp-component] { margin-bottom: 15px;width: 100%; } } @media (min-width: 1200px) { .gp-component-id-Ixig6oYCr[data-gp-component] { margin-bottom: 15px;width: 100%; } }

 @media (max-width: 639px) { .gp-component-id-FQ5Fi5qlG[data-gp-component] { margin-bottom: 15px;width: 100%; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-FQ5Fi5qlG[data-gp-component] { margin-bottom: 15px;width: 100%; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-FQ5Fi5qlG[data-gp-component] { margin-bottom: 15px;width: 100%; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-FQ5Fi5qlG[data-gp-component] { margin-bottom: 15px;width: 100%; } } @media (min-width: 1200px) { .gp-component-id-FQ5Fi5qlG[data-gp-component] { margin-bottom: 15px;width: 100%; } }

 @media (max-width: 639px) { .gp-component-id-IlGed5Zfwf[data-gp-component] { margin-bottom: 15px;width: 100%; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-IlGed5Zfwf[data-gp-component] { margin-bottom: 15px;width: 100%; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-IlGed5Zfwf[data-gp-component] { margin-bottom: 15px;width: 100%; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-IlGed5Zfwf[data-gp-component] { margin-bottom: 15px;width: 100%; } } @media (min-width: 1200px) { .gp-component-id-IlGed5Zfwf[data-gp-component] { margin-bottom: 15px;width: 100%; } }

 @media (max-width: 639px) { [data-gp-text] .gp-component-id-ArrBXuUSx { font-size: 15px !important;color: rgb(166, 162, 157);line-height: 2; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-ArrBXuUSx { font-size: 15px !important;color: rgb(166, 162, 157);line-height: 2; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-ArrBXuUSx { font-size: 15px !important;color: rgb(166, 162, 157);line-height: 2; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-ArrBXuUSx { font-size: 15px !important;color: rgb(166, 162, 157);line-height: 2; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-ArrBXuUSx { font-size: 15px !important;color: rgb(166, 162, 157);line-height: 2; } }

 @media (max-width: 639px) { [data-gp-text] .gp-component-id-xVR7E2cdz { font-size: 20px !important;font-weight: 700 !important;color: rgb(204, 43, 43); } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-xVR7E2cdz { font-size: 20px !important;font-weight: 700 !important;color: rgb(204, 43, 43); } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-xVR7E2cdz { font-size: 20px !important;font-weight: 700 !important;color: rgb(204, 43, 43); } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-xVR7E2cdz { font-size: 20px !important;font-weight: 700 !important;color: rgb(204, 43, 43); } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-xVR7E2cdz { font-size: 20px !important;font-weight: 700 !important;color: rgb(204, 43, 43); } }

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

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

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

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

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

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

 @media (max-width: 639px) { .gp-component-id-6bdS09XY2C[data-gp-component] { padding-left: 20px;padding-right: 20px;width: 100%;height: 100%; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-6bdS09XY2C[data-gp-component] { padding-left: 20px;padding-right: 20px;width: 100%;height: 100%; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-6bdS09XY2C[data-gp-component] { padding-left: 20px;padding-right: 20px;width: 100%;height: 100%; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-6bdS09XY2C[data-gp-component] { padding-left: 20px;padding-right: 20px;width: 100%;height: 100%; } } @media (min-width: 1200px) { .gp-component-id-6bdS09XY2C[data-gp-component] { padding-left: 20px;padding-right: 20px;width: 100%;height: 100%; } }

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

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

 @media (max-width: 639px) { [data-gp-text] .gp-component-id-s3jlmaxhQQ { font-size: 60px !important;font-weight: 900 !important;color: rgb(255, 255, 255);line-height: 1;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 30px;font-style: inherit !important;text-decoration-line: inherit; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-s3jlmaxhQQ { font-size: 57px !important;font-weight: 900 !important;color: rgb(255, 255, 255);line-height: 1;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 30px;font-style: inherit !important;text-decoration-line: inherit; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-s3jlmaxhQQ { font-size: 70px !important;font-weight: 900 !important;color: rgb(255, 255, 255);line-height: 1;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 30px;font-style: inherit !important;text-decoration-line: inherit; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-s3jlmaxhQQ { font-size: 77px !important;font-weight: 900 !important;color: rgb(255, 255, 255);line-height: 1;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 30px;font-style: inherit !important;text-decoration-line: inherit; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-s3jlmaxhQQ { font-size: 96px !important;font-weight: 900 !important;color: rgb(255, 255, 255);line-height: 1;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 30px;font-style: inherit !important;text-decoration-line: inherit; } }

 @media (max-width: 639px) { [data-gp-text] .gp-component-id-pMdRErnDWa { font-size: 13px !important;font-weight: inherit !important;color: rgb(166, 162, 157);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 5px; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-pMdRErnDWa { font-size: 13px !important;font-weight: inherit !important;color: rgb(166, 162, 157);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 5px; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-pMdRErnDWa { font-size: 13px !important;font-weight: inherit !important;color: rgb(166, 162, 157);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-pMdRErnDWa { font-size: 13px !important;font-weight: inherit !important;color: rgb(166, 162, 157);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-pMdRErnDWa { font-size: 13px !important;font-weight: inherit !important;color: rgb(166, 162, 157);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } }

 @media (max-width: 639px) { [data-gp-text] .gp-component-id-YOviafwreg { font-size: 13px !important;font-weight: inherit !important;color: rgb(166, 162, 157);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 5px; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-YOviafwreg { font-size: 13px !important;font-weight: inherit !important;color: rgb(166, 162, 157);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 5px; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-YOviafwreg { font-size: 13px !important;font-weight: inherit !important;color: rgb(166, 162, 157);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-YOviafwreg { font-size: 13px !important;font-weight: inherit !important;color: rgb(166, 162, 157);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-YOviafwreg { font-size: 13px !important;font-weight: inherit !important;color: rgb(166, 162, 157);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } }

 @media (max-width: 639px) { [data-gp-text] .gp-component-id-1lAz_EGPja { font-size: 13px !important;font-weight: inherit !important;color: rgb(166, 162, 157);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 5px; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-1lAz_EGPja { font-size: 13px !important;font-weight: inherit !important;color: rgb(166, 162, 157);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 5px; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-1lAz_EGPja { font-size: 13px !important;font-weight: inherit !important;color: rgb(166, 162, 157);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-1lAz_EGPja { font-size: 13px !important;font-weight: inherit !important;color: rgb(166, 162, 157);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-1lAz_EGPja { font-size: 13px !important;font-weight: inherit !important;color: rgb(166, 162, 157);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } }

 @media (max-width: 639px) { [data-gp-text] .gp-component-id-IftNkYTJV { font-size: 11px !important;color: rgb(166, 162, 157);letter-spacing: 0.05em;margin-left: 14px; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-IftNkYTJV { font-size: 13px !important;color: rgb(166, 162, 157);letter-spacing: 0.05em;margin-left: 14px; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-IftNkYTJV { font-size: 13px !important;color: rgb(166, 162, 157);letter-spacing: 0.05em;margin-left: 14px; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-IftNkYTJV { font-size: 13px !important;color: rgb(166, 162, 157);letter-spacing: 0.05em;margin-left: 14px; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-IftNkYTJV { font-size: 13px !important;color: rgb(166, 162, 157);letter-spacing: 0.05em;margin-left: 14px; } }

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

 @media (max-width: 639px) { .gp-component-id-F7JEG32vWa[data-gp-component] { margin-bottom: 0px;width: 100%;flex-direction: row;display: block; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-F7JEG32vWa[data-gp-component] { margin-bottom: 0px;width: 100%;flex-direction: row;display: block; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-F7JEG32vWa[data-gp-component] { margin-bottom: 0px;width: 100%;flex-direction: row;display: block; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-F7JEG32vWa[data-gp-component] { margin-bottom: 0px;width: 100%;flex-direction: row;display: block; } } @media (min-width: 1200px) { .gp-component-id-F7JEG32vWa[data-gp-component] { margin-bottom: 0px;width: 100%;flex-direction: row;display: block; } }

 @media (max-width: 639px) { [data-gp-text] .gp-component-id-vPDG6zo34 { font-size: 13px !important;color: rgb(166, 162, 157);text-align: center; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-vPDG6zo34 { font-size: 13px !important;color: rgb(166, 162, 157);text-align: center; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-vPDG6zo34 { font-size: 13px !important;color: rgb(166, 162, 157);text-align: center; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-vPDG6zo34 { font-size: 13px !important;color: rgb(166, 162, 157);text-align: center; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-vPDG6zo34 { font-size: 13px !important;color: rgb(166, 162, 157);text-align: center; } }

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

 @media (max-width: 639px) { .gp-component-id-tzuWobTEA[data-gp-component] { margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-tzuWobTEA[data-gp-component] { margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-tzuWobTEA[data-gp-component] { margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-tzuWobTEA[data-gp-component] { margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%; } } @media (min-width: 1200px) { .gp-component-id-tzuWobTEA[data-gp-component] { margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%; } }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

 @media (max-width: 639px) { .gp-component-id-QHTITTJCA[data-gp-component] { font-size: 16px;color: inherit;text-align: center;border-top-left-radius: 100px;border-top-right-radius: 100px;border-bottom-left-radius: 100px;border-bottom-right-radius: 100px;background-color: rgb(57, 75, 86);margin-right: 15px;padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer; } .gp-component-id-QHTITTJCA[data-gp-component]:hover,.gp-component-id-QHTITTJCA[data-gp-component].gp-hover { background-color: rgb(120, 136, 155); } .gp-component-id-QHTITTJCA[data-gp-component]:active,.gp-component-id-QHTITTJCA[data-gp-component].gp-active { background-color: rgb(32, 45, 60); } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-QHTITTJCA[data-gp-component] { font-size: 16px;color: inherit;text-align: center;border-top-left-radius: 100px;border-top-right-radius: 100px;border-bottom-left-radius: 100px;border-bottom-right-radius: 100px;background-color: rgb(57, 75, 86);margin-right: 15px;padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer; } .gp-component-id-QHTITTJCA[data-gp-component]:hover,.gp-component-id-QHTITTJCA[data-gp-component].gp-hover { background-color: rgb(120, 136, 155); } .gp-component-id-QHTITTJCA[data-gp-component]:active,.gp-component-id-QHTITTJCA[data-gp-component].gp-active { background-color: rgb(32, 45, 60); } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-QHTITTJCA[data-gp-component] { font-size: 16px;color: inherit;text-align: center;border-top-left-radius: 100px;border-top-right-radius: 100px;border-bottom-left-radius: 100px;border-bottom-right-radius: 100px;background-color: rgb(57, 75, 86);margin-right: 15px;padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer; } .gp-component-id-QHTITTJCA[data-gp-component]:hover,.gp-component-id-QHTITTJCA[data-gp-component].gp-hover { background-color: rgb(120, 136, 155); } .gp-component-id-QHTITTJCA[data-gp-component]:active,.gp-component-id-QHTITTJCA[data-gp-component].gp-active { background-color: rgb(32, 45, 60); } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-QHTITTJCA[data-gp-component] { font-size: 16px;color: inherit;text-align: center;border-top-left-radius: 100px;border-top-right-radius: 100px;border-bottom-left-radius: 100px;border-bottom-right-radius: 100px;background-color: rgb(57, 75, 86);margin-right: 15px;padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer; } .gp-component-id-QHTITTJCA[data-gp-component]:hover,.gp-component-id-QHTITTJCA[data-gp-component].gp-hover { background-color: rgb(120, 136, 155); } .gp-component-id-QHTITTJCA[data-gp-component]:active,.gp-component-id-QHTITTJCA[data-gp-component].gp-active { background-color: rgb(32, 45, 60); } } @media (min-width: 1200px) { .gp-component-id-QHTITTJCA[data-gp-component] { font-size: 16px;color: inherit;text-align: center;border-top-left-radius: 100px;border-top-right-radius: 100px;border-bottom-left-radius: 100px;border-bottom-right-radius: 100px;background-color: rgb(57, 75, 86);margin-right: 15px;padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer; } .gp-component-id-QHTITTJCA[data-gp-component]:hover,.gp-component-id-QHTITTJCA[data-gp-component].gp-hover { background-color: rgb(120, 136, 155); } .gp-component-id-QHTITTJCA[data-gp-component]:active,.gp-component-id-QHTITTJCA[data-gp-component].gp-active { background-color: rgb(32, 45, 60); } }

 @media (max-width: 639px) { .gp-component-id-XwX3VRzOPP[data-gp-component] { font-size: 16px;color: inherit;text-align: center;border-top-left-radius: 100px;border-top-right-radius: 100px;border-bottom-left-radius: 100px;border-bottom-right-radius: 100px;background-color: rgb(57, 75, 86);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer; } .gp-component-id-XwX3VRzOPP[data-gp-component]:hover,.gp-component-id-XwX3VRzOPP[data-gp-component].gp-hover { background-color: rgb(120, 136, 155); } .gp-component-id-XwX3VRzOPP[data-gp-component]:active,.gp-component-id-XwX3VRzOPP[data-gp-component].gp-active { background-color: rgb(32, 45, 60); } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-XwX3VRzOPP[data-gp-component] { font-size: 16px;color: inherit;text-align: center;border-top-left-radius: 100px;border-top-right-radius: 100px;border-bottom-left-radius: 100px;border-bottom-right-radius: 100px;background-color: rgb(57, 75, 86);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer; } .gp-component-id-XwX3VRzOPP[data-gp-component]:hover,.gp-component-id-XwX3VRzOPP[data-gp-component].gp-hover { background-color: rgb(120, 136, 155); } .gp-component-id-XwX3VRzOPP[data-gp-component]:active,.gp-component-id-XwX3VRzOPP[data-gp-component].gp-active { background-color: rgb(32, 45, 60); } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-XwX3VRzOPP[data-gp-component] { font-size: 16px;color: inherit;text-align: center;border-top-left-radius: 100px;border-top-right-radius: 100px;border-bottom-left-radius: 100px;border-bottom-right-radius: 100px;background-color: rgb(57, 75, 86);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer; } .gp-component-id-XwX3VRzOPP[data-gp-component]:hover,.gp-component-id-XwX3VRzOPP[data-gp-component].gp-hover { background-color: rgb(120, 136, 155); } .gp-component-id-XwX3VRzOPP[data-gp-component]:active,.gp-component-id-XwX3VRzOPP[data-gp-component].gp-active { background-color: rgb(32, 45, 60); } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-XwX3VRzOPP[data-gp-component] { font-size: 16px;color: inherit;text-align: center;border-top-left-radius: 100px;border-top-right-radius: 100px;border-bottom-left-radius: 100px;border-bottom-right-radius: 100px;background-color: rgb(57, 75, 86);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer; } .gp-component-id-XwX3VRzOPP[data-gp-component]:hover,.gp-component-id-XwX3VRzOPP[data-gp-component].gp-hover { background-color: rgb(120, 136, 155); } .gp-component-id-XwX3VRzOPP[data-gp-component]:active,.gp-component-id-XwX3VRzOPP[data-gp-component].gp-active { background-color: rgb(32, 45, 60); } } @media (min-width: 1200px) { .gp-component-id-XwX3VRzOPP[data-gp-component] { font-size: 16px;color: inherit;text-align: center;border-top-left-radius: 100px;border-top-right-radius: 100px;border-bottom-left-radius: 100px;border-bottom-right-radius: 100px;background-color: rgb(57, 75, 86);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer; } .gp-component-id-XwX3VRzOPP[data-gp-component]:hover,.gp-component-id-XwX3VRzOPP[data-gp-component].gp-hover { background-color: rgb(120, 136, 155); } .gp-component-id-XwX3VRzOPP[data-gp-component]:active,.gp-component-id-XwX3VRzOPP[data-gp-component].gp-active { background-color: rgb(32, 45, 60); } }

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

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

 @media (max-width: 639px) { [data-gp-text] .gp-component-id-0JlDJaS2O { margin-right: 0px; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-0JlDJaS2O { margin-right: 0px; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-0JlDJaS2O { margin-right: 0px; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-0JlDJaS2O { margin-right: 0px; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-0JlDJaS2O { margin-right: 0px; } }

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

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

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

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

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

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

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

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

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

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

[data-gp-component].gp-component-id-jW9KMoAm2 { }

[data-gp-component].gp-component-id-26SJOyjh5J { }

[data-gp-component].gp-component-id-PmUbvS07Zm { }

 .gp-component-id-TGFX6lpKQ { 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-TGFX6lpKQ { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: inherit;font-weight: inherit; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-TGFX6lpKQ { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: inherit;font-weight: inherit; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-TGFX6lpKQ { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: inherit;font-weight: inherit; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-TGFX6lpKQ { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: inherit;font-weight: inherit; } } @media (min-width: 1200px) { .gp-component-id-TGFX6lpKQ { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: inherit;font-weight: inherit; } }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

