 /* 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-wZ3E44ntqQ { z-index: 15;position: relative; } @media (max-width: 639px) { .gp-component-id-wZ3E44ntqQ { z-index: 15;position: relative;width: 100%;margin-right: auto;margin-left: auto; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-wZ3E44ntqQ { 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-wZ3E44ntqQ { z-index: 15;position: relative;display: flex;flex-direction: row;max-width: 768px;width: 100%;margin-right: auto;margin-left: auto; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-wZ3E44ntqQ { z-index: 15;position: relative;display: flex;align-items: center;flex-direction: row;max-width: 992px;width: 100%;margin-right: auto;margin-left: auto; } } @media (min-width: 1200px) { .gp-component-id-wZ3E44ntqQ { z-index: 15;position: relative;display: flex;align-items: center;flex-direction: row;max-width: 1200px;width: 100%;margin-right: auto;margin-left: auto; } } .gp-component-id-jBD_xy4Mdx { border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center; } @media (max-width: 639px) { .gp-component-id-jBD_xy4Mdx { border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;width: 288px;margin-bottom: 32px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-jBD_xy4Mdx { border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;width: 288px;margin-bottom: 32px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-jBD_xy4Mdx { border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;width: 288px;margin-bottom: 32px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-jBD_xy4Mdx { border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;width: 288px;margin-bottom: 0px; } } @media (min-width: 1200px) { .gp-component-id-jBD_xy4Mdx { border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;width: 288px;margin-bottom: 0px; } } @media (max-width: 639px) { .gp-component-id-hPhWw5vfah { display: flex;align-items: center;flex-direction: column;width: 100%; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-hPhWw5vfah { display: flex;align-items: center;flex-direction: column;width: 100%;font-size: 14px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-hPhWw5vfah { display: flex;align-items: flex-end;flex-direction: column;width: 100%;font-size: 14px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-hPhWw5vfah { display: flex;align-items: flex-start;justify-content: flex-end;flex-direction: row;width: 100%;font-size: 14px; } } @media (min-width: 1200px) { .gp-component-id-hPhWw5vfah { display: flex;align-items: flex-start;justify-content: flex-end;flex-direction: row;width: 100%;font-size: 14px; } } .gp-component-id-gbP_yBd5S { position: relative;z-index: 15;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-gbP_yBd5S { position: relative;z-index: 15;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: 767px) and (min-width: 640px) { .gp-component-id-gbP_yBd5S { position: relative;z-index: 15;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: 991px) and (min-width: 768px) { .gp-component-id-gbP_yBd5S { position: relative;z-index: 15;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: 1199px) and (min-width: 992px) { .gp-component-id-gbP_yBd5S { position: relative;z-index: 15;color: inherit;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-gbP_yBd5S { position: relative;z-index: 15;color: inherit;background-color: transparent;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial; } } .gp-component-id-ato09fheNc { text-decoration-color: initial;text-decoration-style: initial;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: inherit;z-index: 15;position: relative; } @media (max-width: 639px) { .gp-component-id-ato09fheNc { text-decoration-color: initial;text-decoration-style: initial;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: inherit;z-index: 15;position: relative; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-ato09fheNc { text-decoration-color: initial;text-decoration-style: initial;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: inherit;z-index: 15;position: relative; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-ato09fheNc { text-decoration-color: initial;text-decoration-style: initial;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: inherit;z-index: 15;position: relative; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-ato09fheNc { text-decoration-color: initial;text-decoration-style: initial;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: inherit;z-index: 15;position: relative; } } @media (min-width: 1200px) { .gp-component-id-ato09fheNc { text-decoration-color: initial;text-decoration-style: initial;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: inherit;z-index: 15;position: relative; } } .gp-component-id-_g7PGDraqv { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: inherit;display: block; } @media (max-width: 639px) { .gp-component-id-_g7PGDraqv { text-decoration-color: initial;text-decoration-style: initial;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: rgb(135, 138, 154);display: block;margin-right: 24px;font-weight: 300; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-_g7PGDraqv { text-decoration-color: initial;text-decoration-style: initial;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: rgb(135, 138, 154);display: block;margin-right: 24px;font-weight: 300; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-_g7PGDraqv { text-decoration-color: initial;text-decoration-style: initial;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: rgb(135, 138, 154);display: block;margin-right: 24px;font-weight: 300; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-_g7PGDraqv { text-decoration-color: initial;text-decoration-style: initial;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: rgb(135, 138, 154);display: block;margin-right: 24px;font-weight: 300; } } @media (min-width: 1200px) { .gp-component-id-_g7PGDraqv { text-decoration-color: initial;text-decoration-style: initial;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: rgb(135, 138, 154);display: block;margin-right: 24px;font-weight: 300; } } .gp-component-id-XQM2li3LV0 { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: inherit;display: block; } @media (max-width: 639px) { .gp-component-id-XQM2li3LV0 { text-decoration-color: initial;text-decoration-style: initial;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: rgb(135, 138, 154);display: block;margin-right: 24px;font-weight: 300; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-XQM2li3LV0 { text-decoration-color: initial;text-decoration-style: initial;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: rgb(135, 138, 154);display: block;margin-right: 24px;font-weight: 300; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-XQM2li3LV0 { text-decoration-color: initial;text-decoration-style: initial;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: rgb(135, 138, 154);display: block;margin-right: 24px;font-weight: 300; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-XQM2li3LV0 { text-decoration-color: initial;text-decoration-style: initial;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: rgb(135, 138, 154);display: block;margin-right: 24px;font-weight: 300; } } @media (min-width: 1200px) { .gp-component-id-XQM2li3LV0 { text-decoration-color: initial;text-decoration-style: initial;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: rgb(135, 138, 154);display: block;margin-right: 24px;font-weight: 300; } } .gp-component-id-SI0C0ARKu.gp-component > [data-section-overlay] { z-index: 14;position: absolute;right: 0px;left: 0px;top: 0px;bottom: 0px; } @media (max-width: 639px) { .gp-component-id-SI0C0ARKu.gp-component > [data-section-overlay] { z-index: 14;position: absolute;right: 0px;left: 0px;top: 0px;bottom: 0px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-SI0C0ARKu.gp-component > [data-section-overlay] { z-index: 14;position: absolute;right: 0px;left: 0px;top: 0px;bottom: 0px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-SI0C0ARKu.gp-component > [data-section-overlay] { z-index: 14;position: absolute;right: 0px;left: 0px;top: 0px;bottom: 0px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-SI0C0ARKu.gp-component > [data-section-overlay] { z-index: 14;position: absolute;right: 0px;left: 0px;top: 0px;bottom: 0px; } } @media (min-width: 1200px) { .gp-component-id-SI0C0ARKu.gp-component > [data-section-overlay] { z-index: 14;position: absolute;right: 0px;left: 0px;top: 0px;bottom: 0px; } } .gp-component-id-SI0C0ARKu { min-height: 50px;position: relative;z-index: auto; } @media (max-width: 639px) { .gp-component-id-SI0C0ARKu { min-height: 50px;position: relative;z-index: auto;padding-bottom: 32px;padding-top: 32px;padding-right: 8px;padding-left: 8px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-SI0C0ARKu { min-height: 50px;position: relative;z-index: auto;padding-bottom: 32px;padding-top: 32px;padding-right: 8px;padding-left: 8px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-SI0C0ARKu { min-height: 50px;position: relative;z-index: auto;padding-bottom: 32px;padding-top: 32px;padding-right: 8px;padding-left: 8px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-SI0C0ARKu { min-height: 50px;position: relative;z-index: auto;padding-bottom: 32px;padding-top: 32px;padding-right: 8px;padding-left: 8px; } } @media (min-width: 1200px) { .gp-component-id-SI0C0ARKu { min-height: 50px;position: relative;z-index: auto;padding-bottom: 32px;padding-top: 32px;padding-right: 8px;padding-left: 8px; } } .gp-component-id-RKgJExsxat { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word; } @media (max-width: 639px) { .gp-component-id-RKgJExsxat { margin-left: 0px;margin-bottom: 32px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;line-height: 1.5;text-align: center;color: rgb(135, 138, 154);font-weight: 300; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-RKgJExsxat { margin-left: 0px;margin-bottom: 32px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;line-height: 1.5;text-align: center;color: rgb(135, 138, 154);font-weight: 300; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-RKgJExsxat { margin-left: 0px;margin-bottom: 32px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;line-height: 1.5;text-align: left;color: rgb(135, 138, 154);font-weight: 300; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-RKgJExsxat { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;line-height: 1.5;text-align: left;color: rgb(135, 138, 154);font-weight: 300; } } @media (min-width: 1200px) { .gp-component-id-RKgJExsxat { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;line-height: 1.5;text-align: left;color: rgb(135, 138, 154);font-weight: 300; } } .gp-component-id-OeI6HZbizK { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: inherit;display: block; } @media (max-width: 639px) { .gp-component-id-OeI6HZbizK { text-decoration-color: initial;text-decoration-style: initial;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: rgb(135, 138, 154);display: block;font-weight: 300; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-OeI6HZbizK { text-decoration-color: initial;text-decoration-style: initial;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: rgb(135, 138, 154);display: block;font-weight: 300; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-OeI6HZbizK { text-decoration-color: initial;text-decoration-style: initial;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: rgb(135, 138, 154);display: block;font-weight: 300; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-OeI6HZbizK { text-decoration-color: initial;text-decoration-style: initial;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: rgb(135, 138, 154);display: block;font-weight: 300; } } @media (min-width: 1200px) { .gp-component-id-OeI6HZbizK { text-decoration-color: initial;text-decoration-style: initial;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: rgb(135, 138, 154);display: block;font-weight: 300; } } @media (max-width: 639px) { .gp-component-id-IX4laF5N6D { display: flex;align-items: center;flex-direction: column;width: 100%; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-IX4laF5N6D { display: flex;align-items: center;flex-direction: column;width: 100%; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-IX4laF5N6D { display: flex;align-items: center;flex-direction: column;width: 100%; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-IX4laF5N6D { display: flex;align-items: center;justify-content: center;flex-direction: row;width: 100%; } } @media (min-width: 1200px) { .gp-component-id-IX4laF5N6D { display: flex;align-items: center;justify-content: center;flex-direction: row;width: 100%; } } .gp-component-id-Aa8t105cTS { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: inherit;display: block; } @media (max-width: 639px) { .gp-component-id-Aa8t105cTS { text-decoration-color: initial;text-decoration-style: initial;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: rgb(135, 138, 154);display: block;margin-bottom: 16px;font-weight: 300; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-Aa8t105cTS { text-decoration-color: initial;text-decoration-style: initial;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: rgb(135, 138, 154);display: block;margin-bottom: 16px;font-weight: 300; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-Aa8t105cTS { text-decoration-color: initial;text-decoration-style: initial;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: rgb(135, 138, 154);display: block;margin-bottom: 16px;font-weight: 300; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-Aa8t105cTS { text-decoration-color: initial;text-decoration-style: initial;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: rgb(135, 138, 154);display: block;margin-bottom: 0px;margin-right: 24px;font-weight: 300; } } @media (min-width: 1200px) { .gp-component-id-Aa8t105cTS { text-decoration-color: initial;text-decoration-style: initial;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: rgb(135, 138, 154);display: block;margin-bottom: 0px;margin-right: 24px;font-weight: 300; } } .gp-component-id-64ufGXupTS { flex-direction: column;display: flex; } @media (max-width: 639px) { .gp-component-id-64ufGXupTS { flex-direction: column;display: flex; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-64ufGXupTS { flex-direction: column;display: flex; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-64ufGXupTS { flex-direction: column;display: flex; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-64ufGXupTS { flex-direction: column;display: flex; } } @media (min-width: 1200px) { .gp-component-id-64ufGXupTS { flex-direction: column;display: flex; } } @media (max-width: 639px) { .gp-component-id-4HDGfiqRj6 { width: 100%; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-4HDGfiqRj6 { width: 100%; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-4HDGfiqRj6 { width: 100%; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-4HDGfiqRj6 { display: flex;align-items: center;width: 100%; } } @media (min-width: 1200px) { .gp-component-id-4HDGfiqRj6 { display: flex;align-items: center;width: 100%; } } .gp-component-id-33bc70jALQ { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: inherit;display: block; } @media (max-width: 639px) { .gp-component-id-33bc70jALQ { text-decoration-color: initial;text-decoration-style: initial;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: rgb(135, 138, 154);display: block;margin-bottom: 16px;font-weight: 300; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-33bc70jALQ { text-decoration-color: initial;text-decoration-style: initial;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: rgb(135, 138, 154);display: block;margin-bottom: 16px;font-weight: 300; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-33bc70jALQ { text-decoration-color: initial;text-decoration-style: initial;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: rgb(135, 138, 154);display: block;margin-bottom: 16px;font-weight: 300; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-33bc70jALQ { text-decoration-color: initial;text-decoration-style: initial;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: rgb(135, 138, 154);display: block;margin-bottom: 0px;margin-right: 24px;font-weight: 300; } } @media (min-width: 1200px) { .gp-component-id-33bc70jALQ { text-decoration-color: initial;text-decoration-style: initial;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: rgb(135, 138, 154);display: block;margin-bottom: 0px;margin-right: 24px;font-weight: 300; } } .gp-component-id-Gp9Y_1ImS.gp-component > [data-section-overlay] { z-index: 14;position: absolute;right: 0px;left: 0px;top: 0px;bottom: 0px; } @media (max-width: 639px) { .gp-component-id-Gp9Y_1ImS.gp-component > [data-section-overlay] { z-index: 14;position: absolute;right: 0px;left: 0px;top: 0px;bottom: 0px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-Gp9Y_1ImS.gp-component > [data-section-overlay] { z-index: 14;position: absolute;right: 0px;left: 0px;top: 0px;bottom: 0px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-Gp9Y_1ImS.gp-component > [data-section-overlay] { z-index: 14;position: absolute;right: 0px;left: 0px;top: 0px;bottom: 0px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-Gp9Y_1ImS.gp-component > [data-section-overlay] { z-index: 14;position: absolute;right: 0px;left: 0px;top: 0px;bottom: 0px; } } @media (min-width: 1200px) { .gp-component-id-Gp9Y_1ImS.gp-component > [data-section-overlay] { z-index: 14;position: absolute;right: 0px;left: 0px;top: 0px;bottom: 0px; } } .gp-component-id-Gp9Y_1ImS { min-height: 50px;position: relative;z-index: auto; } @media (max-width: 639px) { .gp-component-id-Gp9Y_1ImS { min-height: 50px;position: relative;z-index: auto;padding-bottom: 32px;padding-top: 32px;padding-right: 8px;padding-left: 8px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-Gp9Y_1ImS { min-height: 50px;position: relative;z-index: auto;padding-bottom: 32px;padding-top: 32px;padding-right: 8px;padding-left: 8px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-Gp9Y_1ImS { min-height: 50px;position: relative;z-index: auto;padding-bottom: 32px;padding-top: 32px;padding-right: 8px;padding-left: 8px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-Gp9Y_1ImS { min-height: 50px;position: relative;z-index: auto;padding-bottom: 32px;padding-top: 32px;padding-right: 8px;padding-left: 8px; } } @media (min-width: 1200px) { .gp-component-id-Gp9Y_1ImS { min-height: 50px;position: relative;z-index: auto;padding-bottom: 32px;padding-top: 32px;padding-right: 8px;padding-left: 8px; } } .gp-component-id-zsgqfy0vl.gp-component > [data-section-overlay] { position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;background-color: rgb(234, 240, 243); } @media (max-width: 639px) { .gp-component-id-zsgqfy0vl.gp-component > [data-section-overlay] { background-color: rgb(234, 240, 243);position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-zsgqfy0vl.gp-component > [data-section-overlay] { background-color: rgb(234, 240, 243);position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-zsgqfy0vl.gp-component > [data-section-overlay] { background-color: rgb(234, 240, 243);position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-zsgqfy0vl.gp-component > [data-section-overlay] { background-color: rgb(234, 240, 243);position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px; } } @media (min-width: 1200px) { .gp-component-id-zsgqfy0vl.gp-component > [data-section-overlay] { background-color: rgb(234, 240, 243);position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px; } } .gp-component-id-zWlBU8KGN1.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-zWlBU8KGN1.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-zWlBU8KGN1.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-zWlBU8KGN1.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-zWlBU8KGN1.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-zWlBU8KGN1.gp-component > [data-section-overlay] { bottom: 0px;top: 0px;left: 0px;right: 0px;position: absolute;z-index: 14; } } .gp-component-id-Lo9oRaa9pQq { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: inherit;z-index: 15;position: relative; } @media (max-width: 639px) { .gp-component-id-Lo9oRaa9pQq { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: inherit;z-index: 15;position: relative; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-Lo9oRaa9pQq { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: inherit;z-index: 15;position: relative; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-Lo9oRaa9pQq { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: inherit;z-index: 15;position: relative; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-Lo9oRaa9pQq { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: inherit;z-index: 15;position: relative; } } @media (min-width: 1200px) { .gp-component-id-Lo9oRaa9pQq { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: inherit;z-index: 15;position: relative; } } .gp-component-id-59sDFHUbr { z-index: 15;position: relative;min-height: 50px; } @media (max-width: 639px) { .gp-component-id-59sDFHUbr { z-index: 15;position: relative;min-height: 50px;padding-left: 8px;padding-right: 8px;padding-top: 32px;padding-bottom: 32px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-59sDFHUbr { z-index: 15;position: relative;min-height: 50px;padding-left: 8px;padding-right: 8px;padding-top: 32px;padding-bottom: 32px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-59sDFHUbr { z-index: 15;position: relative;min-height: 50px;padding-left: 8px;padding-right: 8px;padding-top: 32px;padding-bottom: 32px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-59sDFHUbr { z-index: 15;position: relative;min-height: 50px;padding-left: 8px;padding-right: 8px;padding-top: 32px;padding-bottom: 32px; } } @media (min-width: 1200px) { .gp-component-id-59sDFHUbr { z-index: 15;position: relative;min-height: 50px;padding-left: 8px;padding-right: 8px;padding-top: 32px;padding-bottom: 32px; } } .gp-component-id-zWlBU8KGN1 { z-index: auto;position: relative;min-height: 50px; } @media (max-width: 639px) { .gp-component-id-zWlBU8KGN1 { z-index: auto;position: relative;min-height: 50px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-zWlBU8KGN1 { z-index: auto;position: relative;min-height: 50px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-zWlBU8KGN1 { z-index: auto;position: relative;min-height: 50px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-zWlBU8KGN1 { z-index: auto;position: relative;min-height: 50px; } } @media (min-width: 1200px) { .gp-component-id-zWlBU8KGN1 { z-index: auto;position: relative;min-height: 50px; } } .gp-component-id-3TlZ4FshKz5 { display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;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-3TlZ4FshKz5 { display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;max-width: 100%;height: auto;border-top-style: solid;border-right-style: solid;border-bottom-style: solid;border-left-style: solid; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-3TlZ4FshKz5 { display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;max-width: 100%;height: auto;border-top-style: solid;border-right-style: solid;border-bottom-style: solid;border-left-style: solid; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-3TlZ4FshKz5 { display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;max-width: 100%;height: auto;border-top-style: solid;border-right-style: solid;border-bottom-style: solid;border-left-style: solid; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-3TlZ4FshKz5 { display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;max-width: 100%;height: auto;border-top-style: solid;border-right-style: solid;border-bottom-style: solid;border-left-style: solid; } } @media (min-width: 1200px) { .gp-component-id-3TlZ4FshKz5 { display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;max-width: 100%;height: auto;border-top-style: solid;border-right-style: solid;border-bottom-style: solid;border-left-style: solid; } } .gp-component-id-9o0rZlFZ74g { 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-9o0rZlFZ74g { font-weight: 700;overflow-wrap: break-word;font-size: inherit;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;text-align: center;box-sizing: border-box;cursor: text; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-9o0rZlFZ74g { font-weight: 700;overflow-wrap: break-word;font-size: inherit;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;text-align: center;box-sizing: border-box;cursor: text; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-9o0rZlFZ74g { font-weight: 700;overflow-wrap: break-word;font-size: inherit;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;text-align: center;box-sizing: border-box;cursor: text; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-9o0rZlFZ74g { font-weight: 700;overflow-wrap: break-word;font-size: inherit;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;text-align: center;box-sizing: border-box;cursor: text; } } @media (min-width: 1200px) { .gp-component-id-9o0rZlFZ74g { font-weight: 700;overflow-wrap: break-word;font-size: inherit;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;text-align: center;box-sizing: border-box;cursor: text; } } .gp-component-id-GSTUMG3tajw { display: flex;flex-direction: column; } @media (max-width: 639px) { .gp-component-id-GSTUMG3tajw { display: flex;flex-direction: column; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-GSTUMG3tajw { display: flex;flex-direction: column; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-GSTUMG3tajw { display: flex;flex-direction: column; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-GSTUMG3tajw { display: flex;flex-direction: column; } } @media (min-width: 1200px) { .gp-component-id-GSTUMG3tajw { display: flex;flex-direction: column; } } @media (max-width: 639px) { .gp-component-id-uLl7YQC0lBf { width: 100%;height: 100%; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-uLl7YQC0lBf { width: 100%;height: 100%; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-uLl7YQC0lBf { width: 100%;height: 100%; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-uLl7YQC0lBf { width: 100%;height: 100%; } } @media (min-width: 1200px) { .gp-component-id-uLl7YQC0lBf { width: 100%;height: 100%; } } .gp-component-id-xmRVOUgbf1 { width: 100%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto; } @media (max-width: 639px) { .gp-component-id-xmRVOUgbf1 { 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-xmRVOUgbf1 { 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-xmRVOUgbf1 { 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-xmRVOUgbf1 { 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-xmRVOUgbf1 { width: 33.3333%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto; } } .gp-component-id-KeGEDdqUJYR { display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;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-KeGEDdqUJYR { display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;max-width: 100%;height: auto;border-top-style: solid;border-right-style: solid;border-bottom-style: solid;border-left-style: solid; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-KeGEDdqUJYR { display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;max-width: 100%;height: auto;border-top-style: solid;border-right-style: solid;border-bottom-style: solid;border-left-style: solid; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-KeGEDdqUJYR { display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;max-width: 100%;height: auto;border-top-style: solid;border-right-style: solid;border-bottom-style: solid;border-left-style: solid; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-KeGEDdqUJYR { display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;max-width: 100%;height: auto;border-top-style: solid;border-right-style: solid;border-bottom-style: solid;border-left-style: solid; } } @media (min-width: 1200px) { .gp-component-id-KeGEDdqUJYR { display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;max-width: 100%;height: auto;border-top-style: solid;border-right-style: solid;border-bottom-style: solid;border-left-style: solid; } } .gp-component-id-vxyi0mlJLmF { 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-vxyi0mlJLmF { font-weight: 700;overflow-wrap: break-word;font-size: inherit;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;text-align: center;cursor: text;box-sizing: border-box; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-vxyi0mlJLmF { font-weight: 700;overflow-wrap: break-word;font-size: inherit;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;text-align: center;cursor: text;box-sizing: border-box; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-vxyi0mlJLmF { font-weight: 700;overflow-wrap: break-word;font-size: inherit;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;text-align: center;cursor: text;box-sizing: border-box; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-vxyi0mlJLmF { font-weight: 700;overflow-wrap: break-word;font-size: inherit;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;text-align: center;cursor: text;box-sizing: border-box; } } @media (min-width: 1200px) { .gp-component-id-vxyi0mlJLmF { font-weight: 700;overflow-wrap: break-word;font-size: inherit;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;text-align: center;cursor: text;box-sizing: border-box; } } .gp-component-id-SAn0Oz2qR4y { display: flex;flex-direction: column; } @media (max-width: 639px) { .gp-component-id-SAn0Oz2qR4y { display: flex;flex-direction: column; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-SAn0Oz2qR4y { display: flex;flex-direction: column; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-SAn0Oz2qR4y { display: flex;flex-direction: column; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-SAn0Oz2qR4y { display: flex;flex-direction: column; } } @media (min-width: 1200px) { .gp-component-id-SAn0Oz2qR4y { display: flex;flex-direction: column; } } @media (max-width: 639px) { .gp-component-id-I0r2W3p8YIQ { width: 100%;height: 100%; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-I0r2W3p8YIQ { width: 100%;height: 100%; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-I0r2W3p8YIQ { width: 100%;height: 100%; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-I0r2W3p8YIQ { width: 100%;height: 100%; } } @media (min-width: 1200px) { .gp-component-id-I0r2W3p8YIQ { width: 100%;height: 100%; } } .gp-component-id-o5Hb9K7UKy { width: 100%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto; } @media (max-width: 639px) { .gp-component-id-o5Hb9K7UKy { 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-o5Hb9K7UKy { 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-o5Hb9K7UKy { 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-o5Hb9K7UKy { 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-o5Hb9K7UKy { width: 33.3333%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto; } } .gp-component-id-JNpVa_HLN6T { display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;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-JNpVa_HLN6T { display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;max-width: 100%;height: auto;border-top-style: solid;border-right-style: solid;border-bottom-style: solid;border-left-style: solid; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-JNpVa_HLN6T { display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;max-width: 100%;height: auto;border-top-style: solid;border-right-style: solid;border-bottom-style: solid;border-left-style: solid; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-JNpVa_HLN6T { display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;max-width: 100%;height: auto;border-top-style: solid;border-right-style: solid;border-bottom-style: solid;border-left-style: solid; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-JNpVa_HLN6T { display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;max-width: 100%;height: auto;border-top-style: solid;border-right-style: solid;border-bottom-style: solid;border-left-style: solid; } } @media (min-width: 1200px) { .gp-component-id-JNpVa_HLN6T { display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;max-width: 100%;height: auto;border-top-style: solid;border-right-style: solid;border-bottom-style: solid;border-left-style: solid; } } .gp-component-id-ydmVkis45B0 { 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-ydmVkis45B0 { font-weight: 700;overflow-wrap: break-word;font-size: inherit;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;text-align: center;cursor: text;box-sizing: border-box; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-ydmVkis45B0 { font-weight: 700;overflow-wrap: break-word;font-size: inherit;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;text-align: center;cursor: text;box-sizing: border-box; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-ydmVkis45B0 { font-weight: 700;overflow-wrap: break-word;font-size: inherit;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;text-align: center;cursor: text;box-sizing: border-box; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-ydmVkis45B0 { font-weight: 700;overflow-wrap: break-word;font-size: inherit;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;text-align: center;cursor: text;box-sizing: border-box; } } @media (min-width: 1200px) { .gp-component-id-ydmVkis45B0 { font-weight: 700;overflow-wrap: break-word;font-size: inherit;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;text-align: center;cursor: text;box-sizing: border-box; } } .gp-component-id-ZWutWibtOWa { display: flex;flex-direction: column; } @media (max-width: 639px) { .gp-component-id-ZWutWibtOWa { display: flex;flex-direction: column; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-ZWutWibtOWa { display: flex;flex-direction: column; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-ZWutWibtOWa { display: flex;flex-direction: column; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-ZWutWibtOWa { display: flex;flex-direction: column; } } @media (min-width: 1200px) { .gp-component-id-ZWutWibtOWa { display: flex;flex-direction: column; } } @media (max-width: 639px) { .gp-component-id-HYmVl0c9RHZ { width: 100%;height: 100%; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-HYmVl0c9RHZ { width: 100%;height: 100%; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-HYmVl0c9RHZ { width: 100%;height: 100%; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-HYmVl0c9RHZ { width: 100%;height: 100%; } } @media (min-width: 1200px) { .gp-component-id-HYmVl0c9RHZ { width: 100%;height: 100%; } } .gp-component-id-JwFf3H5b69 { width: 100%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto; } @media (max-width: 639px) { .gp-component-id-JwFf3H5b69 { 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-JwFf3H5b69 { 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-JwFf3H5b69 { 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-JwFf3H5b69 { 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-JwFf3H5b69 { width: 33.3333%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto; } } .gp-component-id-SvldzoujC { margin-left: -8px;margin-right: -8px;flex-wrap: wrap; } @media (max-width: 639px) { .gp-component-id-SvldzoujC { margin-left: -8px;margin-right: -8px;flex-wrap: wrap; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-SvldzoujC { margin-left: -8px;margin-right: -8px;flex-wrap: wrap; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-SvldzoujC { margin-left: -8px;margin-right: -8px;flex-wrap: wrap;display: flex; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-SvldzoujC { margin-left: -8px;margin-right: -8px;flex-wrap: wrap;display: flex; } } @media (min-width: 1200px) { .gp-component-id-SvldzoujC { margin-left: -8px;margin-right: -8px;flex-wrap: wrap;display: flex; } } @media (max-width: 639px) { .gp-component-id-rQFX2BkomgO { padding-left: 8px;padding-right: 8px;width: 100%; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-rQFX2BkomgO { padding-left: 8px;padding-right: 8px;width: 100%; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-rQFX2BkomgO { padding-left: 8px;padding-right: 8px;width: 100%; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-rQFX2BkomgO { padding-left: 8px;padding-right: 8px;width: 100%; } } @media (min-width: 1200px) { .gp-component-id-rQFX2BkomgO { margin-top: 20px;padding-left: 8px;padding-right: 8px;width: 100%; } } .gp-component-id-CTkNZjtKqGD { display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;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-CTkNZjtKqGD { display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;max-width: 100%;height: auto;border-top-style: solid;border-right-style: solid;border-bottom-style: solid;border-left-style: solid; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-CTkNZjtKqGD { display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;max-width: 100%;height: auto;border-top-style: solid;border-right-style: solid;border-bottom-style: solid;border-left-style: solid; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-CTkNZjtKqGD { display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;max-width: 100%;height: auto;border-top-style: solid;border-right-style: solid;border-bottom-style: solid;border-left-style: solid; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-CTkNZjtKqGD { display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;max-width: 100%;height: auto;border-top-style: solid;border-right-style: solid;border-bottom-style: solid;border-left-style: solid; } } @media (min-width: 1200px) { .gp-component-id-CTkNZjtKqGD { display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;max-width: 100%;height: auto;border-top-style: solid;border-right-style: solid;border-bottom-style: solid;border-left-style: solid; } } .gp-component-id-wZMoqfDzNvp { 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-wZMoqfDzNvp { font-weight: 700;overflow-wrap: break-word;font-size: inherit;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;text-align: center;cursor: text;box-sizing: border-box; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-wZMoqfDzNvp { font-weight: 700;overflow-wrap: break-word;font-size: inherit;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;text-align: center;cursor: text;box-sizing: border-box; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-wZMoqfDzNvp { font-weight: 700;overflow-wrap: break-word;font-size: inherit;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;text-align: center;cursor: text;box-sizing: border-box; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-wZMoqfDzNvp { font-weight: 700;overflow-wrap: break-word;font-size: inherit;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;text-align: center;cursor: text;box-sizing: border-box; } } @media (min-width: 1200px) { .gp-component-id-wZMoqfDzNvp { font-weight: 700;overflow-wrap: break-word;font-size: inherit;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;text-align: center;cursor: text;box-sizing: border-box; } } .gp-component-id-naI6qxh1ZKb { display: flex;flex-direction: column; } @media (max-width: 639px) { .gp-component-id-naI6qxh1ZKb { display: flex;flex-direction: column; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-naI6qxh1ZKb { display: flex;flex-direction: column; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-naI6qxh1ZKb { display: flex;flex-direction: column; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-naI6qxh1ZKb { display: flex;flex-direction: column; } } @media (min-width: 1200px) { .gp-component-id-naI6qxh1ZKb { display: flex;flex-direction: column; } } .gp-component-id-KzA9j1RCVOr { height: 100%;width: 100%; } @media (max-width: 639px) { .gp-component-id-KzA9j1RCVOr { height: 100%;width: 100%; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-KzA9j1RCVOr { height: 100%;width: 100%; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-KzA9j1RCVOr { height: 100%;width: 100%; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-KzA9j1RCVOr { height: 100%;width: 100%; } } @media (min-width: 1200px) { .gp-component-id-KzA9j1RCVOr { height: 100%;width: 100%; } } .gp-component-id-oJRmQ7Z8Kw { flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%; } @media (max-width: 639px) { .gp-component-id-oJRmQ7Z8Kw { 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-oJRmQ7Z8Kw { 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-oJRmQ7Z8Kw { 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-oJRmQ7Z8Kw { 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-oJRmQ7Z8Kw { flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 33.3333%; } } .gp-component-id-PcAQW9m0n0I { display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;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-PcAQW9m0n0I { display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;max-width: 100%;height: auto;border-top-style: solid;border-right-style: solid;border-bottom-style: solid;border-left-style: solid; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-PcAQW9m0n0I { display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;max-width: 100%;height: auto;border-top-style: solid;border-right-style: solid;border-bottom-style: solid;border-left-style: solid; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-PcAQW9m0n0I { display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;max-width: 100%;height: auto;border-top-style: solid;border-right-style: solid;border-bottom-style: solid;border-left-style: solid; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-PcAQW9m0n0I { display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;max-width: 100%;height: auto;border-top-style: solid;border-right-style: solid;border-bottom-style: solid;border-left-style: solid; } } @media (min-width: 1200px) { .gp-component-id-PcAQW9m0n0I { display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;max-width: 100%;height: auto;border-top-style: solid;border-right-style: solid;border-bottom-style: solid;border-left-style: solid; } } .gp-component-id-6iL5VESD6BK { 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-6iL5VESD6BK { font-weight: 700;overflow-wrap: break-word;font-size: inherit;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;text-align: center;box-sizing: border-box;cursor: text; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-6iL5VESD6BK { font-weight: 700;overflow-wrap: break-word;font-size: inherit;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;text-align: center;box-sizing: border-box;cursor: text; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-6iL5VESD6BK { font-weight: 700;overflow-wrap: break-word;font-size: inherit;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;text-align: center;box-sizing: border-box;cursor: text; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-6iL5VESD6BK { font-weight: 700;overflow-wrap: break-word;font-size: inherit;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;text-align: center;box-sizing: border-box;cursor: text; } } @media (min-width: 1200px) { .gp-component-id-6iL5VESD6BK { font-weight: 700;overflow-wrap: break-word;font-size: inherit;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;text-align: center;box-sizing: border-box;cursor: text; } } .gp-component-id-sesKIg_ctt7 { display: flex;flex-direction: column; } @media (max-width: 639px) { .gp-component-id-sesKIg_ctt7 { display: flex;flex-direction: column; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-sesKIg_ctt7 { display: flex;flex-direction: column; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-sesKIg_ctt7 { display: flex;flex-direction: column; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-sesKIg_ctt7 { display: flex;flex-direction: column; } } @media (min-width: 1200px) { .gp-component-id-sesKIg_ctt7 { display: flex;flex-direction: column; } } .gp-component-id-84LbZrAvl0L { height: 100%;width: 100%; } @media (max-width: 639px) { .gp-component-id-84LbZrAvl0L { height: 100%;width: 100%; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-84LbZrAvl0L { height: 100%;width: 100%; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-84LbZrAvl0L { height: 100%;width: 100%; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-84LbZrAvl0L { height: 100%;width: 100%; } } @media (min-width: 1200px) { .gp-component-id-84LbZrAvl0L { height: 100%;width: 100%; } } .gp-component-id-C2P302ErW2 { flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%; } @media (max-width: 639px) { .gp-component-id-C2P302ErW2 { 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-C2P302ErW2 { 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-C2P302ErW2 { 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-C2P302ErW2 { 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-C2P302ErW2 { flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 33.3333%; } } .gp-component-id-IKUIz_vL3b { 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-IKUIz_vL3b { max-width: 100%;height: auto;border-top-style: solid;border-right-style: solid;border-bottom-style: solid;border-left-style: solid;box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;justify-content: flex-start;align-items: flex-start;display: inline-flex;vertical-align: middle;object-position: center center;object-fit: cover; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-IKUIz_vL3b { max-width: 100%;height: auto;border-top-style: solid;border-right-style: solid;border-bottom-style: solid;border-left-style: solid;box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;justify-content: flex-start;align-items: flex-start;display: inline-flex;vertical-align: middle;object-position: center center;object-fit: cover; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-IKUIz_vL3b { max-width: 100%;height: auto;border-top-style: solid;border-right-style: solid;border-bottom-style: solid;border-left-style: solid;box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;justify-content: flex-start;align-items: flex-start;display: inline-flex;vertical-align: middle;object-position: center center;object-fit: cover; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-IKUIz_vL3b { max-width: 100%;height: auto;border-top-style: solid;border-right-style: solid;border-bottom-style: solid;border-left-style: solid;box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;justify-content: flex-start;align-items: flex-start;display: inline-flex;vertical-align: middle;object-position: center center;object-fit: cover; } } @media (min-width: 1200px) { .gp-component-id-IKUIz_vL3b { max-width: 100%;height: auto;border-top-style: solid;border-right-style: solid;border-bottom-style: solid;border-left-style: solid;box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;justify-content: flex-start;align-items: flex-start;display: inline-flex;vertical-align: middle;object-position: center center;object-fit: cover; } } .gp-component-id-JcG29oXSdF { 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-JcG29oXSdF { font-weight: 700;overflow-wrap: break-word;font-size: inherit;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;text-align: center;box-sizing: border-box;cursor: text; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-JcG29oXSdF { font-weight: 700;overflow-wrap: break-word;font-size: inherit;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;text-align: center;box-sizing: border-box;cursor: text; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-JcG29oXSdF { font-weight: 700;overflow-wrap: break-word;font-size: inherit;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;text-align: center;box-sizing: border-box;cursor: text; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-JcG29oXSdF { font-weight: 700;overflow-wrap: break-word;font-size: inherit;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;text-align: center;box-sizing: border-box;cursor: text; } } @media (min-width: 1200px) { .gp-component-id-JcG29oXSdF { font-weight: 700;overflow-wrap: break-word;font-size: inherit;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;text-align: center;box-sizing: border-box;cursor: text; } } .gp-component-id-BXKxyjnbGf { display: flex;flex-direction: column; } @media (max-width: 639px) { .gp-component-id-BXKxyjnbGf { display: flex;flex-direction: column; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-BXKxyjnbGf { display: flex;flex-direction: column; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-BXKxyjnbGf { display: flex;flex-direction: column; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-BXKxyjnbGf { display: flex;flex-direction: column; } } @media (min-width: 1200px) { .gp-component-id-BXKxyjnbGf { display: flex;flex-direction: column; } } .gp-component-id-5ttUoODYsn { height: 100%;width: 100%; } @media (max-width: 639px) { .gp-component-id-5ttUoODYsn { height: 100%;width: 100%; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-5ttUoODYsn { height: 100%;width: 100%; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-5ttUoODYsn { height: 100%;width: 100%; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-5ttUoODYsn { height: 100%;width: 100%; } } @media (min-width: 1200px) { .gp-component-id-5ttUoODYsn { height: 100%;width: 100%; } } .gp-component-id-sSA4LvbSrj { flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%; } @media (max-width: 639px) { .gp-component-id-sSA4LvbSrj { 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-sSA4LvbSrj { 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-sSA4LvbSrj { 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-sSA4LvbSrj { 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-sSA4LvbSrj { flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 33.3333%; } } .gp-component-id-ANr0_uRKm { flex-wrap: wrap;margin-right: -8px;margin-left: -8px; } @media (max-width: 639px) { .gp-component-id-ANr0_uRKm { flex-wrap: wrap;margin-right: -8px;margin-left: -8px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-ANr0_uRKm { flex-wrap: wrap;margin-right: -8px;margin-left: -8px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-ANr0_uRKm { flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-ANr0_uRKm { flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex; } } @media (min-width: 1200px) { .gp-component-id-ANr0_uRKm { flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex; } } .gp-component-id-ZjMh5Nxgms { padding-right: 8px;padding-left: 8px;width: 100%; } @media (max-width: 639px) { .gp-component-id-ZjMh5Nxgms { padding-right: 8px;padding-left: 8px;width: 100%; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-ZjMh5Nxgms { padding-right: 8px;padding-left: 8px;width: 100%; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-ZjMh5Nxgms { padding-right: 8px;padding-left: 8px;width: 100%; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-ZjMh5Nxgms { padding-right: 8px;padding-left: 8px;width: 100%; } } @media (min-width: 1200px) { .gp-component-id-ZjMh5Nxgms { padding-right: 8px;padding-left: 8px;width: 100%; } } .gp-component-id-N5l5phRKdQ { 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-N5l5phRKdQ { font-weight: 600 !important;overflow-wrap: break-word;font-size: 25px !important;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;color: rgb(3, 58, 124);text-align: center;box-sizing: border-box;cursor: text; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-N5l5phRKdQ { font-weight: 600 !important;overflow-wrap: break-word;font-size: 25px !important;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;color: rgb(3, 58, 124);text-align: center;box-sizing: border-box;cursor: text; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-N5l5phRKdQ { font-weight: 600 !important;overflow-wrap: break-word;font-size: 25px !important;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;color: rgb(3, 58, 124);text-align: center;box-sizing: border-box;cursor: text; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-N5l5phRKdQ { font-weight: 600 !important;overflow-wrap: break-word;font-size: 25px !important;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;color: rgb(3, 58, 124);text-align: center;box-sizing: border-box;cursor: text; } } @media (min-width: 1200px) { .gp-component-id-N5l5phRKdQ { font-weight: 600 !important;overflow-wrap: break-word;font-size: 25px !important;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;color: rgb(3, 58, 124);text-align: center;box-sizing: border-box;cursor: text; } } .gp-component-id-sqg0RLdcib { display: flex;flex-direction: column; } @media (max-width: 639px) { .gp-component-id-sqg0RLdcib { display: flex;flex-direction: column; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-sqg0RLdcib { display: flex;flex-direction: column; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-sqg0RLdcib { display: flex;flex-direction: column; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-sqg0RLdcib { display: flex;flex-direction: column; } } @media (min-width: 1200px) { .gp-component-id-sqg0RLdcib { display: flex;flex-direction: column; } } .gp-component-id-B857ayS_0m { 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-B857ayS_0m { font-weight: 400 !important;overflow-wrap: break-word;font-size: 16px !important;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;font-style: inherit !important;text-align: left;padding-top: 10px;padding-bottom: 10px;text-decoration-line: inherit;cursor: text;box-sizing: border-box; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-B857ayS_0m { font-weight: 400 !important;overflow-wrap: break-word;font-size: 16px !important;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;font-style: inherit !important;text-align: left;padding-top: 10px;padding-bottom: 10px;text-decoration-line: inherit;cursor: text;box-sizing: border-box; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-B857ayS_0m { font-weight: 400 !important;overflow-wrap: break-word;font-size: 16px !important;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;font-style: inherit !important;text-align: left;padding-top: 10px;padding-bottom: 10px;text-decoration-line: inherit;cursor: text;box-sizing: border-box; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-B857ayS_0m { font-weight: 400 !important;overflow-wrap: break-word;font-size: 16px !important;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;font-style: inherit !important;text-align: left;padding-top: 10px;padding-bottom: 10px;text-decoration-line: inherit;cursor: text;box-sizing: border-box; } } @media (min-width: 1200px) { .gp-component-id-B857ayS_0m { font-weight: 400 !important;overflow-wrap: break-word;font-size: 16px !important;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;font-style: inherit !important;text-align: left;padding-top: 10px;padding-bottom: 10px;text-decoration-line: inherit;cursor: text;box-sizing: border-box; } } .gp-component-id-COGUHAmgtu { display: flex;flex-direction: column; } @media (max-width: 639px) { .gp-component-id-COGUHAmgtu { display: flex;flex-direction: column; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-COGUHAmgtu { display: flex;flex-direction: column; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-COGUHAmgtu { display: flex;flex-direction: column; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-COGUHAmgtu { display: flex;flex-direction: column; } } @media (min-width: 1200px) { .gp-component-id-COGUHAmgtu { display: flex;flex-direction: column; } } .gp-component-id-cYQxXNgVYj { 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-cYQxXNgVYj { font-weight: 400 !important;overflow-wrap: break-word;font-size: 25px !important;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;font-style: italic !important;text-align: center;padding-top: 10px;box-sizing: border-box;cursor: text;text-decoration-line: inherit; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-cYQxXNgVYj { font-weight: 400 !important;overflow-wrap: break-word;font-size: 25px !important;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;font-style: italic !important;text-align: center;padding-top: 10px;box-sizing: border-box;cursor: text;text-decoration-line: inherit; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-cYQxXNgVYj { font-weight: 400 !important;overflow-wrap: break-word;font-size: 25px !important;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;font-style: italic !important;text-align: center;padding-top: 10px;box-sizing: border-box;cursor: text;text-decoration-line: inherit; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-cYQxXNgVYj { font-weight: 400 !important;overflow-wrap: break-word;font-size: 25px !important;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;font-style: italic !important;text-align: center;padding-top: 10px;box-sizing: border-box;cursor: text;text-decoration-line: inherit; } } @media (min-width: 1200px) { .gp-component-id-cYQxXNgVYj { font-weight: 400 !important;overflow-wrap: break-word;font-size: 25px !important;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;font-style: italic !important;text-align: center;padding-top: 10px;box-sizing: border-box;cursor: text;text-decoration-line: inherit; } } .gp-component-id-LAVmQ30Qpb { display: flex;flex-direction: column; } @media (max-width: 639px) { .gp-component-id-LAVmQ30Qpb { display: flex;flex-direction: column; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-LAVmQ30Qpb { display: flex;flex-direction: column; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-LAVmQ30Qpb { display: flex;flex-direction: column; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-LAVmQ30Qpb { display: flex;flex-direction: column; } } @media (min-width: 1200px) { .gp-component-id-LAVmQ30Qpb { display: flex;flex-direction: column; } } @media (max-width: 639px) { .gp-component-id-rquSgRfXX8 { border-left-style: dashed;border-right-style: dashed;border-top-style: dashed;border-bottom-style: dashed;border-left-width: 0px;border-right-width: 0px;border-top-width: 2px;border-bottom-width: 0px;border-left-color: rgb(32, 45, 60);border-right-color: rgb(32, 45, 60);border-top-color: rgb(32, 45, 60);border-bottom-color: rgb(32, 45, 60);margin-left: auto;margin-right: auto;margin-top: 16px;padding-bottom: 8px;width: 100%; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-rquSgRfXX8 { border-left-style: dashed;border-right-style: dashed;border-top-style: dashed;border-bottom-style: dashed;border-left-width: 0px;border-right-width: 0px;border-top-width: 2px;border-bottom-width: 0px;border-left-color: rgb(32, 45, 60);border-right-color: rgb(32, 45, 60);border-top-color: rgb(32, 45, 60);border-bottom-color: rgb(32, 45, 60);margin-left: auto;margin-right: auto;margin-top: 16px;padding-bottom: 8px;width: 100%; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-rquSgRfXX8 { border-left-style: dashed;border-right-style: dashed;border-top-style: dashed;border-bottom-style: dashed;border-left-width: 0px;border-right-width: 0px;border-top-width: 2px;border-bottom-width: 0px;border-left-color: rgb(32, 45, 60);border-right-color: rgb(32, 45, 60);border-top-color: rgb(32, 45, 60);border-bottom-color: rgb(32, 45, 60);margin-left: auto;margin-right: auto;margin-top: 16px;padding-bottom: 8px;width: 100%; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-rquSgRfXX8 { border-left-style: dashed;border-right-style: dashed;border-top-style: dashed;border-bottom-style: dashed;border-left-width: 0px;border-right-width: 0px;border-top-width: 2px;border-bottom-width: 0px;border-left-color: rgb(32, 45, 60);border-right-color: rgb(32, 45, 60);border-top-color: rgb(32, 45, 60);border-bottom-color: rgb(32, 45, 60);margin-left: auto;margin-right: auto;margin-top: 16px;padding-bottom: 8px;width: 100%; } } @media (min-width: 1200px) { .gp-component-id-rquSgRfXX8 { border-left-style: dashed;border-right-style: dashed;border-top-style: dashed;border-bottom-style: dashed;border-left-width: 0px;border-right-width: 0px;border-top-width: 2px;border-bottom-width: 0px;border-left-color: rgb(32, 45, 60);border-right-color: rgb(32, 45, 60);border-top-color: rgb(32, 45, 60);border-bottom-color: rgb(32, 45, 60);margin-left: auto;margin-right: auto;margin-top: 16px;padding-bottom: 8px;width: 100%; } } @media (max-width: 639px) { .gp-component-id-jJjfZk0Y9C { margin-top: 28px;width: 100%;min-height: 120px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-jJjfZk0Y9C { width: 100%;min-height: 120px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-jJjfZk0Y9C { width: 100%;min-height: 120px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-jJjfZk0Y9C { width: 100%;min-height: 120px; } } @media (min-width: 1200px) { .gp-component-id-jJjfZk0Y9C { width: 100%;min-height: 120px; } } @media (max-width: 639px) { .gp-component-id-HFUPArtE8O { padding-left: 8px;padding-right: 8px;width: 100%; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-HFUPArtE8O { padding-left: 8px;padding-right: 8px;width: 100%; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-HFUPArtE8O { padding-left: 8px;padding-right: 8px;width: 100%; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-HFUPArtE8O { padding-left: 8px;padding-right: 8px;width: 100%; } } @media (min-width: 1200px) { .gp-component-id-HFUPArtE8O { padding-left: 8px;padding-right: 8px;width: 100%; } } .gp-component-id-SrGm5GI36k { position: relative;z-index: 15; } @media (max-width: 639px) { .gp-component-id-SrGm5GI36k { position: relative;z-index: 15;margin-left: auto;margin-right: auto;width: 100%; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-SrGm5GI36k { position: relative;z-index: 15;margin-left: auto;margin-right: auto;width: 100%;max-width: 640px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-SrGm5GI36k { position: relative;z-index: 15;margin-left: auto;margin-right: auto;width: 100%;max-width: 768px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-SrGm5GI36k { position: relative;z-index: 15;margin-left: auto;margin-right: auto;width: 100%;max-width: 768px; } } @media (min-width: 1200px) { .gp-component-id-SrGm5GI36k { position: relative;z-index: 15;margin-left: auto;margin-right: auto;width: 100%;max-width: 1200px; } } .gp-component-id-Bg1ae6cWS.gp-component > [data-section-overlay] { right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;z-index: 14; } @media (max-width: 639px) { .gp-component-id-Bg1ae6cWS.gp-component > [data-section-overlay] { right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;z-index: 14; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-Bg1ae6cWS.gp-component > [data-section-overlay] { right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;z-index: 14; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-Bg1ae6cWS.gp-component > [data-section-overlay] { right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;z-index: 14; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-Bg1ae6cWS.gp-component > [data-section-overlay] { right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;z-index: 14; } } @media (min-width: 1200px) { .gp-component-id-Bg1ae6cWS.gp-component > [data-section-overlay] { right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;z-index: 14; } } .gp-component-id-kB02UJK75Rr { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: inherit;z-index: 15;position: relative; } @media (max-width: 639px) { .gp-component-id-kB02UJK75Rr { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: inherit;z-index: 15;position: relative; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-kB02UJK75Rr { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: inherit;z-index: 15;position: relative; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-kB02UJK75Rr { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: inherit;z-index: 15;position: relative; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-kB02UJK75Rr { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: inherit;z-index: 15;position: relative; } } @media (min-width: 1200px) { .gp-component-id-kB02UJK75Rr { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: inherit;z-index: 15;position: relative; } } .gp-component-id-Bg1ae6cWS { z-index: auto;position: relative;min-height: 50px; } @media (max-width: 639px) { .gp-component-id-Bg1ae6cWS { z-index: auto !important;position: relative;min-height: 50px;padding-top: 0px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-Bg1ae6cWS { z-index: auto !important;position: relative;min-height: 50px;padding-top: 0px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-Bg1ae6cWS { z-index: auto !important;position: relative;min-height: 50px;padding-top: 0px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-Bg1ae6cWS { z-index: auto !important;position: relative;min-height: 50px;padding-top: 0px; } } @media (min-width: 1200px) { .gp-component-id-Bg1ae6cWS { z-index: auto !important;position: relative;min-height: 50px;padding-top: 0px;padding-bottom: 36px; } } .gp-component-id-lJNiAY9Q9Q { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word; } @media (max-width: 639px) { .gp-component-id-lJNiAY9Q9Q { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;text-decoration-line: inherit;font-style: italic;text-align: center; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-lJNiAY9Q9Q { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;text-decoration-line: inherit;font-style: italic;text-align: center; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-lJNiAY9Q9Q { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;text-decoration-line: inherit;font-style: italic;text-align: center; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-lJNiAY9Q9Q { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;text-decoration-line: inherit;font-style: italic;text-align: center; } } @media (min-width: 1200px) { .gp-component-id-lJNiAY9Q9Q { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;text-decoration-line: inherit;font-style: italic;text-align: center; } } .gp-component-id-CWQrLMcnL { flex-direction: column;display: flex; } @media (max-width: 639px) { .gp-component-id-CWQrLMcnL { flex-direction: column;display: flex; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-CWQrLMcnL { flex-direction: column;display: flex; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-CWQrLMcnL { flex-direction: column;display: flex; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-CWQrLMcnL { flex-direction: column;display: flex; } } @media (min-width: 1200px) { .gp-component-id-CWQrLMcnL { flex-direction: column;display: flex; } } .gp-component-id-TJr4iXseNlK { color: inherit;background-color: transparent;cursor: pointer;align-items: center;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial; } @media (max-width: 639px) { .gp-component-id-TJr4iXseNlK { color: rgb(32, 45, 60);background-color: rgb(46, 140, 255);cursor: pointer;align-items: center;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;font-weight: 600 !important;font-size: 23px !important;display: inline-flex;padding-bottom: 8px;padding-top: 8px;padding-right: 16px;padding-left: 16px;margin-bottom: 5px;margin-top: 10px;border-bottom-width: 0px;border-top-width: 0px;border-right-width: 0px;border-left-width: 0px;border-bottom-right-radius: 10px;border-bottom-left-radius: 10px;border-top-right-radius: 10px;border-top-left-radius: 10px;text-align: center; } .gp-component-id-TJr4iXseNlK:hover,.gp-component-id-TJr4iXseNlK.gp-hover { background-color: rgb(120, 136, 155); } .gp-component-id-TJr4iXseNlK:active,.gp-component-id-TJr4iXseNlK.gp-active { background-color: rgb(32, 45, 60); } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-TJr4iXseNlK { color: rgb(32, 45, 60);background-color: rgb(46, 140, 255);cursor: pointer;align-items: center;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;font-weight: 600 !important;font-size: 23px !important;display: inline-flex;padding-bottom: 8px;padding-top: 8px;padding-right: 16px;padding-left: 16px;margin-bottom: 5px;margin-top: 10px;border-bottom-width: 0px;border-top-width: 0px;border-right-width: 0px;border-left-width: 0px;border-bottom-right-radius: 10px;border-bottom-left-radius: 10px;border-top-right-radius: 10px;border-top-left-radius: 10px;text-align: center; } .gp-component-id-TJr4iXseNlK:hover,.gp-component-id-TJr4iXseNlK.gp-hover { background-color: rgb(120, 136, 155); } .gp-component-id-TJr4iXseNlK:active,.gp-component-id-TJr4iXseNlK.gp-active { background-color: rgb(32, 45, 60); } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-TJr4iXseNlK { color: rgb(32, 45, 60);background-color: rgb(46, 140, 255);cursor: pointer;align-items: center;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;font-weight: 600 !important;font-size: 23px !important;display: inline-flex;padding-bottom: 8px;padding-top: 8px;padding-right: 16px;padding-left: 16px;margin-bottom: 5px;margin-top: 10px;border-bottom-width: 0px;border-top-width: 0px;border-right-width: 0px;border-left-width: 0px;border-bottom-right-radius: 10px;border-bottom-left-radius: 10px;border-top-right-radius: 10px;border-top-left-radius: 10px;text-align: center; } .gp-component-id-TJr4iXseNlK:hover,.gp-component-id-TJr4iXseNlK.gp-hover { background-color: rgb(120, 136, 155); } .gp-component-id-TJr4iXseNlK:active,.gp-component-id-TJr4iXseNlK.gp-active { background-color: rgb(32, 45, 60); } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-TJr4iXseNlK { color: rgb(32, 45, 60);background-color: rgb(46, 140, 255);cursor: pointer;align-items: center;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;font-weight: 600 !important;font-size: 23px !important;display: inline-flex;padding-bottom: 8px;padding-top: 8px;padding-right: 16px;padding-left: 16px;margin-bottom: 5px;margin-top: 10px;border-bottom-width: 0px;border-top-width: 0px;border-right-width: 0px;border-left-width: 0px;border-bottom-right-radius: 10px;border-bottom-left-radius: 10px;border-top-right-radius: 10px;border-top-left-radius: 10px;text-align: center; } .gp-component-id-TJr4iXseNlK:hover,.gp-component-id-TJr4iXseNlK.gp-hover { background-color: rgb(120, 136, 155); } .gp-component-id-TJr4iXseNlK:active,.gp-component-id-TJr4iXseNlK.gp-active { background-color: rgb(32, 45, 60); } } @media (min-width: 1200px) { .gp-component-id-TJr4iXseNlK { color: rgb(32, 45, 60);background-color: rgb(46, 140, 255);cursor: pointer;align-items: center;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;font-weight: 600 !important;font-size: 23px !important;display: inline-flex;padding-bottom: 8px;padding-top: 8px;padding-right: 16px;padding-left: 16px;margin-bottom: 5px;margin-top: 10px;border-bottom-width: 0px;border-top-width: 0px;border-right-width: 0px;border-left-width: 0px;border-bottom-right-radius: 10px;border-bottom-left-radius: 10px;border-top-right-radius: 10px;border-top-left-radius: 10px;text-align: center; } .gp-component-id-TJr4iXseNlK:hover,.gp-component-id-TJr4iXseNlK.gp-hover { background-color: rgb(120, 136, 155); } .gp-component-id-TJr4iXseNlK:active,.gp-component-id-TJr4iXseNlK.gp-active { background-color: rgb(32, 45, 60); } } .gp-component-id-cTwNj2tBq { 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-cTwNj2tBq { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-weight: 700 !important;font-size: 25px !important;padding-top: 10px;background-color: rgba(255, 255, 255, 0);text-align: center;color: rgb(11, 91, 42); } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-cTwNj2tBq { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-weight: 700 !important;font-size: 25px !important;padding-top: 10px;background-color: rgba(255, 255, 255, 0);text-align: center;color: rgb(11, 91, 42); } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-cTwNj2tBq { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-weight: 700 !important;font-size: 25px !important;padding-top: 10px;background-color: rgba(255, 255, 255, 0);text-align: center;color: rgb(11, 91, 42); } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-cTwNj2tBq { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-weight: 700 !important;font-size: 25px !important;padding-top: 10px;background-color: rgba(255, 255, 255, 0);text-align: center;color: rgb(11, 91, 42); } } @media (min-width: 1200px) { .gp-component-id-cTwNj2tBq { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-weight: 700 !important;font-size: 25px !important;padding-top: 10px;background-color: rgba(255, 255, 255, 0);text-align: center;color: rgb(11, 91, 42); } } .gp-component-id-QvtbgeIf7K { flex-direction: column;display: flex; } @media (max-width: 639px) { .gp-component-id-QvtbgeIf7K { flex-direction: column;display: flex; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-QvtbgeIf7K { flex-direction: column;display: flex; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-QvtbgeIf7K { flex-direction: column;display: flex; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-QvtbgeIf7K { flex-direction: column;display: flex; } } @media (min-width: 1200px) { .gp-component-id-QvtbgeIf7K { flex-direction: column;display: flex; } } @media (max-width: 639px) { .gp-component-id-TH0dR2oeys { display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-TH0dR2oeys { display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-TH0dR2oeys { display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-TH0dR2oeys { display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%; } } @media (min-width: 1200px) { .gp-component-id-TH0dR2oeys { display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%; } } .gp-component-id-7UTHyiWCPr { padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto; } @media (max-width: 639px) { .gp-component-id-7UTHyiWCPr { padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-7UTHyiWCPr { padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-7UTHyiWCPr { padding-left: 8px;width: 50%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-7UTHyiWCPr { padding-left: 8px;width: 50%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto; } } @media (min-width: 1200px) { .gp-component-id-7UTHyiWCPr { padding-left: 8px;width: 50%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto; } } .gp-component-id-NtP7EYT0m { margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;overflow-wrap: break-word; } @media (max-width: 639px) { .gp-component-id-NtP7EYT0m { margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;overflow-wrap: break-word;font-style: italic;text-decoration-line: inherit;text-align: center; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-NtP7EYT0m { margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;overflow-wrap: break-word;font-style: italic;text-decoration-line: inherit;text-align: center; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-NtP7EYT0m { margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;overflow-wrap: break-word;font-style: italic;text-decoration-line: inherit;text-align: center; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-NtP7EYT0m { margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;overflow-wrap: break-word;font-style: italic;text-decoration-line: inherit;text-align: center; } } @media (min-width: 1200px) { .gp-component-id-NtP7EYT0m { margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;overflow-wrap: break-word;font-style: italic;text-decoration-line: inherit;text-align: center; } } .gp-component-id-Y6fvDlJ4ds { flex-direction: column;display: flex; } @media (max-width: 639px) { .gp-component-id-Y6fvDlJ4ds { flex-direction: column;display: flex; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-Y6fvDlJ4ds { flex-direction: column;display: flex; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-Y6fvDlJ4ds { flex-direction: column;display: flex; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-Y6fvDlJ4ds { flex-direction: column;display: flex; } } @media (min-width: 1200px) { .gp-component-id-Y6fvDlJ4ds { flex-direction: column;display: flex; } } .gp-component-id-QzJK2mMPzw { 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-QzJK2mMPzw { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;align-items: center;cursor: pointer;background-color: rgb(46, 140, 255);color: rgb(32, 45, 60);font-weight: 600 !important;font-size: 23px !important;display: inline-flex;padding-bottom: 8px;padding-top: 8px;padding-right: 16px;padding-left: 16px;margin-bottom: 5px;margin-top: 10px;border-bottom-width: 0px;border-top-width: 0px;border-right-width: 0px;border-left-width: 0px;border-bottom-right-radius: 10px;border-bottom-left-radius: 10px;border-top-right-radius: 10px;border-top-left-radius: 10px;text-align: center; } .gp-component-id-QzJK2mMPzw:hover,.gp-component-id-QzJK2mMPzw.gp-hover { background-color: rgb(120, 136, 155); } .gp-component-id-QzJK2mMPzw:active,.gp-component-id-QzJK2mMPzw.gp-active { background-color: rgb(32, 45, 60); } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-QzJK2mMPzw { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;align-items: center;cursor: pointer;background-color: rgb(46, 140, 255);color: rgb(32, 45, 60);font-weight: 600 !important;font-size: 23px !important;display: inline-flex;padding-bottom: 8px;padding-top: 8px;padding-right: 16px;padding-left: 16px;margin-bottom: 5px;margin-top: 10px;border-bottom-width: 0px;border-top-width: 0px;border-right-width: 0px;border-left-width: 0px;border-bottom-right-radius: 10px;border-bottom-left-radius: 10px;border-top-right-radius: 10px;border-top-left-radius: 10px;text-align: center; } .gp-component-id-QzJK2mMPzw:hover,.gp-component-id-QzJK2mMPzw.gp-hover { background-color: rgb(120, 136, 155); } .gp-component-id-QzJK2mMPzw:active,.gp-component-id-QzJK2mMPzw.gp-active { background-color: rgb(32, 45, 60); } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-QzJK2mMPzw { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;align-items: center;cursor: pointer;background-color: rgb(46, 140, 255);color: rgb(32, 45, 60);font-weight: 600 !important;font-size: 23px !important;display: inline-flex;padding-bottom: 8px;padding-top: 8px;padding-right: 16px;padding-left: 16px;margin-bottom: 5px;margin-top: 10px;border-bottom-width: 0px;border-top-width: 0px;border-right-width: 0px;border-left-width: 0px;border-bottom-right-radius: 10px;border-bottom-left-radius: 10px;border-top-right-radius: 10px;border-top-left-radius: 10px;text-align: center; } .gp-component-id-QzJK2mMPzw:hover,.gp-component-id-QzJK2mMPzw.gp-hover { background-color: rgb(120, 136, 155); } .gp-component-id-QzJK2mMPzw:active,.gp-component-id-QzJK2mMPzw.gp-active { background-color: rgb(32, 45, 60); } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-QzJK2mMPzw { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;align-items: center;cursor: pointer;background-color: rgb(46, 140, 255);color: rgb(32, 45, 60);font-weight: 600 !important;font-size: 23px !important;display: inline-flex;padding-bottom: 8px;padding-top: 8px;padding-right: 16px;padding-left: 16px;margin-bottom: 5px;margin-top: 10px;border-bottom-width: 0px;border-top-width: 0px;border-right-width: 0px;border-left-width: 0px;border-bottom-right-radius: 10px;border-bottom-left-radius: 10px;border-top-right-radius: 10px;border-top-left-radius: 10px;text-align: center; } .gp-component-id-QzJK2mMPzw:hover,.gp-component-id-QzJK2mMPzw.gp-hover { background-color: rgb(120, 136, 155); } .gp-component-id-QzJK2mMPzw:active,.gp-component-id-QzJK2mMPzw.gp-active { background-color: rgb(32, 45, 60); } } @media (min-width: 1200px) { .gp-component-id-QzJK2mMPzw { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;align-items: center;cursor: pointer;background-color: rgb(46, 140, 255);color: rgb(32, 45, 60);font-weight: 600 !important;font-size: 23px !important;display: inline-flex;padding-bottom: 8px;padding-top: 8px;padding-right: 16px;padding-left: 16px;margin-bottom: 5px;margin-top: 10px;border-bottom-width: 0px;border-top-width: 0px;border-right-width: 0px;border-left-width: 0px;border-bottom-right-radius: 10px;border-bottom-left-radius: 10px;border-top-right-radius: 10px;border-top-left-radius: 10px;text-align: center; } .gp-component-id-QzJK2mMPzw:hover,.gp-component-id-QzJK2mMPzw.gp-hover { background-color: rgb(120, 136, 155); } .gp-component-id-QzJK2mMPzw:active,.gp-component-id-QzJK2mMPzw.gp-active { background-color: rgb(32, 45, 60); } } .gp-component-id-YdO4j0p3r2 { 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-YdO4j0p3r2 { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-weight: 700 !important;font-size: 25px !important;padding-top: 10px;background-color: rgba(255, 255, 255, 0);text-align: center;color: rgb(119, 50, 0); } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-YdO4j0p3r2 { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-weight: 700 !important;font-size: 25px !important;padding-top: 10px;background-color: rgba(255, 255, 255, 0);text-align: center;color: rgb(119, 50, 0); } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-YdO4j0p3r2 { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-weight: 700 !important;font-size: 25px !important;padding-top: 10px;background-color: rgba(255, 255, 255, 0);text-align: center;color: rgb(119, 50, 0); } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-YdO4j0p3r2 { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-weight: 700 !important;font-size: 25px !important;padding-top: 10px;background-color: rgba(255, 255, 255, 0);text-align: center;color: rgb(119, 50, 0); } } @media (min-width: 1200px) { .gp-component-id-YdO4j0p3r2 { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-weight: 700 !important;font-size: 25px !important;padding-top: 10px;background-color: rgba(255, 255, 255, 0);text-align: center;color: rgb(119, 50, 0); } } .gp-component-id-0PAf9IjH3 { flex-direction: column;display: flex; } @media (max-width: 639px) { .gp-component-id-0PAf9IjH3 { flex-direction: column;display: flex; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-0PAf9IjH3 { flex-direction: column;display: flex; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-0PAf9IjH3 { flex-direction: column;display: flex; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-0PAf9IjH3 { flex-direction: column;display: flex; } } @media (min-width: 1200px) { .gp-component-id-0PAf9IjH3 { flex-direction: column;display: flex; } } @media (max-width: 639px) { .gp-component-id-kqPjiiYlgP { display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-kqPjiiYlgP { display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-kqPjiiYlgP { display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-kqPjiiYlgP { display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%; } } @media (min-width: 1200px) { .gp-component-id-kqPjiiYlgP { display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%; } } .gp-component-id-1Sc0XILGlQ { padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto; } @media (max-width: 639px) { .gp-component-id-1Sc0XILGlQ { padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-1Sc0XILGlQ { padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-1Sc0XILGlQ { padding-left: 8px;width: 50%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-1Sc0XILGlQ { padding-left: 8px;width: 50%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto; } } @media (min-width: 1200px) { .gp-component-id-1Sc0XILGlQ { padding-left: 8px;width: 50%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto; } } .gp-component-id-yROxYIafu { margin-left: -8px;margin-right: -8px;flex-wrap: wrap; } @media (max-width: 639px) { .gp-component-id-yROxYIafu { margin-left: -8px;margin-right: -8px;flex-wrap: wrap; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-yROxYIafu { margin-left: -8px;margin-right: -8px;flex-wrap: wrap; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-yROxYIafu { margin-left: -8px;margin-right: -8px;flex-wrap: wrap;display: flex; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-yROxYIafu { margin-left: -8px;margin-right: -8px;flex-wrap: wrap;display: flex; } } @media (min-width: 1200px) { .gp-component-id-yROxYIafu { margin-left: -8px;margin-right: -8px;flex-wrap: wrap;display: flex; } } .gp-component-id-x8hfKc1CF { padding-left: 8px;width: 100%;padding-right: 8px; } @media (max-width: 639px) { .gp-component-id-x8hfKc1CF { padding-left: 8px;width: 100%;padding-right: 8px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-x8hfKc1CF { padding-left: 8px;width: 100%;padding-right: 8px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-x8hfKc1CF { padding-left: 8px;width: 100%;padding-right: 8px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-x8hfKc1CF { padding-left: 8px;width: 100%;padding-right: 8px; } } @media (min-width: 1200px) { .gp-component-id-x8hfKc1CF { padding-left: 8px;width: 100%;padding-right: 8px; } } .gp-component-id-T8OEBz_YKHT { font-weight: bolder;overflow-wrap: break-word; } @media (max-width: 639px) { .gp-component-id-T8OEBz_YKHT { font-weight: bolder;overflow-wrap: break-word; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-T8OEBz_YKHT { font-weight: bolder;overflow-wrap: break-word; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-T8OEBz_YKHT { font-weight: bolder;overflow-wrap: break-word; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-T8OEBz_YKHT { font-weight: bolder;overflow-wrap: break-word; } } @media (min-width: 1200px) { .gp-component-id-T8OEBz_YKHT { font-weight: bolder;overflow-wrap: break-word; } } .gp-component-id-rYAg1XCQLu { overflow-wrap: break-word;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px; } @media (max-width: 639px) { .gp-component-id-rYAg1XCQLu { overflow-wrap: break-word;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 4px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-rYAg1XCQLu { overflow-wrap: break-word;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 4px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-rYAg1XCQLu { overflow-wrap: break-word;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 4px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-rYAg1XCQLu { overflow-wrap: break-word;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 4px; } } @media (min-width: 1200px) { .gp-component-id-rYAg1XCQLu { overflow-wrap: break-word;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 4px; } } .gp-component-id-7iugDo7DS_ { display: flex;flex-direction: column; } @media (max-width: 639px) { .gp-component-id-7iugDo7DS_ { display: flex;flex-direction: column; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-7iugDo7DS_ { display: flex;flex-direction: column; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-7iugDo7DS_ { display: flex;flex-direction: column; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-7iugDo7DS_ { display: flex;flex-direction: column; } } @media (min-width: 1200px) { .gp-component-id-7iugDo7DS_ { display: flex;flex-direction: column; } } .gp-component-id-zZNsQvS4Lk { display: inline-block;color: inherit;background-color: transparent;cursor: pointer;font-size: 48px;line-height: 1;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial; } @media (max-width: 639px) { .gp-component-id-zZNsQvS4Lk { display: inline-block;color: rgb(134, 192, 107);background-color: transparent;cursor: pointer;font-size: 29px !important;line-height: 1;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-zZNsQvS4Lk { display: inline-block;color: rgb(134, 192, 107);background-color: transparent;cursor: pointer;font-size: 29px !important;line-height: 1;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-zZNsQvS4Lk { display: inline-block;color: rgb(134, 192, 107);background-color: transparent;cursor: pointer;font-size: 29px !important;line-height: 1;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-zZNsQvS4Lk { display: inline-block;color: rgb(134, 192, 107);background-color: transparent;cursor: pointer;font-size: 29px !important;line-height: 1;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial; } } @media (min-width: 1200px) { .gp-component-id-zZNsQvS4Lk { display: inline-block;color: rgb(134, 192, 107);background-color: transparent;cursor: pointer;font-size: 29px !important;line-height: 1;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial; } } @media (max-width: 639px) { .gp-component-id-TIcBPuSAC { font-size: 18px;color: rgb(32, 45, 60);margin-bottom: 8px;align-items: flex-start;display: flex; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-TIcBPuSAC { font-size: 18px;color: rgb(32, 45, 60);margin-bottom: 8px;align-items: flex-start;display: flex; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-TIcBPuSAC { font-size: 18px;color: rgb(32, 45, 60);margin-bottom: 8px;align-items: flex-start;display: flex; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-TIcBPuSAC { font-size: 18px;color: rgb(32, 45, 60);margin-bottom: 8px;align-items: flex-start;display: flex; } } @media (min-width: 1200px) { .gp-component-id-TIcBPuSAC { font-size: 18px;color: rgb(32, 45, 60);margin-bottom: 8px;align-items: flex-start;display: flex; } } .gp-component-id-83Byq0gBDoW { font-weight: bolder;overflow-wrap: break-word; } @media (max-width: 639px) { .gp-component-id-83Byq0gBDoW { font-weight: bolder;overflow-wrap: break-word; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-83Byq0gBDoW { font-weight: bolder;overflow-wrap: break-word; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-83Byq0gBDoW { font-weight: bolder;overflow-wrap: break-word; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-83Byq0gBDoW { font-weight: bolder;overflow-wrap: break-word; } } @media (min-width: 1200px) { .gp-component-id-83Byq0gBDoW { font-weight: bolder;overflow-wrap: break-word; } } .gp-component-id-XcHQ2GvBAm { overflow-wrap: break-word;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px; } @media (max-width: 639px) { .gp-component-id-XcHQ2GvBAm { overflow-wrap: break-word;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 4px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-XcHQ2GvBAm { overflow-wrap: break-word;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 4px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-XcHQ2GvBAm { overflow-wrap: break-word;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 4px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-XcHQ2GvBAm { overflow-wrap: break-word;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 4px; } } @media (min-width: 1200px) { .gp-component-id-XcHQ2GvBAm { overflow-wrap: break-word;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 4px; } } .gp-component-id-mjqq3HsMA4 { display: flex;flex-direction: column; } @media (max-width: 639px) { .gp-component-id-mjqq3HsMA4 { display: flex;flex-direction: column; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-mjqq3HsMA4 { display: flex;flex-direction: column; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-mjqq3HsMA4 { display: flex;flex-direction: column; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-mjqq3HsMA4 { display: flex;flex-direction: column; } } @media (min-width: 1200px) { .gp-component-id-mjqq3HsMA4 { display: flex;flex-direction: column; } } .gp-component-id-o6X1yCWl0k { display: inline-block;color: inherit;background-color: transparent;cursor: pointer;font-size: 48px;line-height: 1;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial; } @media (max-width: 639px) { .gp-component-id-o6X1yCWl0k { display: inline-block;color: rgb(134, 192, 107);background-color: transparent;cursor: pointer;font-size: 29px !important;line-height: 1;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-o6X1yCWl0k { display: inline-block;color: rgb(134, 192, 107);background-color: transparent;cursor: pointer;font-size: 29px !important;line-height: 1;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-o6X1yCWl0k { display: inline-block;color: rgb(134, 192, 107);background-color: transparent;cursor: pointer;font-size: 29px !important;line-height: 1;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-o6X1yCWl0k { display: inline-block;color: rgb(134, 192, 107);background-color: transparent;cursor: pointer;font-size: 29px !important;line-height: 1;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial; } } @media (min-width: 1200px) { .gp-component-id-o6X1yCWl0k { display: inline-block;color: rgb(134, 192, 107);background-color: transparent;cursor: pointer;font-size: 29px !important;line-height: 1;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial; } } @media (max-width: 639px) { .gp-component-id-3j1oSWcNe2 { font-size: 18px;color: rgb(32, 45, 60);margin-bottom: 8px;align-items: flex-start;display: flex; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-3j1oSWcNe2 { font-size: 18px;color: rgb(32, 45, 60);margin-bottom: 8px;align-items: flex-start;display: flex; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-3j1oSWcNe2 { font-size: 18px;color: rgb(32, 45, 60);margin-bottom: 8px;align-items: flex-start;display: flex; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-3j1oSWcNe2 { font-size: 18px;color: rgb(32, 45, 60);margin-bottom: 8px;align-items: flex-start;display: flex; } } @media (min-width: 1200px) { .gp-component-id-3j1oSWcNe2 { font-size: 18px;color: rgb(32, 45, 60);margin-bottom: 8px;align-items: flex-start;display: flex; } } .gp-component-id-2MxuRy_E2ha { font-weight: bolder;overflow-wrap: break-word; } @media (max-width: 639px) { .gp-component-id-2MxuRy_E2ha { font-weight: bolder;overflow-wrap: break-word; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-2MxuRy_E2ha { font-weight: bolder;overflow-wrap: break-word; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-2MxuRy_E2ha { font-weight: bolder;overflow-wrap: break-word; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-2MxuRy_E2ha { font-weight: bolder;overflow-wrap: break-word; } } @media (min-width: 1200px) { .gp-component-id-2MxuRy_E2ha { font-weight: bolder;overflow-wrap: break-word; } } .gp-component-id-UyB9tpz0Qe { overflow-wrap: break-word;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px; } @media (max-width: 639px) { .gp-component-id-UyB9tpz0Qe { overflow-wrap: break-word;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 4px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-UyB9tpz0Qe { overflow-wrap: break-word;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 4px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-UyB9tpz0Qe { overflow-wrap: break-word;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 4px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-UyB9tpz0Qe { overflow-wrap: break-word;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 4px; } } @media (min-width: 1200px) { .gp-component-id-UyB9tpz0Qe { overflow-wrap: break-word;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 4px; } } .gp-component-id-NnPYJ0izAb { display: flex;flex-direction: column; } @media (max-width: 639px) { .gp-component-id-NnPYJ0izAb { display: flex;flex-direction: column; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-NnPYJ0izAb { display: flex;flex-direction: column; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-NnPYJ0izAb { display: flex;flex-direction: column; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-NnPYJ0izAb { display: flex;flex-direction: column; } } @media (min-width: 1200px) { .gp-component-id-NnPYJ0izAb { display: flex;flex-direction: column; } } .gp-component-id-c551OfCmQn { display: inline-block;color: inherit;background-color: transparent;cursor: pointer;font-size: 48px;line-height: 1;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial; } @media (max-width: 639px) { .gp-component-id-c551OfCmQn { display: inline-block;color: rgb(134, 192, 107);background-color: transparent;cursor: pointer;font-size: 29px !important;line-height: 1;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-c551OfCmQn { display: inline-block;color: rgb(134, 192, 107);background-color: transparent;cursor: pointer;font-size: 29px !important;line-height: 1;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-c551OfCmQn { display: inline-block;color: rgb(134, 192, 107);background-color: transparent;cursor: pointer;font-size: 29px !important;line-height: 1;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-c551OfCmQn { display: inline-block;color: rgb(134, 192, 107);background-color: transparent;cursor: pointer;font-size: 29px !important;line-height: 1;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial; } } @media (min-width: 1200px) { .gp-component-id-c551OfCmQn { display: inline-block;color: rgb(134, 192, 107);background-color: transparent;cursor: pointer;font-size: 29px !important;line-height: 1;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial; } } @media (max-width: 639px) { .gp-component-id-hsY_XGqXj { font-size: 18px;color: rgb(32, 45, 60);margin-bottom: 8px;align-items: flex-start;display: flex; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-hsY_XGqXj { font-size: 18px;color: rgb(32, 45, 60);margin-bottom: 8px;align-items: flex-start;display: flex; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-hsY_XGqXj { font-size: 18px;color: rgb(32, 45, 60);margin-bottom: 8px;align-items: flex-start;display: flex; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-hsY_XGqXj { font-size: 18px;color: rgb(32, 45, 60);margin-bottom: 8px;align-items: flex-start;display: flex; } } @media (min-width: 1200px) { .gp-component-id-hsY_XGqXj { font-size: 18px;color: rgb(32, 45, 60);margin-bottom: 8px;align-items: flex-start;display: flex; } } .gp-component-id-fsukLvejNlJ { font-weight: bolder;overflow-wrap: break-word; } @media (max-width: 639px) { .gp-component-id-fsukLvejNlJ { font-weight: bolder;overflow-wrap: break-word; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-fsukLvejNlJ { font-weight: bolder;overflow-wrap: break-word; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-fsukLvejNlJ { font-weight: bolder;overflow-wrap: break-word; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-fsukLvejNlJ { font-weight: bolder;overflow-wrap: break-word; } } @media (min-width: 1200px) { .gp-component-id-fsukLvejNlJ { font-weight: bolder;overflow-wrap: break-word; } } .gp-component-id-K9YKnL8fie { overflow-wrap: break-word;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px; } @media (max-width: 639px) { .gp-component-id-K9YKnL8fie { overflow-wrap: break-word;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 4px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-K9YKnL8fie { overflow-wrap: break-word;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 4px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-K9YKnL8fie { overflow-wrap: break-word;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 4px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-K9YKnL8fie { overflow-wrap: break-word;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 4px; } } @media (min-width: 1200px) { .gp-component-id-K9YKnL8fie { overflow-wrap: break-word;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 4px; } } .gp-component-id-V6_AhHug1 { display: flex;flex-direction: column; } @media (max-width: 639px) { .gp-component-id-V6_AhHug1 { display: flex;flex-direction: column; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-V6_AhHug1 { display: flex;flex-direction: column; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-V6_AhHug1 { display: flex;flex-direction: column; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-V6_AhHug1 { display: flex;flex-direction: column; } } @media (min-width: 1200px) { .gp-component-id-V6_AhHug1 { display: flex;flex-direction: column; } } .gp-component-id-qniUnfHrCF { display: inline-block;color: inherit;background-color: transparent;cursor: pointer;font-size: 48px;line-height: 1;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial; } @media (max-width: 639px) { .gp-component-id-qniUnfHrCF { display: inline-block;color: rgb(134, 192, 107);background-color: transparent;cursor: pointer;font-size: 29px !important;line-height: 1;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-qniUnfHrCF { display: inline-block;color: rgb(134, 192, 107);background-color: transparent;cursor: pointer;font-size: 29px !important;line-height: 1;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-qniUnfHrCF { display: inline-block;color: rgb(134, 192, 107);background-color: transparent;cursor: pointer;font-size: 29px !important;line-height: 1;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-qniUnfHrCF { display: inline-block;color: rgb(134, 192, 107);background-color: transparent;cursor: pointer;font-size: 29px !important;line-height: 1;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial; } } @media (min-width: 1200px) { .gp-component-id-qniUnfHrCF { display: inline-block;color: rgb(134, 192, 107);background-color: transparent;cursor: pointer;font-size: 29px !important;line-height: 1;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial; } } @media (max-width: 639px) { .gp-component-id-DvxXxGABks { font-size: 18px;color: rgb(32, 45, 60);margin-bottom: 8px;align-items: flex-start;display: flex; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-DvxXxGABks { font-size: 18px;color: rgb(32, 45, 60);margin-bottom: 8px;align-items: flex-start;display: flex; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-DvxXxGABks { font-size: 18px;color: rgb(32, 45, 60);margin-bottom: 8px;align-items: flex-start;display: flex; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-DvxXxGABks { font-size: 18px;color: rgb(32, 45, 60);margin-bottom: 8px;align-items: flex-start;display: flex; } } @media (min-width: 1200px) { .gp-component-id-DvxXxGABks { font-size: 18px;color: rgb(32, 45, 60);margin-bottom: 8px;align-items: flex-start;display: flex; } } .gp-component-id-76b4_J7Gmtf { font-weight: bolder;overflow-wrap: break-word; } @media (max-width: 639px) { .gp-component-id-76b4_J7Gmtf { font-weight: bolder;overflow-wrap: break-word; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-76b4_J7Gmtf { font-weight: bolder;overflow-wrap: break-word; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-76b4_J7Gmtf { font-weight: bolder;overflow-wrap: break-word; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-76b4_J7Gmtf { font-weight: bolder;overflow-wrap: break-word; } } @media (min-width: 1200px) { .gp-component-id-76b4_J7Gmtf { font-weight: bolder;overflow-wrap: break-word; } } .gp-component-id-zrf_9GnlIB { overflow-wrap: break-word;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px; } @media (max-width: 639px) { .gp-component-id-zrf_9GnlIB { overflow-wrap: break-word;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 4px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-zrf_9GnlIB { overflow-wrap: break-word;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 4px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-zrf_9GnlIB { overflow-wrap: break-word;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 4px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-zrf_9GnlIB { overflow-wrap: break-word;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 4px; } } @media (min-width: 1200px) { .gp-component-id-zrf_9GnlIB { overflow-wrap: break-word;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 4px; } } .gp-component-id-z0tst9yRYZ { display: flex;flex-direction: column; } @media (max-width: 639px) { .gp-component-id-z0tst9yRYZ { display: flex;flex-direction: column; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-z0tst9yRYZ { display: flex;flex-direction: column; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-z0tst9yRYZ { display: flex;flex-direction: column; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-z0tst9yRYZ { display: flex;flex-direction: column; } } @media (min-width: 1200px) { .gp-component-id-z0tst9yRYZ { display: flex;flex-direction: column; } } .gp-component-id-wOx4kpnuXW { display: inline-block;color: inherit;background-color: transparent;cursor: pointer;font-size: 48px;line-height: 1;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial; } @media (max-width: 639px) { .gp-component-id-wOx4kpnuXW { display: inline-block;color: rgb(134, 192, 107);background-color: transparent;cursor: pointer;font-size: 29px !important;line-height: 1;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-wOx4kpnuXW { display: inline-block;color: rgb(134, 192, 107);background-color: transparent;cursor: pointer;font-size: 29px !important;line-height: 1;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-wOx4kpnuXW { display: inline-block;color: rgb(134, 192, 107);background-color: transparent;cursor: pointer;font-size: 29px !important;line-height: 1;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-wOx4kpnuXW { display: inline-block;color: rgb(134, 192, 107);background-color: transparent;cursor: pointer;font-size: 29px !important;line-height: 1;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial; } } @media (min-width: 1200px) { .gp-component-id-wOx4kpnuXW { display: inline-block;color: rgb(134, 192, 107);background-color: transparent;cursor: pointer;font-size: 29px !important;line-height: 1;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial; } } @media (max-width: 639px) { .gp-component-id-cMwFtzdgQY { font-size: 18px;color: rgb(32, 45, 60);margin-bottom: 8px;align-items: flex-start;display: flex; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-cMwFtzdgQY { font-size: 18px;color: rgb(32, 45, 60);margin-bottom: 8px;align-items: flex-start;display: flex; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-cMwFtzdgQY { font-size: 18px;color: rgb(32, 45, 60);margin-bottom: 8px;align-items: flex-start;display: flex; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-cMwFtzdgQY { font-size: 18px;color: rgb(32, 45, 60);margin-bottom: 8px;align-items: flex-start;display: flex; } } @media (min-width: 1200px) { .gp-component-id-cMwFtzdgQY { font-size: 18px;color: rgb(32, 45, 60);margin-bottom: 8px;align-items: flex-start;display: flex; } } .gp-component-id-O39VYAQkeYl { font-weight: bolder;overflow-wrap: break-word; } @media (max-width: 639px) { .gp-component-id-O39VYAQkeYl { font-weight: bolder;overflow-wrap: break-word; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-O39VYAQkeYl { font-weight: bolder;overflow-wrap: break-word; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-O39VYAQkeYl { font-weight: bolder;overflow-wrap: break-word; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-O39VYAQkeYl { font-weight: bolder;overflow-wrap: break-word; } } @media (min-width: 1200px) { .gp-component-id-O39VYAQkeYl { font-weight: bolder;overflow-wrap: break-word; } } .gp-component-id-c60K5LSLbY { overflow-wrap: break-word;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px; } @media (max-width: 639px) { .gp-component-id-c60K5LSLbY { overflow-wrap: break-word;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 4px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-c60K5LSLbY { overflow-wrap: break-word;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 4px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-c60K5LSLbY { overflow-wrap: break-word;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 4px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-c60K5LSLbY { overflow-wrap: break-word;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 4px; } } @media (min-width: 1200px) { .gp-component-id-c60K5LSLbY { overflow-wrap: break-word;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 4px; } } .gp-component-id-0850wqXDNi { display: flex;flex-direction: column; } @media (max-width: 639px) { .gp-component-id-0850wqXDNi { display: flex;flex-direction: column; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-0850wqXDNi { display: flex;flex-direction: column; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-0850wqXDNi { display: flex;flex-direction: column; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-0850wqXDNi { display: flex;flex-direction: column; } } @media (min-width: 1200px) { .gp-component-id-0850wqXDNi { display: flex;flex-direction: column; } } .gp-component-id-41_V_myds { display: inline-block;color: inherit;background-color: transparent;cursor: pointer;font-size: 48px;line-height: 1;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial; } @media (max-width: 639px) { .gp-component-id-41_V_myds { display: inline-block;color: rgb(134, 192, 107);background-color: transparent;cursor: pointer;font-size: 29px !important;line-height: 1;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-41_V_myds { display: inline-block;color: rgb(134, 192, 107);background-color: transparent;cursor: pointer;font-size: 29px !important;line-height: 1;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-41_V_myds { display: inline-block;color: rgb(134, 192, 107);background-color: transparent;cursor: pointer;font-size: 29px !important;line-height: 1;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-41_V_myds { display: inline-block;color: rgb(134, 192, 107);background-color: transparent;cursor: pointer;font-size: 29px !important;line-height: 1;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial; } } @media (min-width: 1200px) { .gp-component-id-41_V_myds { display: inline-block;color: rgb(134, 192, 107);background-color: transparent;cursor: pointer;font-size: 29px !important;line-height: 1;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial; } } .gp-component-id-Gh_nAeLEc { align-items: flex-start;color: rgb(32, 45, 60);font-size: 18px;margin-bottom: 8px;display: flex; } @media (max-width: 639px) { .gp-component-id-Gh_nAeLEc { align-items: flex-start;color: rgb(32, 45, 60);font-size: 18px;margin-bottom: 8px;display: flex; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-Gh_nAeLEc { align-items: flex-start;color: rgb(32, 45, 60);font-size: 18px;margin-bottom: 8px;display: flex; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-Gh_nAeLEc { align-items: flex-start;color: rgb(32, 45, 60);font-size: 18px;margin-bottom: 8px;display: flex; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-Gh_nAeLEc { align-items: flex-start;color: rgb(32, 45, 60);font-size: 18px;margin-bottom: 8px;display: flex; } } @media (min-width: 1200px) { .gp-component-id-Gh_nAeLEc { align-items: flex-start;color: rgb(32, 45, 60);font-size: 18px;margin-bottom: 8px;display: flex; } } .gp-component-id-sjX8M0LEJ { margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;list-style-type: inherit;list-style-position: inside;padding-left: 16px;padding-bottom: 16px;padding-right: 0px;padding-top: 16px; } @media (max-width: 639px) { .gp-component-id-sjX8M0LEJ { margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;list-style-type: inherit;list-style-position: inside;padding-left: 16px;padding-bottom: 16px;padding-right: 0px;padding-top: 16px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-sjX8M0LEJ { margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;list-style-type: inherit;list-style-position: inside;padding-left: 16px;padding-bottom: 16px;padding-right: 0px;padding-top: 16px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-sjX8M0LEJ { margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;list-style-type: inherit;list-style-position: inside;padding-left: 16px;padding-bottom: 16px;padding-right: 0px;padding-top: 16px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-sjX8M0LEJ { margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;list-style-type: inherit;list-style-position: inside;padding-left: 16px;padding-bottom: 16px;padding-right: 0px;padding-top: 16px; } } @media (min-width: 1200px) { .gp-component-id-sjX8M0LEJ { margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;list-style-type: inherit;list-style-position: inside;padding-left: 16px;padding-bottom: 16px;padding-right: 0px;padding-top: 16px; } } .gp-component-id-fQJGCHoD5D { display: flex;align-items: center;flex-direction: column;width: 100%;margin-right: auto;margin-left: auto;position: relative;z-index: 15; } @media (max-width: 639px) { .gp-component-id-fQJGCHoD5D { display: flex;align-items: center;flex-direction: column;width: 100%;margin-right: auto;margin-left: auto;position: relative;z-index: 15; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-fQJGCHoD5D { display: flex;align-items: center;flex-direction: column;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-fQJGCHoD5D { display: flex;align-items: center;flex-direction: column;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-fQJGCHoD5D { display: flex;align-items: center;flex-direction: column;width: 100%;margin-right: auto;margin-left: auto;position: relative;z-index: 15;max-width: 992px; } } @media (min-width: 1200px) { .gp-component-id-fQJGCHoD5D { display: flex;align-items: center;flex-direction: column;width: 100%;margin-right: auto;margin-left: auto;position: relative;z-index: 15;max-width: 992px; } } .gp-component-id-MN0GZ6N_Gxh { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: inherit;z-index: 15;position: relative; } @media (max-width: 639px) { .gp-component-id-MN0GZ6N_Gxh { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: inherit;z-index: 15;position: relative; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-MN0GZ6N_Gxh { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: inherit;z-index: 15;position: relative; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-MN0GZ6N_Gxh { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: inherit;z-index: 15;position: relative; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-MN0GZ6N_Gxh { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: inherit;z-index: 15;position: relative; } } @media (min-width: 1200px) { .gp-component-id-MN0GZ6N_Gxh { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: inherit;z-index: 15;position: relative; } } .gp-component-id-zsgqfy0vl { z-index: auto !important;padding-bottom: 32px;padding-top: 48px;position: relative;min-height: 50px; } @media (max-width: 639px) { .gp-component-id-zsgqfy0vl { z-index: auto !important;padding-bottom: 32px;padding-top: 48px;position: relative;min-height: 50px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-zsgqfy0vl { z-index: auto !important;padding-bottom: 32px;padding-top: 48px;position: relative;min-height: 50px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-zsgqfy0vl { z-index: auto !important;padding-bottom: 32px;padding-top: 48px;position: relative;min-height: 50px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-zsgqfy0vl { z-index: auto !important;padding-bottom: 56px;padding-top: 56px;position: relative;min-height: 50px; } } @media (min-width: 1200px) { .gp-component-id-zsgqfy0vl { z-index: auto !important;padding-bottom: 56px;padding-top: 56px;position: relative;min-height: 50px; } } .gp-component-id-BbUPQksmgcj { left: 0px;position: absolute;height: 100%;width: 100%; } @media (max-width: 639px) { .gp-component-id-BbUPQksmgcj { left: 0px;position: absolute;height: 100%;width: 100%; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-BbUPQksmgcj { left: 0px;position: absolute;height: 100%;width: 100%; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-BbUPQksmgcj { left: 0px;position: absolute;height: 100%;width: 100%; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-BbUPQksmgcj { left: 0px;position: absolute;height: 100%;width: 100%; } } @media (min-width: 1200px) { .gp-component-id-BbUPQksmgcj { left: 0px;position: absolute;height: 100%;width: 100%; } } .gp-component-id-CRr0MHAAM0A { cursor: pointer;position: relative;height: 0px;padding-bottom: 56.25%; } @media (max-width: 639px) { .gp-component-id-CRr0MHAAM0A { cursor: pointer;position: relative;height: 0px;padding-bottom: 56.25%; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-CRr0MHAAM0A { cursor: pointer;position: relative;height: 0px;padding-bottom: 56.25%; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-CRr0MHAAM0A { cursor: pointer;position: relative;height: 0px;padding-bottom: 56.25%; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-CRr0MHAAM0A { cursor: pointer;position: relative;height: 0px;padding-bottom: 56.25%; } } @media (min-width: 1200px) { .gp-component-id-CRr0MHAAM0A { cursor: pointer;position: relative;height: 0px;padding-bottom: 56.25%; } } .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-n9aBqNd5ti { overflow-wrap: break-word; } @media (max-width: 639px) { .gp-component-id-n9aBqNd5ti { overflow-wrap: break-word; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-n9aBqNd5ti { overflow-wrap: break-word; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-n9aBqNd5ti { overflow-wrap: break-word; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-n9aBqNd5ti { overflow-wrap: break-word; } } @media (min-width: 1200px) { .gp-component-id-n9aBqNd5ti { overflow-wrap: break-word; } } .gp-component-id-l7ucpIWaw0 { font-weight: bolder;overflow-wrap: break-word;background-color: rgba(255, 255, 255, 0);color: rgb(41, 112, 179); } @media (max-width: 639px) { .gp-component-id-l7ucpIWaw0 { font-weight: bolder;overflow-wrap: break-word;background-color: rgba(255, 255, 255, 0);color: rgb(41, 112, 179); } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-l7ucpIWaw0 { font-weight: bolder;overflow-wrap: break-word;background-color: rgba(255, 255, 255, 0);color: rgb(41, 112, 179); } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-l7ucpIWaw0 { font-weight: bolder;overflow-wrap: break-word;background-color: rgba(255, 255, 255, 0);color: rgb(41, 112, 179); } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-l7ucpIWaw0 { font-weight: bolder;overflow-wrap: break-word;background-color: rgba(255, 255, 255, 0);color: rgb(41, 112, 179); } } @media (min-width: 1200px) { .gp-component-id-l7ucpIWaw0 { font-weight: bolder;overflow-wrap: break-word;background-color: rgba(255, 255, 255, 0);color: rgb(41, 112, 179); } } .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: 37px !important;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;text-align: center;padding-bottom: 10px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-_Itg2MMQn { font-weight: 600 !important;overflow-wrap: break-word;font-size: 37px !important;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;text-align: center;padding-bottom: 10px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-_Itg2MMQn { font-weight: 600 !important;overflow-wrap: break-word;font-size: 37px !important;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;text-align: center;padding-bottom: 10px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-_Itg2MMQn { font-weight: 600 !important;overflow-wrap: break-word;font-size: 37px !important;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;text-align: center;padding-bottom: 10px; } } @media (min-width: 1200px) { .gp-component-id-_Itg2MMQn { font-weight: 600 !important;overflow-wrap: break-word;font-size: 37px !important;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;text-align: center;padding-bottom: 10px; } } .gp-component-id-NqF6mXFFLL { flex-direction: column;display: flex; } @media (max-width: 639px) { .gp-component-id-NqF6mXFFLL { flex-direction: column;display: flex; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-NqF6mXFFLL { flex-direction: column;display: flex; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-NqF6mXFFLL { flex-direction: column;display: flex; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-NqF6mXFFLL { flex-direction: column;display: flex; } } @media (min-width: 1200px) { .gp-component-id-NqF6mXFFLL { flex-direction: column;display: flex; } } @media (max-width: 639px) { .gp-component-id-Nen_0bq_9s { text-decoration-line: inherit;font-style: inherit;display: flex;align-items: center;flex-direction: column;width: 100%; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-Nen_0bq_9s { text-decoration-line: inherit;font-style: inherit;display: flex;align-items: center;flex-direction: column;width: 100%; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-Nen_0bq_9s { text-decoration-line: inherit;font-style: inherit;display: flex;align-items: center;flex-direction: column;width: 100%; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-Nen_0bq_9s { text-decoration-line: inherit;font-style: inherit;display: flex;align-items: center;flex-direction: column;width: 100%; } } @media (min-width: 1200px) { .gp-component-id-Nen_0bq_9s { text-decoration-line: inherit;font-style: inherit;display: flex;align-items: center;flex-direction: column;width: 100%; } } .gp-component-id-flstvjFUCs { padding-right: 8px;padding-left: 8px;width: 100%; } @media (max-width: 639px) { .gp-component-id-flstvjFUCs { padding-right: 8px;padding-left: 8px;width: 100%; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-flstvjFUCs { padding-right: 8px;padding-left: 8px;width: 100%; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-flstvjFUCs { padding-right: 8px;padding-left: 8px;width: 100%; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-flstvjFUCs { padding-right: 8px;padding-left: 8px;width: 100%; } } @media (min-width: 1200px) { .gp-component-id-flstvjFUCs { padding-right: 8px;padding-left: 8px;width: 100%; } } .gp-component-id-VoF8EIDGf { margin-right: -8px;margin-left: -8px; } @media (max-width: 639px) { .gp-component-id-VoF8EIDGf { margin-right: -8px;margin-left: -8px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-VoF8EIDGf { margin-right: -8px;margin-left: -8px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-VoF8EIDGf { margin-right: -8px;margin-left: -8px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-VoF8EIDGf { margin-right: -8px;margin-left: -8px; } } @media (min-width: 1200px) { .gp-component-id-VoF8EIDGf { margin-right: -8px;margin-left: -8px; } } .gp-component-id-e_6pW3CBKc { padding-right: 8px;padding-left: 8px;width: 100%; } @media (max-width: 639px) { .gp-component-id-e_6pW3CBKc { padding-right: 8px;padding-left: 8px;width: 100%; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-e_6pW3CBKc { padding-right: 8px;padding-left: 8px;width: 100%; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-e_6pW3CBKc { padding-right: 8px;padding-left: 8px;width: 100%; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-e_6pW3CBKc { padding-right: 8px;padding-left: 8px;width: 100%; } } @media (min-width: 1200px) { .gp-component-id-e_6pW3CBKc { padding-right: 8px;padding-left: 8px;width: 100%; } } .gp-component-id-si9xOvxKaO { z-index: 15;position: relative;margin-left: auto;margin-right: auto;width: 100%; } @media (max-width: 639px) { .gp-component-id-si9xOvxKaO { z-index: 15;position: relative;margin-left: auto;margin-right: auto;width: 100%; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-si9xOvxKaO { z-index: 15;position: relative;margin-left: auto;margin-right: auto;width: 100%;max-width: 640px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-si9xOvxKaO { z-index: 15;position: relative;margin-left: auto;margin-right: auto;width: 100%;max-width: 768px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-si9xOvxKaO { z-index: 15;position: relative;margin-left: auto;margin-right: auto;width: 100%;max-width: 992px; } } @media (min-width: 1200px) { .gp-component-id-si9xOvxKaO { z-index: 15;position: relative;margin-left: auto;margin-right: auto;width: 100%;max-width: 1200px; } } .gp-component-id-3RDqXch5tl.gp-component > [data-section-overlay] { z-index: 14;position: absolute;right: 0px;left: 0px;top: 0px;bottom: 0px; } @media (max-width: 639px) { .gp-component-id-3RDqXch5tl.gp-component > [data-section-overlay] { z-index: 14;position: absolute;right: 0px;left: 0px;top: 0px;bottom: 0px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-3RDqXch5tl.gp-component > [data-section-overlay] { z-index: 14;position: absolute;right: 0px;left: 0px;top: 0px;bottom: 0px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-3RDqXch5tl.gp-component > [data-section-overlay] { z-index: 14;position: absolute;right: 0px;left: 0px;top: 0px;bottom: 0px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-3RDqXch5tl.gp-component > [data-section-overlay] { z-index: 14;position: absolute;right: 0px;left: 0px;top: 0px;bottom: 0px; } } @media (min-width: 1200px) { .gp-component-id-3RDqXch5tl.gp-component > [data-section-overlay] { z-index: 14;position: absolute;right: 0px;left: 0px;top: 0px;bottom: 0px; } } .gp-component-id-aflSgEJpI1 { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: inherit;z-index: 15;position: relative; } @media (max-width: 639px) { .gp-component-id-aflSgEJpI1 { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: inherit;z-index: 15;position: relative; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-aflSgEJpI1 { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: inherit;z-index: 15;position: relative; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-aflSgEJpI1 { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: inherit;z-index: 15;position: relative; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-aflSgEJpI1 { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: inherit;z-index: 15;position: relative; } } @media (min-width: 1200px) { .gp-component-id-aflSgEJpI1 { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: inherit;z-index: 15;position: relative; } } .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;padding-bottom: 20px; } } @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;padding-bottom: 20px; } } @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;padding-bottom: 20px; } } @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;padding-bottom: 20px; } } @media (min-width: 1200px) { .gp-component-id-3RDqXch5tl { z-index: auto;position: relative;min-height: 50px;margin-top: 0px;margin-bottom: 0px;padding-bottom: 20px; } } .gp-component-id-ArxrIaxzu { width: 192px;object-position: center center;object-fit: cover;border-top-left-radius: 9999px;border-top-right-radius: 9999px;border-bottom-right-radius: 9999px;border-bottom-left-radius: 9999px;max-width: 100%;height: 192px;border-top-style: solid;border-right-style: solid;border-bottom-style: solid;border-left-style: solid; } @media (max-width: 639px) { .gp-component-id-ArxrIaxzu { width: 192px;object-position: center center;object-fit: cover;border-top-left-radius: 9999px;border-top-right-radius: 9999px;border-bottom-right-radius: 9999px;border-bottom-left-radius: 9999px;max-width: 100%;height: 192px;border-top-style: solid;border-right-style: solid;border-bottom-style: solid;border-left-style: solid; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-ArxrIaxzu { width: 192px;object-position: center center;object-fit: cover;border-top-left-radius: 9999px;border-top-right-radius: 9999px;border-bottom-right-radius: 9999px;border-bottom-left-radius: 9999px;max-width: 100%;height: 192px;border-top-style: solid;border-right-style: solid;border-bottom-style: solid;border-left-style: solid; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-ArxrIaxzu { width: 192px;object-position: center center;object-fit: cover;border-top-left-radius: 9999px;border-top-right-radius: 9999px;border-bottom-right-radius: 9999px;border-bottom-left-radius: 9999px;max-width: 100%;height: 192px;border-top-style: solid;border-right-style: solid;border-bottom-style: solid;border-left-style: solid; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-ArxrIaxzu { width: 192px;object-position: center center;object-fit: cover;border-top-left-radius: 9999px;border-top-right-radius: 9999px;border-bottom-right-radius: 9999px;border-bottom-left-radius: 9999px;max-width: 100%;height: 192px;border-top-style: solid;border-right-style: solid;border-bottom-style: solid;border-left-style: solid; } } @media (min-width: 1200px) { .gp-component-id-ArxrIaxzu { width: 192px;object-position: center center;object-fit: cover;border-top-left-radius: 9999px;border-top-right-radius: 9999px;border-bottom-right-radius: 9999px;border-bottom-left-radius: 9999px;max-width: 100%;height: 192px;border-top-style: solid;border-right-style: solid;border-bottom-style: solid;border-left-style: solid; } } .gp-component-id-uWq6oBZtYL { top: 100%;z-index: 20;right: 0px;left: 0px;position: absolute;flex-grow: 1;flex-shrink: 1;flex-basis: 0%; } @media (max-width: 639px) { .gp-component-id-uWq6oBZtYL { top: 100%;z-index: 20;right: 0px;left: 0px;position: absolute;flex-grow: 1;flex-shrink: 1;flex-basis: 0%; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-uWq6oBZtYL { top: 100%;z-index: 20;right: 0px;left: 0px;position: absolute;flex-grow: 1;flex-shrink: 1;flex-basis: 0%; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-uWq6oBZtYL { top: 100%;z-index: 20;right: 0px;left: 0px;position: absolute;flex-grow: 1;flex-shrink: 1;flex-basis: 0%; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-uWq6oBZtYL { top: 100%;z-index: 20;right: 0px;left: 0px;position: relative;flex-grow: 1;flex-shrink: 1;flex-basis: 0%;justify-content: flex-end;display: flex; } } @media (min-width: 1200px) { .gp-component-id-uWq6oBZtYL { top: 100%;z-index: 20;right: 0px;left: 0px;position: relative;flex-grow: 1;flex-shrink: 1;flex-basis: 0%;justify-content: flex-end;display: flex; } } @media (max-width: 639px) { .gp-component-id-sH50RFw8pc { display: flex;align-items: center;justify-content: center;flex-direction: column;width: 100%;padding-bottom: 20px;padding-top: 20px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-sH50RFw8pc { display: flex;align-items: center;justify-content: center;flex-direction: column;width: 100%;padding-bottom: 20px;padding-top: 20px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-sH50RFw8pc { display: flex;align-items: center;justify-content: center;flex-direction: column;width: 100%;padding-bottom: 20px;padding-top: 20px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-sH50RFw8pc { display: flex;align-items: center;justify-content: center;flex-direction: column;width: 100%;padding-bottom: 20px;padding-top: 20px; } } @media (min-width: 1200px) { .gp-component-id-sH50RFw8pc { display: flex;align-items: center;justify-content: center;flex-direction: column;width: 100%;padding-bottom: 20px;padding-top: 20px; } } .gp-component-id-xEtWHwB400 { padding-right: 8px;padding-left: 8px;width: 100%; } @media (max-width: 639px) { .gp-component-id-xEtWHwB400 { padding-right: 8px;padding-left: 8px;width: 100%; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-xEtWHwB400 { padding-right: 8px;padding-left: 8px;width: 100%; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-xEtWHwB400 { padding-right: 8px;padding-left: 8px;width: 100%; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-xEtWHwB400 { padding-right: 8px;padding-left: 8px;width: 100%; } } @media (min-width: 1200px) { .gp-component-id-xEtWHwB400 { padding-right: 8px;padding-left: 8px;width: 100%; } } .gp-component-id-Kh0238rbq_ { z-index: 15;position: relative;margin-left: auto;margin-right: auto;width: 100%; } @media (max-width: 639px) { .gp-component-id-Kh0238rbq_ { z-index: 15;position: relative;margin-left: auto;margin-right: auto;width: 100%; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-Kh0238rbq_ { z-index: 15;position: relative;margin-left: auto;margin-right: auto;width: 100%;max-width: 640px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-Kh0238rbq_ { z-index: 15;position: relative;margin-left: auto;margin-right: auto;width: 100%;max-width: 768px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-Kh0238rbq_ { z-index: 15;position: relative;margin-left: auto;margin-right: auto;width: 100%;max-width: 992px; } } @media (min-width: 1200px) { .gp-component-id-Kh0238rbq_ { z-index: 15;position: relative;margin-left: auto;margin-right: auto;width: 100%;max-width: 1200px; } } .gp-component-id-2KZTcGhjz9.gp-component > [data-section-overlay] { position: absolute;right: 0px;left: 0px;top: 0px;bottom: 0px;z-index: 14; } @media (max-width: 639px) { .gp-component-id-2KZTcGhjz9.gp-component > [data-section-overlay] { position: absolute;right: 0px;left: 0px;top: 0px;bottom: 0px;z-index: 14; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-2KZTcGhjz9.gp-component > [data-section-overlay] { position: absolute;right: 0px;left: 0px;top: 0px;bottom: 0px;z-index: 14; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-2KZTcGhjz9.gp-component > [data-section-overlay] { position: absolute;right: 0px;left: 0px;top: 0px;bottom: 0px;z-index: 14; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-2KZTcGhjz9.gp-component > [data-section-overlay] { position: absolute;right: 0px;left: 0px;top: 0px;bottom: 0px;z-index: 14; } } @media (min-width: 1200px) { .gp-component-id-2KZTcGhjz9.gp-component > [data-section-overlay] { position: absolute;right: 0px;left: 0px;top: 0px;bottom: 0px;z-index: 14; } } .gp-component-id-gRBLrNvUCL { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: inherit;z-index: 15;position: relative; } @media (max-width: 639px) { .gp-component-id-gRBLrNvUCL { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: inherit;z-index: 15;position: relative; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-gRBLrNvUCL { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: inherit;z-index: 15;position: relative; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-gRBLrNvUCL { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: inherit;z-index: 15;position: relative; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-gRBLrNvUCL { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: inherit;z-index: 15;position: relative; } } @media (min-width: 1200px) { .gp-component-id-gRBLrNvUCL { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: inherit;z-index: 15;position: relative; } } .gp-component-id-2KZTcGhjz9 { min-height: 50px;position: relative;z-index: auto; } @media (max-width: 639px) { .gp-component-id-2KZTcGhjz9 { min-height: 50px;position: relative;z-index: auto; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-2KZTcGhjz9 { min-height: 50px;position: relative;z-index: auto; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-2KZTcGhjz9 { min-height: 50px;position: relative;z-index: auto; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-2KZTcGhjz9 { min-height: 50px;position: relative;z-index: auto; } } @media (min-width: 1200px) { .gp-component-id-2KZTcGhjz9 { min-height: 50px;position: relative;z-index: auto; } } .gp-component-id-Zu00vSixaZ { line-height: 1;display: inline-block; } @media (max-width: 639px) { .gp-component-id-Zu00vSixaZ { line-height: 1;display: inline-block;background-color: rgba(255, 255, 255, 0); } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-Zu00vSixaZ { line-height: 1;display: inline-block; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-Zu00vSixaZ { line-height: 1;display: inline-block; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-Zu00vSixaZ { line-height: 1;display: inline-block; } } @media (min-width: 1200px) { .gp-component-id-Zu00vSixaZ { line-height: 1;display: inline-block; } } .gp-component-id-TIwocJC7VU { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: 100%;font-family: inherit;overflow-y: visible;overflow-x: visible;text-transform: none;appearance: button;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;background-color: transparent;background-clip: initial;background-origin: initial;background-attachment: initial;background-repeat: initial;background-size: initial;background-position-y: initial;background-position-x: initial;background-image: initial;cursor: pointer; } .gp-component-id-TIwocJC7VU:focus,.gp-component-id-TIwocJC7VU.gp-focus { outline-width: 5px;outline-style: auto;outline-color: -webkit-focus-ring-color; } @media (max-width: 639px) { .gp-component-id-TIwocJC7VU { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: 24px;font-family: inherit;overflow-y: visible;overflow-x: visible;text-transform: none;appearance: button;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;background-color: rgba(255, 255, 255, 0);background-clip: initial;background-origin: initial;background-attachment: initial;background-repeat: initial;background-size: initial;background-position-y: initial;background-position-x: initial;background-image: initial;cursor: pointer;display: inline-flex;align-items: center; } .gp-component-id-TIwocJC7VU:focus,.gp-component-id-TIwocJC7VU.gp-focus { outline-width: 5px;outline-style: auto;outline-color: -webkit-focus-ring-color; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-TIwocJC7VU { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: 24px;font-family: inherit;overflow-y: visible;overflow-x: visible;text-transform: none;appearance: button;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;background-color: transparent;background-clip: initial;background-origin: initial;background-attachment: initial;background-repeat: initial;background-size: initial;background-position-y: initial;background-position-x: initial;background-image: initial;cursor: pointer;display: inline-flex;align-items: center; } .gp-component-id-TIwocJC7VU:focus,.gp-component-id-TIwocJC7VU.gp-focus { outline-width: 5px;outline-style: auto;outline-color: -webkit-focus-ring-color; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-TIwocJC7VU { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: 24px;font-family: inherit;overflow-y: visible;overflow-x: visible;text-transform: none;appearance: button;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;background-color: transparent;background-clip: initial;background-origin: initial;background-attachment: initial;background-repeat: initial;background-size: initial;background-position-y: initial;background-position-x: initial;background-image: initial;cursor: pointer;display: inline-flex;align-items: center; } .gp-component-id-TIwocJC7VU:focus,.gp-component-id-TIwocJC7VU.gp-focus { outline-width: 5px;outline-style: auto;outline-color: -webkit-focus-ring-color; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-TIwocJC7VU { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: 24px;font-family: inherit;overflow-y: visible;overflow-x: visible;text-transform: none;appearance: button;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;background-color: transparent;background-clip: initial;background-origin: initial;background-attachment: initial;background-repeat: initial;background-size: initial;background-position-y: initial;background-position-x: initial;background-image: initial;cursor: pointer;display: none;align-items: center; } .gp-component-id-TIwocJC7VU:focus,.gp-component-id-TIwocJC7VU.gp-focus { outline-width: 5px;outline-style: auto;outline-color: -webkit-focus-ring-color; } } @media (min-width: 1200px) { .gp-component-id-TIwocJC7VU { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: 24px;font-family: inherit;overflow-y: visible;overflow-x: visible;text-transform: none;appearance: button;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;background-color: transparent;background-clip: initial;background-origin: initial;background-attachment: initial;background-repeat: initial;background-size: initial;background-position-y: initial;background-position-x: initial;background-image: initial;cursor: pointer;display: none;align-items: center; } .gp-component-id-TIwocJC7VU:focus,.gp-component-id-TIwocJC7VU.gp-focus { outline-width: 5px;outline-style: auto;outline-color: -webkit-focus-ring-color; } } .gp-component-id-i30zM9oro4 { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: inherit;display: block;padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px; } @media (max-width: 639px) { .gp-component-id-i30zM9oro4 { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: rgb(57, 75, 86);display: block;padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;font-weight: 600; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-i30zM9oro4 { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: rgb(57, 75, 86);display: block;padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-i30zM9oro4 { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: rgb(57, 75, 86);display: block;padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-i30zM9oro4 { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: rgb(57, 75, 86);display: block;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px; } } @media (min-width: 1200px) { .gp-component-id-i30zM9oro4 { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: rgb(57, 75, 86);display: block;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px; } } .gp-component-id-zIr4OSFmaC { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: inherit;display: block;padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px; } @media (max-width: 639px) { .gp-component-id-zIr4OSFmaC { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: rgb(57, 75, 86);display: block;padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;font-weight: 600; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-zIr4OSFmaC { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: rgb(57, 75, 86);display: block;padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-zIr4OSFmaC { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: rgb(57, 75, 86);display: block;padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-zIr4OSFmaC { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: rgb(57, 75, 86);display: block;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px; } } @media (min-width: 1200px) { .gp-component-id-zIr4OSFmaC { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: rgb(57, 75, 86);display: block;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px; } } .gp-component-id-UqU4aA0vim { padding-bottom: 16px;padding-top: 16px;padding-right: 16px;padding-left: 16px;display: block;color: inherit;background-color: transparent;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial; } @media (max-width: 639px) { .gp-component-id-UqU4aA0vim { padding-bottom: 16px;padding-top: 16px;padding-right: 16px;padding-left: 16px;display: block;color: rgb(57, 75, 86);background-color: transparent;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;font-weight: 600; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-UqU4aA0vim { padding-bottom: 16px;padding-top: 16px;padding-right: 16px;padding-left: 16px;display: block;color: rgb(57, 75, 86);background-color: transparent;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-UqU4aA0vim { padding-bottom: 16px;padding-top: 16px;padding-right: 16px;padding-left: 16px;display: block;color: rgb(57, 75, 86);background-color: transparent;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-UqU4aA0vim { padding-bottom: 0px;padding-top: 0px;padding-right: 0px;padding-left: 0px;display: block;color: rgb(57, 75, 86);background-color: transparent;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial; } } @media (min-width: 1200px) { .gp-component-id-UqU4aA0vim { padding-bottom: 0px;padding-top: 0px;padding-right: 0px;padding-left: 0px;display: block;color: rgb(57, 75, 86);background-color: transparent;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial; } } .gp-component-id-8EZoe0p79s { 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-8EZoe0p79s { 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-8EZoe0p79s { 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-8EZoe0p79s { 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-8EZoe0p79s { 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-8EZoe0p79s { 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-hWc6lgdY4i { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: inherit;display: block;padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px; } @media (max-width: 639px) { .gp-component-id-hWc6lgdY4i { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: rgb(57, 75, 86);display: block;padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;font-weight: 600; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-hWc6lgdY4i { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: rgb(57, 75, 86);display: block;padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-hWc6lgdY4i { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: rgb(57, 75, 86);display: block;padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-hWc6lgdY4i { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: rgb(57, 75, 86);display: block;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px; } } @media (min-width: 1200px) { .gp-component-id-hWc6lgdY4i { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: rgb(57, 75, 86);display: block;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px; } } .gp-component-id-JSp_UghFy0 { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: inherit;display: block;padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px; } @media (max-width: 639px) { .gp-component-id-JSp_UghFy0 { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: rgb(57, 75, 86);display: block;padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;font-weight: 600; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-JSp_UghFy0 { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: rgb(57, 75, 86);display: block;padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-JSp_UghFy0 { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: rgb(57, 75, 86);display: block;padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-JSp_UghFy0 { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: rgb(57, 75, 86);display: block;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px; } } @media (min-width: 1200px) { .gp-component-id-JSp_UghFy0 { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: rgb(57, 75, 86);display: block;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px; } } .gp-component-id-01hRlvuiFz { 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-01hRlvuiFz { 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-01hRlvuiFz { 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-01hRlvuiFz { 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-01hRlvuiFz { 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-01hRlvuiFz { 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 { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: inherit;display: block;padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px; } @media (max-width: 639px) { .gp-component-id-4fyzf9jvTO { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: rgb(255, 255, 255);color: rgb(57, 75, 86);display: block;padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;font-weight: 600; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-4fyzf9jvTO { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: rgb(57, 75, 86);display: block;padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-4fyzf9jvTO { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: rgb(57, 75, 86);display: block;padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-4fyzf9jvTO { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: rgb(57, 75, 86);display: block;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px; } } @media (min-width: 1200px) { .gp-component-id-4fyzf9jvTO { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: rgb(57, 75, 86);display: block;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px; } } .gp-component-id-uPau8aIH1G { display: none;align-items: center; } @media (max-width: 639px) { .gp-component-id-uPau8aIH1G { display: none !important;align-items: center; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-uPau8aIH1G { display: none !important;align-items: center; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-uPau8aIH1G { display: none !important;align-items: center; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-uPau8aIH1G { display: flex !important;align-items: center; } } @media (min-width: 1200px) { .gp-component-id-uPau8aIH1G { display: flex !important;align-items: center; } } @media (max-width: 639px) { .gp-component-id-5aoKE2DAhq { max-width: 100%;margin-right: 0px;margin-left: 0px;background-color: rgb(255, 255, 255);border-bottom-color: rgb(16, 1, 0);border-top-color: rgb(16, 1, 0);border-right-color: rgb(16, 1, 0);border-left-color: rgb(16, 1, 0);border-bottom-width: 0px;border-top-width: 0px;border-right-width: 0px;border-left-width: 0px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-5aoKE2DAhq { background-color: rgb(255, 255, 255); } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-5aoKE2DAhq { background-color: rgb(255, 255, 255); } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-5aoKE2DAhq { background-color: rgba(255, 255, 255, 0); } } @media (min-width: 1200px) { .gp-component-id-5aoKE2DAhq { background-color: rgba(255, 255, 255, 0); } } @media (max-width: 639px) { .gp-component-id-SFX9CbReei { flex-basis: 0%;flex-shrink: 1;flex-grow: 1;position: absolute;left: 0px;right: 0px;z-index: 20;top: 100%;padding-top: 5px;padding-right: 0px;padding-left: 0px;margin-right: 99px;margin-left: 99px;background-color: rgba(255, 255, 255, 0); } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-SFX9CbReei { flex-basis: 0%;flex-shrink: 1;flex-grow: 1;position: absolute;left: 0px;right: 0px;z-index: 20;top: 100%;padding-top: 5px;margin-right: 169px;margin-left: 169px;background-color: rgba(255, 255, 255, 0);font-weight: 600; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-SFX9CbReei { flex-basis: 0%;flex-shrink: 1;flex-grow: 1;position: absolute;left: 0px;right: 0px;z-index: 20;top: 100%;padding-top: 5px;margin-right: 216px;margin-left: 216px;background-color: rgba(255, 255, 255, 0);font-weight: 600; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-SFX9CbReei { flex-basis: 0%;flex-shrink: 1;flex-grow: 1;position: relative;left: 0px;right: 0px;z-index: 20;top: 100%;display: flex;justify-content: flex-end;padding-top: 5px;background-color: rgba(255, 255, 255, 0); } } @media (min-width: 1200px) { .gp-component-id-SFX9CbReei { flex-basis: 0%;flex-shrink: 1;flex-grow: 1;position: relative;left: 0px;right: 0px;z-index: 20;top: 100%;display: flex;justify-content: flex-end;padding-top: 5px;background-color: rgba(255, 255, 255, 0); } } .gp-component-id-GETo0hR4mc { display: flex;width: 100%;margin-left: auto;margin-right: auto;justify-content: space-between;align-items: center; } @media (max-width: 639px) { .gp-component-id-GETo0hR4mc { display: flex;width: 100%;margin-left: auto;margin-right: auto;justify-content: space-between;align-items: center; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-GETo0hR4mc { display: flex;width: 100%;margin-left: auto;margin-right: auto;justify-content: space-between;align-items: center;max-width: 640px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-GETo0hR4mc { display: flex;width: 100%;margin-left: auto;margin-right: auto;justify-content: space-between;align-items: center;max-width: 768px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-GETo0hR4mc { display: flex;width: 100%;margin-left: auto;margin-right: auto;justify-content: space-between;align-items: center;max-width: 992px; } } @media (min-width: 1200px) { .gp-component-id-GETo0hR4mc { display: flex;width: 100%;margin-left: auto;margin-right: auto;justify-content: space-between;align-items: center;max-width: 1200px; } } @media (max-width: 639px) { .gp-component-id-ba989w_f42 { position: relative;padding-bottom: 5px;padding-top: 5px;padding-right: 16px;padding-left: 16px;margin-bottom: 80px;background-color: rgba(255, 255, 255, 0); } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-ba989w_f42 { position: relative;padding-bottom: 5px;padding-top: 5px;padding-right: 16px;padding-left: 16px;margin-bottom: 80px;background-color: rgba(255, 255, 255, 0); } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-ba989w_f42 { position: relative;padding-bottom: 5px;padding-top: 5px;padding-right: 16px;padding-left: 16px;margin-bottom: 80px;background-color: rgba(255, 255, 255, 0); } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-ba989w_f42 { position: relative;padding-bottom: 5px;padding-top: 5px;padding-right: 16px;padding-left: 16px;margin-bottom: 80px;background-color: rgba(255, 255, 255, 0); } } @media (min-width: 1200px) { .gp-component-id-ba989w_f42 { position: relative;padding-bottom: 5px;padding-top: 5px;padding-right: 16px;padding-left: 16px;margin-bottom: 80px;background-color: rgba(255, 255, 255, 0); } } .gp-component-id-zOnSQvQSZp { z-index: 15;position: relative;width: 100%;margin-right: auto;margin-left: auto; } @media (max-width: 639px) { .gp-component-id-zOnSQvQSZp { z-index: 15;position: relative;width: 100%;margin-right: auto;margin-left: auto; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-zOnSQvQSZp { z-index: 15;position: relative;width: 100%;margin-right: auto;margin-left: auto;max-width: 640px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-zOnSQvQSZp { z-index: 15;position: relative;width: 100%;margin-right: auto;margin-left: auto;max-width: 768px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-zOnSQvQSZp { z-index: 15;position: relative;width: 100%;margin-right: auto;margin-left: auto;max-width: 992px; } } @media (min-width: 1200px) { .gp-component-id-zOnSQvQSZp { z-index: 15;position: relative;width: 100%;margin-right: auto;margin-left: auto;max-width: 1200px; } } .gp-component-id-8KqSbVIJPf.gp-component > [data-section-overlay] { z-index: 14;position: absolute;right: 0px;left: 0px;top: 0px;bottom: 0px; } @media (max-width: 639px) { .gp-component-id-8KqSbVIJPf.gp-component > [data-section-overlay] { z-index: 14;position: absolute;right: 0px;left: 0px;top: 0px;bottom: 0px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-8KqSbVIJPf.gp-component > [data-section-overlay] { z-index: 14;position: absolute;right: 0px;left: 0px;top: 0px;bottom: 0px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-8KqSbVIJPf.gp-component > [data-section-overlay] { z-index: 14;position: absolute;right: 0px;left: 0px;top: 0px;bottom: 0px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-8KqSbVIJPf.gp-component > [data-section-overlay] { z-index: 14;position: absolute;right: 0px;left: 0px;top: 0px;bottom: 0px; } } @media (min-width: 1200px) { .gp-component-id-8KqSbVIJPf.gp-component > [data-section-overlay] { z-index: 14;position: absolute;right: 0px;left: 0px;top: 0px;bottom: 0px; } } .gp-component-id-hC68__x0z { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: inherit;z-index: 15;position: relative; } @media (max-width: 639px) { .gp-component-id-hC68__x0z { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: inherit;z-index: 15;position: relative; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-hC68__x0z { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: inherit;z-index: 15;position: relative; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-hC68__x0z { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: inherit;z-index: 15;position: relative; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-hC68__x0z { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: inherit;z-index: 15;position: relative; } } @media (min-width: 1200px) { .gp-component-id-hC68__x0z { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: inherit;z-index: 15;position: relative; } } .gp-component-id-8KqSbVIJPf { z-index: 20 !important;min-height: 50px;position: relative; } @media (max-width: 639px) { .gp-component-id-8KqSbVIJPf { z-index: 20 !important;min-height: 50px;position: relative; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-8KqSbVIJPf { z-index: 20 !important;min-height: 50px;position: relative; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-8KqSbVIJPf { z-index: 20 !important;min-height: 50px;position: relative; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-8KqSbVIJPf { z-index: 20 !important;min-height: 50px;position: relative; } } @media (min-width: 1200px) { .gp-component-id-8KqSbVIJPf { z-index: 20 !important;min-height: 50px;position: relative; } }
