
      
    


      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-M5_5X9NZtm { font-size: 48px !important;font-weight: 600;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) { [data-gp-text] .gp-component-id-M5_5X9NZtm { font-size: 48px !important;font-weight: 600;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) { [data-gp-text] .gp-component-id-M5_5X9NZtm { font-size: 48px !important;font-weight: 600;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) { [data-gp-text] .gp-component-id-M5_5X9NZtm { font-size: 48px !important;font-weight: 600;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) { [data-gp-text] .gp-component-id-M5_5X9NZtm { font-size: 48px !important;font-weight: 600;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) { .gp-component-id-JzRwUoIeR[data-gp-component] { text-align: center;align-items: center;cursor: pointer;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial; } .gp-component-id-JzRwUoIeR[data-gp-component]:active,.gp-component-id-JzRwUoIeR[data-gp-component].gp-active { background-color: rgb(32, 45, 60); } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-JzRwUoIeR[data-gp-component] { text-align: center;align-items: center;cursor: pointer;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial; } .gp-component-id-JzRwUoIeR[data-gp-component]:active,.gp-component-id-JzRwUoIeR[data-gp-component].gp-active { background-color: rgb(32, 45, 60); } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-JzRwUoIeR[data-gp-component] { text-align: center;align-items: center;cursor: pointer;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial; } .gp-component-id-JzRwUoIeR[data-gp-component]:active,.gp-component-id-JzRwUoIeR[data-gp-component].gp-active { background-color: rgb(32, 45, 60); } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-JzRwUoIeR[data-gp-component] { text-align: center;align-items: center;cursor: pointer;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial; } .gp-component-id-JzRwUoIeR[data-gp-component]:active,.gp-component-id-JzRwUoIeR[data-gp-component].gp-active { background-color: rgb(32, 45, 60); } } @media (min-width: 1200px) { .gp-component-id-JzRwUoIeR[data-gp-component] { text-align: center;align-items: center;cursor: pointer;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial; } .gp-component-id-JzRwUoIeR[data-gp-component]:active,.gp-component-id-JzRwUoIeR[data-gp-component].gp-active { background-color: rgb(32, 45, 60); } }

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

 @media (max-width: 639px) { .gp-component-id-N168hBq5G[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);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-N168hBq5G[data-gp-component]:hover,.gp-component-id-N168hBq5G[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-N168hBq5G[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);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-N168hBq5G[data-gp-component]:hover,.gp-component-id-N168hBq5G[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-N168hBq5G[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);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-N168hBq5G[data-gp-component]:hover,.gp-component-id-N168hBq5G[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-N168hBq5G[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);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-N168hBq5G[data-gp-component]:hover,.gp-component-id-N168hBq5G[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-N168hBq5G[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);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-N168hBq5G[data-gp-component]:hover,.gp-component-id-N168hBq5G[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-SvsNvsBSCb[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);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-SvsNvsBSCb[data-gp-component]:hover,.gp-component-id-SvsNvsBSCb[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-SvsNvsBSCb[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);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-SvsNvsBSCb[data-gp-component]:hover,.gp-component-id-SvsNvsBSCb[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-SvsNvsBSCb[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);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-SvsNvsBSCb[data-gp-component]:hover,.gp-component-id-SvsNvsBSCb[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-SvsNvsBSCb[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);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-SvsNvsBSCb[data-gp-component]:hover,.gp-component-id-SvsNvsBSCb[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-SvsNvsBSCb[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);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-SvsNvsBSCb[data-gp-component]:hover,.gp-component-id-SvsNvsBSCb[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-TWBz1yIvh.gp-component > [data-section-overlay] { right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;background-color: rgba(32, 45, 60, 0.8); } @media (max-width: 639px) { .gp-component-id-TWBz1yIvh.gp-component > [data-section-overlay] { background-color: rgba(255, 255, 255, 0);right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-TWBz1yIvh.gp-component > [data-section-overlay] { background-color: rgba(255, 255, 255, 0);right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-TWBz1yIvh.gp-component > [data-section-overlay] { background-color: rgba(255, 255, 255, 0);right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-TWBz1yIvh.gp-component > [data-section-overlay] { background-color: rgba(255, 255, 255, 0);right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute; } } @media (min-width: 1200px) { .gp-component-id-TWBz1yIvh.gp-component > [data-section-overlay] { background-color: rgba(255, 255, 255, 0);right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute; } }

 @media (max-width: 639px) { .gp-component-id-zzsSjp36TT[data-gp-component] { text-decoration-color: initial;text-decoration-style: initial;cursor: pointer; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-zzsSjp36TT[data-gp-component] { text-decoration-color: initial;text-decoration-style: initial;cursor: pointer; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-zzsSjp36TT[data-gp-component] { text-decoration-color: initial;text-decoration-style: initial;cursor: pointer; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-zzsSjp36TT[data-gp-component] { text-decoration-color: initial;text-decoration-style: initial;cursor: pointer; } } @media (min-width: 1200px) { .gp-component-id-zzsSjp36TT[data-gp-component] { text-decoration-color: initial;text-decoration-style: initial;cursor: pointer; } }

 .gp-component-id-1xFbHDGWP.gp-component > [data-section-overlay] { right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute; } @media (max-width: 639px) { .gp-component-id-1xFbHDGWP.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-1xFbHDGWP.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-1xFbHDGWP.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-1xFbHDGWP.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-1xFbHDGWP.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-0k_C21fSre[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: 10px;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-0k_C21fSre[data-gp-component]:hover,.gp-component-id-0k_C21fSre[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-0k_C21fSre[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: 10px;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-0k_C21fSre[data-gp-component]:hover,.gp-component-id-0k_C21fSre[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-0k_C21fSre[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: 10px;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-0k_C21fSre[data-gp-component]:hover,.gp-component-id-0k_C21fSre[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-0k_C21fSre[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: 10px;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-0k_C21fSre[data-gp-component]:hover,.gp-component-id-0k_C21fSre[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-0k_C21fSre[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: 10px;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-0k_C21fSre[data-gp-component]:hover,.gp-component-id-0k_C21fSre[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-OCh2Dl1J4[data-gp-component] { font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Inter;border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;background-color: rgba(16, 42, 67, 1);margin-bottom: 10px;padding-left: 26px;padding-right: 26px;padding-top: 14px;padding-bottom: 14px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-OCh2Dl1J4[data-gp-component] { font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Inter;border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;background-color: rgba(16, 42, 67, 1);margin-bottom: 10px;padding-left: 26px;padding-right: 26px;padding-top: 14px;padding-bottom: 14px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-OCh2Dl1J4[data-gp-component] { font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Inter;border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;background-color: rgba(16, 42, 67, 1);margin-bottom: 10px;padding-left: 26px;padding-right: 26px;padding-top: 14px;padding-bottom: 14px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-OCh2Dl1J4[data-gp-component] { font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Inter;border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;background-color: rgba(16, 42, 67, 1);margin-bottom: 10px;padding-left: 26px;padding-right: 26px;padding-top: 14px;padding-bottom: 14px; } } @media (min-width: 1200px) { .gp-component-id-OCh2Dl1J4[data-gp-component] { font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Inter;border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;background-color: rgba(16, 42, 67, 1);margin-bottom: 10px;padding-left: 26px;padding-right: 26px;padding-top: 14px;padding-bottom: 14px; } }

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

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

 @media (max-width: 639px) { .gp-component-id-9_0MRMkY0B[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-9_0MRMkY0B[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-9_0MRMkY0B[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-9_0MRMkY0B[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-9_0MRMkY0B[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-OXIvpyPJaM[data-gp-component] { margin-left: -100px;padding-left: 0px;padding-top: 16px;padding-bottom: 16px;list-style-type: inherit;list-style-position: inside; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-OXIvpyPJaM[data-gp-component] { margin-left: -100px;padding-left: 0px;padding-top: 16px;padding-bottom: 16px;list-style-type: inherit;list-style-position: inside; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-OXIvpyPJaM[data-gp-component] { margin-left: -100px;padding-left: 0px;padding-top: 16px;padding-bottom: 16px;list-style-type: inherit;list-style-position: inside; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-OXIvpyPJaM[data-gp-component] { margin-left: -100px;padding-left: 0px;padding-top: 16px;padding-bottom: 16px;list-style-type: inherit;list-style-position: inside; } } @media (min-width: 1200px) { .gp-component-id-OXIvpyPJaM[data-gp-component] { margin-left: -100px;padding-left: 0px;padding-top: 16px;padding-bottom: 16px;list-style-type: inherit;list-style-position: inside; } }

 @media (max-width: 639px) { .gp-component-id-KUgfWtw7tL { font-size: 17px !important;font-weight: 400 !important;color: rgb(255, 255, 255);font-family: Inter !important;margin-left: 12px;cursor: text;box-sizing: border-box; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-KUgfWtw7tL { font-size: 17px !important;font-weight: 400 !important;color: rgb(255, 255, 255);font-family: Inter !important;margin-left: 12px;cursor: text;box-sizing: border-box; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-KUgfWtw7tL { font-size: 17px !important;font-weight: 400 !important;color: rgb(255, 255, 255);font-family: Inter !important;margin-left: 12px;cursor: text;box-sizing: border-box; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-KUgfWtw7tL { font-size: 17px !important;font-weight: 400 !important;color: rgb(255, 255, 255);font-family: Inter !important;margin-left: 12px;cursor: text;box-sizing: border-box; } } @media (min-width: 1200px) { .gp-component-id-KUgfWtw7tL { font-size: 17px !important;font-weight: 400 !important;color: rgb(255, 255, 255);font-family: Inter !important;margin-left: 12px;cursor: text;box-sizing: border-box; } }

 @media (max-width: 639px) { [data-gp-text] .gp-component-id-vkx1PUtt9d { font-size: 17px !important;font-weight: 400 !important;color: rgb(255, 255, 255);font-family: Inter !important;margin-left: 12px;box-sizing: border-box;cursor: text; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-vkx1PUtt9d { font-size: 17px !important;font-weight: 400 !important;color: rgb(255, 255, 255);font-family: Inter !important;margin-left: 12px;box-sizing: border-box;cursor: text; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-vkx1PUtt9d { font-size: 17px !important;font-weight: 400 !important;color: rgb(255, 255, 255);font-family: Inter !important;margin-left: 12px;box-sizing: border-box;cursor: text; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-vkx1PUtt9d { font-size: 17px !important;font-weight: 400 !important;color: rgb(255, 255, 255);font-family: Inter !important;margin-left: 12px;box-sizing: border-box;cursor: text; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-vkx1PUtt9d { font-size: 17px !important;font-weight: 400 !important;color: rgb(255, 255, 255);font-family: Inter !important;margin-left: 12px;box-sizing: border-box;cursor: text; } }

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

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

 @media (max-width: 639px) { [data-gp-text] .gp-component-id-ErSrQQ0qnT { font-size: 17px !important;font-weight: 400 !important;color: rgb(255, 255, 255);font-family: Inter !important;margin-left: 12px;box-sizing: border-box;cursor: text; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-ErSrQQ0qnT { font-size: 17px !important;font-weight: 400 !important;color: rgb(255, 255, 255);font-family: Inter !important;margin-left: 12px;box-sizing: border-box;cursor: text; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-ErSrQQ0qnT { font-size: 17px !important;font-weight: 400 !important;color: rgb(255, 255, 255);font-family: Inter !important;margin-left: 12px;box-sizing: border-box;cursor: text; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-ErSrQQ0qnT { font-size: 17px !important;font-weight: 400 !important;color: rgb(255, 255, 255);font-family: Inter !important;margin-left: 12px;box-sizing: border-box;cursor: text; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-ErSrQQ0qnT { font-size: 17px !important;font-weight: 400 !important;color: rgb(255, 255, 255);font-family: Inter !important;margin-left: 12px;box-sizing: border-box;cursor: text; } }

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

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

 @media (max-width: 639px) { [data-gp-text] .gp-component-id-yHoAGJUXfc { font-size: 17px !important;font-weight: 400 !important;color: rgb(255, 255, 255);font-family: Inter !important;margin-left: 12px;box-sizing: border-box;cursor: text; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-yHoAGJUXfc { font-size: 17px !important;font-weight: 400 !important;color: rgb(255, 255, 255);font-family: Inter !important;margin-left: 12px;box-sizing: border-box;cursor: text; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-yHoAGJUXfc { font-size: 17px !important;font-weight: 400 !important;color: rgb(255, 255, 255);font-family: Inter !important;margin-left: 12px;box-sizing: border-box;cursor: text; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-yHoAGJUXfc { font-size: 17px !important;font-weight: 400 !important;color: rgb(255, 255, 255);font-family: Inter !important;margin-left: 12px;box-sizing: border-box;cursor: text; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-yHoAGJUXfc { font-size: 17px !important;font-weight: 400 !important;color: rgb(255, 255, 255);font-family: Inter !important;margin-left: 12px;box-sizing: border-box;cursor: text; } }

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

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

 @media (max-width: 639px) { [data-gp-text] .gp-component-id-1PZ088UHAG { font-size: 17px !important;font-weight: 400 !important;color: rgb(255, 255, 255);font-family: Inter !important;margin-left: 12px;box-sizing: border-box;cursor: text; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-1PZ088UHAG { font-size: 17px !important;font-weight: 400 !important;color: rgb(255, 255, 255);font-family: Inter !important;margin-left: 12px;box-sizing: border-box;cursor: text; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-1PZ088UHAG { font-size: 17px !important;font-weight: 400 !important;color: rgb(255, 255, 255);font-family: Inter !important;margin-left: 12px;box-sizing: border-box;cursor: text; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-1PZ088UHAG { font-size: 17px !important;font-weight: 400 !important;color: rgb(255, 255, 255);font-family: Inter !important;margin-left: 12px;box-sizing: border-box;cursor: text; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-1PZ088UHAG { font-size: 17px !important;font-weight: 400 !important;color: rgb(255, 255, 255);font-family: Inter !important;margin-left: 12px;box-sizing: border-box;cursor: text; } }

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

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

 @media (max-width: 639px) { [data-gp-text] .gp-component-id-LAvc_qMm09T { font-size: 17px !important;font-weight: 400 !important;color: rgb(255, 255, 255);font-family: Inter !important;margin-left: 12px;box-sizing: border-box;cursor: text; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-LAvc_qMm09T { font-size: 17px !important;font-weight: 400 !important;color: rgb(255, 255, 255);font-family: Inter !important;margin-left: 12px;box-sizing: border-box;cursor: text; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-LAvc_qMm09T { font-size: 17px !important;font-weight: 400 !important;color: rgb(255, 255, 255);font-family: Inter !important;margin-left: 12px;box-sizing: border-box;cursor: text; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-LAvc_qMm09T { font-size: 17px !important;font-weight: 400 !important;color: rgb(255, 255, 255);font-family: Inter !important;margin-left: 12px;box-sizing: border-box;cursor: text; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-LAvc_qMm09T { font-size: 17px !important;font-weight: 400 !important;color: rgb(255, 255, 255);font-family: Inter !important;margin-left: 12px;box-sizing: border-box;cursor: text; } }

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

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

 @media (max-width: 639px) { [data-gp-text] .gp-component-id-sskcWHUYIDj { font-size: 17px !important;font-weight: 400;color: rgba(255, 255, 255, 1);font-family: Inter;margin-left: 12px;cursor: text;box-sizing: border-box; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-sskcWHUYIDj { font-size: 17px !important;font-weight: 400;color: rgba(255, 255, 255, 1);font-family: Inter;margin-left: 12px;cursor: text;box-sizing: border-box; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-sskcWHUYIDj { font-size: 17px !important;font-weight: 400;color: rgba(255, 255, 255, 1);font-family: Inter;margin-left: 12px;cursor: text;box-sizing: border-box; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-sskcWHUYIDj { font-size: 17px !important;font-weight: 400;color: rgba(255, 255, 255, 1);font-family: Inter;margin-left: 12px;cursor: text;box-sizing: border-box; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-sskcWHUYIDj { font-size: 17px !important;font-weight: 400;color: rgba(255, 255, 255, 1);font-family: Inter;margin-left: 12px;cursor: text;box-sizing: border-box; } }

 @media (max-width: 639px) { [data-gp-text] .gp-component-id-cE5XP7_vwn { font-size: 17px !important;font-weight: 400;color: rgb(255, 255, 255);font-family: Inter;margin-left: 12px;box-sizing: border-box;cursor: text; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-cE5XP7_vwn { font-size: 17px !important;font-weight: 400;color: rgb(255, 255, 255);font-family: Inter;margin-left: 12px;box-sizing: border-box;cursor: text; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-cE5XP7_vwn { font-size: 17px !important;font-weight: 400;color: rgb(255, 255, 255);font-family: Inter;margin-left: 12px;box-sizing: border-box;cursor: text; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-cE5XP7_vwn { font-size: 17px !important;font-weight: 400;color: rgb(255, 255, 255);font-family: Inter;margin-left: 12px;box-sizing: border-box;cursor: text; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-cE5XP7_vwn { font-size: 17px !important;font-weight: 400;color: rgb(255, 255, 255);font-family: Inter;margin-left: 12px;box-sizing: border-box;cursor: text; } }

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

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

 @media (max-width: 639px) { [data-gp-text] .gp-component-id-0KDkcWV_TS { font-size: 20px;color: rgba(255, 255, 255, 1);text-align: center;line-height: 1.5;font-family: "Source Sans Pro", sans-serif;margin-bottom: 4px;box-sizing: border-box;cursor: text; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-0KDkcWV_TS { font-size: 20px;color: rgba(255, 255, 255, 1);text-align: center;line-height: 1.5;font-family: "Source Sans Pro", sans-serif;margin-bottom: 4px;box-sizing: border-box;cursor: text; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-0KDkcWV_TS { font-size: 20px;color: rgba(255, 255, 255, 1);text-align: center;line-height: 1.5;font-family: "Source Sans Pro", sans-serif;margin-bottom: 4px;box-sizing: border-box;cursor: text; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-0KDkcWV_TS { font-size: 20px;color: rgba(255, 255, 255, 1);text-align: left;line-height: 1.5;font-family: "Source Sans Pro", sans-serif;margin-bottom: 4px;box-sizing: border-box;cursor: text; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-0KDkcWV_TS { font-size: 20px;color: rgba(255, 255, 255, 1);text-align: left;line-height: 1.5;font-family: "Source Sans Pro", sans-serif;margin-bottom: 4px;box-sizing: border-box;cursor: text; } }

 @media (max-width: 639px) { [data-gp-text] .gp-component-id-OLY9fsVEEF { font-size: 36px;color: rgba(255, 255, 255, 1);text-align: center;font-family: "Source Sans Pro", sans-serif;margin-bottom: 16px;box-sizing: border-box;cursor: text; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-OLY9fsVEEF { font-size: 48px;color: rgba(255, 255, 255, 1);text-align: center;font-family: "Source Sans Pro", sans-serif;margin-bottom: 16px;box-sizing: border-box;cursor: text; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-OLY9fsVEEF { font-size: 48px;color: rgba(255, 255, 255, 1);text-align: center;font-family: "Source Sans Pro", sans-serif;margin-bottom: 16px;box-sizing: border-box;cursor: text; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-OLY9fsVEEF { font-size: 36px;color: rgba(255, 255, 255, 1);text-align: left;font-family: "Source Sans Pro", sans-serif;margin-bottom: 16px;box-sizing: border-box;cursor: text; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-OLY9fsVEEF { font-size: 48px;color: rgba(255, 255, 255, 1);text-align: left;font-family: "Source Sans Pro", sans-serif;margin-bottom: 16px;box-sizing: border-box;cursor: text; } }

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

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

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

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

 @media (max-width: 639px) { [data-gp-text] .gp-component-id-Z0kbx3fxLK { color: rgb(31, 41, 51);padding-left: 150px;padding-right: 150px;padding-bottom: 30px; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-Z0kbx3fxLK { color: rgb(31, 41, 51);padding-left: 150px;padding-right: 150px;padding-bottom: 30px; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-Z0kbx3fxLK { color: rgb(31, 41, 51);padding-left: 150px;padding-right: 150px;padding-bottom: 30px; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-Z0kbx3fxLK { color: rgb(31, 41, 51);padding-left: 150px;padding-right: 150px;padding-bottom: 30px; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-Z0kbx3fxLK { color: rgb(31, 41, 51);padding-left: 150px;padding-right: 150px;padding-bottom: 30px; } }

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

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

 @media (max-width: 639px) { .gp-component-id-MdaRsGGi8P[data-gp-component] { margin-bottom: 20px;padding-left: 16px;padding-right: 116px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-MdaRsGGi8P[data-gp-component] { margin-bottom: 20px;padding-left: 16px;padding-right: 116px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-MdaRsGGi8P[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-MdaRsGGi8P[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-MdaRsGGi8P[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) { .gp-component-id-BPEdfhfLfB[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-BPEdfhfLfB[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-BPEdfhfLfB[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-BPEdfhfLfB[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-BPEdfhfLfB[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: 639px) { .gp-component-id-7WNF1HbYUj[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: 767px) and (min-width: 640px) { .gp-component-id-7WNF1HbYUj[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: 991px) and (min-width: 768px) { .gp-component-id-7WNF1HbYUj[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-7WNF1HbYUj[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-7WNF1HbYUj[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-GGbazInqDD { padding-top: 20px;padding-bottom: 20px; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-GGbazInqDD { padding-top: 20px;padding-bottom: 20px; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-GGbazInqDD { padding-top: 20px;padding-bottom: 20px; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-GGbazInqDD { padding-top: 20px;padding-bottom: 20px; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-GGbazInqDD { padding-top: 20px;padding-bottom: 20px; } }

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

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

 @media (max-width: 639px) { .gp-component-id-41l3JsD9_lR[data-gp-component] { background-color: rgb(249, 250, 251);margin-top: 30px;padding-left: 50px;padding-right: 50px;padding-top: 50px;padding-bottom: 50px;width: 78%;height: 200px;flex-direction: column;justify-content: center;align-items: center;display: flex; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-41l3JsD9_lR[data-gp-component] { background-color: rgb(249, 250, 251);margin-top: 30px;padding-left: 50px;padding-right: 50px;padding-top: 50px;padding-bottom: 50px;width: 78%;height: 200px;flex-direction: column;justify-content: center;align-items: center;display: flex; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-41l3JsD9_lR[data-gp-component] { background-color: rgb(249, 250, 251);margin-top: 30px;padding-left: 30px;padding-right: 30px;padding-top: 50px;padding-bottom: 50px;width: 78%;height: 200px;flex-direction: column;justify-content: center;align-items: center;display: flex; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-41l3JsD9_lR[data-gp-component] { background-color: rgb(249, 250, 251);margin-top: 30px;padding-left: 50px;padding-right: 50px;padding-top: 50px;padding-bottom: 50px;width: 78%;height: 200px;flex-direction: column;justify-content: center;align-items: center;display: flex; } } @media (min-width: 1200px) { .gp-component-id-41l3JsD9_lR[data-gp-component] { background-color: rgb(249, 250, 251);margin-top: 30px;padding-left: 50px;padding-right: 50px;padding-top: 50px;padding-bottom: 50px;width: 78%;height: 200px;flex-direction: column;justify-content: center;align-items: center;display: flex; } }

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

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

 @media (max-width: 639px) { .gp-component-id-VXD4vLH7O_[data-gp-component] { border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-left: 0px;margin-right: 0px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;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-VXD4vLH7O_[data-gp-component] { border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-left: 0px;margin-right: 0px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;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-VXD4vLH7O_[data-gp-component] { border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-left: 0px;margin-right: 0px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;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-VXD4vLH7O_[data-gp-component] { border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-left: 0px;margin-right: 0px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;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-VXD4vLH7O_[data-gp-component] { border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-left: 0px;margin-right: 0px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;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-wL9DA8n2Lp[data-gp-component] { background-color: rgb(249, 250, 251);margin-left: 0px;margin-right: 0px;margin-top: 30px;padding-left: 10px;padding-right: 10px;padding-top: 50px;padding-bottom: 50px;width: 78%;height: 200px;flex-direction: column;justify-content: center;align-items: center;display: flex; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-wL9DA8n2Lp[data-gp-component] { background-color: rgb(249, 250, 251);margin-left: 0px;margin-right: 0px;margin-top: 30px;padding-left: 10px;padding-right: 10px;padding-top: 50px;padding-bottom: 50px;width: 78%;height: 200px;flex-direction: column;justify-content: center;align-items: center;display: flex; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-wL9DA8n2Lp[data-gp-component] { background-color: rgb(249, 250, 251);margin-left: 0px;margin-right: 0px;margin-top: 30px;padding-left: 10px;padding-right: 10px;padding-top: 50px;padding-bottom: 50px;width: 78%;height: 200px;flex-direction: column;justify-content: center;align-items: center;display: flex; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-wL9DA8n2Lp[data-gp-component] { background-color: rgb(249, 250, 251);margin-left: 0px;margin-right: 0px;margin-top: 30px;padding-left: 10px;padding-right: 10px;padding-top: 50px;padding-bottom: 50px;width: 78%;height: 200px;flex-direction: column;justify-content: center;align-items: center;display: flex; } } @media (min-width: 1200px) { .gp-component-id-wL9DA8n2Lp[data-gp-component] { background-color: rgb(249, 250, 251);margin-left: 0px;margin-right: 0px;margin-top: 30px;padding-left: 10px;padding-right: 10px;padding-top: 50px;padding-bottom: 50px;width: 78%;height: 200px;flex-direction: column;justify-content: center;align-items: center;display: flex; } }

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

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

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

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

 @media (max-width: 639px) { .gp-component-id-SHHKuMZvCb { font-size: 18px !important;color: rgb(52, 73, 94);text-align: center;line-height: 1.5;font-family: "Open Sans" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 100px;padding-right: 100px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-SHHKuMZvCb { font-size: 20px !important;color: rgb(52, 73, 94);text-align: center;line-height: 1.5;font-family: "Open Sans" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 100px;padding-right: 100px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-SHHKuMZvCb { font-size: 18px !important;color: rgb(52, 73, 94);text-align: center;line-height: 1.5;font-family: "Open Sans" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 100px;padding-right: 100px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-SHHKuMZvCb { font-size: 18px !important;color: rgb(52, 73, 94);text-align: center;line-height: 1.5;font-family: "Open Sans" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 100px;padding-right: 100px; } } @media (min-width: 1200px) { .gp-component-id-SHHKuMZvCb { font-size: 20px !important;color: rgb(52, 73, 94);text-align: center;line-height: 1.5;font-family: "Open Sans" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 100px;padding-right: 100px; } }

 @media (max-width: 639px) { [data-gp-text] .gp-component-id-1PT0kJykJx { font-size: 18px !important;color: rgb(52, 73, 94);text-align: center;line-height: 1.5;font-family: "Open Sans" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 100px;padding-right: 100px; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-1PT0kJykJx { font-size: 20px !important;color: rgb(52, 73, 94);text-align: center;line-height: 1.5;font-family: "Open Sans" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 100px;padding-right: 100px; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-1PT0kJykJx { font-size: 18px !important;color: rgb(52, 73, 94);text-align: center;line-height: 1.5;font-family: "Open Sans" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 100px;padding-right: 100px; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-1PT0kJykJx { font-size: 18px !important;color: rgb(52, 73, 94);text-align: center;line-height: 1.5;font-family: "Open Sans" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 100px;padding-right: 100px; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-1PT0kJykJx { font-size: 20px !important;color: rgb(52, 73, 94);text-align: center;line-height: 1.5;font-family: "Open Sans" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 100px;padding-right: 100px; } }

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

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

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

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

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

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

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

 @media (max-width: 639px) { .gp-component-id-6T0lChE30X[data-gp-component] { background-color: rgb(249, 250, 251);margin-left: 0px;margin-right: 0px;margin-top: 30px;padding-left: 50px;padding-right: 50px;padding-top: 50px;padding-bottom: 50px;width: 78%;height: 200px;flex-direction: column;justify-content: center;align-items: center;display: flex; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-6T0lChE30X[data-gp-component] { background-color: rgb(249, 250, 251);margin-left: 0px;margin-right: 0px;margin-top: 30px;padding-left: 50px;padding-right: 50px;padding-top: 50px;padding-bottom: 50px;width: 78%;height: 200px;flex-direction: column;justify-content: center;align-items: center;display: flex; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-6T0lChE30X[data-gp-component] { background-color: rgb(249, 250, 251);margin-left: 0px;margin-right: 0px;margin-top: 30px;padding-left: 50px;padding-right: 50px;padding-top: 50px;padding-bottom: 50px;width: 78%;height: 200px;flex-direction: column;justify-content: center;align-items: center;display: flex; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-6T0lChE30X[data-gp-component] { background-color: rgb(249, 250, 251);margin-left: 0px;margin-right: 0px;margin-top: 30px;padding-left: 50px;padding-right: 50px;padding-top: 50px;padding-bottom: 50px;width: 78%;height: 200px;flex-direction: column;justify-content: center;align-items: center;display: flex; } } @media (min-width: 1200px) { .gp-component-id-6T0lChE30X[data-gp-component] { background-color: rgb(249, 250, 251);margin-left: 0px;margin-right: 0px;margin-top: 30px;padding-left: 50px;padding-right: 50px;padding-top: 50px;padding-bottom: 50px;width: 78%;height: 200px;flex-direction: column;justify-content: center;align-items: center;display: flex; } }

 @media (max-width: 639px) { .gp-component-id-yPr8V3CuPg[data-gp-component] { background-color: rgb(249, 250, 251);margin-left: 0px;margin-right: 0px;margin-top: 30px;padding-left: 50px;padding-right: 50px;padding-top: 50px;padding-bottom: 50px;width: 78%;height: 200px;flex-direction: column;justify-content: center;align-items: center;display: flex; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-yPr8V3CuPg[data-gp-component] { background-color: rgb(249, 250, 251);margin-left: 0px;margin-right: 0px;margin-top: 30px;padding-left: 50px;padding-right: 50px;padding-top: 50px;padding-bottom: 50px;width: 78%;height: 200px;flex-direction: column;justify-content: center;align-items: center;display: flex; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-yPr8V3CuPg[data-gp-component] { background-color: rgb(249, 250, 251);margin-left: 0px;margin-right: 0px;margin-top: 30px;padding-left: 50px;padding-right: 50px;padding-top: 50px;padding-bottom: 50px;width: 78%;height: 200px;flex-direction: column;justify-content: center;align-items: center;display: flex; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-yPr8V3CuPg[data-gp-component] { background-color: rgb(249, 250, 251);margin-left: 0px;margin-right: 0px;margin-top: 30px;padding-left: 50px;padding-right: 50px;padding-top: 50px;padding-bottom: 50px;width: 78%;height: 200px;flex-direction: column;justify-content: center;align-items: center;display: flex; } } @media (min-width: 1200px) { .gp-component-id-yPr8V3CuPg[data-gp-component] { background-color: rgb(249, 250, 251);margin-left: 0px;margin-right: 0px;margin-top: 30px;padding-left: 50px;padding-right: 50px;padding-top: 50px;padding-bottom: 50px;width: 78%;height: 200px;flex-direction: column;justify-content: center;align-items: center;display: flex; } }

 @media (max-width: 639px) { .gp-component-id-wTzICKJBHU[data-gp-component] { border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;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-wTzICKJBHU[data-gp-component] { border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;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-wTzICKJBHU[data-gp-component] { border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;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-wTzICKJBHU[data-gp-component] { border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;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-wTzICKJBHU[data-gp-component] { border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;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-dfdnlELs7j[data-gp-component] { background-color: rgb(249, 250, 251);margin-top: 30px;padding-left: 50px;padding-right: 50px;padding-top: 50px;padding-bottom: 50px;width: 78%;height: 200px;flex-direction: column;justify-content: center;align-items: center;display: flex; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-dfdnlELs7j[data-gp-component] { background-color: rgb(249, 250, 251);margin-top: 30px;padding-left: 50px;padding-right: 50px;padding-top: 50px;padding-bottom: 50px;width: 78%;height: 200px;flex-direction: column;justify-content: center;align-items: center;display: flex; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-dfdnlELs7j[data-gp-component] { background-color: rgb(249, 250, 251);margin-top: 30px;padding-left: 30px;padding-right: 30px;padding-top: 50px;padding-bottom: 50px;width: 78%;height: 200px;flex-direction: column;justify-content: center;align-items: center;display: flex; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-dfdnlELs7j[data-gp-component] { background-color: rgb(249, 250, 251);margin-top: 30px;padding-left: 50px;padding-right: 50px;padding-top: 50px;padding-bottom: 50px;width: 78%;height: 200px;flex-direction: column;justify-content: center;align-items: center;display: flex; } } @media (min-width: 1200px) { .gp-component-id-dfdnlELs7j[data-gp-component] { background-color: rgb(249, 250, 251);margin-top: 30px;padding-left: 50px;padding-right: 50px;padding-top: 50px;padding-bottom: 50px;width: 78%;height: 200px;flex-direction: column;justify-content: center;align-items: center;display: flex; } }

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

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

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

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

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

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

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

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

 @media (max-width: 639px) { .gp-component-id-9Vk5bw2tx19[data-gp-component] { background-color: rgb(249, 250, 251);margin-top: 30px;padding-left: 50px;padding-right: 50px;padding-top: 50px;padding-bottom: 50px;width: 78%;height: 200px;flex-direction: column;justify-content: center;align-items: center;display: flex; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-9Vk5bw2tx19[data-gp-component] { background-color: rgb(249, 250, 251);margin-top: 30px;padding-left: 50px;padding-right: 50px;padding-top: 50px;padding-bottom: 50px;width: 78%;height: 200px;flex-direction: column;justify-content: center;align-items: center;display: flex; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-9Vk5bw2tx19[data-gp-component] { background-color: rgb(249, 250, 251);margin-top: 30px;padding-left: 30px;padding-right: 30px;padding-top: 50px;padding-bottom: 50px;width: 78%;height: 200px;flex-direction: column;justify-content: center;align-items: center;display: flex; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-9Vk5bw2tx19[data-gp-component] { background-color: rgb(249, 250, 251);margin-top: 30px;padding-left: 50px;padding-right: 50px;padding-top: 50px;padding-bottom: 50px;width: 78%;height: 200px;flex-direction: column;justify-content: center;align-items: center;display: flex; } } @media (min-width: 1200px) { .gp-component-id-9Vk5bw2tx19[data-gp-component] { background-color: rgb(249, 250, 251);margin-top: 30px;padding-left: 50px;padding-right: 50px;padding-top: 50px;padding-bottom: 50px;width: 78%;height: 200px;flex-direction: column;justify-content: center;align-items: center;display: flex; } }

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

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

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

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

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

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

 @media (max-width: 639px) { .gp-component-id-QSOmOYPZDs { font-size: 18px !important;color: rgb(52, 73, 94);text-align: center;line-height: 1.5;font-family: "Open Sans" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 100px;padding-right: 100px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-QSOmOYPZDs { font-size: 20px !important;color: rgb(52, 73, 94);text-align: center;line-height: 1.5;font-family: "Open Sans" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 100px;padding-right: 100px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-QSOmOYPZDs { font-size: 18px !important;color: rgb(52, 73, 94);text-align: center;line-height: 1.5;font-family: "Open Sans" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 100px;padding-right: 100px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-QSOmOYPZDs { font-size: 18px !important;color: rgb(52, 73, 94);text-align: center;line-height: 1.5;font-family: "Open Sans" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 100px;padding-right: 100px; } } @media (min-width: 1200px) { .gp-component-id-QSOmOYPZDs { font-size: 20px !important;color: rgb(52, 73, 94);text-align: center;line-height: 1.5;font-family: "Open Sans" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 100px;padding-right: 100px; } }

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

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

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

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

 @media (max-width: 639px) { .gp-component-id-DaPsIF5N3v[data-gp-component] { background-color: rgb(249, 250, 251);margin-left: 0px;margin-right: 0px;margin-top: 30px;padding-left: 10px;padding-right: 10px;padding-top: 50px;padding-bottom: 50px;width: 78%;height: 200px;flex-direction: column;justify-content: center;align-items: center;display: flex; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-DaPsIF5N3v[data-gp-component] { background-color: rgb(249, 250, 251);margin-left: 0px;margin-right: 0px;margin-top: 30px;padding-left: 10px;padding-right: 10px;padding-top: 50px;padding-bottom: 50px;width: 78%;height: 200px;flex-direction: column;justify-content: center;align-items: center;display: flex; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-DaPsIF5N3v[data-gp-component] { background-color: rgb(249, 250, 251);margin-left: 0px;margin-right: 0px;margin-top: 30px;padding-left: 10px;padding-right: 10px;padding-top: 50px;padding-bottom: 50px;width: 78%;height: 200px;flex-direction: column;justify-content: center;align-items: center;display: flex; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-DaPsIF5N3v[data-gp-component] { background-color: rgb(249, 250, 251);margin-left: 0px;margin-right: 0px;margin-top: 30px;padding-left: 10px;padding-right: 10px;padding-top: 50px;padding-bottom: 50px;width: 78%;height: 200px;flex-direction: column;justify-content: center;align-items: center;display: flex; } } @media (min-width: 1200px) { .gp-component-id-DaPsIF5N3v[data-gp-component] { background-color: rgb(249, 250, 251);margin-left: 0px;margin-right: 0px;margin-top: 30px;padding-left: 10px;padding-right: 10px;padding-top: 50px;padding-bottom: 50px;width: 78%;height: 200px;flex-direction: column;justify-content: center;align-items: center;display: flex; } }

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

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

 @media (max-width: 639px) { .gp-component-id-szCsgDd7B30[data-gp-component] { background-color: rgb(249, 250, 251);margin-top: 30px;padding-left: 50px;padding-right: 50px;padding-top: 50px;padding-bottom: 50px;width: 78%;height: 200px;flex-direction: column;justify-content: center;align-items: center;display: flex; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-szCsgDd7B30[data-gp-component] { background-color: rgb(249, 250, 251);margin-top: 30px;padding-left: 50px;padding-right: 50px;padding-top: 50px;padding-bottom: 50px;width: 78%;height: 200px;flex-direction: column;justify-content: center;align-items: center;display: flex; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-szCsgDd7B30[data-gp-component] { background-color: rgb(249, 250, 251);margin-top: 30px;padding-left: 30px;padding-right: 30px;padding-top: 50px;padding-bottom: 50px;width: 78%;height: 200px;flex-direction: column;justify-content: center;align-items: center;display: flex; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-szCsgDd7B30[data-gp-component] { background-color: rgb(249, 250, 251);margin-top: 30px;padding-left: 50px;padding-right: 50px;padding-top: 50px;padding-bottom: 50px;width: 78%;height: 200px;flex-direction: column;justify-content: center;align-items: center;display: flex; } } @media (min-width: 1200px) { .gp-component-id-szCsgDd7B30[data-gp-component] { background-color: rgb(249, 250, 251);margin-top: 30px;padding-left: 50px;padding-right: 50px;padding-top: 50px;padding-bottom: 50px;width: 78%;height: 200px;flex-direction: column;justify-content: center;align-items: center;display: flex; } }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

 @media (max-width: 639px) { .gp-component-id-ra18FkQyj[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: 100px;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-ra18FkQyj[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: 100px;margin-bottom: 20px;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-ra18FkQyj[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: 100px;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-ra18FkQyj[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: 100px;margin-bottom: 20px;padding-left: 26px;padding-right: 26px;padding-top: 14px;padding-bottom: 14px;display: inline-flex; } } @media (min-width: 1200px) { .gp-component-id-ra18FkQyj[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: 100px;margin-bottom: 20px;padding-left: 26px;padding-right: 26px;padding-top: 14px;padding-bottom: 14px;display: inline-flex; } }

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

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

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

 @media (max-width: 639px) { [data-gp-text] .gp-component-id-1LzrJiEhsM { font-size: 24px;font-weight: 600;color: rgba(47, 93, 126, 1);text-align: left;font-family: Manrope;margin-bottom: 8px;box-sizing: border-box;cursor: text; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-1LzrJiEhsM { font-size: 24px;font-weight: 600;color: rgba(47, 93, 126, 1);text-align: left;font-family: Manrope;margin-bottom: 8px;box-sizing: border-box;cursor: text; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-1LzrJiEhsM { font-size: 24px;font-weight: 600;color: rgba(47, 93, 126, 1);text-align: left;font-family: Manrope;margin-bottom: 8px;box-sizing: border-box;cursor: text; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-1LzrJiEhsM { font-size: 24px;font-weight: 600;color: rgba(47, 93, 126, 1);text-align: left;font-family: Manrope;margin-bottom: 8px;box-sizing: border-box;cursor: text; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-1LzrJiEhsM { font-size: 24px;font-weight: 600;color: rgba(47, 93, 126, 1);text-align: left;font-family: Manrope;margin-bottom: 8px;box-sizing: border-box;cursor: text; } }

 @media (max-width: 639px) { .gp-component-id-9c_ZSgzorL[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-9c_ZSgzorL[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-9c_ZSgzorL[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-9c_ZSgzorL[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-9c_ZSgzorL[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-yQpZdEBtWu { line-height: 1; animation-duration: 1s; animation-fill-mode: both; max-width: calc(100% + 1rem); } @media (max-width: 639px) { .gp-component-id-yQpZdEBtWu { line-height: 1; animation-duration: 1s; animation-fill-mode: both; max-width: calc(100% + 1rem); padding-right: 18px; width: 38px; height: 24px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-yQpZdEBtWu { line-height: 1; animation-duration: 1s; animation-fill-mode: both; max-width: calc(100% + 1rem); padding-right: 18px; width: 38px; height: 24px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-yQpZdEBtWu { line-height: 1; animation-duration: 1s; animation-fill-mode: both; max-width: calc(100% + 1rem); padding-right: 18px; width: 38px; height: 24px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-yQpZdEBtWu { line-height: 1; animation-duration: 1s; animation-fill-mode: both; max-width: calc(100% + 1rem); padding-right: 18px; width: 38px; height: 24px; } } @media (min-width: 1200px) { .gp-component-id-yQpZdEBtWu { line-height: 1; animation-duration: 1s; animation-fill-mode: both; max-width: calc(100% + 1rem); padding-right: 18px; width: 38px; height: 24px; } }

 .gp-component-id-JhoyiVsXN8 { 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-JhoyiVsXN8 { 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-JhoyiVsXN8 { 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-JhoyiVsXN8 { 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-JhoyiVsXN8 { 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-JhoyiVsXN8 { 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-FuQM2LG0rH { 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-FuQM2LG0rH { 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-FuQM2LG0rH { 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-FuQM2LG0rH { 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-FuQM2LG0rH { 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-FuQM2LG0rH { 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-puQqtO_Tk6[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-puQqtO_Tk6[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-puQqtO_Tk6[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-puQqtO_Tk6[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-puQqtO_Tk6[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-Bp3JNoHEUV { 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-Bp3JNoHEUV { 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-Bp3JNoHEUV { 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-Bp3JNoHEUV { 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-Bp3JNoHEUV { 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-Bp3JNoHEUV { 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-W7MlJwwdm9 { 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-W7MlJwwdm9 { 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-W7MlJwwdm9 { 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-W7MlJwwdm9 { 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-W7MlJwwdm9 { 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-W7MlJwwdm9 { 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-J0wvtw00Kh { 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-J0wvtw00Kh { 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-J0wvtw00Kh { 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-J0wvtw00Kh { 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-J0wvtw00Kh { 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-J0wvtw00Kh { display: flex; margin-left: auto; margin-right: auto; justify-content: space-between; align-items: center; width: 100%; max-width: 1200px; } }

 .gp-component-id-oe3qA0sdff { 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-oe3qA0sdff { 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-oe3qA0sdff { 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-oe3qA0sdff { 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-oe3qA0sdff { 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-oe3qA0sdff { 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-Gd3w8W4KQ[data-gp-component] { background-color: rgba(255, 255, 255, 1);padding-top: 20px;z-index: auto !important;min-height: 50px;position: relative;animation-fill-mode: both;animation-duration: 1s; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-Gd3w8W4KQ[data-gp-component] { background-color: rgba(255, 255, 255, 1);padding-top: 20px;z-index: auto !important;min-height: 50px;position: relative;animation-fill-mode: both;animation-duration: 1s; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-Gd3w8W4KQ[data-gp-component] { background-color: rgba(255, 255, 255, 1);padding-top: 28px;padding-bottom: 28px;z-index: auto !important;min-height: 50px;position: relative;animation-fill-mode: both;animation-duration: 1s; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-Gd3w8W4KQ[data-gp-component] { background-color: rgba(255, 255, 255, 1);padding-top: 28px;padding-bottom: 28px;z-index: auto !important;min-height: 50px;position: relative;animation-fill-mode: both;animation-duration: 1s; } } @media (min-width: 1200px) { .gp-component-id-Gd3w8W4KQ[data-gp-component] { background-color: rgba(255, 255, 255, 1);padding-top: 28px;padding-bottom: 28px;z-index: auto !important;min-height: 50px;position: relative;animation-fill-mode: both;animation-duration: 1s; } }

 .gp-component-id-VXpNEPCNT4d[data-gp-component] { width: 400px; justify-content: flex-start; align-items: flex-start; display: inline-flex; object-fit: cover; object-position: center center; } @media (min-width: 640px) { .gp-component-id-VXpNEPCNT4d[data-gp-component] { width: 400px; } } @media (min-width: 768px) { .gp-component-id-VXpNEPCNT4d[data-gp-component] { width: 400px; } } @media (min-width: 992px) { .gp-component-id-VXpNEPCNT4d[data-gp-component] { width: 500px; } } @media (min-width: 1200px) { .gp-component-id-VXpNEPCNT4d[data-gp-component] { width: 550px; } }

 .gp-component-id-ztG_SGeygN[data-gp-component] { padding-left: 1.75rem; padding-right: 1.75rem; padding-top: 1.25rem; padding-bottom: 1.75rem; width: 100%; height: 100%; flex-direction: column; align-items: center; display: flex; } @media (min-width: 640px) { .gp-component-id-ztG_SGeygN[data-gp-component] { padding-left: 1.75rem; padding-right: 1.75rem; padding-top: 1.25rem; padding-bottom: 1.75rem; flex-direction: column; align-items: center; display: flex; } } @media (min-width: 768px) { .gp-component-id-ztG_SGeygN[data-gp-component] { padding-left: 1.75rem; padding-right: 1.75rem; padding-top: 1.25rem; padding-bottom: 1.75rem; flex-direction: column; align-items: center; display: flex; } } @media (min-width: 992px) { .gp-component-id-ztG_SGeygN[data-gp-component] { padding-left: 1.75rem; padding-right: 1.75rem; padding-top: 2.25rem; padding-bottom: 1.75rem; align-items: flex-start; display: flex; } } @media (min-width: 1200px) { .gp-component-id-ztG_SGeygN[data-gp-component] { padding-left: 3rem; padding-right: 3rem; padding-top: 5rem; padding-bottom: 3rem; } }

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

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

 .gp-component-id-6_CXmMI_H[data-gp-component] { padding-top: 2.25rem; z-index: auto !important; position: relative; } @media (min-width: 640px) { .gp-component-id-6_CXmMI_H[data-gp-component] { padding-top: 2.25rem; } } @media (min-width: 768px) { .gp-component-id-6_CXmMI_H[data-gp-component] { padding-top: 2.25rem; } } @media (min-width: 992px) { .gp-component-id-6_CXmMI_H[data-gp-component] { padding-top: 0.5rem; } } @media (min-width: 1200px) { .gp-component-id-6_CXmMI_H[data-gp-component] { padding-top: 2.25rem; } }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

 .gp-component-id-AUlTi5iRG1 { 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-AUlTi5iRG1 { max-width: 640px; } } @media (min-width: 768px) { .gp-component-id-AUlTi5iRG1 { max-width: 768px; } } @media (min-width: 992px) { .gp-component-id-AUlTi5iRG1 { max-width: 992px; padding-top: 5.5rem; padding-bottom: 5.5rem; } } @media (min-width: 1200px) { .gp-component-id-AUlTi5iRG1 { max-width: 1200px; } }

 .gp-component-id-bBFoVtNru1 { z-index: 10; position: relative; background-position-y: center; background-position-x: 50%; background-size: cover; background-image: url("https://assets.grooveapps.com/images/5ea2b4c4b0103d0de18a5d6c/1596243679_cover-2.jpg"); background-color: rgb(240, 242, 244); } @media (min-width: 640px) { .gp-component-id-bBFoVtNru1 { background-position-y: center; background-position-x: 50%; background-size: cover; background-image: url("https://assets.grooveapps.com/images/5ea2b4c4b0103d0de18a5d6c/1596243679_cover-2.jpg"); } } @media (min-width: 768px) { .gp-component-id-bBFoVtNru1 { background-position-y: center; background-position-x: 50%; background-size: cover; background-image: url("https://assets.grooveapps.com/images/5ea2b4c4b0103d0de18a5d6c/1596243679_cover-2.jpg"); } } @media (min-width: 992px) { .gp-component-id-bBFoVtNru1 { background-position-y: center; background-position-x: 50%; background-size: cover; background-image: url("https://assets.grooveapps.com/images/5ea2b4c4b0103d0de18a5d6c/1596243679_cover-2.jpg"); } } @media (min-width: 1200px) { .gp-component-id-bBFoVtNru1 { background-position-y: center; background-position-x: 50%; background-size: cover; background-image: url("https://assets.grooveapps.com/images/5ea2b4c4b0103d0de18a5d6c/1596243679_cover-2.jpg"); } }

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

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

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

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

 .gp-component-id-k0K0Z_H405K[data-gp-component] { font-size: 1.5rem; color: rgb(254, 72, 72); line-height: 1; margin-top: 0.25rem; } @media (min-width: 640px) { .gp-component-id-k0K0Z_H405K[data-gp-component] { font-size: 1.25rem; color: rgb(254, 72, 72); margin-top: 0.25rem; } } @media (min-width: 768px) { .gp-component-id-k0K0Z_H405K[data-gp-component] { font-size: 1.25rem; color: rgb(254, 72, 72); margin-top: 0.25rem; } } @media (min-width: 992px) { .gp-component-id-k0K0Z_H405K[data-gp-component] { font-size: 1.25rem; color: rgb(254, 72, 72); margin-top: 0.25rem; } } @media (min-width: 1200px) { .gp-component-id-k0K0Z_H405K[data-gp-component] { font-size: 1.25rem; color: rgb(254, 72, 72); margin-top: 0.25rem; } }

 .gp-component-id-EBqf4_3Ri2K[data-gp-component] { font-size: 1.125rem; color: rgb(32, 45, 60); margin-bottom: 0; align-items: flex-start; display: flex; } @media (min-width: 640px) { .gp-component-id-EBqf4_3Ri2K[data-gp-component] { margin-bottom: 0; } } @media (min-width: 768px) { .gp-component-id-EBqf4_3Ri2K[data-gp-component] { margin-bottom: 0; } } @media (min-width: 992px) { .gp-component-id-EBqf4_3Ri2K[data-gp-component] { margin-bottom: 0; } } @media (min-width: 1200px) { .gp-component-id-EBqf4_3Ri2K[data-gp-component] { margin-bottom: 0; } }

 .gp-component-id-IKTyWf3q6Eb[data-gp-component] { font-size: 1.5rem; color: rgb(254, 72, 72); line-height: 1; margin-top: 0.25rem; } @media (min-width: 640px) { .gp-component-id-IKTyWf3q6Eb[data-gp-component] { font-size: 1.25rem; color: rgb(254, 72, 72); margin-top: 0.25rem; } } @media (min-width: 768px) { .gp-component-id-IKTyWf3q6Eb[data-gp-component] { font-size: 1.25rem; color: rgb(254, 72, 72); margin-top: 0.25rem; } } @media (min-width: 992px) { .gp-component-id-IKTyWf3q6Eb[data-gp-component] { font-size: 1.25rem; color: rgb(254, 72, 72); margin-top: 0.25rem; } } @media (min-width: 1200px) { .gp-component-id-IKTyWf3q6Eb[data-gp-component] { font-size: 1.25rem; color: rgb(254, 72, 72); margin-top: 0.25rem; } }

 .gp-component-id-kf_DRgP0Kz[data-gp-component] { font-size: 1.125rem; color: rgb(32, 45, 60); margin-bottom: 1.25rem; align-items: flex-start; display: flex; } @media (min-width: 640px) { .gp-component-id-kf_DRgP0Kz[data-gp-component] { margin-bottom: 1.25rem; } } @media (min-width: 768px) { .gp-component-id-kf_DRgP0Kz[data-gp-component] { margin-bottom: 1.25rem; } } @media (min-width: 992px) { .gp-component-id-kf_DRgP0Kz[data-gp-component] { margin-bottom: 1.25rem; } } @media (min-width: 1200px) { .gp-component-id-kf_DRgP0Kz[data-gp-component] { margin-bottom: 1.25rem; } }

 .gp-component-id-IcTZTdSiXL[data-gp-component] { font-size: 1.5rem; color: rgb(254, 72, 72); line-height: 1; margin-top: 0.25rem; } @media (min-width: 640px) { .gp-component-id-IcTZTdSiXL[data-gp-component] { font-size: 1.25rem; color: rgb(254, 72, 72); margin-top: 0.25rem; } } @media (min-width: 768px) { .gp-component-id-IcTZTdSiXL[data-gp-component] { font-size: 1.25rem; color: rgb(254, 72, 72); margin-top: 0.25rem; } } @media (min-width: 992px) { .gp-component-id-IcTZTdSiXL[data-gp-component] { font-size: 1.25rem; color: rgb(254, 72, 72); margin-top: 0.25rem; } } @media (min-width: 1200px) { .gp-component-id-IcTZTdSiXL[data-gp-component] { font-size: 1.25rem; color: rgb(254, 72, 72); margin-top: 0.25rem; } }

 .gp-component-id-HER0CWMvgf[data-gp-component] { font-size: 1.125rem; color: rgb(32, 45, 60); margin-bottom: 1.25rem; align-items: flex-start; display: flex; } @media (min-width: 640px) { .gp-component-id-HER0CWMvgf[data-gp-component] { margin-bottom: 1.25rem; } } @media (min-width: 768px) { .gp-component-id-HER0CWMvgf[data-gp-component] { margin-bottom: 1.25rem; } } @media (min-width: 992px) { .gp-component-id-HER0CWMvgf[data-gp-component] { margin-bottom: 1.25rem; } } @media (min-width: 1200px) { .gp-component-id-HER0CWMvgf[data-gp-component] { margin-bottom: 1.25rem; } }

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

 .gp-component-id-pm8VV1xWnk { flex-wrap: wrap; margin-right: -0.5rem; margin-left: -0.5rem; } @media (min-width: 768px) { .gp-component-id-pm8VV1xWnk { 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) { .gp-component-id-6GtFZlciA_ { font-size: 34px !important;font-weight: 700 !important;color: rgb(52, 73, 94);text-align: left;line-height: 1.25;font-family: "Work Sans" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-bottom: 10px;overflow-wrap: break-word; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-6GtFZlciA_ { font-size: 38px !important;font-weight: 700 !important;color: rgb(52, 73, 94);text-align: left;line-height: 1.25;font-family: "Work Sans" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-bottom: 10px;overflow-wrap: break-word; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-6GtFZlciA_ { font-size: 30px !important;font-weight: 700 !important;color: rgb(52, 73, 94);text-align: left;line-height: 1.25;font-family: "Work Sans" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-bottom: 10px;overflow-wrap: break-word; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-6GtFZlciA_ { font-size: 38px !important;font-weight: 700 !important;color: rgb(52, 73, 94);text-align: left;line-height: 1.25;font-family: "Work Sans" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-bottom: 10px;overflow-wrap: break-word; } } @media (min-width: 1200px) { .gp-component-id-6GtFZlciA_ { font-size: 38px !important;font-weight: 700 !important;color: rgb(52, 73, 94);text-align: left;line-height: 1.25;font-family: "Work Sans" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-bottom: 10px;overflow-wrap: break-word; } }

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

 @media (max-width: 639px) { .gp-component-id-VT7m_KlEpf[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-VT7m_KlEpf[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-VT7m_KlEpf[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-VT7m_KlEpf[data-gp-component] { width: 100%;height: 100%;flex-direction: column;justify-content: center;display: flex; } } @media (min-width: 1200px) { .gp-component-id-VT7m_KlEpf[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-bjaN5npDw8[data-gp-component] { padding-left: 0px;padding-right: 0px;width: 100%; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-bjaN5npDw8[data-gp-component] { padding-left: 0px;padding-right: 0px;width: 100%; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-bjaN5npDw8[data-gp-component] { padding-left: 0px;padding-right: 0px;width: 100%; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-bjaN5npDw8[data-gp-component] { padding-left: 0px;padding-right: 0px;width: 100%; } } @media (min-width: 1200px) { .gp-component-id-bjaN5npDw8[data-gp-component] { padding-left: 0px;padding-right: 0px;width: 100%; } }

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

 @media (max-width: 639px) { .gp-component-id-pueGHHmUxdz[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-pueGHHmUxdz[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-pueGHHmUxdz[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-pueGHHmUxdz[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-pueGHHmUxdz[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-0P7siHnlyEb[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-0P7siHnlyEb[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-0P7siHnlyEb[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-0P7siHnlyEb[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-0P7siHnlyEb[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-Q23m1sPLJs2[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-Q23m1sPLJs2[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-Q23m1sPLJs2[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-Q23m1sPLJs2[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-Q23m1sPLJs2[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-QSjQCyLuLQX[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-QSjQCyLuLQX[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-QSjQCyLuLQX[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-QSjQCyLuLQX[data-gp-component] { width: auto;flex-direction: row;justify-content: center;align-items: center;display: flex; } } @media (min-width: 1200px) { .gp-component-id-QSjQCyLuLQX[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-GPAJRJpkRtf { 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-GPAJRJpkRtf { 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-GPAJRJpkRtf { 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-GPAJRJpkRtf { 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-GPAJRJpkRtf { 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-2x_Uj5UtRC9[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-2x_Uj5UtRC9[data-gp-component] { width: 100%;flex-direction: row;justify-content: space-between;display: flex; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-2x_Uj5UtRC9[data-gp-component] { width: 100%;flex-direction: row;justify-content: space-between;display: flex; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-2x_Uj5UtRC9[data-gp-component] { width: 100%;flex-direction: row;justify-content: space-between;display: flex; } } @media (min-width: 1200px) { .gp-component-id-2x_Uj5UtRC9[data-gp-component] { width: 100%;flex-direction: row;justify-content: space-between;display: flex; } }

 @media (max-width: 639px) { .gp-component-id-eWqhTN4gl2v[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-eWqhTN4gl2v[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-eWqhTN4gl2v[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-eWqhTN4gl2v[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-eWqhTN4gl2v[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-gxmT16Wqlpz[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-gxmT16Wqlpz[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-gxmT16Wqlpz[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-gxmT16Wqlpz[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-gxmT16Wqlpz[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-ZqUzEOnmKhu { 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-ZqUzEOnmKhu { 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-ZqUzEOnmKhu { 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-ZqUzEOnmKhu { 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-ZqUzEOnmKhu { 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-V9nAKYkzAHp[data-gp-component] { margin-top: 50px;width: 100%; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-V9nAKYkzAHp[data-gp-component] { margin-top: 50px;width: 100%; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-V9nAKYkzAHp[data-gp-component] { width: 100%; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-V9nAKYkzAHp[data-gp-component] { width: 100%; } } @media (min-width: 1200px) { .gp-component-id-V9nAKYkzAHp[data-gp-component] { width: 100%; } }

 @media (max-width: 639px) { .gp-component-id-CpgEbc4r6c3[data-gp-component] { width: 100%;height: 100%; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-CpgEbc4r6c3[data-gp-component] { width: 100%;height: 100%; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-CpgEbc4r6c3[data-gp-component] { width: 100%;height: 100%; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-CpgEbc4r6c3[data-gp-component] { width: 100%;height: 100%; } } @media (min-width: 1200px) { .gp-component-id-CpgEbc4r6c3[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-5MfvSWVHjqs[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-5MfvSWVHjqs[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-5MfvSWVHjqs[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-5MfvSWVHjqs[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-5MfvSWVHjqs[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-KUJkB6c2AaB[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-KUJkB6c2AaB[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-KUJkB6c2AaB[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-KUJkB6c2AaB[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-KUJkB6c2AaB[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-QxR3xvxOpYw[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-QxR3xvxOpYw[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-QxR3xvxOpYw[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-QxR3xvxOpYw[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-QxR3xvxOpYw[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-r7469mifP4U[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-r7469mifP4U[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-r7469mifP4U[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-r7469mifP4U[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-r7469mifP4U[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-m0OTgIDri1f { 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-m0OTgIDri1f { 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-m0OTgIDri1f { 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-m0OTgIDri1f { 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-m0OTgIDri1f { 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-QM1wBrpSdWz[data-gp-component] { margin-top: 50px;width: 100%; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-QM1wBrpSdWz[data-gp-component] { margin-top: 50px;width: 100%; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-QM1wBrpSdWz[data-gp-component] { width: 100%; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-QM1wBrpSdWz[data-gp-component] { width: 100%; } } @media (min-width: 1200px) { .gp-component-id-QM1wBrpSdWz[data-gp-component] { width: 100%; } }

 @media (max-width: 639px) { .gp-component-id-VbQyaJwZ61L[data-gp-component] { width: 100%;height: 100%; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-VbQyaJwZ61L[data-gp-component] { width: 100%;height: 100%; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-VbQyaJwZ61L[data-gp-component] { width: 100%;height: 100%; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-VbQyaJwZ61L[data-gp-component] { width: 100%;height: 100%; } } @media (min-width: 1200px) { .gp-component-id-VbQyaJwZ61L[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-G4Xd8WqJYNv[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-G4Xd8WqJYNv[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-G4Xd8WqJYNv[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-G4Xd8WqJYNv[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-G4Xd8WqJYNv[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-G0mqHWkshPz[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-G0mqHWkshPz[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-G0mqHWkshPz[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-G0mqHWkshPz[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-G0mqHWkshPz[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-8R3M05G7Lkf[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-8R3M05G7Lkf[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-8R3M05G7Lkf[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-8R3M05G7Lkf[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-8R3M05G7Lkf[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-BHOzR6zRkNY[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-BHOzR6zRkNY[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-BHOzR6zRkNY[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-BHOzR6zRkNY[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-BHOzR6zRkNY[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-sC0gElIOrpN { 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-sC0gElIOrpN { 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-sC0gElIOrpN { 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-sC0gElIOrpN { 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-sC0gElIOrpN { 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-S6d1S1lF6F[data-gp-component] { margin-top: 50px;width: 100%; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-S6d1S1lF6F[data-gp-component] { margin-top: 50px;width: 100%; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-S6d1S1lF6F[data-gp-component] { width: 100%; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-S6d1S1lF6F[data-gp-component] { width: 100%; } } @media (min-width: 1200px) { .gp-component-id-S6d1S1lF6F[data-gp-component] { width: 100%; } }

 @media (max-width: 639px) { .gp-component-id-I78sD_gW9z[data-gp-component] { width: 100%;height: 100%; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-I78sD_gW9z[data-gp-component] { width: 100%;height: 100%; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-I78sD_gW9z[data-gp-component] { width: 100%;height: 100%; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-I78sD_gW9z[data-gp-component] { width: 100%;height: 100%; } } @media (min-width: 1200px) { .gp-component-id-I78sD_gW9z[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-3xhqEVulRz[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-3xhqEVulRz[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-3xhqEVulRz[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-3xhqEVulRz[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-3xhqEVulRz[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-KSIGv3dmPs[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-KSIGv3dmPs[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-KSIGv3dmPs[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-KSIGv3dmPs[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-KSIGv3dmPs[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-niJYi7vUxu[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-niJYi7vUxu[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-niJYi7vUxu[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-niJYi7vUxu[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-niJYi7vUxu[data-gp-component] { font-size: 16px !important;color: rgb(243, 243, 243);background-color: transparent;display: block;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial; } }

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

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

 @media (max-width: 639px) { [data-gp-text] .gp-component-id-SmCKWwU0os { 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-SmCKWwU0os { 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-SmCKWwU0os { 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-SmCKWwU0os { 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-SmCKWwU0os { 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-6zTGHog0DY[data-gp-component] { margin-top: 50px;width: 100%; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-6zTGHog0DY[data-gp-component] { margin-top: 50px;width: 100%; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-6zTGHog0DY[data-gp-component] { width: 100%; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-6zTGHog0DY[data-gp-component] { width: 100%; } } @media (min-width: 1200px) { .gp-component-id-6zTGHog0DY[data-gp-component] { width: 100%; } }

 @media (max-width: 639px) { .gp-component-id-0exgxCG7Mz[data-gp-component] { width: 100%;height: 100%; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-0exgxCG7Mz[data-gp-component] { width: 100%;height: 100%; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-0exgxCG7Mz[data-gp-component] { width: 100%;height: 100%; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-0exgxCG7Mz[data-gp-component] { width: 100%;height: 100%; } } @media (min-width: 1200px) { .gp-component-id-0exgxCG7Mz[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-MUibWRo0L9[data-gp-component] { padding-left: 0px;padding-right: 0px;width: 100%; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-MUibWRo0L9[data-gp-component] { padding-left: 0px;padding-right: 0px;width: 100%; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-MUibWRo0L9[data-gp-component] { padding-left: 0px;padding-right: 0px;width: 100%; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-MUibWRo0L9[data-gp-component] { padding-left: 0px;padding-right: 0px;width: 100%; } } @media (min-width: 1200px) { .gp-component-id-MUibWRo0L9[data-gp-component] { padding-left: 0px;padding-right: 0px;width: 100%; } }

 @media (max-width: 639px) { .gp-component-id-Qm_jb6lp1x[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-Qm_jb6lp1x[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-Qm_jb6lp1x[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-Qm_jb6lp1x[data-gp-component] { width: 100%;flex-direction: column;justify-content: space-between;display: flex; } } @media (min-width: 1200px) { .gp-component-id-Qm_jb6lp1x[data-gp-component] { width: 100%;flex-direction: column;justify-content: space-between;display: flex; } }

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

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

