
      
    


      body { font-family: Inter }
     


      /* =========================================
   EFGC Brand CSS Foundation
   Fonts, colors, and type scale
   ========================================= */

/* Optional font import if not already loaded */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Manrope:wght@500;600;700;800&display=swap');

:root {
  /* Fonts */
  --font-heading: "Manrope", sans-serif;
  --font-body: "Inter", sans-serif;

  /* Core colors */
  --color-primary: #102A43;      /* Deep Navy */
  --color-secondary: #2F5D7E;    /* Steel Blue */
  --color-accent: #1F8A8A;       /* Signal Teal */
  --color-accent-warm: #D9A441;  /* Amber Control Accent */

  /* Neutrals */
  --color-text: #1F2933;         /* Charcoal text */
  --color-text-muted: #52606D;   /* Mid gray */
  --color-text-soft: #5B6B7A;    /* Slate gray */
  --color-border: #D9E2EC;       /* Light border */
  --color-bg: #FFFFFF;           /* White */
  --color-bg-soft: #F5F7FA;      /* Soft Cloud */
  --color-section-wash: #EEF2F6; /* Section wash */

  /* Optional logo red placeholder if you keep red in the system */
  --color-brand-red: #C53D3D;

  /* Desktop type scale */
  --fs-h1: 52px;
  --fs-h2: 40px;
  --fs-h3: 30px;
  --fs-h4: 24px;
  --fs-body-lg: 20px;
  --fs-body: 18px;
  --fs-small: 14px;
  --fs-button: 16px;

  /* Line heights */
  --lh-h1: 1.1;
  --lh-h2: 1.18;
  --lh-h3: 1.22;
  --lh-h4: 1.25;
  --lh-body-lg: 1.6;
  --lh-body: 1.7;
  --lh-small: 1.45;

  /* Weights */
  --fw-heading: 700;
  --fw-subheading: 600;
  --fw-label: 500;
  --fw-body: 400;

  /* Radius */
  --radius-button: 12px;
  --radius-card: 16px;
}

/* Base */
html {
  font-size: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  font-weight: var(--fw-body);
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  color: var(--color-primary);
  font-family: var(--font-heading);
  letter-spacing: -0.02em;
}

h1 {
  font-size: var(--fs-h1);
  line-height: var(--lh-h1);
  font-weight: var(--fw-heading);
}

h2 {
  font-size: var(--fs-h2);
  line-height: var(--lh-h2);
  font-weight: var(--fw-heading);
}

h3 {
  font-size: var(--fs-h3);
  line-height: var(--lh-h3);
  font-weight: var(--fw-heading);
}

h4 {
  font-size: var(--fs-h4);
  line-height: var(--lh-h4);
  font-weight: 650; /* falls back to 700 if unavailable */
}

/* Body text helpers */
p,
li,
blockquote {
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--color-text);
}

.text-lg {
  font-size: var(--fs-body-lg);
  line-height: var(--lh-body-lg);
}

.text-sm,
small,
.meta {
  font-size: var(--fs-small);
  line-height: var(--lh-small);
  color: var(--color-text-muted);
}

.eyebrow,
.label {
  font-size: 14px;
  line-height: 1.4;
  font-weight: var(--fw-label);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-secondary);
}

/* Links */
a {
  color: var(--color-secondary);
  text-decoration: none;
}

a:hover,
a:focus {
  text-decoration: underline;
}

/* Buttons */
.button,
button,
input[type="submit"] {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--fs-button);
  font-weight: 600;
  line-height: 1.2;
  padding: 14px 24px;
  border-radius: var(--radius-button);
  border: 1px solid transparent;
  cursor: pointer;
}

/* Recommended primary CTA */
.button-primary {
  background: var(--color-primary);
  color: #FFFFFF;
}

.button-primary:hover,
.button-primary:focus {
  background: #0D2236;
}

/* Secondary CTA */
.button-secondary {
  background: #FFFFFF;
  color: var(--color-secondary);
  border-color: var(--color-secondary);
}

.button-secondary:hover,
.button-secondary:focus {
  background: var(--color-bg-soft);
}

/* Optional red CTA if you decide to keep logo red as CTA color */
.button-red {
  background: var(--color-brand-red);
  color: #FFFFFF;
}

.button-red:hover,
.button-red:focus {
  filter: brightness(0.95);
}

/* Utility classes */
.bg-soft {
  background: var(--color-bg-soft);
}

.bg-dark {
  background: var(--color-primary);
  color: #FFFFFF;
}

.border-soft {
  border: 1px solid var(--color-border);
}

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

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

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

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

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

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

/* Mobile type scale */
@media (max-width: 767px) {
  :root {
    --fs-h1: 38px;
    --fs-h2: 30px;
    --fs-h3: 24px;
    --fs-h4: 22px;
    --fs-body-lg: 18px;
    --fs-body: 16px;
    --fs-small: 14px;
    --fs-button: 16px;
  }

  body {
    font-size: var(--fs-body);
  }
} *{} {}
     


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


        @media (max-width: 639px) {
          
        .global-style-JtBm_bJrA {
          letter-spacing: 0.05em;font-family: Inter;
      }
        }
        @media (max-width: 767px) and (min-width: 640px) {
          
        .global-style-JtBm_bJrA {
          letter-spacing: 0.05em;font-family: Inter;
      }
        }
        @media (max-width: 991px) and (min-width: 768px) {
          
        .global-style-JtBm_bJrA {
          letter-spacing: 0.05em;font-family: Inter;
      }
        }
        @media (max-width: 1199px) and (min-width: 992px) {
          
        .global-style-JtBm_bJrA {
          letter-spacing: 0.05em;font-family: Inter;
      }
        }
        @media (min-width: 1200px) {
          
        .global-style-JtBm_bJrA {
          letter-spacing: 0.05em;font-family: Inter;
      }
        }
        @media (max-width: 639px) {
          
        .global-style-jpxvP5Hub {
          font-size: 48px !important;font-weight: 600 !important;color: rgba(16, 42, 67, 1);text-align: center;line-height: 1.5;font-family: Manrope !important;margin-bottom: 20px;width: 100%;
      }
        }
        @media (max-width: 767px) and (min-width: 640px) {
          
        .global-style-jpxvP5Hub {
          font-size: 48px !important;font-weight: 600 !important;color: rgba(16, 42, 67, 1);text-align: center;line-height: 1.5;font-family: Manrope !important;margin-bottom: 20px;width: 100%;
      }
        }
        @media (max-width: 991px) and (min-width: 768px) {
          
        .global-style-jpxvP5Hub {
          font-size: 48px !important;font-weight: 600 !important;color: rgba(16, 42, 67, 1);text-align: center;line-height: 1.5;font-family: Manrope !important;margin-bottom: 20px;width: 100%;
      }
        }
        @media (max-width: 1199px) and (min-width: 992px) {
          
        .global-style-jpxvP5Hub {
          font-size: 48px !important;font-weight: 600 !important;color: rgba(16, 42, 67, 1);text-align: center;line-height: 1.5;font-family: Manrope !important;margin-bottom: 20px;width: 100%;
      }
        }
        @media (min-width: 1200px) {
          
        .global-style-jpxvP5Hub {
          font-size: 48px !important;font-weight: 600 !important;color: rgba(16, 42, 67, 1);text-align: left;line-height: 1.5;font-family: Manrope !important;margin-bottom: 20px;width: 100%;
      }
        }
        @media (max-width: 639px) {
          
        .global-style-rVHN2BqX0 {
          font-size: 15px !important;
      }
        }
        @media (max-width: 767px) and (min-width: 640px) {
          
        .global-style-rVHN2BqX0 {
          font-size: 15px !important;
      }
        }
        @media (max-width: 991px) and (min-width: 768px) {
          
        .global-style-rVHN2BqX0 {
          font-size: 15px !important;
      }
        }
        @media (max-width: 1199px) and (min-width: 992px) {
          
        .global-style-rVHN2BqX0 {
          font-size: 15px !important;
      }
        }
        @media (min-width: 1200px) {
          
        .global-style-rVHN2BqX0 {
          font-size: 15px !important;
      }
        }
        
        .global-style-5lZU3WAAt {
          font-size: 24px;color: rgb(32, 45, 60);font-weight: 700;margin-top: 0px;margin-right: 0px;margin-bottom: 8px;margin-left: 0px;
      }
        
        @media (max-width: 639px) {
          
        .global-style-5lZU3WAAt {
          font-size: 28px !important;font-weight: 700;color: rgb(32, 45, 60);font-family: Manrope;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 8px;
      }
        }
        @media (max-width: 767px) and (min-width: 640px) {
          
        .global-style-5lZU3WAAt {
          font-size: 28px !important;font-weight: 700;color: rgb(32, 45, 60);font-family: Manrope;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 8px;
      }
        }
        @media (max-width: 991px) and (min-width: 768px) {
          
        .global-style-5lZU3WAAt {
          font-size: 28px !important;font-weight: 700;color: rgb(32, 45, 60);font-family: Manrope;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 8px;
      }
        }
        @media (max-width: 1199px) and (min-width: 992px) {
          
        .global-style-5lZU3WAAt {
          font-size: 28px !important;font-weight: 700;color: rgb(32, 45, 60);font-family: Manrope;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 8px;
      }
        }
        @media (min-width: 1200px) {
          
        .global-style-5lZU3WAAt {
          font-size: 28px !important;font-weight: 700;color: rgb(32, 45, 60);font-family: Manrope;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 8px;
      }
        }
        
        .global-style-5lZU3WAAt:not([data-gp-component="block"]), .global-style-5lZU3WAAt [data-section-overlay] {
          background-color: undefined;
      }
        
        @media (max-width: 639px) {
          
        .global-style-1QkEwvaT9 {
          text-align: center;padding-left: 158px;padding-right: 158px;
      }
        }
        @media (max-width: 767px) and (min-width: 640px) {
          
        .global-style-1QkEwvaT9 {
          text-align: center;padding-left: 158px;padding-right: 158px;
      }
        }
        @media (max-width: 991px) and (min-width: 768px) {
          
        .global-style-1QkEwvaT9 {
          text-align: center;padding-left: 158px;padding-right: 158px;
      }
        }
        @media (max-width: 1199px) and (min-width: 992px) {
          
        .global-style-1QkEwvaT9 {
          text-align: center;padding-left: 158px;padding-right: 158px;
      }
        }
        @media (min-width: 1200px) {
          
        .global-style-1QkEwvaT9 {
          text-align: center;padding-left: 158px;padding-right: 158px;
      }
        }
        @media (max-width: 639px) {
          
        .global-style-5RlfHqIiH {
          font-size: 42px !important;font-weight: 600;color: rgb(16, 42, 67);text-align: left;padding-left: 80px;padding-right: 80px;
      }
        }
        @media (max-width: 767px) and (min-width: 640px) {
          
        .global-style-5RlfHqIiH {
          font-size: 42px !important;font-weight: 600;color: rgb(16, 42, 67);text-align: left;padding-left: 80px;padding-right: 80px;
      }
        }
        @media (max-width: 991px) and (min-width: 768px) {
          
        .global-style-5RlfHqIiH {
          font-size: 42px !important;font-weight: 600;color: rgb(16, 42, 67);text-align: left;padding-left: 80px;padding-right: 80px;
      }
        }
        @media (max-width: 1199px) and (min-width: 992px) {
          
        .global-style-5RlfHqIiH {
          font-size: 42px !important;font-weight: 600;color: rgb(16, 42, 67);text-align: left;padding-left: 80px;padding-right: 80px;
      }
        }
        @media (min-width: 1200px) {
          
        .global-style-5RlfHqIiH {
          font-size: 42px !important;font-weight: 600;color: rgb(16, 42, 67);text-align: left;padding-left: 80px;padding-right: 80px;
      }
        }
        @media (max-width: 639px) {
          
        .global-style-KFI9SgbZ0 {
          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Inter;border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;padding-left: 26px;padding-right: 26px;padding-top: 14px;padding-bottom: 14px;
      }
        }
        @media (max-width: 767px) and (min-width: 640px) {
          
        .global-style-KFI9SgbZ0 {
          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Inter;border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;padding-left: 26px;padding-right: 26px;padding-top: 14px;padding-bottom: 14px;
      }
        }
        @media (max-width: 991px) and (min-width: 768px) {
          
        .global-style-KFI9SgbZ0 {
          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Inter;border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;padding-left: 26px;padding-right: 26px;padding-top: 14px;padding-bottom: 14px;
      }
        }
        @media (max-width: 1199px) and (min-width: 992px) {
          
        .global-style-KFI9SgbZ0 {
          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Inter;border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;padding-left: 26px;padding-right: 26px;padding-top: 14px;padding-bottom: 14px;
      }
        }
        @media (min-width: 1200px) {
          
        .global-style-KFI9SgbZ0 {
          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Inter;border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;padding-left: 26px;padding-right: 26px;padding-top: 14px;padding-bottom: 14px;
      }
        }
        @media (max-width: 639px) {
          
        .global-style-KFI9SgbZ0:not([data-gp-component="block"]), .global-style-KFI9SgbZ0 [data-section-overlay] {
          background-color: rgba(16, 42, 67, 1);
      }
        }
        @media (max-width: 767px) and (min-width: 640px) {
          
        .global-style-KFI9SgbZ0:not([data-gp-component="block"]), .global-style-KFI9SgbZ0 [data-section-overlay] {
          background-color: rgba(16, 42, 67, 1);
      }
        }
        @media (max-width: 991px) and (min-width: 768px) {
          
        .global-style-KFI9SgbZ0:not([data-gp-component="block"]), .global-style-KFI9SgbZ0 [data-section-overlay] {
          background-color: rgba(16, 42, 67, 1);
      }
        }
        @media (max-width: 1199px) and (min-width: 992px) {
          
        .global-style-KFI9SgbZ0:not([data-gp-component="block"]), .global-style-KFI9SgbZ0 [data-section-overlay] {
          background-color: rgba(16, 42, 67, 1);
      }
        }
        @media (min-width: 1200px) {
          
        .global-style-KFI9SgbZ0:not([data-gp-component="block"]), .global-style-KFI9SgbZ0 [data-section-overlay] {
          background-color: rgba(16, 42, 67, 1);
      }
        }
        @media (max-width: 639px) {
          
        .global-style-cnR8iBkoc {
          font-size: 16px !important;font-weight: 500 !important;color: rgb(47, 93, 126);font-family: Inter !important;border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;border-left-width: 3px;border-right-width: 3px;border-top-width: 3px;border-bottom-width: 3px;border-left-color: rgb(47, 93, 126);border-right-color: rgb(47, 93, 126);border-top-color: rgb(47, 93, 126);border-bottom-color: rgb(47, 93, 126);padding-left: 26px;padding-right: 26px;padding-top: 14px;padding-bottom: 14px;display: inline-flex;text-decoration-line: inherit;font-style: inherit !important;
      }
        .global-style-cnR8iBkoc:hover,.global-style-cnR8iBkoc.gp-hover {
          font-weight: 500;color: rgb(47, 93, 126);font-family: Inter;border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;padding-left: 26px;padding-right: 26px;padding-top: 14px;padding-bottom: 14px;text-decoration-line: underline;font-style: inherit;
      }
        }
        @media (max-width: 767px) and (min-width: 640px) {
          
        .global-style-cnR8iBkoc {
          font-size: 16px !important;font-weight: 500 !important;color: rgb(47, 93, 126);font-family: Inter !important;border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;border-left-width: 3px;border-right-width: 3px;border-top-width: 3px;border-bottom-width: 3px;border-left-color: rgb(47, 93, 126);border-right-color: rgb(47, 93, 126);border-top-color: rgb(47, 93, 126);border-bottom-color: rgb(47, 93, 126);padding-left: 26px;padding-right: 26px;padding-top: 14px;padding-bottom: 14px;display: inline-flex;text-decoration-line: inherit;font-style: inherit !important;
      }
        .global-style-cnR8iBkoc:hover,.global-style-cnR8iBkoc.gp-hover {
          font-weight: 500;color: rgb(47, 93, 126);font-family: Inter;border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;padding-left: 26px;padding-right: 26px;padding-top: 14px;padding-bottom: 14px;text-decoration-line: underline;font-style: inherit;
      }
        }
        @media (max-width: 991px) and (min-width: 768px) {
          
        .global-style-cnR8iBkoc {
          font-size: 16px !important;font-weight: 500 !important;color: rgb(47, 93, 126);font-family: Inter !important;border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;border-left-width: 3px;border-right-width: 3px;border-top-width: 3px;border-bottom-width: 3px;border-left-color: rgb(47, 93, 126);border-right-color: rgb(47, 93, 126);border-top-color: rgb(47, 93, 126);border-bottom-color: rgb(47, 93, 126);padding-left: 26px;padding-right: 26px;padding-top: 14px;padding-bottom: 14px;display: inline-flex;text-decoration-line: inherit;font-style: inherit !important;
      }
        .global-style-cnR8iBkoc:hover,.global-style-cnR8iBkoc.gp-hover {
          font-weight: 500;color: rgb(47, 93, 126);font-family: Inter;border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;padding-left: 26px;padding-right: 26px;padding-top: 14px;padding-bottom: 14px;text-decoration-line: underline;font-style: inherit;
      }
        }
        @media (max-width: 1199px) and (min-width: 992px) {
          
        .global-style-cnR8iBkoc {
          font-size: 16px !important;font-weight: 500 !important;color: rgb(47, 93, 126);font-family: Inter !important;border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;border-left-width: 3px;border-right-width: 3px;border-top-width: 3px;border-bottom-width: 3px;border-left-color: rgb(47, 93, 126);border-right-color: rgb(47, 93, 126);border-top-color: rgb(47, 93, 126);border-bottom-color: rgb(47, 93, 126);padding-left: 26px;padding-right: 26px;padding-top: 14px;padding-bottom: 14px;display: inline-flex;text-decoration-line: inherit;font-style: inherit !important;
      }
        .global-style-cnR8iBkoc:hover,.global-style-cnR8iBkoc.gp-hover {
          font-weight: 500;color: rgb(47, 93, 126);font-family: Inter;border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;padding-left: 26px;padding-right: 26px;padding-top: 14px;padding-bottom: 14px;text-decoration-line: underline;font-style: inherit;
      }
        }
        @media (min-width: 1200px) {
          
        .global-style-cnR8iBkoc {
          font-size: 16px !important;font-weight: 500 !important;color: rgb(47, 93, 126);font-family: Inter !important;border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;border-left-width: 3px;border-right-width: 3px;border-top-width: 3px;border-bottom-width: 3px;border-left-color: rgb(47, 93, 126);border-right-color: rgb(47, 93, 126);border-top-color: rgb(47, 93, 126);border-bottom-color: rgb(47, 93, 126);padding-left: 26px;padding-right: 26px;padding-top: 14px;padding-bottom: 14px;display: inline-flex;text-decoration-line: inherit;font-style: inherit !important;
      }
        .global-style-cnR8iBkoc:hover,.global-style-cnR8iBkoc.gp-hover {
          font-weight: 500;color: rgb(47, 93, 126);font-family: Inter;border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;padding-left: 26px;padding-right: 26px;padding-top: 14px;padding-bottom: 14px;text-decoration-line: underline;font-style: inherit;
      }
        }
        @media (max-width: 639px) {
          
        .global-style-cnR8iBkoc:not([data-gp-component="block"]), .global-style-cnR8iBkoc [data-section-overlay] {
          background-color: rgb(255, 255, 255);
      }
        .global-style-cnR8iBkoc:not([data-gp-component="block"]):hover,.global-style-cnR8iBkoc:not([data-gp-component="block"]).gp-hover, .global-style-cnR8iBkoc [data-section-overlay]:hover, .global-style-cnR8iBkoc [data-section-overlay].gp-hover {
          background-color: rgb(255, 255, 255);
      }
        }
        @media (max-width: 767px) and (min-width: 640px) {
          
        .global-style-cnR8iBkoc:not([data-gp-component="block"]), .global-style-cnR8iBkoc [data-section-overlay] {
          background-color: rgb(255, 255, 255);
      }
        .global-style-cnR8iBkoc:not([data-gp-component="block"]):hover,.global-style-cnR8iBkoc:not([data-gp-component="block"]).gp-hover, .global-style-cnR8iBkoc [data-section-overlay]:hover, .global-style-cnR8iBkoc [data-section-overlay].gp-hover {
          background-color: rgb(255, 255, 255);
      }
        }
        @media (max-width: 991px) and (min-width: 768px) {
          
        .global-style-cnR8iBkoc:not([data-gp-component="block"]), .global-style-cnR8iBkoc [data-section-overlay] {
          background-color: rgb(255, 255, 255);
      }
        .global-style-cnR8iBkoc:not([data-gp-component="block"]):hover,.global-style-cnR8iBkoc:not([data-gp-component="block"]).gp-hover, .global-style-cnR8iBkoc [data-section-overlay]:hover, .global-style-cnR8iBkoc [data-section-overlay].gp-hover {
          background-color: rgb(255, 255, 255);
      }
        }
        @media (max-width: 1199px) and (min-width: 992px) {
          
        .global-style-cnR8iBkoc:not([data-gp-component="block"]), .global-style-cnR8iBkoc [data-section-overlay] {
          background-color: rgb(255, 255, 255);
      }
        .global-style-cnR8iBkoc:not([data-gp-component="block"]):hover,.global-style-cnR8iBkoc:not([data-gp-component="block"]).gp-hover, .global-style-cnR8iBkoc [data-section-overlay]:hover, .global-style-cnR8iBkoc [data-section-overlay].gp-hover {
          background-color: rgb(255, 255, 255);
      }
        }
        @media (min-width: 1200px) {
          
        .global-style-cnR8iBkoc:not([data-gp-component="block"]), .global-style-cnR8iBkoc [data-section-overlay] {
          background-color: rgb(255, 255, 255);
      }
        .global-style-cnR8iBkoc:not([data-gp-component="block"]):hover,.global-style-cnR8iBkoc:not([data-gp-component="block"]).gp-hover, .global-style-cnR8iBkoc [data-section-overlay]:hover, .global-style-cnR8iBkoc [data-section-overlay].gp-hover {
          background-color: rgb(255, 255, 255);
      }
        }
        @media (max-width: 639px) {
          
        .global-style-Oj_4wn8Gx {
          font-size: 16px;font-weight: 500;color: rgba(47, 93, 126, 1);font-family: Inter;padding-left: 28px;padding-right: 28px;padding-top: 12px;padding-bottom: 12px;width: 100%;height: auto;display: inline-flex;text-decoration-color: initial;text-decoration-style: initial;text-decoration-line: inherit;cursor: pointer;font-style: inherit;
      }
        .global-style-Oj_4wn8Gx:hover,.global-style-Oj_4wn8Gx.gp-hover {
          font-size: 16px !important;font-weight: 500;color: rgba(47, 93, 126, 1);font-family: Inter;padding-left: 26px;padding-right: 26px;padding-top: 14px;padding-bottom: 14px;width: 100%;font-style: inherit;text-decoration-line: underline ;
      }
        }
        @media (max-width: 767px) and (min-width: 640px) {
          
        .global-style-Oj_4wn8Gx {
          font-size: 16px;font-weight: 500;color: rgba(47, 93, 126, 1);font-family: Inter;padding-left: 28px;padding-right: 28px;padding-top: 12px;padding-bottom: 12px;width: 100%;height: auto;display: inline-flex;text-decoration-color: initial;text-decoration-style: initial;text-decoration-line: inherit;cursor: pointer;font-style: inherit;
      }
        .global-style-Oj_4wn8Gx:hover,.global-style-Oj_4wn8Gx.gp-hover {
          font-size: 16px !important;font-weight: 500;color: rgba(47, 93, 126, 1);font-family: Inter;padding-left: 26px;padding-right: 26px;padding-top: 14px;padding-bottom: 14px;width: 100%;font-style: inherit;text-decoration-line: underline ;
      }
        }
        @media (max-width: 991px) and (min-width: 768px) {
          
        .global-style-Oj_4wn8Gx {
          font-size: 16px;font-weight: 500;color: rgba(47, 93, 126, 1);font-family: Inter;padding-left: 28px;padding-right: 28px;padding-top: 12px;padding-bottom: 12px;width: 100%;height: auto;display: inline-flex;text-decoration-color: initial;text-decoration-style: initial;text-decoration-line: inherit;cursor: pointer;font-style: inherit;
      }
        .global-style-Oj_4wn8Gx:hover,.global-style-Oj_4wn8Gx.gp-hover {
          font-size: 16px !important;font-weight: 500;color: rgba(47, 93, 126, 1);font-family: Inter;padding-left: 26px;padding-right: 26px;padding-top: 14px;padding-bottom: 14px;width: 100%;font-style: inherit;text-decoration-line: underline ;
      }
        }
        @media (max-width: 1199px) and (min-width: 992px) {
          
        .global-style-Oj_4wn8Gx {
          font-size: 16px;font-weight: 500;color: rgba(47, 93, 126, 1);font-family: Inter;padding-left: 28px;padding-right: 28px;padding-top: 12px;padding-bottom: 12px;width: 100%;height: auto;display: inline-flex;text-decoration-color: initial;text-decoration-style: initial;text-decoration-line: inherit;cursor: pointer;font-style: inherit;
      }
        .global-style-Oj_4wn8Gx:hover,.global-style-Oj_4wn8Gx.gp-hover {
          font-size: 16px !important;font-weight: 500;color: rgba(47, 93, 126, 1);font-family: Inter;padding-left: 26px;padding-right: 26px;padding-top: 14px;padding-bottom: 14px;width: 100%;font-style: inherit;text-decoration-line: underline ;
      }
        }
        @media (min-width: 1200px) {
          
        .global-style-Oj_4wn8Gx {
          font-size: 16px;font-weight: 500;color: rgba(47, 93, 126, 1);font-family: Inter;padding-left: 28px;padding-right: 28px;padding-top: 12px;padding-bottom: 12px;width: 100%;height: auto;display: inline-flex;text-decoration-color: initial;text-decoration-style: initial;text-decoration-line: inherit;cursor: pointer;font-style: inherit;
      }
        .global-style-Oj_4wn8Gx:hover,.global-style-Oj_4wn8Gx.gp-hover {
          font-size: 16px !important;font-weight: 500;color: rgba(47, 93, 126, 1);font-family: Inter;padding-left: 26px;padding-right: 26px;padding-top: 14px;padding-bottom: 14px;width: 100%;font-style: inherit;text-decoration-line: underline ;
      }
        }
        @media (max-width: 639px) {
          
        .global-style-Ms38McAbF {
          font-size: 18px !important;font-weight: 500 !important;color: rgb(47, 93, 126);text-align: right;font-family: Inter !important;padding-top: 8px;padding-bottom: 8px;width: 304px;height: 45px;display: block;-webkit-text-stroke-width: 0px !important;-webkit-text-stroke-color: rgb(255, 255, 255) !important;cursor: pointer;text-decoration-line: inherit;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;font-style: inherit;
      }
        .global-style-Ms38McAbF:hover,.global-style-Ms38McAbF.gp-hover {
          font-size: 18px !important;font-weight: 600;color: rgba(47, 93, 126, 1);text-align: right;font-family: Inter;padding-top: 8px;padding-bottom: 8px;font-style: inherit;text-decoration-line: underline ;
      }
        }
        @media (max-width: 767px) and (min-width: 640px) {
          
        .global-style-Ms38McAbF {
          font-size: 18px !important;font-weight: 500 !important;color: rgb(47, 93, 126);text-align: right;font-family: Inter !important;padding-top: 8px;padding-bottom: 8px;width: 304px;height: 45px;display: block;-webkit-text-stroke-width: 0px !important;-webkit-text-stroke-color: rgb(255, 255, 255) !important;cursor: pointer;text-decoration-line: inherit;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;font-style: inherit;
      }
        .global-style-Ms38McAbF:hover,.global-style-Ms38McAbF.gp-hover {
          font-size: 18px !important;font-weight: 600;color: rgba(47, 93, 126, 1);text-align: right;font-family: Inter;padding-top: 8px;padding-bottom: 8px;font-style: inherit;text-decoration-line: underline ;
      }
        }
        @media (max-width: 991px) and (min-width: 768px) {
          
        .global-style-Ms38McAbF {
          font-size: 18px !important;font-weight: 500 !important;color: rgb(47, 93, 126);text-align: right;font-family: Inter !important;padding-top: 8px;padding-bottom: 8px;width: 304px;height: 45px;display: block;-webkit-text-stroke-width: 0px !important;-webkit-text-stroke-color: rgb(255, 255, 255) !important;cursor: pointer;text-decoration-line: inherit;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;font-style: inherit;
      }
        .global-style-Ms38McAbF:hover,.global-style-Ms38McAbF.gp-hover {
          font-size: 18px !important;font-weight: 600;color: rgba(47, 93, 126, 1);text-align: right;font-family: Inter;padding-top: 8px;padding-bottom: 8px;font-style: inherit;text-decoration-line: underline ;
      }
        }
        @media (max-width: 1199px) and (min-width: 992px) {
          
        .global-style-Ms38McAbF {
          font-size: 18px !important;font-weight: 500 !important;color: rgb(47, 93, 126);text-align: right;font-family: Inter !important;padding-top: 8px;padding-bottom: 8px;width: 304px;height: 45px;display: block;-webkit-text-stroke-width: 0px !important;-webkit-text-stroke-color: rgb(255, 255, 255) !important;cursor: pointer;text-decoration-line: inherit;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;font-style: inherit;
      }
        .global-style-Ms38McAbF:hover,.global-style-Ms38McAbF.gp-hover {
          font-size: 18px !important;font-weight: 600;color: rgba(47, 93, 126, 1);text-align: right;font-family: Inter;padding-top: 8px;padding-bottom: 8px;font-style: inherit;text-decoration-line: underline ;
      }
        }
        @media (min-width: 1200px) {
          
        .global-style-Ms38McAbF {
          font-size: 18px !important;font-weight: 500 !important;color: rgb(47, 93, 126);text-align: right;font-family: Inter !important;padding-top: 8px;padding-bottom: 8px;width: 304px;height: 45px;display: block;-webkit-text-stroke-width: 0px !important;-webkit-text-stroke-color: rgb(255, 255, 255) !important;cursor: pointer;text-decoration-line: inherit;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;font-style: inherit;
      }
        .global-style-Ms38McAbF:hover,.global-style-Ms38McAbF.gp-hover {
          font-size: 18px !important;font-weight: 600;color: rgba(47, 93, 126, 1);text-align: right;font-family: Inter;padding-top: 8px;padding-bottom: 8px;font-style: inherit;text-decoration-line: underline ;
      }
        }
        @media (max-width: 639px) {
          
        .global-style-Ms38McAbF:not([data-gp-component="block"]), .global-style-Ms38McAbF [data-section-overlay] {
          background-color: transparent;
      }
        }
        @media (max-width: 767px) and (min-width: 640px) {
          
        .global-style-Ms38McAbF:not([data-gp-component="block"]), .global-style-Ms38McAbF [data-section-overlay] {
          background-color: transparent;
      }
        }
        @media (max-width: 991px) and (min-width: 768px) {
          
        .global-style-Ms38McAbF:not([data-gp-component="block"]), .global-style-Ms38McAbF [data-section-overlay] {
          background-color: transparent;
      }
        }
        @media (max-width: 1199px) and (min-width: 992px) {
          
        .global-style-Ms38McAbF:not([data-gp-component="block"]), .global-style-Ms38McAbF [data-section-overlay] {
          background-color: transparent;
      }
        }
        @media (min-width: 1200px) {
          
        .global-style-Ms38McAbF:not([data-gp-component="block"]), .global-style-Ms38McAbF [data-section-overlay] {
          background-color: transparent;
      }
        }
        @media (max-width: 639px) {
          
        .global-style-T9nRuaPT5 {
          font-size: 20px !important;letter-spacing: 0.05em;font-family: Inter !important;padding-bottom: 20px;
      }
        }
        @media (max-width: 767px) and (min-width: 640px) {
          
        .global-style-T9nRuaPT5 {
          font-size: 20px !important;letter-spacing: 0.05em;font-family: Inter !important;padding-bottom: 20px;
      }
        }
        @media (max-width: 991px) and (min-width: 768px) {
          
        .global-style-T9nRuaPT5 {
          font-size: 20px !important;letter-spacing: 0.05em;font-family: Inter !important;padding-bottom: 20px;
      }
        }
        @media (max-width: 1199px) and (min-width: 992px) {
          
        .global-style-T9nRuaPT5 {
          font-size: 20px !important;letter-spacing: 0.05em;font-family: Inter !important;padding-bottom: 20px;
      }
        }
        @media (min-width: 1200px) {
          
        .global-style-T9nRuaPT5 {
          font-size: 20px !important;letter-spacing: 0.05em;font-family: Inter !important;padding-bottom: 20px;
      }
        }
        @media (max-width: 639px) {
          
        .global-style-KQNO9hxK1 {
          font-size: 24px;font-weight: 700;color: rgb(32, 45, 60);font-family: Manrope;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 8px;
      }
        }
        @media (max-width: 767px) and (min-width: 640px) {
          
        .global-style-KQNO9hxK1 {
          font-size: 24px;font-weight: 700;color: rgb(32, 45, 60);font-family: Manrope;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 8px;
      }
        }
        @media (max-width: 991px) and (min-width: 768px) {
          
        .global-style-KQNO9hxK1 {
          font-size: 24px;font-weight: 700;color: rgb(32, 45, 60);font-family: Manrope;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 8px;
      }
        }
        @media (max-width: 1199px) and (min-width: 992px) {
          
        .global-style-KQNO9hxK1 {
          font-size: 24px;font-weight: 700;color: rgb(32, 45, 60);font-family: Manrope;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 8px;
      }
        }
        @media (min-width: 1200px) {
          
        .global-style-KQNO9hxK1 {
          font-size: 24px;font-weight: 700;color: rgb(32, 45, 60);font-family: Manrope;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 8px;
      }
        }

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

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

 @media (max-width: 639px) { .gp-component-id-88_InREAl[data-gp-component] { padding-left: 16px;padding-right: 16px;padding-top: 48px;padding-bottom: 20px;position: relative;z-index: 10; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-88_InREAl[data-gp-component] { padding-left: 20px;padding-right: 20px;padding-top: 64px;padding-bottom: 20px;position: relative;z-index: 10; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-88_InREAl[data-gp-component] { padding-left: 10px;padding-right: 10px;padding-top: 64px;padding-bottom: 20px;position: relative;z-index: 10; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-88_InREAl[data-gp-component] { padding-left: 64px;padding-right: 64px;padding-top: 64px;padding-bottom: 20px;position: relative;z-index: 10; } } @media (min-width: 1200px) { .gp-component-id-88_InREAl[data-gp-component] { padding-left: 64px;padding-right: 64px;padding-top: 64px;padding-bottom: 20px;position: relative;z-index: 10; } }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

 @media (max-width: 639px) { [data-gp-text] .gp-component-id-NQWD6O0XTAF { font-size: 42px !important;font-weight: 600;color: rgb(16, 42, 67);text-align: left;padding-left: 0px;padding-right: 0px; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-NQWD6O0XTAF { font-size: 42px !important;font-weight: 600;color: rgb(16, 42, 67);text-align: left;padding-left: 0px;padding-right: 0px; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-NQWD6O0XTAF { font-size: 42px !important;font-weight: 600;color: rgb(16, 42, 67);text-align: left;padding-left: 0px;padding-right: 0px; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-NQWD6O0XTAF { font-size: 42px !important;font-weight: 600;color: rgb(16, 42, 67);text-align: left;padding-left: 0px;padding-right: 0px; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-NQWD6O0XTAF { font-size: 42px !important;font-weight: 600;color: rgb(16, 42, 67);text-align: left;padding-left: 0px;padding-right: 0px; } }

 @media (max-width: 639px) { [data-gp-text] .gp-component-id-uI_d0za9rh { font-size: 42px !important;font-weight: 600;color: rgb(16, 42, 67);text-align: left;padding-left: 0px;padding-right: 0px; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-uI_d0za9rh { font-size: 42px !important;font-weight: 600;color: rgb(16, 42, 67);text-align: left;padding-left: 0px;padding-right: 0px; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-uI_d0za9rh { font-size: 42px !important;font-weight: 600;color: rgb(16, 42, 67);text-align: left;padding-left: 0px;padding-right: 0px; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-uI_d0za9rh { font-size: 42px !important;font-weight: 600;color: rgb(16, 42, 67);text-align: left;padding-left: 0px;padding-right: 0px; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-uI_d0za9rh { font-size: 42px !important;font-weight: 600;color: rgb(16, 42, 67);text-align: left;padding-left: 0px;padding-right: 0px; } }

 @media (max-width: 639px) { [data-gp-text] .gp-component-id-klQHnE4xvA { background-color: rgb(245, 247, 250);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 20px;padding-bottom: 8px;overflow-wrap: break-word; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-klQHnE4xvA { background-color: rgb(245, 247, 250);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 60px;padding-bottom: 8px;overflow-wrap: break-word; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-klQHnE4xvA { background-color: rgb(245, 247, 250);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 60px;padding-bottom: 8px;overflow-wrap: break-word; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-klQHnE4xvA { background-color: rgb(245, 247, 250);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 60px;padding-bottom: 8px;overflow-wrap: break-word; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-klQHnE4xvA { background-color: rgb(245, 247, 250);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 60px;padding-bottom: 8px;overflow-wrap: break-word; } }

 @media (max-width: 639px) { [data-gp-text] .gp-component-id-2IedWicg1I { margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 40px;overflow-wrap: break-word; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-2IedWicg1I { margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 40px;overflow-wrap: break-word; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-2IedWicg1I { margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 1px;padding-right: 1px;padding-top: 10px;padding-bottom: 40px;overflow-wrap: break-word; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-2IedWicg1I { margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 60px;padding-right: 150px;padding-top: 10px;padding-bottom: 40px;overflow-wrap: break-word; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-2IedWicg1I { margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 60px;padding-right: 150px;padding-top: 10px;padding-bottom: 40px;overflow-wrap: break-word; } }

 @media (max-width: 639px) { .gp-component-id-e8nMTgj40E { margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-bottom: 40px;overflow-wrap: break-word; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-e8nMTgj40E { margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-bottom: 40px;overflow-wrap: break-word; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-e8nMTgj40E { margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 1px;padding-right: 1px;padding-bottom: 40px;overflow-wrap: break-word; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-e8nMTgj40E { margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 60px;padding-right: 150px;padding-bottom: 40px;overflow-wrap: break-word; } } @media (min-width: 1200px) { .gp-component-id-e8nMTgj40E { margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 60px;padding-right: 150px;padding-bottom: 40px;overflow-wrap: break-word; } }

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

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

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

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

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

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

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

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

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

 @media (max-width: 639px) { [data-gp-text] .gp-component-id-WfMDLIgz0 { margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-bottom: 10px;overflow-wrap: break-word; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-WfMDLIgz0 { margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-bottom: 10px;overflow-wrap: break-word; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-WfMDLIgz0 { margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 1px;padding-right: 1px;padding-bottom: 10px;overflow-wrap: break-word; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-WfMDLIgz0 { margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 60px;padding-right: 150px;padding-bottom: 10px;overflow-wrap: break-word; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-WfMDLIgz0 { margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 60px;padding-right: 150px;padding-bottom: 10px;overflow-wrap: break-word; } }

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

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

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

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

 @media (max-width: 639px) { .gp-component-id-8em9WoZ7b[data-gp-component] { border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 100%;height: 100%;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-8em9WoZ7b[data-gp-component] { border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;padding-left: 45px;padding-right: 45px;width: 100%;height: 100%;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-8em9WoZ7b[data-gp-component] { border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 100%;height: 100%;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-8em9WoZ7b[data-gp-component] { border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 100%;height: 100%;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-8em9WoZ7b[data-gp-component] { border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 100%;height: 100%;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-gtw3W3QFwV[data-gp-component] { font-size: 18px !important;font-weight: 500 !important;color: rgb(255, 255, 255);font-family: Inter !important;border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;background-color: rgb(16, 42, 67);padding-left: 26px;padding-right: 26px;padding-top: 14px;padding-bottom: 14px;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: inherit;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;font-style: inherit !important; } .gp-component-id-gtw3W3QFwV[data-gp-component]:hover,.gp-component-id-gtw3W3QFwV[data-gp-component].gp-hover { font-size: 18px !important;background-color: rgb(16, 42, 67);font-style: inherit !important;text-decoration-line: underline; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-gtw3W3QFwV[data-gp-component] { font-size: 18px !important;font-weight: 500 !important;color: rgb(255, 255, 255);font-family: Inter !important;border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;background-color: rgb(16, 42, 67);padding-left: 26px;padding-right: 26px;padding-top: 14px;padding-bottom: 14px;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: inherit;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;font-style: inherit !important; } .gp-component-id-gtw3W3QFwV[data-gp-component]:hover,.gp-component-id-gtw3W3QFwV[data-gp-component].gp-hover { font-size: 18px !important;background-color: rgb(16, 42, 67);font-style: inherit !important;text-decoration-line: underline; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-gtw3W3QFwV[data-gp-component] { font-size: 18px !important;font-weight: 500 !important;color: rgb(255, 255, 255);font-family: Inter !important;border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;background-color: rgb(16, 42, 67);padding-left: 26px;padding-right: 26px;padding-top: 14px;padding-bottom: 14px;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: inherit;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;font-style: inherit !important; } .gp-component-id-gtw3W3QFwV[data-gp-component]:hover,.gp-component-id-gtw3W3QFwV[data-gp-component].gp-hover { font-size: 18px !important;background-color: rgb(16, 42, 67);font-style: inherit !important;text-decoration-line: underline; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-gtw3W3QFwV[data-gp-component] { font-size: 18px !important;font-weight: 500 !important;color: rgb(255, 255, 255);font-family: Inter !important;border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;background-color: rgb(16, 42, 67);padding-left: 26px;padding-right: 26px;padding-top: 14px;padding-bottom: 14px;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: inherit;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;font-style: inherit !important; } .gp-component-id-gtw3W3QFwV[data-gp-component]:hover,.gp-component-id-gtw3W3QFwV[data-gp-component].gp-hover { font-size: 18px !important;background-color: rgb(16, 42, 67);font-style: inherit !important;text-decoration-line: underline; } } @media (min-width: 1200px) { .gp-component-id-gtw3W3QFwV[data-gp-component] { font-size: 18px !important;font-weight: 500 !important;color: rgb(255, 255, 255);font-family: Inter !important;border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;background-color: rgb(16, 42, 67);padding-left: 26px;padding-right: 26px;padding-top: 14px;padding-bottom: 14px;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: inherit;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;font-style: inherit !important; } .gp-component-id-gtw3W3QFwV[data-gp-component]:hover,.gp-component-id-gtw3W3QFwV[data-gp-component].gp-hover { font-size: 18px !important;background-color: rgb(16, 42, 67);font-style: inherit !important;text-decoration-line: underline; } }

 .gp-component-id-vPtSCdb5sUq { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word; } @media (max-width: 639px) { .gp-component-id-vPtSCdb5sUq { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-size: 15px !important;color: rgb(91, 107, 122); } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-vPtSCdb5sUq { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-size: 15px !important;color: rgb(91, 107, 122); } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-vPtSCdb5sUq { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-size: 15px !important;color: rgb(91, 107, 122); } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-vPtSCdb5sUq { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-size: 15px !important;color: rgb(91, 107, 122); } } @media (min-width: 1200px) { .gp-component-id-vPtSCdb5sUq { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-size: 15px !important;color: rgb(91, 107, 122); } }

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

 .gp-component-id-Kh2hP0Yo1tf { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: inherit;display: block; } @media (max-width: 639px) { .gp-component-id-Kh2hP0Yo1tf { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: inherit;cursor: pointer;background-color: transparent;color: rgb(91, 107, 122);display: block;-webkit-text-stroke-color: rgb(255, 255, 255) !important;-webkit-text-stroke-width: 0px !important;font-style: inherit !important;font-family: Inter !important;font-weight: 500 !important;font-size: 16px !important;height: auto;width: 100%;padding-bottom: 8px;padding-top: 8px;text-align: left; } .gp-component-id-Kh2hP0Yo1tf:hover,.gp-component-id-Kh2hP0Yo1tf.gp-hover { font-style: inherit !important;font-family: Inter !important;font-weight: 600 !important;font-size: 16px !important;text-decoration-line: underline;height: auto;width: 100%;padding-bottom: 8px;padding-top: 8px;text-align: left;color: rgb(47, 93, 126); } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-Kh2hP0Yo1tf { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: inherit;cursor: pointer;background-color: transparent;color: rgb(91, 107, 122);display: block;-webkit-text-stroke-color: rgb(255, 255, 255) !important;-webkit-text-stroke-width: 0px !important;font-style: inherit !important;font-family: Inter !important;font-weight: 500 !important;font-size: 16px !important;height: auto;width: 100%;padding-bottom: 8px;padding-top: 8px;text-align: left; } .gp-component-id-Kh2hP0Yo1tf:hover,.gp-component-id-Kh2hP0Yo1tf.gp-hover { font-style: inherit !important;font-family: Inter !important;font-weight: 600 !important;font-size: 16px !important;text-decoration-line: underline;height: auto;width: 100%;padding-bottom: 8px;padding-top: 8px;text-align: left;color: rgb(47, 93, 126); } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-Kh2hP0Yo1tf { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: inherit;cursor: pointer;background-color: transparent;color: rgb(91, 107, 122);display: block;-webkit-text-stroke-color: rgb(255, 255, 255) !important;-webkit-text-stroke-width: 0px !important;font-style: inherit !important;font-family: Inter !important;font-weight: 500 !important;font-size: 16px !important;height: auto;width: 100%;padding-bottom: 8px;padding-top: 8px;text-align: left; } .gp-component-id-Kh2hP0Yo1tf:hover,.gp-component-id-Kh2hP0Yo1tf.gp-hover { font-style: inherit !important;font-family: Inter !important;font-weight: 600 !important;font-size: 16px !important;text-decoration-line: underline;height: auto;width: 100%;padding-bottom: 8px;padding-top: 8px;text-align: left;color: rgb(47, 93, 126); } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-Kh2hP0Yo1tf { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: inherit;cursor: pointer;background-color: transparent;color: rgb(91, 107, 122);display: block;-webkit-text-stroke-color: rgb(255, 255, 255) !important;-webkit-text-stroke-width: 0px !important;font-style: inherit !important;font-family: Inter !important;font-weight: 500 !important;font-size: 16px !important;height: auto;width: 100%;padding-bottom: 8px;padding-top: 8px;text-align: left; } .gp-component-id-Kh2hP0Yo1tf:hover,.gp-component-id-Kh2hP0Yo1tf.gp-hover { font-style: inherit !important;font-family: Inter !important;font-weight: 600 !important;font-size: 16px !important;text-decoration-line: underline;height: auto;width: 100%;padding-bottom: 8px;padding-top: 8px;text-align: left;color: rgb(47, 93, 126); } } @media (min-width: 1200px) { .gp-component-id-Kh2hP0Yo1tf { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: inherit;cursor: pointer;background-color: transparent;color: rgb(91, 107, 122);display: block;-webkit-text-stroke-color: rgb(255, 255, 255) !important;-webkit-text-stroke-width: 0px !important;font-style: inherit !important;font-family: Inter !important;font-weight: 500 !important;font-size: 16px !important;height: auto;width: 100%;padding-bottom: 8px;padding-top: 8px;text-align: left; } .gp-component-id-Kh2hP0Yo1tf:hover,.gp-component-id-Kh2hP0Yo1tf.gp-hover { font-style: inherit !important;font-family: Inter !important;font-weight: 600 !important;font-size: 16px !important;text-decoration-line: underline;height: auto;width: 100%;padding-bottom: 8px;padding-top: 8px;text-align: left;color: rgb(47, 93, 126); } }

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

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

 .gp-component-id-Kc6sk6h2amq { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: inherit;display: block; } @media (max-width: 639px) { .gp-component-id-Kc6sk6h2amq { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: inherit;cursor: pointer;background-color: transparent;color: rgb(91, 107, 122);display: block;-webkit-text-stroke-color: rgb(255, 255, 255) !important;-webkit-text-stroke-width: 0px !important;font-style: inherit !important;font-family: Inter !important;font-weight: 500 !important;font-size: 16px !important;height: auto;width: 100%;padding-bottom: 8px;padding-top: 8px;text-align: right; } .gp-component-id-Kc6sk6h2amq:hover,.gp-component-id-Kc6sk6h2amq.gp-hover { font-style: inherit !important;font-family: Inter !important;font-weight: 600 !important;font-size: 16px !important;text-decoration-line: underline;height: auto;width: 100%;padding-bottom: 8px;padding-top: 8px;text-align: right;color: rgb(47, 93, 126); } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-Kc6sk6h2amq { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: inherit;cursor: pointer;background-color: transparent;color: rgb(91, 107, 122);display: block;-webkit-text-stroke-color: rgb(255, 255, 255) !important;-webkit-text-stroke-width: 0px !important;font-style: inherit !important;font-family: Inter !important;font-weight: 500 !important;font-size: 16px !important;height: auto;width: 100%;padding-bottom: 8px;padding-top: 8px;text-align: right; } .gp-component-id-Kc6sk6h2amq:hover,.gp-component-id-Kc6sk6h2amq.gp-hover { font-style: inherit !important;font-family: Inter !important;font-weight: 600 !important;font-size: 16px !important;text-decoration-line: underline;height: auto;width: 100%;padding-bottom: 8px;padding-top: 8px;text-align: right;color: rgb(47, 93, 126); } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-Kc6sk6h2amq { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: inherit;cursor: pointer;background-color: transparent;color: rgb(91, 107, 122);display: block;-webkit-text-stroke-color: rgb(255, 255, 255) !important;-webkit-text-stroke-width: 0px !important;font-style: inherit !important;font-family: Inter !important;font-weight: 500 !important;font-size: 16px !important;height: auto;width: 100%;padding-bottom: 8px;padding-top: 8px;text-align: right; } .gp-component-id-Kc6sk6h2amq:hover,.gp-component-id-Kc6sk6h2amq.gp-hover { font-style: inherit !important;font-family: Inter !important;font-weight: 600 !important;font-size: 16px !important;text-decoration-line: underline;height: auto;width: 100%;padding-bottom: 8px;padding-top: 8px;text-align: right;color: rgb(47, 93, 126); } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-Kc6sk6h2amq { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: inherit;cursor: pointer;background-color: transparent;color: rgb(91, 107, 122);display: block;-webkit-text-stroke-color: rgb(255, 255, 255) !important;-webkit-text-stroke-width: 0px !important;font-style: inherit !important;font-family: Inter !important;font-weight: 500 !important;font-size: 16px !important;height: auto;width: 100%;padding-bottom: 8px;padding-top: 8px;text-align: right; } .gp-component-id-Kc6sk6h2amq:hover,.gp-component-id-Kc6sk6h2amq.gp-hover { font-style: inherit !important;font-family: Inter !important;font-weight: 600 !important;font-size: 16px !important;text-decoration-line: underline;height: auto;width: 100%;padding-bottom: 8px;padding-top: 8px;text-align: right;color: rgb(47, 93, 126); } } @media (min-width: 1200px) { .gp-component-id-Kc6sk6h2amq { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: inherit;cursor: pointer;background-color: transparent;color: rgb(91, 107, 122);display: block;-webkit-text-stroke-color: rgb(255, 255, 255) !important;-webkit-text-stroke-width: 0px !important;font-style: inherit !important;font-family: Inter !important;font-weight: 500 !important;font-size: 16px !important;height: auto;width: 100%;padding-bottom: 8px;padding-top: 8px;text-align: right; } .gp-component-id-Kc6sk6h2amq:hover,.gp-component-id-Kc6sk6h2amq.gp-hover { font-style: inherit !important;font-family: Inter !important;font-weight: 600 !important;font-size: 16px !important;text-decoration-line: underline;height: auto;width: 100%;padding-bottom: 8px;padding-top: 8px;text-align: right;color: rgb(47, 93, 126); } }

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

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

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

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

 @media (max-width: 639px) { .gp-component-id-KjWTlyOb0xA { text-align: center;color: rgb(255, 255, 255); } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-KjWTlyOb0xA { text-align: center;color: rgb(255, 255, 255); } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-KjWTlyOb0xA { text-align: center;color: rgb(255, 255, 255); } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-KjWTlyOb0xA { text-align: center;color: rgb(255, 255, 255); } } @media (min-width: 1200px) { .gp-component-id-KjWTlyOb0xA { text-align: center;color: rgb(255, 255, 255); } }

 .gp-component-id-LUMtLlXT6wu { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: inherit;display: block; } @media (max-width: 639px) { .gp-component-id-LUMtLlXT6wu { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: inherit;cursor: pointer;background-color: transparent;color: rgb(47, 93, 126);display: inline;-webkit-text-stroke-color: rgb(255, 255, 255) !important;-webkit-text-stroke-width: 0px !important;font-style: inherit !important;font-family: Inter !important;font-weight: 500 !important;font-size: 18px !important;height: 47px;width: 346px;padding-bottom: 8px;padding-top: 8px;text-align: right; } .gp-component-id-LUMtLlXT6wu:hover,.gp-component-id-LUMtLlXT6wu.gp-hover { font-style: inherit !important;font-family: Inter !important;font-weight: 600 !important;font-size: 18px !important;text-decoration-line: underline;padding-bottom: 8px;padding-top: 8px;text-align: right;color: rgb(47, 93, 126); } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-LUMtLlXT6wu { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: inherit;cursor: pointer;background-color: transparent;color: rgb(47, 93, 126);display: inline;-webkit-text-stroke-color: rgb(255, 255, 255) !important;-webkit-text-stroke-width: 0px !important;font-style: inherit !important;font-family: Inter !important;font-weight: 500 !important;font-size: 18px !important;height: 47px;width: 346px;padding-bottom: 8px;padding-top: 8px;text-align: right; } .gp-component-id-LUMtLlXT6wu:hover,.gp-component-id-LUMtLlXT6wu.gp-hover { font-style: inherit !important;font-family: Inter !important;font-weight: 600 !important;font-size: 18px !important;text-decoration-line: underline;padding-bottom: 8px;padding-top: 8px;text-align: right;color: rgb(47, 93, 126); } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-LUMtLlXT6wu { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: inherit;cursor: pointer;background-color: transparent;color: rgb(47, 93, 126);display: inline;-webkit-text-stroke-color: rgb(255, 255, 255) !important;-webkit-text-stroke-width: 0px !important;font-style: inherit !important;font-family: Inter !important;font-weight: 500 !important;font-size: 18px !important;height: 47px;width: 346px;padding-bottom: 8px;padding-top: 8px;text-align: right; } .gp-component-id-LUMtLlXT6wu:hover,.gp-component-id-LUMtLlXT6wu.gp-hover { font-style: inherit !important;font-family: Inter !important;font-weight: 600 !important;font-size: 18px !important;text-decoration-line: underline;padding-bottom: 8px;padding-top: 8px;text-align: right;color: rgb(47, 93, 126); } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-LUMtLlXT6wu { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: inherit;cursor: pointer;background-color: transparent;color: rgb(47, 93, 126);display: inline;-webkit-text-stroke-color: rgb(255, 255, 255) !important;-webkit-text-stroke-width: 0px !important;font-style: inherit !important;font-family: Inter !important;font-weight: 500 !important;font-size: 18px !important;height: 47px;width: 346px;padding-bottom: 8px;padding-top: 8px;text-align: right; } .gp-component-id-LUMtLlXT6wu:hover,.gp-component-id-LUMtLlXT6wu.gp-hover { font-style: inherit !important;font-family: Inter !important;font-weight: 600 !important;font-size: 18px !important;text-decoration-line: underline;padding-bottom: 8px;padding-top: 8px;text-align: right;color: rgb(47, 93, 126); } } @media (min-width: 1200px) { .gp-component-id-LUMtLlXT6wu { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: inherit;cursor: pointer;background-color: transparent;color: rgb(47, 93, 126);display: inline;-webkit-text-stroke-color: rgb(255, 255, 255) !important;-webkit-text-stroke-width: 0px !important;font-style: inherit !important;font-family: Inter !important;font-weight: 500 !important;font-size: 18px !important;height: 47px;width: 346px;padding-bottom: 8px;padding-top: 8px;text-align: right; } .gp-component-id-LUMtLlXT6wu:hover,.gp-component-id-LUMtLlXT6wu.gp-hover { font-style: inherit !important;font-family: Inter !important;font-weight: 600 !important;font-size: 18px !important;text-decoration-line: underline;padding-bottom: 8px;padding-top: 8px;text-align: right;color: rgb(47, 93, 126); } }

 .gp-component-id-3UOMXR2S5RV { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word; } @media (max-width: 639px) { .gp-component-id-3UOMXR2S5RV { margin-left: 45px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;height: auto;width: 100%;padding-top: 30px;line-height: 1.5;text-align: right;color: rgb(91, 107, 122); } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-3UOMXR2S5RV { margin-left: 45px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;height: auto;width: 100%;padding-top: 30px;line-height: 1.5;text-align: right;color: rgb(91, 107, 122); } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-3UOMXR2S5RV { margin-left: 45px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;height: auto;width: 100%;padding-top: 30px;line-height: 1.5;text-align: right;color: rgb(91, 107, 122); } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-3UOMXR2S5RV { margin-left: 45px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;height: auto;width: 100%;padding-top: 30px;line-height: 1.5;text-align: right;color: rgb(91, 107, 122); } } @media (min-width: 1200px) { .gp-component-id-3UOMXR2S5RV { margin-left: 45px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;height: auto;width: 100%;padding-top: 30px;line-height: 1.5;text-align: right;color: rgb(91, 107, 122); } }

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

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

 .gp-component-id-gKZBNTK9wGc { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;align-items: center;cursor: pointer;background-color: transparent;color: inherit; } @media (max-width: 639px) { .gp-component-id-gKZBNTK9wGc { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: initial;text-decoration-line: none;align-items: center;cursor: pointer;background-color: rgb(220, 24, 24);color: rgb(255, 255, 255);animation-duration: 1s;animation-fill-mode: both;display: flex;height: auto;width: 100%;padding-bottom: 14px;padding-top: 14px;padding-right: 26px;padding-left: 26px;margin-left: 40px;border-bottom-width: 0px;border-top-width: 0px;border-right-width: 0px;border-left-width: 0px;border-bottom-right-radius: 12px;border-bottom-left-radius: 12px;border-top-right-radius: 12px;border-top-left-radius: 12px;font-family: Inter;font-weight: 500;font-size: 18px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-gKZBNTK9wGc { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: initial;text-decoration-line: none;align-items: center;cursor: pointer;background-color: rgb(220, 24, 24);color: rgb(255, 255, 255);animation-duration: 1s;animation-fill-mode: both;display: flex;height: auto;width: 100%;padding-bottom: 14px;padding-top: 14px;padding-right: 26px;padding-left: 26px;margin-left: 40px;border-bottom-width: 0px;border-top-width: 0px;border-right-width: 0px;border-left-width: 0px;border-bottom-right-radius: 12px;border-bottom-left-radius: 12px;border-top-right-radius: 12px;border-top-left-radius: 12px;font-family: Inter;font-weight: 500;font-size: 18px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-gKZBNTK9wGc { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: initial;text-decoration-line: none;align-items: center;cursor: pointer;background-color: rgb(220, 24, 24);color: rgb(255, 255, 255);animation-duration: 1s;animation-fill-mode: both;display: flex;height: auto;width: 100%;padding-bottom: 14px;padding-top: 14px;padding-right: 26px;padding-left: 26px;margin-left: 40px;border-bottom-width: 0px;border-top-width: 0px;border-right-width: 0px;border-left-width: 0px;border-bottom-right-radius: 12px;border-bottom-left-radius: 12px;border-top-right-radius: 12px;border-top-left-radius: 12px;font-family: Inter;font-weight: 500;font-size: 18px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-gKZBNTK9wGc { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: initial;text-decoration-line: none;align-items: center;cursor: pointer;background-color: rgb(220, 24, 24);color: rgb(255, 255, 255);animation-duration: 1s;animation-fill-mode: both;display: flex;height: auto;width: 100%;padding-bottom: 14px;padding-top: 14px;padding-right: 26px;padding-left: 26px;margin-left: 40px;border-bottom-width: 0px;border-top-width: 0px;border-right-width: 0px;border-left-width: 0px;border-bottom-right-radius: 12px;border-bottom-left-radius: 12px;border-top-right-radius: 12px;border-top-left-radius: 12px;font-family: Inter;font-weight: 500;font-size: 18px; } } @media (min-width: 1200px) { .gp-component-id-gKZBNTK9wGc { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: initial;text-decoration-line: none;align-items: center;cursor: pointer;background-color: rgb(220, 24, 24);color: rgb(255, 255, 255);animation-duration: 1s;animation-fill-mode: both;display: flex;height: auto;width: 100%;padding-bottom: 14px;padding-top: 14px;padding-right: 26px;padding-left: 26px;margin-left: 40px;border-bottom-width: 0px;border-top-width: 0px;border-right-width: 0px;border-left-width: 0px;border-bottom-right-radius: 12px;border-bottom-left-radius: 12px;border-top-right-radius: 12px;border-top-left-radius: 12px;font-family: Inter;font-weight: 500;font-size: 18px; } }

 @media (max-width: 639px) { .gp-component-id-ZsBULswHw4A { display: flex;align-items: center;flex-direction: column;height: auto;width: 80%;margin-top: 12px;text-align: right; } .gp-component-id-ZsBULswHw4A:hover,.gp-component-id-ZsBULswHw4A.gp-hover { font-family: Inter;font-weight: 500; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-ZsBULswHw4A { display: flex;align-items: center;flex-direction: column;height: auto;width: 80%;margin-top: 12px;text-align: right; } .gp-component-id-ZsBULswHw4A:hover,.gp-component-id-ZsBULswHw4A.gp-hover { font-family: Inter;font-weight: 500; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-ZsBULswHw4A { display: flex;align-items: center;flex-direction: column;height: auto;width: 80%;margin-top: 12px;text-align: right; } .gp-component-id-ZsBULswHw4A:hover,.gp-component-id-ZsBULswHw4A.gp-hover { font-family: Inter;font-weight: 500; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-ZsBULswHw4A { display: flex;align-items: flex-start;flex-direction: column;height: auto;width: 80%;margin-top: 12px;text-align: right; } .gp-component-id-ZsBULswHw4A:hover,.gp-component-id-ZsBULswHw4A.gp-hover { font-family: Inter;font-weight: 500; } } @media (min-width: 1200px) { .gp-component-id-ZsBULswHw4A { display: flex;align-items: flex-start;flex-direction: column;height: auto;width: 80%;margin-top: 12px;text-align: right; } .gp-component-id-ZsBULswHw4A:hover,.gp-component-id-ZsBULswHw4A.gp-hover { font-family: Inter;font-weight: 500; } }

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

 .gp-component-id-evwEOtUNaVX { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: inherit;display: block; } @media (max-width: 639px) { .gp-component-id-evwEOtUNaVX { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: inherit;cursor: pointer;background-color: transparent;color: rgb(91, 107, 122);display: block;font-style: inherit !important;-webkit-text-stroke-width: 0px !important;-webkit-text-stroke-color: rgb(255, 255, 255) !important;font-family: Inter !important;font-weight: 500 !important;font-size: 16px !important;height: auto;width: 100%;padding-bottom: 8px;padding-top: 8px;text-align: left; } .gp-component-id-evwEOtUNaVX:hover,.gp-component-id-evwEOtUNaVX.gp-hover { font-style: inherit !important;font-family: Inter !important;font-weight: 600 !important;font-size: 16px !important;text-decoration-line: underline;height: auto;width: 100%;padding-bottom: 8px;padding-top: 8px;text-align: left;color: rgb(47, 93, 126); } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-evwEOtUNaVX { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: inherit;cursor: pointer;background-color: transparent;color: rgb(91, 107, 122);display: block;font-style: inherit !important;-webkit-text-stroke-width: 0px !important;-webkit-text-stroke-color: rgb(255, 255, 255) !important;font-family: Inter !important;font-weight: 500 !important;font-size: 16px !important;height: auto;width: 100%;padding-bottom: 8px;padding-top: 8px;text-align: left; } .gp-component-id-evwEOtUNaVX:hover,.gp-component-id-evwEOtUNaVX.gp-hover { font-style: inherit !important;font-family: Inter !important;font-weight: 600 !important;font-size: 16px !important;text-decoration-line: underline;height: auto;width: 100%;padding-bottom: 8px;padding-top: 8px;text-align: left;color: rgb(47, 93, 126); } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-evwEOtUNaVX { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: inherit;cursor: pointer;background-color: transparent;color: rgb(91, 107, 122);display: block;font-style: inherit !important;-webkit-text-stroke-width: 0px !important;-webkit-text-stroke-color: rgb(255, 255, 255) !important;font-family: Inter !important;font-weight: 500 !important;font-size: 16px !important;height: auto;width: 100%;padding-bottom: 8px;padding-top: 8px;text-align: left; } .gp-component-id-evwEOtUNaVX:hover,.gp-component-id-evwEOtUNaVX.gp-hover { font-style: inherit !important;font-family: Inter !important;font-weight: 600 !important;font-size: 16px !important;text-decoration-line: underline;height: auto;width: 100%;padding-bottom: 8px;padding-top: 8px;text-align: left;color: rgb(47, 93, 126); } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-evwEOtUNaVX { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: inherit;cursor: pointer;background-color: transparent;color: rgb(91, 107, 122);display: block;font-style: inherit !important;-webkit-text-stroke-width: 0px !important;-webkit-text-stroke-color: rgb(255, 255, 255) !important;font-family: Inter !important;font-weight: 500 !important;font-size: 16px !important;height: auto;width: 100%;padding-bottom: 8px;padding-top: 8px;text-align: left; } .gp-component-id-evwEOtUNaVX:hover,.gp-component-id-evwEOtUNaVX.gp-hover { font-style: inherit !important;font-family: Inter !important;font-weight: 600 !important;font-size: 16px !important;text-decoration-line: underline;height: auto;width: 100%;padding-bottom: 8px;padding-top: 8px;text-align: left;color: rgb(47, 93, 126); } } @media (min-width: 1200px) { .gp-component-id-evwEOtUNaVX { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: inherit;cursor: pointer;background-color: transparent;color: rgb(91, 107, 122);display: block;font-style: inherit !important;-webkit-text-stroke-width: 0px !important;-webkit-text-stroke-color: rgb(255, 255, 255) !important;font-family: Inter !important;font-weight: 500 !important;font-size: 16px !important;height: auto;width: 100%;padding-bottom: 8px;padding-top: 8px;text-align: left; } .gp-component-id-evwEOtUNaVX:hover,.gp-component-id-evwEOtUNaVX.gp-hover { font-style: inherit !important;font-family: Inter !important;font-weight: 600 !important;font-size: 16px !important;text-decoration-line: underline;height: auto;width: 100%;padding-bottom: 8px;padding-top: 8px;text-align: left;color: rgb(47, 93, 126); } }

 .gp-component-id-0PIwsQUrJwV { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: inherit;display: block; } @media (max-width: 639px) { .gp-component-id-0PIwsQUrJwV { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: inherit;cursor: pointer;background-color: transparent;color: rgb(91, 107, 122);display: block;font-style: inherit !important;-webkit-text-stroke-width: 0px !important;-webkit-text-stroke-color: rgb(255, 255, 255) !important;font-family: Inter !important;font-weight: 500 !important;font-size: 16px !important;height: auto;width: 100%;padding-bottom: 8px;padding-top: 8px;text-align: left; } .gp-component-id-0PIwsQUrJwV:hover,.gp-component-id-0PIwsQUrJwV.gp-hover { font-style: inherit !important;font-family: Inter !important;font-weight: 600 !important;font-size: 16px !important;text-decoration-line: underline;height: auto;width: 100%;padding-bottom: 8px;padding-top: 8px;text-align: left;color: rgb(47, 93, 126); } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-0PIwsQUrJwV { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: inherit;cursor: pointer;background-color: transparent;color: rgb(91, 107, 122);display: block;font-style: inherit !important;-webkit-text-stroke-width: 0px !important;-webkit-text-stroke-color: rgb(255, 255, 255) !important;font-family: Inter !important;font-weight: 500 !important;font-size: 16px !important;height: auto;width: 100%;padding-bottom: 8px;padding-top: 8px;text-align: left; } .gp-component-id-0PIwsQUrJwV:hover,.gp-component-id-0PIwsQUrJwV.gp-hover { font-style: inherit !important;font-family: Inter !important;font-weight: 600 !important;font-size: 16px !important;text-decoration-line: underline;height: auto;width: 100%;padding-bottom: 8px;padding-top: 8px;text-align: left;color: rgb(47, 93, 126); } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-0PIwsQUrJwV { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: inherit;cursor: pointer;background-color: transparent;color: rgb(91, 107, 122);display: block;font-style: inherit !important;-webkit-text-stroke-width: 0px !important;-webkit-text-stroke-color: rgb(255, 255, 255) !important;font-family: Inter !important;font-weight: 500 !important;font-size: 16px !important;height: auto;width: 100%;padding-bottom: 8px;padding-top: 8px;text-align: left; } .gp-component-id-0PIwsQUrJwV:hover,.gp-component-id-0PIwsQUrJwV.gp-hover { font-style: inherit !important;font-family: Inter !important;font-weight: 600 !important;font-size: 16px !important;text-decoration-line: underline;height: auto;width: 100%;padding-bottom: 8px;padding-top: 8px;text-align: left;color: rgb(47, 93, 126); } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-0PIwsQUrJwV { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: inherit;cursor: pointer;background-color: transparent;color: rgb(91, 107, 122);display: block;font-style: inherit !important;-webkit-text-stroke-width: 0px !important;-webkit-text-stroke-color: rgb(255, 255, 255) !important;font-family: Inter !important;font-weight: 500 !important;font-size: 16px !important;height: auto;width: 100%;padding-bottom: 8px;padding-top: 8px;text-align: left; } .gp-component-id-0PIwsQUrJwV:hover,.gp-component-id-0PIwsQUrJwV.gp-hover { font-style: inherit !important;font-family: Inter !important;font-weight: 600 !important;font-size: 16px !important;text-decoration-line: underline;height: auto;width: 100%;padding-bottom: 8px;padding-top: 8px;text-align: left;color: rgb(47, 93, 126); } } @media (min-width: 1200px) { .gp-component-id-0PIwsQUrJwV { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: inherit;cursor: pointer;background-color: transparent;color: rgb(91, 107, 122);display: block;font-style: inherit !important;-webkit-text-stroke-width: 0px !important;-webkit-text-stroke-color: rgb(255, 255, 255) !important;font-family: Inter !important;font-weight: 500 !important;font-size: 16px !important;height: auto;width: 100%;padding-bottom: 8px;padding-top: 8px;text-align: left; } .gp-component-id-0PIwsQUrJwV:hover,.gp-component-id-0PIwsQUrJwV.gp-hover { font-style: inherit !important;font-family: Inter !important;font-weight: 600 !important;font-size: 16px !important;text-decoration-line: underline;height: auto;width: 100%;padding-bottom: 8px;padding-top: 8px;text-align: left;color: rgb(47, 93, 126); } }

 .gp-component-id-ZXfbwNs1HgG { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: inherit;display: block; } @media (max-width: 639px) { .gp-component-id-ZXfbwNs1HgG { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: inherit;cursor: pointer;background-color: transparent;color: rgb(91, 107, 122);display: block;-webkit-text-stroke-color: rgb(255, 255, 255) !important;-webkit-text-stroke-width: 0px !important;font-style: inherit !important;font-family: Inter !important;font-weight: 500 !important;font-size: 16px !important;height: auto;width: 100%;padding-bottom: 8px;padding-top: 8px;text-align: left; } .gp-component-id-ZXfbwNs1HgG:hover,.gp-component-id-ZXfbwNs1HgG.gp-hover { font-style: inherit !important;font-family: Inter !important;font-weight: 600 !important;font-size: 16px !important;text-decoration-line: underline;height: auto;width: 100%;padding-bottom: 8px;padding-top: 8px;text-align: left;color: rgb(47, 93, 126); } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-ZXfbwNs1HgG { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: inherit;cursor: pointer;background-color: transparent;color: rgb(91, 107, 122);display: block;-webkit-text-stroke-color: rgb(255, 255, 255) !important;-webkit-text-stroke-width: 0px !important;font-style: inherit !important;font-family: Inter !important;font-weight: 500 !important;font-size: 16px !important;height: auto;width: 100%;padding-bottom: 8px;padding-top: 8px;text-align: left; } .gp-component-id-ZXfbwNs1HgG:hover,.gp-component-id-ZXfbwNs1HgG.gp-hover { font-style: inherit !important;font-family: Inter !important;font-weight: 600 !important;font-size: 16px !important;text-decoration-line: underline;height: auto;width: 100%;padding-bottom: 8px;padding-top: 8px;text-align: left;color: rgb(47, 93, 126); } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-ZXfbwNs1HgG { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: inherit;cursor: pointer;background-color: transparent;color: rgb(91, 107, 122);display: block;-webkit-text-stroke-color: rgb(255, 255, 255) !important;-webkit-text-stroke-width: 0px !important;font-style: inherit !important;font-family: Inter !important;font-weight: 500 !important;font-size: 16px !important;height: auto;width: 100%;padding-bottom: 8px;padding-top: 8px;text-align: left; } .gp-component-id-ZXfbwNs1HgG:hover,.gp-component-id-ZXfbwNs1HgG.gp-hover { font-style: inherit !important;font-family: Inter !important;font-weight: 600 !important;font-size: 16px !important;text-decoration-line: underline;height: auto;width: 100%;padding-bottom: 8px;padding-top: 8px;text-align: left;color: rgb(47, 93, 126); } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-ZXfbwNs1HgG { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: inherit;cursor: pointer;background-color: transparent;color: rgb(91, 107, 122);display: block;-webkit-text-stroke-color: rgb(255, 255, 255) !important;-webkit-text-stroke-width: 0px !important;font-style: inherit !important;font-family: Inter !important;font-weight: 500 !important;font-size: 16px !important;height: auto;width: 100%;padding-bottom: 8px;padding-top: 8px;text-align: left; } .gp-component-id-ZXfbwNs1HgG:hover,.gp-component-id-ZXfbwNs1HgG.gp-hover { font-style: inherit !important;font-family: Inter !important;font-weight: 600 !important;font-size: 16px !important;text-decoration-line: underline;height: auto;width: 100%;padding-bottom: 8px;padding-top: 8px;text-align: left;color: rgb(47, 93, 126); } } @media (min-width: 1200px) { .gp-component-id-ZXfbwNs1HgG { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: inherit;cursor: pointer;background-color: transparent;color: rgb(91, 107, 122);display: block;-webkit-text-stroke-color: rgb(255, 255, 255) !important;-webkit-text-stroke-width: 0px !important;font-style: inherit !important;font-family: Inter !important;font-weight: 500 !important;font-size: 16px !important;height: auto;width: 100%;padding-bottom: 8px;padding-top: 8px;text-align: left; } .gp-component-id-ZXfbwNs1HgG:hover,.gp-component-id-ZXfbwNs1HgG.gp-hover { font-style: inherit !important;font-family: Inter !important;font-weight: 600 !important;font-size: 16px !important;text-decoration-line: underline;height: auto;width: 100%;padding-bottom: 8px;padding-top: 8px;text-align: left;color: rgb(47, 93, 126); } }

 .gp-component-id-LBoWkR5TuWm { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: inherit;display: block; } @media (max-width: 639px) { .gp-component-id-LBoWkR5TuWm { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: inherit;cursor: pointer;background-color: transparent;color: rgb(91, 107, 122);display: block;font-style: inherit !important;-webkit-text-stroke-width: 0px !important;-webkit-text-stroke-color: rgb(255, 255, 255) !important;font-family: Inter !important;font-weight: 500 !important;font-size: 16px !important;height: auto;width: 100%;padding-bottom: 8px;padding-top: 8px;text-align: left; } .gp-component-id-LBoWkR5TuWm:hover,.gp-component-id-LBoWkR5TuWm.gp-hover { font-style: inherit !important;font-family: Inter !important;font-weight: 600 !important;font-size: 16px !important;text-decoration-line: underline;height: auto;width: 100%;padding-bottom: 8px;padding-top: 8px;text-align: left;color: rgb(47, 93, 126); } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-LBoWkR5TuWm { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: inherit;cursor: pointer;background-color: transparent;color: rgb(91, 107, 122);display: block;font-style: inherit !important;-webkit-text-stroke-width: 0px !important;-webkit-text-stroke-color: rgb(255, 255, 255) !important;font-family: Inter !important;font-weight: 500 !important;font-size: 16px !important;height: auto;width: 100%;padding-bottom: 8px;padding-top: 8px;text-align: left; } .gp-component-id-LBoWkR5TuWm:hover,.gp-component-id-LBoWkR5TuWm.gp-hover { font-style: inherit !important;font-family: Inter !important;font-weight: 600 !important;font-size: 16px !important;text-decoration-line: underline;height: auto;width: 100%;padding-bottom: 8px;padding-top: 8px;text-align: left;color: rgb(47, 93, 126); } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-LBoWkR5TuWm { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: inherit;cursor: pointer;background-color: transparent;color: rgb(91, 107, 122);display: block;font-style: inherit !important;-webkit-text-stroke-width: 0px !important;-webkit-text-stroke-color: rgb(255, 255, 255) !important;font-family: Inter !important;font-weight: 500 !important;font-size: 16px !important;height: auto;width: 100%;padding-bottom: 8px;padding-top: 8px;text-align: left; } .gp-component-id-LBoWkR5TuWm:hover,.gp-component-id-LBoWkR5TuWm.gp-hover { font-style: inherit !important;font-family: Inter !important;font-weight: 600 !important;font-size: 16px !important;text-decoration-line: underline;height: auto;width: 100%;padding-bottom: 8px;padding-top: 8px;text-align: left;color: rgb(47, 93, 126); } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-LBoWkR5TuWm { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: inherit;cursor: pointer;background-color: transparent;color: rgb(91, 107, 122);display: block;font-style: inherit !important;-webkit-text-stroke-width: 0px !important;-webkit-text-stroke-color: rgb(255, 255, 255) !important;font-family: Inter !important;font-weight: 500 !important;font-size: 16px !important;height: auto;width: 100%;padding-bottom: 8px;padding-top: 8px;text-align: left; } .gp-component-id-LBoWkR5TuWm:hover,.gp-component-id-LBoWkR5TuWm.gp-hover { font-style: inherit !important;font-family: Inter !important;font-weight: 600 !important;font-size: 16px !important;text-decoration-line: underline;height: auto;width: 100%;padding-bottom: 8px;padding-top: 8px;text-align: left;color: rgb(47, 93, 126); } } @media (min-width: 1200px) { .gp-component-id-LBoWkR5TuWm { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: inherit;cursor: pointer;background-color: transparent;color: rgb(91, 107, 122);display: block;font-style: inherit !important;-webkit-text-stroke-width: 0px !important;-webkit-text-stroke-color: rgb(255, 255, 255) !important;font-family: Inter !important;font-weight: 500 !important;font-size: 16px !important;height: auto;width: 100%;padding-bottom: 8px;padding-top: 8px;text-align: left; } .gp-component-id-LBoWkR5TuWm:hover,.gp-component-id-LBoWkR5TuWm.gp-hover { font-style: inherit !important;font-family: Inter !important;font-weight: 600 !important;font-size: 16px !important;text-decoration-line: underline;height: auto;width: 100%;padding-bottom: 8px;padding-top: 8px;text-align: left;color: rgb(47, 93, 126); } }

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

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

 .gp-component-id-xlOIqfG8fwU { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: inherit;display: block; } @media (max-width: 639px) { .gp-component-id-xlOIqfG8fwU { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: inherit;cursor: pointer;background-color: transparent;color: rgb(91, 107, 122);display: block;-webkit-text-stroke-color: rgb(255, 255, 255) !important;-webkit-text-stroke-width: 0px !important;font-style: inherit !important;font-family: Inter !important;font-weight: 500 !important;font-size: 16px !important;height: auto;width: 100%;padding-bottom: 8px;padding-top: 8px;text-align: left; } .gp-component-id-xlOIqfG8fwU:hover,.gp-component-id-xlOIqfG8fwU.gp-hover { font-style: inherit !important;font-family: Inter !important;font-weight: 600 !important;font-size: 16px !important;text-decoration-line: underline;height: auto;width: 100%;padding-bottom: 8px;padding-top: 8px;text-align: left;color: rgb(47, 93, 126); } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-xlOIqfG8fwU { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: inherit;cursor: pointer;background-color: transparent;color: rgb(91, 107, 122);display: block;-webkit-text-stroke-color: rgb(255, 255, 255) !important;-webkit-text-stroke-width: 0px !important;font-style: inherit !important;font-family: Inter !important;font-weight: 500 !important;font-size: 16px !important;height: auto;width: 100%;padding-bottom: 8px;padding-top: 8px;text-align: left; } .gp-component-id-xlOIqfG8fwU:hover,.gp-component-id-xlOIqfG8fwU.gp-hover { font-style: inherit !important;font-family: Inter !important;font-weight: 600 !important;font-size: 16px !important;text-decoration-line: underline;height: auto;width: 100%;padding-bottom: 8px;padding-top: 8px;text-align: left;color: rgb(47, 93, 126); } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-xlOIqfG8fwU { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: inherit;cursor: pointer;background-color: transparent;color: rgb(91, 107, 122);display: block;-webkit-text-stroke-color: rgb(255, 255, 255) !important;-webkit-text-stroke-width: 0px !important;font-style: inherit !important;font-family: Inter !important;font-weight: 500 !important;font-size: 16px !important;height: auto;width: 100%;padding-bottom: 8px;padding-top: 8px;text-align: left; } .gp-component-id-xlOIqfG8fwU:hover,.gp-component-id-xlOIqfG8fwU.gp-hover { font-style: inherit !important;font-family: Inter !important;font-weight: 600 !important;font-size: 16px !important;text-decoration-line: underline;height: auto;width: 100%;padding-bottom: 8px;padding-top: 8px;text-align: left;color: rgb(47, 93, 126); } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-xlOIqfG8fwU { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: inherit;cursor: pointer;background-color: transparent;color: rgb(91, 107, 122);display: block;-webkit-text-stroke-color: rgb(255, 255, 255) !important;-webkit-text-stroke-width: 0px !important;font-style: inherit !important;font-family: Inter !important;font-weight: 500 !important;font-size: 16px !important;height: auto;width: 100%;padding-bottom: 8px;padding-top: 8px;text-align: left; } .gp-component-id-xlOIqfG8fwU:hover,.gp-component-id-xlOIqfG8fwU.gp-hover { font-style: inherit !important;font-family: Inter !important;font-weight: 600 !important;font-size: 16px !important;text-decoration-line: underline;height: auto;width: 100%;padding-bottom: 8px;padding-top: 8px;text-align: left;color: rgb(47, 93, 126); } } @media (min-width: 1200px) { .gp-component-id-xlOIqfG8fwU { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: inherit;cursor: pointer;background-color: transparent;color: rgb(91, 107, 122);display: block;-webkit-text-stroke-color: rgb(255, 255, 255) !important;-webkit-text-stroke-width: 0px !important;font-style: inherit !important;font-family: Inter !important;font-weight: 500 !important;font-size: 16px !important;height: auto;width: 100%;padding-bottom: 8px;padding-top: 8px;text-align: left; } .gp-component-id-xlOIqfG8fwU:hover,.gp-component-id-xlOIqfG8fwU.gp-hover { font-style: inherit !important;font-family: Inter !important;font-weight: 600 !important;font-size: 16px !important;text-decoration-line: underline;height: auto;width: 100%;padding-bottom: 8px;padding-top: 8px;text-align: left;color: rgb(47, 93, 126); } }

 .gp-component-id-nYT04grunD0 { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: inherit;display: block; } @media (max-width: 639px) { .gp-component-id-nYT04grunD0 { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: inherit;cursor: pointer;background-color: transparent;color: rgb(91, 107, 122);display: block;-webkit-text-stroke-color: rgb(255, 255, 255) !important;-webkit-text-stroke-width: 0px !important;font-style: inherit !important;font-family: Inter !important;font-weight: 500 !important;font-size: 16px !important;height: auto;width: 100%;padding-bottom: 8px;padding-top: 8px;text-align: left; } .gp-component-id-nYT04grunD0:hover,.gp-component-id-nYT04grunD0.gp-hover { font-style: inherit !important;font-family: Inter !important;font-weight: 600 !important;font-size: 16px !important;text-decoration-line: underline;height: auto;width: 100%;padding-bottom: 8px;padding-top: 8px;text-align: left;color: rgb(47, 93, 126); } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-nYT04grunD0 { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: inherit;cursor: pointer;background-color: transparent;color: rgb(91, 107, 122);display: block;-webkit-text-stroke-color: rgb(255, 255, 255) !important;-webkit-text-stroke-width: 0px !important;font-style: inherit !important;font-family: Inter !important;font-weight: 500 !important;font-size: 16px !important;height: auto;width: 100%;padding-bottom: 8px;padding-top: 8px;text-align: left; } .gp-component-id-nYT04grunD0:hover,.gp-component-id-nYT04grunD0.gp-hover { font-style: inherit !important;font-family: Inter !important;font-weight: 600 !important;font-size: 16px !important;text-decoration-line: underline;height: auto;width: 100%;padding-bottom: 8px;padding-top: 8px;text-align: left;color: rgb(47, 93, 126); } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-nYT04grunD0 { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: inherit;cursor: pointer;background-color: transparent;color: rgb(91, 107, 122);display: block;-webkit-text-stroke-color: rgb(255, 255, 255) !important;-webkit-text-stroke-width: 0px !important;font-style: inherit !important;font-family: Inter !important;font-weight: 500 !important;font-size: 16px !important;height: auto;width: 100%;padding-bottom: 8px;padding-top: 8px;text-align: left; } .gp-component-id-nYT04grunD0:hover,.gp-component-id-nYT04grunD0.gp-hover { font-style: inherit !important;font-family: Inter !important;font-weight: 600 !important;font-size: 16px !important;text-decoration-line: underline;height: auto;width: 100%;padding-bottom: 8px;padding-top: 8px;text-align: left;color: rgb(47, 93, 126); } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-nYT04grunD0 { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: inherit;cursor: pointer;background-color: transparent;color: rgb(91, 107, 122);display: block;-webkit-text-stroke-color: rgb(255, 255, 255) !important;-webkit-text-stroke-width: 0px !important;font-style: inherit !important;font-family: Inter !important;font-weight: 500 !important;font-size: 16px !important;height: auto;width: 100%;padding-bottom: 8px;padding-top: 8px;text-align: left; } .gp-component-id-nYT04grunD0:hover,.gp-component-id-nYT04grunD0.gp-hover { font-style: inherit !important;font-family: Inter !important;font-weight: 600 !important;font-size: 16px !important;text-decoration-line: underline;height: auto;width: 100%;padding-bottom: 8px;padding-top: 8px;text-align: left;color: rgb(47, 93, 126); } } @media (min-width: 1200px) { .gp-component-id-nYT04grunD0 { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: inherit;cursor: pointer;background-color: transparent;color: rgb(91, 107, 122);display: block;-webkit-text-stroke-color: rgb(255, 255, 255) !important;-webkit-text-stroke-width: 0px !important;font-style: inherit !important;font-family: Inter !important;font-weight: 500 !important;font-size: 16px !important;height: auto;width: 100%;padding-bottom: 8px;padding-top: 8px;text-align: left; } .gp-component-id-nYT04grunD0:hover,.gp-component-id-nYT04grunD0.gp-hover { font-style: inherit !important;font-family: Inter !important;font-weight: 600 !important;font-size: 16px !important;text-decoration-line: underline;height: auto;width: 100%;padding-bottom: 8px;padding-top: 8px;text-align: left;color: rgb(47, 93, 126); } }

 .gp-component-id-eOiUl9zRsD_ { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: inherit;display: block; } @media (max-width: 639px) { .gp-component-id-eOiUl9zRsD_ { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: inherit;cursor: pointer;background-color: transparent;color: rgb(91, 107, 122);display: block;font-style: inherit !important;-webkit-text-stroke-width: 0px !important;-webkit-text-stroke-color: rgb(255, 255, 255) !important;font-family: Inter !important;font-weight: 500 !important;font-size: 16px !important;height: auto;width: 100%;padding-bottom: 8px;padding-top: 8px;text-align: left; } .gp-component-id-eOiUl9zRsD_:hover,.gp-component-id-eOiUl9zRsD_.gp-hover { font-style: inherit !important;font-family: Inter !important;font-weight: 600 !important;font-size: 16px !important;text-decoration-line: underline;height: auto;width: 100%;padding-bottom: 8px;padding-top: 8px;text-align: left;color: rgb(47, 93, 126); } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-eOiUl9zRsD_ { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: inherit;cursor: pointer;background-color: transparent;color: rgb(91, 107, 122);display: block;font-style: inherit !important;-webkit-text-stroke-width: 0px !important;-webkit-text-stroke-color: rgb(255, 255, 255) !important;font-family: Inter !important;font-weight: 500 !important;font-size: 16px !important;height: auto;width: 100%;padding-bottom: 8px;padding-top: 8px;text-align: left; } .gp-component-id-eOiUl9zRsD_:hover,.gp-component-id-eOiUl9zRsD_.gp-hover { font-style: inherit !important;font-family: Inter !important;font-weight: 600 !important;font-size: 16px !important;text-decoration-line: underline;height: auto;width: 100%;padding-bottom: 8px;padding-top: 8px;text-align: left;color: rgb(47, 93, 126); } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-eOiUl9zRsD_ { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: inherit;cursor: pointer;background-color: transparent;color: rgb(91, 107, 122);display: block;font-style: inherit !important;-webkit-text-stroke-width: 0px !important;-webkit-text-stroke-color: rgb(255, 255, 255) !important;font-family: Inter !important;font-weight: 500 !important;font-size: 16px !important;height: auto;width: 100%;padding-bottom: 8px;padding-top: 8px;text-align: left; } .gp-component-id-eOiUl9zRsD_:hover,.gp-component-id-eOiUl9zRsD_.gp-hover { font-style: inherit !important;font-family: Inter !important;font-weight: 600 !important;font-size: 16px !important;text-decoration-line: underline;height: auto;width: 100%;padding-bottom: 8px;padding-top: 8px;text-align: left;color: rgb(47, 93, 126); } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-eOiUl9zRsD_ { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: inherit;cursor: pointer;background-color: transparent;color: rgb(91, 107, 122);display: block;font-style: inherit !important;-webkit-text-stroke-width: 0px !important;-webkit-text-stroke-color: rgb(255, 255, 255) !important;font-family: Inter !important;font-weight: 500 !important;font-size: 16px !important;height: auto;width: 100%;padding-bottom: 8px;padding-top: 8px;text-align: left; } .gp-component-id-eOiUl9zRsD_:hover,.gp-component-id-eOiUl9zRsD_.gp-hover { font-style: inherit !important;font-family: Inter !important;font-weight: 600 !important;font-size: 16px !important;text-decoration-line: underline;height: auto;width: 100%;padding-bottom: 8px;padding-top: 8px;text-align: left;color: rgb(47, 93, 126); } } @media (min-width: 1200px) { .gp-component-id-eOiUl9zRsD_ { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: inherit;cursor: pointer;background-color: transparent;color: rgb(91, 107, 122);display: block;font-style: inherit !important;-webkit-text-stroke-width: 0px !important;-webkit-text-stroke-color: rgb(255, 255, 255) !important;font-family: Inter !important;font-weight: 500 !important;font-size: 16px !important;height: auto;width: 100%;padding-bottom: 8px;padding-top: 8px;text-align: left; } .gp-component-id-eOiUl9zRsD_:hover,.gp-component-id-eOiUl9zRsD_.gp-hover { font-style: inherit !important;font-family: Inter !important;font-weight: 600 !important;font-size: 16px !important;text-decoration-line: underline;height: auto;width: 100%;padding-bottom: 8px;padding-top: 8px;text-align: left;color: rgb(47, 93, 126); } }

 .gp-component-id-SDGmImfzBhs { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: inherit;display: block; } @media (max-width: 639px) { .gp-component-id-SDGmImfzBhs { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: inherit;cursor: pointer;background-color: transparent;color: rgb(91, 107, 122);display: block;-webkit-text-stroke-color: rgb(255, 255, 255) !important;-webkit-text-stroke-width: 0px !important;font-style: inherit !important;font-family: Inter !important;font-weight: 500 !important;font-size: 16px !important;height: auto;width: 100%;padding-bottom: 8px;padding-top: 8px;text-align: left; } .gp-component-id-SDGmImfzBhs:hover,.gp-component-id-SDGmImfzBhs.gp-hover { font-style: inherit !important;font-family: Inter !important;font-weight: 600 !important;font-size: 16px !important;text-decoration-line: underline;height: auto;width: 100%;padding-bottom: 8px;padding-top: 8px;text-align: left;color: rgb(47, 93, 126); } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-SDGmImfzBhs { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: inherit;cursor: pointer;background-color: transparent;color: rgb(91, 107, 122);display: block;-webkit-text-stroke-color: rgb(255, 255, 255) !important;-webkit-text-stroke-width: 0px !important;font-style: inherit !important;font-family: Inter !important;font-weight: 500 !important;font-size: 16px !important;height: auto;width: 100%;padding-bottom: 8px;padding-top: 8px;text-align: left; } .gp-component-id-SDGmImfzBhs:hover,.gp-component-id-SDGmImfzBhs.gp-hover { font-style: inherit !important;font-family: Inter !important;font-weight: 600 !important;font-size: 16px !important;text-decoration-line: underline;height: auto;width: 100%;padding-bottom: 8px;padding-top: 8px;text-align: left;color: rgb(47, 93, 126); } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-SDGmImfzBhs { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: inherit;cursor: pointer;background-color: transparent;color: rgb(91, 107, 122);display: block;-webkit-text-stroke-color: rgb(255, 255, 255) !important;-webkit-text-stroke-width: 0px !important;font-style: inherit !important;font-family: Inter !important;font-weight: 500 !important;font-size: 16px !important;height: auto;width: 100%;padding-bottom: 8px;padding-top: 8px;text-align: left; } .gp-component-id-SDGmImfzBhs:hover,.gp-component-id-SDGmImfzBhs.gp-hover { font-style: inherit !important;font-family: Inter !important;font-weight: 600 !important;font-size: 16px !important;text-decoration-line: underline;height: auto;width: 100%;padding-bottom: 8px;padding-top: 8px;text-align: left;color: rgb(47, 93, 126); } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-SDGmImfzBhs { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: inherit;cursor: pointer;background-color: transparent;color: rgb(91, 107, 122);display: block;-webkit-text-stroke-color: rgb(255, 255, 255) !important;-webkit-text-stroke-width: 0px !important;font-style: inherit !important;font-family: Inter !important;font-weight: 500 !important;font-size: 16px !important;height: auto;width: 100%;padding-bottom: 8px;padding-top: 8px;text-align: left; } .gp-component-id-SDGmImfzBhs:hover,.gp-component-id-SDGmImfzBhs.gp-hover { font-style: inherit !important;font-family: Inter !important;font-weight: 600 !important;font-size: 16px !important;text-decoration-line: underline;height: auto;width: 100%;padding-bottom: 8px;padding-top: 8px;text-align: left;color: rgb(47, 93, 126); } } @media (min-width: 1200px) { .gp-component-id-SDGmImfzBhs { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: inherit;cursor: pointer;background-color: transparent;color: rgb(91, 107, 122);display: block;-webkit-text-stroke-color: rgb(255, 255, 255) !important;-webkit-text-stroke-width: 0px !important;font-style: inherit !important;font-family: Inter !important;font-weight: 500 !important;font-size: 16px !important;height: auto;width: 100%;padding-bottom: 8px;padding-top: 8px;text-align: left; } .gp-component-id-SDGmImfzBhs:hover,.gp-component-id-SDGmImfzBhs.gp-hover { font-style: inherit !important;font-family: Inter !important;font-weight: 600 !important;font-size: 16px !important;text-decoration-line: underline;height: auto;width: 100%;padding-bottom: 8px;padding-top: 8px;text-align: left;color: rgb(47, 93, 126); } }

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

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

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

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

 .gp-component-id-c2WjLXk0TV { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word; } @media (max-width: 639px) { .gp-component-id-c2WjLXk0TV { margin-left: 0px;margin-bottom: 12px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-size: 17px !important;box-sizing: border-box;cursor: text;color: rgb(173, 183, 194);font-weight: 600 !important; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-c2WjLXk0TV { margin-left: 0px;margin-bottom: 12px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-size: 17px !important;box-sizing: border-box;cursor: text;color: rgb(173, 183, 194);font-weight: 600 !important; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-c2WjLXk0TV { margin-left: 0px;margin-bottom: 12px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-size: 17px !important;box-sizing: border-box;cursor: text;color: rgb(173, 183, 194);font-weight: 600 !important; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-c2WjLXk0TV { margin-left: 0px;margin-bottom: 12px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-size: 17px !important;box-sizing: border-box;cursor: text;color: rgb(173, 183, 194);font-weight: 600 !important; } } @media (min-width: 1200px) { .gp-component-id-c2WjLXk0TV { margin-left: 0px;margin-bottom: 12px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-size: 17px !important;box-sizing: border-box;cursor: text;color: rgb(173, 183, 194);font-weight: 600 !important; } }

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

 @media (max-width: 639px) { .gp-component-id-0EfL9nSuPD { display: flex;align-items: center;flex-direction: column;height: 240px;width: 412px;margin-bottom: 28px;margin-top: 12px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-0EfL9nSuPD { display: flex;align-items: center;flex-direction: column;height: 240px;width: 412px;margin-bottom: 28px;margin-top: 12px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-0EfL9nSuPD { display: flex;align-items: center;flex-direction: column;height: 240px;width: 412px;margin-bottom: 28px;margin-top: 12px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-0EfL9nSuPD { display: flex;align-items: flex-start;flex-direction: column;height: 240px;width: 412px;margin-bottom: 0px;margin-top: 12px; } } @media (min-width: 1200px) { .gp-component-id-0EfL9nSuPD { display: flex;align-items: flex-start;flex-direction: column;height: 240px;width: 412px;margin-bottom: 0px;margin-top: 12px; } }

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

 .gp-component-id-mOOEYBFPOY { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;line-height: 1;font-size: 48px;cursor: pointer;background-color: transparent;color: inherit;display: inline-block; } @media (max-width: 639px) { .gp-component-id-mOOEYBFPOY { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;line-height: 1;font-size: 30px !important;cursor: pointer;background-color: rgb(16, 42, 67);color: rgb(91, 107, 122);display: inline-block;padding-right: 12px;padding-left: 12px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-mOOEYBFPOY { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;line-height: 1;font-size: 30px !important;cursor: pointer;background-color: rgb(16, 42, 67);color: rgb(91, 107, 122);display: inline-block;padding-right: 12px;padding-left: 12px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-mOOEYBFPOY { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;line-height: 1;font-size: 30px !important;cursor: pointer;background-color: rgb(16, 42, 67);color: rgb(91, 107, 122);display: inline-block;padding-right: 12px;padding-left: 12px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-mOOEYBFPOY { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;line-height: 1;font-size: 30px !important;cursor: pointer;background-color: rgb(16, 42, 67);color: rgb(91, 107, 122);display: inline-block;padding-right: 12px;padding-left: 12px; } } @media (min-width: 1200px) { .gp-component-id-mOOEYBFPOY { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;line-height: 1;font-size: 30px !important;cursor: pointer;background-color: rgb(16, 42, 67);color: rgb(91, 107, 122);display: inline-block;padding-right: 12px;padding-left: 12px; } }

 .gp-component-id-vISRp2WCVn { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;line-height: 1;font-size: 48px;cursor: pointer;background-color: transparent;color: inherit;display: inline-block; } @media (max-width: 639px) { .gp-component-id-vISRp2WCVn { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;line-height: 1;font-size: 30px !important;cursor: pointer;background-color: rgb(16, 42, 67);color: rgb(91, 107, 122);display: inline-block; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-vISRp2WCVn { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;line-height: 1;font-size: 30px !important;cursor: pointer;background-color: rgb(16, 42, 67);color: rgb(91, 107, 122);display: inline-block; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-vISRp2WCVn { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;line-height: 1;font-size: 30px !important;cursor: pointer;background-color: rgb(16, 42, 67);color: rgb(91, 107, 122);display: inline-block; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-vISRp2WCVn { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;line-height: 1;font-size: 30px !important;cursor: pointer;background-color: rgb(16, 42, 67);color: rgb(91, 107, 122);display: inline-block; } } @media (min-width: 1200px) { .gp-component-id-vISRp2WCVn { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;line-height: 1;font-size: 30px !important;cursor: pointer;background-color: rgb(16, 42, 67);color: rgb(91, 107, 122);display: inline-block; } }

 .gp-component-id-gkmwG6Rerm { width: 100%;flex-direction: row;justify-content: center;align-items: center;display: flex; } @media (max-width: 639px) { .gp-component-id-gkmwG6Rerm { width: 100%;flex-direction: row;justify-content: center;align-items: center;display: flex; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-gkmwG6Rerm { width: 100%;flex-direction: row;justify-content: center;align-items: center;display: flex; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-gkmwG6Rerm { width: 100%;flex-direction: row;justify-content: center;align-items: center;display: flex; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-gkmwG6Rerm { width: 100%;flex-direction: row;justify-content: flex-start;align-items: center;display: flex; } } @media (min-width: 1200px) { .gp-component-id-gkmwG6Rerm { width: 100%;flex-direction: row;justify-content: flex-start;align-items: center;display: flex; } }

 .gp-component-id-eDMdC7fmRS { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word; } @media (max-width: 639px) { .gp-component-id-eDMdC7fmRS { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;padding-bottom: 8px;color: rgb(91, 107, 122);font-size: 20px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-eDMdC7fmRS { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;padding-bottom: 8px;color: rgb(91, 107, 122);font-size: 20px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-eDMdC7fmRS { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;padding-bottom: 8px;color: rgb(91, 107, 122);font-size: 20px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-eDMdC7fmRS { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;padding-bottom: 8px;color: rgb(91, 107, 122);font-size: 20px; } } @media (min-width: 1200px) { .gp-component-id-eDMdC7fmRS { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;padding-bottom: 8px;color: rgb(91, 107, 122);font-size: 20px; } }

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

 .gp-component-id-b6sg87eM76 { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word; } @media (max-width: 639px) { .gp-component-id-b6sg87eM76 { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-family: Inter !important;font-size: 18px !important;padding-bottom: 20px;color: rgb(91, 107, 122); } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-b6sg87eM76 { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-family: Inter !important;font-size: 18px !important;padding-bottom: 20px;color: rgb(91, 107, 122); } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-b6sg87eM76 { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-family: Inter !important;font-size: 18px !important;padding-bottom: 20px;color: rgb(91, 107, 122); } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-b6sg87eM76 { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-family: Inter !important;font-size: 18px !important;padding-bottom: 20px;color: rgb(91, 107, 122); } } @media (min-width: 1200px) { .gp-component-id-b6sg87eM76 { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-family: Inter !important;font-size: 18px !important;padding-bottom: 20px;color: rgb(91, 107, 122); } }

 .gp-component-id-Bc0Pje4iUg { flex-direction: column;display: flex;animation-fill-mode: both;animation-duration: 1s; } @media (max-width: 639px) { .gp-component-id-Bc0Pje4iUg { flex-direction: column;display: flex;animation-fill-mode: both;animation-duration: 1s; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-Bc0Pje4iUg { flex-direction: column;display: flex;animation-fill-mode: both;animation-duration: 1s; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-Bc0Pje4iUg { flex-direction: column;display: flex;animation-fill-mode: both;animation-duration: 1s; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-Bc0Pje4iUg { flex-direction: column;display: flex;animation-fill-mode: both;animation-duration: 1s; } } @media (min-width: 1200px) { .gp-component-id-Bc0Pje4iUg { flex-direction: column;display: flex;animation-fill-mode: both;animation-duration: 1s; } }

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

 .gp-component-id-lkNS8cestn { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word; } @media (max-width: 639px) { .gp-component-id-lkNS8cestn { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-family: Inter !important;font-size: 20px !important;padding-bottom: 8px;color: rgb(173, 183, 194); } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-lkNS8cestn { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-family: Inter !important;font-size: 20px !important;padding-bottom: 8px;color: rgb(173, 183, 194); } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-lkNS8cestn { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-family: Inter !important;font-size: 20px !important;padding-bottom: 8px;color: rgb(173, 183, 194); } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-lkNS8cestn { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-family: Inter !important;font-size: 20px !important;padding-bottom: 8px;color: rgb(173, 183, 194); } } @media (min-width: 1200px) { .gp-component-id-lkNS8cestn { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-family: Inter !important;font-size: 20px !important;padding-bottom: 8px;color: rgb(173, 183, 194); } }

 .gp-component-id-l5drxDANGW { flex-direction: column;display: flex;animation-fill-mode: both;animation-duration: 1s; } @media (max-width: 639px) { .gp-component-id-l5drxDANGW { flex-direction: column;display: flex;animation-fill-mode: both;animation-duration: 1s; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-l5drxDANGW { flex-direction: column;display: flex;animation-fill-mode: both;animation-duration: 1s; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-l5drxDANGW { flex-direction: column;display: flex;animation-fill-mode: both;animation-duration: 1s; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-l5drxDANGW { flex-direction: column;display: flex;animation-fill-mode: both;animation-duration: 1s; } } @media (min-width: 1200px) { .gp-component-id-l5drxDANGW { flex-direction: column;display: flex;animation-fill-mode: both;animation-duration: 1s; } }

 .gp-component-id-fEfUZZ70PP { animation-fill-mode: both;animation-duration: 1s; } @media (max-width: 639px) { .gp-component-id-fEfUZZ70PP { animation-fill-mode: both;animation-duration: 1s;min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 228px;width: 362px;padding-left: 10px;margin-bottom: 28px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-fEfUZZ70PP { animation-fill-mode: both;animation-duration: 1s;min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 228px;width: 362px;padding-left: 10px;margin-bottom: 28px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-fEfUZZ70PP { animation-fill-mode: both;animation-duration: 1s;min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 228px;width: 362px;padding-left: 10px;margin-bottom: 28px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-fEfUZZ70PP { animation-fill-mode: both;animation-duration: 1s;min-height: 120px;display: flex;align-items: flex-start;flex-direction: column;height: 228px;width: 362px;padding-left: 10px;margin-bottom: 0px; } } @media (min-width: 1200px) { .gp-component-id-fEfUZZ70PP { animation-fill-mode: both;animation-duration: 1s;min-height: 120px;display: flex;align-items: flex-start;flex-direction: column;height: 228px;width: 362px;padding-left: 10px;margin-bottom: 0px; } }

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

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

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

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

 .gp-component-id-WIf_cSVdI.gp-component > [data-section-overlay] { z-index: 14;position: absolute;right: 0px;left: 0px;top: 0px;bottom: 0px;background-color: rgb(3, 23, 48); } @media (max-width: 639px) { .gp-component-id-WIf_cSVdI.gp-component > [data-section-overlay] { z-index: 14;position: absolute;right: 0px;left: 0px;top: 0px;bottom: 0px;background-color: rgb(16, 42, 67); } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-WIf_cSVdI.gp-component > [data-section-overlay] { z-index: 14;position: absolute;right: 0px;left: 0px;top: 0px;bottom: 0px;background-color: rgb(16, 42, 67); } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-WIf_cSVdI.gp-component > [data-section-overlay] { z-index: 14;position: absolute;right: 0px;left: 0px;top: 0px;bottom: 0px;background-color: rgb(16, 42, 67); } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-WIf_cSVdI.gp-component > [data-section-overlay] { z-index: 14;position: absolute;right: 0px;left: 0px;top: 0px;bottom: 0px;background-color: rgb(16, 42, 67); } } @media (min-width: 1200px) { .gp-component-id-WIf_cSVdI.gp-component > [data-section-overlay] { z-index: 14;position: absolute;right: 0px;left: 0px;top: 0px;bottom: 0px;background-color: rgb(16, 42, 67); } }

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

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

 .gp-component-id-r02BVPEiU6 { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;align-items: center;cursor: pointer;background-color: transparent;color: inherit; } @media (max-width: 639px) { .gp-component-id-r02BVPEiU6 { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: inherit;align-items: center;cursor: pointer;background-color: rgb(16, 42, 67);color: rgb(255, 255, 255);font-style: inherit !important;font-family: Inter !important;font-weight: 500 !important;font-size: 18px !important;display: inline-flex;padding-bottom: 14px;padding-top: 14px;padding-right: 26px;padding-left: 26px;border-bottom-width: 0px;border-top-width: 0px;border-right-width: 0px;border-left-width: 0px;border-bottom-right-radius: 12px;border-bottom-left-radius: 12px;border-top-right-radius: 12px;border-top-left-radius: 12px; } .gp-component-id-r02BVPEiU6:hover,.gp-component-id-r02BVPEiU6.gp-hover { font-style: inherit !important;font-size: 18px !important;text-decoration-line: underline;background-color: rgb(16, 42, 67); } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-r02BVPEiU6 { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: inherit;align-items: center;cursor: pointer;background-color: rgb(16, 42, 67);color: rgb(255, 255, 255);font-style: inherit !important;font-family: Inter !important;font-weight: 500 !important;font-size: 18px !important;display: inline-flex;padding-bottom: 14px;padding-top: 14px;padding-right: 26px;padding-left: 26px;border-bottom-width: 0px;border-top-width: 0px;border-right-width: 0px;border-left-width: 0px;border-bottom-right-radius: 12px;border-bottom-left-radius: 12px;border-top-right-radius: 12px;border-top-left-radius: 12px; } .gp-component-id-r02BVPEiU6:hover,.gp-component-id-r02BVPEiU6.gp-hover { font-style: inherit !important;font-size: 18px !important;text-decoration-line: underline;background-color: rgb(16, 42, 67); } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-r02BVPEiU6 { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: inherit;align-items: center;cursor: pointer;background-color: rgb(16, 42, 67);color: rgb(255, 255, 255);font-style: inherit !important;font-family: Inter !important;font-weight: 500 !important;font-size: 18px !important;display: inline-flex;padding-bottom: 14px;padding-top: 14px;padding-right: 26px;padding-left: 26px;border-bottom-width: 0px;border-top-width: 0px;border-right-width: 0px;border-left-width: 0px;border-bottom-right-radius: 12px;border-bottom-left-radius: 12px;border-top-right-radius: 12px;border-top-left-radius: 12px; } .gp-component-id-r02BVPEiU6:hover,.gp-component-id-r02BVPEiU6.gp-hover { font-style: inherit !important;font-size: 18px !important;text-decoration-line: underline;background-color: rgb(16, 42, 67); } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-r02BVPEiU6 { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: inherit;align-items: center;cursor: pointer;background-color: rgb(16, 42, 67);color: rgb(255, 255, 255);font-style: inherit !important;font-family: Inter !important;font-weight: 500 !important;font-size: 18px !important;display: inline-flex;padding-bottom: 14px;padding-top: 14px;padding-right: 26px;padding-left: 26px;border-bottom-width: 0px;border-top-width: 0px;border-right-width: 0px;border-left-width: 0px;border-bottom-right-radius: 12px;border-bottom-left-radius: 12px;border-top-right-radius: 12px;border-top-left-radius: 12px; } .gp-component-id-r02BVPEiU6:hover,.gp-component-id-r02BVPEiU6.gp-hover { font-style: inherit !important;font-size: 18px !important;text-decoration-line: underline;background-color: rgb(16, 42, 67); } } @media (min-width: 1200px) { .gp-component-id-r02BVPEiU6 { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: inherit;align-items: center;cursor: pointer;background-color: rgb(16, 42, 67);color: rgb(255, 255, 255);font-style: inherit !important;font-family: Inter !important;font-weight: 500 !important;font-size: 18px !important;display: inline-flex;padding-bottom: 14px;padding-top: 14px;padding-right: 26px;padding-left: 26px;border-bottom-width: 0px;border-top-width: 0px;border-right-width: 0px;border-left-width: 0px;border-bottom-right-radius: 12px;border-bottom-left-radius: 12px;border-top-right-radius: 12px;border-top-left-radius: 12px; } .gp-component-id-r02BVPEiU6:hover,.gp-component-id-r02BVPEiU6.gp-hover { font-style: inherit !important;font-size: 18px !important;text-decoration-line: underline;background-color: rgb(16, 42, 67); } }

 @media (max-width: 639px) { .gp-component-id-G3Ytr10Pq9 { font-size: 18px !important;display: flex;align-items: center;justify-content: flex-end;flex-direction: row;height: 100%;width: 100%;margin-top: 20px;font-family: Inter !important; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-G3Ytr10Pq9 { font-size: 18px !important;display: flex;align-items: center;justify-content: center;flex-direction: row;height: 100%;width: 100%;margin-top: 20px;font-family: Inter !important; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-G3Ytr10Pq9 { font-size: 18px !important;display: flex;align-items: center;justify-content: flex-end;flex-direction: row;height: 100%;width: 100%;font-family: Inter !important; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-G3Ytr10Pq9 { font-size: 18px !important;display: flex;align-items: center;justify-content: flex-end;flex-direction: row;height: 100%;width: 100%;font-family: Inter !important; } } @media (min-width: 1200px) { .gp-component-id-G3Ytr10Pq9 { font-size: 18px !important;display: flex;align-items: center;justify-content: flex-end;flex-direction: row;height: 100%;width: 100%;font-family: Inter !important; } }

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

 .gp-component-id-k4bZ1aBYhy { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word; } @media (max-width: 639px) { .gp-component-id-k4bZ1aBYhy { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-weight: 400 !important;font-size: 18px !important;padding-bottom: 0px;line-height: 1.5;text-align: left;color: rgb(57, 75, 86); } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-k4bZ1aBYhy { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-weight: 400 !important;font-size: 18px !important;padding-bottom: 20px;line-height: 1.5;text-align: left;color: rgb(57, 75, 86); } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-k4bZ1aBYhy { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-weight: 400 !important;font-size: 18px !important;padding-bottom: 0px;line-height: 1.5;text-align: left;color: rgb(57, 75, 86); } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-k4bZ1aBYhy { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-weight: 400 !important;font-size: 18px !important;padding-bottom: 0px;line-height: 1.5;text-align: left;color: rgb(57, 75, 86); } } @media (min-width: 1200px) { .gp-component-id-k4bZ1aBYhy { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-weight: 400 !important;font-size: 18px !important;padding-bottom: 0px;line-height: 1.5;text-align: left;color: rgb(57, 75, 86); } }

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

 .gp-component-id-cX3G9ndAFZ { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-weight: inherit;font-size: inherit; } @media (max-width: 639px) { .gp-component-id-cX3G9ndAFZ { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-weight: 700 !important;font-size: 34px !important;font-family: "Work Sans" !important;padding-bottom: 10px;line-height: 1.25;text-align: left;color: rgb(52, 73, 94); } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-cX3G9ndAFZ { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-weight: 700 !important;font-size: 38px !important;font-family: "Work Sans" !important;padding-bottom: 10px;line-height: 1.25;text-align: left;color: rgb(52, 73, 94); } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-cX3G9ndAFZ { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-weight: 700 !important;font-size: 30px !important;font-family: "Work Sans" !important;padding-bottom: 10px;line-height: 1.25;text-align: left;color: rgb(52, 73, 94); } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-cX3G9ndAFZ { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-weight: 700 !important;font-size: 38px !important;font-family: "Work Sans" !important;padding-bottom: 10px;line-height: 1.25;text-align: left;color: rgb(52, 73, 94); } } @media (min-width: 1200px) { .gp-component-id-cX3G9ndAFZ { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-weight: 700 !important;font-size: 38px !important;font-family: "Work Sans" !important;padding-bottom: 10px;line-height: 1.25;text-align: left;color: rgb(52, 73, 94); } }

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

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

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

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

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

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

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

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

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

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

 .gp-component-id-O74ICulcjg { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word; } @media (max-width: 639px) { .gp-component-id-O74ICulcjg { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;padding-bottom: 0px;font-family: Inter;text-align: center; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-O74ICulcjg { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;padding-bottom: 0px;font-family: Inter;text-align: center; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-O74ICulcjg { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;padding-bottom: 0px;font-family: Inter;text-align: center; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-O74ICulcjg { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;padding-bottom: 0px;font-family: Inter;text-align: center; } } @media (min-width: 1200px) { .gp-component-id-O74ICulcjg { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;padding-bottom: 0px;font-family: Inter;text-align: center; } }

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

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

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

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

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

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

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

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

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

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

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

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

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

 .gp-component-id-9AEUm_ACRa { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-weight: inherit;font-size: inherit; } @media (max-width: 639px) { .gp-component-id-9AEUm_ACRa { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-weight: 600 !important;font-size: 42px !important;padding-bottom: 20px;padding-top: 40px;padding-right: 0px;padding-left: 20px;background-color: rgb(245, 247, 250);text-align: left;color: rgb(16, 42, 67); } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-9AEUm_ACRa { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-weight: 600 !important;font-size: 42px !important;padding-bottom: 20px;padding-top: 40px;padding-right: 80px;padding-left: 0px;background-color: rgb(245, 247, 250);text-align: left;color: rgb(16, 42, 67); } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-9AEUm_ACRa { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-weight: 600 !important;font-size: 42px !important;padding-bottom: 20px;padding-top: 40px;padding-right: 80px;padding-left: 0px;background-color: rgb(245, 247, 250);text-align: left;color: rgb(16, 42, 67); } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-9AEUm_ACRa { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-weight: 600 !important;font-size: 42px !important;padding-bottom: 20px;padding-top: 40px;padding-right: 80px;padding-left: 0px;background-color: rgb(245, 247, 250);text-align: left;color: rgb(16, 42, 67); } } @media (min-width: 1200px) { .gp-component-id-9AEUm_ACRa { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-weight: 600 !important;font-size: 42px !important;padding-bottom: 20px;padding-top: 40px;padding-right: 80px;padding-left: 0px;background-color: rgb(245, 247, 250);text-align: left;color: rgb(16, 42, 67); } }

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

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

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

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

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

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

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

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

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

 .gp-component-id-7aCU9cGBK { font-size: inherit;font-weight: inherit;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;overflow-wrap: break-word; } @media (max-width: 639px) { .gp-component-id-7aCU9cGBK { font-size: 42px !important;font-weight: 600 !important;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;overflow-wrap: break-word;padding-bottom: 20px;padding-top: 40px;padding-right: 0px;padding-left: 0px;text-align: left;color: rgb(16, 42, 67); } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-7aCU9cGBK { font-size: 42px !important;font-weight: 600 !important;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;overflow-wrap: break-word;padding-bottom: 20px;padding-top: 40px;padding-right: 80px;padding-left: 0px;text-align: left;color: rgb(16, 42, 67); } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-7aCU9cGBK { font-size: 42px !important;font-weight: 600 !important;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;overflow-wrap: break-word;padding-bottom: 20px;padding-top: 40px;padding-right: 80px;padding-left: 0px;text-align: left;color: rgb(16, 42, 67); } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-7aCU9cGBK { font-size: 42px !important;font-weight: 600 !important;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;overflow-wrap: break-word;padding-bottom: 20px;padding-top: 40px;padding-right: 80px;padding-left: 0px;text-align: left;color: rgb(16, 42, 67); } } @media (min-width: 1200px) { .gp-component-id-7aCU9cGBK { font-size: 42px !important;font-weight: 600 !important;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;overflow-wrap: break-word;padding-bottom: 20px;padding-top: 40px;padding-right: 80px;padding-left: 0px;text-align: left;color: rgb(16, 42, 67); } }

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

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

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

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

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

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

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

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

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

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

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

 .gp-component-id-3Kv4woUJE2 { font-weight: inherit;font-size: inherit;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;overflow-wrap: break-word; } @media (max-width: 639px) { .gp-component-id-3Kv4woUJE2 { font-weight: 600 !important;font-size: 39px !important;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;overflow-wrap: break-word;font-family: Manrope !important;width: 100%;line-height: 1.25;text-align: left;color: rgb(16, 42, 67); } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-3Kv4woUJE2 { font-weight: 600 !important;font-size: 48px !important;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;overflow-wrap: break-word;font-family: Manrope !important;width: 100%;line-height: 1.25;text-align: left;color: rgb(16, 42, 67); } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-3Kv4woUJE2 { font-weight: 600 !important;font-size: 48px !important;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;overflow-wrap: break-word;font-family: Manrope !important;width: 100%;line-height: 1.25;text-align: center;color: rgb(16, 42, 67); } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-3Kv4woUJE2 { font-weight: 600 !important;font-size: 48px !important;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;overflow-wrap: break-word;font-family: Manrope !important;width: 100%;line-height: 1.25;text-align: center;color: rgb(16, 42, 67); } } @media (min-width: 1200px) { .gp-component-id-3Kv4woUJE2 { font-weight: 600 !important;font-size: 48px !important;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;overflow-wrap: break-word;font-family: Manrope !important;width: 100%;line-height: 1.25;text-align: left;color: rgb(16, 42, 67); } }

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

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

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

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

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

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

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

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

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

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

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

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

 .gp-component-id-RlMuSay7Ld { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;background-color: rgb(57, 75, 86);display: inline-block;align-items: center;padding-top: 8px;padding-bottom: 8px;font-size: 16px;cursor: pointer;color: inherit;padding-left: 16px;padding-right: 16px; } .gp-component-id-RlMuSay7Ld:hover,.gp-component-id-RlMuSay7Ld.gp-hover { background-color: rgb(120, 136, 155); } .gp-component-id-RlMuSay7Ld:active,.gp-component-id-RlMuSay7Ld.gp-active { background-color: rgb(32, 45, 60); } @media (max-width: 639px) { .gp-component-id-RlMuSay7Ld { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;background-color: rgb(220, 24, 24);display: inline-block;align-items: center;padding-top: 14px;padding-bottom: 14px;font-size: 18px !important;cursor: pointer;color: rgb(255, 255, 255);padding-left: 26px;padding-right: 26px;border-bottom-width: 0px;border-top-width: 0px;border-right-width: 0px;border-left-width: 0px;border-bottom-right-radius: 12px;border-bottom-left-radius: 12px;border-top-right-radius: 12px;border-top-left-radius: 12px;font-family: Inter !important;font-weight: 500 !important; } .gp-component-id-RlMuSay7Ld:hover,.gp-component-id-RlMuSay7Ld.gp-hover { background-color: rgb(120, 136, 155); } .gp-component-id-RlMuSay7Ld:active,.gp-component-id-RlMuSay7Ld.gp-active { background-color: rgb(32, 45, 60); } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-RlMuSay7Ld { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;background-color: rgb(220, 24, 24);display: inline-block;align-items: center;padding-top: 14px;padding-bottom: 14px;font-size: 18px !important;cursor: pointer;color: rgb(255, 255, 255);padding-left: 26px;padding-right: 26px;border-bottom-width: 0px;border-top-width: 0px;border-right-width: 0px;border-left-width: 0px;border-bottom-right-radius: 12px;border-bottom-left-radius: 12px;border-top-right-radius: 12px;border-top-left-radius: 12px;font-family: Inter !important;font-weight: 500 !important; } .gp-component-id-RlMuSay7Ld:hover,.gp-component-id-RlMuSay7Ld.gp-hover { background-color: rgb(120, 136, 155); } .gp-component-id-RlMuSay7Ld:active,.gp-component-id-RlMuSay7Ld.gp-active { background-color: rgb(32, 45, 60); } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-RlMuSay7Ld { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;background-color: rgb(220, 24, 24);display: inline-block;align-items: center;padding-top: 14px;padding-bottom: 14px;font-size: 18px !important;cursor: pointer;color: rgb(255, 255, 255);padding-left: 26px;padding-right: 26px;border-bottom-width: 0px;border-top-width: 0px;border-right-width: 0px;border-left-width: 0px;border-bottom-right-radius: 12px;border-bottom-left-radius: 12px;border-top-right-radius: 12px;border-top-left-radius: 12px;font-family: Inter !important;font-weight: 500 !important; } .gp-component-id-RlMuSay7Ld:hover,.gp-component-id-RlMuSay7Ld.gp-hover { background-color: rgb(120, 136, 155); } .gp-component-id-RlMuSay7Ld:active,.gp-component-id-RlMuSay7Ld.gp-active { background-color: rgb(32, 45, 60); } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-RlMuSay7Ld { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;background-color: rgb(220, 24, 24);display: inline-block;align-items: center;padding-top: 14px;padding-bottom: 14px;font-size: 18px !important;cursor: pointer;color: rgb(255, 255, 255);padding-left: 26px;padding-right: 26px;border-bottom-width: 0px;border-top-width: 0px;border-right-width: 0px;border-left-width: 0px;border-bottom-right-radius: 12px;border-bottom-left-radius: 12px;border-top-right-radius: 12px;border-top-left-radius: 12px;font-family: Inter !important;font-weight: 500 !important; } .gp-component-id-RlMuSay7Ld:hover,.gp-component-id-RlMuSay7Ld.gp-hover { background-color: rgb(120, 136, 155); } .gp-component-id-RlMuSay7Ld:active,.gp-component-id-RlMuSay7Ld.gp-active { background-color: rgb(32, 45, 60); } } @media (min-width: 1200px) { .gp-component-id-RlMuSay7Ld { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;background-color: rgb(220, 24, 24);display: inline-block;align-items: center;padding-top: 14px;padding-bottom: 14px;font-size: 18px !important;cursor: pointer;color: rgb(255, 255, 255);padding-left: 26px;padding-right: 26px;border-bottom-width: 0px;border-top-width: 0px;border-right-width: 0px;border-left-width: 0px;border-bottom-right-radius: 12px;border-bottom-left-radius: 12px;border-top-right-radius: 12px;border-top-left-radius: 12px;font-family: Inter !important;font-weight: 500 !important; } .gp-component-id-RlMuSay7Ld:hover,.gp-component-id-RlMuSay7Ld.gp-hover { background-color: rgb(120, 136, 155); } .gp-component-id-RlMuSay7Ld:active,.gp-component-id-RlMuSay7Ld.gp-active { background-color: rgb(32, 45, 60); } }

 .gp-component-id-DTcHwTdqLH { line-height: 1;display: inline-block; } @media (max-width: 639px) { .gp-component-id-DTcHwTdqLH { line-height: 1;display: inline-block;animation-duration: 1s;animation-fill-mode: both;height: 24px;width: 38px;padding-right: 18px;color: rgb(16, 42, 67); } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-DTcHwTdqLH { line-height: 1;display: inline-block;animation-duration: 1s;animation-fill-mode: both;height: 24px;width: 38px;padding-right: 18px;color: rgb(16, 42, 67); } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-DTcHwTdqLH { line-height: 1;display: inline-block;animation-duration: 1s;animation-fill-mode: both;height: 24px;width: 38px;padding-right: 18px;color: rgb(16, 42, 67); } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-DTcHwTdqLH { line-height: 1;display: inline-block;animation-duration: 1s;animation-fill-mode: both;height: 24px;width: 38px;padding-right: 18px;color: rgb(16, 42, 67); } } @media (min-width: 1200px) { .gp-component-id-DTcHwTdqLH { line-height: 1;display: inline-block;animation-duration: 1s;animation-fill-mode: both;height: 24px;width: 38px;padding-right: 18px;color: rgb(16, 42, 67); } }

 .gp-component-id-r7g6FTSfnl { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: 24px;font-family: inherit;overflow-y: visible;overflow-x: visible;text-transform: none;appearance: button;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;background-color: transparent;background-clip: initial;background-origin: initial;background-attachment: initial;background-repeat: initial;background-size: initial;background-position-y: initial;background-position-x: initial;background-image: initial;cursor: pointer;max-width: NaNpx;color: rgb(255, 255, 255);align-items: center;display: inline-flex; } .gp-component-id-r7g6FTSfnl:focus,.gp-component-id-r7g6FTSfnl.gp-focus { outline-width: 5px;outline-style: auto;outline-color: -webkit-focus-ring-color; } @media (max-width: 639px) { .gp-component-id-r7g6FTSfnl { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: 24px;font-family: inherit;overflow-y: visible;overflow-x: visible;text-transform: none;appearance: button;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;background-color: transparent;background-clip: initial;background-origin: initial;background-attachment: initial;background-repeat: initial;background-size: initial;background-position-y: initial;background-position-x: initial;background-image: initial;cursor: pointer;max-width: NaNpx;color: rgb(255, 255, 255);align-items: center;display: inline-flex; } .gp-component-id-r7g6FTSfnl:focus,.gp-component-id-r7g6FTSfnl.gp-focus { outline-width: 5px;outline-style: auto;outline-color: -webkit-focus-ring-color; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-r7g6FTSfnl { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: 24px;font-family: inherit;overflow-y: visible;overflow-x: visible;text-transform: none;appearance: button;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;background-color: transparent;background-clip: initial;background-origin: initial;background-attachment: initial;background-repeat: initial;background-size: initial;background-position-y: initial;background-position-x: initial;background-image: initial;cursor: pointer;max-width: NaNpx;color: rgb(255, 255, 255);align-items: center;display: inline-flex; } .gp-component-id-r7g6FTSfnl:focus,.gp-component-id-r7g6FTSfnl.gp-focus { outline-width: 5px;outline-style: auto;outline-color: -webkit-focus-ring-color; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-r7g6FTSfnl { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: 24px;font-family: inherit;overflow-y: visible;overflow-x: visible;text-transform: none;appearance: button;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;background-color: transparent;background-clip: initial;background-origin: initial;background-attachment: initial;background-repeat: initial;background-size: initial;background-position-y: initial;background-position-x: initial;background-image: initial;cursor: pointer;max-width: NaNpx;color: rgb(255, 255, 255);align-items: center;display: inline-flex; } .gp-component-id-r7g6FTSfnl:focus,.gp-component-id-r7g6FTSfnl.gp-focus { outline-width: 5px;outline-style: auto;outline-color: -webkit-focus-ring-color; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-r7g6FTSfnl { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: 24px;font-family: inherit;overflow-y: visible;overflow-x: visible;text-transform: none;appearance: button;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;background-color: transparent;background-clip: initial;background-origin: initial;background-attachment: initial;background-repeat: initial;background-size: initial;background-position-y: initial;background-position-x: initial;background-image: initial;cursor: pointer;max-width: NaNpx;color: rgb(255, 255, 255);align-items: center;display: none; } .gp-component-id-r7g6FTSfnl:focus,.gp-component-id-r7g6FTSfnl.gp-focus { outline-width: 5px;outline-style: auto;outline-color: -webkit-focus-ring-color; } } @media (min-width: 1200px) { .gp-component-id-r7g6FTSfnl { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: 24px;font-family: inherit;overflow-y: visible;overflow-x: visible;text-transform: none;appearance: button;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;background-color: transparent;background-clip: initial;background-origin: initial;background-attachment: initial;background-repeat: initial;background-size: initial;background-position-y: initial;background-position-x: initial;background-image: initial;cursor: pointer;max-width: NaNpx;color: rgb(255, 255, 255);align-items: center;display: none; } .gp-component-id-r7g6FTSfnl:focus,.gp-component-id-r7g6FTSfnl.gp-focus { outline-width: 5px;outline-style: auto;outline-color: -webkit-focus-ring-color; } }

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

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

 .gp-component-id-NmXCQ0nwgA { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: inherit;display: block;padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px; } @media (max-width: 639px) { .gp-component-id-NmXCQ0nwgA { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: inherit;display: block;padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-NmXCQ0nwgA { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: inherit;display: block;padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-NmXCQ0nwgA { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: inherit;display: block;padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-NmXCQ0nwgA { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: inherit;display: block;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px; } } @media (min-width: 1200px) { .gp-component-id-NmXCQ0nwgA { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: inherit;display: block;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px; } }

 .gp-component-id-CpcKd3pgjn { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: inherit;display: block;padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px; } @media (max-width: 639px) { .gp-component-id-CpcKd3pgjn { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: inherit;display: block;padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-CpcKd3pgjn { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: inherit;display: block;padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-CpcKd3pgjn { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: inherit;display: block;padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-CpcKd3pgjn { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: inherit;display: block;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px; } } @media (min-width: 1200px) { .gp-component-id-CpcKd3pgjn { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: inherit;display: block;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px; } }

 .gp-component-id-et30SepyIM { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: initial;text-decoration-line: none;cursor: pointer;background-color: transparent;color: inherit;display: block;padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;max-width: NaNpx; } @media (max-width: 639px) { .gp-component-id-et30SepyIM { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: initial;text-decoration-line: none;cursor: pointer;background-color: transparent;color: inherit;display: block;padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;max-width: NaNpx; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-et30SepyIM { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: initial;text-decoration-line: none;cursor: pointer;background-color: transparent;color: inherit;display: block;padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;max-width: NaNpx; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-et30SepyIM { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: initial;text-decoration-line: none;cursor: pointer;background-color: transparent;color: inherit;display: block;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;max-width: NaNpx; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-et30SepyIM { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: initial;text-decoration-line: none;cursor: pointer;background-color: transparent;color: inherit;display: block;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;max-width: NaNpx; } } @media (min-width: 1200px) { .gp-component-id-et30SepyIM { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: initial;text-decoration-line: none;cursor: pointer;background-color: transparent;color: inherit;display: block;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;max-width: NaNpx; } }

 .gp-component-id-mav4aVZtq1 { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: inherit;display: block;padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px; } @media (max-width: 639px) { .gp-component-id-mav4aVZtq1 { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: inherit;display: block;padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-mav4aVZtq1 { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: inherit;display: block;padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-mav4aVZtq1 { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: inherit;display: block;padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-mav4aVZtq1 { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: inherit;display: block;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px; } } @media (min-width: 1200px) { .gp-component-id-mav4aVZtq1 { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: inherit;display: block;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px; } }

 .gp-component-id-zQQY0ZlhlG { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: inherit;display: block;padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px; } @media (max-width: 639px) { .gp-component-id-zQQY0ZlhlG { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: inherit;display: block;padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-zQQY0ZlhlG { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: inherit;display: block;padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-zQQY0ZlhlG { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: inherit;display: block;padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-zQQY0ZlhlG { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: inherit;display: block;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px; } } @media (min-width: 1200px) { .gp-component-id-zQQY0ZlhlG { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: inherit;display: block;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px; } }

 .gp-component-id-yPlxuquOjP { display: none;align-items: center;max-width: NaNpx; } @media (max-width: 639px) { .gp-component-id-yPlxuquOjP { display: none !important;align-items: center;max-width: NaNpx; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-yPlxuquOjP { display: none !important;align-items: center;max-width: NaNpx; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-yPlxuquOjP { display: none !important;align-items: center;max-width: NaNpx; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-yPlxuquOjP { display: flex !important;align-items: center;max-width: NaNpx; } } @media (min-width: 1200px) { .gp-component-id-yPlxuquOjP { display: flex !important;align-items: center;max-width: NaNpx; } }

 @media (max-width: 639px) { .gp-component-id-vCYmfliLaS { animation-duration: 1s;animation-fill-mode: both;margin-right: 16px;background-color: rgb(255, 255, 255);text-align: right;color: rgb(0, 0, 0);font-size: 18px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-vCYmfliLaS { animation-duration: 1s;animation-fill-mode: both;margin-right: 16px;background-color: rgb(255, 255, 255);text-align: right;color: rgb(0, 0, 0);font-size: 18px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-vCYmfliLaS { animation-duration: 1s;animation-fill-mode: both;margin-right: 16px;background-color: rgb(255, 255, 255);text-align: right;color: rgb(0, 0, 0);font-size: 18px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-vCYmfliLaS { animation-duration: 1s;animation-fill-mode: both;margin-right: 16px;background-color: rgb(255, 255, 255);text-align: right;color: rgb(0, 0, 0);font-size: 18px;position: static !important; } } @media (min-width: 1200px) { .gp-component-id-vCYmfliLaS { animation-duration: 1s;animation-fill-mode: both;margin-right: 16px;background-color: rgb(255, 255, 255);text-align: right;color: rgb(0, 0, 0);font-size: 18px;position: static !important; } }

 .gp-component-id-mmxcsjQX_s { max-width: NaNpx;animation-fill-mode: both;animation-duration: 1s;top: 100%;z-index: 20;right: 0px;left: 0px;position: absolute;flex-grow: 1;flex-shrink: 1;flex-basis: 0%; } @media (max-width: 639px) { .gp-component-id-mmxcsjQX_s { max-width: NaNpx;animation-fill-mode: both;animation-duration: 1s;top: 100%;z-index: 20;right: 0px;left: 0px;position: absolute;flex-grow: 1;flex-shrink: 1;flex-basis: 0%; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-mmxcsjQX_s { max-width: NaNpx;animation-fill-mode: both;animation-duration: 1s;top: 100%;z-index: 20;right: 0px;left: 0px;position: absolute;flex-grow: 1;flex-shrink: 1;flex-basis: 0%; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-mmxcsjQX_s { max-width: NaNpx;animation-fill-mode: both;animation-duration: 1s;top: 100%;z-index: 20;right: 0px;left: 0px;position: relative;flex-grow: 1;flex-shrink: 1;flex-basis: 0%;justify-content: flex-end;display: flex; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-mmxcsjQX_s { max-width: NaNpx;animation-fill-mode: both;animation-duration: 1s;top: 100%;z-index: 20;right: 0px;left: 0px;position: static !important;flex-grow: 1;flex-shrink: 1;flex-basis: 0%;justify-content: flex-end;display: flex; } } @media (min-width: 1200px) { .gp-component-id-mmxcsjQX_s { max-width: NaNpx;animation-fill-mode: both;animation-duration: 1s;top: 100%;z-index: 20;right: 0px;left: 0px;position: static !important;flex-grow: 1;flex-shrink: 1;flex-basis: 0%;justify-content: flex-end;display: flex; } }

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

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

 .gp-component-id-gp8Az0a3eq { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: initial;text-decoration-line: none;cursor: pointer;background-color: transparent;color: inherit;max-width: NaNpx;animation-fill-mode: both;animation-duration: 1s; } @media (max-width: 639px) { .gp-component-id-gp8Az0a3eq { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: initial;text-decoration-line: none;cursor: pointer;background-color: transparent;color: inherit;max-width: NaNpx;animation-fill-mode: both;animation-duration: 1s;overflow-y: hidden;overflow-x: hidden;object-fit: cover;object-position: center center;display: inline-flex;align-items: flex-start;justify-content: flex-start;width: 200px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-gp8Az0a3eq { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: initial;text-decoration-line: none;cursor: pointer;background-color: transparent;color: inherit;max-width: NaNpx;animation-fill-mode: both;animation-duration: 1s;overflow-y: hidden;overflow-x: hidden;object-fit: cover;object-position: center center;display: inline-flex;align-items: flex-start;justify-content: flex-start;width: 200px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-gp8Az0a3eq { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: initial;text-decoration-line: none;cursor: pointer;background-color: transparent;color: inherit;max-width: NaNpx;animation-fill-mode: both;animation-duration: 1s;overflow-y: hidden;overflow-x: hidden;object-fit: cover;object-position: center center;display: inline-flex;align-items: flex-start;justify-content: flex-start;width: 200px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-gp8Az0a3eq { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: initial;text-decoration-line: none;cursor: pointer;background-color: transparent;color: inherit;max-width: NaNpx;animation-fill-mode: both;animation-duration: 1s;overflow-y: hidden;overflow-x: hidden;object-fit: cover;object-position: center center;display: inline-flex;align-items: flex-start;justify-content: flex-start;width: 200px; } } @media (min-width: 1200px) { .gp-component-id-gp8Az0a3eq { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: initial;text-decoration-line: none;cursor: pointer;background-color: transparent;color: inherit;max-width: NaNpx;animation-fill-mode: both;animation-duration: 1s;overflow-y: hidden;overflow-x: hidden;object-fit: cover;object-position: center center;display: inline-flex;align-items: flex-start;justify-content: flex-start;width: 300px; } }

 .gp-component-id-Pa__wM0_gV { max-width: 1200px;width: 100%;align-items: center;justify-content: space-between;margin-right: auto;margin-left: auto;display: flex; } @media (max-width: 639px) { .gp-component-id-Pa__wM0_gV { max-width: 1200px;width: 100%;align-items: center;justify-content: space-between;margin-right: auto;margin-left: auto;display: flex; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-Pa__wM0_gV { max-width: 1200px;width: 100%;align-items: center;justify-content: space-between;margin-right: auto;margin-left: auto;display: flex; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-Pa__wM0_gV { max-width: 1200px;width: 100%;align-items: center;justify-content: space-between;margin-right: auto;margin-left: auto;display: flex; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-Pa__wM0_gV { max-width: 1200px;width: 100%;align-items: center;justify-content: space-between;margin-right: auto;margin-left: auto;display: flex;position: relative; } } @media (min-width: 1200px) { .gp-component-id-Pa__wM0_gV { max-width: 1200px;width: 100%;align-items: center;justify-content: space-between;margin-right: auto;margin-left: auto;display: flex;position: relative; } }

 .gp-component-id-rMuPjBePuu { max-width: NaNpx;animation-fill-mode: both;animation-duration: 1s;position: relative;padding-right: 16px;padding-left: 16px;padding-bottom: 20px; } @media (max-width: 639px) { .gp-component-id-rMuPjBePuu { max-width: NaNpx;animation-fill-mode: both;animation-duration: 1s;position: relative;padding-right: 16px;padding-left: 16px;padding-bottom: 20px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-rMuPjBePuu { max-width: NaNpx;animation-fill-mode: both;animation-duration: 1s;position: relative;padding-right: 16px;padding-left: 16px;padding-bottom: 20px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-rMuPjBePuu { max-width: NaNpx;animation-fill-mode: both;animation-duration: 1s;position: relative;padding-right: 28px;padding-left: 28px;padding-bottom: 0px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-rMuPjBePuu { max-width: NaNpx;animation-fill-mode: both;animation-duration: 1s;position: relative;padding-right: 28px;padding-left: 28px;padding-bottom: 0px; } } @media (min-width: 1200px) { .gp-component-id-rMuPjBePuu { max-width: NaNpx;animation-fill-mode: both;animation-duration: 1s;position: relative;padding-right: 28px;padding-left: 28px;padding-bottom: 0px; } }

 .gp-component-id-uyqVhQisCw { z-index: 15;position: relative; } @media (max-width: 639px) { .gp-component-id-uyqVhQisCw { z-index: 15;position: relative; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-uyqVhQisCw { z-index: 15;position: relative; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-uyqVhQisCw { z-index: 15;position: relative; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-uyqVhQisCw { z-index: 15;position: relative; } } @media (min-width: 1200px) { .gp-component-id-uyqVhQisCw { z-index: 15;position: relative; } }

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

 .gp-component-id-qdGCgCTqb { min-height: 50px;position: relative;z-index: 20 !important; } @media (max-width: 639px) { .gp-component-id-qdGCgCTqb { min-height: 50px;position: relative;z-index: auto !important;animation-fill-mode: both;animation-duration: 1s;padding-top: 20px;background-color: rgb(255, 255, 255);border-bottom-color: rgb(217, 226, 236);border-bottom-width: 1px;border-bottom-style: solid; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-qdGCgCTqb { min-height: 50px;position: relative;z-index: auto !important;animation-fill-mode: both;animation-duration: 1s;padding-top: 20px;background-color: rgb(255, 255, 255);border-bottom-color: rgb(217, 226, 236);border-bottom-width: 1px;border-bottom-style: solid; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-qdGCgCTqb { min-height: 50px;position: relative;z-index: auto !important;animation-fill-mode: both;animation-duration: 1s;padding-bottom: 28px;padding-top: 28px;background-color: rgb(255, 255, 255);border-bottom-color: rgb(217, 226, 236);border-bottom-width: 1px;border-bottom-style: solid; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-qdGCgCTqb { min-height: 50px;position: relative;z-index: auto !important;animation-fill-mode: both;animation-duration: 1s;padding-bottom: 28px;padding-top: 28px;background-color: rgb(255, 255, 255);border-bottom-color: rgb(217, 226, 236);border-bottom-width: 1px;border-bottom-style: solid; } } @media (min-width: 1200px) { .gp-component-id-qdGCgCTqb { min-height: 50px;position: relative;z-index: auto !important;animation-fill-mode: both;animation-duration: 1s;padding-bottom: 28px;padding-top: 28px;background-color: rgb(255, 255, 255);border-bottom-color: rgb(217, 226, 236);border-bottom-width: 1px;border-bottom-style: solid; } }

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

 .gp-component-id-MXB0JRO9S8M { flex-basis: auto; flex-shrink: 0; flex-grow: 0; width: 100%; padding-left: 1rem; padding-right: 1rem; } @media (min-width: 768px) { .gp-component-id-MXB0JRO9S8M { width: 50%; } }

 .gp-component-id-JakIwqCF8TL { flex-basis: auto; flex-shrink: 0; flex-grow: 0; width: 100%; padding-left: 1rem; padding-right: 1rem; } @media (min-width: 768px) { .gp-component-id-JakIwqCF8TL { width: 50%; } }

 .gp-component-id-Iyc2EjqL5_v { flex-wrap: wrap; margin-right: -1rem; margin-left: -1rem; } @media (min-width: 768px) { .gp-component-id-Iyc2EjqL5_v { display: flex; } }

 .gp-component-id-u4xHv7idAR0 { width: 100%; padding-right: 0.5rem; padding-left: 0.5rem; }

 @media (max-width: 639px) { [data-gp-text] .gp-component-id-9LsEfwrIhLm { font-weight: 400; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-9LsEfwrIhLm { font-weight: 400; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-9LsEfwrIhLm { font-weight: 400; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-9LsEfwrIhLm { font-weight: 400; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-9LsEfwrIhLm { font-weight: 400; } }

 @media (max-width: 639px) { .gp-component-id-3TSx1yAPOW4[data-gp-component] { font-size: 24px;color: rgb(47, 93, 126);line-height: 1;margin-right: 20px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-3TSx1yAPOW4[data-gp-component] { font-size: 24px;color: rgb(47, 93, 126);line-height: 1;margin-right: 20px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-3TSx1yAPOW4[data-gp-component] { font-size: 24px;color: rgb(47, 93, 126);line-height: 1;margin-right: 20px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-3TSx1yAPOW4[data-gp-component] { font-size: 24px;color: rgb(47, 93, 126);line-height: 1;margin-right: 20px; } } @media (min-width: 1200px) { .gp-component-id-3TSx1yAPOW4[data-gp-component] { font-size: 24px;color: rgb(47, 93, 126);line-height: 1;margin-right: 20px; } }

 @media (max-width: 639px) { .gp-component-id-zXyIa58t0C_[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-zXyIa58t0C_[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-zXyIa58t0C_[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-zXyIa58t0C_[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-zXyIa58t0C_[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-H0Toc0RhoWZ { font-weight: 400; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-H0Toc0RhoWZ { font-weight: 400; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-H0Toc0RhoWZ { font-weight: 400; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-H0Toc0RhoWZ { font-weight: 400; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-H0Toc0RhoWZ { font-weight: 400; } }

 @media (max-width: 639px) { .gp-component-id-z5JttdhYTOb[data-gp-component] { font-size: 24px;color: rgb(47, 93, 126);line-height: 1;margin-right: 20px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-z5JttdhYTOb[data-gp-component] { font-size: 24px;color: rgb(47, 93, 126);line-height: 1;margin-right: 20px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-z5JttdhYTOb[data-gp-component] { font-size: 24px;color: rgb(47, 93, 126);line-height: 1;margin-right: 20px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-z5JttdhYTOb[data-gp-component] { font-size: 24px;color: rgb(47, 93, 126);line-height: 1;margin-right: 20px; } } @media (min-width: 1200px) { .gp-component-id-z5JttdhYTOb[data-gp-component] { font-size: 24px;color: rgb(47, 93, 126);line-height: 1;margin-right: 20px; } }

 @media (max-width: 639px) { .gp-component-id-MrTmeIi0bMF[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-MrTmeIi0bMF[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-MrTmeIi0bMF[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-MrTmeIi0bMF[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-MrTmeIi0bMF[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-fJaLI4HOi0z { font-weight: 400; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-fJaLI4HOi0z { font-weight: 400; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-fJaLI4HOi0z { font-weight: 400; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-fJaLI4HOi0z { font-weight: 400; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-fJaLI4HOi0z { font-weight: 400; } }

 @media (max-width: 639px) { .gp-component-id-a5cNRuIFfiC[data-gp-component] { font-size: 24px;color: rgb(47, 93, 126);line-height: 1;margin-right: 20px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-a5cNRuIFfiC[data-gp-component] { font-size: 24px;color: rgb(47, 93, 126);line-height: 1;margin-right: 20px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-a5cNRuIFfiC[data-gp-component] { font-size: 24px;color: rgb(47, 93, 126);line-height: 1;margin-right: 20px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-a5cNRuIFfiC[data-gp-component] { font-size: 24px;color: rgb(47, 93, 126);line-height: 1;margin-right: 20px; } } @media (min-width: 1200px) { .gp-component-id-a5cNRuIFfiC[data-gp-component] { font-size: 24px;color: rgb(47, 93, 126);line-height: 1;margin-right: 20px; } }

 @media (max-width: 639px) { .gp-component-id-vHJ4CsiRWs7[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-vHJ4CsiRWs7[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-vHJ4CsiRWs7[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-vHJ4CsiRWs7[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-vHJ4CsiRWs7[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-yCpmrGOXSrv { font-weight: 400; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-yCpmrGOXSrv { font-weight: 400; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-yCpmrGOXSrv { font-weight: 400; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-yCpmrGOXSrv { font-weight: 400; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-yCpmrGOXSrv { font-weight: 400; } }

 @media (max-width: 639px) { .gp-component-id-1pFcf540010[data-gp-component] { font-size: 24px;color: rgba(47, 93, 126, 1);line-height: 1;margin-right: 20px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-1pFcf540010[data-gp-component] { font-size: 24px;color: rgba(47, 93, 126, 1);line-height: 1;margin-right: 20px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-1pFcf540010[data-gp-component] { font-size: 24px;color: rgba(47, 93, 126, 1);line-height: 1;margin-right: 20px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-1pFcf540010[data-gp-component] { font-size: 24px;color: rgba(47, 93, 126, 1);line-height: 1;margin-right: 20px; } } @media (min-width: 1200px) { .gp-component-id-1pFcf540010[data-gp-component] { font-size: 24px;color: rgba(47, 93, 126, 1);line-height: 1;margin-right: 20px; } }

 .gp-component-id-JgXPob4AgCA { display: flex; align-items: flex-start; margin-bottom: 0.5rem; color: rgb(32, 45, 60); font-size: 1.125rem; }

 .gp-component-id-leSxPGfAUhk { list-style-type: inherit; padding-bottom: 1rem; padding-top: 1rem; padding-left: 1rem; margin-bottom: 1rem; margin-left: 0px; margin-right: 0px; margin-top: 0px; list-style-position: inside; padding-right: 0px; }

 .gp-component-id-NQWD6O0XTAF { 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-NQWD6O0XTAF { 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-NQWD6O0XTAF { 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-NQWD6O0XTAF { 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-NQWD6O0XTAF { 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-NQWD6O0XTAF { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-weight: inherit;font-size: inherit; } }

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

 .gp-component-id-inVmwJ0VBA { flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px; } @media (max-width: 639px) { .gp-component-id-inVmwJ0VBA { 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-inVmwJ0VBA { 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-inVmwJ0VBA { 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-inVmwJ0VBA { flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px; } } @media (min-width: 1200px) { .gp-component-id-inVmwJ0VBA { flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px; } }

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

 @media (max-width: 639px) { .gp-component-id-7PwjQaUiviA[data-gp-component] { font-size: 24px;color: rgb(47, 93, 126);line-height: 1;margin-right: 20px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-7PwjQaUiviA[data-gp-component] { font-size: 24px;color: rgb(47, 93, 126);line-height: 1;margin-right: 20px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-7PwjQaUiviA[data-gp-component] { font-size: 24px;color: rgb(47, 93, 126);line-height: 1;margin-right: 20px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-7PwjQaUiviA[data-gp-component] { font-size: 24px;color: rgb(47, 93, 126);line-height: 1;margin-right: 20px; } } @media (min-width: 1200px) { .gp-component-id-7PwjQaUiviA[data-gp-component] { font-size: 24px;color: rgb(47, 93, 126);line-height: 1;margin-right: 20px; } }

 @media (max-width: 639px) { .gp-component-id-DOTEDeyho0I[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-DOTEDeyho0I[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-DOTEDeyho0I[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-DOTEDeyho0I[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-DOTEDeyho0I[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-y4PFy8Qruq0 { font-size: 18px !important;font-weight: 400 !important; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-y4PFy8Qruq0 { font-size: 18px !important;font-weight: 400 !important; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-y4PFy8Qruq0 { font-size: 18px !important;font-weight: 400 !important; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-y4PFy8Qruq0 { font-size: 18px !important;font-weight: 400 !important; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-y4PFy8Qruq0 { font-size: 18px !important;font-weight: 400 !important; } }

 @media (max-width: 639px) { .gp-component-id-APafRMSNmBS[data-gp-component] { font-size: 24px;color: rgb(47, 93, 126);line-height: 1;margin-right: 20px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-APafRMSNmBS[data-gp-component] { font-size: 24px;color: rgb(47, 93, 126);line-height: 1;margin-right: 20px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-APafRMSNmBS[data-gp-component] { font-size: 24px;color: rgb(47, 93, 126);line-height: 1;margin-right: 20px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-APafRMSNmBS[data-gp-component] { font-size: 24px;color: rgb(47, 93, 126);line-height: 1;margin-right: 20px; } } @media (min-width: 1200px) { .gp-component-id-APafRMSNmBS[data-gp-component] { font-size: 24px;color: rgb(47, 93, 126);line-height: 1;margin-right: 20px; } }

 @media (max-width: 639px) { .gp-component-id-QW9ssfN69WR[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-QW9ssfN69WR[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-QW9ssfN69WR[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-QW9ssfN69WR[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-QW9ssfN69WR[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-kI1V2eHpoJB { font-size: 18px !important;font-weight: 400 !important; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-kI1V2eHpoJB { font-size: 18px !important;font-weight: 400 !important; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-kI1V2eHpoJB { font-size: 18px !important;font-weight: 400 !important; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-kI1V2eHpoJB { font-size: 18px !important;font-weight: 400 !important; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-kI1V2eHpoJB { font-size: 18px !important;font-weight: 400 !important; } }

 @media (max-width: 639px) { .gp-component-id-ux4FUx0wz5i[data-gp-component] { font-size: 24px;color: rgb(47, 93, 126);line-height: 1;margin-right: 20px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-ux4FUx0wz5i[data-gp-component] { font-size: 24px;color: rgb(47, 93, 126);line-height: 1;margin-right: 20px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-ux4FUx0wz5i[data-gp-component] { font-size: 24px;color: rgb(47, 93, 126);line-height: 1;margin-right: 20px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-ux4FUx0wz5i[data-gp-component] { font-size: 24px;color: rgb(47, 93, 126);line-height: 1;margin-right: 20px; } } @media (min-width: 1200px) { .gp-component-id-ux4FUx0wz5i[data-gp-component] { font-size: 24px;color: rgb(47, 93, 126);line-height: 1;margin-right: 20px; } }

 @media (max-width: 639px) { .gp-component-id-_kZiHMGuTP[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-_kZiHMGuTP[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-_kZiHMGuTP[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-_kZiHMGuTP[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-_kZiHMGuTP[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-r0cX_wijpn { font-size: 18px !important;font-weight: 400 !important; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-r0cX_wijpn { font-size: 18px !important;font-weight: 400 !important; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-r0cX_wijpn { font-size: 18px !important;font-weight: 400 !important; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-r0cX_wijpn { font-size: 18px !important;font-weight: 400 !important; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-r0cX_wijpn { font-size: 18px !important;font-weight: 400 !important; } }

 @media (max-width: 639px) { .gp-component-id-pEsWtcc6wV[data-gp-component] { font-size: 24px;color: rgba(47, 93, 126, 1);line-height: 1;margin-right: 20px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-pEsWtcc6wV[data-gp-component] { font-size: 24px;color: rgba(47, 93, 126, 1);line-height: 1;margin-right: 20px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-pEsWtcc6wV[data-gp-component] { font-size: 24px;color: rgba(47, 93, 126, 1);line-height: 1;margin-right: 20px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-pEsWtcc6wV[data-gp-component] { font-size: 24px;color: rgba(47, 93, 126, 1);line-height: 1;margin-right: 20px; } } @media (min-width: 1200px) { .gp-component-id-pEsWtcc6wV[data-gp-component] { font-size: 24px;color: rgba(47, 93, 126, 1);line-height: 1;margin-right: 20px; } }

 .gp-component-id-wbb21gbHaC { display: flex; align-items: flex-start; margin-bottom: 0.5rem; color: rgb(32, 45, 60); font-size: 1.125rem; }

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

 .gp-component-id-uI_d0za9rh { 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-uI_d0za9rh { 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-uI_d0za9rh { 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-uI_d0za9rh { 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-uI_d0za9rh { 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-uI_d0za9rh { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-weight: inherit;font-size: inherit; } }

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

 .gp-component-id-iQgNZ0GRS6 { flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px; } @media (max-width: 639px) { .gp-component-id-iQgNZ0GRS6 { 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-iQgNZ0GRS6 { 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-iQgNZ0GRS6 { 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-iQgNZ0GRS6 { flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px; } } @media (min-width: 1200px) { .gp-component-id-iQgNZ0GRS6 { flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px; } }

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

 .gp-component-id-zGDpqPgNRg { width: 100%; }

 .gp-component-id-qO4d1oxOdDq { padding-right: 0.5rem; padding-left: 0.5rem; width: 100%; }

 .gp-component-id-y7ZCp3nHiu4 { margin-right: -0.5rem; margin-left: -0.5rem; }

 .gp-component-id-Fw5Ke70uFh { padding-right: 0.5rem; padding-left: 0.5rem; width: 100%; }

 .gp-component-id-NN6iC_iAvx { width: 100%; margin-right: auto; margin-left: auto; } @media (min-width: 640px) { .gp-component-id-NN6iC_iAvx { max-width: 640px; } } @media (min-width: 768px) { .gp-component-id-NN6iC_iAvx { max-width: 768px; } } @media (min-width: 992px) { .gp-component-id-NN6iC_iAvx { max-width: 992px; } } @media (min-width: 1200px) { .gp-component-id-NN6iC_iAvx { max-width: 1200px; } }

