 /* Page Background Gradient with Font Stack */
body, .main-content { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji", sans-serif; background: linear-gradient(to bottom, #e0e7ff 0%, #c0d8ff 40%, #99ccff 100%); background-attachment: fixed; /* Ensures gradient stays fixed on scroll */ margin: 0;
}
/* Ensure the full page takes up the gradient background */
.main-content { min-height: 100vh; /* Ensures the gradient spans the viewport height */ display: flex; justify-content: center; align-items: center; padding: 20px; /* Optional: add padding for spacing */
} /* Container for the floating login link */ .custom-login-link { position: fixed; /* Fixed position to keep it floating */ top: 20px; right: 20px; font-size: 16px; font-weight: bold; z-index: 1000; /* Ensures it stays above other elements */ } /* Styling for the login link */ .custom-login-link a { color: #f2f2f2; /* Customize the color as desired */ text-decoration: none; padding: 8px 12px; border: 1px solid #f2f2f2; border-radius: 4px; } /* Hover effect for the login link */ .custom-login-link a:hover { background-color: #2e86de; color: #fff; }
/* Section Header Styling */
.section-header { font-size: 20px; /* Slightly larger for distinction */ font-weight: bold; font-family: inherit; /* Use unified font stack */ color: #4f4f4f; /* Deep silver color */ margin-bottom: 15px; letter-spacing: 1px; /* Slightly spaced out letters for style */ padding-bottom: 5px; border-bottom: 1px solid #c0c0c0; /* Silver border for distinction */
}
/* Short Description Styling */
.short-description { background-color: #f9f5e6; /* Light, warm yellow-tinted background */ font-size: 16px; font-family: inherit; /* Use unified font stack */ margin-bottom: 15px; color: #333333; padding: 15px; border-radius: 8px; border: 1px solid #eeeeee; box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1); line-height: 1.6; position: relative; font-style: italic; /* Optional italic for emphasis */
}
/* Starting Point Title Styling */
.starting-point-title { font-size: 18px; /* Slightly larger than the main text */ font-weight: bold; font-family: inherit; /* Use unified font stack */ color: #a83232; /* Deep reddish color for contrast */ text-align: center; margin-bottom: 10px; /* Space below the title */
}
/* Ending Point Title Styling */
.ending-point-title { font-size: 18px; /* Slightly larger than the main text */ font-weight: bold; font-family: inherit; /* Use unified font stack */ color: #a83232; /* Deep reddish color for contrast */ text-align: center; margin-bottom: 10px; /* Space below the title */
}
/* Full Description Styling */
.full-description { font-size: 16px; font-family: inherit; /* Use unified font stack */ margin-bottom: 15px; background-color: #fcfcfc; /* Very light gray for a subtle contrast */ color: #2e2e2e; /* Dark gray text color */ padding: 15px; border-radius: 8px; /* Soft rounded corners for visual appeal */ border: 1px solid #eeeeee; /* Lighter border for a softer look */ box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1); /* Light shadow for depth */ line-height: 1.6; /* Increased line-height for readability */
}
/* Project Title Styling */
.project-title { font-size: 26px; font-weight: bold; font-family: inherit; /* Use unified font stack */ text-align: center; margin: 20px 0; color: #2e2e2e; background: linear-gradient(to right, #2b6cb0, #1a3e59); /* Dark blue to navy gradient */ -webkit-background-clip: text; -webkit-text-fill-color: transparent; text-transform: uppercase; letter-spacing: 1.5px; text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2); padding-bottom: 5px; border-bottom: 1px solid #cccccc;
}
/* Teaser and Fade Effect Styling */
.teaser { overflow: hidden; max-height: 10em; /* Controls height of teaser for truncation */ position: relative; padding-bottom: 1.5em; /* Adds space for the fade overlay */
}
.fade-effect { position: absolute; bottom: 0; left: 0; height: 6em; /* Increased height to make the fade more visible */ width: 100%; z-index: 10; background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.6) 60%, rgba(255, 255, 255, 1) 100%); pointer-events: none; /* Allows clicks through the fade effect */
}
/* Centering Button Container */
.button-container { display: flex; justify-content: center; margin-top: 10px;
}
/* Expand Button Styling */
.expand-btn { display: inline-block; width: 150px; height: 30px; font-size: 14px; color: #333333; background: linear-gradient(to bottom, #f0f0f0, #c0c0c0); /* Silver gradient background */ border: 1px solid #999999; border-radius: 5px; cursor: pointer; font-weight: 600; /* Semi-bold */ box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3); transition: background 0.3s ease, box-shadow 0.3s ease; line-height: 30px; /* Center text vertically */
}
/* Hover Effect For Expand */
.expand-btn:hover { background: linear-gradient(to bottom, #e0e0e0, #b0b0b0); /* Slightly darker silver on hover */ box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.4);
}
/* Full Description Container */
.full-description-container { position: relative; /* Reference for sticky positioning */ padding-bottom: 60px; /* Extra space for the close button at the bottom */
}
/* Close Button Styling */
.close-btn { width: 120px; height: 30px; font-size: 14px; color: #ffffff; background: linear-gradient(to bottom, #b33939, #8b1a1a); border: 1px solid #732020; border-radius: 5px; cursor: pointer; font-weight: bold; box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.3); transition: background 0.3s ease, box-shadow 0.3s ease; position: sticky; bottom: 10px; right: 10px; z-index: 1000;
}
/* Mobile Styles for Close Button */
@media (max-width: 768px) { .close-btn { position: fixed; bottom: 10px; left: 50%; transform: translateX(-50%); z-index: 1000; }
}
.close-btn:hover { background: linear-gradient(to bottom, #a82b2b, #611313); box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.4);
}
/* Divider Styling for Mobile */
@media (max-width: 768px) { .divider { height: 3px; background: linear-gradient(to right, #4a90e2, #d9534f); border-radius: 2px; margin: 30px 0; box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2); } .teaser { max-height: 7em; padding-bottom: 2em; } .expand-btn, .close-btn { width: 100%; height: 40px; } .story-block { padding: 20px; margin-bottom: 20px; border: 2px solid #e0e0e0; border-radius: 12px; background-color: #ffffff; box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.15); } .custom-login-link { position: fixed; /* Keeps it fixed while scrolling */ bottom: 20px; /* Moves to the bottom on mobile */ right: 10px; /* Adjusts from right edge */ font-size: 14px; /* Slightly smaller font size */ } .custom-login-link a { background-color: rgba(26, 62, 92, 0.2); /* Dark blue with 80% opacity */ color: #fff; /* White text */ padding: 10px 14px; /* Adjusted padding for button look */ border: none; /* Removes border */ border-radius: 6px; /* Rounded corners */ }
} *{} #IE-warning { display: none; position: fixed; width: 100%; height: 100%; z-index: 9999; background: white; } .IE-warning-message { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); text-align: center; } .gp-component-id-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; } } .gp-component-id-IEKl05KLp.gp-component > [data-section-overlay] { position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px; } @media (max-width: 639px) { .gp-component-id-IEKl05KLp.gp-component > [data-section-overlay] { position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-IEKl05KLp.gp-component > [data-section-overlay] { position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-IEKl05KLp.gp-component > [data-section-overlay] { position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-IEKl05KLp.gp-component > [data-section-overlay] { position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px; } } @media (min-width: 1200px) { .gp-component-id-IEKl05KLp.gp-component > [data-section-overlay] { position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px; } } .gp-component-id-_U41ZWknA.gp-component > [data-section-overlay] { background-color: rgb(255, 255, 255);bottom: 0px;top: 0px;left: 0px;right: 0px;position: absolute; } @media (max-width: 639px) { .gp-component-id-_U41ZWknA.gp-component > [data-section-overlay] { background-color: rgba(255, 255, 255, 0);bottom: 0px;top: 0px;left: 0px;right: 0px;position: absolute; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-_U41ZWknA.gp-component > [data-section-overlay] { background-color: rgba(255, 255, 255, 0);bottom: 0px;top: 0px;left: 0px;right: 0px;position: absolute; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-_U41ZWknA.gp-component > [data-section-overlay] { background-color: rgba(255, 255, 255, 0);bottom: 0px;top: 0px;left: 0px;right: 0px;position: absolute; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-_U41ZWknA.gp-component > [data-section-overlay] { background-color: rgba(255, 255, 255, 0);bottom: 0px;top: 0px;left: 0px;right: 0px;position: absolute; } } @media (min-width: 1200px) { .gp-component-id-_U41ZWknA.gp-component > [data-section-overlay] { background-color: rgba(255, 255, 255, 0);bottom: 0px;top: 0px;left: 0px;right: 0px;position: absolute; } } @media (max-width: 639px) { [data-gp-text] .gp-component-id-cTwNj2tBq { font-size: 25px !important;font-weight: inherit !important;color: rgb(119, 50, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-top: 20px;overflow-wrap: break-word; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-cTwNj2tBq { font-size: 25px !important;font-weight: inherit !important;color: rgb(119, 50, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-top: 20px;overflow-wrap: break-word; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-cTwNj2tBq { font-size: 25px !important;font-weight: inherit !important;color: rgb(119, 50, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-top: 20px;overflow-wrap: break-word; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-cTwNj2tBq { font-size: 25px !important;font-weight: inherit !important;color: rgb(119, 50, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-top: 20px;overflow-wrap: break-word; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-cTwNj2tBq { font-size: 25px !important;font-weight: inherit !important;color: rgb(119, 50, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-top: 20px;overflow-wrap: break-word; } } @media (max-width: 639px) { .gp-component-id-Nen_0bq_9s[data-gp-component] { padding-top: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;text-decoration-line: inherit;font-style: inherit; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-Nen_0bq_9s[data-gp-component] { padding-top: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;text-decoration-line: inherit;font-style: inherit; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-Nen_0bq_9s[data-gp-component] { padding-top: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;text-decoration-line: inherit;font-style: inherit; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-Nen_0bq_9s[data-gp-component] { padding-top: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;text-decoration-line: inherit;font-style: inherit; } } @media (min-width: 1200px) { .gp-component-id-Nen_0bq_9s[data-gp-component] { padding-top: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;text-decoration-line: inherit;font-style: 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 { 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-qGLy_QsFMGY { overflow-wrap: break-word; } @media (max-width: 639px) { .gp-component-id-qGLy_QsFMGY { overflow-wrap: break-word; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-qGLy_QsFMGY { overflow-wrap: break-word; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-qGLy_QsFMGY { overflow-wrap: break-word; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-qGLy_QsFMGY { overflow-wrap: break-word; } } @media (min-width: 1200px) { .gp-component-id-qGLy_QsFMGY { overflow-wrap: break-word; } } .gp-component-id-lSRBskATteH { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: inherit;overflow-wrap: break-word; } @media (max-width: 639px) { .gp-component-id-lSRBskATteH { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: inherit;overflow-wrap: break-word; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-lSRBskATteH { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: inherit;overflow-wrap: break-word; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-lSRBskATteH { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: inherit;overflow-wrap: break-word; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-lSRBskATteH { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: inherit;overflow-wrap: break-word; } } @media (min-width: 1200px) { .gp-component-id-lSRBskATteH { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: inherit;overflow-wrap: break-word; } } .gp-component-id-uch4hra0H { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-weight: inherit;font-size: inherit; } @media (max-width: 639px) { .gp-component-id-uch4hra0H { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-weight: inherit !important;font-size: 18px !important;text-align: center; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-uch4hra0H { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-weight: inherit !important;font-size: 18px !important;text-align: center; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-uch4hra0H { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-weight: inherit !important;font-size: 18px !important;text-align: center; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-uch4hra0H { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-weight: inherit !important;font-size: 18px !important;text-align: center; } } @media (min-width: 1200px) { .gp-component-id-uch4hra0H { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-weight: inherit !important;font-size: 18px !important;text-align: center; } } .gp-component-id-KRVGnopi8h { display: flex;flex-direction: column; } @media (max-width: 639px) { .gp-component-id-KRVGnopi8h { display: flex;flex-direction: column; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-KRVGnopi8h { display: flex;flex-direction: column; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-KRVGnopi8h { display: flex;flex-direction: column; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-KRVGnopi8h { display: flex;flex-direction: column; } } @media (min-width: 1200px) { .gp-component-id-KRVGnopi8h { display: flex;flex-direction: column; } } .gp-component-id-Kb005KOe_gE { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;align-items: center;cursor: pointer;background-color: transparent;color: inherit; } @media (max-width: 639px) { .gp-component-id-Kb005KOe_gE { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;align-items: center;cursor: pointer;background-color: rgb(46, 140, 255);color: rgb(32, 45, 60);font-size: 23px !important;font-weight: 600 !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;margin-top: 10px;margin-bottom: 5px;padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: inline-flex; } .gp-component-id-Kb005KOe_gE:hover,.gp-component-id-Kb005KOe_gE.gp-hover { background-color: rgb(120, 136, 155); } .gp-component-id-Kb005KOe_gE:active,.gp-component-id-Kb005KOe_gE.gp-active { background-color: rgb(32, 45, 60); } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-Kb005KOe_gE { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;align-items: center;cursor: pointer;background-color: rgb(46, 140, 255);color: rgb(32, 45, 60);font-size: 23px !important;font-weight: 600 !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;margin-top: 10px;margin-bottom: 5px;padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: inline-flex; } .gp-component-id-Kb005KOe_gE:hover,.gp-component-id-Kb005KOe_gE.gp-hover { background-color: rgb(120, 136, 155); } .gp-component-id-Kb005KOe_gE:active,.gp-component-id-Kb005KOe_gE.gp-active { background-color: rgb(32, 45, 60); } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-Kb005KOe_gE { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;align-items: center;cursor: pointer;background-color: rgb(46, 140, 255);color: rgb(32, 45, 60);font-size: 23px !important;font-weight: 600 !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;margin-top: 10px;margin-bottom: 5px;padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: inline-flex; } .gp-component-id-Kb005KOe_gE:hover,.gp-component-id-Kb005KOe_gE.gp-hover { background-color: rgb(120, 136, 155); } .gp-component-id-Kb005KOe_gE:active,.gp-component-id-Kb005KOe_gE.gp-active { background-color: rgb(32, 45, 60); } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-Kb005KOe_gE { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;align-items: center;cursor: pointer;background-color: rgb(46, 140, 255);color: rgb(32, 45, 60);font-size: 23px !important;font-weight: 600 !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;margin-top: 10px;margin-bottom: 5px;padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: inline-flex; } .gp-component-id-Kb005KOe_gE:hover,.gp-component-id-Kb005KOe_gE.gp-hover { background-color: rgb(120, 136, 155); } .gp-component-id-Kb005KOe_gE:active,.gp-component-id-Kb005KOe_gE.gp-active { background-color: rgb(32, 45, 60); } } @media (min-width: 1200px) { .gp-component-id-Kb005KOe_gE { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;align-items: center;cursor: pointer;background-color: rgb(46, 140, 255);color: rgb(32, 45, 60);font-size: 23px !important;font-weight: 600 !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;margin-top: 10px;margin-bottom: 5px;padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: inline-flex; } .gp-component-id-Kb005KOe_gE:hover,.gp-component-id-Kb005KOe_gE.gp-hover { background-color: rgb(120, 136, 155); } .gp-component-id-Kb005KOe_gE:active,.gp-component-id-Kb005KOe_gE.gp-active { background-color: rgb(32, 45, 60); } } @media (max-width: 639px) { .gp-component-id-4VCxq0_tu7T { display: flex;justify-content: center;flex-direction: column;width: 100%; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-4VCxq0_tu7T { display: flex;justify-content: center;flex-direction: column;width: 100%; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-4VCxq0_tu7T { display: flex;justify-content: center;flex-direction: column;width: 100%; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-4VCxq0_tu7T { display: flex;justify-content: center;flex-direction: column;width: 100%; } } @media (min-width: 1200px) { .gp-component-id-4VCxq0_tu7T { display: flex;justify-content: center;flex-direction: column;width: 100%; } } .gp-component-id-CG4WZmmMz4 { flex-direction: column;display: flex; } @media (max-width: 639px) { .gp-component-id-CG4WZmmMz4 { flex-direction: column;display: flex; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-CG4WZmmMz4 { flex-direction: column;display: flex; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-CG4WZmmMz4 { flex-direction: column;display: flex; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-CG4WZmmMz4 { flex-direction: column;display: flex; } } @media (min-width: 1200px) { .gp-component-id-CG4WZmmMz4 { flex-direction: column;display: flex; } } .gp-component-id-ot59EHDKwq { flex-direction: column;display: flex; } @media (max-width: 639px) { .gp-component-id-ot59EHDKwq { flex-direction: column;display: flex; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-ot59EHDKwq { flex-direction: column;display: flex; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-ot59EHDKwq { flex-direction: column;display: flex; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-ot59EHDKwq { flex-direction: column;display: flex; } } @media (min-width: 1200px) { .gp-component-id-ot59EHDKwq { flex-direction: column;display: flex; } } .gp-component-id-HqDiAeCWIL { 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-HqDiAeCWIL { 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-HqDiAeCWIL { 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-HqDiAeCWIL { 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-HqDiAeCWIL { 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-HqDiAeCWIL { 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-_U41ZWknA { min-height: 50px;position: relative;z-index: auto; } @media (max-width: 639px) { .gp-component-id-_U41ZWknA { min-height: 50px;position: relative;z-index: auto;padding-bottom: 0px;padding-top: 0px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-_U41ZWknA { min-height: 50px;position: relative;z-index: auto;padding-bottom: 0px;padding-top: 0px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-_U41ZWknA { min-height: 50px;position: relative;z-index: auto;padding-bottom: 0px;padding-top: 0px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-_U41ZWknA { min-height: 50px;position: relative;z-index: auto;padding-bottom: 0px;padding-top: 0px; } } @media (min-width: 1200px) { .gp-component-id-_U41ZWknA { min-height: 50px;position: relative;z-index: auto;padding-bottom: 0px;padding-top: 0px; } } .gp-component-id-TRoAU4PUav { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-weight: inherit;font-size: inherit; } @media (max-width: 639px) { .gp-component-id-TRoAU4PUav { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-weight: 600 !important;font-size: 33px !important;text-align: center;color: rgb(3, 58, 124); } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-TRoAU4PUav { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-weight: 600 !important;font-size: 33px !important;text-align: center;color: rgb(3, 58, 124); } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-TRoAU4PUav { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-weight: 600 !important;font-size: 33px !important;text-align: center;color: rgb(3, 58, 124); } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-TRoAU4PUav { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-weight: 600 !important;font-size: 33px !important;text-align: center;color: rgb(3, 58, 124); } } @media (min-width: 1200px) { .gp-component-id-TRoAU4PUav { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-weight: 600 !important;font-size: 33px !important;text-align: center;color: rgb(3, 58, 124); } } .gp-component-id-SXGdc3OtRZ { flex-direction: column;display: flex; } @media (max-width: 639px) { .gp-component-id-SXGdc3OtRZ { flex-direction: column;display: flex; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-SXGdc3OtRZ { flex-direction: column;display: flex; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-SXGdc3OtRZ { flex-direction: column;display: flex; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-SXGdc3OtRZ { flex-direction: column;display: flex; } } @media (min-width: 1200px) { .gp-component-id-SXGdc3OtRZ { flex-direction: column;display: flex; } } .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-C70U840qC.gp-component > [data-section-overlay] { position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;background-color: rgb(255, 255, 255);z-index: 14; } @media (max-width: 639px) { .gp-component-id-C70U840qC.gp-component > [data-section-overlay] { position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;background-color: rgba(255, 255, 255, 0);z-index: 14; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-C70U840qC.gp-component > [data-section-overlay] { position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;background-color: rgba(255, 255, 255, 0);z-index: 14; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-C70U840qC.gp-component > [data-section-overlay] { position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;background-color: rgba(255, 255, 255, 0);z-index: 14; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-C70U840qC.gp-component > [data-section-overlay] { position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;background-color: rgba(255, 255, 255, 0);z-index: 14; } } @media (min-width: 1200px) { .gp-component-id-C70U840qC.gp-component > [data-section-overlay] { position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;background-color: rgba(255, 255, 255, 0);z-index: 14; } } .gp-component-id-C70U840qC { min-height: 50px;position: relative;z-index: auto; } @media (max-width: 639px) { .gp-component-id-C70U840qC { min-height: 50px;position: relative;z-index: auto;padding-bottom: 0px;padding-top: 0px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-C70U840qC { min-height: 50px;position: relative;z-index: auto;padding-bottom: 0px;padding-top: 0px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-C70U840qC { min-height: 50px;position: relative;z-index: auto;padding-bottom: 0px;padding-top: 0px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-C70U840qC { min-height: 50px;position: relative;z-index: auto;padding-bottom: 0px;padding-top: 0px; } } @media (min-width: 1200px) { .gp-component-id-C70U840qC { min-height: 50px;position: relative;z-index: auto;padding-bottom: 0px;padding-top: 0px; } } .gp-component-id-QvtbgeIf7K { display: flex;flex-direction: column; } @media (max-width: 639px) { .gp-component-id-QvtbgeIf7K { display: flex;flex-direction: column; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-QvtbgeIf7K { display: flex;flex-direction: column; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-QvtbgeIf7K { display: flex;flex-direction: column; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-QvtbgeIf7K { display: flex;flex-direction: column; } } @media (min-width: 1200px) { .gp-component-id-QvtbgeIf7K { display: flex;flex-direction: column; } } .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-_Itg2MMQn { font-weight: inherit;overflow-wrap: break-word;font-size: inherit;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px; } @media (max-width: 639px) { .gp-component-id-_Itg2MMQn { font-weight: 600 !important;overflow-wrap: break-word;font-size: 28px !important;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;text-align: center; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-_Itg2MMQn { font-weight: 600 !important;overflow-wrap: break-word;font-size: 28px !important;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;text-align: center; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-_Itg2MMQn { font-weight: 600 !important;overflow-wrap: break-word;font-size: 28px !important;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;text-align: center; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-_Itg2MMQn { font-weight: 600 !important;overflow-wrap: break-word;font-size: 28px !important;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;text-align: center; } } @media (min-width: 1200px) { .gp-component-id-_Itg2MMQn { font-weight: 600 !important;overflow-wrap: break-word;font-size: 28px !important;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;text-align: center; } } .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-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-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.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-3RDqXch5tl.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-3RDqXch5tl.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-3RDqXch5tl.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-3RDqXch5tl.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-3RDqXch5tl.gp-component > [data-section-overlay] { position: absolute;right: 0px;left: 0px;top: 0px;bottom: 0px;z-index: 14; } } .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.gp-component > [data-section-overlay] { z-index: 14;bottom: 0px;top: 0px;left: 0px;right: 0px;position: absolute; } @media (max-width: 639px) { .gp-component-id-2KZTcGhjz9.gp-component > [data-section-overlay] { z-index: 14;bottom: 0px;top: 0px;left: 0px;right: 0px;position: absolute; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-2KZTcGhjz9.gp-component > [data-section-overlay] { z-index: 14;bottom: 0px;top: 0px;left: 0px;right: 0px;position: absolute; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-2KZTcGhjz9.gp-component > [data-section-overlay] { z-index: 14;bottom: 0px;top: 0px;left: 0px;right: 0px;position: absolute; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-2KZTcGhjz9.gp-component > [data-section-overlay] { z-index: 14;bottom: 0px;top: 0px;left: 0px;right: 0px;position: absolute; } } @media (min-width: 1200px) { .gp-component-id-2KZTcGhjz9.gp-component > [data-section-overlay] { z-index: 14;bottom: 0px;top: 0px;left: 0px;right: 0px;position: absolute; } } .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-Zu00vSixaZ { display: inline-block;line-height: 1; } @media (max-width: 639px) { .gp-component-id-Zu00vSixaZ { display: inline-block;line-height: 1;background-color: rgba(255, 255, 255, 0); } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-Zu00vSixaZ { display: inline-block;line-height: 1; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-Zu00vSixaZ { display: inline-block;line-height: 1; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-Zu00vSixaZ { display: inline-block;line-height: 1; } } @media (min-width: 1200px) { .gp-component-id-Zu00vSixaZ { display: inline-block;line-height: 1; } } .gp-component-id-TIwocJC7VU { cursor: pointer;background-image: initial;background-position-x: initial;background-position-y: initial;background-size: initial;background-repeat: initial;background-attachment: initial;background-origin: initial;background-clip: initial;background-color: transparent;padding-top: 0px;padding-right: 0px;padding-bottom: 0px;padding-left: 0px;appearance: button;text-transform: none;overflow-x: visible;overflow-y: visible;font-family: inherit;font-size: 100%;line-height: 1.15;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px; } .gp-component-id-TIwocJC7VU:focus,.gp-component-id-TIwocJC7VU.gp-focus { outline-color: -webkit-focus-ring-color;outline-style: auto;outline-width: 5px; } @media (max-width: 639px) { .gp-component-id-TIwocJC7VU { cursor: pointer;background-image: initial;background-position-x: initial;background-position-y: initial;background-size: initial;background-repeat: initial;background-attachment: initial;background-origin: initial;background-clip: initial;background-color: rgba(255, 255, 255, 0);padding-top: 0px;padding-right: 0px;padding-bottom: 0px;padding-left: 0px;appearance: button;text-transform: none;overflow-x: visible;overflow-y: visible;font-family: inherit;font-size: 24px;line-height: 1.15;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;align-items: center;display: inline-flex; } .gp-component-id-TIwocJC7VU:focus,.gp-component-id-TIwocJC7VU.gp-focus { outline-color: -webkit-focus-ring-color;outline-style: auto;outline-width: 5px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-TIwocJC7VU { cursor: pointer;background-image: initial;background-position-x: initial;background-position-y: initial;background-size: initial;background-repeat: initial;background-attachment: initial;background-origin: initial;background-clip: initial;background-color: transparent;padding-top: 0px;padding-right: 0px;padding-bottom: 0px;padding-left: 0px;appearance: button;text-transform: none;overflow-x: visible;overflow-y: visible;font-family: inherit;font-size: 24px;line-height: 1.15;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;align-items: center;display: inline-flex; } .gp-component-id-TIwocJC7VU:focus,.gp-component-id-TIwocJC7VU.gp-focus { outline-color: -webkit-focus-ring-color;outline-style: auto;outline-width: 5px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-TIwocJC7VU { cursor: pointer;background-image: initial;background-position-x: initial;background-position-y: initial;background-size: initial;background-repeat: initial;background-attachment: initial;background-origin: initial;background-clip: initial;background-color: transparent;padding-top: 0px;padding-right: 0px;padding-bottom: 0px;padding-left: 0px;appearance: button;text-transform: none;overflow-x: visible;overflow-y: visible;font-family: inherit;font-size: 24px;line-height: 1.15;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;align-items: center;display: inline-flex; } .gp-component-id-TIwocJC7VU:focus,.gp-component-id-TIwocJC7VU.gp-focus { outline-color: -webkit-focus-ring-color;outline-style: auto;outline-width: 5px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-TIwocJC7VU { cursor: pointer;background-image: initial;background-position-x: initial;background-position-y: initial;background-size: initial;background-repeat: initial;background-attachment: initial;background-origin: initial;background-clip: initial;background-color: transparent;padding-top: 0px;padding-right: 0px;padding-bottom: 0px;padding-left: 0px;appearance: button;text-transform: none;overflow-x: visible;overflow-y: visible;font-family: inherit;font-size: 24px;line-height: 1.15;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;align-items: center;display: none; } .gp-component-id-TIwocJC7VU:focus,.gp-component-id-TIwocJC7VU.gp-focus { outline-color: -webkit-focus-ring-color;outline-style: auto;outline-width: 5px; } } @media (min-width: 1200px) { .gp-component-id-TIwocJC7VU { cursor: pointer;background-image: initial;background-position-x: initial;background-position-y: initial;background-size: initial;background-repeat: initial;background-attachment: initial;background-origin: initial;background-clip: initial;background-color: transparent;padding-top: 0px;padding-right: 0px;padding-bottom: 0px;padding-left: 0px;appearance: button;text-transform: none;overflow-x: visible;overflow-y: visible;font-family: inherit;font-size: 24px;line-height: 1.15;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;align-items: center;display: none; } .gp-component-id-TIwocJC7VU:focus,.gp-component-id-TIwocJC7VU.gp-focus { outline-color: -webkit-focus-ring-color;outline-style: auto;outline-width: 5px; } } .gp-component-id-i30zM9oro4 { padding-bottom: 16px;padding-top: 16px;padding-right: 16px;padding-left: 16px;display: block;color: inherit;background-color: transparent;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial; } @media (max-width: 639px) { .gp-component-id-i30zM9oro4 { padding-bottom: 16px;padding-top: 16px;padding-right: 16px;padding-left: 16px;display: block;color: rgb(57, 75, 86);background-color: transparent;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;font-weight: 600; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-i30zM9oro4 { padding-bottom: 16px;padding-top: 16px;padding-right: 16px;padding-left: 16px;display: block;color: rgb(57, 75, 86);background-color: transparent;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-i30zM9oro4 { padding-bottom: 16px;padding-top: 16px;padding-right: 16px;padding-left: 16px;display: block;color: rgb(57, 75, 86);background-color: transparent;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-i30zM9oro4 { padding-bottom: 0px;padding-top: 0px;padding-right: 0px;padding-left: 0px;display: block;color: rgb(57, 75, 86);background-color: transparent;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial; } } @media (min-width: 1200px) { .gp-component-id-i30zM9oro4 { padding-bottom: 0px;padding-top: 0px;padding-right: 0px;padding-left: 0px;display: block;color: rgb(57, 75, 86);background-color: transparent;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial; } } .gp-component-id-iqGdqKL0E2 { padding-bottom: 16px;padding-top: 16px;padding-right: 16px;padding-left: 16px;display: block;color: inherit;background-color: transparent;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial; } @media (max-width: 639px) { .gp-component-id-iqGdqKL0E2 { padding-bottom: 16px;padding-top: 16px;padding-right: 16px;padding-left: 16px;display: block;color: rgb(57, 75, 86);background-color: transparent;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;font-weight: 600; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-iqGdqKL0E2 { padding-bottom: 16px;padding-top: 16px;padding-right: 16px;padding-left: 16px;display: block;color: rgb(57, 75, 86);background-color: transparent;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;font-weight: 600; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-iqGdqKL0E2 { padding-bottom: 16px;padding-top: 16px;padding-right: 16px;padding-left: 16px;display: block;color: rgb(57, 75, 86);background-color: transparent;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;font-weight: 600; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-iqGdqKL0E2 { padding-bottom: 0px;padding-top: 0px;padding-right: 0px;padding-left: 0px;display: block;color: rgb(57, 75, 86);background-color: transparent;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;font-weight: 400; } } @media (min-width: 1200px) { .gp-component-id-iqGdqKL0E2 { padding-bottom: 0px;padding-top: 0px;padding-right: 0px;padding-left: 0px;display: block;color: rgb(57, 75, 86);background-color: transparent;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;font-weight: 400; } } .gp-component-id-zIr4OSFmaC { padding-bottom: 16px;padding-top: 16px;padding-right: 16px;padding-left: 16px;display: block;color: inherit;background-color: transparent;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial; } @media (max-width: 639px) { .gp-component-id-zIr4OSFmaC { padding-bottom: 16px;padding-top: 16px;padding-right: 16px;padding-left: 16px;display: block;color: rgb(57, 75, 86);background-color: transparent;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;font-weight: 600; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-zIr4OSFmaC { padding-bottom: 16px;padding-top: 16px;padding-right: 16px;padding-left: 16px;display: block;color: rgb(57, 75, 86);background-color: transparent;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-zIr4OSFmaC { padding-bottom: 16px;padding-top: 16px;padding-right: 16px;padding-left: 16px;display: block;color: rgb(57, 75, 86);background-color: transparent;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-zIr4OSFmaC { padding-bottom: 0px;padding-top: 0px;padding-right: 0px;padding-left: 0px;display: block;color: rgb(57, 75, 86);background-color: transparent;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial; } } @media (min-width: 1200px) { .gp-component-id-zIr4OSFmaC { padding-bottom: 0px;padding-top: 0px;padding-right: 0px;padding-left: 0px;display: block;color: rgb(57, 75, 86);background-color: transparent;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial; } } .gp-component-id-fze5LhqP2M { padding-bottom: 16px;padding-top: 16px;padding-right: 16px;padding-left: 16px;display: block;color: inherit;background-color: transparent;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial; } @media (max-width: 639px) { .gp-component-id-fze5LhqP2M { padding-bottom: 16px;padding-top: 16px;padding-right: 16px;padding-left: 16px;display: block;color: rgb(57, 75, 86);background-color: rgb(255, 255, 255);cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;font-weight: 600; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-fze5LhqP2M { padding-bottom: 16px;padding-top: 16px;padding-right: 16px;padding-left: 16px;display: block;color: rgb(57, 75, 86);background-color: transparent;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-fze5LhqP2M { padding-bottom: 16px;padding-top: 16px;padding-right: 16px;padding-left: 16px;display: block;color: rgb(57, 75, 86);background-color: transparent;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-fze5LhqP2M { padding-bottom: 0px;padding-top: 0px;padding-right: 0px;padding-left: 0px;display: block;color: rgb(57, 75, 86);background-color: transparent;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial; } } @media (min-width: 1200px) { .gp-component-id-fze5LhqP2M { padding-bottom: 0px;padding-top: 0px;padding-right: 0px;padding-left: 0px;display: block;color: rgb(57, 75, 86);background-color: transparent;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial; } } .gp-component-id-YEA0FWkVg3 { padding-bottom: 16px;padding-top: 16px;padding-right: 16px;padding-left: 16px;display: block;color: inherit;background-color: transparent;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial; } @media (max-width: 639px) { .gp-component-id-YEA0FWkVg3 { padding-bottom: 16px;padding-top: 16px;padding-right: 16px;padding-left: 16px;display: block;color: rgb(57, 75, 86);background-color: transparent;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;font-weight: 600;text-align: center; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-YEA0FWkVg3 { padding-bottom: 16px;padding-top: 16px;padding-right: 16px;padding-left: 16px;display: block;color: rgb(57, 75, 86);background-color: transparent;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;font-weight: 600;text-align: center; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-YEA0FWkVg3 { padding-bottom: 16px;padding-top: 16px;padding-right: 16px;padding-left: 16px;display: block;color: rgb(57, 75, 86);background-color: transparent;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;font-weight: 600;text-align: center; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-YEA0FWkVg3 { padding-bottom: 0px;padding-top: 0px;padding-right: 0px;padding-left: 0px;display: block;color: rgb(57, 75, 86);background-color: transparent;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;font-weight: 400;text-align: center; } } @media (min-width: 1200px) { .gp-component-id-YEA0FWkVg3 { padding-bottom: 0px;padding-top: 0px;padding-right: 0px;padding-left: 0px;display: block;color: rgb(57, 75, 86);background-color: transparent;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;font-weight: 400;text-align: center; } } .gp-component-id-hWc6lgdY4i { padding-bottom: 16px;padding-top: 16px;padding-right: 16px;padding-left: 16px;display: block;color: inherit;background-color: transparent;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial; } @media (max-width: 639px) { .gp-component-id-hWc6lgdY4i { padding-bottom: 16px;padding-top: 16px;padding-right: 16px;padding-left: 16px;display: block;color: rgb(57, 75, 86);background-color: transparent;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;font-weight: 600; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-hWc6lgdY4i { padding-bottom: 16px;padding-top: 16px;padding-right: 16px;padding-left: 16px;display: block;color: rgb(57, 75, 86);background-color: transparent;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-hWc6lgdY4i { padding-bottom: 16px;padding-top: 16px;padding-right: 16px;padding-left: 16px;display: block;color: rgb(57, 75, 86);background-color: transparent;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-hWc6lgdY4i { padding-bottom: 0px;padding-top: 0px;padding-right: 0px;padding-left: 0px;display: block;color: rgb(57, 75, 86);background-color: transparent;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial; } } @media (min-width: 1200px) { .gp-component-id-hWc6lgdY4i { padding-bottom: 0px;padding-top: 0px;padding-right: 0px;padding-left: 0px;display: block;color: rgb(57, 75, 86);background-color: transparent;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial; } } .gp-component-id-JSp_UghFy0 { padding-bottom: 16px;padding-top: 16px;padding-right: 16px;padding-left: 16px;display: block;color: inherit;background-color: transparent;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial; } @media (max-width: 639px) { .gp-component-id-JSp_UghFy0 { padding-bottom: 16px;padding-top: 16px;padding-right: 16px;padding-left: 16px;display: block;color: rgb(57, 75, 86);background-color: transparent;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;font-weight: 600; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-JSp_UghFy0 { padding-bottom: 16px;padding-top: 16px;padding-right: 16px;padding-left: 16px;display: block;color: rgb(57, 75, 86);background-color: transparent;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-JSp_UghFy0 { padding-bottom: 16px;padding-top: 16px;padding-right: 16px;padding-left: 16px;display: block;color: rgb(57, 75, 86);background-color: transparent;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-JSp_UghFy0 { padding-bottom: 0px;padding-top: 0px;padding-right: 0px;padding-left: 0px;display: block;color: rgb(57, 75, 86);background-color: transparent;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial; } } @media (min-width: 1200px) { .gp-component-id-JSp_UghFy0 { padding-bottom: 0px;padding-top: 0px;padding-right: 0px;padding-left: 0px;display: block;color: rgb(57, 75, 86);background-color: transparent;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial; } } .gp-component-id-4fyzf9jvTO { padding-bottom: 16px;padding-top: 16px;padding-right: 16px;padding-left: 16px;display: block;color: inherit;background-color: transparent;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial; } @media (max-width: 639px) { .gp-component-id-4fyzf9jvTO { padding-bottom: 16px;padding-top: 16px;padding-right: 16px;padding-left: 16px;display: block;color: rgb(57, 75, 86);background-color: rgb(255, 255, 255);cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;font-weight: 600; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-4fyzf9jvTO { padding-bottom: 16px;padding-top: 16px;padding-right: 16px;padding-left: 16px;display: block;color: rgb(57, 75, 86);background-color: transparent;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-4fyzf9jvTO { padding-bottom: 16px;padding-top: 16px;padding-right: 16px;padding-left: 16px;display: block;color: rgb(57, 75, 86);background-color: transparent;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-4fyzf9jvTO { padding-bottom: 0px;padding-top: 0px;padding-right: 0px;padding-left: 0px;display: block;color: rgb(57, 75, 86);background-color: transparent;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial; } } @media (min-width: 1200px) { .gp-component-id-4fyzf9jvTO { padding-bottom: 0px;padding-top: 0px;padding-right: 0px;padding-left: 0px;display: block;color: rgb(57, 75, 86);background-color: transparent;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial; } } .gp-component-id-uPau8aIH1G { align-items: center;display: none; } @media (max-width: 639px) { .gp-component-id-uPau8aIH1G { align-items: center;display: none !important; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-uPau8aIH1G { align-items: center;display: none !important; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-uPau8aIH1G { align-items: center;display: none !important; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-uPau8aIH1G { align-items: center;display: flex !important; } } @media (min-width: 1200px) { .gp-component-id-uPau8aIH1G { align-items: center;display: flex !important; } } @media (max-width: 639px) { .gp-component-id-5aoKE2DAhq { border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(16, 1, 0);border-right-color: rgb(16, 1, 0);border-top-color: rgb(16, 1, 0);border-bottom-color: rgb(16, 1, 0);background-color: rgb(255, 255, 255);margin-left: 0px;margin-right: 0px;max-width: 100%; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-5aoKE2DAhq { background-color: rgb(255, 255, 255); } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-5aoKE2DAhq { background-color: rgb(255, 255, 255); } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-5aoKE2DAhq { background-color: rgba(255, 255, 255, 0); } } @media (min-width: 1200px) { .gp-component-id-5aoKE2DAhq { background-color: rgba(255, 255, 255, 0); } } @media (max-width: 639px) { .gp-component-id-SFX9CbReei { background-color: rgba(255, 255, 255, 0);margin-left: 99px;margin-right: 99px;padding-left: 0px;padding-right: 0px;padding-top: 5px;top: 100%;z-index: 20;right: 0px;left: 0px;position: absolute;flex-grow: 1;flex-shrink: 1;flex-basis: 0%; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-SFX9CbReei { font-weight: 600;background-color: rgba(255, 255, 255, 0);margin-left: 169px;margin-right: 169px;padding-top: 5px;top: 100%;z-index: 20;right: 0px;left: 0px;position: absolute;flex-grow: 1;flex-shrink: 1;flex-basis: 0%; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-SFX9CbReei { font-weight: 600;background-color: rgba(255, 255, 255, 0);margin-left: 216px;margin-right: 216px;padding-top: 5px;top: 100%;z-index: 20;right: 0px;left: 0px;position: absolute;flex-grow: 1;flex-shrink: 1;flex-basis: 0%; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-SFX9CbReei { background-color: rgba(255, 255, 255, 0);padding-top: 5px;justify-content: flex-end;display: flex;top: 100%;z-index: 20;right: 0px;left: 0px;position: relative;flex-grow: 1;flex-shrink: 1;flex-basis: 0%; } } @media (min-width: 1200px) { .gp-component-id-SFX9CbReei { background-color: rgba(255, 255, 255, 0);padding-top: 5px;justify-content: flex-end;display: flex;top: 100%;z-index: 20;right: 0px;left: 0px;position: relative;flex-grow: 1;flex-shrink: 1;flex-basis: 0%; } } .gp-component-id-GETo0hR4mc { align-items: center;justify-content: space-between;margin-right: auto;margin-left: auto;width: 100%;display: flex; } @media (max-width: 639px) { .gp-component-id-GETo0hR4mc { align-items: center;justify-content: space-between;margin-right: auto;margin-left: auto;width: 100%;display: flex; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-GETo0hR4mc { align-items: center;justify-content: space-between;margin-right: auto;margin-left: auto;width: 100%;display: flex;max-width: 640px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-GETo0hR4mc { align-items: center;justify-content: space-between;margin-right: auto;margin-left: auto;width: 100%;display: flex;max-width: 768px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-GETo0hR4mc { align-items: center;justify-content: space-between;margin-right: auto;margin-left: auto;width: 100%;display: flex;max-width: 992px; } } @media (min-width: 1200px) { .gp-component-id-GETo0hR4mc { align-items: center;justify-content: space-between;margin-right: auto;margin-left: auto;width: 100%;display: flex;max-width: 1200px; } } @media (max-width: 639px) { .gp-component-id-ba989w_f42 { background-color: rgba(255, 255, 255, 0);margin-bottom: 80px;padding-left: 16px;padding-right: 16px;padding-top: 5px;padding-bottom: 5px;position: relative; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-ba989w_f42 { background-color: rgba(255, 255, 255, 0);margin-bottom: 80px;padding-left: 16px;padding-right: 16px;padding-top: 5px;padding-bottom: 5px;position: relative; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-ba989w_f42 { background-color: rgba(255, 255, 255, 0);margin-bottom: 80px;padding-left: 16px;padding-right: 16px;padding-top: 5px;padding-bottom: 5px;position: relative; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-ba989w_f42 { background-color: rgba(255, 255, 255, 0);margin-bottom: 80px;padding-left: 16px;padding-right: 16px;padding-top: 5px;padding-bottom: 5px;position: relative; } } @media (min-width: 1200px) { .gp-component-id-ba989w_f42 { background-color: rgba(255, 255, 255, 0);margin-bottom: 80px;padding-left: 16px;padding-right: 16px;padding-top: 5px;padding-bottom: 5px;position: relative; } } .gp-component-id-zOnSQvQSZp { margin-left: auto;margin-right: auto;width: 100%;position: relative;z-index: 15; } @media (max-width: 639px) { .gp-component-id-zOnSQvQSZp { margin-left: auto;margin-right: auto;width: 100%;position: relative;z-index: 15; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-zOnSQvQSZp { margin-left: auto;margin-right: auto;width: 100%;position: relative;z-index: 15;max-width: 640px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-zOnSQvQSZp { margin-left: auto;margin-right: auto;width: 100%;position: relative;z-index: 15;max-width: 768px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-zOnSQvQSZp { margin-left: auto;margin-right: auto;width: 100%;position: relative;z-index: 15;max-width: 992px; } } @media (min-width: 1200px) { .gp-component-id-zOnSQvQSZp { margin-left: auto;margin-right: auto;width: 100%;position: relative;z-index: 15;max-width: 1200px; } } .gp-component-id-8KqSbVIJPf.gp-component > [data-section-overlay] { bottom: 0px;top: 0px;left: 0px;right: 0px;position: absolute;z-index: 14; } @media (max-width: 639px) { .gp-component-id-8KqSbVIJPf.gp-component > [data-section-overlay] { bottom: 0px;top: 0px;left: 0px;right: 0px;position: absolute;z-index: 14; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-8KqSbVIJPf.gp-component > [data-section-overlay] { bottom: 0px;top: 0px;left: 0px;right: 0px;position: absolute;z-index: 14; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-8KqSbVIJPf.gp-component > [data-section-overlay] { bottom: 0px;top: 0px;left: 0px;right: 0px;position: absolute;z-index: 14; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-8KqSbVIJPf.gp-component > [data-section-overlay] { bottom: 0px;top: 0px;left: 0px;right: 0px;position: absolute;z-index: 14; } } @media (min-width: 1200px) { .gp-component-id-8KqSbVIJPf.gp-component > [data-section-overlay] { bottom: 0px;top: 0px;left: 0px;right: 0px;position: absolute;z-index: 14; } } .gp-component-id-8KqSbVIJPf { z-index: 20 !important;position: relative;min-height: 50px; } @media (max-width: 639px) { .gp-component-id-8KqSbVIJPf { z-index: 20 !important;position: relative;min-height: 50px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-8KqSbVIJPf { z-index: 20 !important;position: relative;min-height: 50px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-8KqSbVIJPf { z-index: 20 !important;position: relative;min-height: 50px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-8KqSbVIJPf { z-index: 20 !important;position: relative;min-height: 50px; } } @media (min-width: 1200px) { .gp-component-id-8KqSbVIJPf { z-index: 20 !important;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; } } @media (max-width: 639px) { [data-gp-text] .gp-component-id-qLDwITP_JiG { font-size: 19px !important;text-decoration-line: inherit;font-style: italic !important; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-qLDwITP_JiG { font-size: 19px !important;text-decoration-line: inherit;font-style: italic !important; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-qLDwITP_JiG { font-size: 19px !important;text-decoration-line: inherit;font-style: italic !important; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-qLDwITP_JiG { font-size: 19px !important;text-decoration-line: inherit;font-style: italic !important; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-qLDwITP_JiG { font-size: 19px !important;text-decoration-line: inherit;font-style: italic !important; } } @media (max-width: 639px) { .gp-component-id-hLo_3St1N0g[data-gp-component] { font-size: 28px !important;color: inherit;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;background-color: rgb(46, 140, 255);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer; } .gp-component-id-hLo_3St1N0g[data-gp-component]:hover,.gp-component-id-hLo_3St1N0g[data-gp-component].gp-hover { background-color: rgb(120, 136, 155); } .gp-component-id-hLo_3St1N0g[data-gp-component]:active,.gp-component-id-hLo_3St1N0g[data-gp-component].gp-active { background-color: rgb(32, 45, 60); } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-hLo_3St1N0g[data-gp-component] { font-size: 28px !important;color: inherit;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;background-color: rgb(46, 140, 255);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer; } .gp-component-id-hLo_3St1N0g[data-gp-component]:hover,.gp-component-id-hLo_3St1N0g[data-gp-component].gp-hover { background-color: rgb(120, 136, 155); } .gp-component-id-hLo_3St1N0g[data-gp-component]:active,.gp-component-id-hLo_3St1N0g[data-gp-component].gp-active { background-color: rgb(32, 45, 60); } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-hLo_3St1N0g[data-gp-component] { font-size: 28px !important;color: inherit;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;background-color: rgb(46, 140, 255);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer; } .gp-component-id-hLo_3St1N0g[data-gp-component]:hover,.gp-component-id-hLo_3St1N0g[data-gp-component].gp-hover { background-color: rgb(120, 136, 155); } .gp-component-id-hLo_3St1N0g[data-gp-component]:active,.gp-component-id-hLo_3St1N0g[data-gp-component].gp-active { background-color: rgb(32, 45, 60); } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-hLo_3St1N0g[data-gp-component] { font-size: 28px !important;color: inherit;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;background-color: rgb(46, 140, 255);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer; } .gp-component-id-hLo_3St1N0g[data-gp-component]:hover,.gp-component-id-hLo_3St1N0g[data-gp-component].gp-hover { background-color: rgb(120, 136, 155); } .gp-component-id-hLo_3St1N0g[data-gp-component]:active,.gp-component-id-hLo_3St1N0g[data-gp-component].gp-active { background-color: rgb(32, 45, 60); } } @media (min-width: 1200px) { .gp-component-id-hLo_3St1N0g[data-gp-component] { font-size: 28px !important;color: inherit;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;background-color: rgb(46, 140, 255);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer; } .gp-component-id-hLo_3St1N0g[data-gp-component]:hover,.gp-component-id-hLo_3St1N0g[data-gp-component].gp-hover { background-color: rgb(120, 136, 155); } .gp-component-id-hLo_3St1N0g[data-gp-component]:active,.gp-component-id-hLo_3St1N0g[data-gp-component].gp-active { background-color: rgb(32, 45, 60); } } .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; } } @media (max-width: 639px) { [data-gp-text] .gp-component-id-_gbA_x83UU4 { font-size: 31px !important;color: rgb(4, 81, 174);padding-bottom: 5px; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-_gbA_x83UU4 { font-size: 31px !important;color: rgb(4, 81, 174);padding-bottom: 5px; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-_gbA_x83UU4 { font-size: 31px !important;color: rgb(4, 81, 174);padding-bottom: 5px; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-_gbA_x83UU4 { font-size: 31px !important;color: rgb(4, 81, 174);padding-bottom: 5px; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-_gbA_x83UU4 { font-size: 31px !important;color: rgb(4, 81, 174);padding-bottom: 5px; } } [data-gp-text] .gp-component-id-ZiapdRW81Bg { margin-top: 0px;margin-right: 0px;margin-left: 0px;text-align: center;margin-bottom: 24px; } @media (max-width: 639px) { [data-gp-text] .gp-component-id-ZiapdRW81Bg { text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 24px; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-ZiapdRW81Bg { text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 24px; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-ZiapdRW81Bg { text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 24px; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-ZiapdRW81Bg { text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 24px; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-ZiapdRW81Bg { text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 24px; } } .gp-component-id-gNaD6Z92iNT { margin-bottom: 1.5rem; text-align: center; margin-left: 0px; margin-right: 0px; margin-top: 0px; } @media (min-width: 640px) { .gp-component-id-gNaD6Z92iNT { margin-bottom: 1.5rem; text-align: center; } } @media (min-width: 768px) { .gp-component-id-gNaD6Z92iNT { margin-bottom: 1.5rem; text-align: center; } } @media (min-width: 992px) { .gp-component-id-gNaD6Z92iNT { margin-bottom: 1.5rem; text-align: center; } } @media (min-width: 1200px) { .gp-component-id-gNaD6Z92iNT { margin-bottom: 1.5rem; text-align: center; } } @media (max-width: 639px) { [data-gp-text] .gp-component-id-mxJMt6mFn8z { font-size: 18px !important;font-weight: 300 !important;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-mxJMt6mFn8z { font-size: 18px !important;font-weight: 300 !important;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-mxJMt6mFn8z { font-size: 18px !important;font-weight: 300 !important;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-mxJMt6mFn8z { font-size: 18px !important;font-weight: 300 !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-mxJMt6mFn8z { font-size: 18px !important;font-weight: 300 !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } } @media (max-width: 639px) { [data-gp-text] .gp-component-id-VcWummguDmx { font-weight: 400;font-family: Lato;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;display: inline-block; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-VcWummguDmx { font-weight: 400;font-family: Lato;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;display: inline-block; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-VcWummguDmx { font-weight: 400;font-family: Lato;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;display: inline-block; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-VcWummguDmx { font-weight: 400;font-family: Lato;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;display: inline-block; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-VcWummguDmx { font-weight: 400;font-family: Lato;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;display: inline-block; } } @media (max-width: 639px) { .gp-component-id-XgvoFJGlIjL[data-gp-component] { font-size: 38px !important;color: rgb(134, 192, 107);line-height: 1;margin-right: 8px;display: inline-block; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-XgvoFJGlIjL[data-gp-component] { font-size: 38px !important;color: rgb(134, 192, 107);line-height: 1;margin-right: 8px;display: inline-block; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-XgvoFJGlIjL[data-gp-component] { font-size: 38px !important;color: rgb(134, 192, 107);line-height: 1;margin-right: 8px;display: inline-block; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-XgvoFJGlIjL[data-gp-component] { font-size: 38px !important;color: rgb(134, 192, 107);line-height: 1;margin-right: 8px;display: inline-block; } } @media (min-width: 1200px) { .gp-component-id-XgvoFJGlIjL[data-gp-component] { font-size: 38px !important;color: rgb(134, 192, 107);line-height: 1;margin-right: 8px;display: inline-block; } } .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[data-gp-component] { margin-top: 20px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-lN068SmHEQg[data-gp-component] { margin-top: 20px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-lN068SmHEQg[data-gp-component] { margin-top: 20px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-lN068SmHEQg[data-gp-component] { margin-top: 20px; } } @media (min-width: 1200px) { .gp-component-id-lN068SmHEQg[data-gp-component] { margin-top: 20px; } } @media (max-width: 639px) { [data-gp-text] .gp-component-id-DVRZ17C7Z_i { font-size: 18px !important;font-weight: 300 !important;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-DVRZ17C7Z_i { font-size: 18px !important;font-weight: 300 !important;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-DVRZ17C7Z_i { font-size: 18px !important;font-weight: 300 !important;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-DVRZ17C7Z_i { font-size: 18px !important;font-weight: 300 !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-DVRZ17C7Z_i { font-size: 18px !important;font-weight: 300 !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } } @media (max-width: 639px) { [data-gp-text] .gp-component-id-lEtK9XGQdOg { font-weight: 400;font-family: Lato;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;display: inline-block; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-lEtK9XGQdOg { font-weight: 400;font-family: Lato;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;display: inline-block; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-lEtK9XGQdOg { font-weight: 400;font-family: Lato;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;display: inline-block; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-lEtK9XGQdOg { font-weight: 400;font-family: Lato;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;display: inline-block; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-lEtK9XGQdOg { font-weight: 400;font-family: Lato;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;display: inline-block; } } @media (max-width: 639px) { .gp-component-id-0jD0mC3kKrW[data-gp-component] { font-size: 38px !important;color: rgb(134, 192, 107);line-height: 1;margin-right: 8px;display: inline-block; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-0jD0mC3kKrW[data-gp-component] { font-size: 38px !important;color: rgb(134, 192, 107);line-height: 1;margin-right: 8px;display: inline-block; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-0jD0mC3kKrW[data-gp-component] { font-size: 38px !important;color: rgb(134, 192, 107);line-height: 1;margin-right: 8px;display: inline-block; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-0jD0mC3kKrW[data-gp-component] { font-size: 38px !important;color: rgb(134, 192, 107);line-height: 1;margin-right: 8px;display: inline-block; } } @media (min-width: 1200px) { .gp-component-id-0jD0mC3kKrW[data-gp-component] { font-size: 38px !important;color: rgb(134, 192, 107);line-height: 1;margin-right: 8px;display: inline-block; } } .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[data-gp-component] { margin-top: 20px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-uSStcc10vg0[data-gp-component] { margin-top: 20px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-uSStcc10vg0[data-gp-component] { margin-top: 20px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-uSStcc10vg0[data-gp-component] { margin-top: 20px; } } @media (min-width: 1200px) { .gp-component-id-uSStcc10vg0[data-gp-component] { margin-top: 20px; } } @media (max-width: 639px) { [data-gp-text] .gp-component-id-Vc8xxOdD4M8 { font-size: 18px !important;font-weight: 300 !important;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-Vc8xxOdD4M8 { font-size: 18px !important;font-weight: 300 !important;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-Vc8xxOdD4M8 { font-size: 18px !important;font-weight: 300 !important;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-Vc8xxOdD4M8 { font-size: 18px !important;font-weight: 300 !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-Vc8xxOdD4M8 { font-size: 18px !important;font-weight: 300 !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } } @media (max-width: 639px) { [data-gp-text] .gp-component-id-nmDMqZG9l0H { font-weight: 400;font-family: Lato;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;display: inline-block; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-nmDMqZG9l0H { font-weight: 400;font-family: Lato;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;display: inline-block; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-nmDMqZG9l0H { font-weight: 400;font-family: Lato;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;display: inline-block; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-nmDMqZG9l0H { font-weight: 400;font-family: Lato;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;display: inline-block; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-nmDMqZG9l0H { font-weight: 400;font-family: Lato;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;display: inline-block; } } @media (max-width: 639px) { .gp-component-id-wsKkKJHz5KU[data-gp-component] { font-size: 38px !important;color: rgb(134, 192, 107);line-height: 1;margin-right: 8px;display: inline-block; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-wsKkKJHz5KU[data-gp-component] { font-size: 38px !important;color: rgb(134, 192, 107);line-height: 1;margin-right: 8px;display: inline-block; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-wsKkKJHz5KU[data-gp-component] { font-size: 38px !important;color: rgb(134, 192, 107);line-height: 1;margin-right: 8px;display: inline-block; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-wsKkKJHz5KU[data-gp-component] { font-size: 38px !important;color: rgb(134, 192, 107);line-height: 1;margin-right: 8px;display: inline-block; } } @media (min-width: 1200px) { .gp-component-id-wsKkKJHz5KU[data-gp-component] { font-size: 38px !important;color: rgb(134, 192, 107);line-height: 1;margin-right: 8px;display: inline-block; } } .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[data-gp-component] { margin-top: 20px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-gJo7uWgMUd5[data-gp-component] { margin-top: 20px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-gJo7uWgMUd5[data-gp-component] { margin-top: 20px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-gJo7uWgMUd5[data-gp-component] { margin-top: 20px; } } @media (min-width: 1200px) { .gp-component-id-gJo7uWgMUd5[data-gp-component] { margin-top: 20px; } } @media (max-width: 639px) { [data-gp-text] .gp-component-id-Iotn0Oyq43w { font-size: 19px !important;font-weight: 300 !important;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-Iotn0Oyq43w { font-size: 19px !important;font-weight: 300 !important;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-Iotn0Oyq43w { font-size: 19px !important;font-weight: 300 !important;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-Iotn0Oyq43w { font-size: 19px !important;font-weight: 300 !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-Iotn0Oyq43w { font-size: 19px !important;font-weight: 300 !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } } @media (max-width: 639px) { [data-gp-text] .gp-component-id-n0GaNFHQmx { font-weight: 400;font-family: Lato;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;display: inline-block; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-n0GaNFHQmx { font-weight: 400;font-family: Lato;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;display: inline-block; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-n0GaNFHQmx { font-weight: 400;font-family: Lato;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;display: inline-block; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-n0GaNFHQmx { font-weight: 400;font-family: Lato;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;display: inline-block; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-n0GaNFHQmx { font-weight: 400;font-family: Lato;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;display: inline-block; } } @media (max-width: 639px) { .gp-component-id-Iv06OvAAbZ[data-gp-component] { font-size: 38px !important;color: rgb(134, 192, 107);line-height: 1;margin-right: 8px;display: inline-block; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-Iv06OvAAbZ[data-gp-component] { font-size: 38px !important;color: rgb(134, 192, 107);line-height: 1;margin-right: 8px;display: inline-block; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-Iv06OvAAbZ[data-gp-component] { font-size: 38px !important;color: rgb(134, 192, 107);line-height: 1;margin-right: 8px;display: inline-block; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-Iv06OvAAbZ[data-gp-component] { font-size: 38px !important;color: rgb(134, 192, 107);line-height: 1;margin-right: 8px;display: inline-block; } } @media (min-width: 1200px) { .gp-component-id-Iv06OvAAbZ[data-gp-component] { font-size: 38px !important;color: rgb(134, 192, 107);line-height: 1;margin-right: 8px;display: inline-block; } } .gp-component-id-Ez8xFuD4yP { display: flex; } @media (max-width: 639px) { .gp-component-id-Ez8xFuD4yP { display: flex; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-Ez8xFuD4yP { display: flex; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-Ez8xFuD4yP { display: flex; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-Ez8xFuD4yP { display: flex; } } @media (min-width: 1200px) { .gp-component-id-Ez8xFuD4yP { display: flex; } } @media (max-width: 639px) { .gp-component-id-J3TDfI8awO[data-gp-component] { margin-top: 20px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-J3TDfI8awO[data-gp-component] { margin-top: 20px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-J3TDfI8awO[data-gp-component] { margin-top: 20px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-J3TDfI8awO[data-gp-component] { margin-top: 20px; } } @media (min-width: 1200px) { .gp-component-id-J3TDfI8awO[data-gp-component] { margin-top: 20px; } } @media (max-width: 639px) { [data-gp-text] .gp-component-id-0y1lrm01UR { font-size: 18px !important;font-weight: 300 !important;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-0y1lrm01UR { font-size: 18px !important;font-weight: 300 !important;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-0y1lrm01UR { font-size: 18px !important;font-weight: 300 !important;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-0y1lrm01UR { font-size: 18px !important;font-weight: 300 !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-0y1lrm01UR { font-size: 18px !important;font-weight: 300 !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } } @media (max-width: 639px) { [data-gp-text] .gp-component-id-r0rPOGADo8 { font-weight: 500;font-family: Lato;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;display: inline-block; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-r0rPOGADo8 { font-weight: 500;font-family: Lato;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;display: inline-block; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-r0rPOGADo8 { font-weight: 500;font-family: Lato;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;display: inline-block; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-r0rPOGADo8 { font-weight: 500;font-family: Lato;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;display: inline-block; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-r0rPOGADo8 { font-weight: 500;font-family: Lato;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;display: inline-block; } } @media (max-width: 639px) { .gp-component-id-RuyzQz7IJt[data-gp-component] { font-size: 38px !important;color: rgb(134, 192, 107);line-height: 1;margin-right: 8px;display: inline-block; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-RuyzQz7IJt[data-gp-component] { font-size: 38px !important;color: rgb(134, 192, 107);line-height: 1;margin-right: 8px;display: inline-block; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-RuyzQz7IJt[data-gp-component] { font-size: 38px !important;color: rgb(134, 192, 107);line-height: 1;margin-right: 8px;display: inline-block; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-RuyzQz7IJt[data-gp-component] { font-size: 38px !important;color: rgb(134, 192, 107);line-height: 1;margin-right: 8px;display: inline-block; } } @media (min-width: 1200px) { .gp-component-id-RuyzQz7IJt[data-gp-component] { font-size: 38px !important;color: rgb(134, 192, 107);line-height: 1;margin-right: 8px;display: inline-block; } } .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 { 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-wiYbGqBxpy { 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-wiYbGqBxpy { 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-wiYbGqBxpy { 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-wiYbGqBxpy { 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-wiYbGqBxpy { 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-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 { object-position: center center; object-fit: cover; display: inline-flex; align-items: flex-start; justify-content: flex-start; height: auto; width: 400px; margin-bottom: 2rem; border-left-style: solid; border-bottom-style: solid; border-right-style: solid; border-top-style: solid; max-width: 100%; } @media (min-width: 640px) { .gp-component-id-N3fAntSzL1 { height: auto; width: 400px; margin-bottom: 2rem; } } @media (min-width: 768px) { .gp-component-id-N3fAntSzL1 { height: auto; width: 400px; margin-bottom: 2rem; } } @media (min-width: 992px) { .gp-component-id-N3fAntSzL1 { height: auto; width: 400px; margin-bottom: 2rem; } } @media (min-width: 1200px) { .gp-component-id-N3fAntSzL1 { height: auto; width: 400px; margin-bottom: 2rem; } } @media (max-width: 639px) { .gp-component-id-_wMjXIrECT { font-size: 36px;font-weight: 400;text-align: center;font-family: Lato;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-_wMjXIrECT { font-size: 36px;font-weight: 400;text-align: center;font-family: Lato;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-_wMjXIrECT { font-size: 36px;font-weight: 400;text-align: center;font-family: Lato;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-_wMjXIrECT { font-size: 36px;font-weight: 400;text-align: center;font-family: Lato;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } } @media (min-width: 1200px) { .gp-component-id-_wMjXIrECT { font-size: 36px;font-weight: 400;text-align: center;line-height: 1.5;font-family: Lato;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } } @media (max-width: 639px) { .gp-component-id-u3GBXvPv3E[data-gp-component] { 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[data-gp-component] { 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[data-gp-component] { 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[data-gp-component] { 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[data-gp-component] { 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 { background-color: transparent; text-decoration-color: initial; text-decoration-style: initial; text-decoration-line: none; cursor: pointer; } @media (max-width: 639px) { .gp-component-id-RQSuv5xB1[data-gp-component] { padding-top: 25px;padding-bottom: 25px;position: relative;z-index: 10; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-RQSuv5xB1[data-gp-component] { padding-top: 25px;padding-bottom: 25px;position: relative;z-index: 10; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-RQSuv5xB1[data-gp-component] { padding-top: 25px;padding-bottom: 25px;position: relative;z-index: 10; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-RQSuv5xB1[data-gp-component] { padding-top: 25px;padding-bottom: 25px;position: relative;z-index: 10; } } @media (min-width: 1200px) { .gp-component-id-RQSuv5xB1[data-gp-component] { padding-top: 25px;padding-bottom: 25px;position: relative;z-index: 10; } }
