
      
    


      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-iww5lbYk65 { font-size: 18px;text-align: left;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;cursor: text;box-sizing: border-box; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-iww5lbYk65 { font-size: 18px;text-align: left;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;cursor: text;box-sizing: border-box; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-iww5lbYk65 { font-size: 18px;text-align: left;line-height: 1.5;margin-left: 155px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;cursor: text;box-sizing: border-box; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-iww5lbYk65 { font-size: 18px;text-align: left;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;cursor: text;box-sizing: border-box; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-iww5lbYk65 { font-size: 18px;text-align: left;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;cursor: text;box-sizing: border-box; } }

 @media (max-width: 639px) { [data-gp-text] .gp-component-id-fP22gzQ3MF { font-size: 20px;font-weight: 700;margin-left: -5px;margin-right: -10px;margin-top: 0px;margin-bottom: 12px;padding-left: 0px;padding-right: 0px;height: 100%;cursor: text;box-sizing: border-box; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-fP22gzQ3MF { font-size: 20px;font-weight: 700;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 12px;width: 100%;height: 100%;cursor: text;box-sizing: border-box; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-fP22gzQ3MF { font-size: 20px;font-weight: 700;margin-left: 155px;margin-right: 0px;margin-top: 0px;margin-bottom: 12px;width: 371px;height: 100%;cursor: text;box-sizing: border-box; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-fP22gzQ3MF { font-size: 20px;font-weight: 700;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 12px;width: 641px;height: 100%;cursor: text;box-sizing: border-box; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-fP22gzQ3MF { font-size: 20px;font-weight: 700;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 12px;width: 641px;height: 100%;cursor: text;box-sizing: border-box; } }

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

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

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

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

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

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

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

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

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

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

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

 @media (max-width: 639px) { [data-gp-text] .gp-component-id-NSghWdYDQ { font-size: 32px !important;font-weight: 600;text-align: center;font-family: Manrope;padding-left: 0px;padding-right: 0px; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-NSghWdYDQ { text-align: center;padding-left: 158px;padding-right: 158px; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-NSghWdYDQ { text-align: center;padding-left: 158px;padding-right: 158px; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-NSghWdYDQ { text-align: center;padding-left: 158px;padding-right: 158px; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-NSghWdYDQ { text-align: center;padding-left: 158px;padding-right: 158px; } }

 @media (max-width: 639px) { .gp-component-id-Tddq7WA89[data-gp-component] { padding-left: 0px;padding-right: 0px;z-index: 10;position: relative; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-Tddq7WA89[data-gp-component] { padding-left: 46px;padding-right: 46px;z-index: 10;position: relative; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-Tddq7WA89[data-gp-component] { padding-left: 52px;padding-right: 52px;z-index: 10;position: relative; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-Tddq7WA89[data-gp-component] { padding-left: 146px;padding-right: 146px;z-index: 10;position: relative; } } @media (min-width: 1200px) { .gp-component-id-Tddq7WA89[data-gp-component] { padding-left: 146px;padding-right: 146px;z-index: 10;position: relative; } }

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

 @media (max-width: 639px) { [data-gp-text] .gp-component-id-A_f60nZrmN6 { font-size: 18px;text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 309px;height: 81px;cursor: text;box-sizing: border-box; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-A_f60nZrmN6 { font-size: 18px;text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;height: 81px;cursor: text;box-sizing: border-box; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-A_f60nZrmN6 { font-size: 18px;text-align: left;line-height: 1.5;margin-left: 155px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 438px;height: 81px;cursor: text;box-sizing: border-box; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-A_f60nZrmN6 { font-size: 18px;text-align: left;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 586px;height: 81px;cursor: text;box-sizing: border-box; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-A_f60nZrmN6 { font-size: 18px;text-align: left;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 647px;height: 81px;cursor: text;box-sizing: border-box; } }

 @media (max-width: 639px) { [data-gp-text] .gp-component-id-ajgki8n6E0A { font-size: 18px;text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 308px;height: 81px;cursor: text;box-sizing: border-box; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-ajgki8n6E0A { font-size: 18px;text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;height: 81px;cursor: text;box-sizing: border-box; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-ajgki8n6E0A { font-size: 18px;text-align: left;line-height: 1.5;margin-left: 155px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 409px;height: 81px;cursor: text;box-sizing: border-box; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-ajgki8n6E0A { font-size: 18px;text-align: left;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 643px;height: 81px;cursor: text;box-sizing: border-box; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-ajgki8n6E0A { font-size: 18px;text-align: left;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 643px;height: 81px;cursor: text;box-sizing: border-box; } }

 @media (max-width: 639px) { [data-gp-text] .gp-component-id-SAVHJd2f7i { font-size: 18px;text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 145px;padding-right: 145px;width: 621px;height: 81px;box-sizing: border-box;cursor: text; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-SAVHJd2f7i { font-size: 18px;text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;height: 81px;box-sizing: border-box;cursor: text; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-SAVHJd2f7i { font-size: 18px;text-align: left;line-height: 1.5;margin-left: 155px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 430px;height: 81px;box-sizing: border-box;cursor: text; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-SAVHJd2f7i { font-size: 18px;text-align: left;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 557px;height: 81px;box-sizing: border-box;cursor: text; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-SAVHJd2f7i { font-size: 18px;text-align: left;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 621px;height: 81px;box-sizing: border-box;cursor: text; } }

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

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

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

 @media (max-width: 639px) { .gp-component-id-1ZXXj8BN0[data-gp-component] { background-size: cover;padding-left: 16px;padding-right: 16px;padding-top: 48px;padding-bottom: 30px;background-position-x: 50%;background-position-y: 50%;z-index: 10;position: relative; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-1ZXXj8BN0[data-gp-component] { background-size: cover;padding-left: 16px;padding-right: 16px;padding-top: 48px;padding-bottom: 40px;background-position-x: 50%;background-position-y: 50%;z-index: 10;position: relative; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-1ZXXj8BN0[data-gp-component] { background-size: cover;padding-left: 16px;padding-right: 16px;padding-top: 40px;padding-bottom: 40px;background-position-x: 50%;background-position-y: 50%;z-index: 10;position: relative; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-1ZXXj8BN0[data-gp-component] { background-size: cover;padding-left: 16px;padding-right: 16px;padding-top: 40px;padding-bottom: 20px;background-position-x: 50%;background-position-y: 50%;z-index: 10;position: relative; } } @media (min-width: 1200px) { .gp-component-id-1ZXXj8BN0[data-gp-component] { background-size: cover;padding-left: 16px;padding-right: 16px;padding-top: 80px;padding-bottom: 80px;background-position-x: 50%;background-position-y: 50%;z-index: 10;position: relative; } }

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

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

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

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

 @media (max-width: 639px) { [data-gp-text] .gp-component-id-82HejRpuH { font-size: 25px !important;font-weight: 600 !important;color: rgb(16, 42, 67);text-align: center;line-height: 1.5;font-family: Manrope !important;margin-bottom: 20px;width: 100%; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-82HejRpuH { font-size: 37px !important;font-weight: 600 !important;color: rgb(16, 42, 67);text-align: center;line-height: 1.5;font-family: Manrope !important;margin-bottom: 20px;width: 100%; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-82HejRpuH { font-size: 35px !important;font-weight: 600 !important;color: rgb(16, 42, 67);text-align: left;line-height: 1.5;font-family: Manrope !important;margin-bottom: 20px;width: 100%; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-82HejRpuH { font-size: 33px !important;font-weight: 600 !important;color: rgb(16, 42, 67);text-align: left;line-height: 1.5;font-family: Manrope !important;margin-bottom: 20px;width: 100%; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-82HejRpuH { font-size: 48px !important;font-weight: 600 !important;color: rgb(16, 42, 67);text-align: left;line-height: 1.5;font-family: Manrope !important;margin-bottom: 20px;width: 100%; } }

 @media (max-width: 639px) { .gp-component-id-IPFImYg_tg[data-gp-component] { background-image: url("https://images.groovetech.io/camY7us41R1WIAPUkyP1KD5_bQIHN-zpx5LobE60qw8/rs:fit:0:0:0/g:no:0:0/c:0:0/aHR0cHM6Ly9hc3NldHMuZ3Jvb3ZlYXBwcy5jb20vaW1hZ2VzLzVlYTJiNGM0YjAxMDNkMGRlMThhNWQ2Yy8xNjY2ODk2ODQxX2RvdHRlZC53ZWJw.webp");background-size: auto;padding-left: 20px;padding-right: 20px;padding-top: 50px;padding-bottom: 50px;background-position-y: 100%;background-position-x: 0px;z-index: auto;position: relative;min-height: 50px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-IPFImYg_tg[data-gp-component] { background-image: url("https://images.groovetech.io/camY7us41R1WIAPUkyP1KD5_bQIHN-zpx5LobE60qw8/rs:fit:0:0:0/g:no:0:0/c:0:0/aHR0cHM6Ly9hc3NldHMuZ3Jvb3ZlYXBwcy5jb20vaW1hZ2VzLzVlYTJiNGM0YjAxMDNkMGRlMThhNWQ2Yy8xNjY2ODk2ODQxX2RvdHRlZC53ZWJw.webp");background-size: auto;padding-left: 20px;padding-right: 20px;padding-top: 0px;padding-bottom: 50px;background-position-y: 100%;background-position-x: 0px;z-index: auto;position: relative;min-height: 50px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-IPFImYg_tg[data-gp-component] { background-image: url("https://images.groovetech.io/camY7us41R1WIAPUkyP1KD5_bQIHN-zpx5LobE60qw8/rs:fit:0:0:0/g:no:0:0/c:0:0/aHR0cHM6Ly9hc3NldHMuZ3Jvb3ZlYXBwcy5jb20vaW1hZ2VzLzVlYTJiNGM0YjAxMDNkMGRlMThhNWQ2Yy8xNjY2ODk2ODQxX2RvdHRlZC53ZWJw.webp");background-size: auto;padding-left: 20px;padding-right: 20px;padding-top: 50px;padding-bottom: 50px;background-position-y: 100%;background-position-x: 0px;z-index: auto;position: relative;min-height: 50px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-IPFImYg_tg[data-gp-component] { background-image: url("https://images.groovetech.io/camY7us41R1WIAPUkyP1KD5_bQIHN-zpx5LobE60qw8/rs:fit:0:0:0/g:no:0:0/c:0:0/aHR0cHM6Ly9hc3NldHMuZ3Jvb3ZlYXBwcy5jb20vaW1hZ2VzLzVlYTJiNGM0YjAxMDNkMGRlMThhNWQ2Yy8xNjY2ODk2ODQxX2RvdHRlZC53ZWJw.webp");background-size: auto;padding-left: 20px;padding-right: 20px;padding-top: 50px;padding-bottom: 50px;background-position-y: 100%;background-position-x: 0px;z-index: auto;position: relative;min-height: 50px; } } @media (min-width: 1200px) { .gp-component-id-IPFImYg_tg[data-gp-component] { background-image: url("https://images.groovetech.io/camY7us41R1WIAPUkyP1KD5_bQIHN-zpx5LobE60qw8/rs:fit:0:0:0/g:no:0:0/c:0:0/aHR0cHM6Ly9hc3NldHMuZ3Jvb3ZlYXBwcy5jb20vaW1hZ2VzLzVlYTJiNGM0YjAxMDNkMGRlMThhNWQ2Yy8xNjY2ODk2ODQxX2RvdHRlZC53ZWJw.webp");background-size: auto;padding-left: 20px;padding-right: 20px;padding-top: 50px;padding-bottom: 50px;background-position-y: 100%;background-position-x: 0px;z-index: auto;position: relative;min-height: 50px; } }

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

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

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

 @media (max-width: 639px) { [data-gp-text] .gp-component-id-O0SgenBST { font-size: 18px;font-weight: 300;color: rgb(32, 45, 60);text-align: left;letter-spacing: 0.05em;line-height: 1.5;font-family: "Titillium Web", sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 12px;max-width: 800px; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-O0SgenBST { font-size: 18px !important;font-weight: 300 !important;color: rgb(31, 41, 51);text-align: left;line-height: 1.5;font-family: "Titillium Web", sans-serif !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 12px;max-width: 800px; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-O0SgenBST { font-size: 16px !important;font-weight: 300 !important;color: rgb(31, 41, 51);text-align: left;letter-spacing: 0.05em;line-height: 1.5;font-family: Inter !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 28px;max-width: 800px; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-O0SgenBST { font-size: 18px !important;font-weight: 300 !important;color: rgb(31, 41, 51);text-align: left;letter-spacing: 0.05em;line-height: 1.5;font-family: Inter !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 28px;max-width: 800px; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-O0SgenBST { font-size: 20px;font-weight: 300;color: rgb(76, 82, 125);text-align: left;letter-spacing: 0.05em;line-height: 1.5;font-family: "Titillium Web", sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 28px;max-width: 800px; } }

 @media (max-width: 639px) { [data-gp-text] .gp-component-id-he3pjFula { font-size: 28px !important;font-weight: 700 !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-he3pjFula { font-size: 24px !important;font-weight: 700 !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-he3pjFula { font-size: 24px !important;font-weight: 700 !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-he3pjFula { font-size: 28px !important;font-weight: 700 !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-he3pjFula { font-size: 28px !important;font-weight: 700 !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-aRPBHVyJsC[data-gp-component] { padding-left: 16px;padding-right: 16px;width: 100%; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-aRPBHVyJsC[data-gp-component] { padding-left: 0px;padding-right: 0px;width: 100%; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-aRPBHVyJsC[data-gp-component] { padding-left: 16px;padding-right: 16px;width: 100%; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-aRPBHVyJsC[data-gp-component] { padding-left: 16px;padding-right: 16px;width: 100%; } } @media (min-width: 1200px) { .gp-component-id-aRPBHVyJsC[data-gp-component] { padding-left: 16px;padding-right: 16px;width: 100%; } }

 @media (max-width: 639px) { .gp-component-id-ENNQXOLNtrG[data-gp-component] { border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 125px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-ENNQXOLNtrG[data-gp-component] { border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 179px;height: 125px;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-ENNQXOLNtrG[data-gp-component] { border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 142px;height: 115px;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-ENNQXOLNtrG[data-gp-component] { border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 16px;width: 148px;height: 118px;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center; } } @media (min-width: 1200px) { .gp-component-id-ENNQXOLNtrG[data-gp-component] { border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 0px;width: 166px;height: 130px;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center; } }

 @media (max-width: 639px) { .gp-component-id-9H9TnjAuEO[data-gp-component] { padding-top: 48px;padding-bottom: 32px;z-index: auto !important;position: relative; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-9H9TnjAuEO[data-gp-component] { padding-top: 40px;padding-bottom: 32px;z-index: auto !important;position: relative; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-9H9TnjAuEO[data-gp-component] { padding-top: 48px;padding-bottom: 32px;z-index: auto !important;position: relative; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-9H9TnjAuEO[data-gp-component] { padding-top: 56px;padding-bottom: 56px;z-index: auto !important;position: relative; } } @media (min-width: 1200px) { .gp-component-id-9H9TnjAuEO[data-gp-component] { padding-top: 56px;padding-bottom: 56px;z-index: auto !important;position: relative; } }

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

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

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

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

 @media (max-width: 639px) { .gp-component-id-ASTctH_wl37[data-gp-component] { font-size: 30px;color: rgb(4, 81, 174);line-height: 1;margin-right: 16px;margin-bottom: 12px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-ASTctH_wl37[data-gp-component] { font-size: 30px;color: rgb(4, 81, 174);line-height: 1;margin-right: 16px;margin-bottom: 12px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-ASTctH_wl37[data-gp-component] { font-size: 30px;color: rgb(47, 93, 126);line-height: 1;margin-right: 16px;margin-bottom: 12px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-ASTctH_wl37[data-gp-component] { font-size: 30px;color: rgba(47, 93, 126, 1);line-height: 1;margin-left: 10px;margin-right: 16px;margin-top: 10px;margin-bottom: 12px; } } @media (min-width: 1200px) { .gp-component-id-ASTctH_wl37[data-gp-component] { font-size: 30px;color: rgb(4, 81, 174);line-height: 1;margin-right: 16px;margin-bottom: 12px; } }

 @media (max-width: 639px) { .gp-component-id-9lXc5BO8Y1[data-gp-component] { font-size: 30px;color: rgb(4, 81, 174);line-height: 1;margin-right: 16px;margin-bottom: 12px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-9lXc5BO8Y1[data-gp-component] { font-size: 30px;color: rgb(4, 81, 174);line-height: 1;margin-right: 16px;margin-bottom: 12px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-9lXc5BO8Y1[data-gp-component] { font-size: 30px;color: rgb(47, 93, 126);line-height: 1;margin-right: 16px;margin-bottom: 12px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-9lXc5BO8Y1[data-gp-component] { font-size: 30px;color: rgba(47, 93, 126, 1);line-height: 1;margin-left: 10px;margin-right: 16px;margin-top: 10px;margin-bottom: 12px; } } @media (min-width: 1200px) { .gp-component-id-9lXc5BO8Y1[data-gp-component] { font-size: 30px;color: rgb(4, 81, 174);line-height: 1;margin-right: 16px;margin-bottom: 12px; } }

 @media (max-width: 639px) { .gp-component-id-OPTINJqLipl[data-gp-component] { font-size: 30px;color: rgb(4, 81, 174);line-height: 1;margin-right: 16px;margin-bottom: 12px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-OPTINJqLipl[data-gp-component] { font-size: 30px;color: rgb(4, 81, 174);line-height: 1;margin-right: 16px;margin-bottom: 12px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-OPTINJqLipl[data-gp-component] { font-size: 30px;color: rgb(47, 93, 126);line-height: 1;margin-right: 16px;margin-bottom: 12px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-OPTINJqLipl[data-gp-component] { font-size: 30px;color: rgba(47, 93, 126, 1);line-height: 1;margin-left: 10px;margin-right: 16px;margin-top: 10px;margin-bottom: 12px; } } @media (min-width: 1200px) { .gp-component-id-OPTINJqLipl[data-gp-component] { font-size: 30px;color: rgb(4, 81, 174);line-height: 1;margin-right: 16px;margin-bottom: 12px; } }

 @media (max-width: 639px) { .gp-component-id-M_7LNtjlXl[data-gp-component] { font-size: 30px;color: rgb(4, 81, 174);line-height: 1;margin-right: 16px;margin-bottom: 12px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-M_7LNtjlXl[data-gp-component] { font-size: 30px;color: rgb(4, 81, 174);line-height: 1;margin-right: 16px;margin-bottom: 12px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-M_7LNtjlXl[data-gp-component] { font-size: 30px;color: rgb(47, 93, 126);line-height: 1;margin-right: 16px;margin-bottom: 12px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-M_7LNtjlXl[data-gp-component] { font-size: 30px;color: rgba(47, 93, 126, 1);line-height: 1;margin-left: 10px;margin-right: 16px;margin-top: 10px;margin-bottom: 12px; } } @media (min-width: 1200px) { .gp-component-id-M_7LNtjlXl[data-gp-component] { font-size: 30px;color: rgb(4, 81, 174);line-height: 1;margin-right: 16px;margin-bottom: 12px; } }

 @media (max-width: 639px) { [data-gp-text] .gp-component-id-iEZE4FwWm5y { font-size: 20px;font-weight: 700;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 12px;cursor: text;box-sizing: border-box; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-iEZE4FwWm5y { font-size: 20px;font-weight: 700;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 12px;cursor: text;box-sizing: border-box; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-iEZE4FwWm5y { font-size: 20px;font-weight: 700;margin-left: 155px;margin-right: 0px;margin-top: 0px;margin-bottom: 12px;width: 420px;height: 67px;cursor: text;box-sizing: border-box; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-iEZE4FwWm5y { font-size: 20px;font-weight: 700;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 12px;cursor: text;box-sizing: border-box; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-iEZE4FwWm5y { font-size: 20px;font-weight: 700;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 12px;cursor: text;box-sizing: border-box; } }

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

 @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-us1UqkFwEA9 { font-size: 16px !important; } }

 @media (max-width: 639px) { [data-gp-text] .gp-component-id-nwqoL05lWXi { 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) { [data-gp-text] .gp-component-id-nwqoL05lWXi { 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) { [data-gp-text] .gp-component-id-nwqoL05lWXi { font-size: 24px !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) { [data-gp-text] .gp-component-id-nwqoL05lWXi { 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) { [data-gp-text] .gp-component-id-nwqoL05lWXi { 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) { [data-gp-text] .gp-component-id-iI_AnZOL0so { font-size: 16px !important; } }

 @media (max-width: 639px) { [data-gp-text] .gp-component-id-dT4djs8I9 { 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) { [data-gp-text] .gp-component-id-dT4djs8I9 { 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) { [data-gp-text] .gp-component-id-dT4djs8I9 { font-size: 24px !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) { [data-gp-text] .gp-component-id-dT4djs8I9 { 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) { [data-gp-text] .gp-component-id-dT4djs8I9 { 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: 639px) { [data-gp-text] .gp-component-id-qazUM4eSOF { 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) { [data-gp-text] .gp-component-id-qazUM4eSOF { 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) { [data-gp-text] .gp-component-id-qazUM4eSOF { font-size: 24px !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) { [data-gp-text] .gp-component-id-qazUM4eSOF { 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) { [data-gp-text] .gp-component-id-qazUM4eSOF { 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) { [data-gp-text] .gp-component-id-0o4LrDNkN { font-size: 16px !important; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-0o4LrDNkN { font-size: 18px !important;font-family: Inter !important; } }

 @media (max-width: 639px) { .gp-component-id-PNXDy0oSZ_[data-gp-component] { border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 60%;height: 90%;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-PNXDy0oSZ_[data-gp-component] { border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 60%;height: 90%;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-PNXDy0oSZ_[data-gp-component] { border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 100%;height: 90%;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-PNXDy0oSZ_[data-gp-component] { border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 60%;height: 90%;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-PNXDy0oSZ_[data-gp-component] { border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 60%;height: 90%;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-FhrwNUjher { font-size: 18px;color: rgb(255, 255, 255);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-top: 0px;padding-bottom: 10px; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-FhrwNUjher { font-size: 18px;color: rgb(255, 255, 255);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-top: 0px;padding-bottom: 10px; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-FhrwNUjher { font-size: 18px;color: rgb(255, 255, 255);text-align: left;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-top: 0px;padding-bottom: 10px; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-FhrwNUjher { font-size: 18px;color: rgb(255, 255, 255);text-align: left;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-top: 0px;padding-bottom: 10px; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-FhrwNUjher { font-size: 18px;color: rgb(255, 255, 255);text-align: left;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-top: 0px;padding-bottom: 10px; } }

 @media (max-width: 639px) { .gp-component-id-oPdfIIfMPDL[data-gp-component] { box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;height: 100%; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-oPdfIIfMPDL[data-gp-component] { box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;height: 100%; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-oPdfIIfMPDL[data-gp-component] { box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;height: 100%; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-oPdfIIfMPDL[data-gp-component] { box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;width: null;height: 100%; } } @media (min-width: 1200px) { .gp-component-id-oPdfIIfMPDL[data-gp-component] { box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;height: 100%; } }

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

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

 @media (max-width: 639px) { .gp-component-id-tJeW90Mi8S[data-gp-component] { border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 203px;height: 149px;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-tJeW90Mi8S[data-gp-component] { border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 203px;height: 149px;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-tJeW90Mi8S[data-gp-component] { border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 203px;height: 149px;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-tJeW90Mi8S[data-gp-component] { border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 16px;width: 203px;height: 149px;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-tJeW90Mi8S[data-gp-component] { border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 0px;width: 203px;height: 149px;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover; } }

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

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

 @media (max-width: 639px) { .gp-component-id-gYSc__yaDL[data-gp-component] { font-size: 18px !important;font-weight: 500 !important;color: rgb(47, 93, 126);font-family: Inter !important;border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;border-left-width: 3px;border-right-width: 3px;border-top-width: 3px;border-bottom-width: 3px;border-left-color: rgb(47, 93, 126);border-right-color: rgb(47, 93, 126);border-top-color: rgb(47, 93, 126);border-bottom-color: rgb(47, 93, 126);background-color: rgb(255, 255, 255);padding-left: 26px;padding-right: 26px;padding-top: 14px;padding-bottom: 14px;display: inline-flex;text-decoration-line: inherit;font-style: inherit !important; } .gp-component-id-gYSc__yaDL[data-gp-component]:hover,.gp-component-id-gYSc__yaDL[data-gp-component].gp-hover { font-weight: 500;color: rgb(47, 93, 126);font-family: Inter;border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;background-color: rgb(255, 255, 255);padding-left: 26px;padding-right: 26px;padding-top: 14px;padding-bottom: 14px;text-decoration-line: underline;font-style: inherit; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-gYSc__yaDL[data-gp-component] { font-size: 18px !important;font-weight: 500 !important;color: rgb(47, 93, 126);font-family: Inter !important;border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;border-left-width: 3px;border-right-width: 3px;border-top-width: 3px;border-bottom-width: 3px;border-left-color: rgb(47, 93, 126);border-right-color: rgb(47, 93, 126);border-top-color: rgb(47, 93, 126);border-bottom-color: rgb(47, 93, 126);background-color: rgb(255, 255, 255);padding-left: 26px;padding-right: 26px;padding-top: 14px;padding-bottom: 14px;display: inline-flex;text-decoration-line: inherit;font-style: inherit !important; } .gp-component-id-gYSc__yaDL[data-gp-component]:hover,.gp-component-id-gYSc__yaDL[data-gp-component].gp-hover { font-weight: 500;color: rgb(47, 93, 126);font-family: Inter;border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;background-color: rgb(255, 255, 255);padding-left: 26px;padding-right: 26px;padding-top: 14px;padding-bottom: 14px;text-decoration-line: underline;font-style: inherit; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-gYSc__yaDL[data-gp-component] { font-size: 18px !important;font-weight: 500 !important;color: rgb(47, 93, 126);font-family: Inter !important;border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;border-left-width: 3px;border-right-width: 3px;border-top-width: 3px;border-bottom-width: 3px;border-left-color: rgb(47, 93, 126);border-right-color: rgb(47, 93, 126);border-top-color: rgb(47, 93, 126);border-bottom-color: rgb(47, 93, 126);background-color: rgb(255, 255, 255);padding-left: 26px;padding-right: 26px;padding-top: 14px;padding-bottom: 14px;display: inline-flex;text-decoration-line: inherit;font-style: inherit !important; } .gp-component-id-gYSc__yaDL[data-gp-component]:hover,.gp-component-id-gYSc__yaDL[data-gp-component].gp-hover { font-weight: 500;color: rgb(47, 93, 126);font-family: Inter;border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;background-color: rgb(255, 255, 255);padding-left: 26px;padding-right: 26px;padding-top: 14px;padding-bottom: 14px;text-decoration-line: underline;font-style: inherit; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-gYSc__yaDL[data-gp-component] { font-size: 18px !important;font-weight: 500 !important;color: rgb(47, 93, 126);font-family: Inter !important;border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;border-left-width: 3px;border-right-width: 3px;border-top-width: 3px;border-bottom-width: 3px;border-left-color: rgb(47, 93, 126);border-right-color: rgb(47, 93, 126);border-top-color: rgb(47, 93, 126);border-bottom-color: rgb(47, 93, 126);background-color: rgb(255, 255, 255);padding-left: 26px;padding-right: 26px;padding-top: 14px;padding-bottom: 14px;display: inline-flex;text-decoration-line: inherit;font-style: inherit !important; } .gp-component-id-gYSc__yaDL[data-gp-component]:hover,.gp-component-id-gYSc__yaDL[data-gp-component].gp-hover { font-weight: 500;color: rgb(47, 93, 126);font-family: Inter;border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;background-color: rgb(255, 255, 255);padding-left: 26px;padding-right: 26px;padding-top: 14px;padding-bottom: 14px;text-decoration-line: underline;font-style: inherit; } } @media (min-width: 1200px) { .gp-component-id-gYSc__yaDL[data-gp-component] { font-size: 18px !important;font-weight: 500 !important;color: rgb(47, 93, 126);font-family: Inter !important;border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;border-left-width: 3px;border-right-width: 3px;border-top-width: 3px;border-bottom-width: 3px;border-left-color: rgb(47, 93, 126);border-right-color: rgb(47, 93, 126);border-top-color: rgb(47, 93, 126);border-bottom-color: rgb(47, 93, 126);background-color: rgb(255, 255, 255);padding-left: 26px;padding-right: 26px;padding-top: 14px;padding-bottom: 14px;display: inline-flex;text-decoration-line: inherit;font-style: inherit !important; } .gp-component-id-gYSc__yaDL[data-gp-component]:hover,.gp-component-id-gYSc__yaDL[data-gp-component].gp-hover { font-weight: 500;color: rgb(47, 93, 126);font-family: Inter;border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;background-color: rgb(255, 255, 255);padding-left: 26px;padding-right: 26px;padding-top: 14px;padding-bottom: 14px;text-decoration-line: underline;font-style: inherit; } }

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

 @media (max-width: 639px) { .gp-component-id-6KdF2zo5P1[data-gp-component] { font-size: 48px !important;color: rgba(47, 93, 126, 0.3);line-height: 1;background-color: transparent;margin-bottom: 30px;padding-bottom: 0px;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-6KdF2zo5P1[data-gp-component] { font-size: 48px !important;color: rgba(47, 93, 126, 0.3);line-height: 1;background-color: transparent;margin-bottom: 30px;padding-bottom: 0px;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-6KdF2zo5P1[data-gp-component] { font-size: 48px !important;color: rgba(47, 93, 126, 0.3);line-height: 1;background-color: transparent;margin-bottom: 30px;padding-bottom: 0px;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-6KdF2zo5P1[data-gp-component] { font-size: 48px !important;color: rgba(47, 93, 126, 0.3);line-height: 1;background-color: transparent;margin-bottom: 30px;padding-bottom: 0px;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial; } } @media (min-width: 1200px) { .gp-component-id-6KdF2zo5P1[data-gp-component] { font-size: 48px !important;color: rgba(47, 93, 126, 0.3);line-height: 1;background-color: transparent;margin-bottom: 30px;padding-bottom: 0px;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-tNHkJBVkYs[data-gp-component] { font-size: 18px !important;font-weight: 500 !important;color: rgb(47, 93, 126);text-align: right;font-family: Inter !important;background-color: transparent;padding-top: 8px;padding-bottom: 8px;width: 304px;height: 45px;display: inline-flex;-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; } .gp-component-id-tNHkJBVkYs[data-gp-component]:hover,.gp-component-id-tNHkJBVkYs[data-gp-component].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) { .gp-component-id-tNHkJBVkYs[data-gp-component] { font-size: 18px !important;font-weight: 500 !important;color: rgb(47, 93, 126);text-align: right;font-family: Inter !important;background-color: transparent;padding-top: 8px;padding-bottom: 8px;width: 304px;height: 45px;display: inline-flex;-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; } .gp-component-id-tNHkJBVkYs[data-gp-component]:hover,.gp-component-id-tNHkJBVkYs[data-gp-component].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) { .gp-component-id-tNHkJBVkYs[data-gp-component] { font-size: 18px !important;font-weight: 500 !important;color: rgb(47, 93, 126);text-align: right;font-family: Inter !important;background-color: transparent;padding-top: 8px;padding-bottom: 8px;width: 304px;height: 45px;display: inline-flex;-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; } .gp-component-id-tNHkJBVkYs[data-gp-component]:hover,.gp-component-id-tNHkJBVkYs[data-gp-component].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) { .gp-component-id-tNHkJBVkYs[data-gp-component] { font-size: 18px !important;font-weight: 500 !important;color: rgb(47, 93, 126);text-align: right;font-family: Inter !important;background-color: transparent;padding-top: 8px;padding-bottom: 8px;width: 304px;height: 45px;display: inline-flex;-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; } .gp-component-id-tNHkJBVkYs[data-gp-component]:hover,.gp-component-id-tNHkJBVkYs[data-gp-component].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) { .gp-component-id-tNHkJBVkYs[data-gp-component] { font-size: 18px !important;font-weight: 500 !important;color: rgb(47, 93, 126);text-align: right;font-family: Inter !important;background-color: transparent;padding-top: 8px;padding-bottom: 8px;width: 304px;height: 45px;display: inline-flex;-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; } .gp-component-id-tNHkJBVkYs[data-gp-component]:hover,.gp-component-id-tNHkJBVkYs[data-gp-component].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) { [data-gp-text] .gp-component-id-a5M4j_F1px { font-size: 42px !important;font-weight: 600;color: rgb(16, 42, 67);text-align: left;padding-left: 0px;padding-right: 0px; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-a5M4j_F1px { font-size: 42px !important;font-weight: 600;color: rgb(16, 42, 67);text-align: left;padding-left: 0px;padding-right: 0px; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-a5M4j_F1px { font-size: 42px !important;font-weight: 600;color: rgb(16, 42, 67);text-align: left;padding-left: 0px;padding-right: 0px; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-a5M4j_F1px { font-size: 42px !important;font-weight: 600;color: rgb(16, 42, 67);text-align: left;padding-left: 0px;padding-right: 0px; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-a5M4j_F1px { font-size: 42px !important;font-weight: 600;color: rgb(16, 42, 67);text-align: left;padding-left: 0px;padding-right: 0px; } }

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

 @media (max-width: 639px) { .gp-component-id-D6oL0YZb_[data-gp-component] { background-size: cover;background-position-x: 50%;background-position-y: center;position: relative;z-index: 10; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-D6oL0YZb_[data-gp-component] { background-size: cover;background-position-x: 50%;background-position-y: center;position: relative;z-index: 10; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-D6oL0YZb_[data-gp-component] { background-size: cover;background-position-x: 50%;background-position-y: center;position: relative;z-index: 10; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-D6oL0YZb_[data-gp-component] { background-size: cover;background-position-x: 50%;background-position-y: center;position: relative;z-index: 10; } } @media (min-width: 1200px) { .gp-component-id-D6oL0YZb_[data-gp-component] { background-size: cover;background-position-x: 50%;background-position-y: center;position: relative;z-index: 10; } }

 @media (max-width: 639px) { .gp-component-id-xXZjUyFTr[data-gp-component] { text-align: center;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial; } .gp-component-id-xXZjUyFTr[data-gp-component]:hover,.gp-component-id-xXZjUyFTr[data-gp-component].gp-hover { background-color: rgb(120, 136, 155); } .gp-component-id-xXZjUyFTr[data-gp-component]:active,.gp-component-id-xXZjUyFTr[data-gp-component].gp-active { background-color: rgb(32, 45, 60); } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-xXZjUyFTr[data-gp-component] { text-align: center;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial; } .gp-component-id-xXZjUyFTr[data-gp-component]:hover,.gp-component-id-xXZjUyFTr[data-gp-component].gp-hover { background-color: rgb(120, 136, 155); } .gp-component-id-xXZjUyFTr[data-gp-component]:active,.gp-component-id-xXZjUyFTr[data-gp-component].gp-active { background-color: rgb(32, 45, 60); } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-xXZjUyFTr[data-gp-component] { text-align: center;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial; } .gp-component-id-xXZjUyFTr[data-gp-component]:hover,.gp-component-id-xXZjUyFTr[data-gp-component].gp-hover { background-color: rgb(120, 136, 155); } .gp-component-id-xXZjUyFTr[data-gp-component]:active,.gp-component-id-xXZjUyFTr[data-gp-component].gp-active { background-color: rgb(32, 45, 60); } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-xXZjUyFTr[data-gp-component] { text-align: center;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial; } .gp-component-id-xXZjUyFTr[data-gp-component]:hover,.gp-component-id-xXZjUyFTr[data-gp-component].gp-hover { background-color: rgb(120, 136, 155); } .gp-component-id-xXZjUyFTr[data-gp-component]:active,.gp-component-id-xXZjUyFTr[data-gp-component].gp-active { background-color: rgb(32, 45, 60); } } @media (min-width: 1200px) { .gp-component-id-xXZjUyFTr[data-gp-component] { text-align: center;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial; } .gp-component-id-xXZjUyFTr[data-gp-component]:hover,.gp-component-id-xXZjUyFTr[data-gp-component].gp-hover { background-color: rgb(120, 136, 155); } .gp-component-id-xXZjUyFTr[data-gp-component]:active,.gp-component-id-xXZjUyFTr[data-gp-component].gp-active { background-color: rgb(32, 45, 60); } }

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

 @media (max-width: 639px) { .gp-component-id-3hvHrEFx7[data-gp-component] { margin-left: auto;margin-right: auto;max-width: 960px;flex-direction: column;justify-content: center;align-items: center;display: flex; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-3hvHrEFx7[data-gp-component] { margin-left: auto;margin-right: auto;max-width: 960px;flex-direction: column;justify-content: center;align-items: center;display: flex; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-3hvHrEFx7[data-gp-component] { margin-left: auto;margin-right: auto;max-width: 960px;flex-direction: column;justify-content: center;align-items: center;display: flex; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-3hvHrEFx7[data-gp-component] { margin-left: auto;margin-right: auto;max-width: 960px;flex-direction: column;justify-content: center;align-items: center;display: flex; } } @media (min-width: 1200px) { .gp-component-id-3hvHrEFx7[data-gp-component] { margin-left: auto;margin-right: auto;max-width: 960px;flex-direction: column;justify-content: center;align-items: center;display: flex; } }

 @media (max-width: 639px) { .gp-component-id-ijPzxVUD5[data-gp-component] { background-size: cover;padding-left: 16px;padding-right: 16px;padding-top: 48px;padding-bottom: 48px;position: relative;z-index: 10;background-position-y: 50%;background-position-x: 50%; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-ijPzxVUD5[data-gp-component] { background-size: cover;padding-left: 16px;padding-right: 16px;padding-top: 48px;padding-bottom: 48px;position: relative;z-index: 10;background-position-y: 50%;background-position-x: 50%; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-ijPzxVUD5[data-gp-component] { background-size: cover;padding-left: 16px;padding-right: 16px;padding-top: 80px;padding-bottom: 80px;position: relative;z-index: 10;background-position-y: 50%;background-position-x: 50%; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-ijPzxVUD5[data-gp-component] { background-size: cover;padding-left: 16px;padding-right: 16px;padding-top: 80px;padding-bottom: 80px;position: relative;z-index: 10;background-position-y: 50%;background-position-x: 50%; } } @media (min-width: 1200px) { .gp-component-id-ijPzxVUD5[data-gp-component] { background-size: cover;padding-left: 16px;padding-right: 16px;padding-top: 80px;padding-bottom: 80px;position: relative;z-index: 10;background-position-y: 50%;background-position-x: 50%; } }

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

 @media (max-width: 639px) { .gp-component-id-CbQsGD5Z8[data-gp-component] { background-size: cover;padding-left: 16px;padding-right: 16px;padding-top: 48px;padding-bottom: 48px;background-position-x: 50%;background-position-y: 50%;z-index: 10;position: relative; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-CbQsGD5Z8[data-gp-component] { background-size: cover;padding-left: 16px;padding-right: 16px;padding-top: 48px;padding-bottom: 48px;background-position-x: 50%;background-position-y: 50%;z-index: 10;position: relative; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-CbQsGD5Z8[data-gp-component] { background-size: cover;padding-left: 16px;padding-right: 16px;padding-top: 80px;padding-bottom: 80px;background-position-x: 50%;background-position-y: 50%;z-index: 10;position: relative; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-CbQsGD5Z8[data-gp-component] { background-size: cover;padding-left: 16px;padding-right: 16px;padding-top: 80px;padding-bottom: 80px;background-position-x: 50%;background-position-y: 50%;z-index: 10;position: relative; } } @media (min-width: 1200px) { .gp-component-id-CbQsGD5Z8[data-gp-component] { background-size: cover;padding-left: 16px;padding-right: 16px;padding-top: 80px;padding-bottom: 80px;background-position-x: 50%;background-position-y: 50%;z-index: 10;position: relative; } }

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

 @media (max-width: 639px) { .gp-component-id-it0CuT0bn8c[data-gp-component] { box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;height: 100%; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-it0CuT0bn8c[data-gp-component] { box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;height: 100%; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-it0CuT0bn8c[data-gp-component] { box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;height: 100%; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-it0CuT0bn8c[data-gp-component] { box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;height: 100%; } } @media (min-width: 1200px) { .gp-component-id-it0CuT0bn8c[data-gp-component] { box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;height: 100%; } }

 @media (max-width: 639px) { .gp-component-id-ro0r1ieZECA[data-gp-component] { box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;height: 100%; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-ro0r1ieZECA[data-gp-component] { box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;height: 100%; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-ro0r1ieZECA[data-gp-component] { box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;height: 100%; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-ro0r1ieZECA[data-gp-component] { box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;height: 100%; } } @media (min-width: 1200px) { .gp-component-id-ro0r1ieZECA[data-gp-component] { box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;height: 100%; } }

 @media (max-width: 639px) { .gp-component-id-LVELR6ciARg[data-gp-component] { box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;height: 100%; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-LVELR6ciARg[data-gp-component] { box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;height: 100%; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-LVELR6ciARg[data-gp-component] { box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;height: 100%; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-LVELR6ciARg[data-gp-component] { box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;height: 100%; } } @media (min-width: 1200px) { .gp-component-id-LVELR6ciARg[data-gp-component] { box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;height: 100%; } }

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

 @media (max-width: 639px) { [data-gp-text] .gp-component-id-3ausW1Ubl4Y { font-size: 20px;font-weight: 700;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 12px;cursor: text;box-sizing: border-box; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-3ausW1Ubl4Y { font-size: 20px;font-weight: 700;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 12px;cursor: text;box-sizing: border-box; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-3ausW1Ubl4Y { font-size: 20px;font-weight: 700;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 12px;cursor: text;box-sizing: border-box; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-3ausW1Ubl4Y { font-size: 20px;font-weight: 700;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 12px;cursor: text;box-sizing: border-box; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-3ausW1Ubl4Y { font-size: 20px;font-weight: 700;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 12px;cursor: text;box-sizing: border-box; } }

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

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

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

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

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

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

 @media (max-width: 639px) { .gp-component-id-oG9qNOHBN[data-gp-component] { border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;margin-bottom: 20px;padding-left: 8px;padding-right: 8px;padding-top: 12px;padding-bottom: 12px;width: 100%; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-oG9qNOHBN[data-gp-component] { border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;margin-bottom: 20px;padding-left: 8px;padding-right: 8px;padding-top: 12px;padding-bottom: 12px;width: 100%; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-oG9qNOHBN[data-gp-component] { border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;margin-bottom: 20px;padding-left: 8px;padding-right: 8px;padding-top: 12px;padding-bottom: 12px;width: 100%; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-oG9qNOHBN[data-gp-component] { border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;margin-bottom: 20px;padding-left: 8px;padding-right: 8px;padding-top: 12px;padding-bottom: 12px;width: 85.71%; } } @media (min-width: 1200px) { .gp-component-id-oG9qNOHBN[data-gp-component] { border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;margin-bottom: 20px;padding-left: 8px;padding-right: 8px;padding-top: 12px;padding-bottom: 12px;width: 85.71%; } }

 @media (max-width: 639px) { [data-gp-text] .gp-component-id-yM7OFKKr4d { font-size: 20px;font-weight: 700;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 12px;box-sizing: border-box;cursor: text; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-yM7OFKKr4d { font-size: 20px;font-weight: 700;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 12px;box-sizing: border-box;cursor: text; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-yM7OFKKr4d { font-size: 20px;font-weight: 700;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 12px;box-sizing: border-box;cursor: text; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-yM7OFKKr4d { font-size: 20px;font-weight: 700;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 12px;box-sizing: border-box;cursor: text; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-yM7OFKKr4d { font-size: 20px;font-weight: 700;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 12px;box-sizing: border-box;cursor: text; } }

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

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

 @media (max-width: 639px) { .gp-component-id-deB_DzLtu[data-gp-component] { font-size: 16px !important;font-weight: 500 !important;color: rgb(47, 93, 126);font-family: Inter !important;border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;border-left-width: 3px;border-right-width: 3px;border-top-width: 3px;border-bottom-width: 3px;border-left-color: rgb(47, 93, 126);border-right-color: rgb(47, 93, 126);border-top-color: rgb(47, 93, 126);border-bottom-color: rgb(47, 93, 126);background-color: rgb(255, 255, 255);margin-left: 12px;padding-left: 26px;padding-right: 26px;padding-top: 14px;padding-bottom: 14px;display: inline-flex;text-decoration-line: inherit;font-style: inherit !important; } .gp-component-id-deB_DzLtu[data-gp-component]:hover,.gp-component-id-deB_DzLtu[data-gp-component].gp-hover { font-weight: 500;color: rgb(47, 93, 126);font-family: Inter;border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;background-color: rgb(255, 255, 255);padding-left: 26px;padding-right: 26px;padding-top: 14px;padding-bottom: 14px;text-decoration-line: underline;font-style: inherit; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-deB_DzLtu[data-gp-component] { font-size: 16px !important;font-weight: 500 !important;color: rgb(47, 93, 126);font-family: Inter !important;border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;border-left-width: 3px;border-right-width: 3px;border-top-width: 3px;border-bottom-width: 3px;border-left-color: rgb(47, 93, 126);border-right-color: rgb(47, 93, 126);border-top-color: rgb(47, 93, 126);border-bottom-color: rgb(47, 93, 126);background-color: rgb(255, 255, 255);margin-left: 12px;padding-left: 26px;padding-right: 26px;padding-top: 14px;padding-bottom: 14px;display: inline-flex;text-decoration-line: inherit;font-style: inherit !important; } .gp-component-id-deB_DzLtu[data-gp-component]:hover,.gp-component-id-deB_DzLtu[data-gp-component].gp-hover { font-weight: 500;color: rgb(47, 93, 126);font-family: Inter;border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;background-color: rgb(255, 255, 255);padding-left: 26px;padding-right: 26px;padding-top: 14px;padding-bottom: 14px;text-decoration-line: underline;font-style: inherit; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-deB_DzLtu[data-gp-component] { font-size: 16px !important;font-weight: 500 !important;color: rgb(47, 93, 126);font-family: Inter !important;border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;border-left-width: 3px;border-right-width: 3px;border-top-width: 3px;border-bottom-width: 3px;border-left-color: rgb(47, 93, 126);border-right-color: rgb(47, 93, 126);border-top-color: rgb(47, 93, 126);border-bottom-color: rgb(47, 93, 126);background-color: rgb(255, 255, 255);margin-left: 12px;padding-left: 26px;padding-right: 26px;padding-top: 14px;padding-bottom: 14px;display: inline-flex;text-decoration-line: inherit;font-style: inherit !important; } .gp-component-id-deB_DzLtu[data-gp-component]:hover,.gp-component-id-deB_DzLtu[data-gp-component].gp-hover { font-weight: 500;color: rgb(47, 93, 126);font-family: Inter;border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;background-color: rgb(255, 255, 255);padding-left: 26px;padding-right: 26px;padding-top: 14px;padding-bottom: 14px;text-decoration-line: underline;font-style: inherit; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-deB_DzLtu[data-gp-component] { font-size: 16px !important;font-weight: 500 !important;color: rgb(47, 93, 126);font-family: Inter !important;border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;border-left-width: 3px;border-right-width: 3px;border-top-width: 3px;border-bottom-width: 3px;border-left-color: rgb(47, 93, 126);border-right-color: rgb(47, 93, 126);border-top-color: rgb(47, 93, 126);border-bottom-color: rgb(47, 93, 126);background-color: rgb(255, 255, 255);margin-left: 12px;padding-left: 26px;padding-right: 26px;padding-top: 14px;padding-bottom: 14px;display: inline-flex;text-decoration-line: inherit;font-style: inherit !important; } .gp-component-id-deB_DzLtu[data-gp-component]:hover,.gp-component-id-deB_DzLtu[data-gp-component].gp-hover { font-weight: 500;color: rgb(47, 93, 126);font-family: Inter;border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;background-color: rgb(255, 255, 255);padding-left: 26px;padding-right: 26px;padding-top: 14px;padding-bottom: 14px;text-decoration-line: underline;font-style: inherit; } } @media (min-width: 1200px) { .gp-component-id-deB_DzLtu[data-gp-component] { font-size: 16px !important;font-weight: 500 !important;color: rgb(47, 93, 126);font-family: Inter !important;border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;border-left-width: 3px;border-right-width: 3px;border-top-width: 3px;border-bottom-width: 3px;border-left-color: rgb(47, 93, 126);border-right-color: rgb(47, 93, 126);border-top-color: rgb(47, 93, 126);border-bottom-color: rgb(47, 93, 126);background-color: rgb(255, 255, 255);margin-left: 12px;padding-left: 26px;padding-right: 26px;padding-top: 14px;padding-bottom: 14px;display: inline-flex;text-decoration-line: inherit;font-style: inherit !important; } .gp-component-id-deB_DzLtu[data-gp-component]:hover,.gp-component-id-deB_DzLtu[data-gp-component].gp-hover { font-weight: 500;color: rgb(47, 93, 126);font-family: Inter;border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;background-color: rgb(255, 255, 255);padding-left: 26px;padding-right: 26px;padding-top: 14px;padding-bottom: 14px;text-decoration-line: underline;font-style: inherit; } }

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

 @media (max-width: 639px) { .gp-component-id-L1aJFMQeC3[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-L1aJFMQeC3[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-L1aJFMQeC3[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-L1aJFMQeC3[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-L1aJFMQeC3[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; } }

 .gp-component-id-ZLM_uynbxT { 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-ZLM_uynbxT { 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-ZLM_uynbxT { 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-ZLM_uynbxT { 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-ZLM_uynbxT { 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-ZLM_uynbxT { 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-qHsQrQTL0y { 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-qHsQrQTL0y { 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-qHsQrQTL0y { 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-qHsQrQTL0y { 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-qHsQrQTL0y { 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-qHsQrQTL0y { 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-_I0XaiWuwb[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-_I0XaiWuwb[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-_I0XaiWuwb[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-_I0XaiWuwb[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-_I0XaiWuwb[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-ITHWxw5tRD { 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-ITHWxw5tRD { 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-ITHWxw5tRD { 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-ITHWxw5tRD { 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-ITHWxw5tRD { 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-ITHWxw5tRD { 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-rRg5yY7I5o { 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-rRg5yY7I5o { 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-rRg5yY7I5o { 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-rRg5yY7I5o { 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-rRg5yY7I5o { 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-rRg5yY7I5o { 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-KD5cO0PHJN { 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-KD5cO0PHJN { 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-KD5cO0PHJN { 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-KD5cO0PHJN { 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-KD5cO0PHJN { 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-KD5cO0PHJN { display: flex; margin-left: auto; margin-right: auto; justify-content: space-between; align-items: center; width: 100%; max-width: 1200px; } }

 .gp-component-id-aLmXnwJtlx { 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-aLmXnwJtlx { 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-aLmXnwJtlx { 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-aLmXnwJtlx { 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-aLmXnwJtlx { 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-aLmXnwJtlx { 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-DTURMHslDL[data-gp-component] { border-bottom-style: solid;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-bottom-color: rgb(217, 226, 236);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-DTURMHslDL[data-gp-component] { border-bottom-style: solid;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-bottom-color: rgb(217, 226, 236);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-DTURMHslDL[data-gp-component] { border-bottom-style: solid;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-bottom-color: rgb(217, 226, 236);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-DTURMHslDL[data-gp-component] { border-bottom-style: solid;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-bottom-color: rgb(217, 226, 236);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-DTURMHslDL[data-gp-component] { border-bottom-style: solid;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-bottom-color: rgb(217, 226, 236);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: 639px) { .gp-component-id-5NZtj7lAO4J[data-gp-component] { font-size: 24px;color: rgba(243, 243, 243, 1);line-height: 1;background-color: transparent;padding-left: 8px;padding-right: 8px;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-5NZtj7lAO4J[data-gp-component] { font-size: 24px;color: rgba(243, 243, 243, 1);line-height: 1;background-color: transparent;padding-left: 8px;padding-right: 8px;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-5NZtj7lAO4J[data-gp-component] { font-size: 30px;color: rgba(243, 243, 243, 1);line-height: 1;background-color: transparent;padding-left: 8px;padding-right: 8px;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-5NZtj7lAO4J[data-gp-component] { font-size: 30px;color: rgba(243, 243, 243, 1);line-height: 1;background-color: transparent;padding-left: 8px;padding-right: 8px;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial; } } @media (min-width: 1200px) { .gp-component-id-5NZtj7lAO4J[data-gp-component] { font-size: 30px;color: rgba(243, 243, 243, 1);line-height: 1;background-color: transparent;padding-left: 8px;padding-right: 8px;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial; } }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

 .gp-component-id-kVEsiLAWsu { display: flex; align-items: center; justify-content: center; flex-direction: column; max-width: 60rem; margin-right: auto; margin-left: auto; }

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

 .gp-component-id-P69iCJDCZuO { min-height: 120px; display: flex; align-items: center; justify-content: center; flex-direction: column; height: 100%; width: 100%; padding-bottom: 1rem; padding-top: 1rem; padding-right: 1.25rem; padding-left: 1.25rem; } @media (min-width: 640px) { .gp-component-id-P69iCJDCZuO { display: flex; align-items: center; justify-content: center; flex-direction: column; padding-bottom: 1rem; padding-top: 1rem; padding-right: 1.25rem; padding-left: 1.25rem; } } @media (min-width: 768px) { .gp-component-id-P69iCJDCZuO { display: flex; align-items: center; justify-content: center; flex-direction: column; padding-bottom: 1rem; padding-top: 1rem; padding-right: 1.25rem; padding-left: 1.25rem; } } @media (min-width: 992px) { .gp-component-id-P69iCJDCZuO { display: flex; align-items: flex-start; justify-content: center; flex-direction: column; padding-bottom: 1rem; padding-top: 1rem; padding-right: 0px; padding-left: 0px; } } @media (min-width: 1200px) { .gp-component-id-P69iCJDCZuO { display: flex; justify-content: center; flex-direction: column; padding-bottom: 1rem; padding-top: 1rem; } }

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

 .gp-component-id-QZ1Bm7aE43j { min-height: 120px; display: flex; align-items: center; justify-content: center; flex-direction: column; height: 146.99px; width: 100%; } @media (min-width: 640px) { .gp-component-id-QZ1Bm7aE43j { display: flex; align-items: center; justify-content: center; flex-direction: column; height: 146.99px; } } @media (min-width: 768px) { .gp-component-id-QZ1Bm7aE43j { display: flex; align-items: center; justify-content: center; flex-direction: column; height: 146.99px; } } @media (min-width: 992px) { .gp-component-id-QZ1Bm7aE43j { display: flex; align-items: center; justify-content: center; flex-direction: column; height: 146.99px; } } @media (min-width: 1200px) { .gp-component-id-QZ1Bm7aE43j { display: flex; align-items: center; justify-content: center; flex-direction: column; height: 146.99px; } }

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

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

 .gp-component-id-sYlOur78qYf { width: 100%; padding-bottom: 0.75rem; padding-top: 0.75rem; padding-right: 0.5rem; padding-left: 0.5rem; margin-bottom: 1.25rem; box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px; background-color: rgb(255, 255, 255); border-bottom-right-radius: 0.35rem; border-bottom-left-radius: 0.35rem; border-top-right-radius: 0.35rem; border-top-left-radius: 0.35rem; } @media (min-width: 640px) { .gp-component-id-sYlOur78qYf { padding-bottom: 0.75rem; padding-top: 0.75rem; margin-bottom: 1.25rem; box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px; background-color: rgb(255, 255, 255); border-bottom-right-radius: 0.35rem; border-bottom-left-radius: 0.35rem; border-top-right-radius: 0.35rem; border-top-left-radius: 0.35rem; } } @media (min-width: 768px) { .gp-component-id-sYlOur78qYf { padding-bottom: 0.75rem; padding-top: 0.75rem; margin-bottom: 1.25rem; box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px; background-color: rgb(255, 255, 255); border-bottom-right-radius: 0.35rem; border-bottom-left-radius: 0.35rem; border-top-right-radius: 0.35rem; border-top-left-radius: 0.35rem; } } @media (min-width: 992px) { .gp-component-id-sYlOur78qYf { width: 85.71%; padding-bottom: 0.75rem; padding-top: 0.75rem; margin-bottom: 1.25rem; box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px; background-color: rgb(255, 255, 255); border-bottom-right-radius: 0.35rem; border-bottom-left-radius: 0.35rem; border-top-right-radius: 0.35rem; border-top-left-radius: 0.35rem; } } @media (min-width: 1200px) { .gp-component-id-sYlOur78qYf { width: 85.71%; padding-bottom: 0.75rem; padding-top: 0.75rem; margin-bottom: 1.25rem; box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px; background-color: rgb(255, 255, 255); border-bottom-right-radius: 0.35rem; border-bottom-left-radius: 0.35rem; border-top-right-radius: 0.35rem; border-top-left-radius: 0.35rem; } }

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

 .gp-component-id-3pb1wrQGGvC { min-height: 120px; display: flex; align-items: center; justify-content: center; flex-direction: column; height: 100%; width: 100%; padding-bottom: 1rem; padding-top: 1rem; padding-right: 1.25rem; padding-left: 1.25rem; } @media (min-width: 640px) { .gp-component-id-3pb1wrQGGvC { display: flex; align-items: center; justify-content: center; flex-direction: column; padding-bottom: 1rem; padding-top: 1rem; padding-right: 1.25rem; padding-left: 1.25rem; } } @media (min-width: 768px) { .gp-component-id-3pb1wrQGGvC { display: flex; align-items: center; justify-content: center; flex-direction: column; padding-bottom: 1rem; padding-top: 1rem; padding-right: 1.25rem; padding-left: 1.25rem; } } @media (min-width: 992px) { .gp-component-id-3pb1wrQGGvC { display: flex; align-items: flex-start; justify-content: center; flex-direction: column; padding-bottom: 1rem; padding-top: 1rem; padding-right: 0px; padding-left: 0px; } } @media (min-width: 1200px) { .gp-component-id-3pb1wrQGGvC { display: flex; justify-content: center; flex-direction: column; padding-bottom: 1rem; padding-top: 1rem; } }

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

 .gp-component-id-LwL2b0taJBC { min-height: 120px; display: flex; align-items: center; justify-content: center; flex-direction: column; height: 145.99px; width: 100%; } @media (min-width: 640px) { .gp-component-id-LwL2b0taJBC { display: flex; align-items: center; justify-content: center; flex-direction: column; height: 145.99px; } } @media (min-width: 768px) { .gp-component-id-LwL2b0taJBC { display: flex; align-items: center; justify-content: center; flex-direction: column; height: 145.99px; } } @media (min-width: 992px) { .gp-component-id-LwL2b0taJBC { display: flex; align-items: center; justify-content: center; flex-direction: column; height: 145.99px; } } @media (min-width: 1200px) { .gp-component-id-LwL2b0taJBC { display: flex; align-items: center; justify-content: center; flex-direction: column; height: 145.99px; } }

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

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

 .gp-component-id-yK4ZUmJxSxs { width: 100%; padding-bottom: 0.75rem; padding-top: 0.75rem; padding-right: 0.5rem; padding-left: 0.5rem; margin-bottom: 1.25rem; box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px; background-color: rgb(255, 255, 255); border-bottom-right-radius: 0.35rem; border-bottom-left-radius: 0.35rem; border-top-right-radius: 0.35rem; border-top-left-radius: 0.35rem; } @media (min-width: 640px) { .gp-component-id-yK4ZUmJxSxs { padding-bottom: 0.75rem; padding-top: 0.75rem; margin-bottom: 1.25rem; box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px; background-color: rgb(255, 255, 255); border-bottom-right-radius: 0.35rem; border-bottom-left-radius: 0.35rem; border-top-right-radius: 0.35rem; border-top-left-radius: 0.35rem; } } @media (min-width: 768px) { .gp-component-id-yK4ZUmJxSxs { padding-bottom: 0.75rem; padding-top: 0.75rem; margin-bottom: 1.25rem; box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px; background-color: rgb(255, 255, 255); border-bottom-right-radius: 0.35rem; border-bottom-left-radius: 0.35rem; border-top-right-radius: 0.35rem; border-top-left-radius: 0.35rem; } } @media (min-width: 992px) { .gp-component-id-yK4ZUmJxSxs { width: 85.71%; padding-bottom: 0.75rem; padding-top: 0.75rem; margin-bottom: 1.25rem; box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px; background-color: rgb(255, 255, 255); border-bottom-right-radius: 0.35rem; border-bottom-left-radius: 0.35rem; border-top-right-radius: 0.35rem; border-top-left-radius: 0.35rem; } } @media (min-width: 1200px) { .gp-component-id-yK4ZUmJxSxs { width: 85.71%; padding-bottom: 0.75rem; padding-top: 0.75rem; margin-bottom: 1.25rem; box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px; background-color: rgb(255, 255, 255); border-bottom-right-radius: 0.35rem; border-bottom-left-radius: 0.35rem; border-top-right-radius: 0.35rem; border-top-left-radius: 0.35rem; } }

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

 .gp-component-id-YkK9SCWhMH { min-height: 120px; display: flex; align-items: center; justify-content: center; flex-direction: column; height: 100%; width: 100%; padding-bottom: 1rem; padding-top: 1rem; padding-right: 1.25rem; padding-left: 1.25rem; } @media (min-width: 640px) { .gp-component-id-YkK9SCWhMH { display: flex; align-items: center; justify-content: center; flex-direction: column; padding-bottom: 1rem; padding-top: 1rem; padding-right: 1.25rem; padding-left: 1.25rem; } } @media (min-width: 768px) { .gp-component-id-YkK9SCWhMH { display: flex; align-items: center; justify-content: center; flex-direction: column; padding-bottom: 1rem; padding-top: 1rem; padding-right: 1.25rem; padding-left: 1.25rem; } } @media (min-width: 992px) { .gp-component-id-YkK9SCWhMH { display: flex; align-items: flex-start; justify-content: center; flex-direction: column; padding-bottom: 1rem; padding-top: 1rem; } } @media (min-width: 1200px) { .gp-component-id-YkK9SCWhMH { display: flex; justify-content: center; flex-direction: column; padding-bottom: 1rem; padding-top: 1rem; padding-right: 0px; padding-left: 0px; } }

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

 .gp-component-id-0SuurtFxHg { min-height: 120px; display: flex; align-items: center; justify-content: center; flex-direction: column; height: 145.99px; width: 100%; } @media (min-width: 640px) { .gp-component-id-0SuurtFxHg { display: flex; align-items: center; justify-content: center; flex-direction: column; height: 145.99px; } } @media (min-width: 768px) { .gp-component-id-0SuurtFxHg { display: flex; align-items: center; justify-content: center; flex-direction: column; height: 145.99px; } } @media (min-width: 992px) { .gp-component-id-0SuurtFxHg { display: flex; align-items: center; justify-content: center; flex-direction: column; height: 145.99px; } } @media (min-width: 1200px) { .gp-component-id-0SuurtFxHg { display: flex; align-items: center; justify-content: center; flex-direction: column; height: 145.99px; } }

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

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

 .gp-component-id-dAIO3oqYLO { width: 100%; padding-bottom: 0.75rem; padding-top: 0.75rem; padding-right: 0.5rem; padding-left: 0.5rem; margin-bottom: 1.25rem; box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px; background-color: rgb(255, 255, 255); border-bottom-right-radius: 0.35rem; border-bottom-left-radius: 0.35rem; border-top-right-radius: 0.35rem; border-top-left-radius: 0.35rem; } @media (min-width: 640px) { .gp-component-id-dAIO3oqYLO { padding-bottom: 0.75rem; padding-top: 0.75rem; margin-bottom: 1.25rem; box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px; background-color: rgb(255, 255, 255); border-bottom-right-radius: 0.35rem; border-bottom-left-radius: 0.35rem; border-top-right-radius: 0.35rem; border-top-left-radius: 0.35rem; } } @media (min-width: 768px) { .gp-component-id-dAIO3oqYLO { padding-bottom: 0.75rem; padding-top: 0.75rem; margin-bottom: 1.25rem; box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px; background-color: rgb(255, 255, 255); border-bottom-right-radius: 0.35rem; border-bottom-left-radius: 0.35rem; border-top-right-radius: 0.35rem; border-top-left-radius: 0.35rem; } } @media (min-width: 992px) { .gp-component-id-dAIO3oqYLO { width: 85.71%; padding-bottom: 0.75rem; padding-top: 0.75rem; margin-bottom: 1.25rem; box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px; background-color: rgb(255, 255, 255); border-bottom-right-radius: 0.35rem; border-bottom-left-radius: 0.35rem; border-top-right-radius: 0.35rem; border-top-left-radius: 0.35rem; } } @media (min-width: 1200px) { .gp-component-id-dAIO3oqYLO { width: 85.71%; padding-bottom: 0.75rem; padding-top: 0.75rem; margin-bottom: 1.25rem; box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px; background-color: rgb(255, 255, 255); border-bottom-right-radius: 0.35rem; border-bottom-left-radius: 0.35rem; border-top-right-radius: 0.35rem; border-top-left-radius: 0.35rem; } }

 .gp-component-id-rwzn8aO5Ez { list-style-type: inherit; list-style-position: inside; height: auto; width: 85.71%; padding-bottom: 1rem; padding-top: 1rem; padding-left: 1rem; margin-bottom: 1rem; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-right: 0px; } @media (min-width: 640px) { .gp-component-id-rwzn8aO5Ez { height: auto; width: 85.71%; } } @media (min-width: 768px) { .gp-component-id-rwzn8aO5Ez { height: auto; width: 85.71%; } } @media (min-width: 992px) { .gp-component-id-rwzn8aO5Ez { display: flex; align-items: center; flex-direction: column; height: auto; width: 100%; } } @media (min-width: 1200px) { .gp-component-id-rwzn8aO5Ez { height: auto; width: 100%; } }

 .gp-component-id-CqVMlAwh0O { width: 85.71%; margin-bottom: 1.75rem; } @media (min-width: 640px) { .gp-component-id-CqVMlAwh0O { width: 85.71%; margin-bottom: 1.75rem; } } @media (min-width: 768px) { .gp-component-id-CqVMlAwh0O { width: 80%; margin-bottom: 1.75rem; } } @media (min-width: 992px) { .gp-component-id-CqVMlAwh0O { width: 75%; margin-bottom: 1.75rem; } } @media (min-width: 1200px) { .gp-component-id-CqVMlAwh0O { width: 75%; margin-bottom: 1.75rem; } }

 .gp-component-id-_8WR3IK4Kh { display: flex; align-items: center; flex-direction: column; width: 100%; margin-right: auto; margin-left: auto; } @media (min-width: 640px) { .gp-component-id-_8WR3IK4Kh { display: flex; align-items: center; flex-direction: column; max-width: 640px; } } @media (min-width: 768px) { .gp-component-id-_8WR3IK4Kh { display: flex; align-items: center; flex-direction: column; max-width: 768px; } } @media (min-width: 992px) { .gp-component-id-_8WR3IK4Kh { display: flex; align-items: center; flex-direction: column; max-width: 992px; } } @media (min-width: 1200px) { .gp-component-id-_8WR3IK4Kh { display: flex; align-items: center; flex-direction: column; max-width: 1200px; } }

 .gp-component-id-iPhsM1sle2N { margin-bottom: 2.25rem; } @media (min-width: 768px) { .gp-component-id-iPhsM1sle2N { display: flex; } } @media (min-width: 992px) { .gp-component-id-iPhsM1sle2N { margin-bottom: 4.5rem; } }

 .gp-component-id-djvkpwvB2RM { margin-bottom: 2.25rem; } @media (min-width: 768px) { .gp-component-id-djvkpwvB2RM { display: flex; } } @media (min-width: 992px) { .gp-component-id-djvkpwvB2RM { margin-bottom: 4.5rem; } }

 .gp-component-id-0c3xuNQBNmJ { height: 100%; width: 100%; }

 .gp-component-id-W1ilyg5md8p { width: 100%; padding-left: 1rem; padding-right: 1rem; } @media (min-width: 768px) { .gp-component-id-W1ilyg5md8p { width: 50%; } }

 .gp-component-id-ELRVRFLNu4e { margin-bottom: 2.25rem; } @media (min-width: 768px) { .gp-component-id-ELRVRFLNu4e { display: flex; } } @media (min-width: 992px) { .gp-component-id-ELRVRFLNu4e { margin-bottom: 4.5rem; } }

 .gp-component-id-G3Mh1aHGVWs { margin-bottom: 2.25rem; } @media (min-width: 768px) { .gp-component-id-G3Mh1aHGVWs { display: flex; } } @media (min-width: 992px) { .gp-component-id-G3Mh1aHGVWs { margin-bottom: 4.5rem; } }

 .gp-component-id-wbZ_ayIjtiv { width: 100%; padding-left: 1rem; padding-right: 1rem; } @media (min-width: 768px) { .gp-component-id-wbZ_ayIjtiv { width: 50%; } }

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

 .gp-component-id-5k9WAmTEqk { height: 100%; width: 100%; }

 .gp-component-id-6K5voZYFX_t { width: 100%; padding-left: 1rem; padding-right: 1rem; }

 .gp-component-id-VVWMDI_hJo { margin-right: -1rem; margin-left: -1rem; }

 @media (max-width: 639px) { .gp-component-id-N2zjDto6Vrx[data-gp-component] { font-size: 16px !important;font-weight: 500 !important;color: rgb(47, 93, 126);font-family: Inter !important;border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;border-left-width: 3px;border-right-width: 3px;border-top-width: 3px;border-bottom-width: 3px;border-left-color: rgb(47, 93, 126);border-right-color: rgb(47, 93, 126);border-top-color: rgb(47, 93, 126);border-bottom-color: rgb(47, 93, 126);background-color: rgb(255, 255, 255);margin-top: 40px;padding-left: 26px;padding-right: 26px;padding-top: 14px;padding-bottom: 14px;display: inline-flex;text-decoration-line: inherit;font-style: inherit !important; } .gp-component-id-N2zjDto6Vrx[data-gp-component]:hover,.gp-component-id-N2zjDto6Vrx[data-gp-component].gp-hover { font-weight: 500;color: rgb(47, 93, 126);font-family: Inter;border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;background-color: rgb(255, 255, 255);padding-left: 26px;padding-right: 26px;padding-top: 14px;padding-bottom: 14px;text-decoration-line: underline;font-style: inherit; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-N2zjDto6Vrx[data-gp-component] { font-size: 16px !important;font-weight: 500 !important;color: rgb(47, 93, 126);font-family: Inter !important;border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;border-left-width: 3px;border-right-width: 3px;border-top-width: 3px;border-bottom-width: 3px;border-left-color: rgb(47, 93, 126);border-right-color: rgb(47, 93, 126);border-top-color: rgb(47, 93, 126);border-bottom-color: rgb(47, 93, 126);background-color: rgb(255, 255, 255);margin-top: 40px;padding-left: 26px;padding-right: 26px;padding-top: 14px;padding-bottom: 14px;display: inline-flex;text-decoration-line: inherit;font-style: inherit !important; } .gp-component-id-N2zjDto6Vrx[data-gp-component]:hover,.gp-component-id-N2zjDto6Vrx[data-gp-component].gp-hover { font-weight: 500;color: rgb(47, 93, 126);font-family: Inter;border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;background-color: rgb(255, 255, 255);padding-left: 26px;padding-right: 26px;padding-top: 14px;padding-bottom: 14px;text-decoration-line: underline;font-style: inherit; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-N2zjDto6Vrx[data-gp-component] { font-size: 16px !important;font-weight: 500 !important;color: rgb(47, 93, 126);font-family: Inter !important;border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;border-left-width: 3px;border-right-width: 3px;border-top-width: 3px;border-bottom-width: 3px;border-left-color: rgb(47, 93, 126);border-right-color: rgb(47, 93, 126);border-top-color: rgb(47, 93, 126);border-bottom-color: rgb(47, 93, 126);background-color: rgb(255, 255, 255);margin-top: 40px;padding-left: 26px;padding-right: 26px;padding-top: 14px;padding-bottom: 14px;display: inline-flex;text-decoration-line: inherit;font-style: inherit !important; } .gp-component-id-N2zjDto6Vrx[data-gp-component]:hover,.gp-component-id-N2zjDto6Vrx[data-gp-component].gp-hover { font-weight: 500;color: rgb(47, 93, 126);font-family: Inter;border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;background-color: rgb(255, 255, 255);padding-left: 26px;padding-right: 26px;padding-top: 14px;padding-bottom: 14px;text-decoration-line: underline;font-style: inherit; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-N2zjDto6Vrx[data-gp-component] { font-size: 16px !important;font-weight: 500 !important;color: rgb(47, 93, 126);font-family: Inter !important;border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;border-left-width: 3px;border-right-width: 3px;border-top-width: 3px;border-bottom-width: 3px;border-left-color: rgb(47, 93, 126);border-right-color: rgb(47, 93, 126);border-top-color: rgb(47, 93, 126);border-bottom-color: rgb(47, 93, 126);background-color: rgb(255, 255, 255);margin-top: 40px;padding-left: 26px;padding-right: 26px;padding-top: 14px;padding-bottom: 14px;display: inline-flex;text-decoration-line: inherit;font-style: inherit !important; } .gp-component-id-N2zjDto6Vrx[data-gp-component]:hover,.gp-component-id-N2zjDto6Vrx[data-gp-component].gp-hover { font-weight: 500;color: rgb(47, 93, 126);font-family: Inter;border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;background-color: rgb(255, 255, 255);padding-left: 26px;padding-right: 26px;padding-top: 14px;padding-bottom: 14px;text-decoration-line: underline;font-style: inherit; } } @media (min-width: 1200px) { .gp-component-id-N2zjDto6Vrx[data-gp-component] { font-size: 16px !important;font-weight: 500 !important;color: rgb(47, 93, 126);font-family: Inter !important;border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;border-left-width: 3px;border-right-width: 3px;border-top-width: 3px;border-bottom-width: 3px;border-left-color: rgb(47, 93, 126);border-right-color: rgb(47, 93, 126);border-top-color: rgb(47, 93, 126);border-bottom-color: rgb(47, 93, 126);background-color: rgb(255, 255, 255);margin-top: 40px;padding-left: 26px;padding-right: 26px;padding-top: 14px;padding-bottom: 14px;display: inline-flex;text-decoration-line: inherit;font-style: inherit !important; } .gp-component-id-N2zjDto6Vrx[data-gp-component]:hover,.gp-component-id-N2zjDto6Vrx[data-gp-component].gp-hover { font-weight: 500;color: rgb(47, 93, 126);font-family: Inter;border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;background-color: rgb(255, 255, 255);padding-left: 26px;padding-right: 26px;padding-top: 14px;padding-bottom: 14px;text-decoration-line: underline;font-style: inherit; } }

 .gp-component-id-zVsUb4IjvL { display: flex; align-items: center; flex-direction: column; height: 100%; width: 100%; padding-top: 3rem; padding-right: 1.5rem; padding-left: 1.5rem; } @media (min-width: 640px) { .gp-component-id-zVsUb4IjvL { display: flex; align-items: center; flex-direction: column; padding-bottom: 3rem; padding-top: 3rem; padding-right: 3rem; padding-left: 3rem; } } @media (min-width: 768px) { .gp-component-id-zVsUb4IjvL { display: flex; align-items: center; flex-direction: column; padding-bottom: 3rem; padding-top: 3rem; padding-right: 3rem; padding-left: 3rem; } } @media (min-width: 992px) { .gp-component-id-zVsUb4IjvL { display: flex; align-items: flex-start; padding-bottom: 1rem; padding-top: 1rem; padding-right: 1rem; padding-left: 1rem; } } @media (min-width: 1200px) { .gp-component-id-zVsUb4IjvL { padding-bottom: 3rem; padding-top: 3rem; padding-right: 3rem; padding-left: 3rem; } }

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

 .gp-component-id-cW3rVDMmfO { display: flex; align-items: center; justify-content: center; flex-direction: column; height: 100%; width: 100%; } @media (min-width: 640px) { .gp-component-id-cW3rVDMmfO { display: flex; align-items: center; justify-content: center; flex-direction: column; } } @media (min-width: 768px) { .gp-component-id-cW3rVDMmfO { display: flex; align-items: center; justify-content: center; flex-direction: column; } } @media (min-width: 992px) { .gp-component-id-cW3rVDMmfO { display: flex; align-items: center; justify-content: center; flex-direction: column; } } @media (min-width: 1200px) { .gp-component-id-cW3rVDMmfO { display: flex; align-items: center; justify-content: center; flex-direction: column; } }

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

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

 @media (max-width: 639px) { .gp-component-id-4NA_SW3iZR[data-gp-component] { background-color: rgba(16, 42, 67, 1);padding-left: 8px;padding-right: 8px;width: 100%; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-4NA_SW3iZR[data-gp-component] { background-color: rgba(16, 42, 67, 1);padding-left: 8px;padding-right: 8px;width: 100%; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-4NA_SW3iZR[data-gp-component] { background-color: rgba(16, 42, 67, 1);padding-left: 8px;padding-right: 8px;width: 100%; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-4NA_SW3iZR[data-gp-component] { background-color: rgba(16, 42, 67, 1);padding-left: 8px;padding-right: 8px;width: 100%; } } @media (min-width: 1200px) { .gp-component-id-4NA_SW3iZR[data-gp-component] { background-color: rgba(16, 42, 67, 1);padding-left: 8px;padding-right: 8px;width: 100%; } }

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

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

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

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

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

 @media (max-width: 639px) { .gp-component-id-1EvTEf9EnW[data-gp-component] { text-align: center;margin-bottom: 20px;padding-left: 115px;padding-right: 16px;width: 100%;flex-direction: column;align-items: center;display: flex; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-1EvTEf9EnW[data-gp-component] { text-align: center;margin-bottom: 20px;padding-left: 115px;padding-right: 16px;width: 100%;flex-direction: column;align-items: center;display: flex; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-1EvTEf9EnW[data-gp-component] { text-align: center;margin-bottom: 20px;padding-left: 115px;padding-right: 16px;width: 50%;flex-direction: column;align-items: flex-start;display: flex; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-1EvTEf9EnW[data-gp-component] { text-align: center;margin-bottom: 20px;padding-left: 115px;padding-right: 16px;width: 50%;flex-direction: column;align-items: flex-start;display: flex; } } @media (min-width: 1200px) { .gp-component-id-1EvTEf9EnW[data-gp-component] { text-align: center;margin-bottom: 20px;padding-left: 115px;padding-right: 16px;width: 50%;flex-direction: column;align-items: flex-start;display: flex; } }

 .gp-component-id-rahLTHGqrs { flex-wrap: wrap; margin-right: -1rem; margin-left: -1rem; display: flex; }

 .gp-component-id-3KHOSivD5M { width: 100%; margin-right: auto; margin-left: auto; padding-top: 2rem; padding-bottom: 2rem; padding-left: 1rem; padding-right: 1rem; } @media (min-width: 640px) { .gp-component-id-3KHOSivD5M { max-width: 640px; } } @media (min-width: 768px) { .gp-component-id-3KHOSivD5M { max-width: 768px; } } @media (min-width: 992px) { .gp-component-id-3KHOSivD5M { max-width: 992px; padding-top: 5.5rem; padding-bottom: 5.5rem; } } @media (min-width: 1200px) { .gp-component-id-3KHOSivD5M { max-width: 1200px; } }

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

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

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

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

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

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

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

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

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

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

 .gp-component-id-3xo1ZIvVVK { margin-left: auto;margin-right: auto;width: 100%;position: relative;z-index: 15; } @media (max-width: 639px) { .gp-component-id-3xo1ZIvVVK { margin-left: auto;margin-right: auto;width: 100%;position: relative;z-index: 15;background-size: auto;flex-direction: column;align-items: center;display: flex;background-repeat-y: no-repeat;background-repeat-x: no-repeat;background-position-y: 100%;background-position-x: 0px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-3xo1ZIvVVK { margin-left: auto;margin-right: auto;width: 100%;position: relative;z-index: 15;background-size: auto;max-width: 640px;flex-direction: column;align-items: center;display: flex;background-repeat-y: no-repeat;background-repeat-x: no-repeat;background-position-y: 100%;background-position-x: 0px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-3xo1ZIvVVK { margin-left: auto;margin-right: auto;width: 100%;position: relative;z-index: 15;background-size: auto;max-width: 768px;flex-direction: column;align-items: center;display: flex;background-repeat-y: no-repeat;background-repeat-x: no-repeat;background-position-y: 100%;background-position-x: 0px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-3xo1ZIvVVK { margin-left: auto;margin-right: auto;width: 100%;position: relative;z-index: 15;background-size: auto;max-width: 992px;flex-direction: column;align-items: center;display: flex;background-repeat-y: no-repeat;background-repeat-x: no-repeat;background-position-y: 100%;background-position-x: 0px; } } @media (min-width: 1200px) { .gp-component-id-3xo1ZIvVVK { margin-left: auto;margin-right: auto;width: 100%;position: relative;z-index: 15;background-size: auto;max-width: 1200px;flex-direction: column;align-items: center;display: flex;background-repeat-y: no-repeat;background-repeat-x: no-repeat;background-position-y: 100%;background-position-x: 0px; } }

