
      
    


      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);
  }
} *{} /*endBaseStyles*/
     


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


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

 @media (max-width: 639px) { .gp-component-id-8tRfjPIIc[data-gp-component] { border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 771px;height: 514px;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-8tRfjPIIc[data-gp-component] { border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 100%;height: 514px;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-8tRfjPIIc[data-gp-component] { border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 200px;width: 100%;height: 514px;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-8tRfjPIIc[data-gp-component] { border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 771px;height: 514px;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-8tRfjPIIc[data-gp-component] { border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 771px;height: 514px;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-WsoDBwi0Xn { font-size: 13px !important;letter-spacing: 0.05em;font-family: Inter !important;margin-left: 0px; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-WsoDBwi0Xn { letter-spacing: 0.05em;font-family: Inter; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-WsoDBwi0Xn { letter-spacing: 0.05em;font-family: Inter; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-WsoDBwi0Xn { letter-spacing: 0.05em;font-family: Inter; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-WsoDBwi0Xn { letter-spacing: 0.05em;font-family: Inter; } }

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

 @media (max-width: 639px) { [data-gp-text] .gp-component-id-DUDMV4_1X { font-size: 40px !important;font-weight: 600 !important;text-align: center;font-family: Manrope !important;background-color: rgb(245, 247, 250);padding-left: 20px;padding-right: 20px;padding-bottom: 20px;width: null; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-DUDMV4_1X { font-size: 40px !important;font-weight: 600 !important;text-align: center;font-family: Manrope !important;background-color: rgb(245, 247, 250);padding-left: 158px;padding-right: 158px;padding-bottom: 20px; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-DUDMV4_1X { font-size: 40px !important;font-weight: 600 !important;text-align: center;font-family: Manrope !important;background-color: rgb(245, 247, 250);padding-left: 158px;padding-right: 158px;padding-bottom: 20px; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-DUDMV4_1X { font-size: 40px !important;font-weight: 600 !important;text-align: center;font-family: Manrope !important;background-color: rgb(245, 247, 250);padding-left: 158px;padding-right: 158px;padding-bottom: 20px; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-DUDMV4_1X { font-size: 40px !important;font-weight: 600 !important;text-align: center;font-family: Manrope !important;background-color: rgb(245, 247, 250);padding-left: 158px;padding-right: 158px;padding-bottom: 20px; } }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

 @media (max-width: 639px) { [data-gp-text] .gp-component-id-agJJAnymeF { font-size: 32px !important;font-weight: 700 !important;color: rgb(16, 42, 67);text-align: left;line-height: 1.5;font-family: Manrope !important;margin-bottom: 20px;padding-left: 10px;width: 100%; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-agJJAnymeF { font-size: 45px !important;font-weight: 700 !important;color: rgb(16, 42, 67);text-align: left;line-height: 1.5;font-family: Manrope !important;margin-bottom: 20px;width: 100%; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-agJJAnymeF { font-size: 45px !important;font-weight: 700 !important;color: rgb(16, 42, 67);text-align: left;line-height: 1.5;font-family: Manrope !important;margin-bottom: 20px;width: 100%; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-agJJAnymeF { font-size: 45px !important;font-weight: 700 !important;color: rgb(16, 42, 67);text-align: left;line-height: 1.5;font-family: Manrope !important;margin-bottom: 20px;width: 100%; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-agJJAnymeF { font-size: 45px !important;font-weight: 700 !important;color: rgb(16, 42, 67);text-align: left;line-height: 1.5;font-family: Manrope !important;margin-bottom: 20px;width: 100%; } }

 @media (max-width: 639px) { [data-gp-text] .gp-component-id-rKX08nG1nU { font-size: 16px;color: rgb(57, 75, 86);font-family: Inter;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-rKX08nG1nU { font-size: 16px;color: rgb(57, 75, 86);font-family: Inter;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-rKX08nG1nU { font-size: 16px;color: rgb(57, 75, 86);font-family: Inter;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-rKX08nG1nU { font-size: 16px;color: rgb(57, 75, 86);font-family: Inter;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-rKX08nG1nU { font-size: 16px;color: rgb(57, 75, 86);font-family: Inter;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } }

 @media (max-width: 639px) { [data-gp-text] .gp-component-id-wML3VcVbqw { font-size: 24px;font-weight: 600;color: rgba(16, 42, 67, 1);font-family: Manrope;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 8px; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-wML3VcVbqw { font-size: 24px;font-weight: 600;color: rgba(16, 42, 67, 1);font-family: Manrope;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 8px; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-wML3VcVbqw { font-size: 24px;font-weight: 600;color: rgba(16, 42, 67, 1);font-family: Manrope;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 8px; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-wML3VcVbqw { font-size: 24px;font-weight: 600;color: rgba(16, 42, 67, 1);font-family: Manrope;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 8px; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-wML3VcVbqw { font-size: 24px;font-weight: 600;color: rgba(16, 42, 67, 1);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-XCoNJJAApJ { font-size: 24px;font-weight: 600;color: rgba(16, 42, 67, 1);font-family: Manrope;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 8px; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-XCoNJJAApJ { font-size: 24px;font-weight: 600;color: rgba(16, 42, 67, 1);font-family: Manrope;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 8px; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-XCoNJJAApJ { font-size: 24px;font-weight: 600;color: rgba(16, 42, 67, 1);font-family: Manrope;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 8px; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-XCoNJJAApJ { font-size: 24px;font-weight: 600;color: rgba(16, 42, 67, 1);font-family: Manrope;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 8px; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-XCoNJJAApJ { font-size: 24px;font-weight: 600;color: rgba(16, 42, 67, 1);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-RbQ_YxKSJx { font-size: 24px;font-weight: 600;color: rgba(16, 42, 67, 1);font-family: Manrope;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 8px; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-RbQ_YxKSJx { font-size: 24px;font-weight: 600;color: rgba(16, 42, 67, 1);font-family: Manrope;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 8px; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-RbQ_YxKSJx { font-size: 24px;font-weight: 600;color: rgba(16, 42, 67, 1);font-family: Manrope;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 8px; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-RbQ_YxKSJx { font-size: 24px;font-weight: 600;color: rgba(16, 42, 67, 1);font-family: Manrope;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 8px; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-RbQ_YxKSJx { font-size: 24px;font-weight: 600;color: rgba(16, 42, 67, 1);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-XtbWlHXMth { font-size: 24px;font-weight: 600;color: rgb(16, 42, 67);font-family: Manrope;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 8px; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-XtbWlHXMth { font-size: 24px;font-weight: 600;color: rgb(16, 42, 67);font-family: Manrope;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 8px; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-XtbWlHXMth { font-size: 24px;font-weight: 600;color: rgb(16, 42, 67);font-family: Manrope;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 8px; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-XtbWlHXMth { font-size: 24px;font-weight: 600;color: rgb(16, 42, 67);font-family: Manrope;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 8px; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-XtbWlHXMth { font-size: 24px;font-weight: 600;color: rgb(16, 42, 67);font-family: Manrope;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 8px; } }

 @media (max-width: 639px) { .gp-component-id-KG7foWtjWy[data-gp-component] { font-size: 16px;color: inherit;text-align: center;background-color: rgba(255, 255, 255, 0);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial; } .gp-component-id-KG7foWtjWy[data-gp-component]:hover,.gp-component-id-KG7foWtjWy[data-gp-component].gp-hover { color: rgb(16, 42, 67);background-color: rgba(255, 255, 255, 0);font-style: inherit;text-decoration-line: underline; } .gp-component-id-KG7foWtjWy[data-gp-component]:active,.gp-component-id-KG7foWtjWy[data-gp-component].gp-active { background-color: rgba(255, 255, 255, 0); } .gp-component-id-KG7foWtjWy[data-gp-component]:focus,.gp-component-id-KG7foWtjWy[data-gp-component].gp-focus { background-color: rgba(255, 255, 255, 0); } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-KG7foWtjWy[data-gp-component] { font-size: 16px;color: inherit;text-align: center;background-color: rgba(255, 255, 255, 0);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial; } .gp-component-id-KG7foWtjWy[data-gp-component]:hover,.gp-component-id-KG7foWtjWy[data-gp-component].gp-hover { color: rgb(16, 42, 67);background-color: rgba(255, 255, 255, 0);font-style: inherit;text-decoration-line: underline; } .gp-component-id-KG7foWtjWy[data-gp-component]:active,.gp-component-id-KG7foWtjWy[data-gp-component].gp-active { background-color: rgba(255, 255, 255, 0); } .gp-component-id-KG7foWtjWy[data-gp-component]:focus,.gp-component-id-KG7foWtjWy[data-gp-component].gp-focus { background-color: rgba(255, 255, 255, 0); } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-KG7foWtjWy[data-gp-component] { font-size: 16px;color: inherit;text-align: center;background-color: rgba(255, 255, 255, 0);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial; } .gp-component-id-KG7foWtjWy[data-gp-component]:hover,.gp-component-id-KG7foWtjWy[data-gp-component].gp-hover { color: rgb(16, 42, 67);background-color: rgba(255, 255, 255, 0);font-style: inherit;text-decoration-line: underline; } .gp-component-id-KG7foWtjWy[data-gp-component]:active,.gp-component-id-KG7foWtjWy[data-gp-component].gp-active { background-color: rgba(255, 255, 255, 0); } .gp-component-id-KG7foWtjWy[data-gp-component]:focus,.gp-component-id-KG7foWtjWy[data-gp-component].gp-focus { background-color: rgba(255, 255, 255, 0); } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-KG7foWtjWy[data-gp-component] { font-size: 16px;color: inherit;text-align: center;background-color: rgba(255, 255, 255, 0);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial; } .gp-component-id-KG7foWtjWy[data-gp-component]:hover,.gp-component-id-KG7foWtjWy[data-gp-component].gp-hover { color: rgb(16, 42, 67);background-color: rgba(255, 255, 255, 0);font-style: inherit;text-decoration-line: underline; } .gp-component-id-KG7foWtjWy[data-gp-component]:active,.gp-component-id-KG7foWtjWy[data-gp-component].gp-active { background-color: rgba(255, 255, 255, 0); } .gp-component-id-KG7foWtjWy[data-gp-component]:focus,.gp-component-id-KG7foWtjWy[data-gp-component].gp-focus { background-color: rgba(255, 255, 255, 0); } } @media (min-width: 1200px) { .gp-component-id-KG7foWtjWy[data-gp-component] { font-size: 16px;color: inherit;text-align: center;background-color: rgba(255, 255, 255, 0);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial; } .gp-component-id-KG7foWtjWy[data-gp-component]:hover,.gp-component-id-KG7foWtjWy[data-gp-component].gp-hover { color: rgb(16, 42, 67);background-color: rgba(255, 255, 255, 0);font-style: inherit;text-decoration-line: underline; } .gp-component-id-KG7foWtjWy[data-gp-component]:active,.gp-component-id-KG7foWtjWy[data-gp-component].gp-active { background-color: rgba(255, 255, 255, 0); } .gp-component-id-KG7foWtjWy[data-gp-component]:focus,.gp-component-id-KG7foWtjWy[data-gp-component].gp-focus { background-color: rgba(255, 255, 255, 0); } }

 @media (max-width: 639px) { .gp-component-id-bmecW1hAcc[data-gp-component] { font-size: 16px;color: inherit;text-align: center;background-color: rgba(255, 255, 255, 0);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer; } .gp-component-id-bmecW1hAcc[data-gp-component]:hover,.gp-component-id-bmecW1hAcc[data-gp-component].gp-hover { color: rgb(16, 42, 67);background-color: rgba(255, 255, 255, 0);text-decoration-line: underline;font-style: inherit; } .gp-component-id-bmecW1hAcc[data-gp-component]:active,.gp-component-id-bmecW1hAcc[data-gp-component].gp-active { background-color: rgba(255, 255, 255, 0); } .gp-component-id-bmecW1hAcc[data-gp-component]:focus,.gp-component-id-bmecW1hAcc[data-gp-component].gp-focus { background-color: rgba(255, 255, 255, 0); } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-bmecW1hAcc[data-gp-component] { font-size: 16px;color: inherit;text-align: center;background-color: rgba(255, 255, 255, 0);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer; } .gp-component-id-bmecW1hAcc[data-gp-component]:hover,.gp-component-id-bmecW1hAcc[data-gp-component].gp-hover { color: rgb(16, 42, 67);background-color: rgba(255, 255, 255, 0);text-decoration-line: underline;font-style: inherit; } .gp-component-id-bmecW1hAcc[data-gp-component]:active,.gp-component-id-bmecW1hAcc[data-gp-component].gp-active { background-color: rgba(255, 255, 255, 0); } .gp-component-id-bmecW1hAcc[data-gp-component]:focus,.gp-component-id-bmecW1hAcc[data-gp-component].gp-focus { background-color: rgba(255, 255, 255, 0); } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-bmecW1hAcc[data-gp-component] { font-size: 16px;color: inherit;text-align: center;background-color: rgba(255, 255, 255, 0);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer; } .gp-component-id-bmecW1hAcc[data-gp-component]:hover,.gp-component-id-bmecW1hAcc[data-gp-component].gp-hover { color: rgb(16, 42, 67);background-color: rgba(255, 255, 255, 0);text-decoration-line: underline;font-style: inherit; } .gp-component-id-bmecW1hAcc[data-gp-component]:active,.gp-component-id-bmecW1hAcc[data-gp-component].gp-active { background-color: rgba(255, 255, 255, 0); } .gp-component-id-bmecW1hAcc[data-gp-component]:focus,.gp-component-id-bmecW1hAcc[data-gp-component].gp-focus { background-color: rgba(255, 255, 255, 0); } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-bmecW1hAcc[data-gp-component] { font-size: 16px;color: inherit;text-align: center;background-color: rgba(255, 255, 255, 0);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer; } .gp-component-id-bmecW1hAcc[data-gp-component]:hover,.gp-component-id-bmecW1hAcc[data-gp-component].gp-hover { color: rgb(16, 42, 67);background-color: rgba(255, 255, 255, 0);text-decoration-line: underline;font-style: inherit; } .gp-component-id-bmecW1hAcc[data-gp-component]:active,.gp-component-id-bmecW1hAcc[data-gp-component].gp-active { background-color: rgba(255, 255, 255, 0); } .gp-component-id-bmecW1hAcc[data-gp-component]:focus,.gp-component-id-bmecW1hAcc[data-gp-component].gp-focus { background-color: rgba(255, 255, 255, 0); } } @media (min-width: 1200px) { .gp-component-id-bmecW1hAcc[data-gp-component] { font-size: 16px;color: inherit;text-align: center;background-color: rgba(255, 255, 255, 0);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer; } .gp-component-id-bmecW1hAcc[data-gp-component]:hover,.gp-component-id-bmecW1hAcc[data-gp-component].gp-hover { color: rgb(16, 42, 67);background-color: rgba(255, 255, 255, 0);text-decoration-line: underline;font-style: inherit; } .gp-component-id-bmecW1hAcc[data-gp-component]:active,.gp-component-id-bmecW1hAcc[data-gp-component].gp-active { background-color: rgba(255, 255, 255, 0); } .gp-component-id-bmecW1hAcc[data-gp-component]:focus,.gp-component-id-bmecW1hAcc[data-gp-component].gp-focus { background-color: rgba(255, 255, 255, 0); } }

 @media (max-width: 639px) { .gp-component-id-tGIu8_irKq[data-gp-component] { font-size: 16px;color: inherit;text-align: center;background-color: rgba(255, 255, 255, 0);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer; } .gp-component-id-tGIu8_irKq[data-gp-component]:hover,.gp-component-id-tGIu8_irKq[data-gp-component].gp-hover { color: rgb(16, 42, 67);background-color: rgba(255, 255, 255, 0);text-decoration-line: underline;font-style: inherit; } .gp-component-id-tGIu8_irKq[data-gp-component]:active,.gp-component-id-tGIu8_irKq[data-gp-component].gp-active { background-color: rgba(255, 255, 255, 0); } .gp-component-id-tGIu8_irKq[data-gp-component]:focus,.gp-component-id-tGIu8_irKq[data-gp-component].gp-focus { background-color: rgba(255, 255, 255, 0); } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-tGIu8_irKq[data-gp-component] { font-size: 16px;color: inherit;text-align: center;background-color: rgba(255, 255, 255, 0);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer; } .gp-component-id-tGIu8_irKq[data-gp-component]:hover,.gp-component-id-tGIu8_irKq[data-gp-component].gp-hover { color: rgb(16, 42, 67);background-color: rgba(255, 255, 255, 0);text-decoration-line: underline;font-style: inherit; } .gp-component-id-tGIu8_irKq[data-gp-component]:active,.gp-component-id-tGIu8_irKq[data-gp-component].gp-active { background-color: rgba(255, 255, 255, 0); } .gp-component-id-tGIu8_irKq[data-gp-component]:focus,.gp-component-id-tGIu8_irKq[data-gp-component].gp-focus { background-color: rgba(255, 255, 255, 0); } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-tGIu8_irKq[data-gp-component] { font-size: 16px;color: inherit;text-align: center;background-color: rgba(255, 255, 255, 0);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer; } .gp-component-id-tGIu8_irKq[data-gp-component]:hover,.gp-component-id-tGIu8_irKq[data-gp-component].gp-hover { color: rgb(16, 42, 67);background-color: rgba(255, 255, 255, 0);text-decoration-line: underline;font-style: inherit; } .gp-component-id-tGIu8_irKq[data-gp-component]:active,.gp-component-id-tGIu8_irKq[data-gp-component].gp-active { background-color: rgba(255, 255, 255, 0); } .gp-component-id-tGIu8_irKq[data-gp-component]:focus,.gp-component-id-tGIu8_irKq[data-gp-component].gp-focus { background-color: rgba(255, 255, 255, 0); } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-tGIu8_irKq[data-gp-component] { font-size: 16px;color: inherit;text-align: center;background-color: rgba(255, 255, 255, 0);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer; } .gp-component-id-tGIu8_irKq[data-gp-component]:hover,.gp-component-id-tGIu8_irKq[data-gp-component].gp-hover { color: rgb(16, 42, 67);background-color: rgba(255, 255, 255, 0);text-decoration-line: underline;font-style: inherit; } .gp-component-id-tGIu8_irKq[data-gp-component]:active,.gp-component-id-tGIu8_irKq[data-gp-component].gp-active { background-color: rgba(255, 255, 255, 0); } .gp-component-id-tGIu8_irKq[data-gp-component]:focus,.gp-component-id-tGIu8_irKq[data-gp-component].gp-focus { background-color: rgba(255, 255, 255, 0); } } @media (min-width: 1200px) { .gp-component-id-tGIu8_irKq[data-gp-component] { font-size: 16px;color: inherit;text-align: center;background-color: rgba(255, 255, 255, 0);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer; } .gp-component-id-tGIu8_irKq[data-gp-component]:hover,.gp-component-id-tGIu8_irKq[data-gp-component].gp-hover { color: rgb(16, 42, 67);background-color: rgba(255, 255, 255, 0);text-decoration-line: underline;font-style: inherit; } .gp-component-id-tGIu8_irKq[data-gp-component]:active,.gp-component-id-tGIu8_irKq[data-gp-component].gp-active { background-color: rgba(255, 255, 255, 0); } .gp-component-id-tGIu8_irKq[data-gp-component]:focus,.gp-component-id-tGIu8_irKq[data-gp-component].gp-focus { background-color: rgba(255, 255, 255, 0); } }

 @media (max-width: 639px) { .gp-component-id-xNufLCNGcZ[data-gp-component] { font-size: 16px;color: inherit;text-align: center;background-color: rgba(255, 255, 255, 0);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial; } .gp-component-id-xNufLCNGcZ[data-gp-component]:hover,.gp-component-id-xNufLCNGcZ[data-gp-component].gp-hover { color: rgba(16, 42, 67, 1);background-color: rgba(256, 256, 256, 0);font-style: inherit;text-decoration-line: underline ; } .gp-component-id-xNufLCNGcZ[data-gp-component]:active,.gp-component-id-xNufLCNGcZ[data-gp-component].gp-active { background-color: rgba(256, 256, 256, 0); } .gp-component-id-xNufLCNGcZ[data-gp-component]:focus,.gp-component-id-xNufLCNGcZ[data-gp-component].gp-focus { background-color: rgba(256, 256, 256, 0); } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-xNufLCNGcZ[data-gp-component] { font-size: 16px;color: inherit;text-align: center;background-color: rgba(255, 255, 255, 0);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial; } .gp-component-id-xNufLCNGcZ[data-gp-component]:hover,.gp-component-id-xNufLCNGcZ[data-gp-component].gp-hover { color: rgba(16, 42, 67, 1);background-color: rgba(256, 256, 256, 0);font-style: inherit;text-decoration-line: underline ; } .gp-component-id-xNufLCNGcZ[data-gp-component]:active,.gp-component-id-xNufLCNGcZ[data-gp-component].gp-active { background-color: rgba(256, 256, 256, 0); } .gp-component-id-xNufLCNGcZ[data-gp-component]:focus,.gp-component-id-xNufLCNGcZ[data-gp-component].gp-focus { background-color: rgba(256, 256, 256, 0); } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-xNufLCNGcZ[data-gp-component] { font-size: 16px;color: inherit;text-align: center;background-color: rgba(255, 255, 255, 0);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial; } .gp-component-id-xNufLCNGcZ[data-gp-component]:hover,.gp-component-id-xNufLCNGcZ[data-gp-component].gp-hover { color: rgba(16, 42, 67, 1);background-color: rgba(256, 256, 256, 0);font-style: inherit;text-decoration-line: underline ; } .gp-component-id-xNufLCNGcZ[data-gp-component]:active,.gp-component-id-xNufLCNGcZ[data-gp-component].gp-active { background-color: rgba(256, 256, 256, 0); } .gp-component-id-xNufLCNGcZ[data-gp-component]:focus,.gp-component-id-xNufLCNGcZ[data-gp-component].gp-focus { background-color: rgba(256, 256, 256, 0); } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-xNufLCNGcZ[data-gp-component] { font-size: 16px;color: inherit;text-align: center;background-color: rgba(255, 255, 255, 0);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial; } .gp-component-id-xNufLCNGcZ[data-gp-component]:hover,.gp-component-id-xNufLCNGcZ[data-gp-component].gp-hover { color: rgba(16, 42, 67, 1);background-color: rgba(256, 256, 256, 0);font-style: inherit;text-decoration-line: underline ; } .gp-component-id-xNufLCNGcZ[data-gp-component]:active,.gp-component-id-xNufLCNGcZ[data-gp-component].gp-active { background-color: rgba(256, 256, 256, 0); } .gp-component-id-xNufLCNGcZ[data-gp-component]:focus,.gp-component-id-xNufLCNGcZ[data-gp-component].gp-focus { background-color: rgba(256, 256, 256, 0); } } @media (min-width: 1200px) { .gp-component-id-xNufLCNGcZ[data-gp-component] { font-size: 16px;color: inherit;text-align: center;background-color: rgba(255, 255, 255, 0);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial; } .gp-component-id-xNufLCNGcZ[data-gp-component]:hover,.gp-component-id-xNufLCNGcZ[data-gp-component].gp-hover { color: rgba(16, 42, 67, 1);background-color: rgba(256, 256, 256, 0);font-style: inherit;text-decoration-line: underline ; } .gp-component-id-xNufLCNGcZ[data-gp-component]:active,.gp-component-id-xNufLCNGcZ[data-gp-component].gp-active { background-color: rgba(256, 256, 256, 0); } .gp-component-id-xNufLCNGcZ[data-gp-component]:focus,.gp-component-id-xNufLCNGcZ[data-gp-component].gp-focus { background-color: rgba(256, 256, 256, 0); } }

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

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

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

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

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

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

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

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

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

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

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

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

 .gp-component-id-DUDMV4_1X { 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-DUDMV4_1X { 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-DUDMV4_1X { 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-DUDMV4_1X { 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-DUDMV4_1X { 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-DUDMV4_1X { 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-R6QIfOLc6_ { padding-bottom: 20px; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-R6QIfOLc6_ { padding-bottom: 20px; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-R6QIfOLc6_ { padding-bottom: 20px; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-R6QIfOLc6_ { padding-bottom: 20px; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-R6QIfOLc6_ { padding-bottom: 20px; } }

 @media (max-width: 639px) { .gp-component-id-FMeb0XczwM[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-top: 20px;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-FMeb0XczwM[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-top: 20px;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-FMeb0XczwM[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-top: 20px;margin-bottom: 20px;padding-left: 26px;padding-right: 26px;padding-top: 14px;padding-bottom: 14px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-FMeb0XczwM[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-top: 20px;margin-bottom: 20px;padding-left: 0px;padding-right: 26px;padding-top: 14px;padding-bottom: 14px;width: 100%; } } @media (min-width: 1200px) { .gp-component-id-FMeb0XczwM[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-top: 20px;margin-bottom: 20px;padding-left: 26px;padding-right: 26px;padding-top: 14px;padding-bottom: 14px; } }

 @media (max-width: 639px) { .gp-component-id-oG0OEhjjPV[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-oG0OEhjjPV[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-oG0OEhjjPV[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-oG0OEhjjPV[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-oG0OEhjjPV[data-gp-component] { font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Inter;border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;background-color: rgba(220, 24, 24, 1);padding-left: 26px;padding-right: 26px;padding-top: 14px;padding-bottom: 14px; } }

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

 .gp-component-id-142NplaXkW { 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-142NplaXkW { 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-142NplaXkW { 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-142NplaXkW { 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-142NplaXkW { 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-142NplaXkW { 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-u91UQ_Ds0h { 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-u91UQ_Ds0h { 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-u91UQ_Ds0h { 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-u91UQ_Ds0h { 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-u91UQ_Ds0h { 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-u91UQ_Ds0h { 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-rl2vOj0W8y[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-rl2vOj0W8y[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-rl2vOj0W8y[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-rl2vOj0W8y[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-rl2vOj0W8y[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-usXLoIovv2 { 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-usXLoIovv2 { 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-usXLoIovv2 { 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-usXLoIovv2 { 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-usXLoIovv2 { 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-usXLoIovv2 { 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-0WQL9AP_Ll { 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-0WQL9AP_Ll { 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-0WQL9AP_Ll { 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-0WQL9AP_Ll { 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-0WQL9AP_Ll { 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-0WQL9AP_Ll { 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-M6bbbVI7J0 { 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-M6bbbVI7J0 { 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-M6bbbVI7J0 { 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-M6bbbVI7J0 { 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-M6bbbVI7J0 { 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-M6bbbVI7J0 { display: flex; margin-left: auto; margin-right: auto; justify-content: space-between; align-items: center; width: 100%; max-width: 1200px; } }

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

 @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-3fg3kBJ383[data-gp-component] { height: 100%; } }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

 .gp-component-id-DOuu5Jh7pr { width: 100%; } @media (max-width: 639px) { .gp-component-id-DOuu5Jh7pr { width: 100%; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-DOuu5Jh7pr { width: 100%; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-DOuu5Jh7pr { width: 100%; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-DOuu5Jh7pr { width: 100%; } } @media (min-width: 1200px) { .gp-component-id-DOuu5Jh7pr { 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-qspdnclI3b { width: 100%;padding-left: 8px;padding-right: 8px; } @media (max-width: 639px) { .gp-component-id-qspdnclI3b { width: 100%;padding-left: 8px;padding-right: 8px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-qspdnclI3b { width: 100%;padding-left: 8px;padding-right: 8px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-qspdnclI3b { width: 100%;padding-left: 8px;padding-right: 8px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-qspdnclI3b { width: 100%;padding-left: 8px;padding-right: 8px; } } @media (min-width: 1200px) { .gp-component-id-qspdnclI3b { width: 100%;padding-left: 8px;padding-right: 8px; } }

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

