
      
    


      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) { [data-gp-text] .gp-component-id-XnHEkt0_YF { font-size: 32px !important;font-weight: 600 !important;color: rgb(255, 255, 255);text-align: left;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;overflow-wrap: break-word; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-XnHEkt0_YF { font-size: 38px !important;font-weight: 600 !important;color: rgb(255, 255, 255);text-align: left;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;overflow-wrap: break-word; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-XnHEkt0_YF { font-size: 30px !important;font-weight: 600 !important;color: rgb(255, 255, 255);text-align: left;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;overflow-wrap: break-word; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-XnHEkt0_YF { font-size: 38px !important;font-weight: 600 !important;color: rgb(255, 255, 255);text-align: left;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;overflow-wrap: break-word; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-XnHEkt0_YF { font-size: 38px !important;font-weight: 600 !important;color: rgb(255, 255, 255);text-align: left;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;overflow-wrap: break-word; } }

 @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: 0px;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: 0px;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) { .gp-component-id-L0DSIPsPF[data-gp-component] { padding-left: 20px;padding-right: 20px;padding-top: 40px;padding-bottom: 40px;z-index: 99 !important;min-height: 50px;position: relative; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-L0DSIPsPF[data-gp-component] { padding-left: 20px;padding-right: 20px;padding-top: 60px;padding-bottom: 60px;z-index: 99 !important;min-height: 50px;position: relative; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-L0DSIPsPF[data-gp-component] { padding-left: 20px;padding-right: 20px;padding-top: 60px;padding-bottom: 60px;z-index: 99 !important;min-height: 50px;position: relative; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-L0DSIPsPF[data-gp-component] { padding-left: 20px;padding-right: 20px;padding-top: 80px;padding-bottom: 80px;z-index: 99 !important;min-height: 50px;position: relative; } } @media (min-width: 1200px) { .gp-component-id-L0DSIPsPF[data-gp-component] { padding-left: 20px;padding-right: 20px;padding-top: 120px;padding-bottom: 120px;z-index: 99 !important;min-height: 50px;position: relative; } }

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

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

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

 @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: 345px;height: 537px;max-width: 480px;overflow-x: hidden;overflow-y: 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;height: 100%;max-width: 480px;overflow-x: hidden;overflow-y: 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;height: 100%;max-width: 480px;overflow-x: hidden;overflow-y: 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;height: 100%;max-width: 480px;overflow-x: hidden;overflow-y: 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;height: 100%;max-width: 480px;overflow-x: hidden;overflow-y: hidden; } }

 @media (max-width: 639px) { .gp-component-id-5_2CbiPmSZ[data-gp-component] { padding-left: 20px;padding-right: 20px;padding-bottom: 80px;max-width: 100%;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-left: 80px;padding-right: 80px;padding-bottom: 80px;max-width: 100%;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-left: 80px;padding-right: 80px;padding-bottom: 80px;max-width: 100%;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-left: 80px;padding-right: 80px;padding-bottom: 80px;max-width: 100%;z-index: auto;position: relative;min-height: 50px; } } @media (min-width: 1200px) { .gp-component-id-5_2CbiPmSZ[data-gp-component] { padding-left: 80px;padding-right: 80px;padding-bottom: 80px;max-width: 100%;z-index: auto;position: relative;min-height: 50px; } }

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

 @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: 100%;height: 231px;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: 354px;height: 231px;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: 239px;height: 231px;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: 354px;height: 231px;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: 354px;height: 231px;max-width: 480px; } }

 @media (max-width: 639px) { .gp-component-id-V6tl7H6h1C[data-gp-component] { padding-left: 0px;padding-right: 0px;width: 100%; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-V6tl7H6h1C[data-gp-component] { padding-left: 40px;padding-right: 40px;width: 100%; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-V6tl7H6h1C[data-gp-component] { padding-left: 48px;padding-right: 48px;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-zVnFgd57A[data-gp-component] { padding-left: 20px;padding-right: 20px;padding-bottom: 80px;z-index: 99 !important;position: relative;min-height: 50px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-zVnFgd57A[data-gp-component] { padding-left: 40px;padding-right: 40px;padding-bottom: 80px;z-index: 99 !important;position: relative;min-height: 50px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-zVnFgd57A[data-gp-component] { padding-left: 40px;padding-right: 40px;padding-bottom: 80px;z-index: 99 !important;position: relative;min-height: 50px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-zVnFgd57A[data-gp-component] { padding-left: 120px;padding-right: 120px;padding-bottom: 80px;z-index: 99 !important;position: relative;min-height: 50px; } } @media (min-width: 1200px) { .gp-component-id-zVnFgd57A[data-gp-component] { padding-left: 120px;padding-right: 120px;padding-bottom: 80px;z-index: 99 !important;position: relative;min-height: 50px; } }

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

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

 @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: 10px;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: 54px;padding-right: 0px;padding-top: 10px;padding-bottom: 16px;list-style-position: inside;list-style-type: inherit; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-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) { [data-gp-text] .gp-component-id-92th9Sgwlk { margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 20px;overflow-wrap: break-word; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-92th9Sgwlk { margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 40px;overflow-wrap: break-word; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-92th9Sgwlk { margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 80px;overflow-wrap: break-word; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-92th9Sgwlk { margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 80px;overflow-wrap: break-word; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-92th9Sgwlk { margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 80px;overflow-wrap: break-word; } }

 @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;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 20px;padding-right: 20px;padding-top: 40px;padding-bottom: 10px;overflow-wrap: break-word; } } @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;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 40px;padding-right: 40px;padding-top: 40px;padding-bottom: 10px;overflow-wrap: break-word; } } @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;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 80px;padding-right: 80px;padding-top: 40px;padding-bottom: 10px;overflow-wrap: break-word; } } @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;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 80px;padding-right: 80px;padding-top: 40px;padding-bottom: 10px;overflow-wrap: break-word; } } @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;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 80px;padding-right: 80px;padding-top: 40px;padding-bottom: 10px;overflow-wrap: break-word; } }

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

 @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: 20px;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: 40px;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) { .gp-component-id-Z3qB4GAS6[data-gp-component] { margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 0px;padding-right: 0px;padding-top: 8px;padding-bottom: 8px;list-style-type: inherit;list-style-position: inside; } } @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: 40px;padding-right: 0px;padding-top: 8px;padding-bottom: 8px;list-style-type: inherit;list-style-position: inside; } } @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-type: inherit;list-style-position: inside; } } @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-type: inherit;list-style-position: inside; } } @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-type: inherit;list-style-position: inside; } }

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

 @media (max-width: 639px) { [data-gp-text] .gp-component-id-NX6wF6yF6 { font-size: 18px !important;letter-spacing: 0.05em;font-family: Inter !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-bottom: 20px;font-style: italic !important;text-decoration-line: inherit;overflow-wrap: break-word; } } @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;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-bottom: 20px;font-style: italic !important;text-decoration-line: inherit;overflow-wrap: break-word; } } @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;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-bottom: 20px;font-style: italic !important;text-decoration-line: inherit;overflow-wrap: break-word; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-NX6wF6yF6 { font-size: 16px !important;letter-spacing: 0.05em;font-family: Inter !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-bottom: 20px;font-style: italic !important;text-decoration-line: inherit;overflow-wrap: break-word; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-NX6wF6yF6 { font-size: 20px !important;letter-spacing: 0.05em;font-family: Inter !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-bottom: 20px;font-style: italic !important;text-decoration-line: inherit;overflow-wrap: break-word; } }

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

 @media (max-width: 639px) { .gp-component-id-CN6HYQArm[data-gp-component] { border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-CN6HYQArm[data-gp-component] { border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 610px;height: 231px;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-CN6HYQArm[data-gp-component] { border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-CN6HYQArm[data-gp-component] { border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 137px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover; } } @media (min-width: 1200px) { .gp-component-id-CN6HYQArm[data-gp-component] { border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover; } }

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

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

 @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: 354px;height: 219px;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: 354px;height: 219px;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: 354px;height: 219px;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: 354px;height: 219px;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: 354px;height: 219px;max-width: 100%; } }

 @media (max-width: 639px) { [data-gp-text] .gp-component-id-GhDXIA9qnL { 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-GhDXIA9qnL { 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-GhDXIA9qnL { 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-GhDXIA9qnL { 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-GhDXIA9qnL { 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) { .gp-component-id-iPwsEcDiN[data-gp-component] { border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 264px;height: 180px;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: 264px;height: 180px;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: 264px;height: 180px;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: 264px;height: 180px;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: 264px;height: 180px;max-width: 100%; } }

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

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

 @media (max-width: 639px) { [data-gp-text] .gp-component-id-FeTNobiXNL { text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;overflow-wrap: break-word;cursor: text;box-sizing: border-box; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-FeTNobiXNL { text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;overflow-wrap: break-word;cursor: text;box-sizing: border-box; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-FeTNobiXNL { text-align: left;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;overflow-wrap: break-word;cursor: text;box-sizing: border-box; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-FeTNobiXNL { text-align: left;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;overflow-wrap: break-word;cursor: text;box-sizing: border-box; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-FeTNobiXNL { text-align: left;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;overflow-wrap: break-word;cursor: text;box-sizing: border-box; } }

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

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

 .gp-component-id-3Q_DwbUyujR { display: inline-block;color: inherit;background-color: transparent;cursor: pointer;line-height: 1;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 { display: inline-block;color: rgb(243, 243, 243);background-color: transparent;cursor: pointer;line-height: 1;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;font-size: 24px;padding-left: 8px;padding-right: 8px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-3Q_DwbUyujR { display: inline-block;color: rgb(243, 243, 243);background-color: transparent;cursor: pointer;line-height: 1;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;font-size: 24px;padding-left: 8px;padding-right: 8px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-3Q_DwbUyujR { display: inline-block;color: rgb(243, 243, 243);background-color: transparent;cursor: pointer;line-height: 1;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;font-size: 30px;padding-left: 8px;padding-right: 8px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-3Q_DwbUyujR { display: inline-block;color: rgb(243, 243, 243);background-color: transparent;cursor: pointer;line-height: 1;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;font-size: 30px;padding-left: 8px;padding-right: 8px; } } @media (min-width: 1200px) { .gp-component-id-3Q_DwbUyujR { display: inline-block;color: rgb(243, 243, 243);background-color: transparent;cursor: pointer;line-height: 1;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;font-size: 30px;padding-left: 8px;padding-right: 8px; } }

 @media (max-width: 639px) { .gp-component-id-WImF_LwNQ2_ { 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_ { 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_ { 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_ { width: auto;flex-direction: row;justify-content: center;align-items: center;display: flex; } } @media (min-width: 1200px) { .gp-component-id-WImF_LwNQ2_ { width: auto;flex-direction: row;justify-content: center;align-items: center;display: flex; } }

 .gp-component-id-52YXxuWCvIP { overflow-wrap: break-word;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px; } @media (max-width: 639px) { .gp-component-id-52YXxuWCvIP { overflow-wrap: break-word;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;color: rgb(243, 243, 243);text-align: center; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-52YXxuWCvIP { overflow-wrap: break-word;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;color: rgb(243, 243, 243);text-align: center; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-52YXxuWCvIP { overflow-wrap: break-word;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;color: rgb(243, 243, 243);text-align: center; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-52YXxuWCvIP { overflow-wrap: break-word;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;color: rgb(243, 243, 243);text-align: center; } } @media (min-width: 1200px) { .gp-component-id-52YXxuWCvIP { overflow-wrap: break-word;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;color: rgb(243, 243, 243);text-align: center; } }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

 .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-EF5bDuqt_5k { overflow-wrap: break-word;font-weight: bolder; } @media (max-width: 639px) { .gp-component-id-EF5bDuqt_5k { overflow-wrap: break-word;font-weight: bolder; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-EF5bDuqt_5k { overflow-wrap: break-word;font-weight: bolder; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-EF5bDuqt_5k { overflow-wrap: break-word;font-weight: bolder; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-EF5bDuqt_5k { overflow-wrap: break-word;font-weight: bolder; } } @media (min-width: 1200px) { .gp-component-id-EF5bDuqt_5k { overflow-wrap: break-word;font-weight: bolder; } }

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

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

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

 @media (max-width: 639px) { .gp-component-id-Cf0DVKgQmP { 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 { 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 { 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 { margin-right: 0px;padding-left: 20px;width: 328px;height: 293px;max-width: 1054px; } } @media (min-width: 1200px) { .gp-component-id-Cf0DVKgQmP { margin-right: 0px;padding-left: 20px;width: 328px;height: 293px;max-width: 1054px; } }

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

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

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

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

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

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

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

 .gp-component-id-r02BVPEiU6 { color: inherit;background-color: transparent;cursor: pointer;align-items: center;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial; } @media (max-width: 639px) { .gp-component-id-r02BVPEiU6 { color: rgb(47, 93, 126);background-color: rgb(255, 255, 255);cursor: pointer;align-items: center;text-decoration-line: inherit;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;font-size: 16px !important;font-weight: 500 !important;font-family: Inter !important;font-style: inherit !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);margin-right: 80px;padding-left: 26px;padding-right: 26px;padding-top: 14px;padding-bottom: 14px;display: inline-flex; } .gp-component-id-r02BVPEiU6:hover,.gp-component-id-r02BVPEiU6.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 { color: rgb(47, 93, 126);background-color: rgb(255, 255, 255);cursor: pointer;align-items: center;text-decoration-line: inherit;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;font-size: 16px !important;font-weight: 500 !important;font-family: Inter !important;font-style: inherit !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);margin-right: 80px;padding-left: 26px;padding-right: 26px;padding-top: 14px;padding-bottom: 14px;display: inline-flex; } .gp-component-id-r02BVPEiU6:hover,.gp-component-id-r02BVPEiU6.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 { color: rgb(47, 93, 126);background-color: rgb(255, 255, 255);cursor: pointer;align-items: center;text-decoration-line: inherit;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;font-size: 16px !important;font-weight: 500 !important;font-family: Inter !important;font-style: inherit !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);margin-right: 80px;padding-left: 26px;padding-right: 26px;padding-top: 14px;padding-bottom: 14px;display: inline-flex; } .gp-component-id-r02BVPEiU6:hover,.gp-component-id-r02BVPEiU6.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 { color: rgb(47, 93, 126);background-color: rgb(255, 255, 255);cursor: pointer;align-items: center;text-decoration-line: inherit;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;font-size: 16px !important;font-weight: 500 !important;font-family: Inter !important;font-style: inherit !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);margin-right: 80px;padding-left: 26px;padding-right: 26px;padding-top: 14px;padding-bottom: 14px;display: inline-flex; } .gp-component-id-r02BVPEiU6:hover,.gp-component-id-r02BVPEiU6.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 { color: rgb(47, 93, 126);background-color: rgb(255, 255, 255);cursor: pointer;align-items: center;text-decoration-line: inherit;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;font-size: 16px !important;font-weight: 500 !important;font-family: Inter !important;font-style: inherit !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);margin-right: 80px;padding-left: 26px;padding-right: 26px;padding-top: 14px;padding-bottom: 14px;display: inline-flex; } .gp-component-id-r02BVPEiU6:hover,.gp-component-id-r02BVPEiU6.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) { .gp-component-id-G3Ytr10Pq9 { 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 { 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 { 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 { 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 { font-size: 18px !important;font-family: Inter !important;width: 100%;height: 100%;flex-direction: row;justify-content: center;align-items: center;display: flex; } }

 .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-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;font-family: "Source Sans Pro", sans-serif !important;font-weight: 700 !important;cursor: text;box-sizing: border-box;color: rgb(255, 255, 255); } } @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;font-family: "Source Sans Pro", sans-serif !important;font-weight: 700 !important;cursor: text;box-sizing: border-box;color: rgb(255, 255, 255); } } @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;font-family: "Source Sans Pro", sans-serif !important;font-weight: 700 !important;cursor: text;box-sizing: border-box;color: rgb(255, 255, 255); } } @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;font-family: "Source Sans Pro", sans-serif !important;font-weight: 700 !important;cursor: text;box-sizing: border-box;color: rgb(255, 255, 255); } } @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;font-family: "Source Sans Pro", sans-serif !important;font-weight: 700 !important;cursor: text;box-sizing: border-box;color: rgb(255, 255, 255); } }

 .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;font-family: "Source Sans Pro", sans-serif !important;font-weight: 700 !important;box-sizing: border-box;cursor: text;color: rgb(255, 255, 255); } } @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;font-family: "Source Sans Pro", sans-serif !important;font-weight: 700 !important;box-sizing: border-box;cursor: text;color: rgb(255, 255, 255); } } @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;font-family: "Source Sans Pro", sans-serif !important;font-weight: 700 !important;box-sizing: border-box;cursor: text;color: rgb(255, 255, 255); } } @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;font-family: "Source Sans Pro", sans-serif !important;font-weight: 700 !important;box-sizing: border-box;cursor: text;color: rgb(255, 255, 255); } } @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;font-family: "Source Sans Pro", sans-serif !important;font-weight: 700 !important;box-sizing: border-box;cursor: text;color: rgb(255, 255, 255); } }

 .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;font-family: "Source Sans Pro", sans-serif !important;font-weight: 700 !important;box-sizing: border-box;cursor: text;color: rgb(255, 255, 255); } } @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;font-family: "Source Sans Pro", sans-serif !important;font-weight: 700 !important;box-sizing: border-box;cursor: text;color: rgb(255, 255, 255); } } @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;font-family: "Source Sans Pro", sans-serif !important;font-weight: 700 !important;box-sizing: border-box;cursor: text;color: rgb(255, 255, 255); } } @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;font-family: "Source Sans Pro", sans-serif !important;font-weight: 700 !important;box-sizing: border-box;cursor: text;color: rgb(255, 255, 255); } } @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;font-family: "Source Sans Pro", sans-serif !important;font-weight: 700 !important;box-sizing: border-box;cursor: text;color: rgb(255, 255, 255); } }

 .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;font-family: "Source Sans Pro", sans-serif !important;font-weight: 700 !important;box-sizing: border-box;cursor: text;color: rgb(255, 255, 255); } } @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;font-family: "Source Sans Pro", sans-serif !important;font-weight: 700 !important;box-sizing: border-box;cursor: text;color: rgb(255, 255, 255); } } @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;font-family: "Source Sans Pro", sans-serif !important;font-weight: 700 !important;box-sizing: border-box;cursor: text;color: rgb(255, 255, 255); } } @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;font-family: "Source Sans Pro", sans-serif !important;font-weight: 700 !important;box-sizing: border-box;cursor: text;color: rgb(255, 255, 255); } } @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;font-family: "Source Sans Pro", sans-serif !important;font-weight: 700 !important;box-sizing: border-box;cursor: text;color: rgb(255, 255, 255); } }

 .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;font-family: "Source Sans Pro", sans-serif !important;font-weight: 700 !important;box-sizing: border-box;cursor: text;color: rgb(255, 255, 255); } } @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;font-family: "Source Sans Pro", sans-serif !important;font-weight: 700 !important;box-sizing: border-box;cursor: text;color: rgb(255, 255, 255); } } @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;font-family: "Source Sans Pro", sans-serif !important;font-weight: 700 !important;box-sizing: border-box;cursor: text;color: rgb(255, 255, 255); } } @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;font-family: "Source Sans Pro", sans-serif !important;font-weight: 700 !important;box-sizing: border-box;cursor: text;color: rgb(255, 255, 255); } } @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;font-family: "Source Sans Pro", sans-serif !important;font-weight: 700 !important;box-sizing: border-box;cursor: text;color: rgb(255, 255, 255); } }

 .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; } }

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

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

 .gp-component-id-yZvCyBgkdL { overflow-wrap: break-word;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 { overflow-wrap: break-word;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 { overflow-wrap: break-word;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 { overflow-wrap: break-word;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 { overflow-wrap: break-word;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 { overflow-wrap: break-word;margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 16px;color: rgb(57, 75, 86); } }

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

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

 .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; } }

 @media (max-width: 639px) { .gp-component-id-KsLKf6Klw { 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 { 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 { 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 { 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 { 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: 639px) { .gp-component-id-0JwmBO7X_7O { height: 100%;max-width: 480px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-0JwmBO7X_7O { height: 100%;max-width: 480px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-0JwmBO7X_7O { height: 100%;max-width: 480px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-0JwmBO7X_7O { height: 100%;max-width: 480px; } } @media (min-width: 1200px) { .gp-component-id-0JwmBO7X_7O { height: 100%;max-width: 480px; } }

 .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-PVkJMRiDy8 { overflow-wrap: break-word;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 { overflow-wrap: break-word;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 { overflow-wrap: break-word;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 { overflow-wrap: break-word;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 { overflow-wrap: break-word;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 { overflow-wrap: break-word;margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 16px;color: rgb(57, 75, 86); } }

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

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

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

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

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

 .gp-component-id-OSNKWa0NKR { 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-OSNKWa0NKR { margin-left: 0px;margin-bottom: 8px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-weight: 600 !important;font-size: 28px !important;font-family: Manrope !important;color: rgb(32, 45, 60); } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-OSNKWa0NKR { margin-left: 0px;margin-bottom: 8px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-weight: 600 !important;font-size: 28px !important;font-family: Manrope !important;color: rgb(32, 45, 60); } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-OSNKWa0NKR { margin-left: 0px;margin-bottom: 8px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-weight: 600 !important;font-size: 28px !important;font-family: Manrope !important;color: rgb(32, 45, 60); } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-OSNKWa0NKR { margin-left: 0px;margin-bottom: 8px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-weight: 600 !important;font-size: 28px !important;font-family: Manrope !important;color: rgb(32, 45, 60); } } @media (min-width: 1200px) { .gp-component-id-OSNKWa0NKR { margin-left: 0px;margin-bottom: 8px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-weight: 600 !important;font-size: 28px !important;font-family: Manrope !important;color: rgb(32, 45, 60); } }

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

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

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

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

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

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

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

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

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

 .gp-component-id-6xjaRKjVYb { 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-6xjaRKjVYb { margin-left: 0px;margin-bottom: 8px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-weight: 600 !important;font-size: 28px !important;font-family: Manrope !important;color: rgb(32, 45, 60); } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-6xjaRKjVYb { margin-left: 0px;margin-bottom: 8px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-weight: 600 !important;font-size: 28px !important;font-family: Manrope !important;color: rgb(32, 45, 60); } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-6xjaRKjVYb { margin-left: 0px;margin-bottom: 8px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-weight: 600 !important;font-size: 28px !important;font-family: Manrope !important;color: rgb(32, 45, 60); } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-6xjaRKjVYb { margin-left: 0px;margin-bottom: 8px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-weight: 600 !important;font-size: 28px !important;font-family: Manrope !important;color: rgb(32, 45, 60); } } @media (min-width: 1200px) { .gp-component-id-6xjaRKjVYb { margin-left: 0px;margin-bottom: 8px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-weight: 600 !important;font-size: 28px !important;font-family: Manrope !important;color: rgb(32, 45, 60); } }

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

 @media (max-width: 639px) { .gp-component-id-1BKlIRsu1NX { 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 { 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 { 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 { width: 100%;height: 100%;flex-direction: column;justify-content: center;align-items: flex-start;display: flex; } } @media (min-width: 1200px) { .gp-component-id-1BKlIRsu1NX { 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: 8px;width: 100%;padding-left: 8px; } @media (max-width: 639px) { .gp-component-id-9K5yYQ1GLP { flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-9K5yYQ1GLP { flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-9K5yYQ1GLP { flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 75%;padding-left: 8px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-9K5yYQ1GLP { flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 75%;padding-left: 8px; } } @media (min-width: 1200px) { .gp-component-id-9K5yYQ1GLP { flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 75%;padding-left: 8px; } }

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

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

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

 .gp-component-id-BloDG51uPX6 { overflow-wrap: break-word;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px; } @media (max-width: 639px) { .gp-component-id-BloDG51uPX6 { overflow-wrap: break-word;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;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) { .gp-component-id-BloDG51uPX6 { overflow-wrap: break-word;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;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) { .gp-component-id-BloDG51uPX6 { overflow-wrap: break-word;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;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) { .gp-component-id-BloDG51uPX6 { overflow-wrap: break-word;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;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) { .gp-component-id-BloDG51uPX6 { overflow-wrap: break-word;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;font-size: 18px;color: rgb(57, 75, 86);text-align: left;line-height: 1.5;cursor: text;box-sizing: border-box; } }

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

 .gp-component-id-5ilbBPNKlU { 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-5ilbBPNKlU { margin-left: 0px;margin-bottom: 8px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-weight: 600 !important;font-size: 28px !important;font-family: Manrope !important;color: rgb(32, 45, 60); } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-5ilbBPNKlU { margin-left: 0px;margin-bottom: 8px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-weight: 600 !important;font-size: 28px !important;font-family: Manrope !important;color: rgb(32, 45, 60); } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-5ilbBPNKlU { margin-left: 0px;margin-bottom: 8px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-weight: 600 !important;font-size: 28px !important;font-family: Manrope !important;color: rgb(32, 45, 60); } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-5ilbBPNKlU { margin-left: 0px;margin-bottom: 8px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-weight: 600 !important;font-size: 28px !important;font-family: Manrope !important;color: rgb(32, 45, 60); } } @media (min-width: 1200px) { .gp-component-id-5ilbBPNKlU { margin-left: 0px;margin-bottom: 8px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-weight: 600 !important;font-size: 28px !important;font-family: Manrope !important;color: rgb(32, 45, 60); } }

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

 @media (max-width: 639px) { .gp-component-id-o_fi8pcGPf0 { 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 { 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 { 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 { 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 { width: 100%;height: 100%;flex-direction: column;justify-content: center;align-items: flex-start;display: flex; } }

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

 .gp-component-id-ase_qMqrzFr { display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;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-ase_qMqrzFr { display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;max-width: 100%;height: auto;border-top-style: solid;border-right-style: solid;border-bottom-style: solid;border-left-style: solid;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 { display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;max-width: 100%;height: auto;border-top-style: solid;border-right-style: solid;border-bottom-style: solid;border-left-style: solid;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 { display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;max-width: 100%;height: auto;border-top-style: solid;border-right-style: solid;border-bottom-style: solid;border-left-style: solid;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 { display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;max-width: 100%;height: auto;border-top-style: solid;border-right-style: solid;border-bottom-style: solid;border-left-style: solid;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 { display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;max-width: 100%;height: auto;border-top-style: solid;border-right-style: solid;border-bottom-style: solid;border-left-style: solid;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-5DoW3A4UE30 { 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 { 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 { 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 { width: 100%;height: 100%;flex-direction: column;justify-content: center;align-items: flex-start;display: flex; } } @media (min-width: 1200px) { .gp-component-id-5DoW3A4UE30 { width: 100%;height: 100%;flex-direction: column;justify-content: center;align-items: flex-start;display: flex; } }

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

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

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

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

 .gp-component-id-pSRGyIs6kH8 { 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-pSRGyIs6kH8 { margin-left: 0px;margin-bottom: 8px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-weight: 600 !important;font-size: 28px !important;font-family: Manrope !important;color: rgb(32, 45, 60); } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-pSRGyIs6kH8 { margin-left: 0px;margin-bottom: 8px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-weight: 600 !important;font-size: 28px !important;font-family: Manrope !important;color: rgb(32, 45, 60); } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-pSRGyIs6kH8 { margin-left: 0px;margin-bottom: 8px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-weight: 600 !important;font-size: 28px !important;font-family: Manrope !important;color: rgb(32, 45, 60); } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-pSRGyIs6kH8 { margin-left: 0px;margin-bottom: 8px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-weight: 600 !important;font-size: 28px !important;font-family: Manrope !important;color: rgb(32, 45, 60); } } @media (min-width: 1200px) { .gp-component-id-pSRGyIs6kH8 { margin-left: 0px;margin-bottom: 8px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-weight: 600 !important;font-size: 28px !important;font-family: Manrope !important;color: rgb(32, 45, 60); } }

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

 @media (max-width: 639px) { .gp-component-id-rvg1Dm6aMD { 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 { 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 { 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 { width: 100%;height: 100%;flex-direction: column;justify-content: center;align-items: flex-start;display: flex; } } @media (min-width: 1200px) { .gp-component-id-rvg1Dm6aMD { width: 100%;height: 100%;flex-direction: column;justify-content: center;align-items: flex-start;display: flex; } }

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

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

 @media (max-width: 639px) { .gp-component-id-ilu0HpOSMS { 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 { 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 { 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 { width: 100%;height: 100%;flex-direction: column;justify-content: center;align-items: flex-start;display: flex; } } @media (min-width: 1200px) { .gp-component-id-ilu0HpOSMS { width: 100%;height: 100%;flex-direction: column;justify-content: center;align-items: flex-start;display: flex; } }

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

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

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

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

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

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

 @media (max-width: 639px) { .gp-component-id-8Zwxky14jm { 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 { 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 { 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 { 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 { 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 { 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 { 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 { 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 { width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex; } } @media (min-width: 1200px) { .gp-component-id-620XFRr54a { width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex; } }

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

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

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

 .gp-component-id-Y8hcFP18mQ { position: relative;z-index: 15; } @media (max-width: 639px) { .gp-component-id-Y8hcFP18mQ { position: relative;z-index: 15;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 { position: relative;z-index: 15;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 { position: relative;z-index: 15;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 { position: relative;z-index: 15;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 { position: relative;z-index: 15;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; } }

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

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

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

 .gp-component-id-_nd2E447Rs { white-space-collapse: collapse;text-wrap-mode: wrap;display: inline-flex;flex-direction: column; } @media (max-width: 639px) { .gp-component-id-_nd2E447Rs { white-space-collapse: collapse;text-wrap-mode: wrap;display: inline-flex;flex-direction: column; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-_nd2E447Rs { white-space-collapse: collapse;text-wrap-mode: wrap;display: inline-flex;flex-direction: column; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-_nd2E447Rs { white-space-collapse: collapse;text-wrap-mode: wrap;display: inline-flex;flex-direction: column; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-_nd2E447Rs { white-space-collapse: collapse;text-wrap-mode: wrap;display: inline-flex;flex-direction: column; } } @media (min-width: 1200px) { .gp-component-id-_nd2E447Rs { white-space-collapse: collapse;text-wrap-mode: wrap;display: inline-flex;flex-direction: column; } }

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

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

 .gp-component-id-J9346wVteH { white-space-collapse: collapse;text-wrap-mode: wrap;display: inline-flex;flex-direction: column; } @media (max-width: 639px) { .gp-component-id-J9346wVteH { white-space-collapse: collapse;text-wrap-mode: wrap;display: inline-flex;flex-direction: column; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-J9346wVteH { white-space-collapse: collapse;text-wrap-mode: wrap;display: inline-flex;flex-direction: column; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-J9346wVteH { white-space-collapse: collapse;text-wrap-mode: wrap;display: inline-flex;flex-direction: column; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-J9346wVteH { white-space-collapse: collapse;text-wrap-mode: wrap;display: inline-flex;flex-direction: column; } } @media (min-width: 1200px) { .gp-component-id-J9346wVteH { white-space-collapse: collapse;text-wrap-mode: wrap;display: inline-flex;flex-direction: column; } }

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

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

 .gp-component-id-pZJcqZifT1 { white-space-collapse: collapse;text-wrap-mode: wrap;display: inline-flex;flex-direction: column; } @media (max-width: 639px) { .gp-component-id-pZJcqZifT1 { white-space-collapse: collapse;text-wrap-mode: wrap;display: inline-flex;flex-direction: column; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-pZJcqZifT1 { white-space-collapse: collapse;text-wrap-mode: wrap;display: inline-flex;flex-direction: column; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-pZJcqZifT1 { white-space-collapse: collapse;text-wrap-mode: wrap;display: inline-flex;flex-direction: column; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-pZJcqZifT1 { white-space-collapse: collapse;text-wrap-mode: wrap;display: inline-flex;flex-direction: column; } } @media (min-width: 1200px) { .gp-component-id-pZJcqZifT1 { white-space-collapse: collapse;text-wrap-mode: wrap;display: inline-flex;flex-direction: column; } }

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

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

 .gp-component-id-GYaAHQ5vEr { white-space-collapse: collapse;text-wrap-mode: wrap;display: inline-flex;flex-direction: column; } @media (max-width: 639px) { .gp-component-id-GYaAHQ5vEr { white-space-collapse: collapse;text-wrap-mode: wrap;display: inline-flex;flex-direction: column; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-GYaAHQ5vEr { white-space-collapse: collapse;text-wrap-mode: wrap;display: inline-flex;flex-direction: column; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-GYaAHQ5vEr { white-space-collapse: collapse;text-wrap-mode: wrap;display: inline-flex;flex-direction: column; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-GYaAHQ5vEr { white-space-collapse: collapse;text-wrap-mode: wrap;display: inline-flex;flex-direction: column; } } @media (min-width: 1200px) { .gp-component-id-GYaAHQ5vEr { white-space-collapse: collapse;text-wrap-mode: wrap;display: inline-flex;flex-direction: column; } }

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

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

 .gp-component-id-lYduwcIanP { white-space-collapse: collapse;text-wrap-mode: wrap;display: inline-flex;flex-direction: column; } @media (max-width: 639px) { .gp-component-id-lYduwcIanP { white-space-collapse: collapse;text-wrap-mode: wrap;display: inline-flex;flex-direction: column; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-lYduwcIanP { white-space-collapse: collapse;text-wrap-mode: wrap;display: inline-flex;flex-direction: column; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-lYduwcIanP { white-space-collapse: collapse;text-wrap-mode: wrap;display: inline-flex;flex-direction: column; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-lYduwcIanP { white-space-collapse: collapse;text-wrap-mode: wrap;display: inline-flex;flex-direction: column; } } @media (min-width: 1200px) { .gp-component-id-lYduwcIanP { white-space-collapse: collapse;text-wrap-mode: wrap;display: inline-flex;flex-direction: column; } }

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

 .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-lmVGOdj_k { display: flex;flex-direction: column; } @media (max-width: 639px) { .gp-component-id-lmVGOdj_k { display: flex;flex-direction: column; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-lmVGOdj_k { display: flex;flex-direction: column; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-lmVGOdj_k { display: flex;flex-direction: column; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-lmVGOdj_k { display: flex;flex-direction: column; } } @media (min-width: 1200px) { .gp-component-id-lmVGOdj_k { display: flex;flex-direction: column; } }

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

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

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

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

 .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;font-weight: 700 !important;color: rgb(32, 45, 60); } } @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;font-weight: 700 !important;color: rgb(32, 45, 60); } } @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;font-weight: 700 !important;color: rgb(32, 45, 60); } } @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;font-weight: 700 !important;color: rgb(32, 45, 60); } } @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;font-weight: 700 !important;color: rgb(32, 45, 60); } }

 .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;font-weight: 700 !important;color: rgb(32, 45, 60); } } @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;font-weight: 700 !important;color: rgb(32, 45, 60); } } @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;font-weight: 700 !important;color: rgb(32, 45, 60); } } @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;font-weight: 700 !important;color: rgb(32, 45, 60); } } @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;font-weight: 700 !important;color: rgb(32, 45, 60); } }

 .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; } }

 .gp-component-id-W6kLjcGEA { 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-W6kLjcGEA { 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-W6kLjcGEA { 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-W6kLjcGEA { 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-W6kLjcGEA { 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-W6kLjcGEA { 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-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;font-weight: 700 !important;color: rgb(32, 45, 60); } } @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;font-weight: 700 !important;color: rgb(32, 45, 60); } } @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;font-weight: 700 !important;color: rgb(32, 45, 60); } } @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;font-weight: 700 !important;color: rgb(32, 45, 60); } } @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;font-weight: 700 !important;color: rgb(32, 45, 60); } }

 .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; } }

 @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;font-weight: 700 !important;color: rgb(32, 45, 60); } } @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;font-weight: 700 !important;color: rgb(32, 45, 60); } } @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;font-weight: 700 !important;color: rgb(32, 45, 60); } } @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;font-weight: 700 !important;color: rgb(32, 45, 60); } } @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;font-weight: 700 !important;color: rgb(32, 45, 60); } }

 .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; } }

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

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

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

 .gp-component-id-Em5p8fUMCe { white-space-collapse: collapse;text-wrap-mode: wrap;display: inline-flex;flex-direction: column; } @media (max-width: 639px) { .gp-component-id-Em5p8fUMCe { white-space-collapse: collapse;text-wrap-mode: wrap;display: inline-flex;flex-direction: column; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-Em5p8fUMCe { white-space-collapse: collapse;text-wrap-mode: wrap;display: inline-flex;flex-direction: column; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-Em5p8fUMCe { white-space-collapse: collapse;text-wrap-mode: wrap;display: inline-flex;flex-direction: column; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-Em5p8fUMCe { white-space-collapse: collapse;text-wrap-mode: wrap;display: inline-flex;flex-direction: column; } } @media (min-width: 1200px) { .gp-component-id-Em5p8fUMCe { white-space-collapse: collapse;text-wrap-mode: wrap;display: inline-flex;flex-direction: column; } }

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

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

 .gp-component-id-z1k8t3HaX4 { white-space-collapse: collapse;text-wrap-mode: wrap;display: inline-flex;flex-direction: column; } @media (max-width: 639px) { .gp-component-id-z1k8t3HaX4 { white-space-collapse: collapse;text-wrap-mode: wrap;display: inline-flex;flex-direction: column; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-z1k8t3HaX4 { white-space-collapse: collapse;text-wrap-mode: wrap;display: inline-flex;flex-direction: column; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-z1k8t3HaX4 { white-space-collapse: collapse;text-wrap-mode: wrap;display: inline-flex;flex-direction: column; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-z1k8t3HaX4 { white-space-collapse: collapse;text-wrap-mode: wrap;display: inline-flex;flex-direction: column; } } @media (min-width: 1200px) { .gp-component-id-z1k8t3HaX4 { white-space-collapse: collapse;text-wrap-mode: wrap;display: inline-flex;flex-direction: column; } }

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

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

 .gp-component-id-yXaSdxnoUh { white-space-collapse: collapse;text-wrap-mode: wrap;display: inline-flex;flex-direction: column; } @media (max-width: 639px) { .gp-component-id-yXaSdxnoUh { white-space-collapse: collapse;text-wrap-mode: wrap;display: inline-flex;flex-direction: column; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-yXaSdxnoUh { white-space-collapse: collapse;text-wrap-mode: wrap;display: inline-flex;flex-direction: column; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-yXaSdxnoUh { white-space-collapse: collapse;text-wrap-mode: wrap;display: inline-flex;flex-direction: column; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-yXaSdxnoUh { white-space-collapse: collapse;text-wrap-mode: wrap;display: inline-flex;flex-direction: column; } } @media (min-width: 1200px) { .gp-component-id-yXaSdxnoUh { white-space-collapse: collapse;text-wrap-mode: wrap;display: inline-flex;flex-direction: column; } }

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

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

 .gp-component-id-BUl2XUtMyR { white-space-collapse: collapse;text-wrap-mode: wrap;display: inline-flex;flex-direction: column; } @media (max-width: 639px) { .gp-component-id-BUl2XUtMyR { white-space-collapse: collapse;text-wrap-mode: wrap;display: inline-flex;flex-direction: column; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-BUl2XUtMyR { white-space-collapse: collapse;text-wrap-mode: wrap;display: inline-flex;flex-direction: column; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-BUl2XUtMyR { white-space-collapse: collapse;text-wrap-mode: wrap;display: inline-flex;flex-direction: column; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-BUl2XUtMyR { white-space-collapse: collapse;text-wrap-mode: wrap;display: inline-flex;flex-direction: column; } } @media (min-width: 1200px) { .gp-component-id-BUl2XUtMyR { white-space-collapse: collapse;text-wrap-mode: wrap;display: inline-flex;flex-direction: column; } }

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

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

 .gp-component-id-Rt40Fdgvtz { white-space-collapse: collapse;text-wrap-mode: wrap;display: inline-flex;flex-direction: column; } @media (max-width: 639px) { .gp-component-id-Rt40Fdgvtz { white-space-collapse: collapse;text-wrap-mode: wrap;display: inline-flex;flex-direction: column; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-Rt40Fdgvtz { white-space-collapse: collapse;text-wrap-mode: wrap;display: inline-flex;flex-direction: column; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-Rt40Fdgvtz { white-space-collapse: collapse;text-wrap-mode: wrap;display: inline-flex;flex-direction: column; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-Rt40Fdgvtz { white-space-collapse: collapse;text-wrap-mode: wrap;display: inline-flex;flex-direction: column; } } @media (min-width: 1200px) { .gp-component-id-Rt40Fdgvtz { white-space-collapse: collapse;text-wrap-mode: wrap;display: inline-flex;flex-direction: column; } }

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

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

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

 .gp-component-id-QX2iVoXjrJ { width: 40px;margin-bottom: 24px;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-QX2iVoXjrJ { width: 40px;margin-bottom: 24px;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-QX2iVoXjrJ { width: 40px;margin-bottom: 24px;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-QX2iVoXjrJ { width: 40px;margin-bottom: 24px;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-QX2iVoXjrJ { width: 40px;margin-bottom: 48px;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-QX2iVoXjrJ { width: 40px;margin-bottom: 48px;max-width: 100%;height: auto;border-top-style: solid;border-right-style: solid;border-bottom-style: solid;border-left-style: solid; } }

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

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

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

 @media (max-width: 639px) { .gp-component-id-vuZFxbwojm { display: flex;align-items: center;flex-direction: column;width: 100%;padding-bottom: 30px;padding-top: 30px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-vuZFxbwojm { display: flex;align-items: center;flex-direction: column;width: 100%;padding-bottom: 30px;padding-top: 30px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-vuZFxbwojm { display: flex;align-items: center;flex-direction: column;width: 100%;padding-bottom: 30px;padding-top: 30px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-vuZFxbwojm { display: flex;align-items: center;flex-direction: column;width: 68%;padding-bottom: 30px;padding-top: 30px; } } @media (min-width: 1200px) { .gp-component-id-vuZFxbwojm { display: flex;align-items: center;flex-direction: column;width: 68%;padding-bottom: 30px;padding-top: 30px; } }

 .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%; } }

 @media (max-width: 639px) { .gp-component-id-stG7zkY2J { font-weight: 500 !important;font-family: Inter !important;font-size: 18px !important;color: rgb(255, 255, 255);border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;background-color: rgb(16, 42, 67);padding-left: 26px;padding-right: 26px;padding-top: 14px;padding-bottom: 14px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-stG7zkY2J { font-weight: 500 !important;font-family: Inter !important;font-size: 18px !important;color: rgb(255, 255, 255);border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;background-color: rgb(16, 42, 67);padding-left: 26px;padding-right: 26px;padding-top: 14px;padding-bottom: 14px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-stG7zkY2J { font-weight: 500 !important;font-family: Inter !important;font-size: 18px !important;color: rgb(255, 255, 255);border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;background-color: rgb(16, 42, 67);padding-left: 26px;padding-right: 26px;padding-top: 14px;padding-bottom: 14px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-stG7zkY2J { font-weight: 500 !important;font-family: Inter !important;font-size: 18px !important;color: rgb(255, 255, 255);border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;background-color: rgb(16, 42, 67);padding-left: 26px;padding-right: 26px;padding-top: 14px;padding-bottom: 14px; } } @media (min-width: 1200px) { .gp-component-id-stG7zkY2J { font-weight: 500 !important;font-family: Inter !important;font-size: 18px !important;color: rgb(255, 255, 255);border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;background-color: rgb(16, 42, 67);padding-left: 26px;padding-right: 26px;padding-top: 14px;padding-bottom: 14px; } }

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

 .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;font-family: Inter !important;padding-bottom: 20px;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;font-family: Inter !important;padding-bottom: 20px;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;font-family: Inter !important;padding-bottom: 20px;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;font-family: Inter !important;padding-bottom: 20px;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;font-family: Inter !important;padding-bottom: 20px;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-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-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; } }

 @media (max-width: 639px) { .gp-component-id-HN03RD2mtG[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-HN03RD2mtG[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-HN03RD2mtG[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-HN03RD2mtG[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-HN03RD2mtG[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-PywKhb1FaW[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-PywKhb1FaW[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-PywKhb1FaW[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-PywKhb1FaW[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-PywKhb1FaW[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-HLvpslU_wr { 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-HLvpslU_wr { 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-HLvpslU_wr { 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-HLvpslU_wr { 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-HLvpslU_wr { 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-HLvpslU_wr { 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-jyobweFXlt { 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-jyobweFXlt { 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-jyobweFXlt { 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-jyobweFXlt { 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-jyobweFXlt { 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-jyobweFXlt { 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-cP9nAibgXN[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-cP9nAibgXN[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-cP9nAibgXN[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-cP9nAibgXN[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-cP9nAibgXN[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-Zp_dH7ERq6 { 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-Zp_dH7ERq6 { 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-Zp_dH7ERq6 { 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-Zp_dH7ERq6 { 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-Zp_dH7ERq6 { 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-Zp_dH7ERq6 { 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-DxIFWEz5Fe { 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-DxIFWEz5Fe { 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-DxIFWEz5Fe { 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-DxIFWEz5Fe { 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-DxIFWEz5Fe { 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-DxIFWEz5Fe { 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-OLWh0k4s_S { 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-OLWh0k4s_S { 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-OLWh0k4s_S { 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-OLWh0k4s_S { 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-OLWh0k4s_S { 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-OLWh0k4s_S { display: flex; margin-left: auto; margin-right: auto; justify-content: space-between; align-items: center; width: 100%; max-width: 1200px; } }

 .gp-component-id-bh9BAdAVT0 { 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-bh9BAdAVT0 { 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-bh9BAdAVT0 { 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-bh9BAdAVT0 { 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-bh9BAdAVT0 { 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-bh9BAdAVT0 { 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-G1xyBxQlj[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-G1xyBxQlj[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-G1xyBxQlj[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-G1xyBxQlj[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-G1xyBxQlj[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; } }

