
      
    


      body { font-family: Poppins }
     


      /* Summit Badge Neon Effect */
.summit-badge {
  display: inline-block;
  padding: 8px 18px;
  font-size: 14px;
  font-weight: 600;
  color: #00ffcc; /* Neon text */
  border: 1px solid transparent;
  border-radius: 9999px; /* pill shape */
  background: linear-gradient(#0a0a1f, #0a0a1f) padding-box,
              linear-gradient(90deg, #39c5f3, #9b59ff) border-box;
  box-shadow: 0 0 10px rgba(57,197,243,0.6),
              0 0 20px rgba(155,89,255,0.6);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

/* Hover Glow */
.summit-badge:hover {
  color: #ffffff;
  box-shadow: 0 0 15px rgba(57,197,243,0.9),
              0 0 25px rgba(155,89,255,0.9),
              0 0 35px rgba(57,197,243,0.7);
}

/* Summit CTA Button */
.summit-btn {
  background: linear-gradient(90deg, #39c5f3 0%, #9b59ff 100%);
  color: #fff !important;
  font-weight: 600;
  border: none;
  border-radius: 10px;
  padding: 14px 28px;
  font-size: 16px;
  cursor: pointer;
  box-shadow: 0 0 15px rgba(155, 89, 255, 0.6),
              0 0 25px rgba(57, 197, 243, 0.6);
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}



/* Hover effect */
.summit-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(155, 89, 255, 0.9),
              0 0 35px rgba(57, 197, 243, 0.9);
  background: linear-gradient(90deg, #47e4ff 0%, #b07bff 100%);
}

/* Summit Location Tag */
.summit-tag {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 20px;
  background: rgba(20, 25, 40, 0.85); /* semi-transparent dark */
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  border: 1px solid rgba(57, 197, 243, 0.5); /* glowing border */
  box-shadow: 0 0 10px rgba(57, 197, 243, 0.6);
  backdrop-filter: blur(6px); /* frosted glass effect */
  text-align: center;
  cursor: default;
  transition: all 0.3s ease;
}

/* Hover effect */
.summit-tag:hover {
  transform: scale(1.05);
  box-shadow: 0 0 18px rgba(57, 197, 243, 0.9);
  border-color: rgba(155, 89, 255, 0.7);
}

/* Gradient Text for FUTURE OF AI */
.gradient-title {
  font-weight: 800;
  font-size: 48px; /* adjust size */
  background: linear-gradient(90deg, #39c5f3 0%, #9b59ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Deep navy base   prevents washout */
.ai-grid-section{
  position:relative;
  background-color:#070F1F;              /* base */
  background-image:none !important;      /* ignore GP background UI */
  padding:80px 20px;
  overflow:hidden;
  isolation:isolate;                     /* blends only inside this section */
  color:#fff;
}

/* Subtle grid (cool-blue, darker than before) */
.ai-grid-section::before{
  content:"";
  position:absolute; inset:0;
  background-image:
    linear-gradient(rgba(100,160,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(100,160,255,.05) 1px, transparent 1px);
  background-size:48px 48px;             /* change to 40/60 to taste */
  pointer-events:none;
  z-index:0;
  opacity:.9;
}

/* Controlled color glows + vignette */
.ai-grid-section::after{
  content:"";
  position:absolute; inset:-20% -10% -30% -10%;
  background:
    radial-gradient(60% 55% at 50% -10%, rgba(123,53,255,.28) 0%, rgba(123,53,255,0) 60%), /* top purple */
    radial-gradient(50% 45% at 85% 100%, rgba(255,33,169,.16) 0%, rgba(255,33,169,0) 55%),  /* bottom-right magenta */
    radial-gradient(50% 45% at 10% 95%,  rgba(0,195,255,.14) 0%, rgba(0,195,255,0) 55%),    /* bottom-left cyan */
    linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,.35) 70%, rgba(0,0,0,.55) 100%);   /* vignette */
  pointer-events:none;
  z-index:0;
}

/* Keep your content above the effects */
.ai-grid-section > *{ position:relative; z-index:1; }

/* Bottom purple aura glow */
.aura-box {
  position: relative;
  z-index: 1; /* keep above section background */
}

.aura-box::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -40px; /* distance below box */
  transform: translateX(-50%);
  width: 80%;
  height: 120px;
  background: radial-gradient(ellipse at center, rgba(180, 50, 255, 0.35) 0%, rgba(180, 50, 255, 0) 70%);
  filter: blur(50px);
  pointer-events: none;
  z-index: -1;
}

/* Gradient outlined feature card */
.feature-outline {
  position: relative;
  border-radius: 16px;
  padding: 28px 22px;
  background: 
    radial-gradient(90% 120% at 10% 10%, rgba(0, 212, 255, .08) 0%, rgba(0,0,0,0) 40%),
    radial-gradient(90% 120% at 90% 0%, rgba(255, 120, 220, .08) 0%, rgba(0,0,0,0) 45%),
    radial-gradient(90% 120% at 50% 100%, rgba(110, 255, 190, .08) 0%, rgba(0,0,0,0) 45%),
    #fff;  /* base background */
  box-shadow: 0 4px 18px rgba(0,0,0,.06);
  color: #0b1b2b;
}

/* Gradient border effect */
.feature-outline::before {
  content: "";
  position: absolute; inset: 0;
  border-radius: inherit;
  padding: 1px; /* thickness of outline */
  background: linear-gradient(135deg, #39c5f3, #35e6bd 35%, #9b59ff 100%);
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
  opacity: 0.9;
}

/* Headings inside */
.feature-outline h4 {
  font-size: 20px;
  font-weight: 800;
  margin: 0 0 10px;
}

/* Paragraphs inside */
.feature-outline p {
  color: #324b63;
  line-height: 1.55;
  margin: 0 0 14px;
}

/* Optional tag style (bottom) */
.feature-outline .tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: #39c489;
  text-transform: uppercase;
}
.feature-outline .tag::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #39c489;
  box-shadow: 0 0 6px rgba(57,196,137,.6);
}

/* ===== Shared Agenda Card Style ===== */
.agenda-card {
  position: relative;
  border-radius: 16px;
  padding: 28px;
  background: #fff;
  box-shadow: 0 6px 18px rgba(0,0,0,.06);
  overflow: hidden;
}

/* Soft gradient wash */
.agenda-card::before {
  content:"";
  position:absolute; inset:0;
  border-radius: inherit;
  background: radial-gradient(90% 120% at 10% 10%, rgba(0, 212, 255, 0.06) 0%, rgba(0,0,0,0) 50%),
              radial-gradient(90% 120% at 90% 10%, rgba(255, 120, 220, 0.06) 0%, rgba(0,0,0,0) 50%);
  z-index: 0;
}

/* Gradient outline */
.agenda-card::after {
  content:"";
  position:absolute; inset:0;
  border-radius:inherit;
  padding:1px;
  background: linear-gradient(135deg, #39c5f3, #9b59ff);
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events:none;
  opacity:.7;
}

/* Keep text above backgrounds */
.agenda-card * { position: relative; z-index: 1; }

/* ===== Variants ===== */

/* Morning (green theme) */
.agenda-am::before {
  background: radial-gradient(90% 120% at 15% 15%, rgba(57,196,137,.08) 0%, rgba(0,0,0,0) 50%),
              radial-gradient(90% 120% at 85% 0%, rgba(47,216,255,.08) 0%, rgba(0,0,0,0) 50%);
}
.agenda-am::after {
  background: linear-gradient(135deg, #39c489, #2fd8ff);
}

/* Afternoon (orange theme) */
.agenda-pm::before {
  background: radial-gradient(90% 120% at 15% 15%, rgba(255,158,61,.08) 0%, rgba(0,0,0,0) 50%),
              radial-gradient(90% 120% at 85% 0%, rgba(255,33,169,.06) 0%, rgba(0,0,0,0) 50%);
}
.agenda-pm::after {
  background: linear-gradient(135deg, #ff9e3d, #ff6a3d);
}

/* === Brand Gradient Highlight (Orange-Yellow) === */
.gradient-highlight {
  background: linear-gradient(90deg, #F6AE2D 0%, #F26419 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  font-weight: 700;
}

.day-one-circle {
  background: linear-gradient(135deg, #0EA765, #A5E39F);
  box-shadow: 0 5px 15px rgba(14, 167, 101, 0.2);
}

.day-two-circle {
  background: linear-gradient(135deg, #FF7A18, #FFA94D);
  box-shadow: 0 5px 15px rgba(255, 122, 24, 0.25);
}

.day-three-circle {
  background: linear-gradient(135deg, #00C8A1, #7BE0C1);
  box-shadow: 0 5px 15px rgba(0, 200, 161, 0.25);
}

.day-one-circle, .day-two-circle, .day-three-circle {
  color: #fff;
  text-align: center;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
} *{} {}
     


      #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-8vNV0FiUk {
          font-size: 26px !important;font-weight: 700;color: rgb(220, 24, 24);text-align: center;font-family: Oswald !important;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 20px;overflow-wrap: break-word;
      }
        }
        @media (max-width: 767px) and (min-width: 640px) {
          
        .global-style-8vNV0FiUk {
          font-size: 32px !important;font-weight: 700;color: rgb(220, 24, 24);text-align: center;font-family: Oswald !important;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 20px;overflow-wrap: break-word;
      }
        }
        @media (max-width: 991px) and (min-width: 768px) {
          
        .global-style-8vNV0FiUk {
          font-size: 32px !important;font-weight: 700;color: rgb(220, 24, 24);text-align: center;font-family: Oswald !important;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 20px;overflow-wrap: break-word;
      }
        }
        @media (max-width: 1199px) and (min-width: 992px) {
          
        .global-style-8vNV0FiUk {
          font-size: 32px !important;font-weight: 700;color: rgb(220, 24, 24);text-align: center;font-family: Oswald !important;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 20px;overflow-wrap: break-word;
      }
        }
        @media (min-width: 1200px) {
          
        .global-style-8vNV0FiUk {
          font-size: 32px !important;font-weight: 700;color: rgb(220, 24, 24);text-align: center;font-family: Oswald !important;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 20px;overflow-wrap: break-word;
      }
        }
        @media (max-width: 639px) {
          
        .global-style-BN9t060Jf {
          font-size: 26px !important;font-weight: 700 !important;color: rgba(220, 24, 24, 1);margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 20px;overflow-wrap: break-word;
      }
        }
        @media (max-width: 767px) and (min-width: 640px) {
          
        .global-style-BN9t060Jf {
          font-size: inherit;font-weight: 700;color: rgba(220, 24, 24, 1);margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 20px;overflow-wrap: break-word;
      }
        }
        @media (max-width: 991px) and (min-width: 768px) {
          
        .global-style-BN9t060Jf {
          font-size: inherit;font-weight: 700;color: rgba(220, 24, 24, 1);margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 20px;overflow-wrap: break-word;
      }
        }
        @media (max-width: 1199px) and (min-width: 992px) {
          
        .global-style-BN9t060Jf {
          font-size: inherit;font-weight: 700;color: rgba(220, 24, 24, 1);margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 20px;overflow-wrap: break-word;
      }
        }
        @media (min-width: 1200px) {
          
        .global-style-BN9t060Jf {
          font-size: inherit;font-weight: 700;color: rgba(220, 24, 24, 1);margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 20px;overflow-wrap: break-word;
      }
        }
        @media (max-width: 639px) {
          
        .global-style-xJPBWpN9_ {
          font-size: 35px !important;color: rgb(57, 196, 137);text-align: center;
      }
        }
        @media (max-width: 767px) and (min-width: 640px) {
          
        .global-style-xJPBWpN9_ {
          font-size: 35px !important;color: rgb(57, 196, 137);text-align: center;
      }
        }
        @media (max-width: 991px) and (min-width: 768px) {
          
        .global-style-xJPBWpN9_ {
          font-size: 35px !important;color: rgb(57, 196, 137);text-align: center;
      }
        }
        @media (max-width: 1199px) and (min-width: 992px) {
          
        .global-style-xJPBWpN9_ {
          font-size: 35px !important;color: rgb(57, 196, 137);text-align: center;
      }
        }
        @media (min-width: 1200px) {
          
        .global-style-xJPBWpN9_ {
          font-size: 35px !important;color: rgb(57, 196, 137);text-align: center;
      }
        }
        @media (max-width: 639px) {
          
        .global-style-oH8pJkpaF {
          font-size: 20px !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;
      }
        }
        @media (max-width: 767px) and (min-width: 640px) {
          
        .global-style-oH8pJkpaF {
          font-size: 20px !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;
      }
        }
        @media (max-width: 991px) and (min-width: 768px) {
          
        .global-style-oH8pJkpaF {
          font-size: 20px !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;
      }
        }
        @media (max-width: 1199px) and (min-width: 992px) {
          
        .global-style-oH8pJkpaF {
          font-size: 20px !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;
      }
        }
        @media (min-width: 1200px) {
          
        .global-style-oH8pJkpaF {
          font-size: 20px !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;
      }
        }
        @media (max-width: 639px) {
          
        .global-style-B2Ill1i_D {
          font-size: 18px;color: rgb(32, 45, 60);margin-bottom: 18px;align-items: flex-start;display: flex;
      }
        }
        @media (max-width: 767px) and (min-width: 640px) {
          
        .global-style-B2Ill1i_D {
          font-size: 18px;color: rgb(32, 45, 60);margin-bottom: 18px;align-items: flex-start;display: flex;
      }
        }
        @media (max-width: 991px) and (min-width: 768px) {
          
        .global-style-B2Ill1i_D {
          font-size: 18px;color: rgb(32, 45, 60);margin-bottom: 18px;align-items: flex-start;display: flex;
      }
        }
        @media (max-width: 1199px) and (min-width: 992px) {
          
        .global-style-B2Ill1i_D {
          font-size: 18px;color: rgb(32, 45, 60);margin-bottom: 18px;align-items: flex-start;display: flex;
      }
        }
        @media (min-width: 1200px) {
          
        .global-style-B2Ill1i_D {
          font-size: 18px;color: rgb(32, 45, 60);margin-bottom: 18px;align-items: flex-start;display: flex;
      }
        }

 .gp-component-id-0Q6m9Amjk { text-align: inherit; } @media (max-width: 639px) { .gp-component-id-0Q6m9Amjk { text-align: inherit; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-0Q6m9Amjk { text-align: inherit; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-0Q6m9Amjk { text-align: inherit; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-0Q6m9Amjk { text-align: inherit; } } @media (min-width: 1200px) { .gp-component-id-0Q6m9Amjk { text-align: inherit; } }

 .gp-component-id-eM8f8PwZhFX { 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-eM8f8PwZhFX { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;align-items: center;cursor: pointer;background-color: rgb(255, 204, 36);color: rgb(0, 0, 0);font-size: 24px !important;display: inline-flex;padding-bottom: 20px;padding-top: 20px;padding-right: 30px;padding-left: 30px;margin-top: 48px;font-weight: 700 !important; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-eM8f8PwZhFX { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;align-items: center;cursor: pointer;background-color: rgb(255, 204, 36);color: rgb(0, 0, 0);font-size: 24px !important;display: inline-flex;padding-bottom: 20px;padding-top: 20px;padding-right: 30px;padding-left: 30px;margin-top: 48px;font-weight: 700 !important; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-eM8f8PwZhFX { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;align-items: center;cursor: pointer;background-color: rgb(255, 204, 36);color: rgb(0, 0, 0);font-size: 24px !important;display: inline-flex;padding-bottom: 20px;padding-top: 20px;padding-right: 30px;padding-left: 30px;margin-top: 48px;font-weight: 700 !important; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-eM8f8PwZhFX { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;align-items: center;cursor: pointer;background-color: rgb(255, 204, 36);color: rgb(0, 0, 0);font-size: 24px !important;display: inline-flex;padding-bottom: 20px;padding-top: 20px;padding-right: 30px;padding-left: 30px;margin-top: 48px;font-weight: 700 !important; } } @media (min-width: 1200px) { .gp-component-id-eM8f8PwZhFX { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;align-items: center;cursor: pointer;background-color: rgb(255, 204, 36);color: rgb(0, 0, 0);font-size: 24px !important;display: inline-flex;padding-bottom: 20px;padding-top: 20px;padding-right: 30px;padding-left: 30px;margin-top: 48px;font-weight: 700 !important; } }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

 .gp-component-id-10rq4uieLs { 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-10rq4uieLs { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;line-height: 1;font-size: 24px !important;cursor: pointer;background-color: transparent;color: rgb(255, 204, 36);display: inline-block; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-10rq4uieLs { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;line-height: 1;font-size: 24px !important;cursor: pointer;background-color: transparent;color: rgb(255, 204, 36);display: inline-block; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-10rq4uieLs { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;line-height: 1;font-size: 24px !important;cursor: pointer;background-color: transparent;color: rgb(255, 204, 36);display: inline-block; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-10rq4uieLs { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;line-height: 1;font-size: 24px !important;cursor: pointer;background-color: transparent;color: rgb(255, 204, 36);display: inline-block; } } @media (min-width: 1200px) { .gp-component-id-10rq4uieLs { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;line-height: 1;font-size: 24px !important;cursor: pointer;background-color: transparent;color: rgb(255, 204, 36);display: inline-block; } }

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

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

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

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

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

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

 .gp-component-id-t2gdiCAGW5 { display: flex;align-items: center;justify-content: center;flex-direction: column;height: 100%;width: 100%;margin-bottom: 28px; } @media (max-width: 639px) { .gp-component-id-t2gdiCAGW5 { display: flex;align-items: center;justify-content: center;flex-direction: column;height: 100%;width: 100%;margin-bottom: 28px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-t2gdiCAGW5 { display: flex;align-items: center;justify-content: center;flex-direction: column;height: 100%;width: 100%;margin-bottom: 28px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-t2gdiCAGW5 { 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-t2gdiCAGW5 { display: flex;align-items: flex-start;justify-content: center;flex-direction: column;height: 100%;width: 100%;margin-bottom: 0px; } } @media (min-width: 1200px) { .gp-component-id-t2gdiCAGW5 { display: flex;align-items: flex-start;justify-content: center;flex-direction: column;height: 100%;width: 100%;margin-bottom: 0px; } }

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

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

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

 .gp-component-id-7Zti3hOlKo { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: inherit;overflow-wrap: break-word;font-weight: inherit; } @media (max-width: 639px) { .gp-component-id-7Zti3hOlKo { margin-left: 0px;margin-bottom: 30px;margin-right: 0px;margin-top: 0px;font-size: 32px !important;overflow-wrap: break-word;font-weight: 900 !important;text-align: center; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-7Zti3hOlKo { margin-left: 0px;margin-bottom: 30px;margin-right: 0px;margin-top: 0px;font-size: 32px !important;overflow-wrap: break-word;font-weight: 900 !important;text-align: center; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-7Zti3hOlKo { margin-left: 0px;margin-bottom: 30px;margin-right: 0px;margin-top: 0px;font-size: 32px !important;overflow-wrap: break-word;font-weight: 900 !important;text-align: center; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-7Zti3hOlKo { margin-left: 0px;margin-bottom: 30px;margin-right: 0px;margin-top: 0px;font-size: 32px !important;overflow-wrap: break-word;font-weight: 900 !important;text-align: center; } } @media (min-width: 1200px) { .gp-component-id-7Zti3hOlKo { margin-left: 0px;margin-bottom: 30px;margin-right: 0px;margin-top: 0px;font-size: 32px !important;overflow-wrap: break-word;font-weight: 900 !important;text-align: center; } }

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

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

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

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

 .gp-component-id-6U_TUBnB73 { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: 100%;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: initial;background-size: initial;background-position-y: initial;background-position-x: initial;background-image: initial;cursor: pointer; } .gp-component-id-6U_TUBnB73:focus,.gp-component-id-6U_TUBnB73.gp-focus { outline-width: 5px;outline-style: auto;outline-color: -webkit-focus-ring-color; } @media (max-width: 639px) { .gp-component-id-6U_TUBnB73 { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: 24px !important;font-family: inherit;overflow-y: visible;overflow-x: visible;text-transform: none;appearance: button;padding-left: 16px;padding-bottom: 16px;padding-right: 16px;padding-top: 16px;background-color: rgb(228, 173, 33);background-clip: initial;background-origin: initial;background-attachment: initial;background-repeat: initial;background-size: initial;background-position-y: initial;background-position-x: initial;background-image: initial;cursor: pointer;font-weight: 700 !important;display: inline-block;min-width: 100%;border-bottom-color: rgb(153, 76, 0);border-bottom-width: 5px;color: rgb(0, 0, 0); } .gp-component-id-6U_TUBnB73:focus,.gp-component-id-6U_TUBnB73.gp-focus { outline-width: 5px;outline-style: auto;outline-color: -webkit-focus-ring-color; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-6U_TUBnB73 { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: 24px !important;font-family: inherit;overflow-y: visible;overflow-x: visible;text-transform: none;appearance: button;padding-left: 16px;padding-bottom: 16px;padding-right: 16px;padding-top: 16px;background-color: rgb(228, 173, 33);background-clip: initial;background-origin: initial;background-attachment: initial;background-repeat: initial;background-size: initial;background-position-y: initial;background-position-x: initial;background-image: initial;cursor: pointer;font-weight: 700 !important;display: inline-block;min-width: 100%;border-bottom-color: rgb(153, 76, 0);border-bottom-width: 5px;color: rgb(0, 0, 0); } .gp-component-id-6U_TUBnB73:focus,.gp-component-id-6U_TUBnB73.gp-focus { outline-width: 5px;outline-style: auto;outline-color: -webkit-focus-ring-color; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-6U_TUBnB73 { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: 24px !important;font-family: inherit;overflow-y: visible;overflow-x: visible;text-transform: none;appearance: button;padding-left: 16px;padding-bottom: 16px;padding-right: 16px;padding-top: 16px;background-color: rgb(228, 173, 33);background-clip: initial;background-origin: initial;background-attachment: initial;background-repeat: initial;background-size: initial;background-position-y: initial;background-position-x: initial;background-image: initial;cursor: pointer;font-weight: 700 !important;display: inline-block;min-width: 100%;border-bottom-color: rgb(153, 76, 0);border-bottom-width: 5px;color: rgb(0, 0, 0); } .gp-component-id-6U_TUBnB73:focus,.gp-component-id-6U_TUBnB73.gp-focus { outline-width: 5px;outline-style: auto;outline-color: -webkit-focus-ring-color; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-6U_TUBnB73 { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: 24px !important;font-family: inherit;overflow-y: visible;overflow-x: visible;text-transform: none;appearance: button;padding-left: 16px;padding-bottom: 16px;padding-right: 16px;padding-top: 16px;background-color: rgb(228, 173, 33);background-clip: initial;background-origin: initial;background-attachment: initial;background-repeat: initial;background-size: initial;background-position-y: initial;background-position-x: initial;background-image: initial;cursor: pointer;font-weight: 700 !important;display: inline-block;min-width: 100%;border-bottom-color: rgb(153, 76, 0);border-bottom-width: 5px;color: rgb(0, 0, 0); } .gp-component-id-6U_TUBnB73:focus,.gp-component-id-6U_TUBnB73.gp-focus { outline-width: 5px;outline-style: auto;outline-color: -webkit-focus-ring-color; } } @media (min-width: 1200px) { .gp-component-id-6U_TUBnB73 { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: 24px !important;font-family: inherit;overflow-y: visible;overflow-x: visible;text-transform: none;appearance: button;padding-left: 16px;padding-bottom: 16px;padding-right: 16px;padding-top: 16px;background-color: rgb(228, 173, 33);background-clip: initial;background-origin: initial;background-attachment: initial;background-repeat: initial;background-size: initial;background-position-y: initial;background-position-x: initial;background-image: initial;cursor: pointer;font-weight: 700 !important;display: inline-block;min-width: 100%;border-bottom-color: rgb(153, 76, 0);border-bottom-width: 5px;color: rgb(0, 0, 0); } .gp-component-id-6U_TUBnB73:focus,.gp-component-id-6U_TUBnB73.gp-focus { outline-width: 5px;outline-style: auto;outline-color: -webkit-focus-ring-color; } }

 .gp-component-id-F77Y3wWpnI { background-image: inherit;background-position-x: inherit;background-position-y: inherit;background-size: inherit;background-repeat: inherit;background-attachment: inherit;background-origin: inherit;background-clip: inherit;background-color: inherit;font-weight: inherit;color: inherit;text-align: inherit;font-style: inherit;display: block;width: 100%;border-top-style: none;border-right-style: none;border-bottom-style: none;border-left-style: none;overflow-x: visible;overflow-y: visible;font-family: inherit;font-size: inherit;line-height: 1.15;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px; } @media (max-width: 639px) { .gp-component-id-F77Y3wWpnI { background-image: inherit;background-position-x: inherit;background-position-y: inherit;background-size: inherit;background-repeat: inherit;background-attachment: inherit;background-origin: inherit;background-clip: inherit;background-color: inherit;font-weight: inherit;color: inherit;text-align: inherit;font-style: inherit;display: block;width: 100%;border-top-style: none;border-right-style: none;border-bottom-style: none;border-left-style: none;overflow-x: visible;overflow-y: visible;font-family: inherit;font-size: inherit;line-height: 1.15;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-F77Y3wWpnI { background-image: inherit;background-position-x: inherit;background-position-y: inherit;background-size: inherit;background-repeat: inherit;background-attachment: inherit;background-origin: inherit;background-clip: inherit;background-color: inherit;font-weight: inherit;color: inherit;text-align: inherit;font-style: inherit;display: block;width: 100%;border-top-style: none;border-right-style: none;border-bottom-style: none;border-left-style: none;overflow-x: visible;overflow-y: visible;font-family: inherit;font-size: inherit;line-height: 1.15;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-F77Y3wWpnI { background-image: inherit;background-position-x: inherit;background-position-y: inherit;background-size: inherit;background-repeat: inherit;background-attachment: inherit;background-origin: inherit;background-clip: inherit;background-color: inherit;font-weight: inherit;color: inherit;text-align: inherit;font-style: inherit;display: block;width: 100%;border-top-style: none;border-right-style: none;border-bottom-style: none;border-left-style: none;overflow-x: visible;overflow-y: visible;font-family: inherit;font-size: inherit;line-height: 1.15;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-F77Y3wWpnI { background-image: inherit;background-position-x: inherit;background-position-y: inherit;background-size: inherit;background-repeat: inherit;background-attachment: inherit;background-origin: inherit;background-clip: inherit;background-color: inherit;font-weight: inherit;color: inherit;text-align: inherit;font-style: inherit;display: block;width: 100%;border-top-style: none;border-right-style: none;border-bottom-style: none;border-left-style: none;overflow-x: visible;overflow-y: visible;font-family: inherit;font-size: inherit;line-height: 1.15;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px; } } @media (min-width: 1200px) { .gp-component-id-F77Y3wWpnI { background-image: inherit;background-position-x: inherit;background-position-y: inherit;background-size: inherit;background-repeat: inherit;background-attachment: inherit;background-origin: inherit;background-clip: inherit;background-color: inherit;font-weight: inherit;color: inherit;text-align: inherit;font-style: inherit;display: block;width: 100%;border-top-style: none;border-right-style: none;border-bottom-style: none;border-left-style: none;overflow-x: visible;overflow-y: visible;font-family: inherit;font-size: inherit;line-height: 1.15;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px; } }

 @media (max-width: 639px) { .gp-component-id-vU7C1AcxKa { flex-wrap: wrap;display: flex;width: 100%;padding-bottom: 16px;padding-top: 16px;padding-right: 20px;padding-left: 20px;margin-bottom: 16px;background-color: rgb(255, 255, 255);border-bottom-width: 1px;border-top-width: 1px;border-right-width: 1px;border-left-width: 1px;color: rgb(120, 136, 155);font-size: 18px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-vU7C1AcxKa { flex-wrap: wrap;display: flex;width: 100%;padding-bottom: 16px;padding-top: 16px;padding-right: 20px;padding-left: 20px;margin-bottom: 32px;background-color: rgb(255, 255, 255);border-bottom-width: 1px;border-top-width: 1px;border-right-width: 1px;border-left-width: 1px;color: rgb(120, 136, 155);font-size: 18px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-vU7C1AcxKa { flex-wrap: wrap;display: flex;width: 100%;padding-bottom: 16px;padding-top: 16px;padding-right: 20px;padding-left: 20px;margin-bottom: 32px;background-color: rgb(255, 255, 255);border-bottom-width: 1px;border-top-width: 1px;border-right-width: 1px;border-left-width: 1px;color: rgb(120, 136, 155);font-size: 18px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-vU7C1AcxKa { flex-wrap: wrap;display: flex;width: 100%;padding-bottom: 16px;padding-top: 16px;padding-right: 20px;padding-left: 20px;margin-bottom: 32px;background-color: rgb(255, 255, 255);border-bottom-width: 1px;border-top-width: 1px;border-right-width: 1px;border-left-width: 1px;color: rgb(120, 136, 155);font-size: 18px; } } @media (min-width: 1200px) { .gp-component-id-vU7C1AcxKa { flex-wrap: wrap;display: flex;width: 100%;padding-bottom: 16px;padding-top: 16px;padding-right: 20px;padding-left: 20px;margin-bottom: 32px;background-color: rgb(255, 255, 255);border-bottom-width: 1px;border-top-width: 1px;border-right-width: 1px;border-left-width: 1px;color: rgb(120, 136, 155);font-size: 18px; } }

 .gp-component-id-laYrwK1sAi { background-image: inherit;background-position-x: inherit;background-position-y: inherit;background-size: inherit;background-repeat: inherit;background-attachment: inherit;background-origin: inherit;background-clip: inherit;background-color: inherit;font-weight: inherit;color: inherit;text-align: inherit;font-style: inherit;display: block;width: 100%;border-top-style: none;border-right-style: none;border-bottom-style: none;border-left-style: none;overflow-x: visible;overflow-y: visible;font-family: inherit;font-size: inherit;line-height: 1.15;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px; } @media (max-width: 639px) { .gp-component-id-laYrwK1sAi { background-image: inherit;background-position-x: inherit;background-position-y: inherit;background-size: inherit;background-repeat: inherit;background-attachment: inherit;background-origin: inherit;background-clip: inherit;background-color: inherit;font-weight: inherit;color: inherit;text-align: inherit;font-style: inherit;display: block;width: 100%;border-top-style: none;border-right-style: none;border-bottom-style: none;border-left-style: none;overflow-x: visible;overflow-y: visible;font-family: inherit;font-size: inherit;line-height: 1.15;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-laYrwK1sAi { background-image: inherit;background-position-x: inherit;background-position-y: inherit;background-size: inherit;background-repeat: inherit;background-attachment: inherit;background-origin: inherit;background-clip: inherit;background-color: inherit;font-weight: inherit;color: inherit;text-align: inherit;font-style: inherit;display: block;width: 100%;border-top-style: none;border-right-style: none;border-bottom-style: none;border-left-style: none;overflow-x: visible;overflow-y: visible;font-family: inherit;font-size: inherit;line-height: 1.15;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-laYrwK1sAi { background-image: inherit;background-position-x: inherit;background-position-y: inherit;background-size: inherit;background-repeat: inherit;background-attachment: inherit;background-origin: inherit;background-clip: inherit;background-color: inherit;font-weight: inherit;color: inherit;text-align: inherit;font-style: inherit;display: block;width: 100%;border-top-style: none;border-right-style: none;border-bottom-style: none;border-left-style: none;overflow-x: visible;overflow-y: visible;font-family: inherit;font-size: inherit;line-height: 1.15;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-laYrwK1sAi { background-image: inherit;background-position-x: inherit;background-position-y: inherit;background-size: inherit;background-repeat: inherit;background-attachment: inherit;background-origin: inherit;background-clip: inherit;background-color: inherit;font-weight: inherit;color: inherit;text-align: inherit;font-style: inherit;display: block;width: 100%;border-top-style: none;border-right-style: none;border-bottom-style: none;border-left-style: none;overflow-x: visible;overflow-y: visible;font-family: inherit;font-size: inherit;line-height: 1.15;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px; } } @media (min-width: 1200px) { .gp-component-id-laYrwK1sAi { background-image: inherit;background-position-x: inherit;background-position-y: inherit;background-size: inherit;background-repeat: inherit;background-attachment: inherit;background-origin: inherit;background-clip: inherit;background-color: inherit;font-weight: inherit;color: inherit;text-align: inherit;font-style: inherit;display: block;width: 100%;border-top-style: none;border-right-style: none;border-bottom-style: none;border-left-style: none;overflow-x: visible;overflow-y: visible;font-family: inherit;font-size: inherit;line-height: 1.15;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px; } }

 @media (max-width: 639px) { .gp-component-id-NV7vM5J4mt { flex-wrap: wrap;display: flex;width: 100%;padding-bottom: 16px;padding-top: 16px;padding-right: 20px;padding-left: 20px;margin-bottom: 16px;background-color: rgb(255, 255, 255);border-bottom-width: 1px;border-top-width: 1px;border-right-width: 1px;border-left-width: 1px;color: rgb(120, 136, 155);font-size: 18px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-NV7vM5J4mt { flex-wrap: wrap;display: flex;width: 100%;padding-bottom: 16px;padding-top: 16px;padding-right: 20px;padding-left: 20px;margin-bottom: 32px;background-color: rgb(255, 255, 255);border-bottom-width: 1px;border-top-width: 1px;border-right-width: 1px;border-left-width: 1px;color: rgb(120, 136, 155);font-size: 18px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-NV7vM5J4mt { flex-wrap: wrap;display: flex;width: 100%;padding-bottom: 16px;padding-top: 16px;padding-right: 20px;padding-left: 20px;margin-bottom: 32px;background-color: rgb(255, 255, 255);border-bottom-width: 1px;border-top-width: 1px;border-right-width: 1px;border-left-width: 1px;color: rgb(120, 136, 155);font-size: 18px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-NV7vM5J4mt { flex-wrap: wrap;display: flex;width: 100%;padding-bottom: 16px;padding-top: 16px;padding-right: 20px;padding-left: 20px;margin-bottom: 32px;background-color: rgb(255, 255, 255);border-bottom-width: 1px;border-top-width: 1px;border-right-width: 1px;border-left-width: 1px;color: rgb(120, 136, 155);font-size: 18px; } } @media (min-width: 1200px) { .gp-component-id-NV7vM5J4mt { flex-wrap: wrap;display: flex;width: 100%;padding-bottom: 16px;padding-top: 16px;padding-right: 20px;padding-left: 20px;margin-bottom: 32px;background-color: rgb(255, 255, 255);border-bottom-width: 1px;border-top-width: 1px;border-right-width: 1px;border-left-width: 1px;color: rgb(120, 136, 155);font-size: 18px; } }

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

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

 @media (max-width: 639px) { .gp-component-id-0qgXeH7_NO { flex-direction: column;width: 100%;padding-bottom: 16px;padding-top: 16px;padding-right: 0px;padding-left: 0px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-0qgXeH7_NO { flex-direction: column;width: 100%;padding-bottom: 16px;padding-top: 16px;padding-right: 30px;padding-left: 30px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-0qgXeH7_NO { flex-direction: column;width: 100%;padding-bottom: 16px;padding-top: 16px;padding-right: 30px;padding-left: 30px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-0qgXeH7_NO { flex-direction: column;width: 100%;padding-bottom: 16px;padding-top: 16px;padding-right: 30px;padding-left: 30px; } } @media (min-width: 1200px) { .gp-component-id-0qgXeH7_NO { flex-direction: column;width: 100%;padding-bottom: 16px;padding-top: 16px;padding-right: 200px;padding-left: 200px; } }

 .gp-component-id-PL4C1v2Og { border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center; } @media (max-width: 639px) { .gp-component-id-PL4C1v2Og { border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;padding-bottom: 0px;padding-top: 0px;margin-bottom: 30px;margin-top: 30px;border-bottom-color: rgb(53, 201, 139);border-top-color: rgb(53, 201, 139);border-right-color: rgb(53, 201, 139);border-left-color: rgb(53, 201, 139);border-bottom-width: 5px;border-top-width: 5px;border-right-width: 5px;border-left-width: 5px;border-bottom-right-radius: 14px;border-bottom-left-radius: 14px;border-top-right-radius: 14px;border-top-left-radius: 14px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-PL4C1v2Og { border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;padding-bottom: 0px;padding-top: 0px;margin-bottom: 30px;margin-top: 30px;border-bottom-color: rgb(53, 201, 139);border-top-color: rgb(53, 201, 139);border-right-color: rgb(53, 201, 139);border-left-color: rgb(53, 201, 139);border-bottom-width: 10px;border-top-width: 10px;border-right-width: 10px;border-left-width: 10px;border-bottom-right-radius: 14px;border-bottom-left-radius: 14px;border-top-right-radius: 14px;border-top-left-radius: 14px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-PL4C1v2Og { border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;width: 73%;padding-bottom: 0px;padding-top: 0px;margin-bottom: 30px;margin-top: 30px;border-bottom-color: rgb(53, 201, 139);border-top-color: rgb(53, 201, 139);border-right-color: rgb(53, 201, 139);border-left-color: rgb(53, 201, 139);border-bottom-width: 10px;border-top-width: 10px;border-right-width: 10px;border-left-width: 10px;border-bottom-right-radius: 14px;border-bottom-left-radius: 14px;border-top-right-radius: 14px;border-top-left-radius: 14px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-PL4C1v2Og { border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;width: 73%;padding-bottom: 0px;padding-top: 0px;margin-bottom: 30px;margin-top: 30px;border-bottom-color: rgb(53, 201, 139);border-top-color: rgb(53, 201, 139);border-right-color: rgb(53, 201, 139);border-left-color: rgb(53, 201, 139);border-bottom-width: 10px;border-top-width: 10px;border-right-width: 10px;border-left-width: 10px;border-bottom-right-radius: 14px;border-bottom-left-radius: 14px;border-top-right-radius: 14px;border-top-left-radius: 14px; } } @media (min-width: 1200px) { .gp-component-id-PL4C1v2Og { border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;width: 73%;padding-bottom: 0px;padding-top: 0px;margin-bottom: 30px;margin-top: 30px;border-bottom-color: rgb(53, 201, 139);border-top-color: rgb(53, 201, 139);border-right-color: rgb(53, 201, 139);border-left-color: rgb(53, 201, 139);border-bottom-width: 10px;border-top-width: 10px;border-right-width: 10px;border-left-width: 10px;border-bottom-right-radius: 14px;border-bottom-left-radius: 14px;border-top-right-radius: 14px;border-top-left-radius: 14px; } }

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

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

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

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

 .gp-component-id-J_01J7awpK { 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-J_01J7awpK { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-weight: inherit !important;font-size: 18px !important;border-bottom-color: rgb(255, 204, 36);border-bottom-width: 2px;text-align: center;color: rgb(0, 0, 0); } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-J_01J7awpK { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-weight: inherit !important;font-size: 18px !important;border-bottom-color: rgb(255, 204, 36);border-bottom-width: 2px;text-align: center;color: rgb(0, 0, 0); } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-J_01J7awpK { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-weight: inherit !important;font-size: 18px !important;border-bottom-color: rgb(255, 204, 36);border-bottom-width: 2px;text-align: center;color: rgb(0, 0, 0); } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-J_01J7awpK { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-weight: inherit !important;font-size: 18px !important;border-bottom-color: rgb(255, 204, 36);border-bottom-width: 2px;text-align: center;color: rgb(0, 0, 0); } } @media (min-width: 1200px) { .gp-component-id-J_01J7awpK { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-weight: inherit !important;font-size: 18px !important;border-bottom-color: rgb(255, 204, 36);border-bottom-width: 2px;text-align: center;color: rgb(0, 0, 0); } }

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

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

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

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

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

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

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

 .gp-component-id-O0ZbtlfKo { min-height: 50px;position: relative;z-index: auto; } @media (max-width: 639px) { .gp-component-id-O0ZbtlfKo { min-height: 50px;position: relative;z-index: auto;padding-bottom: 50px;padding-top: 50px;background-size: cover;background-image: url("https://assets.grooveapps.com/images/5df98d83cf362c0e9cf8723d/1597172611_pexels-scott-webb-28061.jpg?update=2"); } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-O0ZbtlfKo { min-height: 50px;position: relative;z-index: auto;padding-bottom: 50px;padding-top: 50px;padding-right: 16px;padding-left: 16px;background-size: cover;background-image: url("https://assets.grooveapps.com/images/5df98d83cf362c0e9cf8723d/1597172611_pexels-scott-webb-28061.jpg?update=2"); } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-O0ZbtlfKo { min-height: 50px;position: relative;z-index: auto;background-position-y: 50%;background-position-x: 50%;padding-bottom: 50px;padding-top: 50px;padding-right: 16px;padding-left: 16px;background-size: cover;background-image: url("https://assets.grooveapps.com/images/5df98d83cf362c0e9cf8723d/1597172611_pexels-scott-webb-28061.jpg?update=2"); } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-O0ZbtlfKo { min-height: 50px;position: relative;z-index: auto;background-position-y: 50%;background-position-x: 50%;padding-bottom: 50px;padding-top: 50px;padding-right: 16px;padding-left: 16px;background-size: cover;background-image: url("https://assets.grooveapps.com/images/5df98d83cf362c0e9cf8723d/1597172611_pexels-scott-webb-28061.jpg?update=2"); } } @media (min-width: 1200px) { .gp-component-id-O0ZbtlfKo { min-height: 50px;position: relative;z-index: auto;background-position-y: 50%;background-position-x: 50%;padding-bottom: 50px;padding-top: 50px;padding-right: 16px;padding-left: 16px;background-size: cover;background-image: url("https://assets.grooveapps.com/images/5df98d83cf362c0e9cf8723d/1597172611_pexels-scott-webb-28061.jpg?update=2"); } }

