
      
    


      
     


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



 @media (max-width: 639px) { .gp-component-id-ZBQHX1mba[data-gp-component] { border-top-left-radius: 0px;border-top-right-radius: 0px;border-bottom-left-radius: 0px;border-bottom-right-radius: 0px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);width: 100%; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-ZBQHX1mba[data-gp-component] { border-top-left-radius: 0px;border-top-right-radius: 0px;border-bottom-left-radius: 0px;border-bottom-right-radius: 0px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);width: 100%; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-ZBQHX1mba[data-gp-component] { border-top-left-radius: 0px;border-top-right-radius: 0px;border-bottom-left-radius: 0px;border-bottom-right-radius: 0px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);width: 100%; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-ZBQHX1mba[data-gp-component] { border-top-left-radius: 0px;border-top-right-radius: 0px;border-bottom-left-radius: 0px;border-bottom-right-radius: 0px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);width: 100%; } } @media (min-width: 1200px) { .gp-component-id-ZBQHX1mba[data-gp-component] { border-top-left-radius: 0px;border-top-right-radius: 0px;border-bottom-left-radius: 0px;border-bottom-right-radius: 0px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);width: 100%; } }

 @media (max-width: 639px) { [data-gp-text] .gp-component-id-qLDwITP_JiG { font-size: 19px !important;font-weight: inherit !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;font-style: italic !important;text-decoration-line: inherit;overflow-wrap: break-word; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-qLDwITP_JiG { font-size: 19px !important;font-weight: inherit !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;font-style: italic !important;text-decoration-line: inherit;overflow-wrap: break-word; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-qLDwITP_JiG { font-size: 19px !important;font-weight: inherit !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;font-style: italic !important;text-decoration-line: inherit;overflow-wrap: break-word; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-qLDwITP_JiG { font-size: 19px !important;font-weight: inherit !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;font-style: italic !important;text-decoration-line: inherit;overflow-wrap: break-word; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-qLDwITP_JiG { font-size: 19px !important;font-weight: inherit !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;font-style: italic !important;text-decoration-line: inherit;overflow-wrap: break-word; } }

 @media (max-width: 639px) { [data-gp-text] .gp-component-id-_gbA_x83UU4 { font-size: 23px !important;font-weight: 400 !important;color: rgb(4, 81, 174);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-bottom: 5px;font-style: italic !important;overflow-wrap: break-word;text-decoration-line: inherit; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-_gbA_x83UU4 { font-size: 23px !important;font-weight: 400 !important;color: rgb(4, 81, 174);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-bottom: 5px;font-style: italic !important;overflow-wrap: break-word;text-decoration-line: inherit; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-_gbA_x83UU4 { font-size: 23px !important;font-weight: 400 !important;color: rgb(4, 81, 174);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-bottom: 5px;font-style: italic !important;overflow-wrap: break-word;text-decoration-line: inherit; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-_gbA_x83UU4 { font-size: 23px !important;font-weight: 400 !important;color: rgb(4, 81, 174);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-bottom: 5px;font-style: italic !important;overflow-wrap: break-word;text-decoration-line: inherit; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-_gbA_x83UU4 { font-size: 23px !important;font-weight: 400 !important;color: rgb(4, 81, 174);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-bottom: 5px;font-style: italic !important;overflow-wrap: break-word;text-decoration-line: inherit; } }

 @media (max-width: 639px) { [data-gp-text] .gp-component-id-fjuC_KDph { font-weight: 600;color: rgb(160, 34, 72);text-align: center;padding-top: 10px; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-fjuC_KDph { font-weight: 600;color: rgb(160, 34, 72);text-align: center;padding-top: 10px; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-fjuC_KDph { font-weight: 600;color: rgb(160, 34, 72);text-align: center;padding-top: 10px; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-fjuC_KDph { font-weight: 600;color: rgb(160, 34, 72);text-align: center;padding-top: 10px; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-fjuC_KDph { font-weight: 600;color: rgb(160, 34, 72);text-align: center;padding-top: 10px; } }

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

 .gp-component-id-2KZTcGhjz9.gp-component > [data-section-overlay] { position: absolute;right: 0px;left: 0px;top: 0px;bottom: 0px; } @media (max-width: 639px) { .gp-component-id-2KZTcGhjz9.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-2KZTcGhjz9.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-2KZTcGhjz9.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-2KZTcGhjz9.gp-component > [data-section-overlay] { position: absolute;right: 0px;left: 0px;top: 0px;bottom: 0px; } } @media (min-width: 1200px) { .gp-component-id-2KZTcGhjz9.gp-component > [data-section-overlay] { position: absolute;right: 0px;left: 0px;top: 0px;bottom: 0px; } }

 @media (max-width: 639px) { .gp-component-id-MiU58Vh06[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: 0px;list-style-position: inside;list-style-type: inherit; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-MiU58Vh06[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: 0px;list-style-position: inside;list-style-type: inherit; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-MiU58Vh06[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: 0px;list-style-position: inside;list-style-type: inherit; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-MiU58Vh06[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: 0px;list-style-position: inside;list-style-type: inherit; } } @media (min-width: 1200px) { .gp-component-id-MiU58Vh06[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: 0px;list-style-position: inside;list-style-type: inherit; } }

 @media (max-width: 639px) { .gp-component-id-Jm6DqG7yyd { font-size: 23px !important;margin-left: 8px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-Jm6DqG7yyd { font-size: 23px !important;margin-left: 8px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-Jm6DqG7yyd { font-size: 23px !important;margin-left: 8px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-Jm6DqG7yyd { font-size: 23px !important;margin-left: 8px; } } @media (min-width: 1200px) { .gp-component-id-Jm6DqG7yyd { font-size: 23px !important;margin-left: 8px; } }

 @media (max-width: 639px) { [data-gp-text] .gp-component-id-cpV0xyMeLd { font-size: 23px !important;margin-left: 8px; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-cpV0xyMeLd { font-size: 23px !important;margin-left: 8px; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-cpV0xyMeLd { font-size: 23px !important;margin-left: 8px; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-cpV0xyMeLd { font-size: 23px !important;margin-left: 8px; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-cpV0xyMeLd { font-size: 23px !important;margin-left: 8px; } }

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

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

 @media (max-width: 639px) { .gp-component-id-Frugp86HZF { font-size: 23px !important;margin-left: 8px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-Frugp86HZF { font-size: 23px !important;margin-left: 8px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-Frugp86HZF { font-size: 23px !important;margin-left: 8px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-Frugp86HZF { font-size: 23px !important;margin-left: 8px; } } @media (min-width: 1200px) { .gp-component-id-Frugp86HZF { font-size: 23px !important;margin-left: 8px; } }

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

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

 @media (max-width: 639px) { .gp-component-id-d58E8mPCaq { font-size: 23px !important;margin-left: 8px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-d58E8mPCaq { font-size: 23px !important;margin-left: 8px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-d58E8mPCaq { font-size: 23px !important;margin-left: 8px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-d58E8mPCaq { font-size: 23px !important;margin-left: 8px; } } @media (min-width: 1200px) { .gp-component-id-d58E8mPCaq { font-size: 23px !important;margin-left: 8px; } }

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

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

 @media (max-width: 639px) { .gp-component-id-x4stSJrScN { font-size: 23px !important;margin-left: 8px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-x4stSJrScN { font-size: 23px !important;margin-left: 8px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-x4stSJrScN { font-size: 23px !important;margin-left: 8px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-x4stSJrScN { font-size: 23px !important;margin-left: 8px; } } @media (min-width: 1200px) { .gp-component-id-x4stSJrScN { font-size: 23px !important;margin-left: 8px; } }

 @media (max-width: 639px) { .gp-component-id-2boZ3ysqw[data-gp-component] { font-size: 38px !important;color: rgb(16, 137, 62);line-height: 1;display: inline-block; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-2boZ3ysqw[data-gp-component] { font-size: 38px !important;color: rgb(16, 137, 62);line-height: 1;display: inline-block; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-2boZ3ysqw[data-gp-component] { font-size: 38px !important;color: rgb(16, 137, 62);line-height: 1;display: inline-block; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-2boZ3ysqw[data-gp-component] { font-size: 38px !important;color: rgb(16, 137, 62);line-height: 1;display: inline-block; } } @media (min-width: 1200px) { .gp-component-id-2boZ3ysqw[data-gp-component] { font-size: 38px !important;color: rgb(16, 137, 62);line-height: 1;display: inline-block; } }

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

 @media (max-width: 639px) { .gp-component-id-OnBvKh54g { font-size: 23px !important;margin-left: 8px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-OnBvKh54g { font-size: 23px !important;margin-left: 8px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-OnBvKh54g { font-size: 23px !important;margin-left: 8px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-OnBvKh54g { font-size: 23px !important;margin-left: 8px; } } @media (min-width: 1200px) { .gp-component-id-OnBvKh54g { font-size: 23px !important;margin-left: 8px; } }

 @media (max-width: 639px) { [data-gp-text] .gp-component-id-qmXDtb9CEo { font-size: 23px !important;margin-left: 8px; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-qmXDtb9CEo { font-size: 23px !important;margin-left: 8px; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-qmXDtb9CEo { font-size: 23px !important;margin-left: 8px; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-qmXDtb9CEo { font-size: 23px !important;margin-left: 8px; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-qmXDtb9CEo { font-size: 23px !important;margin-left: 8px; } }

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

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

 @media (max-width: 639px) { .gp-component-id-PH7a_WOYPQ { font-size: 23px !important;margin-left: 8px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-PH7a_WOYPQ { font-size: 23px !important;margin-left: 8px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-PH7a_WOYPQ { font-size: 23px !important;margin-left: 8px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-PH7a_WOYPQ { font-size: 23px !important;margin-left: 8px; } } @media (min-width: 1200px) { .gp-component-id-PH7a_WOYPQ { font-size: 23px !important;margin-left: 8px; } }

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

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

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

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

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

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

 @media (max-width: 639px) { [data-gp-text] .gp-component-id-uPXKumJiL { font-size: 35px !important;font-weight: 600;color: rgba(8, 43, 21, 1);text-align: center; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-uPXKumJiL { font-size: 35px !important;font-weight: 600;color: rgba(8, 43, 21, 1);text-align: center; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-uPXKumJiL { font-size: 35px !important;font-weight: 600;color: rgba(8, 43, 21, 1);text-align: center; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-uPXKumJiL { font-size: 35px !important;font-weight: 600;color: rgba(8, 43, 21, 1);text-align: center; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-uPXKumJiL { font-size: 35px !important;font-weight: 600;color: rgba(8, 43, 21, 1);text-align: center; } }

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

 .gp-component-id-hBJWpKmpg { 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-hBJWpKmpg { 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-hBJWpKmpg { 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-hBJWpKmpg { 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-hBJWpKmpg { 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-hBJWpKmpg { 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; } }

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

 @media (max-width: 639px) { [data-gp-text] .gp-component-id-lIbMfxJG5 { font-size: 18px !important;color: rgb(4, 81, 174);text-align: center;text-decoration-line: inherit;font-style: italic !important; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-lIbMfxJG5 { font-size: 18px !important;color: rgb(4, 81, 174);text-align: center;text-decoration-line: inherit;font-style: italic !important; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-lIbMfxJG5 { font-size: 18px !important;color: rgb(4, 81, 174);text-align: center;text-decoration-line: inherit;font-style: italic !important; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-lIbMfxJG5 { font-size: 18px !important;color: rgb(4, 81, 174);text-align: center;text-decoration-line: inherit;font-style: italic !important; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-lIbMfxJG5 { font-size: 18px !important;color: rgb(4, 81, 174);text-align: center;text-decoration-line: inherit;font-style: italic !important; } }

 @media (max-width: 639px) { [data-gp-text] .gp-component-id-nRlaqMDVO { font-weight: 700;color: rgba(115, 13, 13, 1);font-style: inherit;text-decoration-line: underline ; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-nRlaqMDVO { font-weight: 700;color: rgba(115, 13, 13, 1);font-style: inherit;text-decoration-line: underline ; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-nRlaqMDVO { font-weight: 700;color: rgba(115, 13, 13, 1);font-style: inherit;text-decoration-line: underline ; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-nRlaqMDVO { font-weight: 700;color: rgba(115, 13, 13, 1);font-style: inherit;text-decoration-line: underline ; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-nRlaqMDVO { font-weight: 700;color: rgba(115, 13, 13, 1);font-style: inherit;text-decoration-line: underline ; } }

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

 .gp-component-id-RQSuv5xB1.gp-component > [data-section-overlay] { right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute; } @media (max-width: 639px) { .gp-component-id-RQSuv5xB1.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-RQSuv5xB1.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-RQSuv5xB1.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-RQSuv5xB1.gp-component > [data-section-overlay] { right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute; } } @media (min-width: 1200px) { .gp-component-id-RQSuv5xB1.gp-component > [data-section-overlay] { right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute; } }

 @media (max-width: 639px) { [data-gp-text] .gp-component-id-b8fSyAqRq { font-size: 30px !important;color: rgb(119, 50, 0);text-align: center;padding-top: 0px; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-b8fSyAqRq { font-size: 30px !important;color: rgb(119, 50, 0);text-align: center;padding-top: 0px; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-b8fSyAqRq { font-size: 30px !important;color: rgb(119, 50, 0);text-align: center;padding-top: 0px; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-b8fSyAqRq { font-size: 30px !important;color: rgb(119, 50, 0);text-align: center;padding-top: 0px; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-b8fSyAqRq { font-size: 30px !important;color: rgb(119, 50, 0);text-align: center;padding-top: 0px; } }

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

 @media (max-width: 639px) { [data-gp-text] .gp-component-id-7TXDFDPRy { font-size: 26px !important;color: rgb(3, 23, 48);text-align: center;padding-top: 10px;padding-bottom: 20px; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-7TXDFDPRy { font-size: 26px !important;color: rgb(3, 23, 48);text-align: center;padding-top: 10px;padding-bottom: 20px; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-7TXDFDPRy { font-size: 26px !important;color: rgb(3, 23, 48);text-align: center;padding-top: 10px;padding-bottom: 20px; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-7TXDFDPRy { font-size: 26px !important;color: rgb(3, 23, 48);text-align: center;padding-top: 10px;padding-bottom: 20px; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-7TXDFDPRy { font-size: 26px !important;color: rgb(3, 23, 48);text-align: center;padding-top: 10px;padding-bottom: 20px; } }

 @media (max-width: 639px) { [data-gp-text] .gp-component-id-AqAVXLrJU { font-size: 18px !important;color: rgb(82, 14, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-AqAVXLrJU { font-size: 18px !important;color: rgb(82, 14, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-AqAVXLrJU { font-size: 18px !important;color: rgb(82, 14, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-AqAVXLrJU { font-size: 18px !important;color: rgb(82, 14, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-AqAVXLrJU { font-size: 18px !important;color: rgb(82, 14, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px; } }

 .gp-component-id-C18U4zGXxU.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-C18U4zGXxU.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-C18U4zGXxU.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-C18U4zGXxU.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-C18U4zGXxU.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-C18U4zGXxU.gp-component > [data-section-overlay] { background-color: rgb(234, 240, 243);right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute; } }

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

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

 @media (max-width: 639px) { .gp-component-id-V58G06elyip[data-gp-component] { margin-bottom: 0px;padding-top: 0px;width: 100%;justify-content: center;align-items: center;display: flex;position: relative !important; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-V58G06elyip[data-gp-component] { margin-bottom: 0px;padding-top: 0px;width: 100%;justify-content: center;align-items: center;display: flex;position: relative !important; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-V58G06elyip[data-gp-component] { margin-bottom: 0px;padding-top: 0px;width: 100%;justify-content: center;align-items: center;display: flex;position: relative !important; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-V58G06elyip[data-gp-component] { margin-bottom: 0px;padding-top: 0px;width: 100%;justify-content: center;align-items: center;display: flex;position: relative !important; } } @media (min-width: 1200px) { .gp-component-id-V58G06elyip[data-gp-component] { margin-bottom: 0px;padding-top: 0px;width: 100%;justify-content: center;align-items: center;display: flex;position: relative !important; } }

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

 @media (max-width: 639px) { [data-gp-text] .gp-component-id-00xpSrlWZ { font-weight: 600;color: rgba(8, 43, 21, 1);text-align: center; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-00xpSrlWZ { font-weight: 600;color: rgba(8, 43, 21, 1);text-align: center; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-00xpSrlWZ { font-weight: 600;color: rgba(8, 43, 21, 1);text-align: center; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-00xpSrlWZ { font-weight: 600;color: rgba(8, 43, 21, 1);text-align: center; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-00xpSrlWZ { font-weight: 600;color: rgba(8, 43, 21, 1);text-align: center; } }

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

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

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

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

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

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

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

 @media (max-width: 639px) { [data-gp-text] .gp-component-id-z8sXt0xcA { font-size: 27px !important;font-weight: 600 !important;color: rgb(4, 81, 174);text-align: center;margin-top: 20px;text-decoration-line: underline;font-style: inherit !important; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-z8sXt0xcA { font-size: 27px !important;font-weight: 600 !important;color: rgb(4, 81, 174);text-align: center;margin-top: 20px;text-decoration-line: underline;font-style: inherit !important; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-z8sXt0xcA { font-size: 27px !important;font-weight: 600 !important;color: rgb(4, 81, 174);text-align: center;margin-top: 20px;text-decoration-line: underline;font-style: inherit !important; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-z8sXt0xcA { font-size: 27px !important;font-weight: 600 !important;color: rgb(4, 81, 174);text-align: center;margin-top: 20px;text-decoration-line: underline;font-style: inherit !important; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-z8sXt0xcA { font-size: 27px !important;font-weight: 600 !important;color: rgb(4, 81, 174);text-align: center;margin-top: 20px;text-decoration-line: underline;font-style: inherit !important; } }

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

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

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

 @media (max-width: 639px) { .gp-component-id-JUZYQl0rXI { font-weight: 700;color: rgb(32, 45, 60);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-JUZYQl0rXI { font-weight: 700;color: rgb(32, 45, 60);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-JUZYQl0rXI { font-weight: 700;color: rgb(32, 45, 60);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-JUZYQl0rXI { font-weight: 700;color: rgb(32, 45, 60);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } } @media (min-width: 1200px) { .gp-component-id-JUZYQl0rXI { font-weight: 700;color: rgb(32, 45, 60);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } }

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

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

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

 @media (max-width: 639px) { .gp-component-id-0_u6Tt2v7k { font-weight: 700;color: rgb(32, 45, 60);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-0_u6Tt2v7k { font-weight: 700;color: rgb(32, 45, 60);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-0_u6Tt2v7k { font-weight: 700;color: rgb(32, 45, 60);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-0_u6Tt2v7k { font-weight: 700;color: rgb(32, 45, 60);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } } @media (min-width: 1200px) { .gp-component-id-0_u6Tt2v7k { font-weight: 700;color: rgb(32, 45, 60);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } }

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

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

 @media (max-width: 639px) { .gp-component-id-zqewoCPkJj { font-weight: 700;color: rgb(32, 45, 60);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-zqewoCPkJj { font-weight: 700;color: rgb(32, 45, 60);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-zqewoCPkJj { font-weight: 700;color: rgb(32, 45, 60);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-zqewoCPkJj { font-weight: 700;color: rgb(32, 45, 60);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } } @media (min-width: 1200px) { .gp-component-id-zqewoCPkJj { font-weight: 700;color: rgb(32, 45, 60);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } }

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

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

 @media (max-width: 639px) { .gp-component-id-vRU0yFHA31 { font-weight: 700;color: rgb(32, 45, 60);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-vRU0yFHA31 { font-weight: 700;color: rgb(32, 45, 60);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-vRU0yFHA31 { font-weight: 700;color: rgb(32, 45, 60);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-vRU0yFHA31 { font-weight: 700;color: rgb(32, 45, 60);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } } @media (min-width: 1200px) { .gp-component-id-vRU0yFHA31 { font-weight: 700;color: rgb(32, 45, 60);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } }

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

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

 @media (max-width: 639px) { .gp-component-id-muaGjAZcZ5 { font-weight: 700;color: rgb(32, 45, 60);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-muaGjAZcZ5 { font-weight: 700;color: rgb(32, 45, 60);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-muaGjAZcZ5 { font-weight: 700;color: rgb(32, 45, 60);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-muaGjAZcZ5 { font-weight: 700;color: rgb(32, 45, 60);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } } @media (min-width: 1200px) { .gp-component-id-muaGjAZcZ5 { font-weight: 700;color: rgb(32, 45, 60);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } }

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

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

 @media (max-width: 639px) { [data-gp-text] .gp-component-id-9DFMT9VVth { color: rgb(57, 75, 86);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-9DFMT9VVth { color: rgb(57, 75, 86);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-9DFMT9VVth { color: rgb(57, 75, 86);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-9DFMT9VVth { color: rgb(57, 75, 86);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-9DFMT9VVth { color: rgb(57, 75, 86);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } }

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

 @media (max-width: 639px) { [data-gp-text] .gp-component-id-Afq5h7Nru { font-size: 25px !important;font-weight: 700;color: rgb(4, 81, 174);text-align: center; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-Afq5h7Nru { font-size: 25px !important;font-weight: 700;color: rgb(4, 81, 174);text-align: center; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-Afq5h7Nru { font-size: 25px !important;font-weight: 700;color: rgb(4, 81, 174);text-align: center; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-Afq5h7Nru { font-size: 25px !important;font-weight: 700;color: rgb(4, 81, 174);text-align: center; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-Afq5h7Nru { font-size: 25px !important;font-weight: 700;color: rgb(4, 81, 174);text-align: center; } }

 @media (max-width: 639px) { [data-gp-text] .gp-component-id-ZNL2hcn0ur { font-size: 31px !important;color: rgba(4, 81, 174, 1);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 12px;cursor: text;box-sizing: border-box; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-ZNL2hcn0ur { font-size: 31px !important;color: rgba(4, 81, 174, 1);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 12px;cursor: text;box-sizing: border-box; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-ZNL2hcn0ur { font-size: 31px !important;color: rgba(4, 81, 174, 1);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 12px;cursor: text;box-sizing: border-box; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-ZNL2hcn0ur { font-size: 31px !important;color: rgba(4, 81, 174, 1);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 12px;cursor: text;box-sizing: border-box; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-ZNL2hcn0ur { font-size: 31px !important;color: rgba(4, 81, 174, 1);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 12px;cursor: text;box-sizing: border-box; } }

 @media (max-width: 639px) { [data-gp-text] .gp-component-id-l7YmNX48V9 { font-size: 31px !important;color: rgba(4, 81, 174, 1);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 12px;box-sizing: border-box;cursor: text; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-l7YmNX48V9 { font-size: 31px !important;color: rgba(4, 81, 174, 1);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 12px;box-sizing: border-box;cursor: text; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-l7YmNX48V9 { font-size: 31px !important;color: rgba(4, 81, 174, 1);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 12px;box-sizing: border-box;cursor: text; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-l7YmNX48V9 { font-size: 31px !important;color: rgba(4, 81, 174, 1);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 12px;box-sizing: border-box;cursor: text; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-l7YmNX48V9 { font-size: 31px !important;color: rgba(4, 81, 174, 1);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 12px;box-sizing: border-box;cursor: text; } }

 @media (max-width: 639px) { .gp-component-id-Nen_0bq_9s[data-gp-component] { color: rgba(4, 81, 174, 1);padding-top: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;font-style: inherit;text-decoration-line: inherit; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-Nen_0bq_9s[data-gp-component] { color: rgba(4, 81, 174, 1);padding-top: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;font-style: inherit;text-decoration-line: inherit; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-Nen_0bq_9s[data-gp-component] { color: rgba(4, 81, 174, 1);padding-top: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;font-style: inherit;text-decoration-line: inherit; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-Nen_0bq_9s[data-gp-component] { color: rgba(4, 81, 174, 1);padding-top: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;font-style: inherit;text-decoration-line: inherit; } } @media (min-width: 1200px) { .gp-component-id-Nen_0bq_9s[data-gp-component] { color: rgba(4, 81, 174, 1);padding-top: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;font-style: inherit;text-decoration-line: inherit; } }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

 @media (max-width: 639px) { [data-gp-text] .gp-component-id-g9z0FPNLyh { font-size: 22px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 28px;font-style: italic;text-decoration-line: inherit; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-g9z0FPNLyh { font-size: 22px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 28px;font-style: italic;text-decoration-line: inherit; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-g9z0FPNLyh { font-size: 22px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 28px;font-style: italic;text-decoration-line: inherit; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-g9z0FPNLyh { font-size: 22px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 28px;font-style: italic;text-decoration-line: inherit; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-g9z0FPNLyh { font-size: 22px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 28px;font-style: italic;text-decoration-line: inherit; } }

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

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

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

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

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

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

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

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

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

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

 .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%;display: flex;align-items: center; } } @media (min-width: 1200px) { .gp-component-id-GY6Cav_s4n { width: 100%;display: flex;align-items: center; } }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

 .gp-component-id-pSTFZURrZV { border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%; } @media (max-width: 639px) { .gp-component-id-pSTFZURrZV { border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;object-fit: cover;object-position: center center;vertical-align: middle;display: inline-flex;align-items: flex-start;justify-content: flex-start;box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-pSTFZURrZV { border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;object-fit: cover;object-position: center center;vertical-align: middle;display: inline-flex;align-items: flex-start;justify-content: flex-start;box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-pSTFZURrZV { border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;object-fit: cover;object-position: center center;vertical-align: middle;display: inline-flex;align-items: flex-start;justify-content: flex-start;box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-pSTFZURrZV { border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;object-fit: cover;object-position: center center;vertical-align: middle;display: inline-flex;align-items: flex-start;justify-content: flex-start;box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px; } } @media (min-width: 1200px) { .gp-component-id-pSTFZURrZV { border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;object-fit: cover;object-position: center center;vertical-align: middle;display: inline-flex;align-items: flex-start;justify-content: flex-start;box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px; } }

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

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

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

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

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

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

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

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

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

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

 .gp-component-id-IPSr3lWdK3 { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: inherit;overflow-wrap: break-word;font-weight: inherit; } @media (max-width: 639px) { .gp-component-id-IPSr3lWdK3 { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 25px !important;overflow-wrap: break-word;font-weight: 400 !important;font-style: italic !important;text-decoration-line: inherit;cursor: text;box-sizing: border-box;padding-top: 10px;text-align: center; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-IPSr3lWdK3 { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 25px !important;overflow-wrap: break-word;font-weight: 400 !important;font-style: italic !important;text-decoration-line: inherit;cursor: text;box-sizing: border-box;padding-top: 10px;text-align: center; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-IPSr3lWdK3 { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 25px !important;overflow-wrap: break-word;font-weight: 400 !important;font-style: italic !important;text-decoration-line: inherit;cursor: text;box-sizing: border-box;padding-top: 10px;text-align: center; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-IPSr3lWdK3 { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 25px !important;overflow-wrap: break-word;font-weight: 400 !important;font-style: italic !important;text-decoration-line: inherit;cursor: text;box-sizing: border-box;padding-top: 10px;text-align: center; } } @media (min-width: 1200px) { .gp-component-id-IPSr3lWdK3 { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 25px !important;overflow-wrap: break-word;font-weight: 400 !important;font-style: italic !important;text-decoration-line: inherit;cursor: text;box-sizing: border-box;padding-top: 10px;text-align: center; } }

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

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

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

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

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

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

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

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

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

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

 .gp-component-id-gNaD6Z92iNT { margin-bottom: 24px;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;display: flex;flex-direction: column; } @media (max-width: 639px) { .gp-component-id-gNaD6Z92iNT { margin-bottom: 24px;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;display: flex;flex-direction: column; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-gNaD6Z92iNT { margin-bottom: 24px;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;display: flex;flex-direction: column; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-gNaD6Z92iNT { margin-bottom: 24px;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;display: flex;flex-direction: column; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-gNaD6Z92iNT { margin-bottom: 24px;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;display: flex;flex-direction: column; } } @media (min-width: 1200px) { .gp-component-id-gNaD6Z92iNT { margin-bottom: 24px;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;display: flex;flex-direction: column; } }

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

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

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

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

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

 .gp-component-id-XgvoFJGlIjL { display: inline-block;color: inherit;background-color: transparent;cursor: pointer;font-size: 48px;line-height: 1;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial; } @media (max-width: 639px) { .gp-component-id-XgvoFJGlIjL { display: inline-block;color: rgb(134, 192, 107);background-color: transparent;cursor: pointer;font-size: 38px !important;line-height: 1;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;margin-right: 8px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-XgvoFJGlIjL { display: inline-block;color: rgb(134, 192, 107);background-color: transparent;cursor: pointer;font-size: 38px !important;line-height: 1;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;margin-right: 8px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-XgvoFJGlIjL { display: inline-block;color: rgb(134, 192, 107);background-color: transparent;cursor: pointer;font-size: 38px !important;line-height: 1;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;margin-right: 8px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-XgvoFJGlIjL { display: inline-block;color: rgb(134, 192, 107);background-color: transparent;cursor: pointer;font-size: 38px !important;line-height: 1;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;margin-right: 8px; } } @media (min-width: 1200px) { .gp-component-id-XgvoFJGlIjL { display: inline-block;color: rgb(134, 192, 107);background-color: transparent;cursor: pointer;font-size: 38px !important;line-height: 1;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;margin-right: 8px; } }

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

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

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

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

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

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

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

 .gp-component-id-0jD0mC3kKrW { display: inline-block;color: inherit;background-color: transparent;cursor: pointer;font-size: 48px;line-height: 1;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial; } @media (max-width: 639px) { .gp-component-id-0jD0mC3kKrW { display: inline-block;color: rgb(134, 192, 107);background-color: transparent;cursor: pointer;font-size: 38px !important;line-height: 1;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;margin-right: 8px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-0jD0mC3kKrW { display: inline-block;color: rgb(134, 192, 107);background-color: transparent;cursor: pointer;font-size: 38px !important;line-height: 1;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;margin-right: 8px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-0jD0mC3kKrW { display: inline-block;color: rgb(134, 192, 107);background-color: transparent;cursor: pointer;font-size: 38px !important;line-height: 1;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;margin-right: 8px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-0jD0mC3kKrW { display: inline-block;color: rgb(134, 192, 107);background-color: transparent;cursor: pointer;font-size: 38px !important;line-height: 1;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;margin-right: 8px; } } @media (min-width: 1200px) { .gp-component-id-0jD0mC3kKrW { display: inline-block;color: rgb(134, 192, 107);background-color: transparent;cursor: pointer;font-size: 38px !important;line-height: 1;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;margin-right: 8px; } }

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

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

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

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

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

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

 .gp-component-id-wsKkKJHz5KU { display: inline-block;color: inherit;background-color: transparent;cursor: pointer;font-size: 48px;line-height: 1;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial; } @media (max-width: 639px) { .gp-component-id-wsKkKJHz5KU { display: inline-block;color: rgb(134, 192, 107);background-color: transparent;cursor: pointer;font-size: 38px !important;line-height: 1;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;margin-right: 8px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-wsKkKJHz5KU { display: inline-block;color: rgb(134, 192, 107);background-color: transparent;cursor: pointer;font-size: 38px !important;line-height: 1;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;margin-right: 8px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-wsKkKJHz5KU { display: inline-block;color: rgb(134, 192, 107);background-color: transparent;cursor: pointer;font-size: 38px !important;line-height: 1;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;margin-right: 8px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-wsKkKJHz5KU { display: inline-block;color: rgb(134, 192, 107);background-color: transparent;cursor: pointer;font-size: 38px !important;line-height: 1;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;margin-right: 8px; } } @media (min-width: 1200px) { .gp-component-id-wsKkKJHz5KU { display: inline-block;color: rgb(134, 192, 107);background-color: transparent;cursor: pointer;font-size: 38px !important;line-height: 1;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;margin-right: 8px; } }

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

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

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

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

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

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

 .gp-component-id-RuyzQz7IJt { display: inline-block;color: inherit;background-color: transparent;cursor: pointer;font-size: 48px;line-height: 1;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial; } @media (max-width: 639px) { .gp-component-id-RuyzQz7IJt { display: inline-block;color: rgb(134, 192, 107);background-color: transparent;cursor: pointer;font-size: 38px !important;line-height: 1;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;margin-right: 8px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-RuyzQz7IJt { display: inline-block;color: rgb(134, 192, 107);background-color: transparent;cursor: pointer;font-size: 38px !important;line-height: 1;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;margin-right: 8px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-RuyzQz7IJt { display: inline-block;color: rgb(134, 192, 107);background-color: transparent;cursor: pointer;font-size: 38px !important;line-height: 1;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;margin-right: 8px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-RuyzQz7IJt { display: inline-block;color: rgb(134, 192, 107);background-color: transparent;cursor: pointer;font-size: 38px !important;line-height: 1;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;margin-right: 8px; } } @media (min-width: 1200px) { .gp-component-id-RuyzQz7IJt { display: inline-block;color: rgb(134, 192, 107);background-color: transparent;cursor: pointer;font-size: 38px !important;line-height: 1;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;margin-right: 8px; } }

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

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

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

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

 .gp-component-id-_wMjXIrECT { overflow-wrap: break-word;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px; } @media (max-width: 639px) { .gp-component-id-_wMjXIrECT { overflow-wrap: break-word;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;font-size: 36px;font-weight: 400;text-align: center;font-family: Lato; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-_wMjXIrECT { overflow-wrap: break-word;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;font-size: 36px;font-weight: 400;text-align: center;font-family: Lato; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-_wMjXIrECT { overflow-wrap: break-word;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;font-size: 36px;font-weight: 400;text-align: center;font-family: Lato; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-_wMjXIrECT { overflow-wrap: break-word;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;font-size: 36px;font-weight: 400;text-align: center;font-family: Lato; } } @media (min-width: 1200px) { .gp-component-id-_wMjXIrECT { overflow-wrap: break-word;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;font-size: 36px;font-weight: 400;text-align: center;line-height: 1.5;font-family: Lato; } }

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

 .gp-component-id-u3GBXvPv3E { position: relative;z-index: 15; } @media (max-width: 639px) { .gp-component-id-u3GBXvPv3E { position: relative;z-index: 15;font-size: 28px !important;margin-left: auto;margin-right: auto;padding-left: 20px;padding-right: 20px;width: 100%;flex-direction: column;align-items: center;display: flex; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-u3GBXvPv3E { position: relative;z-index: 15;font-size: 28px !important;margin-left: auto;margin-right: auto;padding-left: 20px;padding-right: 20px;width: 100%;max-width: 640px;flex-direction: column;align-items: center;display: flex; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-u3GBXvPv3E { position: relative;z-index: 15;font-size: 28px !important;margin-left: auto;margin-right: auto;padding-left: 20px;padding-right: 20px;width: 100%;max-width: 768px;flex-direction: column;align-items: center;display: flex; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-u3GBXvPv3E { position: relative;z-index: 15;font-size: 28px !important;margin-left: auto;margin-right: auto;padding-left: 20px;padding-right: 20px;width: 100%;max-width: 992px;flex-direction: column;align-items: center;display: flex; } } @media (min-width: 1200px) { .gp-component-id-u3GBXvPv3E { position: relative;z-index: 15;font-size: 28px !important;margin-left: auto;margin-right: auto;padding-left: 20px;padding-right: 20px;width: 100%;max-width: 1200px;flex-direction: column;align-items: center;display: flex; } }

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

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

 .gp-component-id-jFm9kZI1Lp { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word; } @media (max-width: 639px) { .gp-component-id-jFm9kZI1Lp { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-family: Roboto, sans-serif;text-align: center;color: rgb(0, 0, 0);font-weight: 700;font-size: 16px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-jFm9kZI1Lp { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-family: Roboto, sans-serif;text-align: center;color: rgb(0, 0, 0);font-weight: 700;font-size: 16px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-jFm9kZI1Lp { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-family: Roboto, sans-serif;text-align: center;color: rgb(0, 0, 0);font-weight: 700;font-size: 16px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-jFm9kZI1Lp { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-family: Roboto, sans-serif;text-align: center;color: rgb(0, 0, 0);font-weight: 700;font-size: 16px; } } @media (min-width: 1200px) { .gp-component-id-jFm9kZI1Lp { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-family: Roboto, sans-serif;text-align: center;color: rgb(0, 0, 0);font-weight: 700;font-size: 16px; } }

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

 @media (max-width: 639px) { .gp-component-id-w_gtQMeM9M { display: flex;align-items: center;justify-content: center;margin-bottom: 4px;font-family: Roboto, sans-serif;color: rgb(0, 0, 0);font-weight: 700;font-size: 36px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-w_gtQMeM9M { display: flex;align-items: center;justify-content: center;margin-bottom: 4px;font-family: Roboto, sans-serif;color: rgb(0, 0, 0);font-weight: 700;font-size: 36px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-w_gtQMeM9M { display: flex;align-items: center;justify-content: center;margin-bottom: 4px;font-family: Roboto, sans-serif;color: rgb(0, 0, 0);font-weight: 700;font-size: 36px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-w_gtQMeM9M { display: flex;align-items: center;justify-content: center;margin-bottom: 4px;font-family: Roboto, sans-serif;color: rgb(0, 0, 0);font-weight: 700;font-size: 36px; } } @media (min-width: 1200px) { .gp-component-id-w_gtQMeM9M { display: flex;align-items: center;justify-content: center;margin-bottom: 4px;font-family: Roboto, sans-serif;color: rgb(0, 0, 0);font-weight: 700;font-size: 36px; } }

 @media (max-width: 639px) { .gp-component-id-mOrUK2WFUu { height: 96px;width: 96px;padding-bottom: 12px;padding-top: 12px;padding-right: 8px;padding-left: 8px;margin-right: 8px;margin-left: 4px;box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 4px 0px;background-color: rgb(255, 204, 36);border-bottom-right-radius: 12px;border-bottom-left-radius: 12px;border-top-right-radius: 12px;border-top-left-radius: 12px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-mOrUK2WFUu { height: 96px;width: 96px;padding-bottom: 12px;padding-top: 12px;padding-right: 8px;padding-left: 8px;margin-right: 8px;margin-left: 4px;box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 4px 0px;background-color: rgb(255, 204, 36);border-bottom-right-radius: 12px;border-bottom-left-radius: 12px;border-top-right-radius: 12px;border-top-left-radius: 12px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-mOrUK2WFUu { height: 96px;width: 96px;padding-bottom: 12px;padding-top: 12px;padding-right: 8px;padding-left: 8px;margin-right: 16px;margin-left: 4px;box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 4px 0px;background-color: rgb(255, 204, 36);border-bottom-right-radius: 12px;border-bottom-left-radius: 12px;border-top-right-radius: 12px;border-top-left-radius: 12px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-mOrUK2WFUu { height: 96px;width: 96px;padding-bottom: 12px;padding-top: 12px;padding-right: 8px;padding-left: 8px;margin-right: 16px;margin-left: 4px;box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 4px 0px;background-color: rgb(255, 204, 36);border-bottom-right-radius: 12px;border-bottom-left-radius: 12px;border-top-right-radius: 12px;border-top-left-radius: 12px; } } @media (min-width: 1200px) { .gp-component-id-mOrUK2WFUu { height: 96px;width: 96px;padding-bottom: 12px;padding-top: 12px;padding-right: 8px;padding-left: 8px;margin-right: 16px;margin-left: 4px;box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 4px 0px;background-color: rgb(255, 204, 36);border-bottom-right-radius: 12px;border-bottom-left-radius: 12px;border-top-right-radius: 12px;border-top-left-radius: 12px; } }

 .gp-component-id-QMQVlVBbUj { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word; } @media (max-width: 639px) { .gp-component-id-QMQVlVBbUj { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-family: Roboto, sans-serif;text-align: center;color: rgb(0, 0, 0);font-weight: 700;font-size: 16px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-QMQVlVBbUj { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-family: Roboto, sans-serif;text-align: center;color: rgb(0, 0, 0);font-weight: 700;font-size: 16px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-QMQVlVBbUj { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-family: Roboto, sans-serif;text-align: center;color: rgb(0, 0, 0);font-weight: 700;font-size: 16px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-QMQVlVBbUj { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-family: Roboto, sans-serif;text-align: center;color: rgb(0, 0, 0);font-weight: 700;font-size: 16px; } } @media (min-width: 1200px) { .gp-component-id-QMQVlVBbUj { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-family: Roboto, sans-serif;text-align: center;color: rgb(0, 0, 0);font-weight: 700;font-size: 16px; } }

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

 @media (max-width: 639px) { .gp-component-id-m0JW17tDA8 { display: flex;align-items: center;justify-content: center;margin-bottom: 4px;font-family: Roboto, sans-serif;color: rgb(0, 0, 0);font-weight: 700;font-size: 36px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-m0JW17tDA8 { display: flex;align-items: center;justify-content: center;margin-bottom: 4px;font-family: Roboto, sans-serif;color: rgb(0, 0, 0);font-weight: 700;font-size: 36px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-m0JW17tDA8 { display: flex;align-items: center;justify-content: center;margin-bottom: 4px;font-family: Roboto, sans-serif;color: rgb(0, 0, 0);font-weight: 700;font-size: 36px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-m0JW17tDA8 { display: flex;align-items: center;justify-content: center;margin-bottom: 4px;font-family: Roboto, sans-serif;color: rgb(0, 0, 0);font-weight: 700;font-size: 36px; } } @media (min-width: 1200px) { .gp-component-id-m0JW17tDA8 { display: flex;align-items: center;justify-content: center;margin-bottom: 4px;font-family: Roboto, sans-serif;color: rgb(0, 0, 0);font-weight: 700;font-size: 36px; } }

 @media (max-width: 639px) { .gp-component-id-OTDC1QQ9aY { height: 96px;width: 96px;padding-bottom: 12px;padding-top: 12px;padding-right: 0px;padding-left: 0px;margin-right: 4px;margin-left: 4px;box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 4px 0px;background-color: rgb(255, 204, 36);border-bottom-right-radius: 12px;border-bottom-left-radius: 12px;border-top-right-radius: 12px;border-top-left-radius: 12px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-OTDC1QQ9aY { height: 96px;width: 96px;padding-bottom: 12px;padding-top: 12px;padding-right: 0px;padding-left: 0px;margin-right: 4px;margin-left: 4px;box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 4px 0px;background-color: rgb(255, 204, 36);border-bottom-right-radius: 12px;border-bottom-left-radius: 12px;border-top-right-radius: 12px;border-top-left-radius: 12px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-OTDC1QQ9aY { height: 96px;width: 96px;padding-bottom: 12px;padding-top: 12px;padding-right: 0px;padding-left: 0px;margin-right: 4px;margin-left: 4px;box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 4px 0px;background-color: rgb(255, 204, 36);border-bottom-right-radius: 12px;border-bottom-left-radius: 12px;border-top-right-radius: 12px;border-top-left-radius: 12px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-OTDC1QQ9aY { height: 96px;width: 96px;padding-bottom: 12px;padding-top: 12px;padding-right: 0px;padding-left: 0px;margin-right: 4px;margin-left: 4px;box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 4px 0px;background-color: rgb(255, 204, 36);border-bottom-right-radius: 12px;border-bottom-left-radius: 12px;border-top-right-radius: 12px;border-top-left-radius: 12px; } } @media (min-width: 1200px) { .gp-component-id-OTDC1QQ9aY { height: 96px;width: 96px;padding-bottom: 12px;padding-top: 12px;padding-right: 0px;padding-left: 0px;margin-right: 4px;margin-left: 4px;box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 4px 0px;background-color: rgb(255, 204, 36);border-bottom-right-radius: 12px;border-bottom-left-radius: 12px;border-top-right-radius: 12px;border-top-left-radius: 12px; } }

 .gp-component-id-ia9nm1y0yo { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word; } @media (max-width: 639px) { .gp-component-id-ia9nm1y0yo { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-family: Roboto, sans-serif;text-align: center;color: rgb(0, 0, 0);font-weight: 700;font-size: 16px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-ia9nm1y0yo { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-family: Roboto, sans-serif;text-align: center;color: rgb(0, 0, 0);font-weight: 700;font-size: 16px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-ia9nm1y0yo { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-family: Roboto, sans-serif;text-align: center;color: rgb(0, 0, 0);font-weight: 700;font-size: 16px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-ia9nm1y0yo { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-family: Roboto, sans-serif;text-align: center;color: rgb(0, 0, 0);font-weight: 700;font-size: 16px; } } @media (min-width: 1200px) { .gp-component-id-ia9nm1y0yo { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-family: Roboto, sans-serif;text-align: center;color: rgb(0, 0, 0);font-weight: 700;font-size: 16px; } }

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

 @media (max-width: 639px) { .gp-component-id-Fnz3z97FxB { display: flex;align-items: center;justify-content: center;margin-bottom: 4px;margin-right: 0px;margin-left: 0px;font-family: Roboto, sans-serif;color: rgb(0, 0, 0);font-weight: 700;font-size: 36px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-Fnz3z97FxB { display: flex;align-items: center;justify-content: center;margin-bottom: 4px;margin-right: 0px;margin-left: 0px;font-family: Roboto, sans-serif;color: rgb(0, 0, 0);font-weight: 700;font-size: 36px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-Fnz3z97FxB { display: flex;align-items: center;justify-content: center;margin-bottom: 4px;margin-right: 0px;margin-left: 0px;font-family: Roboto, sans-serif;color: rgb(0, 0, 0);font-weight: 700;font-size: 36px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-Fnz3z97FxB { display: flex;align-items: center;justify-content: center;margin-bottom: 4px;margin-right: 0px;margin-left: 0px;font-family: Roboto, sans-serif;color: rgb(0, 0, 0);font-weight: 700;font-size: 36px; } } @media (min-width: 1200px) { .gp-component-id-Fnz3z97FxB { display: flex;align-items: center;justify-content: center;margin-bottom: 4px;margin-right: 0px;margin-left: 0px;font-family: Roboto, sans-serif;color: rgb(0, 0, 0);font-weight: 700;font-size: 36px; } }

 @media (max-width: 639px) { .gp-component-id-FHJ0ZGBolD { height: 96px;width: 96px;padding-bottom: 12px;padding-top: 12px;padding-right: 4px;padding-left: 4px;margin-right: 4px;margin-left: 4px;box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 4px 0px;background-color: rgb(255, 204, 36);border-bottom-right-radius: 12px;border-bottom-left-radius: 12px;border-top-right-radius: 12px;border-top-left-radius: 12px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-FHJ0ZGBolD { height: 96px;width: 96px;padding-bottom: 12px;padding-top: 12px;padding-right: 4px;padding-left: 4px;margin-right: 4px;margin-left: 4px;box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 4px 0px;background-color: rgb(255, 204, 36);border-bottom-right-radius: 12px;border-bottom-left-radius: 12px;border-top-right-radius: 12px;border-top-left-radius: 12px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-FHJ0ZGBolD { height: 96px;width: 96px;padding-bottom: 12px;padding-top: 12px;padding-right: 4px;padding-left: 4px;margin-right: 4px;margin-left: 4px;box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 4px 0px;background-color: rgb(255, 204, 36);border-bottom-right-radius: 12px;border-bottom-left-radius: 12px;border-top-right-radius: 12px;border-top-left-radius: 12px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-FHJ0ZGBolD { height: 96px;width: 96px;padding-bottom: 12px;padding-top: 12px;padding-right: 4px;padding-left: 4px;margin-right: 4px;margin-left: 4px;box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 4px 0px;background-color: rgb(255, 204, 36);border-bottom-right-radius: 12px;border-bottom-left-radius: 12px;border-top-right-radius: 12px;border-top-left-radius: 12px; } } @media (min-width: 1200px) { .gp-component-id-FHJ0ZGBolD { height: 96px;width: 96px;padding-bottom: 12px;padding-top: 12px;padding-right: 4px;padding-left: 4px;margin-right: 4px;margin-left: 4px;box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 4px 0px;background-color: rgb(255, 204, 36);border-bottom-right-radius: 12px;border-bottom-left-radius: 12px;border-top-right-radius: 12px;border-top-left-radius: 12px; } }

 .gp-component-id-0wO4g8MBvE { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word; } @media (max-width: 639px) { .gp-component-id-0wO4g8MBvE { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-family: Roboto, sans-serif;text-align: center;color: rgb(0, 0, 0);font-weight: 700;font-size: 16px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-0wO4g8MBvE { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-family: Roboto, sans-serif;text-align: center;color: rgb(0, 0, 0);font-weight: 700;font-size: 16px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-0wO4g8MBvE { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-family: Roboto, sans-serif;text-align: center;color: rgb(0, 0, 0);font-weight: 700;font-size: 16px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-0wO4g8MBvE { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-family: Roboto, sans-serif;text-align: center;color: rgb(0, 0, 0);font-weight: 700;font-size: 16px; } } @media (min-width: 1200px) { .gp-component-id-0wO4g8MBvE { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-family: Roboto, sans-serif;text-align: center;color: rgb(0, 0, 0);font-weight: 700;font-size: 16px; } }

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

 @media (max-width: 639px) { .gp-component-id-ufSdC0smjK { display: flex;align-items: center;justify-content: center;margin-bottom: 4px;font-family: Roboto, sans-serif;color: rgb(0, 0, 0);font-weight: 700;font-size: 36px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-ufSdC0smjK { display: flex;align-items: center;justify-content: center;margin-bottom: 4px;font-family: Roboto, sans-serif;color: rgb(0, 0, 0);font-weight: 700;font-size: 36px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-ufSdC0smjK { display: flex;align-items: center;justify-content: center;margin-bottom: 4px;font-family: Roboto, sans-serif;color: rgb(0, 0, 0);font-weight: 700;font-size: 36px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-ufSdC0smjK { display: flex;align-items: center;justify-content: center;margin-bottom: 4px;font-family: Roboto, sans-serif;color: rgb(0, 0, 0);font-weight: 700;font-size: 36px; } } @media (min-width: 1200px) { .gp-component-id-ufSdC0smjK { display: flex;align-items: center;justify-content: center;margin-bottom: 4px;font-family: Roboto, sans-serif;color: rgb(0, 0, 0);font-weight: 700;font-size: 36px; } }

 @media (max-width: 639px) { .gp-component-id-IiDZDyDoqoa { height: 96px;width: 96px;padding-bottom: 12px;padding-top: 12px;padding-right: 0px;padding-left: 0px;margin-right: 4px;margin-left: 8px;box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 4px 0px;background-color: rgb(255, 204, 36);border-bottom-right-radius: 12px;border-bottom-left-radius: 12px;border-top-right-radius: 12px;border-top-left-radius: 12px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-IiDZDyDoqoa { height: 96px;width: 96px;padding-bottom: 12px;padding-top: 12px;padding-right: 0px;padding-left: 0px;margin-right: 4px;margin-left: 8px;box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 4px 0px;background-color: rgb(255, 204, 36);border-bottom-right-radius: 12px;border-bottom-left-radius: 12px;border-top-right-radius: 12px;border-top-left-radius: 12px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-IiDZDyDoqoa { height: 96px;width: 96px;padding-bottom: 12px;padding-top: 12px;padding-right: 0px;padding-left: 0px;margin-right: 4px;margin-left: 16px;box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 4px 0px;background-color: rgb(255, 204, 36);border-bottom-right-radius: 12px;border-bottom-left-radius: 12px;border-top-right-radius: 12px;border-top-left-radius: 12px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-IiDZDyDoqoa { height: 96px;width: 96px;padding-bottom: 12px;padding-top: 12px;padding-right: 0px;padding-left: 0px;margin-right: 4px;margin-left: 16px;box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 4px 0px;background-color: rgb(255, 204, 36);border-bottom-right-radius: 12px;border-bottom-left-radius: 12px;border-top-right-radius: 12px;border-top-left-radius: 12px; } } @media (min-width: 1200px) { .gp-component-id-IiDZDyDoqoa { height: 96px;width: 96px;padding-bottom: 12px;padding-top: 12px;padding-right: 0px;padding-left: 0px;margin-right: 4px;margin-left: 16px;box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 4px 0px;background-color: rgb(255, 204, 36);border-bottom-right-radius: 12px;border-bottom-left-radius: 12px;border-top-right-radius: 12px;border-top-left-radius: 12px; } }

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

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

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

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

 .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-vD4Imhyj5 { flex-direction: column;display: flex; } @media (max-width: 639px) { .gp-component-id-vD4Imhyj5 { flex-direction: column;display: flex; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-vD4Imhyj5 { flex-direction: column;display: flex; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-vD4Imhyj5 { flex-direction: column;display: flex; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-vD4Imhyj5 { flex-direction: column;display: flex; } } @media (min-width: 1200px) { .gp-component-id-vD4Imhyj5 { flex-direction: column;display: flex; } }

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

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

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

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

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

 .gp-component-id-uWq6oBZtYL { flex-basis: 0%;flex-shrink: 1;flex-grow: 1;position: absolute;left: 0px;right: 0px;z-index: 20;top: 100%; } @media (max-width: 639px) { .gp-component-id-uWq6oBZtYL { flex-basis: 0%;flex-shrink: 1;flex-grow: 1;position: absolute;left: 0px;right: 0px;z-index: 20;top: 100%; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-uWq6oBZtYL { flex-basis: 0%;flex-shrink: 1;flex-grow: 1;position: absolute;left: 0px;right: 0px;z-index: 20;top: 100%; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-uWq6oBZtYL { flex-basis: 0%;flex-shrink: 1;flex-grow: 1;position: absolute;left: 0px;right: 0px;z-index: 20;top: 100%; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-uWq6oBZtYL { 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; } } @media (min-width: 1200px) { .gp-component-id-uWq6oBZtYL { 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; } }

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

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

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

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

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

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

 [data-gp-text] .gp-component-id-iToKPyTWOy { font-size: 3rem; text-align: center; } @media (min-width: 640px) { [data-gp-text] .gp-component-id-iToKPyTWOy { font-size: 3rem; text-align: center; } } @media (min-width: 768px) { [data-gp-text] .gp-component-id-iToKPyTWOy { font-size: 3rem; text-align: center; } } @media (min-width: 992px) { [data-gp-text] .gp-component-id-iToKPyTWOy { font-size: 3rem; text-align: center; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-iToKPyTWOy { font-size: 3rem; text-align: center; } }

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

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

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

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

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

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

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

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

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

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

