
      
    


      body { font-family: Inter }
     


      /* =========================================
   EFGC Brand CSS Foundation
   Fonts, colors, and type scale
   ========================================= */

/* Optional font import if not already loaded */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Manrope:wght@500;600;700;800&display=swap');

:root {
  /* Fonts */
  --font-heading: "Manrope", sans-serif;
  --font-body: "Inter", sans-serif;

  /* Core colors */
  --color-primary: #102A43;      /* Deep Navy */
  --color-secondary: #2F5D7E;    /* Steel Blue */
  --color-accent: #1F8A8A;       /* Signal Teal */
  --color-accent-warm: #D9A441;  /* Amber Control Accent */

  /* Neutrals */
  --color-text: #1F2933;         /* Charcoal text */
  --color-text-muted: #52606D;   /* Mid gray */
  --color-text-soft: #5B6B7A;    /* Slate gray */
  --color-border: #D9E2EC;       /* Light border */
  --color-bg: #FFFFFF;           /* White */
  --color-bg-soft: #F5F7FA;      /* Soft Cloud */
  --color-section-wash: #EEF2F6; /* Section wash */

  /* Optional logo red placeholder if you keep red in the system */
  --color-brand-red: #C53D3D;

  /* Desktop type scale */
  --fs-h1: 52px;
  --fs-h2: 40px;
  --fs-h3: 30px;
  --fs-h4: 24px;
  --fs-body-lg: 20px;
  --fs-body: 18px;
  --fs-small: 14px;
  --fs-button: 16px;

  /* Line heights */
  --lh-h1: 1.1;
  --lh-h2: 1.18;
  --lh-h3: 1.22;
  --lh-h4: 1.25;
  --lh-body-lg: 1.6;
  --lh-body: 1.7;
  --lh-small: 1.45;

  /* Weights */
  --fw-heading: 700;
  --fw-subheading: 600;
  --fw-label: 500;
  --fw-body: 400;

  /* Radius */
  --radius-button: 12px;
  --radius-card: 16px;
}

/* Base */
html {
  font-size: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  font-weight: var(--fw-body);
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  color: var(--color-primary);
  font-family: var(--font-heading);
  letter-spacing: -0.02em;
}

h1 {
  font-size: var(--fs-h1);
  line-height: var(--lh-h1);
  font-weight: var(--fw-heading);
}

h2 {
  font-size: var(--fs-h2);
  line-height: var(--lh-h2);
  font-weight: var(--fw-heading);
}

h3 {
  font-size: var(--fs-h3);
  line-height: var(--lh-h3);
  font-weight: var(--fw-heading);
}

h4 {
  font-size: var(--fs-h4);
  line-height: var(--lh-h4);
  font-weight: 650; /* falls back to 700 if unavailable */
}

/* Body text helpers */
p,
li,
blockquote {
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--color-text);
}

.text-lg {
  font-size: var(--fs-body-lg);
  line-height: var(--lh-body-lg);
}

.text-sm,
small,
.meta {
  font-size: var(--fs-small);
  line-height: var(--lh-small);
  color: var(--color-text-muted);
}

.eyebrow,
.label {
  font-size: 14px;
  line-height: 1.4;
  font-weight: var(--fw-label);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-secondary);
}

/* Links */
a {
  color: var(--color-secondary);
  text-decoration: none;
}

a:hover,
a:focus {
  text-decoration: underline;
}

/* Buttons */
.button,
button,
input[type="submit"] {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--fs-button);
  font-weight: 600;
  line-height: 1.2;
  padding: 14px 24px;
  border-radius: var(--radius-button);
  border: 1px solid transparent;
  cursor: pointer;
}

/* Recommended primary CTA */
.button-primary {
  background: var(--color-primary);
  color: #FFFFFF;
}

.button-primary:hover,
.button-primary:focus {
  background: #0D2236;
}

/* Secondary CTA */
.button-secondary {
  background: #FFFFFF;
  color: var(--color-secondary);
  border-color: var(--color-secondary);
}

.button-secondary:hover,
.button-secondary:focus {
  background: var(--color-bg-soft);
}

/* Optional red CTA if you decide to keep logo red as CTA color */
.button-red {
  background: var(--color-brand-red);
  color: #FFFFFF;
}

.button-red:hover,
.button-red:focus {
  filter: brightness(0.95);
}

/* Utility classes */
.bg-soft {
  background: var(--color-bg-soft);
}

.bg-dark {
  background: var(--color-primary);
  color: #FFFFFF;
}

.border-soft {
  border: 1px solid var(--color-border);
}

.text-muted {
  color: var(--color-text-muted);
}

.text-soft {
  color: var(--color-text-soft);
}

.text-primary {
  color: var(--color-primary);
}

.text-secondary {
  color: var(--color-secondary);
}

.text-accent {
  color: var(--color-accent);
}

.text-warm {
  color: var(--color-accent-warm);
}

/* Mobile type scale */
@media (max-width: 767px) {
  :root {
    --fs-h1: 38px;
    --fs-h2: 30px;
    --fs-h3: 24px;
    --fs-h4: 22px;
    --fs-body-lg: 18px;
    --fs-body: 16px;
    --fs-small: 14px;
    --fs-button: 16px;
  }

  body {
    font-size: var(--fs-body);
  }
} *{} {}
     


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


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

 @media (max-width: 639px) { [data-gp-text] .gp-component-id-NX6wF6yF6 { font-size: 16px !important;letter-spacing: 0.05em;font-family: Inter !important;margin-left: 70px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-bottom: 20px;width: 256px;height: 265px;font-style: italic !important;text-decoration-line: inherit;overflow-wrap: break-word; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-NX6wF6yF6 { font-size: 16px !important;letter-spacing: 0.05em;font-family: Inter !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-bottom: 0px;width: 361px;height: 162px;font-style: italic !important;text-decoration-line: inherit;overflow-wrap: break-word; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-NX6wF6yF6 { font-size: 16px !important;letter-spacing: 0.05em;font-family: Inter !important;margin-left: 40px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-right: 60px;padding-bottom: 20px;width: 256px;height: 265px;font-style: italic !important;text-decoration-line: inherit;overflow-wrap: break-word; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-NX6wF6yF6 { font-size: 16px !important;letter-spacing: 0.05em;font-family: Inter !important;margin-left: 50px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-right: 27px;padding-bottom: 20px;width: 256px;height: 265px;font-style: italic !important;text-decoration-line: inherit;overflow-wrap: break-word; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-NX6wF6yF6 { font-size: 16px !important;letter-spacing: 0.05em;font-family: Inter !important;margin-left: 70px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-bottom: 20px;width: 256px;height: 265px;font-style: italic !important;text-decoration-line: inherit;overflow-wrap: break-word; } }

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

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

 .gp-component-id-Q5cxtC7Gp.gp-component > [data-section-overlay] { position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px; } @media (max-width: 639px) { .gp-component-id-Q5cxtC7Gp.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-Q5cxtC7Gp.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-Q5cxtC7Gp.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-Q5cxtC7Gp.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-Q5cxtC7Gp.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) { [data-gp-text] .gp-component-id-b6sg87eM76 { font-size: 17px !important;color: rgb(255, 255, 255);font-family: Inter !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-bottom: 20px;overflow-wrap: break-word; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-b6sg87eM76 { font-size: 17px !important;color: rgb(255, 255, 255);font-family: Inter !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-bottom: 20px;overflow-wrap: break-word; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-b6sg87eM76 { font-size: 17px !important;color: rgb(255, 255, 255);font-family: Inter !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-bottom: 20px;width: 255px;height: 78px;overflow-wrap: break-word; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-b6sg87eM76 { font-size: 17px !important;color: rgb(255, 255, 255);font-family: Inter !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-bottom: 20px;overflow-wrap: break-word; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-b6sg87eM76 { font-size: 17px !important;color: rgb(255, 255, 255);font-family: Inter !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-bottom: 20px;overflow-wrap: break-word; } }

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

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

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

 @media (max-width: 639px) { [data-gp-text] .gp-component-id-TamMlnD9eO { font-size: 28px !important;font-weight: 600 !important;color: rgb(32, 45, 60);font-family: Manrope !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 8px; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-TamMlnD9eO { font-size: 28px !important;font-weight: 600 !important;color: rgb(32, 45, 60);font-family: Manrope !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 8px; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-TamMlnD9eO { font-size: 18px !important;font-weight: 600 !important;color: rgb(32, 45, 60);font-family: Manrope !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 8px; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-TamMlnD9eO { font-size: 28px !important;font-weight: 600 !important;color: rgb(32, 45, 60);font-family: Manrope !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 8px; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-TamMlnD9eO { font-size: 28px !important;font-weight: 600 !important;color: rgb(32, 45, 60);font-family: Manrope !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 8px; } }

 @media (max-width: 639px) { [data-gp-text] .gp-component-id-GhDXIA9qnL { font-size: 28px !important;font-weight: 600 !important;color: rgb(32, 45, 60);font-family: Manrope !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 8px; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-GhDXIA9qnL { font-size: 28px !important;font-weight: 600 !important;color: rgb(32, 45, 60);font-family: Manrope !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 8px; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-GhDXIA9qnL { font-size: 18px !important;font-weight: 600 !important;color: rgb(32, 45, 60);font-family: Manrope !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 8px; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-GhDXIA9qnL { font-size: 28px !important;font-weight: 600 !important;color: rgb(32, 45, 60);font-family: Manrope !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 8px; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-GhDXIA9qnL { font-size: 28px !important;font-weight: 600 !important;color: rgb(32, 45, 60);font-family: Manrope !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 8px; } }

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

 @media (max-width: 639px) { [data-gp-text] .gp-component-id-H90AoVCjB1 { font-size: 28px !important;font-weight: 700;color: rgb(32, 45, 60);font-family: Manrope;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 8px; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-H90AoVCjB1 { font-size: 28px !important;font-weight: 700;color: rgb(32, 45, 60);font-family: Manrope;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 8px; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-H90AoVCjB1 { font-size: 18px !important;font-weight: 700;color: rgb(32, 45, 60);font-family: Manrope;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 8px; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-H90AoVCjB1 { font-size: 28px !important;font-weight: 700;color: rgb(32, 45, 60);font-family: Manrope;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 8px; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-H90AoVCjB1 { font-size: 28px !important;font-weight: 700;color: rgb(32, 45, 60);font-family: Manrope;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 8px; } }

 @media (max-width: 639px) { [data-gp-text] .gp-component-id-ZXHCTxiguw { font-size: 28px !important;font-weight: 700;color: rgb(32, 45, 60);font-family: Manrope;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 8px; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-ZXHCTxiguw { font-size: 28px !important;font-weight: 700;color: rgb(32, 45, 60);font-family: Manrope;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 8px; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-ZXHCTxiguw { font-size: 18px !important;font-weight: 700;color: rgb(32, 45, 60);font-family: Manrope;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 8px; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-ZXHCTxiguw { font-size: 28px !important;font-weight: 700;color: rgb(32, 45, 60);font-family: Manrope;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 8px; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-ZXHCTxiguw { font-size: 28px !important;font-weight: 700;color: rgb(32, 45, 60);font-family: Manrope;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 8px; } }

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

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

 @media (max-width: 639px) { [data-gp-text] .gp-component-id-FeTNobiXNL { font-family: Inter; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-FeTNobiXNL { font-family: Inter; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-FeTNobiXNL { font-family: Inter; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-FeTNobiXNL { font-family: Inter; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-FeTNobiXNL { font-family: Inter; } }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

 .gp-component-id-OTbIazL0iCG { 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-OTbIazL0iCG { 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-OTbIazL0iCG { 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-OTbIazL0iCG { 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-OTbIazL0iCG { 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-OTbIazL0iCG { 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-4c6RyG7y1sK { 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-4c6RyG7y1sK { 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-4c6RyG7y1sK { 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-4c6RyG7y1sK { 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-4c6RyG7y1sK { 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-4c6RyG7y1sK { 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-3Q_DwbUyujR { 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-3Q_DwbUyujR { 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-3Q_DwbUyujR { 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-3Q_DwbUyujR { 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-3Q_DwbUyujR { 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-3Q_DwbUyujR { 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-WImF_LwNQ2_ { 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-WImF_LwNQ2_ { display: flex;align-items: center;justify-content: center;flex-direction: row;width: auto; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-WImF_LwNQ2_ { display: flex;align-items: center;justify-content: center;flex-direction: row;width: auto; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-WImF_LwNQ2_ { display: flex;align-items: center;justify-content: center;flex-direction: row;width: auto; } } @media (min-width: 1200px) { .gp-component-id-WImF_LwNQ2_ { display: flex;align-items: center;justify-content: center;flex-direction: row;width: auto; } }

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

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

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

 @media (max-width: 639px) { .gp-component-id-MMI7s7H9T0C { 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-MMI7s7H9T0C { 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-MMI7s7H9T0C { 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-MMI7s7H9T0C { 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-MMI7s7H9T0C { 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-LKacT1rCFGR { 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-LKacT1rCFGR { 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-LKacT1rCFGR { 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-LKacT1rCFGR { 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-LKacT1rCFGR { 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-LKacT1rCFGR { 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-tb09v8eBAQU { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word; } @media (max-width: 639px) { .gp-component-id-tb09v8eBAQU { 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-tb09v8eBAQU { 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-tb09v8eBAQU { 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-tb09v8eBAQU { 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-tb09v8eBAQU { 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-72XQmCf4W7v { flex-direction: column;display: flex; } @media (max-width: 639px) { .gp-component-id-72XQmCf4W7v { flex-direction: column;display: flex; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-72XQmCf4W7v { flex-direction: column;display: flex; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-72XQmCf4W7v { flex-direction: column;display: flex; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-72XQmCf4W7v { flex-direction: column;display: flex; } } @media (min-width: 1200px) { .gp-component-id-72XQmCf4W7v { flex-direction: column;display: flex; } }

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

 @media (max-width: 639px) { .gp-component-id-IargtsibfVq { height: 100%;width: 100%; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-IargtsibfVq { height: 100%;width: 100%; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-IargtsibfVq { height: 100%;width: 100%; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-IargtsibfVq { height: 100%;width: 100%; } } @media (min-width: 1200px) { .gp-component-id-IargtsibfVq { 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-Xw1hFxzdtFe { 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-Xw1hFxzdtFe { 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-Xw1hFxzdtFe { 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-Xw1hFxzdtFe { 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-Xw1hFxzdtFe { 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-Xw1hFxzdtFe { 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-O7h5I_OdG2i { 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-O7h5I_OdG2i { 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-O7h5I_OdG2i { 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-O7h5I_OdG2i { 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-O7h5I_OdG2i { 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-O7h5I_OdG2i { 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-8xWY1pZtUCS { 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-8xWY1pZtUCS { 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-8xWY1pZtUCS { 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-8xWY1pZtUCS { 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-8xWY1pZtUCS { 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-8xWY1pZtUCS { 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-3XVEa7hGhih { 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-3XVEa7hGhih { 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-3XVEa7hGhih { 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-3XVEa7hGhih { 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-3XVEa7hGhih { 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-3XVEa7hGhih { 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-lBy6aUsnNRb { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word; } @media (max-width: 639px) { .gp-component-id-lBy6aUsnNRb { 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-lBy6aUsnNRb { 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-lBy6aUsnNRb { 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-lBy6aUsnNRb { 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-lBy6aUsnNRb { 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-_WOUmwkwnzY { flex-direction: column;display: flex; } @media (max-width: 639px) { .gp-component-id-_WOUmwkwnzY { flex-direction: column;display: flex; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-_WOUmwkwnzY { flex-direction: column;display: flex; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-_WOUmwkwnzY { flex-direction: column;display: flex; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-_WOUmwkwnzY { flex-direction: column;display: flex; } } @media (min-width: 1200px) { .gp-component-id-_WOUmwkwnzY { flex-direction: column;display: flex; } }

 @media (max-width: 639px) { .gp-component-id-9o7360Xn08P { height: 100%;width: 75%; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-9o7360Xn08P { height: 100%;width: 75%; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-9o7360Xn08P { height: 100%;width: 75%; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-9o7360Xn08P { height: 100%;width: 75%; } } @media (min-width: 1200px) { .gp-component-id-9o7360Xn08P { 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-xwWZbmvine { 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-xwWZbmvine { 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-xwWZbmvine { 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-xwWZbmvine { 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-xwWZbmvine { 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-xwWZbmvine { 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-p3xkUFtPoyl { 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-p3xkUFtPoyl { 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-p3xkUFtPoyl { 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-p3xkUFtPoyl { 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-p3xkUFtPoyl { 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-p3xkUFtPoyl { 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-uo9uG0CMDwe { 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-uo9uG0CMDwe { 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-uo9uG0CMDwe { 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-uo9uG0CMDwe { 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-uo9uG0CMDwe { 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-uo9uG0CMDwe { 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-0HGCnsDbpk { 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-0HGCnsDbpk { 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-0HGCnsDbpk { 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-0HGCnsDbpk { 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-0HGCnsDbpk { 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-0HGCnsDbpk { 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-nAvqzZXqmU { flex-direction: column;display: flex; } @media (max-width: 639px) { .gp-component-id-nAvqzZXqmU { flex-direction: column;display: flex; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-nAvqzZXqmU { flex-direction: column;display: flex; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-nAvqzZXqmU { flex-direction: column;display: flex; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-nAvqzZXqmU { flex-direction: column;display: flex; } } @media (min-width: 1200px) { .gp-component-id-nAvqzZXqmU { flex-direction: column;display: flex; } }

 @media (max-width: 639px) { .gp-component-id-vQ1tvA7wVe { height: 100%;width: 75%;padding-left: 80px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-vQ1tvA7wVe { height: 100%;width: 75%;padding-left: 80px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-vQ1tvA7wVe { height: 100%;width: 75%;padding-left: 80px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-vQ1tvA7wVe { height: 100%;width: 75%;padding-left: 80px; } } @media (min-width: 1200px) { .gp-component-id-vQ1tvA7wVe { 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-JC3DgZZkA6 { 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-JC3DgZZkA6 { 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-JC3DgZZkA6 { 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-JC3DgZZkA6 { 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-JC3DgZZkA6 { 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-JC3DgZZkA6 { 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-ToaSP00VWY { 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-ToaSP00VWY { 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-ToaSP00VWY { 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-ToaSP00VWY { 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-ToaSP00VWY { 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-ToaSP00VWY { 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-mXvlWFPY33 { 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-mXvlWFPY33 { 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-mXvlWFPY33 { 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-mXvlWFPY33 { 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-mXvlWFPY33 { 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-mXvlWFPY33 { 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; } }

 .gp-component-id-Bc0Pje4iUg { animation-duration: 1s;animation-fill-mode: both;display: flex;flex-direction: column; } @media (max-width: 639px) { .gp-component-id-Bc0Pje4iUg { animation-duration: 1s;animation-fill-mode: both;display: flex;flex-direction: column; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-Bc0Pje4iUg { animation-duration: 1s;animation-fill-mode: both;display: flex;flex-direction: column; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-Bc0Pje4iUg { animation-duration: 1s;animation-fill-mode: both;display: flex;flex-direction: column; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-Bc0Pje4iUg { animation-duration: 1s;animation-fill-mode: both;display: flex;flex-direction: column; } } @media (min-width: 1200px) { .gp-component-id-Bc0Pje4iUg { 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-k3Rbm8Cnc7 { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word; } @media (max-width: 639px) { .gp-component-id-k3Rbm8Cnc7 { 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-k3Rbm8Cnc7 { 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-k3Rbm8Cnc7 { 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-k3Rbm8Cnc7 { 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-k3Rbm8Cnc7 { 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-zoeaOfj0Hk { flex-direction: column;display: flex; } @media (max-width: 639px) { .gp-component-id-zoeaOfj0Hk { flex-direction: column;display: flex; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-zoeaOfj0Hk { flex-direction: column;display: flex; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-zoeaOfj0Hk { flex-direction: column;display: flex; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-zoeaOfj0Hk { flex-direction: column;display: flex; } } @media (min-width: 1200px) { .gp-component-id-zoeaOfj0Hk { flex-direction: column;display: flex; } }

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

 @media (max-width: 639px) { .gp-component-id-Cf0DVKgQmP { max-width: 1054px;height: 293px;width: 328px;padding-left: 20px;margin-right: 0px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-Cf0DVKgQmP { max-width: 1054px;height: 293px;width: 328px;padding-left: 20px;margin-right: 0px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-Cf0DVKgQmP { max-width: 1054px;height: 293px;width: 328px;padding-left: 20px;margin-right: 0px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-Cf0DVKgQmP { max-width: 1054px;height: 293px;width: 328px;padding-left: 20px;margin-right: 0px; } } @media (min-width: 1200px) { .gp-component-id-Cf0DVKgQmP { 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-xqIAzzET6e { width: 100%;padding-right: 0px;padding-left: 0px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-xqIAzzET6e { width: 100%;padding-right: 0px;padding-left: 0px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-xqIAzzET6e { width: 100%;padding-right: 0px;padding-left: 0px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-xqIAzzET6e { width: 100%;padding-right: 0px;padding-left: 0px; } } @media (min-width: 1200px) { .gp-component-id-xqIAzzET6e { width: 100%;padding-right: 0px;padding-left: 0px; } }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

 .gp-component-id-sowVa3M_eg { 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;justify-content: flex-start;align-items: flex-start;display: inline-flex; } @media (max-width: 639px) { .gp-component-id-sowVa3M_eg { 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;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 40%;border-bottom-color: rgb(255, 255, 255);border-top-color: rgb(255, 255, 255);border-right-color: rgb(255, 255, 255);border-left-color: rgb(255, 255, 255);border-bottom-width: 3px;border-top-width: 3px;border-right-width: 3px;border-left-width: 3px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-sowVa3M_eg { 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;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 30%;border-bottom-color: rgb(255, 255, 255);border-top-color: rgb(255, 255, 255);border-right-color: rgb(255, 255, 255);border-left-color: rgb(255, 255, 255);border-bottom-width: 3px;border-top-width: 3px;border-right-width: 3px;border-left-width: 3px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-sowVa3M_eg { 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;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 100%;border-bottom-color: rgb(255, 255, 255);border-top-color: rgb(255, 255, 255);border-right-color: rgb(255, 255, 255);border-left-color: rgb(255, 255, 255);border-bottom-width: 3px;border-top-width: 3px;border-right-width: 3px;border-left-width: 3px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-sowVa3M_eg { 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;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 100%;border-bottom-color: rgb(255, 255, 255);border-top-color: rgb(255, 255, 255);border-right-color: rgb(255, 255, 255);border-left-color: rgb(255, 255, 255);border-bottom-width: 3px;border-top-width: 3px;border-right-width: 3px;border-left-width: 3px; } } @media (min-width: 1200px) { .gp-component-id-sowVa3M_eg { 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;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 80%;border-bottom-color: rgb(255, 255, 255);border-top-color: rgb(255, 255, 255);border-right-color: rgb(255, 255, 255);border-left-color: rgb(255, 255, 255);border-bottom-width: 3px;border-top-width: 3px;border-right-width: 3px;border-left-width: 3px; } }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

 @media (max-width: 639px) { .gp-component-id-nFwtZsSFiQ[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-nFwtZsSFiQ[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-nFwtZsSFiQ[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-nFwtZsSFiQ[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-nFwtZsSFiQ[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-tw_gwMXsXY[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-tw_gwMXsXY[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-tw_gwMXsXY[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-tw_gwMXsXY[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-tw_gwMXsXY[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-TkUUvp9G5z { 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-TkUUvp9G5z { 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-TkUUvp9G5z { 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-TkUUvp9G5z { 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-TkUUvp9G5z { 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-TkUUvp9G5z { 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-U00uZmfWPG { 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-U00uZmfWPG { 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-U00uZmfWPG { 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-U00uZmfWPG { 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-U00uZmfWPG { 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-U00uZmfWPG { 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-qwlA6WEPX4[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-qwlA6WEPX4[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-qwlA6WEPX4[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-qwlA6WEPX4[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-qwlA6WEPX4[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-xE5XzNFp04 { 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-xE5XzNFp04 { 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-xE5XzNFp04 { 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-xE5XzNFp04 { 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-xE5XzNFp04 { 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-xE5XzNFp04 { 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-5glPwFfJci { 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-5glPwFfJci { 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-5glPwFfJci { 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-5glPwFfJci { 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-5glPwFfJci { 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-5glPwFfJci { 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-Z__lRJe5ZM { 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-Z__lRJe5ZM { 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-Z__lRJe5ZM { 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-Z__lRJe5ZM { 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-Z__lRJe5ZM { 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-Z__lRJe5ZM { display: flex; margin-left: auto; margin-right: auto; justify-content: space-between; align-items: center; width: 100%; max-width: 1200px; } }

 .gp-component-id-3P9JTtfsjF { 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-3P9JTtfsjF { 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-3P9JTtfsjF { 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-3P9JTtfsjF { 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-3P9JTtfsjF { 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-3P9JTtfsjF { 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-rQezJCOxnL[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-rQezJCOxnL[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-rQezJCOxnL[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-rQezJCOxnL[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-rQezJCOxnL[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; } }

