
      
    


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


      #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;
      }
        }

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

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

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

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

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

 .gp-component-id-XJozEH070M { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word; } @media (max-width: 639px) { .gp-component-id-XJozEH070M { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;font-style: normal;font-family: "Crimson Pro", serif;color: rgb(32, 45, 60);font-weight: 700;font-size: 20px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-XJozEH070M { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;font-style: normal;font-family: "Crimson Pro", serif;color: rgb(32, 45, 60);font-weight: 700;font-size: 20px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-XJozEH070M { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;font-style: normal;font-family: "Crimson Pro", serif;color: rgb(32, 45, 60);font-weight: 700;font-size: 20px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-XJozEH070M { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;font-style: normal;font-family: "Crimson Pro", serif;color: rgb(32, 45, 60);font-weight: 700;font-size: 20px; } } @media (min-width: 1200px) { .gp-component-id-XJozEH070M { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;font-style: normal;font-family: "Crimson Pro", serif;color: rgb(32, 45, 60);font-weight: 700;font-size: 20px; } }

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

 .gp-component-id-bBmiiK0dCV { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word; } @media (max-width: 639px) { .gp-component-id-bBmiiK0dCV { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-style: italic;font-family: Lato, sans-serif;line-height: 1.5;color: rgb(8, 43, 21);font-size: 18px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-bBmiiK0dCV { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-style: italic;font-family: Lato, sans-serif;line-height: 1.5;color: rgb(8, 43, 21);font-size: 18px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-bBmiiK0dCV { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-style: italic;font-family: Lato, sans-serif;line-height: 1.5;color: rgb(8, 43, 21);font-size: 18px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-bBmiiK0dCV { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-style: italic;font-family: Lato, sans-serif;line-height: 1.5;color: rgb(8, 43, 21);font-size: 18px; } } @media (min-width: 1200px) { .gp-component-id-bBmiiK0dCV { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-style: italic;font-family: Lato, sans-serif;line-height: 1.5;color: rgb(8, 43, 21);font-size: 18px; } }

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

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

 .gp-component-id-NLmLjJAoe0 { line-height: 1;display: inline-block; } @media (max-width: 639px) { .gp-component-id-NLmLjJAoe0 { line-height: 1;display: inline-block;margin-right: 16px;color: rgb(101, 47, 45);font-size: 14px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-NLmLjJAoe0 { line-height: 1;display: inline-block;margin-right: 16px;color: rgb(101, 47, 45);font-size: 14px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-NLmLjJAoe0 { line-height: 1;display: inline-block;margin-right: 16px;color: rgb(101, 47, 45);font-size: 14px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-NLmLjJAoe0 { line-height: 1;display: inline-block;margin-right: 16px;color: rgb(101, 47, 45);font-size: 14px; } } @media (min-width: 1200px) { .gp-component-id-NLmLjJAoe0 { line-height: 1;display: inline-block;margin-right: 16px;color: rgb(101, 47, 45);font-size: 14px; } }

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

 @media (max-width: 639px) { .gp-component-id-Kf12b9kHc7 { display: none;height: 100%;width: 100%;padding-bottom: 36px;padding-top: 36px;padding-right: 36px;padding-left: 36px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-Kf12b9kHc7 { display: none;height: 100%;width: 100%;padding-bottom: 36px;padding-top: 36px;padding-right: 36px;padding-left: 36px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-Kf12b9kHc7 { display: none;height: 100%;width: 100%;padding-bottom: 36px;padding-top: 36px;padding-right: 36px;padding-left: 36px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-Kf12b9kHc7 { display: none;height: 100%;width: 100%;padding-bottom: 36px;padding-top: 36px;padding-right: 36px;padding-left: 36px; } } @media (min-width: 1200px) { .gp-component-id-Kf12b9kHc7 { display: none;height: 100%;width: 100%;padding-bottom: 36px;padding-top: 36px;padding-right: 36px;padding-left: 36px; } }

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

 .gp-component-id-twMO6pcnGu { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word; } @media (max-width: 639px) { .gp-component-id-twMO6pcnGu { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;font-style: normal;font-family: "Crimson Pro", serif;color: rgb(32, 45, 60);font-weight: 700;font-size: 20px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-twMO6pcnGu { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;font-style: normal;font-family: "Crimson Pro", serif;color: rgb(32, 45, 60);font-weight: 700;font-size: 20px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-twMO6pcnGu { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;font-style: normal;font-family: "Crimson Pro", serif;color: rgb(32, 45, 60);font-weight: 700;font-size: 20px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-twMO6pcnGu { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;font-style: normal;font-family: "Crimson Pro", serif;color: rgb(32, 45, 60);font-weight: 700;font-size: 20px; } } @media (min-width: 1200px) { .gp-component-id-twMO6pcnGu { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;font-style: normal;font-family: "Crimson Pro", serif;color: rgb(32, 45, 60);font-weight: 700;font-size: 20px; } }

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

 .gp-component-id-btrNS8djv6 { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word; } @media (max-width: 639px) { .gp-component-id-btrNS8djv6 { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-style: italic;font-family: Lato, sans-serif;line-height: 1.5;color: rgb(8, 43, 21);font-size: 18px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-btrNS8djv6 { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-style: italic;font-family: Lato, sans-serif;line-height: 1.5;color: rgb(8, 43, 21);font-size: 18px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-btrNS8djv6 { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-style: italic;font-family: Lato, sans-serif;line-height: 1.5;color: rgb(8, 43, 21);font-size: 18px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-btrNS8djv6 { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-style: italic;font-family: Lato, sans-serif;line-height: 1.5;color: rgb(8, 43, 21);font-size: 18px; } } @media (min-width: 1200px) { .gp-component-id-btrNS8djv6 { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-style: italic;font-family: Lato, sans-serif;line-height: 1.5;color: rgb(8, 43, 21);font-size: 18px; } }

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

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

 .gp-component-id-CcivOLjaUa { line-height: 1;display: inline-block; } @media (max-width: 639px) { .gp-component-id-CcivOLjaUa { line-height: 1;display: inline-block;margin-right: 16px;color: rgb(101, 47, 45);font-size: 14px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-CcivOLjaUa { line-height: 1;display: inline-block;margin-right: 16px;color: rgb(101, 47, 45);font-size: 14px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-CcivOLjaUa { line-height: 1;display: inline-block;margin-right: 16px;color: rgb(101, 47, 45);font-size: 14px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-CcivOLjaUa { line-height: 1;display: inline-block;margin-right: 16px;color: rgb(101, 47, 45);font-size: 14px; } } @media (min-width: 1200px) { .gp-component-id-CcivOLjaUa { line-height: 1;display: inline-block;margin-right: 16px;color: rgb(101, 47, 45);font-size: 14px; } }

 @media (max-width: 639px) { .gp-component-id-4uv7fnPQjf { display: flex;margin-bottom: 8px;margin-top: 8px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-4uv7fnPQjf { display: flex;margin-bottom: 8px;margin-top: 8px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-4uv7fnPQjf { display: flex;margin-bottom: 8px;margin-top: 8px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-4uv7fnPQjf { display: flex;margin-bottom: 8px;margin-top: 8px; } } @media (min-width: 1200px) { .gp-component-id-4uv7fnPQjf { display: flex;margin-bottom: 8px;margin-top: 8px; } }

 @media (max-width: 639px) { .gp-component-id-2Aq3qSsorI { height: 100%;width: 100%;padding-bottom: 36px;padding-top: 36px;padding-right: 36px;padding-left: 36px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-2Aq3qSsorI { height: 100%;width: 100%;padding-bottom: 36px;padding-top: 36px;padding-right: 36px;padding-left: 36px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-2Aq3qSsorI { height: 100%;width: 100%;padding-bottom: 36px;padding-top: 36px;padding-right: 36px;padding-left: 36px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-2Aq3qSsorI { height: 100%;width: 100%;padding-bottom: 36px;padding-top: 36px;padding-right: 36px;padding-left: 36px; } } @media (min-width: 1200px) { .gp-component-id-2Aq3qSsorI { height: 100%;width: 100%;padding-bottom: 36px;padding-top: 36px;padding-right: 36px;padding-left: 36px; } }

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

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

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

 .gp-component-id-lT0aWiURvpT { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word; } @media (max-width: 639px) { .gp-component-id-lT0aWiURvpT { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;font-style: normal;font-family: "Crimson Pro", serif;color: rgb(32, 45, 60);font-weight: 700;font-size: 20px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-lT0aWiURvpT { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;font-style: normal;font-family: "Crimson Pro", serif;color: rgb(32, 45, 60);font-weight: 700;font-size: 20px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-lT0aWiURvpT { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;font-style: normal;font-family: "Crimson Pro", serif;color: rgb(32, 45, 60);font-weight: 700;font-size: 20px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-lT0aWiURvpT { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;font-style: normal;font-family: "Crimson Pro", serif;color: rgb(32, 45, 60);font-weight: 700;font-size: 20px; } } @media (min-width: 1200px) { .gp-component-id-lT0aWiURvpT { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;font-style: normal;font-family: "Crimson Pro", serif;color: rgb(32, 45, 60);font-weight: 700;font-size: 20px; } }

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

 .gp-component-id-H1KQuoWDRls { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word; } @media (max-width: 639px) { .gp-component-id-H1KQuoWDRls { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-style: italic;font-family: Lato, sans-serif;line-height: 1.5;color: rgb(8, 43, 21);font-size: 18px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-H1KQuoWDRls { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-style: italic;font-family: Lato, sans-serif;line-height: 1.5;color: rgb(8, 43, 21);font-size: 18px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-H1KQuoWDRls { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-style: italic;font-family: Lato, sans-serif;line-height: 1.5;color: rgb(8, 43, 21);font-size: 18px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-H1KQuoWDRls { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-style: italic;font-family: Lato, sans-serif;line-height: 1.5;color: rgb(8, 43, 21);font-size: 18px; } } @media (min-width: 1200px) { .gp-component-id-H1KQuoWDRls { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-style: italic;font-family: Lato, sans-serif;line-height: 1.5;color: rgb(8, 43, 21);font-size: 18px; } }

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

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

 .gp-component-id-KZaS0SplNJV { line-height: 1;display: inline-block;margin-right: 16px;color: rgb(101, 47, 45);font-size: 14px; } @media (max-width: 639px) { .gp-component-id-KZaS0SplNJV { line-height: 1;display: inline-block;margin-right: 16px;color: rgb(101, 47, 45);font-size: 14px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-KZaS0SplNJV { line-height: 1;display: inline-block;margin-right: 16px;color: rgb(101, 47, 45);font-size: 14px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-KZaS0SplNJV { line-height: 1;display: inline-block;margin-right: 16px;color: rgb(101, 47, 45);font-size: 14px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-KZaS0SplNJV { line-height: 1;display: inline-block;margin-right: 16px;color: rgb(101, 47, 45);font-size: 14px; } } @media (min-width: 1200px) { .gp-component-id-KZaS0SplNJV { line-height: 1;display: inline-block;margin-right: 16px;color: rgb(101, 47, 45);font-size: 14px; } }

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

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

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

 .gp-component-id-cW4Zi7xxC7 { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word; } @media (max-width: 639px) { .gp-component-id-cW4Zi7xxC7 { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;font-style: normal;font-family: "Crimson Pro", serif;color: rgb(32, 45, 60);font-weight: 700;font-size: 20px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-cW4Zi7xxC7 { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;font-style: normal;font-family: "Crimson Pro", serif;color: rgb(32, 45, 60);font-weight: 700;font-size: 20px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-cW4Zi7xxC7 { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;font-style: normal;font-family: "Crimson Pro", serif;color: rgb(32, 45, 60);font-weight: 700;font-size: 20px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-cW4Zi7xxC7 { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;font-style: normal;font-family: "Crimson Pro", serif;color: rgb(32, 45, 60);font-weight: 700;font-size: 20px; } } @media (min-width: 1200px) { .gp-component-id-cW4Zi7xxC7 { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;font-style: normal;font-family: "Crimson Pro", serif;color: rgb(32, 45, 60);font-weight: 700;font-size: 20px; } }

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

 .gp-component-id-oYPnJT0rvi { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word; } @media (max-width: 639px) { .gp-component-id-oYPnJT0rvi { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-style: italic;font-family: Lato, sans-serif;line-height: 1.5;color: rgb(8, 43, 21);font-size: 18px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-oYPnJT0rvi { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-style: italic;font-family: Lato, sans-serif;line-height: 1.5;color: rgb(8, 43, 21);font-size: 18px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-oYPnJT0rvi { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-style: italic;font-family: Lato, sans-serif;line-height: 1.5;color: rgb(8, 43, 21);font-size: 18px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-oYPnJT0rvi { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-style: italic;font-family: Lato, sans-serif;line-height: 1.5;color: rgb(8, 43, 21);font-size: 18px; } } @media (min-width: 1200px) { .gp-component-id-oYPnJT0rvi { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-style: italic;font-family: Lato, sans-serif;line-height: 1.5;color: rgb(8, 43, 21);font-size: 18px; } }

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

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

 .gp-component-id-n9BJjs86xL { line-height: 1;display: inline-block;margin-right: 16px;color: rgb(101, 47, 45);font-size: 14px; } @media (max-width: 639px) { .gp-component-id-n9BJjs86xL { line-height: 1;display: inline-block;margin-right: 16px;color: rgb(101, 47, 45);font-size: 14px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-n9BJjs86xL { line-height: 1;display: inline-block;margin-right: 16px;color: rgb(101, 47, 45);font-size: 14px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-n9BJjs86xL { line-height: 1;display: inline-block;margin-right: 16px;color: rgb(101, 47, 45);font-size: 14px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-n9BJjs86xL { line-height: 1;display: inline-block;margin-right: 16px;color: rgb(101, 47, 45);font-size: 14px; } } @media (min-width: 1200px) { .gp-component-id-n9BJjs86xL { line-height: 1;display: inline-block;margin-right: 16px;color: rgb(101, 47, 45);font-size: 14px; } }

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

 .gp-component-id-2k7NaESRRL { height: 100%;width: 100%;padding-bottom: 36px;padding-top: 36px;padding-right: 36px;padding-left: 36px; } @media (max-width: 639px) { .gp-component-id-2k7NaESRRL { height: 100%;width: 100%;padding-bottom: 36px;padding-top: 36px;padding-right: 36px;padding-left: 36px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-2k7NaESRRL { height: 100%;width: 100%;padding-bottom: 36px;padding-top: 36px;padding-right: 36px;padding-left: 36px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-2k7NaESRRL { height: 100%;width: 100%;padding-bottom: 36px;padding-top: 36px;padding-right: 36px;padding-left: 36px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-2k7NaESRRL { height: 100%;width: 100%;padding-bottom: 36px;padding-top: 36px;padding-right: 36px;padding-left: 36px; } } @media (min-width: 1200px) { .gp-component-id-2k7NaESRRL { height: 100%;width: 100%;padding-bottom: 36px;padding-top: 36px;padding-right: 36px;padding-left: 36px; } }

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

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

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

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

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

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

 .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: 20px;font-family: Poppins, sans-serif;overflow-y: visible;overflow-x: visible;text-transform: none;appearance: button;padding-left: 16px;padding-bottom: 24px;padding-right: 16px;padding-top: 24px;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;display: inline-block;min-width: 100%;border-bottom-right-radius: 10px;border-bottom-left-radius: 10px;border-top-right-radius: 10px;border-top-left-radius: 10px;color: rgb(0, 0, 0);font-weight: 700; } .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: 20px;font-family: Poppins, sans-serif;overflow-y: visible;overflow-x: visible;text-transform: none;appearance: button;padding-left: 16px;padding-bottom: 24px;padding-right: 16px;padding-top: 24px;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;display: inline-block;min-width: 100%;border-bottom-right-radius: 10px;border-bottom-left-radius: 10px;border-top-right-radius: 10px;border-top-left-radius: 10px;color: rgb(0, 0, 0);font-weight: 700; } .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: 20px;font-family: Poppins, sans-serif;overflow-y: visible;overflow-x: visible;text-transform: none;appearance: button;padding-left: 16px;padding-bottom: 24px;padding-right: 16px;padding-top: 24px;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;display: inline-block;min-width: 100%;border-bottom-right-radius: 10px;border-bottom-left-radius: 10px;border-top-right-radius: 10px;border-top-left-radius: 10px;color: rgb(0, 0, 0);font-weight: 700; } .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: 20px;font-family: Poppins, sans-serif;overflow-y: visible;overflow-x: visible;text-transform: none;appearance: button;padding-left: 16px;padding-bottom: 24px;padding-right: 16px;padding-top: 24px;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;display: inline-block;min-width: 100%;border-bottom-right-radius: 10px;border-bottom-left-radius: 10px;border-top-right-radius: 10px;border-top-left-radius: 10px;color: rgb(0, 0, 0);font-weight: 700; } .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: 20px;font-family: Poppins, sans-serif;overflow-y: visible;overflow-x: visible;text-transform: none;appearance: button;padding-left: 16px;padding-bottom: 24px;padding-right: 16px;padding-top: 24px;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;display: inline-block;min-width: 100%;border-bottom-right-radius: 10px;border-bottom-left-radius: 10px;border-top-right-radius: 10px;border-top-left-radius: 10px;color: rgb(0, 0, 0);font-weight: 700; } .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-x5KbeIs1bDx { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: inherit;font-family: inherit;overflow-y: visible;overflow-x: visible;border-left-style: none;border-bottom-style: none;border-right-style: none;border-top-style: none;width: 100%;display: block;font-style: inherit;text-align: inherit;color: inherit;font-weight: inherit;background-color: inherit;background-clip: inherit;background-origin: inherit;background-attachment: inherit;background-repeat: inherit;background-size: inherit;background-position-y: inherit;background-position-x: inherit;background-image: inherit; } @media (max-width: 639px) { .gp-component-id-x5KbeIs1bDx { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: inherit;font-family: inherit;overflow-y: visible;overflow-x: visible;border-left-style: none;border-bottom-style: none;border-right-style: none;border-top-style: none;width: 100%;display: block;font-style: inherit;text-align: inherit;color: inherit;font-weight: inherit;background-color: inherit;background-clip: inherit;background-origin: inherit;background-attachment: inherit;background-repeat: inherit;background-size: inherit;background-position-y: inherit;background-position-x: inherit;background-image: inherit; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-x5KbeIs1bDx { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: inherit;font-family: inherit;overflow-y: visible;overflow-x: visible;border-left-style: none;border-bottom-style: none;border-right-style: none;border-top-style: none;width: 100%;display: block;font-style: inherit;text-align: inherit;color: inherit;font-weight: inherit;background-color: inherit;background-clip: inherit;background-origin: inherit;background-attachment: inherit;background-repeat: inherit;background-size: inherit;background-position-y: inherit;background-position-x: inherit;background-image: inherit; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-x5KbeIs1bDx { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: inherit;font-family: inherit;overflow-y: visible;overflow-x: visible;border-left-style: none;border-bottom-style: none;border-right-style: none;border-top-style: none;width: 100%;display: block;font-style: inherit;text-align: inherit;color: inherit;font-weight: inherit;background-color: inherit;background-clip: inherit;background-origin: inherit;background-attachment: inherit;background-repeat: inherit;background-size: inherit;background-position-y: inherit;background-position-x: inherit;background-image: inherit; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-x5KbeIs1bDx { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: inherit;font-family: inherit;overflow-y: visible;overflow-x: visible;border-left-style: none;border-bottom-style: none;border-right-style: none;border-top-style: none;width: 100%;display: block;font-style: inherit;text-align: inherit;color: inherit;font-weight: inherit;background-color: inherit;background-clip: inherit;background-origin: inherit;background-attachment: inherit;background-repeat: inherit;background-size: inherit;background-position-y: inherit;background-position-x: inherit;background-image: inherit; } } @media (min-width: 1200px) { .gp-component-id-x5KbeIs1bDx { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: inherit;font-family: inherit;overflow-y: visible;overflow-x: visible;border-left-style: none;border-bottom-style: none;border-right-style: none;border-top-style: none;width: 100%;display: block;font-style: inherit;text-align: inherit;color: inherit;font-weight: inherit;background-color: inherit;background-clip: inherit;background-origin: inherit;background-attachment: inherit;background-repeat: inherit;background-size: inherit;background-position-y: inherit;background-position-x: inherit;background-image: inherit; } }

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

 @media (max-width: 639px) { .gp-component-id-kTgFFQyfR { 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-color: rgb(32, 45, 60);border-top-color: rgb(32, 45, 60);border-right-color: rgb(32, 45, 60);border-left-color: rgb(32, 45, 60);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-kTgFFQyfR { 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-color: rgb(32, 45, 60);border-top-color: rgb(32, 45, 60);border-right-color: rgb(32, 45, 60);border-left-color: rgb(32, 45, 60);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-kTgFFQyfR { 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-color: rgb(32, 45, 60);border-top-color: rgb(32, 45, 60);border-right-color: rgb(32, 45, 60);border-left-color: rgb(32, 45, 60);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-kTgFFQyfR { 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-color: rgb(32, 45, 60);border-top-color: rgb(32, 45, 60);border-right-color: rgb(32, 45, 60);border-left-color: rgb(32, 45, 60);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-kTgFFQyfR { 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-color: rgb(32, 45, 60);border-top-color: rgb(32, 45, 60);border-right-color: rgb(32, 45, 60);border-left-color: rgb(32, 45, 60);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-4sI7xH3hzf { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: inherit;font-family: inherit;overflow-y: visible;overflow-x: visible;border-left-style: none;border-bottom-style: none;border-right-style: none;border-top-style: none;width: 100%;display: block;font-style: inherit;text-align: inherit;color: inherit;font-weight: inherit;background-color: inherit;background-clip: inherit;background-origin: inherit;background-attachment: inherit;background-repeat: inherit;background-size: inherit;background-position-y: inherit;background-position-x: inherit;background-image: inherit; } @media (max-width: 639px) { .gp-component-id-4sI7xH3hzf { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: inherit;font-family: inherit;overflow-y: visible;overflow-x: visible;border-left-style: none;border-bottom-style: none;border-right-style: none;border-top-style: none;width: 100%;display: block;font-style: inherit;text-align: inherit;color: inherit;font-weight: inherit;background-color: inherit;background-clip: inherit;background-origin: inherit;background-attachment: inherit;background-repeat: inherit;background-size: inherit;background-position-y: inherit;background-position-x: inherit;background-image: inherit; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-4sI7xH3hzf { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: inherit;font-family: inherit;overflow-y: visible;overflow-x: visible;border-left-style: none;border-bottom-style: none;border-right-style: none;border-top-style: none;width: 100%;display: block;font-style: inherit;text-align: inherit;color: inherit;font-weight: inherit;background-color: inherit;background-clip: inherit;background-origin: inherit;background-attachment: inherit;background-repeat: inherit;background-size: inherit;background-position-y: inherit;background-position-x: inherit;background-image: inherit; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-4sI7xH3hzf { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: inherit;font-family: inherit;overflow-y: visible;overflow-x: visible;border-left-style: none;border-bottom-style: none;border-right-style: none;border-top-style: none;width: 100%;display: block;font-style: inherit;text-align: inherit;color: inherit;font-weight: inherit;background-color: inherit;background-clip: inherit;background-origin: inherit;background-attachment: inherit;background-repeat: inherit;background-size: inherit;background-position-y: inherit;background-position-x: inherit;background-image: inherit; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-4sI7xH3hzf { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: inherit;font-family: inherit;overflow-y: visible;overflow-x: visible;border-left-style: none;border-bottom-style: none;border-right-style: none;border-top-style: none;width: 100%;display: block;font-style: inherit;text-align: inherit;color: inherit;font-weight: inherit;background-color: inherit;background-clip: inherit;background-origin: inherit;background-attachment: inherit;background-repeat: inherit;background-size: inherit;background-position-y: inherit;background-position-x: inherit;background-image: inherit; } } @media (min-width: 1200px) { .gp-component-id-4sI7xH3hzf { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: inherit;font-family: inherit;overflow-y: visible;overflow-x: visible;border-left-style: none;border-bottom-style: none;border-right-style: none;border-top-style: none;width: 100%;display: block;font-style: inherit;text-align: inherit;color: inherit;font-weight: inherit;background-color: inherit;background-clip: inherit;background-origin: inherit;background-attachment: inherit;background-repeat: inherit;background-size: inherit;background-position-y: inherit;background-position-x: inherit;background-image: inherit; } }

 @media (max-width: 639px) { .gp-component-id-c7bfipi2Z { 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-color: rgb(32, 45, 60);border-top-color: rgb(32, 45, 60);border-right-color: rgb(32, 45, 60);border-left-color: rgb(32, 45, 60);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-c7bfipi2Z { 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-color: rgb(32, 45, 60);border-top-color: rgb(32, 45, 60);border-right-color: rgb(32, 45, 60);border-left-color: rgb(32, 45, 60);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-c7bfipi2Z { 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-color: rgb(32, 45, 60);border-top-color: rgb(32, 45, 60);border-right-color: rgb(32, 45, 60);border-left-color: rgb(32, 45, 60);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-c7bfipi2Z { 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-color: rgb(32, 45, 60);border-top-color: rgb(32, 45, 60);border-right-color: rgb(32, 45, 60);border-left-color: rgb(32, 45, 60);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-c7bfipi2Z { 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-color: rgb(32, 45, 60);border-top-color: rgb(32, 45, 60);border-right-color: rgb(32, 45, 60);border-left-color: rgb(32, 45, 60);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-5916B9aEPf { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: inherit;font-family: inherit;overflow-y: visible;overflow-x: visible;border-left-style: none;border-bottom-style: none;border-right-style: none;border-top-style: none;width: 100%;display: block;font-style: inherit;text-align: inherit;color: inherit;font-weight: inherit;background-color: inherit;background-clip: inherit;background-origin: inherit;background-attachment: inherit;background-repeat: inherit;background-size: inherit;background-position-y: inherit;background-position-x: inherit;background-image: inherit; } @media (max-width: 639px) { .gp-component-id-5916B9aEPf { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: inherit;font-family: inherit;overflow-y: visible;overflow-x: visible;border-left-style: none;border-bottom-style: none;border-right-style: none;border-top-style: none;width: 100%;display: block;font-style: inherit;text-align: inherit;color: inherit;font-weight: inherit;background-color: inherit;background-clip: inherit;background-origin: inherit;background-attachment: inherit;background-repeat: inherit;background-size: inherit;background-position-y: inherit;background-position-x: inherit;background-image: inherit; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-5916B9aEPf { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: inherit;font-family: inherit;overflow-y: visible;overflow-x: visible;border-left-style: none;border-bottom-style: none;border-right-style: none;border-top-style: none;width: 100%;display: block;font-style: inherit;text-align: inherit;color: inherit;font-weight: inherit;background-color: inherit;background-clip: inherit;background-origin: inherit;background-attachment: inherit;background-repeat: inherit;background-size: inherit;background-position-y: inherit;background-position-x: inherit;background-image: inherit; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-5916B9aEPf { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: inherit;font-family: inherit;overflow-y: visible;overflow-x: visible;border-left-style: none;border-bottom-style: none;border-right-style: none;border-top-style: none;width: 100%;display: block;font-style: inherit;text-align: inherit;color: inherit;font-weight: inherit;background-color: inherit;background-clip: inherit;background-origin: inherit;background-attachment: inherit;background-repeat: inherit;background-size: inherit;background-position-y: inherit;background-position-x: inherit;background-image: inherit; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-5916B9aEPf { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: inherit;font-family: inherit;overflow-y: visible;overflow-x: visible;border-left-style: none;border-bottom-style: none;border-right-style: none;border-top-style: none;width: 100%;display: block;font-style: inherit;text-align: inherit;color: inherit;font-weight: inherit;background-color: inherit;background-clip: inherit;background-origin: inherit;background-attachment: inherit;background-repeat: inherit;background-size: inherit;background-position-y: inherit;background-position-x: inherit;background-image: inherit; } } @media (min-width: 1200px) { .gp-component-id-5916B9aEPf { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: inherit;font-family: inherit;overflow-y: visible;overflow-x: visible;border-left-style: none;border-bottom-style: none;border-right-style: none;border-top-style: none;width: 100%;display: block;font-style: inherit;text-align: inherit;color: inherit;font-weight: inherit;background-color: inherit;background-clip: inherit;background-origin: inherit;background-attachment: inherit;background-repeat: inherit;background-size: inherit;background-position-y: inherit;background-position-x: inherit;background-image: inherit; } }

 @media (max-width: 639px) { .gp-component-id-zmeFL4WPv { 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-color: rgb(32, 45, 60);border-top-color: rgb(32, 45, 60);border-right-color: rgb(32, 45, 60);border-left-color: rgb(32, 45, 60);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-zmeFL4WPv { 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-color: rgb(32, 45, 60);border-top-color: rgb(32, 45, 60);border-right-color: rgb(32, 45, 60);border-left-color: rgb(32, 45, 60);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-zmeFL4WPv { 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-color: rgb(32, 45, 60);border-top-color: rgb(32, 45, 60);border-right-color: rgb(32, 45, 60);border-left-color: rgb(32, 45, 60);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-zmeFL4WPv { 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-color: rgb(32, 45, 60);border-top-color: rgb(32, 45, 60);border-right-color: rgb(32, 45, 60);border-left-color: rgb(32, 45, 60);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-zmeFL4WPv { 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-color: rgb(32, 45, 60);border-top-color: rgb(32, 45, 60);border-right-color: rgb(32, 45, 60);border-left-color: rgb(32, 45, 60);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-Qr0kPAwNM { padding-right: 134px;padding-left: 134px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-Qr0kPAwNM { padding-right: 250px;padding-left: 250px; } } @media (min-width: 1200px) { .gp-component-id-Qr0kPAwNM { padding-right: 250px;padding-left: 250px; } }

 .gp-component-id-0qgXeH7_NO { display: flex;flex-direction: column;width: 100%;padding-bottom: 16px;padding-top: 16px;padding-right: 0px;padding-left: 0px; } @media (max-width: 639px) { .gp-component-id-0qgXeH7_NO { display: flex;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 { display: flex;flex-direction: column;width: 100%;padding-bottom: 16px;padding-top: 16px;padding-right: 0px;padding-left: 0px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-0qgXeH7_NO { display: flex;flex-direction: column;width: 100%;padding-bottom: 16px;padding-top: 16px;padding-right: 0px;padding-left: 0px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-0qgXeH7_NO { display: flex;flex-direction: column;width: 100%;padding-bottom: 16px;padding-top: 16px;padding-right: 0px;padding-left: 0px; } } @media (min-width: 1200px) { .gp-component-id-0qgXeH7_NO { display: flex;flex-direction: column;width: 100%;padding-bottom: 16px;padding-top: 16px;padding-right: 0px;padding-left: 0px; } }

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

 .gp-component-id-8pPQ0WAKS { 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-8pPQ0WAKS { font-size: 21px !important;font-weight: inherit;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;overflow-wrap: break-word;padding-bottom: 30px;text-align: center; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-8pPQ0WAKS { font-size: 21px !important;font-weight: inherit;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;overflow-wrap: break-word;padding-bottom: 30px;text-align: center; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-8pPQ0WAKS { font-size: 21px !important;font-weight: inherit;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;overflow-wrap: break-word;padding-bottom: 30px;text-align: center; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-8pPQ0WAKS { font-size: 21px !important;font-weight: inherit;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;overflow-wrap: break-word;padding-bottom: 30px;text-align: center; } } @media (min-width: 1200px) { .gp-component-id-8pPQ0WAKS { font-size: 21px !important;font-weight: inherit;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;overflow-wrap: break-word;padding-bottom: 30px;text-align: center; } }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

 .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 { 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: 0px;padding-top: 48px;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: 0px;padding-top: 64px;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: 0px;padding-top: 64px;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: 0px;padding-top: 128px;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: 0px;padding-top: 128px;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"); } }

 .gp-component-id-vslOPYpIs { 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-vslOPYpIs { 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: 25%; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-vslOPYpIs { 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: 25%; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-vslOPYpIs { 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: 9%; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-vslOPYpIs { 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: 9%; } } @media (min-width: 1200px) { .gp-component-id-vslOPYpIs { 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: 9%; } }

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

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

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

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

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

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

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

