
      
    


      
     


      /* Page Background Gradient with Font Stack */
body, .main-content {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji", sans-serif;
    background: linear-gradient(to bottom, #e0e7ff 0%, #c0d8ff 40%, #99ccff 100%);
    background-attachment: fixed; /* Ensures gradient stays fixed on scroll */
    margin: 0;
}

/* Ensure the full page takes up the gradient background */
.main-content {
    min-height: 100vh; /* Ensures the gradient spans the viewport height */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px; /* Optional: add padding for spacing */
}


  /* Container for the floating login link */
  .custom-login-link {
    position: fixed; /* Fixed position to keep it floating */
    top: 20px;
    right: 20px;
    font-size: 16px;
    font-weight: bold;
    z-index: 1000; /* Ensures it stays above other elements */
  }

  /* Styling for the login link */
  .custom-login-link a {
    color: #f2f2f2; /* Customize the color as desired */
    text-decoration: none;
    padding: 8px 12px;
    border: 1px solid #f2f2f2;
    border-radius: 4px;
  }

  /* Hover effect for the login link */
  .custom-login-link a:hover {
    background-color: #2e86de;
    color: #fff;
  }


/* Section Header Styling */
.section-header {
    font-size: 20px; /* Slightly larger for distinction */
    font-weight: bold;
    font-family: inherit; /* Use unified font stack */
    color: #4f4f4f; /* Deep silver color */
    margin-bottom: 15px;
    letter-spacing: 1px; /* Slightly spaced out letters for style */
    padding-bottom: 5px;
    border-bottom: 1px solid #c0c0c0; /* Silver border for distinction */
}

/* Short Description Styling */
.short-description {
    background-color: #f9f5e6; /* Light, warm yellow-tinted background */
    font-size: 16px;
    font-family: inherit; /* Use unified font stack */
    margin-bottom: 15px;
    color: #333333;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #eeeeee;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
    line-height: 1.6;
    position: relative;
    font-style: italic; /* Optional italic for emphasis */
}

/* Starting Point Title Styling */
.starting-point-title {
    font-size: 18px; /* Slightly larger than the main text */
    font-weight: bold;
    font-family: inherit; /* Use unified font stack */
    color: #a83232; /* Deep reddish color for contrast */
    text-align: center;
    margin-bottom: 10px; /* Space below the title */
}

/* Ending Point Title Styling */
.ending-point-title {
    font-size: 18px; /* Slightly larger than the main text */
    font-weight: bold;
    font-family: inherit; /* Use unified font stack */
    color: #a83232; /* Deep reddish color for contrast */
    text-align: center;
    margin-bottom: 10px; /* Space below the title */
}

/* Full Description Styling */
.full-description {
    font-size: 16px;
    font-family: inherit; /* Use unified font stack */
    margin-bottom: 15px;
    background-color: #fcfcfc; /* Very light gray for a subtle contrast */
    color: #2e2e2e; /* Dark gray text color */
    padding: 15px;
    border-radius: 8px; /* Soft rounded corners for visual appeal */
    border: 1px solid #eeeeee; /* Lighter border for a softer look */
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1); /* Light shadow for depth */
    line-height: 1.6; /* Increased line-height for readability */
}

/* Project Title Styling */
.project-title {
    font-size: 26px;
    font-weight: bold;
    font-family: inherit; /* Use unified font stack */
    text-align: center;
    margin: 20px 0;
    color: #2e2e2e;
    background: linear-gradient(to right, #2b6cb0, #1a3e59); /* Dark blue to navy gradient */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
    padding-bottom: 5px;
    border-bottom: 1px solid #cccccc;
}


/* Teaser and Fade Effect Styling */
.teaser {
    overflow: hidden;
    max-height: 10em; /* Controls height of teaser for truncation */
    position: relative;
    padding-bottom: 1.5em; /* Adds space for the fade overlay */
}

.fade-effect {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 6em; /* Increased height to make the fade more visible */
    width: 100%;
    z-index: 10;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.6) 60%, rgba(255, 255, 255, 1) 100%);
    pointer-events: none; /* Allows clicks through the fade effect */
}

/* Centering Button Container */
.button-container {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

/* Expand Button Styling */
.expand-btn {
    display: inline-block;
    width: 150px;
    height: 30px;
    font-size: 14px;
    color: #333333;
    background: linear-gradient(to bottom, #f0f0f0, #c0c0c0); /* Silver gradient background */
    border: 1px solid #999999;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600; /* Semi-bold */
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
    transition: background 0.3s ease, box-shadow 0.3s ease;
    line-height: 30px; /* Center text vertically */
}

/* Hover Effect For Expand */
.expand-btn:hover {
    background: linear-gradient(to bottom, #e0e0e0, #b0b0b0); /* Slightly darker silver on hover */
    box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.4);
}

/* Full Description Container */
.full-description-container {
    position: relative; /* Reference for sticky positioning */
    padding-bottom: 60px; /* Extra space for the close button at the bottom */
}

/* Close Button Styling */
.close-btn {
    width: 120px;
    height: 30px;
    font-size: 14px;
    color: #ffffff;
    background: linear-gradient(to bottom, #b33939, #8b1a1a);
    border: 1px solid #732020;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.3);
    transition: background 0.3s ease, box-shadow 0.3s ease;
    position: sticky;
    bottom: 10px;
    right: 10px;
    z-index: 1000;
}

/* Mobile Styles for Close Button */
@media (max-width: 768px) {
    .close-btn {
        position: fixed;
        bottom: 10px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 1000;
    }
}

.close-btn:hover {
    background: linear-gradient(to bottom, #a82b2b, #611313);
    box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.4);
}

/* Divider Styling for Mobile */
@media (max-width: 768px) {
    .divider {
        height: 3px;
        background: linear-gradient(to right, #4a90e2, #d9534f);
        border-radius: 2px;
        margin: 30px 0;
        box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
    }

    .teaser {
        max-height: 7em;
        padding-bottom: 2em;
    }

    .expand-btn, .close-btn {
        width: 100%;
        height: 40px;
    }

    .story-block {
        padding: 20px;
        margin-bottom: 20px;
        border: 2px solid #e0e0e0;
        border-radius: 12px;
        background-color: #ffffff;
        box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.15);
    }

  .custom-login-link {
    position: fixed; /* Keeps it fixed while scrolling */
    bottom: 20px; /* Moves to the bottom on mobile */
    right: 10px; /* Adjusts from right edge */
    font-size: 14px; /* Slightly smaller font size */
  }

  .custom-login-link a {
    background-color: rgba(26, 62, 92, 0.2); /* Dark blue with 80% opacity */
    color: #fff; /* White text */
    padding: 10px 14px; /* Adjusted padding for button look */
    border: none; /* Removes border */
    border-radius: 6px; /* Rounded corners */
  }


} *{} {}
     


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



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

 @media (max-width: 639px) { .gp-component-id-fPvvGAHm2[data-gp-component] { font-weight: 600;color: rgb(57, 75, 86); } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-fPvvGAHm2[data-gp-component] { color: rgb(57, 75, 86); } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-fPvvGAHm2[data-gp-component] { color: rgb(57, 75, 86); } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-fPvvGAHm2[data-gp-component] { color: rgb(57, 75, 86); } } @media (min-width: 1200px) { .gp-component-id-fPvvGAHm2[data-gp-component] { color: rgb(57, 75, 86); } }

 @media (max-width: 639px) { .gp-component-id-0OZk7Cl4tZ[data-gp-component] { font-weight: 600;color: rgb(57, 75, 86); } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-0OZk7Cl4tZ[data-gp-component] { color: rgb(57, 75, 86); } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-0OZk7Cl4tZ[data-gp-component] { color: rgb(57, 75, 86); } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-0OZk7Cl4tZ[data-gp-component] { color: rgb(57, 75, 86); } } @media (min-width: 1200px) { .gp-component-id-0OZk7Cl4tZ[data-gp-component] { color: rgb(57, 75, 86); } }

 @media (max-width: 639px) { .gp-component-id-w6sx7DPsS8[data-gp-component] { font-weight: 600;color: rgb(57, 75, 86); } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-w6sx7DPsS8[data-gp-component] { color: rgb(57, 75, 86); } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-w6sx7DPsS8[data-gp-component] { color: rgb(57, 75, 86); } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-w6sx7DPsS8[data-gp-component] { color: rgb(57, 75, 86); } } @media (min-width: 1200px) { .gp-component-id-w6sx7DPsS8[data-gp-component] { color: rgb(57, 75, 86); } }

 @media (max-width: 639px) { .gp-component-id-xTkqIliiDm[data-gp-component] { font-weight: 600;color: rgb(57, 75, 86); } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-xTkqIliiDm[data-gp-component] { color: rgb(57, 75, 86); } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-xTkqIliiDm[data-gp-component] { color: rgb(57, 75, 86); } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-xTkqIliiDm[data-gp-component] { color: rgb(57, 75, 86); } } @media (min-width: 1200px) { .gp-component-id-xTkqIliiDm[data-gp-component] { color: rgb(57, 75, 86); } }

 @media (max-width: 639px) { .gp-component-id-hw99l8oSQA[data-gp-component] { font-weight: 600;color: rgb(57, 75, 86); } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-hw99l8oSQA[data-gp-component] { color: rgb(57, 75, 86); } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-hw99l8oSQA[data-gp-component] { color: rgb(57, 75, 86); } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-hw99l8oSQA[data-gp-component] { color: rgb(57, 75, 86); } } @media (min-width: 1200px) { .gp-component-id-hw99l8oSQA[data-gp-component] { color: rgb(57, 75, 86); } }

 @media (max-width: 639px) { .gp-component-id-i30zM9oro4[data-gp-component] { font-weight: 600;color: rgba(57, 75, 86, 1);background-color: transparent;padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;display: block;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-i30zM9oro4[data-gp-component] { color: rgba(57, 75, 86, 1);background-color: transparent;padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;display: block;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-i30zM9oro4[data-gp-component] { color: rgba(57, 75, 86, 1);background-color: transparent;padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;display: block;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-i30zM9oro4[data-gp-component] { color: rgba(57, 75, 86, 1);background-color: transparent;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;display: block;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial; } } @media (min-width: 1200px) { .gp-component-id-i30zM9oro4[data-gp-component] { color: rgba(57, 75, 86, 1);background-color: transparent;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;display: block;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial; } }

 @media (max-width: 639px) { .gp-component-id-zIr4OSFmaC[data-gp-component] { font-weight: 600;color: rgba(57, 75, 86, 1);background-color: transparent;padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;display: block;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-zIr4OSFmaC[data-gp-component] { color: rgba(57, 75, 86, 1);background-color: transparent;padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;display: block;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-zIr4OSFmaC[data-gp-component] { color: rgba(57, 75, 86, 1);background-color: transparent;padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;display: block;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-zIr4OSFmaC[data-gp-component] { color: rgba(57, 75, 86, 1);background-color: transparent;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;display: block;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial; } } @media (min-width: 1200px) { .gp-component-id-zIr4OSFmaC[data-gp-component] { color: rgba(57, 75, 86, 1);background-color: transparent;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;display: block;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial; } }

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

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

 @media (max-width: 639px) { [data-gp-text] .gp-component-id-ujr7PwxkMv { font-size: 22px !important;font-weight: 700;color: rgb(43, 43, 43);margin-left: 4px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-ujr7PwxkMv { font-size: 22px !important;font-weight: 700;color: rgb(43, 43, 43);margin-left: 4px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-ujr7PwxkMv { font-size: 22px !important;font-weight: 700;color: rgb(43, 43, 43);margin-left: 4px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-ujr7PwxkMv { font-size: 22px !important;font-weight: 700;color: rgb(43, 43, 43);margin-left: 4px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-ujr7PwxkMv { font-size: 22px !important;font-weight: 700;color: rgb(43, 43, 43);margin-left: 4px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } }

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

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

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

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

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

 @media (max-width: 639px) { [data-gp-text] .gp-component-id-_xK58oExgl { font-size: 20px !important;font-weight: 600;text-align: center;margin-bottom: 12px;box-sizing: border-box;cursor: text; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-_xK58oExgl { font-size: 20px !important;font-weight: 600;text-align: center;margin-bottom: 12px;box-sizing: border-box;cursor: text; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-_xK58oExgl { font-size: 20px !important;font-weight: 600;text-align: left;margin-bottom: 12px;box-sizing: border-box;cursor: text; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-_xK58oExgl { font-size: 20px !important;font-weight: 600;text-align: left;margin-bottom: 12px;box-sizing: border-box;cursor: text; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-_xK58oExgl { font-size: 20px !important;font-weight: 600;text-align: left;margin-bottom: 12px;box-sizing: border-box;cursor: text; } }

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

 @media (max-width: 639px) { [data-gp-text] .gp-component-id-c60K5LSLbY { margin-left: 4px; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-c60K5LSLbY { margin-left: 4px; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-c60K5LSLbY { margin-left: 4px; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-c60K5LSLbY { margin-left: 4px; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-c60K5LSLbY { margin-left: 4px; } }

 @media (max-width: 639px) { .gp-component-id-wOx4kpnuXW[data-gp-component] { font-size: 29px !important;color: rgb(134, 192, 107);line-height: 1;display: inline-block; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-wOx4kpnuXW[data-gp-component] { font-size: 29px !important;color: rgb(134, 192, 107);line-height: 1;display: inline-block; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-wOx4kpnuXW[data-gp-component] { font-size: 29px !important;color: rgb(134, 192, 107);line-height: 1;display: inline-block; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-wOx4kpnuXW[data-gp-component] { font-size: 29px !important;color: rgb(134, 192, 107);line-height: 1;display: inline-block; } } @media (min-width: 1200px) { .gp-component-id-wOx4kpnuXW[data-gp-component] { font-size: 29px !important;color: rgb(134, 192, 107);line-height: 1;display: inline-block; } }

 @media (max-width: 639px) { .gp-component-id-cMwFtzdgQY[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-cMwFtzdgQY[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-cMwFtzdgQY[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-cMwFtzdgQY[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-cMwFtzdgQY[data-gp-component] { font-size: 18px;color: rgb(32, 45, 60);margin-bottom: 8px;align-items: flex-start;display: flex; } }

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

 @media (max-width: 639px) { .gp-component-id-qniUnfHrCF[data-gp-component] { font-size: 29px !important;color: rgb(134, 192, 107);line-height: 1;display: inline-block; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-qniUnfHrCF[data-gp-component] { font-size: 29px !important;color: rgb(134, 192, 107);line-height: 1;display: inline-block; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-qniUnfHrCF[data-gp-component] { font-size: 29px !important;color: rgb(134, 192, 107);line-height: 1;display: inline-block; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-qniUnfHrCF[data-gp-component] { font-size: 29px !important;color: rgb(134, 192, 107);line-height: 1;display: inline-block; } } @media (min-width: 1200px) { .gp-component-id-qniUnfHrCF[data-gp-component] { font-size: 29px !important;color: rgb(134, 192, 107);line-height: 1;display: inline-block; } }

 @media (max-width: 639px) { .gp-component-id-DvxXxGABks[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-DvxXxGABks[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-DvxXxGABks[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-DvxXxGABks[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-DvxXxGABks[data-gp-component] { font-size: 18px;color: rgb(32, 45, 60);margin-bottom: 8px;align-items: flex-start;display: flex; } }

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

 @media (max-width: 639px) { .gp-component-id-c551OfCmQn[data-gp-component] { font-size: 29px !important;color: rgb(134, 192, 107);line-height: 1;display: inline-block; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-c551OfCmQn[data-gp-component] { font-size: 29px !important;color: rgb(134, 192, 107);line-height: 1;display: inline-block; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-c551OfCmQn[data-gp-component] { font-size: 29px !important;color: rgb(134, 192, 107);line-height: 1;display: inline-block; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-c551OfCmQn[data-gp-component] { font-size: 29px !important;color: rgb(134, 192, 107);line-height: 1;display: inline-block; } } @media (min-width: 1200px) { .gp-component-id-c551OfCmQn[data-gp-component] { font-size: 29px !important;color: rgb(134, 192, 107);line-height: 1;display: inline-block; } }

 @media (max-width: 639px) { .gp-component-id-hsY_XGqXj[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-hsY_XGqXj[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-hsY_XGqXj[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-hsY_XGqXj[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-hsY_XGqXj[data-gp-component] { font-size: 18px;color: rgb(32, 45, 60);margin-bottom: 8px;align-items: flex-start;display: flex; } }

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

 @media (max-width: 639px) { .gp-component-id-o6X1yCWl0k[data-gp-component] { font-size: 29px !important;color: rgb(134, 192, 107);line-height: 1;display: inline-block; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-o6X1yCWl0k[data-gp-component] { font-size: 29px !important;color: rgb(134, 192, 107);line-height: 1;display: inline-block; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-o6X1yCWl0k[data-gp-component] { font-size: 29px !important;color: rgb(134, 192, 107);line-height: 1;display: inline-block; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-o6X1yCWl0k[data-gp-component] { font-size: 29px !important;color: rgb(134, 192, 107);line-height: 1;display: inline-block; } } @media (min-width: 1200px) { .gp-component-id-o6X1yCWl0k[data-gp-component] { font-size: 29px !important;color: rgb(134, 192, 107);line-height: 1;display: inline-block; } }

 @media (max-width: 639px) { .gp-component-id-3j1oSWcNe2[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-3j1oSWcNe2[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-3j1oSWcNe2[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-3j1oSWcNe2[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-3j1oSWcNe2[data-gp-component] { font-size: 18px;color: rgb(32, 45, 60);margin-bottom: 8px;align-items: flex-start;display: flex; } }

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

 @media (max-width: 639px) { .gp-component-id-zZNsQvS4Lk[data-gp-component] { font-size: 29px !important;color: rgb(134, 192, 107);line-height: 1;display: inline-block; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-zZNsQvS4Lk[data-gp-component] { font-size: 29px !important;color: rgb(134, 192, 107);line-height: 1;display: inline-block; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-zZNsQvS4Lk[data-gp-component] { font-size: 29px !important;color: rgb(134, 192, 107);line-height: 1;display: inline-block; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-zZNsQvS4Lk[data-gp-component] { font-size: 29px !important;color: rgb(134, 192, 107);line-height: 1;display: inline-block; } } @media (min-width: 1200px) { .gp-component-id-zZNsQvS4Lk[data-gp-component] { font-size: 29px !important;color: rgb(134, 192, 107);line-height: 1;display: inline-block; } }

 @media (max-width: 639px) { .gp-component-id-TIcBPuSAC[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-TIcBPuSAC[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-TIcBPuSAC[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-TIcBPuSAC[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-TIcBPuSAC[data-gp-component] { font-size: 18px;color: rgb(32, 45, 60);margin-bottom: 8px;align-items: flex-start;display: flex; } }

 @media (max-width: 639px) { .gp-component-id-41_V_myds[data-gp-component] { font-size: 29px !important;color: rgb(134, 192, 107);line-height: 1;display: inline-block; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-41_V_myds[data-gp-component] { font-size: 29px !important;color: rgb(134, 192, 107);line-height: 1;display: inline-block; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-41_V_myds[data-gp-component] { font-size: 29px !important;color: rgb(134, 192, 107);line-height: 1;display: inline-block; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-41_V_myds[data-gp-component] { font-size: 29px !important;color: rgb(134, 192, 107);line-height: 1;display: inline-block; } } @media (min-width: 1200px) { .gp-component-id-41_V_myds[data-gp-component] { font-size: 29px !important;color: rgb(134, 192, 107);line-height: 1;display: inline-block; } }

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

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

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

 @media (max-width: 639px) { [data-gp-text] .gp-component-id-QXRO84tQkF5 { font-size: 18px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: left;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;box-sizing: border-box;cursor: text; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-QXRO84tQkF5 { font-size: 18px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: left;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;box-sizing: border-box;cursor: text; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-QXRO84tQkF5 { font-size: 18px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: left;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;box-sizing: border-box;cursor: text; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-QXRO84tQkF5 { font-size: 18px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: left;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;box-sizing: border-box;cursor: text; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-QXRO84tQkF5 { font-size: 18px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: left;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;box-sizing: border-box;cursor: text; } }

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

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

 .gp-component-id-B0uV6OmoUS { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: inherit;display: block; } @media (max-width: 639px) { .gp-component-id-B0uV6OmoUS { text-decoration-color: initial;text-decoration-style: initial;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: rgb(135, 138, 154);display: block;font-weight: 300; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-B0uV6OmoUS { text-decoration-color: initial;text-decoration-style: initial;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: rgb(135, 138, 154);display: block;font-weight: 300; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-B0uV6OmoUS { text-decoration-color: initial;text-decoration-style: initial;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: rgb(135, 138, 154);display: block;font-weight: 300; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-B0uV6OmoUS { text-decoration-color: initial;text-decoration-style: initial;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: rgb(135, 138, 154);display: block;font-weight: 300; } } @media (min-width: 1200px) { .gp-component-id-B0uV6OmoUS { text-decoration-color: initial;text-decoration-style: initial;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: rgb(135, 138, 154);display: block;font-weight: 300; } }

 .gp-component-id-lVgUMkDtSV { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: inherit;display: block; } @media (max-width: 639px) { .gp-component-id-lVgUMkDtSV { text-decoration-color: initial;text-decoration-style: initial;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: rgb(135, 138, 154);display: block;margin-right: 24px;font-weight: 300; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-lVgUMkDtSV { text-decoration-color: initial;text-decoration-style: initial;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: rgb(135, 138, 154);display: block;margin-right: 24px;font-weight: 300; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-lVgUMkDtSV { text-decoration-color: initial;text-decoration-style: initial;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: rgb(135, 138, 154);display: block;margin-right: 24px;font-weight: 300; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-lVgUMkDtSV { text-decoration-color: initial;text-decoration-style: initial;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: rgb(135, 138, 154);display: block;margin-right: 24px;font-weight: 300; } } @media (min-width: 1200px) { .gp-component-id-lVgUMkDtSV { text-decoration-color: initial;text-decoration-style: initial;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: rgb(135, 138, 154);display: block;margin-right: 24px;font-weight: 300; } }

 .gp-component-id-lY5A8pFSQ7 { text-decoration-color: initial;text-decoration-style: initial;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: rgb(135, 138, 154);display: block;margin-bottom: 16px;font-weight: 300; } @media (max-width: 639px) { .gp-component-id-lY5A8pFSQ7 { text-decoration-color: initial;text-decoration-style: initial;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: rgb(135, 138, 154);display: block;margin-bottom: 16px;font-weight: 300; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-lY5A8pFSQ7 { text-decoration-color: initial;text-decoration-style: initial;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: rgb(135, 138, 154);display: block;margin-bottom: 16px;font-weight: 300; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-lY5A8pFSQ7 { text-decoration-color: initial;text-decoration-style: initial;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: rgb(135, 138, 154);display: block;margin-bottom: 16px;font-weight: 300; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-lY5A8pFSQ7 { text-decoration-color: initial;text-decoration-style: initial;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: rgb(135, 138, 154);display: block;margin-bottom: 0px;font-weight: 300;margin-right: 24px; } } @media (min-width: 1200px) { .gp-component-id-lY5A8pFSQ7 { text-decoration-color: initial;text-decoration-style: initial;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: rgb(135, 138, 154);display: block;margin-bottom: 0px;font-weight: 300;margin-right: 24px; } }

 .gp-component-id-PBqGQ1lshx { text-decoration-color: initial;text-decoration-style: initial;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: rgb(135, 138, 154);display: block;margin-bottom: 16px;font-weight: 300; } @media (max-width: 639px) { .gp-component-id-PBqGQ1lshx { text-decoration-color: initial;text-decoration-style: initial;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: rgb(135, 138, 154);display: block;margin-bottom: 16px;font-weight: 300; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-PBqGQ1lshx { text-decoration-color: initial;text-decoration-style: initial;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: rgb(135, 138, 154);display: block;margin-bottom: 16px;font-weight: 300; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-PBqGQ1lshx { text-decoration-color: initial;text-decoration-style: initial;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: rgb(135, 138, 154);display: block;margin-bottom: 16px;font-weight: 300; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-PBqGQ1lshx { text-decoration-color: initial;text-decoration-style: initial;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: rgb(135, 138, 154);display: block;margin-bottom: 0px;font-weight: 300;margin-right: 24px; } } @media (min-width: 1200px) { .gp-component-id-PBqGQ1lshx { text-decoration-color: initial;text-decoration-style: initial;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: rgb(135, 138, 154);display: block;margin-bottom: 0px;font-weight: 300;margin-right: 24px; } }

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

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

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

 .gp-component-id-EIlPb2MJ0J { margin-left: 0px;margin-bottom: 32px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;color: rgb(135, 138, 154);font-weight: 300;line-height: 1.5;text-align: center; } @media (max-width: 639px) { .gp-component-id-EIlPb2MJ0J { margin-left: 0px;margin-bottom: 32px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;color: rgb(135, 138, 154);font-weight: 300;line-height: 1.5;text-align: center; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-EIlPb2MJ0J { margin-left: 0px;margin-bottom: 32px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;color: rgb(135, 138, 154);font-weight: 300;line-height: 1.5;text-align: center; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-EIlPb2MJ0J { margin-left: 0px;margin-bottom: 32px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;color: rgb(135, 138, 154);font-weight: 300;line-height: 1.5;text-align: left; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-EIlPb2MJ0J { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;color: rgb(135, 138, 154);font-weight: 300;line-height: 1.5;text-align: left; } } @media (min-width: 1200px) { .gp-component-id-EIlPb2MJ0J { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;color: rgb(135, 138, 154);font-weight: 300;line-height: 1.5;text-align: left; } }

 .gp-component-id-4TgodRZc9o { flex-direction: column;display: flex;text-align: center;line-height: 1.5;font-weight: 300;margin-top: 0px;margin-right: 0px;margin-bottom: 32px;margin-left: 0px;color: rgb(135, 138, 154); } @media (max-width: 639px) { .gp-component-id-4TgodRZc9o { flex-direction: column;display: flex;text-align: center;line-height: 1.5;font-weight: 300;margin-top: 0px;margin-right: 0px;margin-bottom: 32px;margin-left: 0px;color: rgb(135, 138, 154); } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-4TgodRZc9o { flex-direction: column;display: flex;text-align: center;line-height: 1.5;font-weight: 300;margin-top: 0px;margin-right: 0px;margin-bottom: 32px;margin-left: 0px;color: rgb(135, 138, 154); } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-4TgodRZc9o { flex-direction: column;display: flex;text-align: left;line-height: 1.5;font-weight: 300;margin-top: 0px;margin-right: 0px;margin-bottom: 32px;margin-left: 0px;color: rgb(135, 138, 154); } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-4TgodRZc9o { flex-direction: column;display: flex;text-align: left;line-height: 1.5;font-weight: 300;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;color: rgb(135, 138, 154); } } @media (min-width: 1200px) { .gp-component-id-4TgodRZc9o { flex-direction: column;display: flex;text-align: left;line-height: 1.5;font-weight: 300;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;color: rgb(135, 138, 154); } }

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

 .gp-component-id-XWUHO2C9Ho { z-index: 15;position: relative;margin-left: auto;margin-right: auto;width: 100%; } @media (max-width: 639px) { .gp-component-id-XWUHO2C9Ho { z-index: 15;position: relative;margin-left: auto;margin-right: auto;width: 100%; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-XWUHO2C9Ho { 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-XWUHO2C9Ho { z-index: 15;position: relative;margin-left: auto;margin-right: auto;width: 100%;max-width: 768px;flex-direction: row;display: flex; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-XWUHO2C9Ho { z-index: 15;position: relative;margin-left: auto;margin-right: auto;width: 100%;max-width: 992px;flex-direction: row;display: flex;align-items: center; } } @media (min-width: 1200px) { .gp-component-id-XWUHO2C9Ho { z-index: 15;position: relative;margin-left: auto;margin-right: auto;width: 100%;max-width: 992px;flex-direction: row;display: flex;align-items: center; } }

 .gp-component-id-1JcGunH_AbL { text-decoration-color: initial;text-decoration-style: initial;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: inherit;z-index: 15;position: relative; } @media (max-width: 639px) { .gp-component-id-1JcGunH_AbL { text-decoration-color: initial;text-decoration-style: initial;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: inherit;z-index: 15;position: relative; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-1JcGunH_AbL { text-decoration-color: initial;text-decoration-style: initial;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: inherit;z-index: 15;position: relative; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-1JcGunH_AbL { text-decoration-color: initial;text-decoration-style: initial;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: inherit;z-index: 15;position: relative; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-1JcGunH_AbL { text-decoration-color: initial;text-decoration-style: initial;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: inherit;z-index: 15;position: relative; } } @media (min-width: 1200px) { .gp-component-id-1JcGunH_AbL { text-decoration-color: initial;text-decoration-style: initial;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: inherit;z-index: 15;position: relative; } }

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

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

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

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

 @media (max-width: 639px) { .gp-component-id-Nen_0bq_9s { text-decoration-line: inherit;font-style: inherit;display: flex;align-items: center;flex-direction: column;width: 100%; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-Nen_0bq_9s { text-decoration-line: inherit;font-style: inherit;display: flex;align-items: center;flex-direction: column;width: 100%; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-Nen_0bq_9s { text-decoration-line: inherit;font-style: inherit;display: flex;align-items: center;flex-direction: column;width: 100%; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-Nen_0bq_9s { text-decoration-line: inherit;font-style: inherit;display: flex;align-items: center;flex-direction: column;width: 100%; } } @media (min-width: 1200px) { .gp-component-id-Nen_0bq_9s { text-decoration-line: inherit;font-style: inherit;display: flex;align-items: 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-e_6pW3CBKc { padding-right: 8px;padding-left: 8px;width: 100%; } @media (max-width: 639px) { .gp-component-id-e_6pW3CBKc { padding-right: 8px;padding-left: 8px;width: 100%; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-e_6pW3CBKc { padding-right: 8px;padding-left: 8px;width: 100%; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-e_6pW3CBKc { padding-right: 8px;padding-left: 8px;width: 100%; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-e_6pW3CBKc { padding-right: 8px;padding-left: 8px;width: 100%; } } @media (min-width: 1200px) { .gp-component-id-e_6pW3CBKc { padding-right: 8px;padding-left: 8px;width: 100%; } }

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

 .gp-component-id-ArxrIaxzu { width: 192px;object-position: center center;object-fit: cover;border-top-left-radius: 9999px;border-top-right-radius: 9999px;border-bottom-right-radius: 9999px;border-bottom-left-radius: 9999px;max-width: 100%;height: 192px;border-top-style: solid;border-right-style: solid;border-bottom-style: solid;border-left-style: solid; } @media (max-width: 639px) { .gp-component-id-ArxrIaxzu { width: 192px;object-position: center center;object-fit: cover;border-top-left-radius: 9999px;border-top-right-radius: 9999px;border-bottom-right-radius: 9999px;border-bottom-left-radius: 9999px;max-width: 100%;height: 192px;border-top-style: solid;border-right-style: solid;border-bottom-style: solid;border-left-style: solid; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-ArxrIaxzu { width: 192px;object-position: center center;object-fit: cover;border-top-left-radius: 9999px;border-top-right-radius: 9999px;border-bottom-right-radius: 9999px;border-bottom-left-radius: 9999px;max-width: 100%;height: 192px;border-top-style: solid;border-right-style: solid;border-bottom-style: solid;border-left-style: solid; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-ArxrIaxzu { width: 192px;object-position: center center;object-fit: cover;border-top-left-radius: 9999px;border-top-right-radius: 9999px;border-bottom-right-radius: 9999px;border-bottom-left-radius: 9999px;max-width: 100%;height: 192px;border-top-style: solid;border-right-style: solid;border-bottom-style: solid;border-left-style: solid; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-ArxrIaxzu { width: 192px;object-position: center center;object-fit: cover;border-top-left-radius: 9999px;border-top-right-radius: 9999px;border-bottom-right-radius: 9999px;border-bottom-left-radius: 9999px;max-width: 100%;height: 192px;border-top-style: solid;border-right-style: solid;border-bottom-style: solid;border-left-style: solid; } } @media (min-width: 1200px) { .gp-component-id-ArxrIaxzu { width: 192px;object-position: center center;object-fit: cover;border-top-left-radius: 9999px;border-top-right-radius: 9999px;border-bottom-right-radius: 9999px;border-bottom-left-radius: 9999px;max-width: 100%;height: 192px;border-top-style: solid;border-right-style: solid;border-bottom-style: solid;border-left-style: solid; } }

 .gp-component-id-uWq6oBZtYL { top: 100%;z-index: 20;right: 0px;left: 0px;position: absolute;flex-grow: 1;flex-shrink: 1;flex-basis: 0%; } @media (max-width: 639px) { .gp-component-id-uWq6oBZtYL { top: 100%;z-index: 20;right: 0px;left: 0px;position: absolute;flex-grow: 1;flex-shrink: 1;flex-basis: 0%; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-uWq6oBZtYL { top: 100%;z-index: 20;right: 0px;left: 0px;position: absolute;flex-grow: 1;flex-shrink: 1;flex-basis: 0%; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-uWq6oBZtYL { top: 100%;z-index: 20;right: 0px;left: 0px;position: absolute;flex-grow: 1;flex-shrink: 1;flex-basis: 0%; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-uWq6oBZtYL { top: 100%;z-index: 20;right: 0px;left: 0px;position: relative;flex-grow: 1;flex-shrink: 1;flex-basis: 0%;justify-content: flex-end;display: flex; } } @media (min-width: 1200px) { .gp-component-id-uWq6oBZtYL { top: 100%;z-index: 20;right: 0px;left: 0px;position: relative;flex-grow: 1;flex-shrink: 1;flex-basis: 0%;justify-content: flex-end;display: flex; } }

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

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

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

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

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

 .gp-component-id-Zu00vSixaZ { line-height: 1;display: inline-block; } @media (max-width: 639px) { .gp-component-id-Zu00vSixaZ { line-height: 1;display: inline-block;background-color: rgba(255, 255, 255, 0); } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-Zu00vSixaZ { line-height: 1;display: inline-block; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-Zu00vSixaZ { line-height: 1;display: inline-block; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-Zu00vSixaZ { line-height: 1;display: inline-block; } } @media (min-width: 1200px) { .gp-component-id-Zu00vSixaZ { line-height: 1;display: inline-block; } }

 .gp-component-id-TIwocJC7VU { 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-TIwocJC7VU:focus,.gp-component-id-TIwocJC7VU.gp-focus { outline-width: 5px;outline-style: auto;outline-color: -webkit-focus-ring-color; } @media (max-width: 639px) { .gp-component-id-TIwocJC7VU { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: 24px;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: rgba(255, 255, 255, 0);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-flex;align-items: center; } .gp-component-id-TIwocJC7VU:focus,.gp-component-id-TIwocJC7VU.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-TIwocJC7VU { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: 24px;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;display: inline-flex;align-items: center; } .gp-component-id-TIwocJC7VU:focus,.gp-component-id-TIwocJC7VU.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-TIwocJC7VU { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: 24px;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;display: inline-flex;align-items: center; } .gp-component-id-TIwocJC7VU:focus,.gp-component-id-TIwocJC7VU.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-TIwocJC7VU { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: 24px;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;display: none;align-items: center; } .gp-component-id-TIwocJC7VU:focus,.gp-component-id-TIwocJC7VU.gp-focus { outline-width: 5px;outline-style: auto;outline-color: -webkit-focus-ring-color; } } @media (min-width: 1200px) { .gp-component-id-TIwocJC7VU { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: 24px;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;display: none;align-items: center; } .gp-component-id-TIwocJC7VU:focus,.gp-component-id-TIwocJC7VU.gp-focus { outline-width: 5px;outline-style: auto;outline-color: -webkit-focus-ring-color; } }

 .gp-component-id-UqU4aA0vim { padding-bottom: 16px;padding-top: 16px;padding-right: 16px;padding-left: 16px;display: block;color: inherit;background-color: transparent;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-UqU4aA0vim { padding-bottom: 16px;padding-top: 16px;padding-right: 16px;padding-left: 16px;display: block;color: rgb(57, 75, 86);background-color: transparent;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;font-weight: 600; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-UqU4aA0vim { padding-bottom: 16px;padding-top: 16px;padding-right: 16px;padding-left: 16px;display: block;color: rgb(57, 75, 86);background-color: transparent;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-UqU4aA0vim { padding-bottom: 16px;padding-top: 16px;padding-right: 16px;padding-left: 16px;display: block;color: rgb(57, 75, 86);background-color: transparent;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-UqU4aA0vim { padding-bottom: 0px;padding-top: 0px;padding-right: 0px;padding-left: 0px;display: block;color: rgb(57, 75, 86);background-color: transparent;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-UqU4aA0vim { padding-bottom: 0px;padding-top: 0px;padding-right: 0px;padding-left: 0px;display: block;color: rgb(57, 75, 86);background-color: transparent;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial; } }

 .gp-component-id-uPau8aIH1G { display: none;align-items: center; } @media (max-width: 639px) { .gp-component-id-uPau8aIH1G { display: none !important;align-items: center; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-uPau8aIH1G { display: none !important;align-items: center; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-uPau8aIH1G { display: none !important;align-items: center; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-uPau8aIH1G { display: flex !important;align-items: center; } } @media (min-width: 1200px) { .gp-component-id-uPau8aIH1G { display: flex !important;align-items: center; } }

 @media (max-width: 639px) { .gp-component-id-5aoKE2DAhq { max-width: 100%;margin-right: 0px;margin-left: 0px;background-color: rgb(255, 255, 255);border-bottom-color: rgb(16, 1, 0);border-top-color: rgb(16, 1, 0);border-right-color: rgb(16, 1, 0);border-left-color: rgb(16, 1, 0);border-bottom-width: 0px;border-top-width: 0px;border-right-width: 0px;border-left-width: 0px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-5aoKE2DAhq { background-color: rgb(255, 255, 255); } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-5aoKE2DAhq { background-color: rgb(255, 255, 255); } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-5aoKE2DAhq { background-color: rgba(255, 255, 255, 0); } } @media (min-width: 1200px) { .gp-component-id-5aoKE2DAhq { background-color: rgba(255, 255, 255, 0); } }

 @media (max-width: 639px) { .gp-component-id-SFX9CbReei { flex-basis: 0%;flex-shrink: 1;flex-grow: 1;position: absolute;left: 0px;right: 0px;z-index: 20;top: 100%;padding-top: 5px;padding-right: 0px;padding-left: 0px;margin-right: 99px;margin-left: 99px;background-color: rgba(255, 255, 255, 0); } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-SFX9CbReei { flex-basis: 0%;flex-shrink: 1;flex-grow: 1;position: absolute;left: 0px;right: 0px;z-index: 20;top: 100%;padding-top: 5px;margin-right: 169px;margin-left: 169px;background-color: rgba(255, 255, 255, 0);font-weight: 600; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-SFX9CbReei { flex-basis: 0%;flex-shrink: 1;flex-grow: 1;position: absolute;left: 0px;right: 0px;z-index: 20;top: 100%;padding-top: 5px;margin-right: 216px;margin-left: 216px;background-color: rgba(255, 255, 255, 0);font-weight: 600; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-SFX9CbReei { flex-basis: 0%;flex-shrink: 1;flex-grow: 1;position: relative;left: 0px;right: 0px;z-index: 20;top: 100%;display: flex;justify-content: flex-end;padding-top: 5px;background-color: rgba(255, 255, 255, 0); } } @media (min-width: 1200px) { .gp-component-id-SFX9CbReei { flex-basis: 0%;flex-shrink: 1;flex-grow: 1;position: relative;left: 0px;right: 0px;z-index: 20;top: 100%;display: flex;justify-content: flex-end;padding-top: 5px;background-color: rgba(255, 255, 255, 0); } }

 .gp-component-id-GETo0hR4mc { display: flex;width: 100%;margin-left: auto;margin-right: auto;justify-content: space-between;align-items: center; } @media (max-width: 639px) { .gp-component-id-GETo0hR4mc { display: flex;width: 100%;margin-left: auto;margin-right: auto;justify-content: space-between;align-items: center; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-GETo0hR4mc { display: flex;width: 100%;margin-left: auto;margin-right: auto;justify-content: space-between;align-items: center;max-width: 640px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-GETo0hR4mc { display: flex;width: 100%;margin-left: auto;margin-right: auto;justify-content: space-between;align-items: center;max-width: 768px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-GETo0hR4mc { display: flex;width: 100%;margin-left: auto;margin-right: auto;justify-content: space-between;align-items: center;max-width: 992px; } } @media (min-width: 1200px) { .gp-component-id-GETo0hR4mc { display: flex;width: 100%;margin-left: auto;margin-right: auto;justify-content: space-between;align-items: center;max-width: 1200px; } }

 @media (max-width: 639px) { .gp-component-id-ba989w_f42 { position: relative;padding-bottom: 5px;padding-top: 5px;padding-right: 16px;padding-left: 16px;margin-bottom: 80px;background-color: rgba(255, 255, 255, 0); } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-ba989w_f42 { position: relative;padding-bottom: 5px;padding-top: 5px;padding-right: 16px;padding-left: 16px;margin-bottom: 80px;background-color: rgba(255, 255, 255, 0); } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-ba989w_f42 { position: relative;padding-bottom: 5px;padding-top: 5px;padding-right: 16px;padding-left: 16px;margin-bottom: 80px;background-color: rgba(255, 255, 255, 0); } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-ba989w_f42 { position: relative;padding-bottom: 5px;padding-top: 5px;padding-right: 16px;padding-left: 16px;margin-bottom: 80px;background-color: rgba(255, 255, 255, 0); } } @media (min-width: 1200px) { .gp-component-id-ba989w_f42 { position: relative;padding-bottom: 5px;padding-top: 5px;padding-right: 16px;padding-left: 16px;margin-bottom: 80px;background-color: rgba(255, 255, 255, 0); } }

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

 .gp-component-id-8KqSbVIJPf.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-8KqSbVIJPf.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-8KqSbVIJPf.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-8KqSbVIJPf.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-8KqSbVIJPf.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-8KqSbVIJPf.gp-component > [data-section-overlay] { z-index: 14;position: absolute;right: 0px;left: 0px;top: 0px;bottom: 0px; } }

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

 @media (max-width: 639px) { [data-gp-text] .gp-component-id-q2YvFfa0dMM { font-size: 18px !important;font-weight: 400;color: rgb(0, 0, 0);text-align: left;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;box-sizing: border-box;cursor: text; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-q2YvFfa0dMM { font-size: 18px !important;font-weight: 400;color: rgb(0, 0, 0);text-align: left;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;box-sizing: border-box;cursor: text; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-q2YvFfa0dMM { font-size: 18px !important;font-weight: 400;color: rgb(0, 0, 0);text-align: left;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;box-sizing: border-box;cursor: text; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-q2YvFfa0dMM { font-size: 18px !important;font-weight: 400;color: rgb(0, 0, 0);text-align: left;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;box-sizing: border-box;cursor: text; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-q2YvFfa0dMM { font-size: 18px !important;font-weight: 400;color: rgb(0, 0, 0);text-align: left;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;box-sizing: border-box;cursor: text; } }

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

 .gp-component-id-FAKscM2BYa6 { margin-right: 1.25rem; line-height: 1; color: rgb(134, 192, 107); font-size: 1.5rem; } @media (min-width: 640px) { .gp-component-id-FAKscM2BYa6 { margin-right: 1.25rem; color: rgb(134, 192, 107); font-size: 1.5rem; } } @media (min-width: 768px) { .gp-component-id-FAKscM2BYa6 { margin-right: 1.25rem; color: rgb(134, 192, 107); font-size: 1.5rem; } } @media (min-width: 992px) { .gp-component-id-FAKscM2BYa6 { margin-right: 1.25rem; color: rgb(134, 192, 107); font-size: 1.5rem; } } @media (min-width: 1200px) { .gp-component-id-FAKscM2BYa6 { margin-right: 1.25rem; color: rgb(134, 192, 107); font-size: 1.5rem; } }

 .gp-component-id-g9GFS0XWFwY { display: flex; align-items: flex-start; margin-bottom: 0.5rem; color: rgb(32, 45, 60); font-size: 1.125rem; }

 .gp-component-id-fnpEU26tlv4 { list-style-type: inherit; padding-bottom: 1rem; padding-top: 1rem; padding-left: 1rem; margin-bottom: 1rem; margin-left: 0px; margin-right: 0px; margin-top: 0px; list-style-position: inside; padding-right: 0px; }

 @media (max-width: 639px) { [data-gp-text] .gp-component-id-pYv0SIuN9RM { font-size: 18px !important;font-weight: 400;color: rgb(0, 0, 0);text-align: left;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;box-sizing: border-box;cursor: text; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-pYv0SIuN9RM { font-size: 18px !important;font-weight: 400;color: rgb(0, 0, 0);text-align: left;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;box-sizing: border-box;cursor: text; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-pYv0SIuN9RM { font-size: 18px !important;font-weight: 400;color: rgb(0, 0, 0);text-align: left;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;box-sizing: border-box;cursor: text; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-pYv0SIuN9RM { font-size: 18px !important;font-weight: 400;color: rgb(0, 0, 0);text-align: left;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;box-sizing: border-box;cursor: text; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-pYv0SIuN9RM { font-size: 18px !important;font-weight: 400;color: rgb(0, 0, 0);text-align: left;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;box-sizing: border-box;cursor: text; } }

 .gp-component-id-hY68cNj4PqX { margin-right: 1.25rem; line-height: 1; color: rgb(134, 192, 107); font-size: 1.5rem; } @media (min-width: 640px) { .gp-component-id-hY68cNj4PqX { margin-right: 1.25rem; color: rgb(134, 192, 107); font-size: 1.5rem; } } @media (min-width: 768px) { .gp-component-id-hY68cNj4PqX { margin-right: 1.25rem; color: rgb(134, 192, 107); font-size: 1.5rem; } } @media (min-width: 992px) { .gp-component-id-hY68cNj4PqX { margin-right: 1.25rem; color: rgb(134, 192, 107); font-size: 1.5rem; } } @media (min-width: 1200px) { .gp-component-id-hY68cNj4PqX { margin-right: 1.25rem; color: rgb(134, 192, 107); font-size: 1.5rem; } }

 .gp-component-id-v5mXFZZL0QE { display: flex; align-items: flex-start; margin-bottom: 0.5rem; color: rgb(32, 45, 60); font-size: 1.125rem; }

 .gp-component-id-_UUpneehZfH { list-style-type: inherit; padding-bottom: 1rem; padding-top: 1rem; padding-left: 1rem; margin-bottom: 1rem; margin-left: 0px; margin-right: 0px; margin-top: 0px; list-style-position: inside; padding-right: 0px; }

 .gp-component-id-6PxucRBF9bi { margin-right: 1.25rem; line-height: 1; color: rgb(134, 192, 107); font-size: 1.5rem; } @media (min-width: 640px) { .gp-component-id-6PxucRBF9bi { margin-right: 1.25rem; color: rgb(134, 192, 107); font-size: 1.5rem; } } @media (min-width: 768px) { .gp-component-id-6PxucRBF9bi { margin-right: 1.25rem; color: rgb(134, 192, 107); font-size: 1.5rem; } } @media (min-width: 992px) { .gp-component-id-6PxucRBF9bi { margin-right: 1.25rem; color: rgb(134, 192, 107); font-size: 1.5rem; } } @media (min-width: 1200px) { .gp-component-id-6PxucRBF9bi { margin-right: 1.25rem; color: rgb(134, 192, 107); font-size: 1.5rem; } }

 .gp-component-id-1wO0qmlliv1 { display: flex; align-items: flex-start; margin-bottom: 0.5rem; color: rgb(32, 45, 60); font-size: 1.125rem; }

 .gp-component-id-nwXRtiCfkwW { list-style-type: inherit; padding-bottom: 1rem; padding-top: 1rem; padding-left: 1rem; margin-bottom: 1rem; margin-left: 0px; margin-right: 0px; margin-top: 0px; list-style-position: inside; padding-right: 0px; }

 .gp-component-id-AfjaOUlxDB_ { height: 100%; width: 100%; }

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

 @media (max-width: 639px) { [data-gp-text] .gp-component-id-y69wu3cIGg3 { font-size: 18px !important;font-weight: 400;color: rgb(0, 0, 0);text-align: left;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;cursor: text;box-sizing: border-box; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-y69wu3cIGg3 { font-size: 18px !important;font-weight: 400;color: rgb(0, 0, 0);text-align: left;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;cursor: text;box-sizing: border-box; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-y69wu3cIGg3 { font-size: 18px !important;font-weight: 400;color: rgb(0, 0, 0);text-align: left;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;cursor: text;box-sizing: border-box; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-y69wu3cIGg3 { font-size: 18px !important;font-weight: 400;color: rgb(0, 0, 0);text-align: left;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;cursor: text;box-sizing: border-box; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-y69wu3cIGg3 { font-size: 18px !important;font-weight: 400;color: rgb(0, 0, 0);text-align: left;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;cursor: text;box-sizing: border-box; } }

 @media (max-width: 639px) { [data-gp-text] .gp-component-id-W81ggxWTfG1 { font-size: 022px !important;font-weight: 700;color: rgb(43, 43, 43);margin-left: 4px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-W81ggxWTfG1 { font-size: 022px !important;font-weight: 700;color: rgb(43, 43, 43);margin-left: 4px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-W81ggxWTfG1 { font-size: 022px !important;font-weight: 700;color: rgb(43, 43, 43);margin-left: 4px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-W81ggxWTfG1 { font-size: 022px !important;font-weight: 700;color: rgb(43, 43, 43);margin-left: 4px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-W81ggxWTfG1 { font-size: 022px !important;font-weight: 700;color: rgb(43, 43, 43);margin-left: 4px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } }

 .gp-component-id-HatJtSAStp0 { margin-right: 1.25rem; line-height: 1; color: rgb(134, 192, 107); font-size: 1.5rem; } @media (min-width: 640px) { .gp-component-id-HatJtSAStp0 { margin-right: 1.25rem; color: rgb(134, 192, 107); font-size: 1.5rem; } } @media (min-width: 768px) { .gp-component-id-HatJtSAStp0 { margin-right: 1.25rem; color: rgb(134, 192, 107); font-size: 1.5rem; } } @media (min-width: 992px) { .gp-component-id-HatJtSAStp0 { margin-right: 1.25rem; color: rgb(134, 192, 107); font-size: 1.5rem; } } @media (min-width: 1200px) { .gp-component-id-HatJtSAStp0 { margin-right: 1.25rem; color: rgb(134, 192, 107); font-size: 1.5rem; } }

 .gp-component-id-G48OMIvvCZw { display: flex; align-items: flex-start; margin-bottom: 0.5rem; color: rgb(32, 45, 60); font-size: 1.125rem; }

 .gp-component-id-G90MSTPKNFK { list-style-type: inherit; padding-bottom: 1rem; padding-top: 1rem; padding-left: 1rem; margin-bottom: 1rem; margin-left: 0px; margin-right: 0px; margin-top: 0px; list-style-position: inside; padding-right: 0px; } @media (min-width: 640px) { .gp-component-id-G90MSTPKNFK { margin-bottom: 1rem; } } @media (min-width: 768px) { .gp-component-id-G90MSTPKNFK { margin-bottom: 1rem; } } @media (min-width: 992px) { .gp-component-id-G90MSTPKNFK { margin-bottom: 1rem; } } @media (min-width: 1200px) { .gp-component-id-G90MSTPKNFK { margin-bottom: 1rem; } }

 @media (max-width: 639px) { [data-gp-text] .gp-component-id-NN00ySSG0WK { font-size: 18px !important;font-weight: 400;color: rgb(0, 0, 0);text-align: left;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;box-sizing: border-box;cursor: text; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-NN00ySSG0WK { font-size: 18px !important;font-weight: 400;color: rgb(0, 0, 0);text-align: left;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;box-sizing: border-box;cursor: text; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-NN00ySSG0WK { font-size: 18px !important;font-weight: 400;color: rgb(0, 0, 0);text-align: left;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;box-sizing: border-box;cursor: text; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-NN00ySSG0WK { font-size: 18px !important;font-weight: 400;color: rgb(0, 0, 0);text-align: left;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;box-sizing: border-box;cursor: text; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-NN00ySSG0WK { font-size: 18px !important;font-weight: 400;color: rgb(0, 0, 0);text-align: left;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;box-sizing: border-box;cursor: text; } }

 @media (max-width: 639px) { [data-gp-text] .gp-component-id-FWkWYjEQFwR { font-size: 22px !important;font-weight: 700 !important;color: rgb(43, 43, 43);margin-left: 4px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-FWkWYjEQFwR { font-size: 22px !important;font-weight: 700 !important;color: rgb(43, 43, 43);margin-left: 4px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-FWkWYjEQFwR { font-size: 22px !important;font-weight: 700 !important;color: rgb(43, 43, 43);margin-left: 4px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-FWkWYjEQFwR { font-size: 22px !important;font-weight: 700 !important;color: rgb(43, 43, 43);margin-left: 4px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-FWkWYjEQFwR { font-size: 22px !important;font-weight: 700 !important;color: rgb(43, 43, 43);margin-left: 4px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } }

 .gp-component-id-BjC0LZTlG3E { margin-right: 1.25rem; line-height: 1; color: rgb(134, 192, 107); font-size: 1.5rem; } @media (min-width: 640px) { .gp-component-id-BjC0LZTlG3E { margin-right: 1.25rem; color: rgb(134, 192, 107); font-size: 1.5rem; } } @media (min-width: 768px) { .gp-component-id-BjC0LZTlG3E { margin-right: 1.25rem; color: rgb(134, 192, 107); font-size: 1.5rem; } } @media (min-width: 992px) { .gp-component-id-BjC0LZTlG3E { margin-right: 1.25rem; color: rgb(134, 192, 107); font-size: 1.5rem; } } @media (min-width: 1200px) { .gp-component-id-BjC0LZTlG3E { margin-right: 1.25rem; color: rgb(134, 192, 107); font-size: 1.5rem; } }

 .gp-component-id-6uluMvl5ba9 { display: flex; align-items: flex-start; margin-bottom: 0.5rem; color: rgb(32, 45, 60); font-size: 1.125rem; }

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

 @media (max-width: 639px) { [data-gp-text] .gp-component-id-fl3aYkFZHg { font-size: 18px !important;font-weight: 400;color: rgb(0, 0, 0);text-align: left;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;cursor: text;box-sizing: border-box; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-fl3aYkFZHg { font-size: 18px !important;font-weight: 400;color: rgb(0, 0, 0);text-align: left;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;cursor: text;box-sizing: border-box; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-fl3aYkFZHg { font-size: 18px !important;font-weight: 400;color: rgb(0, 0, 0);text-align: left;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;cursor: text;box-sizing: border-box; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-fl3aYkFZHg { font-size: 18px !important;font-weight: 400;color: rgb(0, 0, 0);text-align: left;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;cursor: text;box-sizing: border-box; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-fl3aYkFZHg { font-size: 18px !important;font-weight: 400;color: rgb(0, 0, 0);text-align: left;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;cursor: text;box-sizing: border-box; } }

 .gp-component-id-yhgAaI1uKH { margin-right: 1.25rem; line-height: 1; color: rgb(134, 192, 107); font-size: 1.5rem; } @media (min-width: 640px) { .gp-component-id-yhgAaI1uKH { margin-right: 1.25rem; color: rgb(134, 192, 107); font-size: 1.5rem; } } @media (min-width: 768px) { .gp-component-id-yhgAaI1uKH { margin-right: 1.25rem; color: rgb(134, 192, 107); font-size: 1.5rem; } } @media (min-width: 992px) { .gp-component-id-yhgAaI1uKH { margin-right: 1.25rem; color: rgb(134, 192, 107); font-size: 1.5rem; } } @media (min-width: 1200px) { .gp-component-id-yhgAaI1uKH { margin-right: 1.25rem; color: rgb(134, 192, 107); font-size: 1.5rem; } }

 .gp-component-id-a2iY7Ve9t2 { display: flex; align-items: flex-start; margin-bottom: 0.5rem; color: rgb(32, 45, 60); font-size: 1.125rem; }

 .gp-component-id-7aQ_RSfsvO { list-style-type: inherit; padding-bottom: 1rem; padding-top: 1rem; padding-left: 1rem; margin-bottom: 1rem; margin-left: 0px; margin-right: 0px; margin-top: 0px; list-style-position: inside; padding-right: 0px; } @media (min-width: 640px) { .gp-component-id-7aQ_RSfsvO { margin-bottom: 1rem; } } @media (min-width: 768px) { .gp-component-id-7aQ_RSfsvO { margin-bottom: 1rem; } } @media (min-width: 992px) { .gp-component-id-7aQ_RSfsvO { margin-bottom: 1rem; } } @media (min-width: 1200px) { .gp-component-id-7aQ_RSfsvO { margin-bottom: 1rem; } }

 .gp-component-id-m5GNTrEvF6 { height: 100%; width: 100%; }

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

 .gp-component-id-Iyc2EjqL5_v { flex-wrap: wrap; margin-right: -1rem; margin-left: -1rem; } @media (min-width: 768px) { .gp-component-id-Iyc2EjqL5_v { display: flex; } }

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

 @media (max-width: 639px) { [data-gp-text] .gp-component-id-0edlEUlTN8 { font-size: 37px !important;font-weight: 600;color: rgb(43, 43, 43);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 32px;padding-left: 0px;padding-right: 0px;cursor: text;box-sizing: border-box; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-0edlEUlTN8 { font-size: 37px !important;font-weight: 600;color: rgb(43, 43, 43);text-align: left;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 32px;padding-left: 0px;padding-right: 0px;cursor: text;box-sizing: border-box; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-0edlEUlTN8 { font-size: 37px !important;font-weight: 600;color: rgb(43, 43, 43);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 32px;padding-left: 0px;padding-right: 0px;cursor: text;box-sizing: border-box; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-0edlEUlTN8 { font-size: 37px !important;font-weight: 600;color: rgb(43, 43, 43);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 32px;padding-left: 0px;padding-right: 0px;cursor: text;box-sizing: border-box; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-0edlEUlTN8 { font-size: 37px !important;font-weight: 600;color: rgb(43, 43, 43);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 32px;padding-left: 0px;padding-right: 0px;cursor: text;box-sizing: border-box; } }

 .gp-component-id-UOdXGU890F { width: 100%; }

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

 .gp-component-id-y7ZCp3nHiu4 { margin-right: -0.5rem; margin-left: -0.5rem; }

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

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

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

 .gp-component-id-FWYKmktYtM { box-sizing: border-box; cursor: text; margin-bottom: 1.25rem; text-align: center; font-size: 3rem; margin-left: 0px; margin-right: 0px; margin-top: 0px; } @media (min-width: 640px) { .gp-component-id-FWYKmktYtM { margin-bottom: 1.25rem; text-align: center; font-size: 3rem; } } @media (min-width: 768px) { .gp-component-id-FWYKmktYtM { margin-bottom: 1.25rem; text-align: center; font-size: 3rem; } } @media (min-width: 992px) { .gp-component-id-FWYKmktYtM { margin-bottom: 1.25rem; text-align: center; font-size: 3rem; } } @media (min-width: 1200px) { .gp-component-id-FWYKmktYtM { margin-bottom: 1.25rem; text-align: center; font-size: 3rem; } }

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

 .gp-component-id-zsgqfy0vl { z-index: auto !important; position: relative; padding-bottom: 2rem; padding-top: 3rem; } @media (min-width: 640px) { .gp-component-id-zsgqfy0vl { padding-bottom: 2rem; padding-top: 3rem; } } @media (min-width: 768px) { .gp-component-id-zsgqfy0vl { padding-bottom: 2rem; padding-top: 3rem; } } @media (min-width: 992px) { .gp-component-id-zsgqfy0vl { padding-bottom: 3.5rem; padding-top: 3.5rem; } } @media (min-width: 1200px) { .gp-component-id-zsgqfy0vl { padding-bottom: 3.5rem; padding-top: 3.5rem; } }

 @media (max-width: 639px) { .gp-component-id-mPw9q1D8Nut[data-gp-component] { border-top-left-radius: 4px;border-top-right-radius: 4px;border-bottom-left-radius: 4px;border-bottom-right-radius: 4px;justify-content: flex-start;align-items: flex-start;display: inline-flex;position: relative;object-fit: cover;object-position: center center; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-mPw9q1D8Nut[data-gp-component] { border-top-left-radius: 4px;border-top-right-radius: 4px;border-bottom-left-radius: 4px;border-bottom-right-radius: 4px;justify-content: flex-start;align-items: flex-start;display: inline-flex;position: relative;object-fit: cover;object-position: center center; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-mPw9q1D8Nut[data-gp-component] { border-top-left-radius: 4px;border-top-right-radius: 4px;border-bottom-left-radius: 4px;border-bottom-right-radius: 4px;justify-content: flex-start;align-items: flex-start;display: inline-flex;position: relative;object-fit: cover;object-position: center center; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-mPw9q1D8Nut[data-gp-component] { border-top-left-radius: 4px;border-top-right-radius: 4px;border-bottom-left-radius: 4px;border-bottom-right-radius: 4px;justify-content: flex-start;align-items: flex-start;display: inline-flex;position: relative;object-fit: cover;object-position: center center; } } @media (min-width: 1200px) { .gp-component-id-mPw9q1D8Nut[data-gp-component] { border-top-left-radius: 4px;border-top-right-radius: 4px;border-bottom-left-radius: 4px;border-bottom-right-radius: 4px;width: 95%;justify-content: flex-start;align-items: flex-start;display: inline-flex;position: relative;object-fit: cover;object-position: center center; } }

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

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

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

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

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

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

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

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

 .gp-component-id-RLFst03SS4 { flex-wrap: wrap; margin-right: -0.5rem; margin-left: -0.5rem; } @media (min-width: 768px) { .gp-component-id-RLFst03SS4 { display: flex; } }

 .gp-component-id-TJr4iXseNlK { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;align-items: center;cursor: pointer;background-color: transparent;color: inherit; } @media (max-width: 639px) { .gp-component-id-TJr4iXseNlK { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;align-items: center;cursor: pointer;background-color: rgb(46, 140, 255);color: rgb(32, 45, 60);font-weight: 600 !important;font-size: 23px !important;display: inline-flex;padding-bottom: 8px;padding-top: 8px;padding-right: 16px;padding-left: 16px;margin-bottom: 5px;margin-top: 10px;border-bottom-width: 0px;border-top-width: 0px;border-right-width: 0px;border-left-width: 0px;border-bottom-right-radius: 10px;border-bottom-left-radius: 10px;border-top-right-radius: 10px;border-top-left-radius: 10px;text-align: center; } .gp-component-id-TJr4iXseNlK:hover,.gp-component-id-TJr4iXseNlK.gp-hover { background-color: rgb(120, 136, 155); } .gp-component-id-TJr4iXseNlK:active,.gp-component-id-TJr4iXseNlK.gp-active { background-color: rgb(32, 45, 60); } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-TJr4iXseNlK { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;align-items: center;cursor: pointer;background-color: rgb(46, 140, 255);color: rgb(32, 45, 60);font-weight: 600 !important;font-size: 23px !important;display: inline-flex;padding-bottom: 8px;padding-top: 8px;padding-right: 16px;padding-left: 16px;margin-bottom: 5px;margin-top: 10px;border-bottom-width: 0px;border-top-width: 0px;border-right-width: 0px;border-left-width: 0px;border-bottom-right-radius: 10px;border-bottom-left-radius: 10px;border-top-right-radius: 10px;border-top-left-radius: 10px;text-align: center; } .gp-component-id-TJr4iXseNlK:hover,.gp-component-id-TJr4iXseNlK.gp-hover { background-color: rgb(120, 136, 155); } .gp-component-id-TJr4iXseNlK:active,.gp-component-id-TJr4iXseNlK.gp-active { background-color: rgb(32, 45, 60); } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-TJr4iXseNlK { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;align-items: center;cursor: pointer;background-color: rgb(46, 140, 255);color: rgb(32, 45, 60);font-weight: 600 !important;font-size: 23px !important;display: inline-flex;padding-bottom: 8px;padding-top: 8px;padding-right: 16px;padding-left: 16px;margin-bottom: 5px;margin-top: 10px;border-bottom-width: 0px;border-top-width: 0px;border-right-width: 0px;border-left-width: 0px;border-bottom-right-radius: 10px;border-bottom-left-radius: 10px;border-top-right-radius: 10px;border-top-left-radius: 10px;text-align: center; } .gp-component-id-TJr4iXseNlK:hover,.gp-component-id-TJr4iXseNlK.gp-hover { background-color: rgb(120, 136, 155); } .gp-component-id-TJr4iXseNlK:active,.gp-component-id-TJr4iXseNlK.gp-active { background-color: rgb(32, 45, 60); } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-TJr4iXseNlK { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;align-items: center;cursor: pointer;background-color: rgb(46, 140, 255);color: rgb(32, 45, 60);font-weight: 600 !important;font-size: 23px !important;display: inline-flex;padding-bottom: 8px;padding-top: 8px;padding-right: 16px;padding-left: 16px;margin-bottom: 5px;margin-top: 10px;border-bottom-width: 0px;border-top-width: 0px;border-right-width: 0px;border-left-width: 0px;border-bottom-right-radius: 10px;border-bottom-left-radius: 10px;border-top-right-radius: 10px;border-top-left-radius: 10px;text-align: center; } .gp-component-id-TJr4iXseNlK:hover,.gp-component-id-TJr4iXseNlK.gp-hover { background-color: rgb(120, 136, 155); } .gp-component-id-TJr4iXseNlK:active,.gp-component-id-TJr4iXseNlK.gp-active { background-color: rgb(32, 45, 60); } } @media (min-width: 1200px) { .gp-component-id-TJr4iXseNlK { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;align-items: center;cursor: pointer;background-color: rgb(46, 140, 255);color: rgb(32, 45, 60);font-weight: 600 !important;font-size: 23px !important;display: inline-flex;padding-bottom: 8px;padding-top: 8px;padding-right: 16px;padding-left: 16px;margin-bottom: 5px;margin-top: 10px;border-bottom-width: 0px;border-top-width: 0px;border-right-width: 0px;border-left-width: 0px;border-bottom-right-radius: 10px;border-bottom-left-radius: 10px;border-top-right-radius: 10px;border-top-left-radius: 10px;text-align: center; } .gp-component-id-TJr4iXseNlK:hover,.gp-component-id-TJr4iXseNlK.gp-hover { background-color: rgb(120, 136, 155); } .gp-component-id-TJr4iXseNlK:active,.gp-component-id-TJr4iXseNlK.gp-active { background-color: rgb(32, 45, 60); } }

 .gp-component-id-_1p8jhrAkXs { 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-_1p8jhrAkXs { 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-_1p8jhrAkXs { 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-_1p8jhrAkXs { 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-_1p8jhrAkXs { 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-_1p8jhrAkXs { 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-sAFhON8iXat { font-size: inherit; font-weight: 700; text-align: center; margin-left: 0px; margin-right: 0px; margin-top: 0px; margin-bottom: 0px; box-sizing: border-box; cursor: text; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-sAFhON8iXat { font-size: inherit; font-weight: 700; text-align: center; margin-left: 0px; margin-right: 0px; margin-top: 0px; margin-bottom: 0px; box-sizing: border-box; cursor: text; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-sAFhON8iXat { font-size: inherit; font-weight: 700; text-align: center; margin-left: 0px; margin-right: 0px; margin-top: 0px; margin-bottom: 0px; box-sizing: border-box; cursor: text; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-sAFhON8iXat { font-size: inherit; font-weight: 700; text-align: center; margin-left: 0px; margin-right: 0px; margin-top: 0px; margin-bottom: 0px; box-sizing: border-box; cursor: text; } } @media (min-width: 1200px) { .gp-component-id-sAFhON8iXat { font-size: inherit; font-weight: 700; text-align: center; margin-left: 0px; margin-right: 0px; margin-top: 0px; margin-bottom: 0px; box-sizing: border-box; cursor: text; } }

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

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

 .gp-component-id-PHVE47NPF7C { 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-PHVE47NPF7C { 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-PHVE47NPF7C { 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-PHVE47NPF7C { 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-PHVE47NPF7C { 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-PHVE47NPF7C { 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-Dmj7X4_5NLS { font-size: inherit; font-weight: 700; text-align: center; margin-left: 0px; margin-right: 0px; margin-top: 0px; margin-bottom: 0px; cursor: text; box-sizing: border-box; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-Dmj7X4_5NLS { font-size: inherit; font-weight: 700; text-align: center; margin-left: 0px; margin-right: 0px; margin-top: 0px; margin-bottom: 0px; cursor: text; box-sizing: border-box; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-Dmj7X4_5NLS { font-size: inherit; font-weight: 700; text-align: center; margin-left: 0px; margin-right: 0px; margin-top: 0px; margin-bottom: 0px; cursor: text; box-sizing: border-box; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-Dmj7X4_5NLS { font-size: inherit; font-weight: 700; text-align: center; margin-left: 0px; margin-right: 0px; margin-top: 0px; margin-bottom: 0px; cursor: text; box-sizing: border-box; } } @media (min-width: 1200px) { .gp-component-id-Dmj7X4_5NLS { font-size: inherit; font-weight: 700; text-align: center; margin-left: 0px; margin-right: 0px; margin-top: 0px; margin-bottom: 0px; cursor: text; box-sizing: border-box; } }

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

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

 .gp-component-id-I1JYzMrkJvC { 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-I1JYzMrkJvC { 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-I1JYzMrkJvC { 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-I1JYzMrkJvC { 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-I1JYzMrkJvC { 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-I1JYzMrkJvC { 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-uWoq6G7ygWn { font-size: inherit; font-weight: 700; text-align: center; margin-left: 0px; margin-right: 0px; margin-top: 0px; margin-bottom: 0px; cursor: text; box-sizing: border-box; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-uWoq6G7ygWn { font-size: inherit; font-weight: 700; text-align: center; margin-left: 0px; margin-right: 0px; margin-top: 0px; margin-bottom: 0px; cursor: text; box-sizing: border-box; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-uWoq6G7ygWn { font-size: inherit; font-weight: 700; text-align: center; margin-left: 0px; margin-right: 0px; margin-top: 0px; margin-bottom: 0px; cursor: text; box-sizing: border-box; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-uWoq6G7ygWn { font-size: inherit; font-weight: 700; text-align: center; margin-left: 0px; margin-right: 0px; margin-top: 0px; margin-bottom: 0px; cursor: text; box-sizing: border-box; } } @media (min-width: 1200px) { .gp-component-id-uWoq6G7ygWn { font-size: inherit; font-weight: 700; text-align: center; margin-left: 0px; margin-right: 0px; margin-top: 0px; margin-bottom: 0px; cursor: text; box-sizing: border-box; } }

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

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

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

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

 .gp-component-id-zYM0rYXkSqX { 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-zYM0rYXkSqX { 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-zYM0rYXkSqX { 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-zYM0rYXkSqX { 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-zYM0rYXkSqX { 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-zYM0rYXkSqX { 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) { [data-gp-text] .gp-component-id-URR09RuBVHp { font-size: inherit; font-weight: 700; text-align: center; margin-left: 0px; margin-right: 0px; margin-top: 0px; margin-bottom: 0px; cursor: text; box-sizing: border-box; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-URR09RuBVHp { font-size: inherit; font-weight: 700; text-align: center; margin-left: 0px; margin-right: 0px; margin-top: 0px; margin-bottom: 0px; cursor: text; box-sizing: border-box; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-URR09RuBVHp { font-size: inherit; font-weight: 700; text-align: center; margin-left: 0px; margin-right: 0px; margin-top: 0px; margin-bottom: 0px; cursor: text; box-sizing: border-box; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-URR09RuBVHp { font-size: inherit; font-weight: 700; text-align: center; margin-left: 0px; margin-right: 0px; margin-top: 0px; margin-bottom: 0px; cursor: text; box-sizing: border-box; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-URR09RuBVHp { font-size: inherit; font-weight: 700; text-align: center; margin-left: 0px; margin-right: 0px; margin-top: 0px; margin-bottom: 0px; cursor: text; box-sizing: border-box; } }

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

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

 .gp-component-id-IAMhIxZyTV3 { 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-IAMhIxZyTV3 { 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-IAMhIxZyTV3 { 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-IAMhIxZyTV3 { 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-IAMhIxZyTV3 { 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-IAMhIxZyTV3 { 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) { [data-gp-text] .gp-component-id-UNcvst3ic69 { font-size: inherit; font-weight: 700; text-align: center; margin-left: 0px; margin-right: 0px; margin-top: 0px; margin-bottom: 0px; box-sizing: border-box; cursor: text; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-UNcvst3ic69 { font-size: inherit; font-weight: 700; text-align: center; margin-left: 0px; margin-right: 0px; margin-top: 0px; margin-bottom: 0px; box-sizing: border-box; cursor: text; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-UNcvst3ic69 { font-size: inherit; font-weight: 700; text-align: center; margin-left: 0px; margin-right: 0px; margin-top: 0px; margin-bottom: 0px; box-sizing: border-box; cursor: text; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-UNcvst3ic69 { font-size: inherit; font-weight: 700; text-align: center; margin-left: 0px; margin-right: 0px; margin-top: 0px; margin-bottom: 0px; box-sizing: border-box; cursor: text; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-UNcvst3ic69 { font-size: inherit; font-weight: 700; text-align: center; margin-left: 0px; margin-right: 0px; margin-top: 0px; margin-bottom: 0px; box-sizing: border-box; cursor: text; } }

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

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

 @media (max-width: 639px) { .gp-component-id-wXNFL0oc6S[data-gp-component] { box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px; justify-content: flex-start; align-items: flex-start; display: inline-flex; vertical-align: middle; object-position: center center; object-fit: cover; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-wXNFL0oc6S[data-gp-component] { box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px; justify-content: flex-start; align-items: flex-start; display: inline-flex; vertical-align: middle; object-position: center center; object-fit: cover; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-wXNFL0oc6S[data-gp-component] { box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px; justify-content: flex-start; align-items: flex-start; display: inline-flex; vertical-align: middle; object-position: center center; object-fit: cover; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-wXNFL0oc6S[data-gp-component] { box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px; justify-content: flex-start; align-items: flex-start; display: inline-flex; vertical-align: middle; object-position: center center; object-fit: cover; } } @media (min-width: 1200px) { .gp-component-id-wXNFL0oc6S[data-gp-component] { box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px; justify-content: flex-start; align-items: flex-start; display: inline-flex; vertical-align: middle; object-position: center center; object-fit: cover; } }

 @media (max-width: 639px) { [data-gp-text] .gp-component-id-YRyDlnKTPw { font-size: inherit; font-weight: 700; text-align: center; margin-left: 0px; margin-right: 0px; margin-top: 0px; margin-bottom: 0px; box-sizing: border-box; cursor: text; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-YRyDlnKTPw { font-size: inherit; font-weight: 700; text-align: center; margin-left: 0px; margin-right: 0px; margin-top: 0px; margin-bottom: 0px; box-sizing: border-box; cursor: text; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-YRyDlnKTPw { font-size: inherit; font-weight: 700; text-align: center; margin-left: 0px; margin-right: 0px; margin-top: 0px; margin-bottom: 0px; box-sizing: border-box; cursor: text; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-YRyDlnKTPw { font-size: inherit; font-weight: 700; text-align: center; margin-left: 0px; margin-right: 0px; margin-top: 0px; margin-bottom: 0px; box-sizing: border-box; cursor: text; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-YRyDlnKTPw { font-size: inherit; font-weight: 700; text-align: center; margin-left: 0px; margin-right: 0px; margin-top: 0px; margin-bottom: 0px; box-sizing: border-box; cursor: text; } }

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

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

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

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

 @media (max-width: 639px) { [data-gp-text] .gp-component-id-Il0tT2XUIb { font-size: 25px !important;font-weight: 600 !important;color: rgb(3, 58, 124);text-align: center;box-sizing: border-box;cursor: text; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-Il0tT2XUIb { font-size: 25px !important;font-weight: 600 !important;color: rgb(3, 58, 124);text-align: center;box-sizing: border-box;cursor: text; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-Il0tT2XUIb { font-size: 25px !important;font-weight: 600 !important;color: rgb(3, 58, 124);text-align: center;box-sizing: border-box;cursor: text; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-Il0tT2XUIb { font-size: 25px !important;font-weight: 600 !important;color: rgb(3, 58, 124);text-align: center;box-sizing: border-box;cursor: text; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-Il0tT2XUIb { font-size: 25px !important;font-weight: 600 !important;color: rgb(3, 58, 124);text-align: center;box-sizing: border-box;cursor: text; } }

 @media (max-width: 639px) { [data-gp-text] .gp-component-id-M2RfIPHHpW { font-size: 16px !important;font-weight: 400 !important;text-align: left;padding-top: 10px;padding-bottom: 10px;font-style: inherit !important;text-decoration-line: inherit;cursor: text;box-sizing: border-box; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-M2RfIPHHpW { font-size: 16px !important;font-weight: 400 !important;text-align: left;padding-top: 10px;padding-bottom: 10px;font-style: inherit !important;text-decoration-line: inherit;cursor: text;box-sizing: border-box; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-M2RfIPHHpW { font-size: 16px !important;font-weight: 400 !important;text-align: left;padding-top: 10px;padding-bottom: 10px;font-style: inherit !important;text-decoration-line: inherit;cursor: text;box-sizing: border-box; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-M2RfIPHHpW { font-size: 16px !important;font-weight: 400 !important;text-align: left;padding-top: 10px;padding-bottom: 10px;font-style: inherit !important;text-decoration-line: inherit;cursor: text;box-sizing: border-box; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-M2RfIPHHpW { font-size: 16px !important;font-weight: 400 !important;text-align: left;padding-top: 10px;padding-bottom: 10px;font-style: inherit !important;text-decoration-line: inherit;cursor: text;box-sizing: border-box; } }

 @media (max-width: 639px) { [data-gp-text] .gp-component-id-FzTtzM_Pw0 { font-size: 25px !important;font-weight: 400 !important;text-align: center;padding-top: 10px;box-sizing: border-box;cursor: text;text-decoration-line: inherit;font-style: italic !important; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-FzTtzM_Pw0 { font-size: 25px !important;font-weight: 400 !important;text-align: center;padding-top: 10px;box-sizing: border-box;cursor: text;text-decoration-line: inherit;font-style: italic !important; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-FzTtzM_Pw0 { font-size: 25px !important;font-weight: 400 !important;text-align: center;padding-top: 10px;box-sizing: border-box;cursor: text;text-decoration-line: inherit;font-style: italic !important; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-FzTtzM_Pw0 { font-size: 25px !important;font-weight: 400 !important;text-align: center;padding-top: 10px;box-sizing: border-box;cursor: text;text-decoration-line: inherit;font-style: italic !important; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-FzTtzM_Pw0 { font-size: 25px !important;font-weight: 400 !important;text-align: center;padding-top: 10px;box-sizing: border-box;cursor: text;text-decoration-line: inherit;font-style: italic !important; } }

 @media (max-width: 639px) { .gp-component-id-kxbJdv1c1D[data-gp-component] { border-left-style: dashed;border-right-style: dashed;border-top-style: dashed;border-bottom-style: dashed;border-left-width: 0px;border-right-width: 0px;border-top-width: 2px;border-bottom-width: 0px;border-left-color: rgb(32, 45, 60);border-right-color: rgb(32, 45, 60);border-top-color: rgb(32, 45, 60);border-bottom-color: rgb(32, 45, 60);margin-left: auto;margin-right: auto;margin-top: 16px;padding-bottom: 8px;width: 100%; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-kxbJdv1c1D[data-gp-component] { border-left-style: dashed;border-right-style: dashed;border-top-style: dashed;border-bottom-style: dashed;border-left-width: 0px;border-right-width: 0px;border-top-width: 2px;border-bottom-width: 0px;border-left-color: rgb(32, 45, 60);border-right-color: rgb(32, 45, 60);border-top-color: rgb(32, 45, 60);border-bottom-color: rgb(32, 45, 60);margin-left: auto;margin-right: auto;margin-top: 16px;padding-bottom: 8px;width: 100%; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-kxbJdv1c1D[data-gp-component] { border-left-style: dashed;border-right-style: dashed;border-top-style: dashed;border-bottom-style: dashed;border-left-width: 0px;border-right-width: 0px;border-top-width: 2px;border-bottom-width: 0px;border-left-color: rgb(32, 45, 60);border-right-color: rgb(32, 45, 60);border-top-color: rgb(32, 45, 60);border-bottom-color: rgb(32, 45, 60);margin-left: auto;margin-right: auto;margin-top: 16px;padding-bottom: 8px;width: 100%; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-kxbJdv1c1D[data-gp-component] { border-left-style: dashed;border-right-style: dashed;border-top-style: dashed;border-bottom-style: dashed;border-left-width: 0px;border-right-width: 0px;border-top-width: 2px;border-bottom-width: 0px;border-left-color: rgb(32, 45, 60);border-right-color: rgb(32, 45, 60);border-top-color: rgb(32, 45, 60);border-bottom-color: rgb(32, 45, 60);margin-left: auto;margin-right: auto;margin-top: 16px;padding-bottom: 8px;width: 100%; } } @media (min-width: 1200px) { .gp-component-id-kxbJdv1c1D[data-gp-component] { border-left-style: dashed;border-right-style: dashed;border-top-style: dashed;border-bottom-style: dashed;border-left-width: 0px;border-right-width: 0px;border-top-width: 2px;border-bottom-width: 0px;border-left-color: rgb(32, 45, 60);border-right-color: rgb(32, 45, 60);border-top-color: rgb(32, 45, 60);border-bottom-color: rgb(32, 45, 60);margin-left: auto;margin-right: auto;margin-top: 16px;padding-bottom: 8px;width: 100%; } }

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

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

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

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

