
      
    


      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-UGjQd2TiO[data-gp-component] { border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 412px;height: 278px;max-width: 100%; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-UGjQd2TiO[data-gp-component] { border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 412px;height: 278px;max-width: 100%; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-UGjQd2TiO[data-gp-component] { border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 412px;height: 278px;max-width: 100%; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-UGjQd2TiO[data-gp-component] { border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 412px;height: 278px;max-width: 100%; } } @media (min-width: 1200px) { .gp-component-id-UGjQd2TiO[data-gp-component] { border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 412px;height: 278px;max-width: 100%; } }

 @media (max-width: 639px) { .gp-component-id-kfwXxLRnD[data-gp-component] { border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 412px;height: 276px;max-width: 480px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-kfwXxLRnD[data-gp-component] { border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 412px;height: 276px;max-width: 480px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-kfwXxLRnD[data-gp-component] { border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 412px;height: 276px;max-width: 480px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-kfwXxLRnD[data-gp-component] { border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 412px;height: 276px;max-width: 480px; } } @media (min-width: 1200px) { .gp-component-id-kfwXxLRnD[data-gp-component] { border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 412px;height: 276px;max-width: 480px; } }

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

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

 @media (max-width: 639px) { .gp-component-id-9MeCANszQ[data-gp-component] { border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 284px;height: 550px;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-9MeCANszQ[data-gp-component] { border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 284px;height: 550px;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-9MeCANszQ[data-gp-component] { border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 284px;height: 550px;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-9MeCANszQ[data-gp-component] { border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 284px;height: 550px;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-9MeCANszQ[data-gp-component] { border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 284px;height: 550px;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-sowVa3M_eg[data-gp-component] { 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(255, 255, 255);border-right-color: rgb(255, 255, 255);border-top-color: rgb(255, 255, 255);border-bottom-color: rgb(255, 255, 255);width: 180px;height: 151px;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-sowVa3M_eg[data-gp-component] { 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(255, 255, 255);border-right-color: rgb(255, 255, 255);border-top-color: rgb(255, 255, 255);border-bottom-color: rgb(255, 255, 255);width: 180px;height: 151px;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-sowVa3M_eg[data-gp-component] { 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(255, 255, 255);border-right-color: rgb(255, 255, 255);border-top-color: rgb(255, 255, 255);border-bottom-color: rgb(255, 255, 255);width: 180px;height: 151px;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-sowVa3M_eg[data-gp-component] { 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(255, 255, 255);border-right-color: rgb(255, 255, 255);border-top-color: rgb(255, 255, 255);border-bottom-color: rgb(255, 255, 255);width: 180px;height: 151px;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-sowVa3M_eg[data-gp-component] { 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(255, 255, 255);border-right-color: rgb(255, 255, 255);border-top-color: rgb(255, 255, 255);border-bottom-color: rgb(255, 255, 255);width: 180px;height: 151px;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) { [data-gp-text] .gp-component-id-52YXxuWCvIP { color: rgb(243, 243, 243);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-52YXxuWCvIP { color: rgb(243, 243, 243);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-52YXxuWCvIP { color: rgb(243, 243, 243);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-52YXxuWCvIP { color: rgb(243, 243, 243);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-52YXxuWCvIP { color: rgb(243, 243, 243);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } }

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

 @media (max-width: 639px) { [data-gp-text] .gp-component-id-k3Rbm8Cnc7 { font-size: 20px !important;font-weight: 600 !important;color: rgb(243, 243, 243);text-align: left;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-bottom: 0px; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-k3Rbm8Cnc7 { font-size: 20px !important;font-weight: 600 !important;color: rgb(243, 243, 243);text-align: left;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-bottom: 0px; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-k3Rbm8Cnc7 { font-size: 20px !important;font-weight: 600 !important;color: rgb(243, 243, 243);text-align: left;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-bottom: 0px; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-k3Rbm8Cnc7 { font-size: 20px !important;font-weight: 600 !important;color: rgb(243, 243, 243);text-align: left;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-bottom: 0px; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-k3Rbm8Cnc7 { font-size: 20px !important;font-weight: 600 !important;color: rgb(243, 243, 243);text-align: left;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-bottom: 0px; } }

 @media (max-width: 639px) { .gp-component-id-Cf0DVKgQmP[data-gp-component] { margin-right: 0px;padding-left: 20px;width: 328px;height: 293px;max-width: 1054px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-Cf0DVKgQmP[data-gp-component] { margin-right: 0px;padding-left: 20px;width: 328px;height: 293px;max-width: 1054px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-Cf0DVKgQmP[data-gp-component] { margin-right: 0px;padding-left: 20px;width: 328px;height: 293px;max-width: 1054px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-Cf0DVKgQmP[data-gp-component] { margin-right: 0px;padding-left: 20px;width: 328px;height: 293px;max-width: 1054px; } } @media (min-width: 1200px) { .gp-component-id-Cf0DVKgQmP[data-gp-component] { margin-right: 0px;padding-left: 20px;width: 328px;height: 293px;max-width: 1054px; } }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

 @media (max-width: 639px) { .gp-component-id-r02BVPEiU6[data-gp-component] { 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);background-color: rgb(255, 255, 255);margin-right: 80px;padding-left: 26px;padding-right: 26px;padding-top: 14px;padding-bottom: 14px;display: inline-flex;text-decoration-line: inherit;font-style: inherit !important; } .gp-component-id-r02BVPEiU6[data-gp-component]:hover,.gp-component-id-r02BVPEiU6[data-gp-component].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;background-color: rgb(255, 255, 255);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) { .gp-component-id-r02BVPEiU6[data-gp-component] { 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);background-color: rgb(255, 255, 255);margin-right: 80px;padding-left: 26px;padding-right: 26px;padding-top: 14px;padding-bottom: 14px;display: inline-flex;text-decoration-line: inherit;font-style: inherit !important; } .gp-component-id-r02BVPEiU6[data-gp-component]:hover,.gp-component-id-r02BVPEiU6[data-gp-component].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;background-color: rgb(255, 255, 255);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) { .gp-component-id-r02BVPEiU6[data-gp-component] { 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);background-color: rgb(255, 255, 255);margin-right: 80px;padding-left: 26px;padding-right: 26px;padding-top: 14px;padding-bottom: 14px;display: inline-flex;text-decoration-line: inherit;font-style: inherit !important; } .gp-component-id-r02BVPEiU6[data-gp-component]:hover,.gp-component-id-r02BVPEiU6[data-gp-component].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;background-color: rgb(255, 255, 255);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) { .gp-component-id-r02BVPEiU6[data-gp-component] { 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);background-color: rgb(255, 255, 255);margin-right: 80px;padding-left: 26px;padding-right: 26px;padding-top: 14px;padding-bottom: 14px;display: inline-flex;text-decoration-line: inherit;font-style: inherit !important; } .gp-component-id-r02BVPEiU6[data-gp-component]:hover,.gp-component-id-r02BVPEiU6[data-gp-component].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;background-color: rgb(255, 255, 255);padding-left: 26px;padding-right: 26px;padding-top: 14px;padding-bottom: 14px;text-decoration-line: underline;font-style: inherit; } } @media (min-width: 1200px) { .gp-component-id-r02BVPEiU6[data-gp-component] { 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);background-color: rgb(255, 255, 255);margin-right: 80px;padding-left: 26px;padding-right: 26px;padding-top: 14px;padding-bottom: 14px;display: inline-flex;text-decoration-line: inherit;font-style: inherit !important; } .gp-component-id-r02BVPEiU6[data-gp-component]:hover,.gp-component-id-r02BVPEiU6[data-gp-component].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;background-color: rgb(255, 255, 255);padding-left: 26px;padding-right: 26px;padding-top: 14px;padding-bottom: 14px;text-decoration-line: underline;font-style: inherit; } }

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

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

 @media (max-width: 639px) { [data-gp-text] .gp-component-id-NX6wF6yF6 { font-size: 20px !important;letter-spacing: 0.05em;font-family: Inter !important;padding-bottom: 20px;font-style: italic;text-decoration-line: inherit; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-NX6wF6yF6 { font-size: 20px !important;letter-spacing: 0.05em;font-family: Inter !important;padding-bottom: 20px;font-style: italic;text-decoration-line: inherit; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-NX6wF6yF6 { font-size: 20px !important;letter-spacing: 0.05em;font-family: Inter !important;padding-bottom: 20px;font-style: italic;text-decoration-line: inherit; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-NX6wF6yF6 { font-size: 20px !important;letter-spacing: 0.05em;font-family: Inter !important;padding-bottom: 20px;font-style: italic;text-decoration-line: inherit; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-NX6wF6yF6 { font-size: 20px !important;letter-spacing: 0.05em;font-family: Inter !important;padding-bottom: 20px;font-style: italic;text-decoration-line: inherit; } }

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

 @media (max-width: 639px) { .gp-component-id-KsLKf6Klw[data-gp-component] { border-top-left-radius: 4px;border-top-right-radius: 4px;border-bottom-left-radius: 4px;border-bottom-right-radius: 4px;box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;height: 100%;max-width: 480px;overflow-x: hidden;overflow-y: hidden; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-KsLKf6Klw[data-gp-component] { border-top-left-radius: 4px;border-top-right-radius: 4px;border-bottom-left-radius: 4px;border-bottom-right-radius: 4px;box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;height: 100%;max-width: 480px;overflow-x: hidden;overflow-y: hidden; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-KsLKf6Klw[data-gp-component] { border-top-left-radius: 4px;border-top-right-radius: 4px;border-bottom-left-radius: 4px;border-bottom-right-radius: 4px;box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;height: 100%;max-width: 480px;overflow-x: hidden;overflow-y: hidden; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-KsLKf6Klw[data-gp-component] { border-top-left-radius: 4px;border-top-right-radius: 4px;border-bottom-left-radius: 4px;border-bottom-right-radius: 4px;box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;height: 100%;max-width: 480px;overflow-x: hidden;overflow-y: hidden; } } @media (min-width: 1200px) { .gp-component-id-KsLKf6Klw[data-gp-component] { border-top-left-radius: 4px;border-top-right-radius: 4px;border-bottom-left-radius: 4px;border-bottom-right-radius: 4px;box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;height: 100%;max-width: 480px;overflow-x: hidden;overflow-y: hidden; } }

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

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

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

 @media (max-width: 639px) { .gp-component-id-H5l7p5nx5[data-gp-component] { border-top-left-radius: 4px;border-top-right-radius: 4px;border-bottom-left-radius: 4px;border-bottom-right-radius: 4px;box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;width: null;height: 100%;max-width: 480px;overflow-y: hidden;overflow-x: hidden; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-H5l7p5nx5[data-gp-component] { border-top-left-radius: 4px;border-top-right-radius: 4px;border-bottom-left-radius: 4px;border-bottom-right-radius: 4px;box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;width: null;height: 100%;max-width: 480px;overflow-y: hidden;overflow-x: hidden; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-H5l7p5nx5[data-gp-component] { border-top-left-radius: 4px;border-top-right-radius: 4px;border-bottom-left-radius: 4px;border-bottom-right-radius: 4px;box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;width: null;height: 100%;max-width: 480px;overflow-y: hidden;overflow-x: hidden; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-H5l7p5nx5[data-gp-component] { border-top-left-radius: 4px;border-top-right-radius: 4px;border-bottom-left-radius: 4px;border-bottom-right-radius: 4px;box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;width: null;height: 100%;max-width: 480px;overflow-y: hidden;overflow-x: hidden; } } @media (min-width: 1200px) { .gp-component-id-H5l7p5nx5[data-gp-component] { border-top-left-radius: 4px;border-top-right-radius: 4px;border-bottom-left-radius: 4px;border-bottom-right-radius: 4px;box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;width: null;height: 100%;max-width: 480px;overflow-y: hidden;overflow-x: hidden; } }

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

 .gp-component-id-yZvCyBgkdL { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 16px;color: rgb(57, 75, 86); } @media (max-width: 639px) { .gp-component-id-yZvCyBgkdL { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 16px;color: rgb(57, 75, 86); } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-yZvCyBgkdL { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 16px;color: rgb(57, 75, 86); } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-yZvCyBgkdL { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 16px;color: rgb(57, 75, 86); } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-yZvCyBgkdL { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 16px;color: rgb(57, 75, 86); } } @media (min-width: 1200px) { .gp-component-id-yZvCyBgkdL { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 16px;color: rgb(57, 75, 86); } }

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

 .gp-component-id-PVkJMRiDy8 { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 16px;color: rgb(57, 75, 86); } @media (max-width: 639px) { .gp-component-id-PVkJMRiDy8 { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 16px;color: rgb(57, 75, 86); } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-PVkJMRiDy8 { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 16px;color: rgb(57, 75, 86); } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-PVkJMRiDy8 { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 16px;color: rgb(57, 75, 86); } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-PVkJMRiDy8 { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 16px;color: rgb(57, 75, 86); } } @media (min-width: 1200px) { .gp-component-id-PVkJMRiDy8 { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 16px;color: rgb(57, 75, 86); } }

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

 @media (max-width: 639px) { .gp-component-id-Y8hcFP18mQ[data-gp-component] { margin-left: auto;margin-right: auto;padding-left: 10px;padding-right: 10px;padding-top: 40px;padding-bottom: 40px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-Y8hcFP18mQ[data-gp-component] { margin-left: auto;margin-right: auto;padding-left: 10px;padding-right: 10px;padding-top: 40px;padding-bottom: 40px;width: 100%;max-width: 640px;flex-direction: column;justify-content: center;align-items: center;display: flex; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-Y8hcFP18mQ[data-gp-component] { margin-left: auto;margin-right: auto;padding-left: 10px;padding-right: 10px;padding-top: 40px;padding-bottom: 40px;width: 100%;max-width: 768px;flex-direction: column;justify-content: center;align-items: center;display: flex; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-Y8hcFP18mQ[data-gp-component] { margin-left: auto;margin-right: auto;padding-left: 10px;padding-right: 10px;padding-top: 40px;padding-bottom: 40px;width: 100%;max-width: 992px;flex-direction: column;justify-content: center;align-items: center;display: flex; } } @media (min-width: 1200px) { .gp-component-id-Y8hcFP18mQ[data-gp-component] { margin-left: auto;margin-right: auto;padding-left: 10px;padding-right: 10px;padding-top: 40px;padding-bottom: 40px;width: 100%;max-width: 1200px;flex-direction: column;justify-content: center;align-items: center;display: flex; } }

 @media (max-width: 639px) { [data-gp-text] .gp-component-id-d0TPMo0uHnB { font-size: 18px;color: rgb(57, 75, 86);text-align: center;line-height: 1.5;box-sizing: border-box;cursor: text; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-d0TPMo0uHnB { font-size: 18px;color: rgb(57, 75, 86);text-align: center;line-height: 1.5;box-sizing: border-box;cursor: text; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-d0TPMo0uHnB { font-size: 18px;color: rgb(57, 75, 86);text-align: left;line-height: 1.5;box-sizing: border-box;cursor: text; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-d0TPMo0uHnB { font-size: 18px;color: rgb(57, 75, 86);text-align: left;line-height: 1.5;box-sizing: border-box;cursor: text; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-d0TPMo0uHnB { font-size: 18px;color: rgb(57, 75, 86);text-align: left;line-height: 1.5;box-sizing: border-box;cursor: text; } }

 @media (max-width: 639px) { [data-gp-text] .gp-component-id-LrbS1ouWJW8 { text-align: center;box-sizing: border-box;cursor: text; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-LrbS1ouWJW8 { text-align: center;box-sizing: border-box;cursor: text; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-LrbS1ouWJW8 { text-align: left;box-sizing: border-box;cursor: text; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-LrbS1ouWJW8 { text-align: left;box-sizing: border-box;cursor: text; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-LrbS1ouWJW8 { text-align: left;box-sizing: border-box;cursor: text; } }

 @media (max-width: 639px) { [data-gp-text] .gp-component-id-ng40z40kTPd { font-size: 18px;color: rgb(57, 75, 86);text-align: center;line-height: 1.5;box-sizing: border-box;cursor: text; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-ng40z40kTPd { font-size: 18px;color: rgb(57, 75, 86);text-align: center;line-height: 1.5;box-sizing: border-box;cursor: text; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-ng40z40kTPd { font-size: 18px;color: rgb(57, 75, 86);text-align: left;line-height: 1.5;box-sizing: border-box;cursor: text; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-ng40z40kTPd { font-size: 18px;color: rgb(57, 75, 86);text-align: left;line-height: 1.5;box-sizing: border-box;cursor: text; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-ng40z40kTPd { font-size: 18px;color: rgb(57, 75, 86);text-align: left;line-height: 1.5;box-sizing: border-box;cursor: text; } }

 @media (max-width: 639px) { [data-gp-text] .gp-component-id-Zy3p_Fqdq0A { text-align: center;cursor: text;box-sizing: border-box; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-Zy3p_Fqdq0A { text-align: center;cursor: text;box-sizing: border-box; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-Zy3p_Fqdq0A { text-align: left;cursor: text;box-sizing: border-box; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-Zy3p_Fqdq0A { text-align: left;cursor: text;box-sizing: border-box; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-Zy3p_Fqdq0A { text-align: left;cursor: text;box-sizing: border-box; } }

 @media (max-width: 639px) { [data-gp-text] .gp-component-id-BloDG51uPX6 { font-size: 18px;color: rgb(57, 75, 86);text-align: center;line-height: 1.5;cursor: text;box-sizing: border-box; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-BloDG51uPX6 { font-size: 18px;color: rgb(57, 75, 86);text-align: center;line-height: 1.5;cursor: text;box-sizing: border-box; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-BloDG51uPX6 { font-size: 18px;color: rgb(57, 75, 86);text-align: left;line-height: 1.5;cursor: text;box-sizing: border-box; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-BloDG51uPX6 { font-size: 18px;color: rgb(57, 75, 86);text-align: left;line-height: 1.5;cursor: text;box-sizing: border-box; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-BloDG51uPX6 { font-size: 18px;color: rgb(57, 75, 86);text-align: left;line-height: 1.5;cursor: text;box-sizing: border-box; } }

 @media (max-width: 639px) { [data-gp-text] .gp-component-id-pSRGyIs6kH8 { font-size: 28px !important;font-weight: 600;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) { [data-gp-text] .gp-component-id-pSRGyIs6kH8 { font-size: 28px !important;font-weight: 600;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) { [data-gp-text] .gp-component-id-pSRGyIs6kH8 { font-size: 28px !important;font-weight: 600;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) { [data-gp-text] .gp-component-id-pSRGyIs6kH8 { font-size: 28px !important;font-weight: 600;color: rgb(32, 45, 60);font-family: Manrope;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 8px; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-pSRGyIs6kH8 { font-size: 28px !important;font-weight: 600;color: rgb(32, 45, 60);font-family: Manrope;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 8px; } }

 @media (max-width: 639px) { [data-gp-text] .gp-component-id-za5AYappcm { text-align: center;box-sizing: border-box;cursor: text; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-za5AYappcm { text-align: center;box-sizing: border-box;cursor: text; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-za5AYappcm { text-align: left;box-sizing: border-box;cursor: text; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-za5AYappcm { text-align: left;box-sizing: border-box;cursor: text; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-za5AYappcm { text-align: left;box-sizing: border-box;cursor: text; } }

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

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

 @media (max-width: 639px) { .gp-component-id-8Zwxky14jm[data-gp-component] { color: rgb(15, 24, 36);border-bottom-width: 0px;margin-bottom: 30px;padding-left: 0px;padding-right: 10px;padding-top: 20px;padding-bottom: 20px;width: 100%;flex-direction: column;justify-content: center;align-items: flex-start;display: flex; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-8Zwxky14jm[data-gp-component] { color: rgb(15, 24, 36);border-bottom-width: 0px;margin-bottom: 30px;padding-left: 0px;padding-right: 10px;padding-top: 20px;padding-bottom: 20px;width: 100%;flex-direction: column;justify-content: center;align-items: flex-start;display: flex; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-8Zwxky14jm[data-gp-component] { color: rgb(15, 24, 36);border-bottom-width: 0px;margin-bottom: 30px;padding-left: 0px;padding-right: 10px;padding-top: 20px;padding-bottom: 20px;width: 95%;flex-direction: column;justify-content: center;align-items: flex-start;display: flex; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-8Zwxky14jm[data-gp-component] { color: rgb(15, 24, 36);border-bottom-width: 0px;margin-bottom: 30px;padding-left: 0px;padding-right: 10px;padding-top: 20px;padding-bottom: 20px;width: 80%;flex-direction: column;justify-content: center;align-items: flex-start;display: flex; } } @media (min-width: 1200px) { .gp-component-id-8Zwxky14jm[data-gp-component] { color: rgb(15, 24, 36);border-bottom-width: 0px;margin-bottom: 30px;padding-left: 0px;padding-right: 10px;padding-top: 20px;padding-bottom: 20px;width: 80%;flex-direction: column;justify-content: center;align-items: flex-start;display: flex; } }

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

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

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

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

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

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

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

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

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

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

 @media (max-width: 639px) { .gp-component-id-w7z5SNisvI { 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-w7z5SNisvI { 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-w7z5SNisvI { 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-w7z5SNisvI { margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block; } } @media (min-width: 1200px) { .gp-component-id-w7z5SNisvI { 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-MHLBGMxLMW { 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-MHLBGMxLMW { 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-MHLBGMxLMW { 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-MHLBGMxLMW { 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-MHLBGMxLMW { 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-WA4uqtrkgT { 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-WA4uqtrkgT { 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-WA4uqtrkgT { 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-WA4uqtrkgT { 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-WA4uqtrkgT { 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-lWuCA66CD { 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-lWuCA66CD { 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-lWuCA66CD { 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-lWuCA66CD { 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-lWuCA66CD { 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-xufzfBptl3 { 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-xufzfBptl3 { 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-xufzfBptl3 { 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-xufzfBptl3 { 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-xufzfBptl3 { 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-h76rh3EHi { 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-h76rh3EHi { 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-h76rh3EHi { 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-h76rh3EHi { 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-h76rh3EHi { margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block; } }

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

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

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

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

 @media (max-width: 639px) { [data-gp-text] .gp-component-id-uW_gZv8n0 { 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) { [data-gp-text] .gp-component-id-uW_gZv8n0 { 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) { [data-gp-text] .gp-component-id-uW_gZv8n0 { 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) { [data-gp-text] .gp-component-id-uW_gZv8n0 { 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) { [data-gp-text] .gp-component-id-uW_gZv8n0 { 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) { .gp-component-id-j9UNH35oU[data-gp-component] { color: rgb(32, 45, 60);margin-bottom: 12px;padding-left: 20px;padding-right: 40px;padding-top: 8px;padding-bottom: 8px;white-space-collapse: collapse;text-wrap-mode: nowrap; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-j9UNH35oU[data-gp-component] { color: rgb(32, 45, 60);margin-bottom: 12px;padding-left: 20px;padding-right: 40px;padding-top: 8px;padding-bottom: 8px;white-space-collapse: collapse;text-wrap-mode: nowrap; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-j9UNH35oU[data-gp-component] { color: rgb(32, 45, 60);margin-bottom: 12px;padding-left: 20px;padding-right: 40px;padding-top: 8px;padding-bottom: 8px;white-space-collapse: collapse;text-wrap-mode: nowrap; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-j9UNH35oU[data-gp-component] { color: rgb(32, 45, 60);margin-bottom: 12px;padding-left: 20px;padding-right: 40px;padding-top: 8px;padding-bottom: 8px;white-space-collapse: collapse;text-wrap-mode: nowrap; } } @media (min-width: 1200px) { .gp-component-id-j9UNH35oU[data-gp-component] { color: rgb(32, 45, 60);margin-bottom: 12px;padding-left: 20px;padding-right: 40px;padding-top: 8px;padding-bottom: 8px;white-space-collapse: collapse;text-wrap-mode: nowrap; } }

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

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

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

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

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

 @media (max-width: 639px) { .gp-component-id-DcRyiKx0Z6 { 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-DcRyiKx0Z6 { 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-DcRyiKx0Z6 { 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-DcRyiKx0Z6 { margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block; } } @media (min-width: 1200px) { .gp-component-id-DcRyiKx0Z6 { 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-hULNkv5hGY { 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-hULNkv5hGY { 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-hULNkv5hGY { 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-hULNkv5hGY { 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-hULNkv5hGY { 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-LYQQuONfgy { 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-LYQQuONfgy { 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-LYQQuONfgy { 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-LYQQuONfgy { 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-LYQQuONfgy { 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-d5dTkbfUF { 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-d5dTkbfUF { 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-d5dTkbfUF { 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-d5dTkbfUF { 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-d5dTkbfUF { 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-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: 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: 60px;padding-right: 150px;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: 60px;padding-right: 150px;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-Z3qB4GAS6[data-gp-component] { margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 80px;padding-right: 60px;padding-top: 8px;padding-bottom: 8px;list-style-position: inside;list-style-type: inherit; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-Z3qB4GAS6[data-gp-component] { margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 80px;padding-right: 60px;padding-top: 8px;padding-bottom: 8px;list-style-position: inside;list-style-type: inherit; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-Z3qB4GAS6[data-gp-component] { margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 80px;padding-right: 60px;padding-top: 8px;padding-bottom: 8px;list-style-position: inside;list-style-type: inherit; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-Z3qB4GAS6[data-gp-component] { margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 80px;padding-right: 60px;padding-top: 8px;padding-bottom: 8px;list-style-position: inside;list-style-type: inherit; } } @media (min-width: 1200px) { .gp-component-id-Z3qB4GAS6[data-gp-component] { margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 80px;padding-right: 60px;padding-top: 8px;padding-bottom: 8px;list-style-position: inside;list-style-type: inherit; } }

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

 @media (max-width: 639px) { .gp-component-id-stG7zkY2J[data-gp-component] { 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;background-color: rgba(16, 42, 67, 1);padding-left: 26px;padding-right: 26px;padding-top: 14px;padding-bottom: 14px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-stG7zkY2J[data-gp-component] { 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;background-color: rgba(16, 42, 67, 1);padding-left: 26px;padding-right: 26px;padding-top: 14px;padding-bottom: 14px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-stG7zkY2J[data-gp-component] { 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;background-color: rgba(16, 42, 67, 1);padding-left: 26px;padding-right: 26px;padding-top: 14px;padding-bottom: 14px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-stG7zkY2J[data-gp-component] { 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;background-color: rgba(16, 42, 67, 1);padding-left: 26px;padding-right: 26px;padding-top: 14px;padding-bottom: 14px; } } @media (min-width: 1200px) { .gp-component-id-stG7zkY2J[data-gp-component] { 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;background-color: rgba(16, 42, 67, 1);padding-left: 26px;padding-right: 26px;padding-top: 14px;padding-bottom: 14px; } }

 .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-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-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-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 { min-height: 50px;position: relative;z-index: 99 !important; } @media (max-width: 639px) { .gp-component-id-L0DSIPsPF { min-height: 50px;position: relative;z-index: 99 !important;padding-bottom: 120px;padding-top: 120px;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: 99 !important;padding-bottom: 120px;padding-top: 120px;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: 99 !important;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: 99 !important;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: 99 !important;padding-bottom: 120px;padding-top: 120px;padding-right: 20px;padding-left: 20px; } }

 .gp-component-id-xW1Fwd_Jzm { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word; } @media (max-width: 639px) { .gp-component-id-xW1Fwd_Jzm { margin-left: 12px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-size: 24px !important;cursor: text;box-sizing: border-box;font-family: "Source Sans Pro", sans-serif !important;color: rgb(255, 255, 255);font-weight: 700 !important; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-xW1Fwd_Jzm { margin-left: 12px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-size: 24px !important;cursor: text;box-sizing: border-box;font-family: "Source Sans Pro", sans-serif !important;color: rgb(255, 255, 255);font-weight: 700 !important; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-xW1Fwd_Jzm { margin-left: 12px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-size: 24px !important;cursor: text;box-sizing: border-box;font-family: "Source Sans Pro", sans-serif !important;color: rgb(255, 255, 255);font-weight: 700 !important; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-xW1Fwd_Jzm { margin-left: 12px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-size: 24px !important;cursor: text;box-sizing: border-box;font-family: "Source Sans Pro", sans-serif !important;color: rgb(255, 255, 255);font-weight: 700 !important; } } @media (min-width: 1200px) { .gp-component-id-xW1Fwd_Jzm { margin-left: 12px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-size: 24px !important;cursor: text;box-sizing: border-box;font-family: "Source Sans Pro", sans-serif !important;color: rgb(255, 255, 255);font-weight: 700 !important; } }

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

 .gp-component-id-0U5ubalr1x { line-height: 1;display: inline-block; } @media (max-width: 639px) { .gp-component-id-0U5ubalr1x { line-height: 1;display: inline-block;margin-top: 4px;color: rgb(254, 72, 72);font-size: 24px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-0U5ubalr1x { line-height: 1;display: inline-block;margin-top: 4px;color: rgb(254, 72, 72);font-size: 20px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-0U5ubalr1x { line-height: 1;display: inline-block;margin-top: 4px;color: rgb(254, 72, 72);font-size: 20px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-0U5ubalr1x { line-height: 1;display: inline-block;margin-top: 4px;color: rgb(254, 72, 72);font-size: 20px; } } @media (min-width: 1200px) { .gp-component-id-0U5ubalr1x { line-height: 1;display: inline-block;margin-top: 4px;color: rgb(254, 72, 72);font-size: 20px; } }

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

 .gp-component-id-Gm5tcdiX5j { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word; } @media (max-width: 639px) { .gp-component-id-Gm5tcdiX5j { margin-left: 12px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-size: 24px !important;box-sizing: border-box;cursor: text;font-family: "Source Sans Pro", sans-serif !important;color: rgb(255, 255, 255);font-weight: 700 !important; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-Gm5tcdiX5j { margin-left: 12px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-size: 24px !important;box-sizing: border-box;cursor: text;font-family: "Source Sans Pro", sans-serif !important;color: rgb(255, 255, 255);font-weight: 700 !important; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-Gm5tcdiX5j { margin-left: 12px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-size: 24px !important;box-sizing: border-box;cursor: text;font-family: "Source Sans Pro", sans-serif !important;color: rgb(255, 255, 255);font-weight: 700 !important; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-Gm5tcdiX5j { margin-left: 12px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-size: 24px !important;box-sizing: border-box;cursor: text;font-family: "Source Sans Pro", sans-serif !important;color: rgb(255, 255, 255);font-weight: 700 !important; } } @media (min-width: 1200px) { .gp-component-id-Gm5tcdiX5j { margin-left: 12px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-size: 24px !important;box-sizing: border-box;cursor: text;font-family: "Source Sans Pro", sans-serif !important;color: rgb(255, 255, 255);font-weight: 700 !important; } }

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

 .gp-component-id-ktPLkDRexD { line-height: 1;display: inline-block; } @media (max-width: 639px) { .gp-component-id-ktPLkDRexD { line-height: 1;display: inline-block;margin-top: 4px;color: rgb(254, 72, 72);font-size: 24px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-ktPLkDRexD { line-height: 1;display: inline-block;margin-top: 4px;color: rgb(254, 72, 72);font-size: 20px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-ktPLkDRexD { line-height: 1;display: inline-block;margin-top: 4px;color: rgb(254, 72, 72);font-size: 20px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-ktPLkDRexD { line-height: 1;display: inline-block;margin-top: 4px;color: rgb(254, 72, 72);font-size: 20px; } } @media (min-width: 1200px) { .gp-component-id-ktPLkDRexD { line-height: 1;display: inline-block;margin-top: 4px;color: rgb(254, 72, 72);font-size: 20px; } }

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

 .gp-component-id-jUFosidTCW { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word; } @media (max-width: 639px) { .gp-component-id-jUFosidTCW { margin-left: 12px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-size: 24px !important;box-sizing: border-box;cursor: text;font-family: "Source Sans Pro", sans-serif !important;color: rgb(255, 255, 255);font-weight: 700 !important; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-jUFosidTCW { margin-left: 12px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-size: 24px !important;box-sizing: border-box;cursor: text;font-family: "Source Sans Pro", sans-serif !important;color: rgb(255, 255, 255);font-weight: 700 !important; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-jUFosidTCW { margin-left: 12px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-size: 24px !important;box-sizing: border-box;cursor: text;font-family: "Source Sans Pro", sans-serif !important;color: rgb(255, 255, 255);font-weight: 700 !important; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-jUFosidTCW { margin-left: 12px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-size: 24px !important;box-sizing: border-box;cursor: text;font-family: "Source Sans Pro", sans-serif !important;color: rgb(255, 255, 255);font-weight: 700 !important; } } @media (min-width: 1200px) { .gp-component-id-jUFosidTCW { margin-left: 12px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-size: 24px !important;box-sizing: border-box;cursor: text;font-family: "Source Sans Pro", sans-serif !important;color: rgb(255, 255, 255);font-weight: 700 !important; } }

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

 .gp-component-id-rKxXExR5NW { line-height: 1;display: inline-block; } @media (max-width: 639px) { .gp-component-id-rKxXExR5NW { line-height: 1;display: inline-block;margin-top: 4px;color: rgb(254, 72, 72);font-size: 24px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-rKxXExR5NW { line-height: 1;display: inline-block;margin-top: 4px;color: rgb(254, 72, 72);font-size: 20px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-rKxXExR5NW { line-height: 1;display: inline-block;margin-top: 4px;color: rgb(254, 72, 72);font-size: 20px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-rKxXExR5NW { line-height: 1;display: inline-block;margin-top: 4px;color: rgb(254, 72, 72);font-size: 20px; } } @media (min-width: 1200px) { .gp-component-id-rKxXExR5NW { line-height: 1;display: inline-block;margin-top: 4px;color: rgb(254, 72, 72);font-size: 20px; } }

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

 .gp-component-id-A470qpCoeF { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word; } @media (max-width: 639px) { .gp-component-id-A470qpCoeF { margin-left: 12px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-size: 24px !important;box-sizing: border-box;cursor: text;font-family: "Source Sans Pro", sans-serif !important;color: rgb(255, 255, 255);font-weight: 700 !important; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-A470qpCoeF { margin-left: 12px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-size: 24px !important;box-sizing: border-box;cursor: text;font-family: "Source Sans Pro", sans-serif !important;color: rgb(255, 255, 255);font-weight: 700 !important; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-A470qpCoeF { margin-left: 12px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-size: 24px !important;box-sizing: border-box;cursor: text;font-family: "Source Sans Pro", sans-serif !important;color: rgb(255, 255, 255);font-weight: 700 !important; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-A470qpCoeF { margin-left: 12px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-size: 24px !important;box-sizing: border-box;cursor: text;font-family: "Source Sans Pro", sans-serif !important;color: rgb(255, 255, 255);font-weight: 700 !important; } } @media (min-width: 1200px) { .gp-component-id-A470qpCoeF { margin-left: 12px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-size: 24px !important;box-sizing: border-box;cursor: text;font-family: "Source Sans Pro", sans-serif !important;color: rgb(255, 255, 255);font-weight: 700 !important; } }

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

 .gp-component-id-YK4e6Srd1K { line-height: 1;display: inline-block; } @media (max-width: 639px) { .gp-component-id-YK4e6Srd1K { line-height: 1;display: inline-block;margin-top: 4px;color: rgb(254, 72, 72);font-size: 24px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-YK4e6Srd1K { line-height: 1;display: inline-block;margin-top: 4px;color: rgb(254, 72, 72);font-size: 20px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-YK4e6Srd1K { line-height: 1;display: inline-block;margin-top: 4px;color: rgb(254, 72, 72);font-size: 20px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-YK4e6Srd1K { line-height: 1;display: inline-block;margin-top: 4px;color: rgb(254, 72, 72);font-size: 20px; } } @media (min-width: 1200px) { .gp-component-id-YK4e6Srd1K { line-height: 1;display: inline-block;margin-top: 4px;color: rgb(254, 72, 72);font-size: 20px; } }

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

 .gp-component-id-j9si6btc74 { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word; } @media (max-width: 639px) { .gp-component-id-j9si6btc74 { margin-left: 12px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-size: 24px !important;box-sizing: border-box;cursor: text;font-family: "Source Sans Pro", sans-serif !important;color: rgb(255, 255, 255);font-weight: 700 !important; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-j9si6btc74 { margin-left: 12px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-size: 24px !important;box-sizing: border-box;cursor: text;font-family: "Source Sans Pro", sans-serif !important;color: rgb(255, 255, 255);font-weight: 700 !important; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-j9si6btc74 { margin-left: 12px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-size: 24px !important;box-sizing: border-box;cursor: text;font-family: "Source Sans Pro", sans-serif !important;color: rgb(255, 255, 255);font-weight: 700 !important; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-j9si6btc74 { margin-left: 12px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-size: 24px !important;box-sizing: border-box;cursor: text;font-family: "Source Sans Pro", sans-serif !important;color: rgb(255, 255, 255);font-weight: 700 !important; } } @media (min-width: 1200px) { .gp-component-id-j9si6btc74 { margin-left: 12px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-size: 24px !important;box-sizing: border-box;cursor: text;font-family: "Source Sans Pro", sans-serif !important;color: rgb(255, 255, 255);font-weight: 700 !important; } }

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

 .gp-component-id-1unzGBEBSD { line-height: 1;display: inline-block;margin-top: 4px;color: rgb(254, 72, 72);font-size: 24px; } @media (max-width: 639px) { .gp-component-id-1unzGBEBSD { line-height: 1;display: inline-block;margin-top: 4px;color: rgb(254, 72, 72);font-size: 24px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-1unzGBEBSD { line-height: 1;display: inline-block;margin-top: 4px;color: rgb(254, 72, 72);font-size: 20px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-1unzGBEBSD { line-height: 1;display: inline-block;margin-top: 4px;color: rgb(254, 72, 72);font-size: 20px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-1unzGBEBSD { line-height: 1;display: inline-block;margin-top: 4px;color: rgb(254, 72, 72);font-size: 20px; } } @media (min-width: 1200px) { .gp-component-id-1unzGBEBSD { line-height: 1;display: inline-block;margin-top: 4px;color: rgb(254, 72, 72);font-size: 20px; } }

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

 .gp-component-id-GPiZbnpif { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;list-style-position: inside;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px; } @media (max-width: 639px) { .gp-component-id-GPiZbnpif { margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 230px;list-style-position: inside;padding-left: 16px;padding-bottom: 16px;padding-right: 0px;padding-top: 16px;font-size: 18px !important;list-style-type: inherit;color: rgb(255, 255, 255); } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-GPiZbnpif { margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 230px;list-style-position: inside;padding-left: 16px;padding-bottom: 16px;padding-right: 0px;padding-top: 16px;font-size: 18px !important;list-style-type: inherit;color: rgb(255, 255, 255); } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-GPiZbnpif { margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 230px;list-style-position: inside;padding-left: 16px;padding-bottom: 16px;padding-right: 0px;padding-top: 16px;font-size: 18px !important;list-style-type: inherit;color: rgb(255, 255, 255); } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-GPiZbnpif { margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 230px;list-style-position: inside;padding-left: 16px;padding-bottom: 16px;padding-right: 0px;padding-top: 16px;font-size: 18px !important;list-style-type: inherit;color: rgb(255, 255, 255); } } @media (min-width: 1200px) { .gp-component-id-GPiZbnpif { margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 230px;list-style-position: inside;padding-left: 16px;padding-bottom: 16px;padding-right: 0px;padding-top: 16px;font-size: 18px !important;list-style-type: inherit;color: rgb(255, 255, 255); } }

 @media (max-width: 639px) { .gp-component-id-dWrVW_cb765 { display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;color: rgb(255, 255, 255); } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-dWrVW_cb765 { display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;color: rgb(255, 255, 255); } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-dWrVW_cb765 { display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;color: rgb(255, 255, 255); } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-dWrVW_cb765 { display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;color: rgb(255, 255, 255); } } @media (min-width: 1200px) { .gp-component-id-dWrVW_cb765 { display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-top: 48px;padding-right: 56px;padding-left: 56px;color: rgb(255, 255, 255); } }

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

 .gp-component-id-rs3_vkZD5V { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word; } @media (max-width: 639px) { .gp-component-id-rs3_vkZD5V { margin-left: 0px;margin-bottom: 4px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Inter;line-height: 1.5;text-align: center;color: rgb(255, 255, 255);font-size: 20px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-rs3_vkZD5V { margin-left: 0px;margin-bottom: 4px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Inter;line-height: 1.5;text-align: center;color: rgb(255, 255, 255);font-size: 20px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-rs3_vkZD5V { margin-left: 0px;margin-bottom: 4px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Inter;line-height: 1.5;text-align: center;color: rgb(255, 255, 255);font-size: 20px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-rs3_vkZD5V { margin-left: 0px;margin-bottom: 4px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Inter;line-height: 1.5;text-align: left;color: rgb(255, 255, 255);font-size: 20px; } } @media (min-width: 1200px) { .gp-component-id-rs3_vkZD5V { margin-left: 0px;margin-bottom: 4px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Inter;line-height: 1.5;text-align: left;color: rgb(255, 255, 255);font-size: 20px; } }

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

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

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

 @media (max-width: 639px) { .gp-component-id-Q21H46D0It { display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-bottom: 28px;padding-top: 20px;padding-right: 28px;padding-left: 28px;color: rgb(255, 255, 255); } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-Q21H46D0It { display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-bottom: 28px;padding-top: 20px;padding-right: 28px;padding-left: 28px;color: rgb(255, 255, 255); } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-Q21H46D0It { display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-bottom: 28px;padding-top: 20px;padding-right: 28px;padding-left: 28px;color: rgb(255, 255, 255); } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-Q21H46D0It { display: flex;align-items: flex-start;flex-direction: column;height: 100%;width: 100%;padding-bottom: 28px;padding-top: 36px;padding-right: 28px;padding-left: 28px;color: rgb(255, 255, 255); } } @media (min-width: 1200px) { .gp-component-id-Q21H46D0It { display: flex;align-items: flex-start;flex-direction: column;height: 100%;width: 100%;padding-bottom: 48px;padding-top: 80px;padding-right: 48px;padding-left: 48px;color: rgb(255, 255, 255); } }

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

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

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

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

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

 .gp-component-id-DClI07ZcUsn { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;color: rgb(57, 75, 86);font-size: 16px; } @media (max-width: 639px) { .gp-component-id-DClI07ZcUsn { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;color: rgb(57, 75, 86);font-size: 16px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-DClI07ZcUsn { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;color: rgb(57, 75, 86);font-size: 16px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-DClI07ZcUsn { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;color: rgb(57, 75, 86);font-size: 16px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-DClI07ZcUsn { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;color: rgb(57, 75, 86);font-size: 16px; } } @media (min-width: 1200px) { .gp-component-id-DClI07ZcUsn { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;color: rgb(57, 75, 86);font-size: 16px; } }

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

 .gp-component-id-GMNODaWAjBN { margin-left: 0px;margin-bottom: 8px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-weight: 700;font-size: 24px;color: rgb(32, 45, 60); } @media (max-width: 639px) { .gp-component-id-GMNODaWAjBN { margin-left: 0px;margin-bottom: 8px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-weight: 700;font-size: 24px;color: rgb(32, 45, 60); } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-GMNODaWAjBN { margin-left: 0px;margin-bottom: 8px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-weight: 700;font-size: 24px;color: rgb(32, 45, 60); } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-GMNODaWAjBN { margin-left: 0px;margin-bottom: 8px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-weight: 700;font-size: 24px;color: rgb(32, 45, 60); } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-GMNODaWAjBN { margin-left: 0px;margin-bottom: 8px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-weight: 700;font-size: 24px;color: rgb(32, 45, 60); } } @media (min-width: 1200px) { .gp-component-id-GMNODaWAjBN { margin-left: 0px;margin-bottom: 8px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-weight: 700;font-size: 24px;color: rgb(32, 45, 60); } }

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

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

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

 @media (max-width: 639px) { .gp-component-id-Q7MrHAIYUNX { overflow-y: hidden;overflow-x: hidden;max-width: 480px;height: 100%;box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;border-bottom-right-radius: 4px;border-bottom-left-radius: 4px;border-top-right-radius: 4px;border-top-left-radius: 4px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-Q7MrHAIYUNX { overflow-y: hidden;overflow-x: hidden;max-width: 480px;height: 100%;box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;border-bottom-right-radius: 4px;border-bottom-left-radius: 4px;border-top-right-radius: 4px;border-top-left-radius: 4px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-Q7MrHAIYUNX { overflow-y: hidden;overflow-x: hidden;max-width: 480px;height: 100%;box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;border-bottom-right-radius: 4px;border-bottom-left-radius: 4px;border-top-right-radius: 4px;border-top-left-radius: 4px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-Q7MrHAIYUNX { overflow-y: hidden;overflow-x: hidden;max-width: 480px;height: 100%;box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;border-bottom-right-radius: 4px;border-bottom-left-radius: 4px;border-top-right-radius: 4px;border-top-left-radius: 4px; } } @media (min-width: 1200px) { .gp-component-id-Q7MrHAIYUNX { overflow-y: hidden;overflow-x: hidden;max-width: 480px;height: 100%;box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;border-bottom-right-radius: 4px;border-bottom-left-radius: 4px;border-top-right-radius: 4px;border-top-left-radius: 4px; } }

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

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

 .gp-component-id-50xRyhqwYUy { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;color: rgb(57, 75, 86);font-size: 16px; } @media (max-width: 639px) { .gp-component-id-50xRyhqwYUy { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;color: rgb(57, 75, 86);font-size: 16px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-50xRyhqwYUy { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;color: rgb(57, 75, 86);font-size: 16px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-50xRyhqwYUy { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;color: rgb(57, 75, 86);font-size: 16px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-50xRyhqwYUy { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;color: rgb(57, 75, 86);font-size: 16px; } } @media (min-width: 1200px) { .gp-component-id-50xRyhqwYUy { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;color: rgb(57, 75, 86);font-size: 16px; } }

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

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

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

 .gp-component-id-4zk6MvDcol { padding-top: 16px;padding-bottom: 16px;padding-left: 24px;padding-right: 24px; } @media (max-width: 639px) { .gp-component-id-4zk6MvDcol { padding-top: 16px;padding-bottom: 16px;padding-left: 24px;padding-right: 24px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-4zk6MvDcol { padding-top: 16px;padding-bottom: 16px;padding-left: 24px;padding-right: 24px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-4zk6MvDcol { padding-top: 16px;padding-bottom: 16px;padding-left: 24px;padding-right: 24px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-4zk6MvDcol { padding-top: 16px;padding-bottom: 16px;padding-left: 24px;padding-right: 24px; } } @media (min-width: 1200px) { .gp-component-id-4zk6MvDcol { padding-top: 16px;padding-bottom: 16px;padding-left: 24px;padding-right: 24px; } }

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

 @media (max-width: 639px) { .gp-component-id-d0eAFouWJe { overflow-y: hidden;overflow-x: hidden;max-width: 480px;height: 100%;box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;border-bottom-right-radius: 4px;border-bottom-left-radius: 4px;border-top-right-radius: 4px;border-top-left-radius: 4px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-d0eAFouWJe { overflow-y: hidden;overflow-x: hidden;max-width: 480px;height: 100%;box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;border-bottom-right-radius: 4px;border-bottom-left-radius: 4px;border-top-right-radius: 4px;border-top-left-radius: 4px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-d0eAFouWJe { overflow-y: hidden;overflow-x: hidden;max-width: 480px;height: 100%;box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;border-bottom-right-radius: 4px;border-bottom-left-radius: 4px;border-top-right-radius: 4px;border-top-left-radius: 4px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-d0eAFouWJe { overflow-y: hidden;overflow-x: hidden;max-width: 480px;height: 100%;box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;border-bottom-right-radius: 4px;border-bottom-left-radius: 4px;border-top-right-radius: 4px;border-top-left-radius: 4px; } } @media (min-width: 1200px) { .gp-component-id-d0eAFouWJe { overflow-y: hidden;overflow-x: hidden;max-width: 480px;height: 100%;box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;border-bottom-right-radius: 4px;border-bottom-left-radius: 4px;border-top-right-radius: 4px;border-top-left-radius: 4px; } }

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

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

 .gp-component-id-Nw4PpmR7yn { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;color: rgb(57, 75, 86);font-size: 16px; } @media (max-width: 639px) { .gp-component-id-Nw4PpmR7yn { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;color: rgb(57, 75, 86);font-size: 16px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-Nw4PpmR7yn { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;color: rgb(57, 75, 86);font-size: 16px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-Nw4PpmR7yn { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;color: rgb(57, 75, 86);font-size: 16px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-Nw4PpmR7yn { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;color: rgb(57, 75, 86);font-size: 16px; } } @media (min-width: 1200px) { .gp-component-id-Nw4PpmR7yn { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;color: rgb(57, 75, 86);font-size: 16px; } }

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

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

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

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

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

 @media (max-width: 639px) { .gp-component-id-WQxlxAEjKN { overflow-y: hidden;overflow-x: hidden;max-width: 480px;height: 100%;box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;border-bottom-right-radius: 4px;border-bottom-left-radius: 4px;border-top-right-radius: 4px;border-top-left-radius: 4px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-WQxlxAEjKN { overflow-y: hidden;overflow-x: hidden;max-width: 480px;height: 100%;box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;border-bottom-right-radius: 4px;border-bottom-left-radius: 4px;border-top-right-radius: 4px;border-top-left-radius: 4px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-WQxlxAEjKN { overflow-y: hidden;overflow-x: hidden;max-width: 480px;height: 100%;box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;border-bottom-right-radius: 4px;border-bottom-left-radius: 4px;border-top-right-radius: 4px;border-top-left-radius: 4px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-WQxlxAEjKN { overflow-y: hidden;overflow-x: hidden;max-width: 480px;height: 100%;box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;border-bottom-right-radius: 4px;border-bottom-left-radius: 4px;border-top-right-radius: 4px;border-top-left-radius: 4px; } } @media (min-width: 1200px) { .gp-component-id-WQxlxAEjKN { overflow-y: hidden;overflow-x: hidden;max-width: 480px;height: 100%;box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;border-bottom-right-radius: 4px;border-bottom-left-radius: 4px;border-top-right-radius: 4px;border-top-left-radius: 4px; } }

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

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

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

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

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

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

 .gp-component-id-e9TGV5_JQ { 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-e9TGV5_JQ { font-size: 42px !important;font-weight: 600 !important;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;overflow-wrap: break-word;font-family: Manrope !important;padding-bottom: 10px;padding-top: 40px;padding-right: 80px;padding-left: 0px;text-align: left;color: rgb(16, 42, 67); } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-e9TGV5_JQ { font-size: 42px !important;font-weight: 600 !important;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;overflow-wrap: break-word;font-family: Manrope !important;padding-bottom: 10px;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-e9TGV5_JQ { font-size: 42px !important;font-weight: 600 !important;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;overflow-wrap: break-word;font-family: Manrope !important;padding-bottom: 10px;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-e9TGV5_JQ { font-size: 42px !important;font-weight: 600 !important;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;overflow-wrap: break-word;font-family: Manrope !important;padding-bottom: 10px;padding-top: 40px;padding-right: 80px;padding-left: 0px;text-align: left;color: rgb(16, 42, 67); } } @media (min-width: 1200px) { .gp-component-id-e9TGV5_JQ { font-size: 42px !important;font-weight: 600 !important;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;overflow-wrap: break-word;font-family: Manrope !important;padding-bottom: 10px;padding-top: 40px;padding-right: 80px;padding-left: 0px;text-align: left;color: rgb(16, 42, 67); } }

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

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

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

 .gp-component-id-u19Xeo_uR7 { color: rgb(57, 75, 86);font-size: 16px;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;overflow-wrap: break-word; } @media (max-width: 639px) { .gp-component-id-u19Xeo_uR7 { color: rgb(57, 75, 86);font-size: 16px;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;overflow-wrap: break-word; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-u19Xeo_uR7 { color: rgb(57, 75, 86);font-size: 16px;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;overflow-wrap: break-word; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-u19Xeo_uR7 { color: rgb(57, 75, 86);font-size: 16px;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;overflow-wrap: break-word; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-u19Xeo_uR7 { color: rgb(57, 75, 86);font-size: 16px;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;overflow-wrap: break-word; } } @media (min-width: 1200px) { .gp-component-id-u19Xeo_uR7 { color: rgb(57, 75, 86);font-size: 16px;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;overflow-wrap: break-word; } }

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

 .gp-component-id-Vywy06mwJY { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word; } @media (max-width: 639px) { .gp-component-id-Vywy06mwJY { margin-left: 0px;margin-bottom: 8px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-size: 20px !important;font-family: Manrope !important;color: rgb(32, 45, 60);font-weight: 700 !important; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-Vywy06mwJY { margin-left: 0px;margin-bottom: 8px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-size: 20px !important;font-family: Manrope !important;color: rgb(32, 45, 60);font-weight: 700 !important; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-Vywy06mwJY { margin-left: 0px;margin-bottom: 8px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-size: 20px !important;font-family: Manrope !important;color: rgb(32, 45, 60);font-weight: 700 !important; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-Vywy06mwJY { margin-left: 0px;margin-bottom: 8px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-size: 20px !important;font-family: Manrope !important;color: rgb(32, 45, 60);font-weight: 700 !important; } } @media (min-width: 1200px) { .gp-component-id-Vywy06mwJY { margin-left: 0px;margin-bottom: 8px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-size: 20px !important;font-family: Manrope !important;color: rgb(32, 45, 60);font-weight: 700 !important; } }

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

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

 @media (max-width: 639px) { .gp-component-id-x8BFLF6oC { overflow-y: hidden;overflow-x: hidden;max-width: 480px;height: 100%;box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;border-bottom-right-radius: 4px;border-bottom-left-radius: 4px;border-top-right-radius: 4px;border-top-left-radius: 4px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-x8BFLF6oC { overflow-y: hidden;overflow-x: hidden;max-width: 480px;height: 100%;box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;border-bottom-right-radius: 4px;border-bottom-left-radius: 4px;border-top-right-radius: 4px;border-top-left-radius: 4px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-x8BFLF6oC { overflow-y: hidden;overflow-x: hidden;max-width: 480px;height: 100%;box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;border-bottom-right-radius: 4px;border-bottom-left-radius: 4px;border-top-right-radius: 4px;border-top-left-radius: 4px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-x8BFLF6oC { overflow-y: hidden;overflow-x: hidden;max-width: 480px;height: 100%;box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;border-bottom-right-radius: 4px;border-bottom-left-radius: 4px;border-top-right-radius: 4px;border-top-left-radius: 4px; } } @media (min-width: 1200px) { .gp-component-id-x8BFLF6oC { overflow-y: hidden;overflow-x: hidden;max-width: 480px;height: 100%;box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;border-bottom-right-radius: 4px;border-bottom-left-radius: 4px;border-top-right-radius: 4px;border-top-left-radius: 4px; } }

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

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

 .gp-component-id-xZBybCBrYd { color: rgb(57, 75, 86);font-size: 16px;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;overflow-wrap: break-word; } @media (max-width: 639px) { .gp-component-id-xZBybCBrYd { color: rgb(57, 75, 86);font-size: 16px;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;overflow-wrap: break-word; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-xZBybCBrYd { color: rgb(57, 75, 86);font-size: 16px;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;overflow-wrap: break-word; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-xZBybCBrYd { color: rgb(57, 75, 86);font-size: 16px;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;overflow-wrap: break-word; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-xZBybCBrYd { color: rgb(57, 75, 86);font-size: 16px;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;overflow-wrap: break-word; } } @media (min-width: 1200px) { .gp-component-id-xZBybCBrYd { color: rgb(57, 75, 86);font-size: 16px;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;overflow-wrap: break-word; } }

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

 .gp-component-id-yEp8f1lS_T { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word; } @media (max-width: 639px) { .gp-component-id-yEp8f1lS_T { margin-left: 0px;margin-bottom: 8px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-size: 20px !important;font-family: Manrope !important;color: rgb(32, 45, 60);font-weight: 700 !important; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-yEp8f1lS_T { margin-left: 0px;margin-bottom: 8px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-size: 20px !important;font-family: Manrope !important;color: rgb(32, 45, 60);font-weight: 700 !important; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-yEp8f1lS_T { margin-left: 0px;margin-bottom: 8px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-size: 20px !important;font-family: Manrope !important;color: rgb(32, 45, 60);font-weight: 700 !important; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-yEp8f1lS_T { margin-left: 0px;margin-bottom: 8px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-size: 20px !important;font-family: Manrope !important;color: rgb(32, 45, 60);font-weight: 700 !important; } } @media (min-width: 1200px) { .gp-component-id-yEp8f1lS_T { margin-left: 0px;margin-bottom: 8px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-size: 20px !important;font-family: Manrope !important;color: rgb(32, 45, 60);font-weight: 700 !important; } }

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

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

 @media (max-width: 639px) { .gp-component-id-dePtKtu6j { overflow-y: hidden;overflow-x: hidden;max-width: 480px;height: 100%;box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;border-bottom-right-radius: 4px;border-bottom-left-radius: 4px;border-top-right-radius: 4px;border-top-left-radius: 4px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-dePtKtu6j { overflow-y: hidden;overflow-x: hidden;max-width: 480px;height: 100%;box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;border-bottom-right-radius: 4px;border-bottom-left-radius: 4px;border-top-right-radius: 4px;border-top-left-radius: 4px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-dePtKtu6j { overflow-y: hidden;overflow-x: hidden;max-width: 480px;height: 100%;box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;border-bottom-right-radius: 4px;border-bottom-left-radius: 4px;border-top-right-radius: 4px;border-top-left-radius: 4px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-dePtKtu6j { overflow-y: hidden;overflow-x: hidden;max-width: 480px;height: 100%;box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;border-bottom-right-radius: 4px;border-bottom-left-radius: 4px;border-top-right-radius: 4px;border-top-left-radius: 4px; } } @media (min-width: 1200px) { .gp-component-id-dePtKtu6j { overflow-y: hidden;overflow-x: hidden;max-width: 480px;height: 100%;box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;border-bottom-right-radius: 4px;border-bottom-left-radius: 4px;border-top-right-radius: 4px;border-top-left-radius: 4px; } }

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

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

 .gp-component-id-TiPMNi0xaA { color: rgb(57, 75, 86);font-size: 16px;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;overflow-wrap: break-word; } @media (max-width: 639px) { .gp-component-id-TiPMNi0xaA { color: rgb(57, 75, 86);font-size: 16px;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;overflow-wrap: break-word; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-TiPMNi0xaA { color: rgb(57, 75, 86);font-size: 16px;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;overflow-wrap: break-word; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-TiPMNi0xaA { color: rgb(57, 75, 86);font-size: 16px;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;overflow-wrap: break-word; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-TiPMNi0xaA { color: rgb(57, 75, 86);font-size: 16px;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;overflow-wrap: break-word; } } @media (min-width: 1200px) { .gp-component-id-TiPMNi0xaA { color: rgb(57, 75, 86);font-size: 16px;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;overflow-wrap: break-word; } }

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

 .gp-component-id-rbJK7fLrkt { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word; } @media (max-width: 639px) { .gp-component-id-rbJK7fLrkt { margin-left: 0px;margin-bottom: 8px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-size: 20px !important;font-family: Manrope !important;color: rgb(32, 45, 60);font-weight: 700 !important; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-rbJK7fLrkt { margin-left: 0px;margin-bottom: 8px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-size: 20px !important;font-family: Manrope !important;color: rgb(32, 45, 60);font-weight: 700 !important; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-rbJK7fLrkt { margin-left: 0px;margin-bottom: 8px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-size: 20px !important;font-family: Manrope !important;color: rgb(32, 45, 60);font-weight: 700 !important; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-rbJK7fLrkt { margin-left: 0px;margin-bottom: 8px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-size: 20px !important;font-family: Manrope !important;color: rgb(32, 45, 60);font-weight: 700 !important; } } @media (min-width: 1200px) { .gp-component-id-rbJK7fLrkt { margin-left: 0px;margin-bottom: 8px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-size: 20px !important;font-family: Manrope !important;color: rgb(32, 45, 60);font-weight: 700 !important; } }

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

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

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

 @media (max-width: 639px) { .gp-component-id-BZHkLuiME { overflow-y: hidden;overflow-x: hidden;max-width: 480px;height: 100%;box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;border-bottom-right-radius: 4px;border-bottom-left-radius: 4px;border-top-right-radius: 4px;border-top-left-radius: 4px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-BZHkLuiME { overflow-y: hidden;overflow-x: hidden;max-width: 480px;height: 100%;box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;border-bottom-right-radius: 4px;border-bottom-left-radius: 4px;border-top-right-radius: 4px;border-top-left-radius: 4px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-BZHkLuiME { overflow-y: hidden;overflow-x: hidden;max-width: 480px;height: 100%;box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;border-bottom-right-radius: 4px;border-bottom-left-radius: 4px;border-top-right-radius: 4px;border-top-left-radius: 4px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-BZHkLuiME { overflow-y: hidden;overflow-x: hidden;max-width: 480px;height: 100%;box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;border-bottom-right-radius: 4px;border-bottom-left-radius: 4px;border-top-right-radius: 4px;border-top-left-radius: 4px; } } @media (min-width: 1200px) { .gp-component-id-BZHkLuiME { overflow-y: hidden;overflow-x: hidden;max-width: 480px;height: 100%;box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;border-bottom-right-radius: 4px;border-bottom-left-radius: 4px;border-top-right-radius: 4px;border-top-left-radius: 4px; } }

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

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

 .gp-component-id-Zml6DVSRZq { color: rgb(57, 75, 86);font-size: 16px;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;overflow-wrap: break-word; } @media (max-width: 639px) { .gp-component-id-Zml6DVSRZq { color: rgb(57, 75, 86);font-size: 16px;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;overflow-wrap: break-word; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-Zml6DVSRZq { color: rgb(57, 75, 86);font-size: 16px;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;overflow-wrap: break-word; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-Zml6DVSRZq { color: rgb(57, 75, 86);font-size: 16px;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;overflow-wrap: break-word; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-Zml6DVSRZq { color: rgb(57, 75, 86);font-size: 16px;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;overflow-wrap: break-word; } } @media (min-width: 1200px) { .gp-component-id-Zml6DVSRZq { color: rgb(57, 75, 86);font-size: 16px;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;overflow-wrap: break-word; } }

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

 .gp-component-id-Vkujlr61yM { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word; } @media (max-width: 639px) { .gp-component-id-Vkujlr61yM { margin-left: 0px;margin-bottom: 8px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-size: 20px !important;font-family: Manrope !important;color: rgb(32, 45, 60);font-weight: 700 !important; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-Vkujlr61yM { margin-left: 0px;margin-bottom: 8px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-size: 20px !important;font-family: Manrope !important;color: rgb(32, 45, 60);font-weight: 700 !important; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-Vkujlr61yM { margin-left: 0px;margin-bottom: 8px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-size: 20px !important;font-family: Manrope !important;color: rgb(32, 45, 60);font-weight: 700 !important; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-Vkujlr61yM { margin-left: 0px;margin-bottom: 8px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-size: 20px !important;font-family: Manrope !important;color: rgb(32, 45, 60);font-weight: 700 !important; } } @media (min-width: 1200px) { .gp-component-id-Vkujlr61yM { margin-left: 0px;margin-bottom: 8px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-size: 20px !important;font-family: Manrope !important;color: rgb(32, 45, 60);font-weight: 700 !important; } }

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

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

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

 @media (max-width: 639px) { .gp-component-id-nmSvNanX8 { overflow-y: hidden;overflow-x: hidden;max-width: 480px;height: 100%;box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;border-bottom-right-radius: 4px;border-bottom-left-radius: 4px;border-top-right-radius: 4px;border-top-left-radius: 4px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-nmSvNanX8 { overflow-y: hidden;overflow-x: hidden;max-width: 480px;height: 100%;box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;border-bottom-right-radius: 4px;border-bottom-left-radius: 4px;border-top-right-radius: 4px;border-top-left-radius: 4px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-nmSvNanX8 { overflow-y: hidden;overflow-x: hidden;max-width: 480px;height: 100%;box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;border-bottom-right-radius: 4px;border-bottom-left-radius: 4px;border-top-right-radius: 4px;border-top-left-radius: 4px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-nmSvNanX8 { overflow-y: hidden;overflow-x: hidden;max-width: 480px;height: 100%;box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;border-bottom-right-radius: 4px;border-bottom-left-radius: 4px;border-top-right-radius: 4px;border-top-left-radius: 4px; } } @media (min-width: 1200px) { .gp-component-id-nmSvNanX8 { overflow-y: hidden;overflow-x: hidden;max-width: 480px;height: 100%;box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;border-bottom-right-radius: 4px;border-bottom-left-radius: 4px;border-top-right-radius: 4px;border-top-left-radius: 4px; } }

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

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

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

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

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

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

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

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

 .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-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: 80px;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: 40px;padding-left: 40px; } } @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-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-piLmJQJhH { 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-piLmJQJhH { 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;display: inline-flex;text-align: center; } .gp-component-id-piLmJQJhH:hover,.gp-component-id-piLmJQJhH.gp-hover { background-color: rgb(120, 136, 155); } .gp-component-id-piLmJQJhH:active,.gp-component-id-piLmJQJhH.gp-active { background-color: rgb(32, 45, 60); } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-piLmJQJhH { 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;display: inline-flex;text-align: center; } .gp-component-id-piLmJQJhH:hover,.gp-component-id-piLmJQJhH.gp-hover { background-color: rgb(120, 136, 155); } .gp-component-id-piLmJQJhH:active,.gp-component-id-piLmJQJhH.gp-active { background-color: rgb(32, 45, 60); } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-piLmJQJhH { 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;display: inline-flex;text-align: center; } .gp-component-id-piLmJQJhH:hover,.gp-component-id-piLmJQJhH.gp-hover { background-color: rgb(120, 136, 155); } .gp-component-id-piLmJQJhH:active,.gp-component-id-piLmJQJhH.gp-active { background-color: rgb(32, 45, 60); } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-piLmJQJhH { 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;display: inline-flex;text-align: center; } .gp-component-id-piLmJQJhH:hover,.gp-component-id-piLmJQJhH.gp-hover { background-color: rgb(120, 136, 155); } .gp-component-id-piLmJQJhH:active,.gp-component-id-piLmJQJhH.gp-active { background-color: rgb(32, 45, 60); } } @media (min-width: 1200px) { .gp-component-id-piLmJQJhH { 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;display: inline-flex;text-align: center; } .gp-component-id-piLmJQJhH:hover,.gp-component-id-piLmJQJhH.gp-hover { background-color: rgb(120, 136, 155); } .gp-component-id-piLmJQJhH:active,.gp-component-id-piLmJQJhH.gp-active { background-color: rgb(32, 45, 60); } }

 .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-LSLGG247B { margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;overflow-wrap: break-word; } @media (max-width: 639px) { .gp-component-id-LSLGG247B { margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;overflow-wrap: break-word;font-size: 20px !important;padding-bottom: 20px;font-family: Inter !important;letter-spacing: 0.05em; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-LSLGG247B { margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;overflow-wrap: break-word;font-size: 20px !important;padding-bottom: 20px;font-family: Inter !important;letter-spacing: 0.05em; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-LSLGG247B { margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;overflow-wrap: break-word;font-size: 20px !important;padding-bottom: 20px;font-family: Inter !important;letter-spacing: 0.05em; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-LSLGG247B { margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;overflow-wrap: break-word;font-size: 20px !important;padding-bottom: 20px;font-family: Inter !important;letter-spacing: 0.05em; } } @media (min-width: 1200px) { .gp-component-id-LSLGG247B { margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;overflow-wrap: break-word;font-size: 20px !important;padding-bottom: 20px;font-family: Inter !important;letter-spacing: 0.05em; } }

 .gp-component-id-oLtfG4T4nn { flex-direction: column;display: flex; } @media (max-width: 639px) { .gp-component-id-oLtfG4T4nn { flex-direction: column;display: flex; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-oLtfG4T4nn { flex-direction: column;display: flex; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-oLtfG4T4nn { flex-direction: column;display: flex; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-oLtfG4T4nn { flex-direction: column;display: flex; } } @media (min-width: 1200px) { .gp-component-id-oLtfG4T4nn { 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: 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: 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: center;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: 40px;padding-top: 40px;padding-left: 40px; } } @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-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-WzxW1ZYa0V4 { width: 100%;height: 100%; } @media (max-width: 639px) { .gp-component-id-WzxW1ZYa0V4 { width: 100%;height: 100%; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-WzxW1ZYa0V4 { width: 100%;height: 100%; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-WzxW1ZYa0V4 { width: 100%;height: 100%; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-WzxW1ZYa0V4 { width: 100%;height: 100%; } } @media (min-width: 1200px) { .gp-component-id-WzxW1ZYa0V4 { width: 100%;height: 100%; } }

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

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

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

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

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

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

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

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

 @media (max-width: 639px) { .gp-component-id-4Bl0kSoxtJ5[data-gp-component] { margin-bottom: 10px; width: 100%; height: 100%; flex-direction: column; justify-content: center; align-items: center; display: flex; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-4Bl0kSoxtJ5[data-gp-component] { margin-bottom: 10px; width: 100%; height: 100%; flex-direction: column; justify-content: center; align-items: center; display: flex; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-4Bl0kSoxtJ5[data-gp-component] { margin-bottom: 0px; width: 100%; height: 100%; flex-direction: column; justify-content: center; align-items: flex-start; display: flex; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-4Bl0kSoxtJ5[data-gp-component] { width: 100%; height: 100%; flex-direction: column; justify-content: center; align-items: flex-start; display: flex; } } @media (min-width: 1200px) { .gp-component-id-4Bl0kSoxtJ5[data-gp-component] { width: 100%; height: 100%; flex-direction: column; justify-content: center; align-items: flex-start; display: flex; } }

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

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

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

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

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

 @media (max-width: 639px) { .gp-component-id-W0s_RCAg42e[data-gp-component] { margin-bottom: 10px; width: 100%; height: 100%; flex-direction: column; justify-content: center; align-items: center; display: flex; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-W0s_RCAg42e[data-gp-component] { margin-bottom: 10px; width: 100%; height: 100%; flex-direction: column; justify-content: center; align-items: center; display: flex; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-W0s_RCAg42e[data-gp-component] { margin-bottom: 0px; width: 100%; height: 100%; flex-direction: column; justify-content: center; align-items: flex-start; display: flex; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-W0s_RCAg42e[data-gp-component] { width: 100%; height: 100%; flex-direction: column; justify-content: center; align-items: flex-start; display: flex; } } @media (min-width: 1200px) { .gp-component-id-W0s_RCAg42e[data-gp-component] { width: 100%; height: 100%; flex-direction: column; justify-content: center; align-items: flex-start; display: flex; } }

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

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

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

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

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

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

 @media (max-width: 639px) { .gp-component-id-5DoW3A4UE30[data-gp-component] { margin-bottom: 10px; width: 100%; height: 100%; flex-direction: column; justify-content: center; align-items: center; display: flex; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-5DoW3A4UE30[data-gp-component] { margin-bottom: 10px; width: 100%; height: 100%; flex-direction: column; justify-content: center; align-items: center; display: flex; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-5DoW3A4UE30[data-gp-component] { margin-bottom: 0px; width: 100%; height: 100%; flex-direction: column; justify-content: center; align-items: flex-start; display: flex; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-5DoW3A4UE30[data-gp-component] { width: 100%; height: 100%; flex-direction: column; justify-content: center; align-items: flex-start; display: flex; } } @media (min-width: 1200px) { .gp-component-id-5DoW3A4UE30[data-gp-component] { width: 100%; height: 100%; flex-direction: column; justify-content: center; align-items: flex-start; display: flex; } }

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

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

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

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

 @media (max-width: 639px) { .gp-component-id-ilu0HpOSMS[data-gp-component] { margin-bottom: 10px; width: 100%; height: 100%; flex-direction: column; justify-content: center; align-items: center; display: flex; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-ilu0HpOSMS[data-gp-component] { margin-bottom: 10px; width: 100%; height: 100%; flex-direction: column; justify-content: center; align-items: center; display: flex; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-ilu0HpOSMS[data-gp-component] { margin-bottom: 0px; width: 100%; height: 100%; flex-direction: column; justify-content: center; align-items: flex-start; display: flex; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-ilu0HpOSMS[data-gp-component] { width: 100%; height: 100%; flex-direction: column; justify-content: center; align-items: flex-start; display: flex; } } @media (min-width: 1200px) { .gp-component-id-ilu0HpOSMS[data-gp-component] { width: 100%; height: 100%; flex-direction: column; justify-content: center; align-items: flex-start; display: flex; } }

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

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

 @media (max-width: 639px) { [data-gp-text] .gp-component-id-FeTNobiXNL { font-size: 18px; color: rgba(57, 75, 86, 1); text-align: center; line-height: 1.5; cursor: text; box-sizing: border-box; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-FeTNobiXNL { font-size: 18px; color: rgba(57, 75, 86, 1); text-align: center; line-height: 1.5; cursor: text; box-sizing: border-box; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-FeTNobiXNL { font-size: 18px; color: rgba(57, 75, 86, 1); text-align: left; line-height: 1.5; cursor: text; box-sizing: border-box; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-FeTNobiXNL { font-size: 18px; color: rgba(57, 75, 86, 1); text-align: left; line-height: 1.5; cursor: text; box-sizing: border-box; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-FeTNobiXNL { font-size: 18px; color: rgba(57, 75, 86, 1); text-align: left; line-height: 1.5; cursor: text; box-sizing: border-box; } }

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

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

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

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

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

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

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

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

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

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

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

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

 @media (max-width: 639px) { .gp-component-id-OTbIazL0iCG[data-gp-component] { font-size: 24px;color: rgba(243, 243, 243, 1);line-height: 1;background-color: transparent;padding-left: 8px;padding-right: 8px;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-OTbIazL0iCG[data-gp-component] { font-size: 24px;color: rgba(243, 243, 243, 1);line-height: 1;background-color: transparent;padding-left: 8px;padding-right: 8px;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-OTbIazL0iCG[data-gp-component] { font-size: 30px;color: rgba(243, 243, 243, 1);line-height: 1;background-color: transparent;padding-left: 8px;padding-right: 8px;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-OTbIazL0iCG[data-gp-component] { font-size: 30px;color: rgba(243, 243, 243, 1);line-height: 1;background-color: transparent;padding-left: 8px;padding-right: 8px;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial; } } @media (min-width: 1200px) { .gp-component-id-OTbIazL0iCG[data-gp-component] { font-size: 30px;color: rgba(243, 243, 243, 1);line-height: 1;background-color: transparent;padding-left: 8px;padding-right: 8px;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial; } }

 @media (max-width: 639px) { .gp-component-id-4c6RyG7y1sK[data-gp-component] { font-size: 24px;color: rgba(243, 243, 243, 1);line-height: 1;background-color: transparent;padding-left: 8px;padding-right: 8px;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-4c6RyG7y1sK[data-gp-component] { font-size: 24px;color: rgba(243, 243, 243, 1);line-height: 1;background-color: transparent;padding-left: 8px;padding-right: 8px;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-4c6RyG7y1sK[data-gp-component] { font-size: 30px;color: rgba(243, 243, 243, 1);line-height: 1;background-color: transparent;padding-left: 8px;padding-right: 8px;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-4c6RyG7y1sK[data-gp-component] { font-size: 30px;color: rgba(243, 243, 243, 1);line-height: 1;background-color: transparent;padding-left: 8px;padding-right: 8px;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial; } } @media (min-width: 1200px) { .gp-component-id-4c6RyG7y1sK[data-gp-component] { font-size: 30px;color: rgba(243, 243, 243, 1);line-height: 1;background-color: transparent;padding-left: 8px;padding-right: 8px;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial; } }

 @media (max-width: 639px) { .gp-component-id-3Q_DwbUyujR[data-gp-component] { font-size: 24px;color: rgba(243, 243, 243, 1);line-height: 1;background-color: transparent;padding-left: 8px;padding-right: 8px;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-3Q_DwbUyujR[data-gp-component] { font-size: 24px;color: rgba(243, 243, 243, 1);line-height: 1;background-color: transparent;padding-left: 8px;padding-right: 8px;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-3Q_DwbUyujR[data-gp-component] { font-size: 30px;color: rgba(243, 243, 243, 1);line-height: 1;background-color: transparent;padding-left: 8px;padding-right: 8px;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-3Q_DwbUyujR[data-gp-component] { font-size: 30px;color: rgba(243, 243, 243, 1);line-height: 1;background-color: transparent;padding-left: 8px;padding-right: 8px;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial; } } @media (min-width: 1200px) { .gp-component-id-3Q_DwbUyujR[data-gp-component] { font-size: 30px;color: rgba(243, 243, 243, 1);line-height: 1;background-color: transparent;padding-left: 8px;padding-right: 8px;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial; } }

 @media (max-width: 639px) { .gp-component-id-WImF_LwNQ2_[data-gp-component] { margin-top: 20px;width: auto;flex-direction: row;justify-content: center;align-items: center;display: flex; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-WImF_LwNQ2_[data-gp-component] { width: auto;flex-direction: row;justify-content: center;align-items: center;display: flex; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-WImF_LwNQ2_[data-gp-component] { width: auto;flex-direction: row;justify-content: center;align-items: center;display: flex; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-WImF_LwNQ2_[data-gp-component] { width: auto;flex-direction: row;justify-content: center;align-items: center;display: flex; } } @media (min-width: 1200px) { .gp-component-id-WImF_LwNQ2_[data-gp-component] { width: auto;flex-direction: row;justify-content: center;align-items: center;display: flex; } }

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

 @media (max-width: 639px) { .gp-component-id-MMI7s7H9T0C[data-gp-component] { border-top-width: 1px;border-left-color: rgba(45, 63, 81, 1);border-right-color: rgba(45, 63, 81, 1);border-top-color: rgba(45, 63, 81, 1);border-bottom-color: rgba(45, 63, 81, 1);margin-top: 40px;padding-top: 20px;width: 100%; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-MMI7s7H9T0C[data-gp-component] { border-top-width: 1px;border-left-color: rgba(45, 63, 81, 1);border-right-color: rgba(45, 63, 81, 1);border-top-color: rgba(45, 63, 81, 1);border-bottom-color: rgba(45, 63, 81, 1);margin-top: 40px;padding-top: 20px;width: 100%; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-MMI7s7H9T0C[data-gp-component] { border-top-width: 1px;border-left-color: rgba(45, 63, 81, 1);border-right-color: rgba(45, 63, 81, 1);border-top-color: rgba(45, 63, 81, 1);border-bottom-color: rgba(45, 63, 81, 1);margin-top: 40px;padding-top: 20px;width: 100%; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-MMI7s7H9T0C[data-gp-component] { border-top-width: 1px;border-left-color: rgba(45, 63, 81, 1);border-right-color: rgba(45, 63, 81, 1);border-top-color: rgba(45, 63, 81, 1);border-bottom-color: rgba(45, 63, 81, 1);margin-top: 40px;padding-top: 20px;width: 100%; } } @media (min-width: 1200px) { .gp-component-id-MMI7s7H9T0C[data-gp-component] { border-top-width: 1px;border-left-color: rgba(45, 63, 81, 1);border-right-color: rgba(45, 63, 81, 1);border-top-color: rgba(45, 63, 81, 1);border-bottom-color: rgba(45, 63, 81, 1);margin-top: 40px;padding-top: 20px;width: 100%; } }

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

 @media (max-width: 639px) { [data-gp-text] .gp-component-id-tb09v8eBAQU { font-size: 20px !important;font-weight: 600 !important;color: rgba(243, 243, 243, 1);text-align: left;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-bottom: 20px; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-tb09v8eBAQU { font-size: 20px !important;font-weight: 600 !important;color: rgba(243, 243, 243, 1);text-align: left;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-bottom: 20px; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-tb09v8eBAQU { font-size: 20px !important;font-weight: 600 !important;color: rgba(243, 243, 243, 1);text-align: left;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-bottom: 20px; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-tb09v8eBAQU { font-size: 20px !important;font-weight: 600 !important;color: rgba(243, 243, 243, 1);text-align: left;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-bottom: 20px; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-tb09v8eBAQU { font-size: 20px !important;font-weight: 600 !important;color: rgba(243, 243, 243, 1);text-align: left;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-bottom: 20px; } }

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

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

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

 @media (max-width: 639px) { [data-gp-text] .gp-component-id-lBy6aUsnNRb { font-size: 20px !important;font-weight: 600 !important;color: rgba(243, 243, 243, 1);text-align: left;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-bottom: 20px; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-lBy6aUsnNRb { font-size: 20px !important;font-weight: 600 !important;color: rgba(243, 243, 243, 1);text-align: left;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-bottom: 20px; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-lBy6aUsnNRb { font-size: 20px !important;font-weight: 600 !important;color: rgba(243, 243, 243, 1);text-align: left;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-bottom: 20px; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-lBy6aUsnNRb { font-size: 20px !important;font-weight: 600 !important;color: rgba(243, 243, 243, 1);text-align: left;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-bottom: 20px; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-lBy6aUsnNRb { font-size: 20px !important;font-weight: 600 !important;color: rgba(243, 243, 243, 1);text-align: left;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-bottom: 20px; } }

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

 @media (max-width: 639px) { [data-gp-text] .gp-component-id-xa4aUzVaHB { font-size: 20px !important;font-weight: 600 !important;color: rgba(243, 243, 243, 1);text-align: left;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-bottom: 20px; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-xa4aUzVaHB { font-size: 20px !important;font-weight: 600 !important;color: rgba(243, 243, 243, 1);text-align: left;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-bottom: 20px; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-xa4aUzVaHB { font-size: 20px !important;font-weight: 600 !important;color: rgba(243, 243, 243, 1);text-align: left;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-bottom: 20px; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-xa4aUzVaHB { font-size: 20px !important;font-weight: 600 !important;color: rgba(243, 243, 243, 1);text-align: left;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-bottom: 20px; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-xa4aUzVaHB { font-size: 20px !important;font-weight: 600 !important;color: rgba(243, 243, 243, 1);text-align: left;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-bottom: 20px; } }

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

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

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

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

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

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

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

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

 @media (max-width: 639px) { .gp-component-id-DTYVoWkVzU[data-gp-component] { 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;background-color: rgba(220, 24, 24, 1);padding-left: 26px;padding-right: 26px;padding-top: 14px;padding-bottom: 14px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-DTYVoWkVzU[data-gp-component] { 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;background-color: rgba(220, 24, 24, 1);padding-left: 26px;padding-right: 26px;padding-top: 14px;padding-bottom: 14px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-DTYVoWkVzU[data-gp-component] { 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;background-color: rgba(220, 24, 24, 1);padding-left: 26px;padding-right: 26px;padding-top: 14px;padding-bottom: 14px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-DTYVoWkVzU[data-gp-component] { 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;background-color: rgba(220, 24, 24, 1);padding-left: 26px;padding-right: 26px;padding-top: 14px;padding-bottom: 14px; } } @media (min-width: 1200px) { .gp-component-id-DTYVoWkVzU[data-gp-component] { 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;background-color: rgba(220, 24, 24, 1);padding-left: 26px;padding-right: 26px;padding-top: 14px;padding-bottom: 14px; } }

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

 .gp-component-id-RKEfRYt7v_ { margin-left: 0px; margin-bottom: 0px; margin-right: 0px; margin-top: 0px; line-height: 1.15; font-size: 1.5rem; 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-y: initial; background-repeat-x: initial; background-size: initial; background-position-y: initial; background-position-x: initial; background-image: initial; cursor: pointer; display: inline-flex; align-items: center; color: rgb(255, 255, 255); max-width: calc(100% + 1rem); } @media (max-width: 639px) { .gp-component-id-RKEfRYt7v_ { margin-left: 0px; margin-bottom: 0px; margin-right: 0px; margin-top: 0px; line-height: 1.15; font-size: 1.5rem; 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-y: initial; background-repeat-x: initial; background-size: initial; background-position-y: initial; background-position-x: initial; background-image: initial; cursor: pointer; display: inline-flex; align-items: center; color: rgb(255, 255, 255); max-width: calc(100% + 1rem); } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-RKEfRYt7v_ { margin-left: 0px; margin-bottom: 0px; margin-right: 0px; margin-top: 0px; line-height: 1.15; font-size: 1.5rem; 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-y: initial; background-repeat-x: initial; background-size: initial; background-position-y: initial; background-position-x: initial; background-image: initial; cursor: pointer; display: inline-flex; align-items: center; color: rgb(255, 255, 255); max-width: calc(100% + 1rem); } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-RKEfRYt7v_ { margin-left: 0px; margin-bottom: 0px; margin-right: 0px; margin-top: 0px; line-height: 1.15; font-size: 1.5rem; 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-y: initial; background-repeat-x: initial; background-size: initial; background-position-y: initial; background-position-x: initial; background-image: initial; cursor: pointer; display: inline-flex; align-items: center; color: rgb(255, 255, 255); max-width: calc(100% + 1rem); } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-RKEfRYt7v_ { margin-left: 0px; margin-bottom: 0px; margin-right: 0px; margin-top: 0px; line-height: 1.15; font-size: 1.5rem; 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-y: initial; background-repeat-x: initial; background-size: initial; background-position-y: initial; background-position-x: initial; background-image: initial; cursor: pointer; display: none; align-items: center; color: rgb(255, 255, 255); max-width: calc(100% + 1rem); } } @media (min-width: 1200px) { .gp-component-id-RKEfRYt7v_ { margin-left: 0px; margin-bottom: 0px; margin-right: 0px; margin-top: 0px; line-height: 1.15; font-size: 1.5rem; 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-y: initial; background-repeat-x: initial; background-size: initial; background-position-y: initial; background-position-x: initial; background-image: initial; cursor: pointer; display: none; align-items: center; color: rgb(255, 255, 255); max-width: calc(100% + 1rem); } }

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

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

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

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

 @media (max-width: 639px) { .gp-component-id-_sL5YXghSB[data-gp-component] { font-size: 18px;color: rgba(0, 0, 0, 1);text-align: right;background-color: rgba(255, 255, 255, 1);margin-right: 16px;max-width: NaNpx;animation-fill-mode: both;animation-duration: 1s; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-_sL5YXghSB[data-gp-component] { font-size: 18px;color: rgba(0, 0, 0, 1);text-align: right;background-color: rgba(255, 255, 255, 1);margin-right: 16px;max-width: NaNpx;animation-fill-mode: both;animation-duration: 1s; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-_sL5YXghSB[data-gp-component] { font-size: 18px;color: rgba(0, 0, 0, 1);text-align: right;background-color: rgba(255, 255, 255, 1);margin-right: 16px;max-width: NaNpx;animation-fill-mode: both;animation-duration: 1s; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-_sL5YXghSB[data-gp-component] { font-size: 18px;color: rgba(0, 0, 0, 1);text-align: right;background-color: rgba(255, 255, 255, 1);margin-right: 16px;max-width: NaNpx;animation-fill-mode: both;animation-duration: 1s; } } @media (min-width: 1200px) { .gp-component-id-_sL5YXghSB[data-gp-component] { font-size: 18px;color: rgba(0, 0, 0, 1);text-align: right;background-color: rgba(255, 255, 255, 1);margin-right: 16px;max-width: NaNpx;animation-fill-mode: both;animation-duration: 1s; } }

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

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

 .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%; object-position: center center; object-fit: cover; } @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%; object-position: center center; object-fit: cover; } } @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%; object-position: center center; object-fit: cover; } } @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%; object-position: center center; object-fit: cover; } } @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%; object-position: center center; object-fit: cover; } } @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%; object-position: center center; object-fit: cover; } }

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

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

 .gp-component-id-1Gz6LDkh5E { padding-bottom: 1.25rem; padding-left: 1rem; padding-right: 1rem; position: relative; animation-duration: 1s; animation-fill-mode: both; max-width: calc(100% + 1rem); } @media (max-width: 639px) { .gp-component-id-1Gz6LDkh5E { padding-bottom: 1.25rem; padding-left: 1rem; padding-right: 1rem; position: relative; animation-duration: 1s; animation-fill-mode: both; max-width: calc(100% + 1rem); } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-1Gz6LDkh5E { padding-bottom: 1.25rem; padding-left: 1rem; padding-right: 1rem; position: relative; animation-duration: 1s; animation-fill-mode: both; max-width: calc(100% + 1rem); } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-1Gz6LDkh5E { padding-bottom: 0px; padding-left: 1.75rem; padding-right: 1.75rem; position: relative; animation-duration: 1s; animation-fill-mode: both; max-width: calc(100% + 1rem); } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-1Gz6LDkh5E { padding-bottom: 0px; padding-left: 1.75rem; padding-right: 1.75rem; position: relative; animation-duration: 1s; animation-fill-mode: both; max-width: calc(100% + 1rem); } } @media (min-width: 1200px) { .gp-component-id-1Gz6LDkh5E { padding-bottom: 0px; padding-left: 1.75rem; padding-right: 1.75rem; position: relative; animation-duration: 1s; animation-fill-mode: both; max-width: calc(100% + 1rem); } }

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

