 /* Page Background Gradient with Font Stack */
body, .main-content { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji", sans-serif; background: linear-gradient(to bottom, #e0e7ff 0%, #c0d8ff 40%, #99ccff 100%); background-attachment: fixed; /* Ensures gradient stays fixed on scroll */ margin: 0;
}
/* Ensure the full page takes up the gradient background */
.main-content { min-height: 100vh; /* Ensures the gradient spans the viewport height */ display: flex; justify-content: center; align-items: center; padding: 20px; /* Optional: add padding for spacing */
} /* Container for the floating login link */ .custom-login-link { position: fixed; /* Fixed position to keep it floating */ top: 20px; right: 20px; font-size: 16px; font-weight: bold; z-index: 1000; /* Ensures it stays above other elements */ } /* Styling for the login link */ .custom-login-link a { color: #f2f2f2; /* Customize the color as desired */ text-decoration: none; padding: 8px 12px; border: 1px solid #f2f2f2; border-radius: 4px; } /* Hover effect for the login link */ .custom-login-link a:hover { background-color: #2e86de; color: #fff; }
/* Section Header Styling */
.section-header { font-size: 20px; /* Slightly larger for distinction */ font-weight: bold; font-family: inherit; /* Use unified font stack */ color: #4f4f4f; /* Deep silver color */ margin-bottom: 15px; letter-spacing: 1px; /* Slightly spaced out letters for style */ padding-bottom: 5px; border-bottom: 1px solid #c0c0c0; /* Silver border for distinction */
}
/* Short Description Styling */
.short-description { background-color: #f9f5e6; /* Light, warm yellow-tinted background */ font-size: 16px; font-family: inherit; /* Use unified font stack */ margin-bottom: 15px; color: #333333; padding: 15px; border-radius: 8px; border: 1px solid #eeeeee; box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1); line-height: 1.6; position: relative; font-style: italic; /* Optional italic for emphasis */
}
/* Starting Point Title Styling */
.starting-point-title { font-size: 18px; /* Slightly larger than the main text */ font-weight: bold; font-family: inherit; /* Use unified font stack */ color: #a83232; /* Deep reddish color for contrast */ text-align: center; margin-bottom: 10px; /* Space below the title */
}
/* Ending Point Title Styling */
.ending-point-title { font-size: 18px; /* Slightly larger than the main text */ font-weight: bold; font-family: inherit; /* Use unified font stack */ color: #a83232; /* Deep reddish color for contrast */ text-align: center; margin-bottom: 10px; /* Space below the title */
}
/* Full Description Styling */
.full-description { font-size: 16px; font-family: inherit; /* Use unified font stack */ margin-bottom: 15px; background-color: #fcfcfc; /* Very light gray for a subtle contrast */ color: #2e2e2e; /* Dark gray text color */ padding: 15px; border-radius: 8px; /* Soft rounded corners for visual appeal */ border: 1px solid #eeeeee; /* Lighter border for a softer look */ box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1); /* Light shadow for depth */ line-height: 1.6; /* Increased line-height for readability */
}
/* Project Title Styling */
.project-title { font-size: 26px; font-weight: bold; font-family: inherit; /* Use unified font stack */ text-align: center; margin: 20px 0; color: #2e2e2e; background: linear-gradient(to right, #2b6cb0, #1a3e59); /* Dark blue to navy gradient */ -webkit-background-clip: text; -webkit-text-fill-color: transparent; text-transform: uppercase; letter-spacing: 1.5px; text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2); padding-bottom: 5px; border-bottom: 1px solid #cccccc;
}
/* Teaser and Fade Effect Styling */
.teaser { overflow: hidden; max-height: 10em; /* Controls height of teaser for truncation */ position: relative; padding-bottom: 1.5em; /* Adds space for the fade overlay */
}
.fade-effect { position: absolute; bottom: 0; left: 0; height: 6em; /* Increased height to make the fade more visible */ width: 100%; z-index: 10; background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.6) 60%, rgba(255, 255, 255, 1) 100%); pointer-events: none; /* Allows clicks through the fade effect */
}
/* Centering Button Container */
.button-container { display: flex; justify-content: center; margin-top: 10px;
}
/* Expand Button Styling */
.expand-btn { display: inline-block; width: 150px; height: 30px; font-size: 14px; color: #333333; background: linear-gradient(to bottom, #f0f0f0, #c0c0c0); /* Silver gradient background */ border: 1px solid #999999; border-radius: 5px; cursor: pointer; font-weight: 600; /* Semi-bold */ box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3); transition: background 0.3s ease, box-shadow 0.3s ease; line-height: 30px; /* Center text vertically */
}
/* Hover Effect For Expand */
.expand-btn:hover { background: linear-gradient(to bottom, #e0e0e0, #b0b0b0); /* Slightly darker silver on hover */ box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.4);
}
/* Full Description Container */
.full-description-container { position: relative; /* Reference for sticky positioning */ padding-bottom: 60px; /* Extra space for the close button at the bottom */
}
/* Close Button Styling */
.close-btn { width: 120px; height: 30px; font-size: 14px; color: #ffffff; background: linear-gradient(to bottom, #b33939, #8b1a1a); border: 1px solid #732020; border-radius: 5px; cursor: pointer; font-weight: bold; box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.3); transition: background 0.3s ease, box-shadow 0.3s ease; position: sticky; bottom: 10px; right: 10px; z-index: 1000;
}
/* Mobile Styles for Close Button */
@media (max-width: 768px) { .close-btn { position: fixed; bottom: 10px; left: 50%; transform: translateX(-50%); z-index: 1000; }
}
.close-btn:hover { background: linear-gradient(to bottom, #a82b2b, #611313); box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.4);
}
/* Divider Styling for Mobile */
@media (max-width: 768px) { .divider { height: 3px; background: linear-gradient(to right, #4a90e2, #d9534f); border-radius: 2px; margin: 30px 0; box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2); } .teaser { max-height: 7em; padding-bottom: 2em; } .expand-btn, .close-btn { width: 100%; height: 40px; } .story-block { padding: 20px; margin-bottom: 20px; border: 2px solid #e0e0e0; border-radius: 12px; background-color: #ffffff; box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.15); } .custom-login-link { position: fixed; /* Keeps it fixed while scrolling */ bottom: 20px; /* Moves to the bottom on mobile */ right: 10px; /* Adjusts from right edge */ font-size: 14px; /* Slightly smaller font size */ } .custom-login-link a { background-color: rgba(26, 62, 92, 0.2); /* Dark blue with 80% opacity */ color: #fff; /* White text */ padding: 10px 14px; /* Adjusted padding for button look */ border: none; /* Removes border */ border-radius: 6px; /* Rounded corners */ }
} *{} {} #IE-warning { display: none; position: fixed; width: 100%; height: 100%; z-index: 9999; background: white; } .IE-warning-message { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); text-align: center; } @media (max-width: 639px) { .gp-component-id-01hRlvuiFz[data-gp-component] { font-weight: 600;color: rgb(57, 75, 86); } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-01hRlvuiFz[data-gp-component] { color: rgb(57, 75, 86); } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-01hRlvuiFz[data-gp-component] { color: rgb(57, 75, 86); } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-01hRlvuiFz[data-gp-component] { color: rgb(57, 75, 86); } } @media (min-width: 1200px) { .gp-component-id-01hRlvuiFz[data-gp-component] { color: rgb(57, 75, 86); } } @media (max-width: 639px) { [data-gp-text] .gp-component-id-cTwNj2tBq { font-size: 25px !important;font-weight: inherit !important;color: rgb(119, 50, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-top: 10px;overflow-wrap: break-word; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-cTwNj2tBq { font-size: 25px !important;font-weight: inherit !important;color: rgb(119, 50, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-top: 10px;overflow-wrap: break-word; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-cTwNj2tBq { font-size: 25px !important;font-weight: inherit !important;color: rgb(119, 50, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-top: 10px;overflow-wrap: break-word; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-cTwNj2tBq { font-size: 25px !important;font-weight: inherit !important;color: rgb(119, 50, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-top: 10px;overflow-wrap: break-word; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-cTwNj2tBq { font-size: 25px !important;font-weight: inherit !important;color: rgb(119, 50, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-top: 10px;overflow-wrap: break-word; } } .gp-component-id-B0uV6OmoUS { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: inherit;display: block; } @media (max-width: 639px) { .gp-component-id-B0uV6OmoUS { text-decoration-color: initial;text-decoration-style: initial;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: rgb(135, 138, 154);display: block;font-weight: 300; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-B0uV6OmoUS { text-decoration-color: initial;text-decoration-style: initial;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: rgb(135, 138, 154);display: block;font-weight: 300; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-B0uV6OmoUS { text-decoration-color: initial;text-decoration-style: initial;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: rgb(135, 138, 154);display: block;font-weight: 300; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-B0uV6OmoUS { text-decoration-color: initial;text-decoration-style: initial;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: rgb(135, 138, 154);display: block;font-weight: 300; } } @media (min-width: 1200px) { .gp-component-id-B0uV6OmoUS { text-decoration-color: initial;text-decoration-style: initial;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: rgb(135, 138, 154);display: block;font-weight: 300; } } .gp-component-id-lVgUMkDtSV { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: inherit;display: block; } @media (max-width: 639px) { .gp-component-id-lVgUMkDtSV { text-decoration-color: initial;text-decoration-style: initial;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: rgb(135, 138, 154);display: block;margin-right: 24px;font-weight: 300; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-lVgUMkDtSV { text-decoration-color: initial;text-decoration-style: initial;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: rgb(135, 138, 154);display: block;margin-right: 24px;font-weight: 300; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-lVgUMkDtSV { text-decoration-color: initial;text-decoration-style: initial;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: rgb(135, 138, 154);display: block;margin-right: 24px;font-weight: 300; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-lVgUMkDtSV { text-decoration-color: initial;text-decoration-style: initial;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: rgb(135, 138, 154);display: block;margin-right: 24px;font-weight: 300; } } @media (min-width: 1200px) { .gp-component-id-lVgUMkDtSV { text-decoration-color: initial;text-decoration-style: initial;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: rgb(135, 138, 154);display: block;margin-right: 24px;font-weight: 300; } } .gp-component-id-lY5A8pFSQ7 { text-decoration-color: initial;text-decoration-style: initial;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: rgb(135, 138, 154);display: block;margin-bottom: 16px;font-weight: 300; } @media (max-width: 639px) { .gp-component-id-lY5A8pFSQ7 { text-decoration-color: initial;text-decoration-style: initial;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: rgb(135, 138, 154);display: block;margin-bottom: 16px;font-weight: 300; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-lY5A8pFSQ7 { text-decoration-color: initial;text-decoration-style: initial;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: rgb(135, 138, 154);display: block;margin-bottom: 16px;font-weight: 300; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-lY5A8pFSQ7 { text-decoration-color: initial;text-decoration-style: initial;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: rgb(135, 138, 154);display: block;margin-bottom: 16px;font-weight: 300; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-lY5A8pFSQ7 { text-decoration-color: initial;text-decoration-style: initial;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: rgb(135, 138, 154);display: block;margin-bottom: 0px;font-weight: 300;margin-right: 24px; } } @media (min-width: 1200px) { .gp-component-id-lY5A8pFSQ7 { text-decoration-color: initial;text-decoration-style: initial;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: rgb(135, 138, 154);display: block;margin-bottom: 0px;font-weight: 300;margin-right: 24px; } } .gp-component-id-PBqGQ1lshx { text-decoration-color: initial;text-decoration-style: initial;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: rgb(135, 138, 154);display: block;margin-bottom: 16px;font-weight: 300; } @media (max-width: 639px) { .gp-component-id-PBqGQ1lshx { text-decoration-color: initial;text-decoration-style: initial;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: rgb(135, 138, 154);display: block;margin-bottom: 16px;font-weight: 300; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-PBqGQ1lshx { text-decoration-color: initial;text-decoration-style: initial;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: rgb(135, 138, 154);display: block;margin-bottom: 16px;font-weight: 300; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-PBqGQ1lshx { text-decoration-color: initial;text-decoration-style: initial;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: rgb(135, 138, 154);display: block;margin-bottom: 16px;font-weight: 300; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-PBqGQ1lshx { text-decoration-color: initial;text-decoration-style: initial;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: rgb(135, 138, 154);display: block;margin-bottom: 0px;font-weight: 300;margin-right: 24px; } } @media (min-width: 1200px) { .gp-component-id-PBqGQ1lshx { text-decoration-color: initial;text-decoration-style: initial;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: rgb(135, 138, 154);display: block;margin-bottom: 0px;font-weight: 300;margin-right: 24px; } } .gp-component-id-GcoreBRC0g { flex-direction: column;display: flex;width: 100%;align-items: center; } @media (max-width: 639px) { .gp-component-id-GcoreBRC0g { flex-direction: column;display: flex;width: 100%;align-items: center; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-GcoreBRC0g { flex-direction: column;display: flex;width: 100%;align-items: center;font-size: 14px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-GcoreBRC0g { flex-direction: column;display: flex;width: 100%;align-items: flex-end;font-size: 14px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-GcoreBRC0g { flex-direction: row;display: flex;width: 100%;align-items: flex-start;font-size: 14px;justify-content: flex-end; } } @media (min-width: 1200px) { .gp-component-id-GcoreBRC0g { flex-direction: row;display: flex;width: 100%;align-items: flex-start;font-size: 14px;justify-content: flex-end; } } .gp-component-id-muFE2ktJ3q { border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center; } @media (max-width: 639px) { .gp-component-id-muFE2ktJ3q { border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;width: 288px;margin-bottom: 32px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-muFE2ktJ3q { border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;width: 288px;margin-bottom: 32px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-muFE2ktJ3q { border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;width: 288px;margin-bottom: 32px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-muFE2ktJ3q { border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;width: 288px;margin-bottom: 0px; } } @media (min-width: 1200px) { .gp-component-id-muFE2ktJ3q { border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;width: 288px;margin-bottom: 0px; } } .gp-component-id-AfHT_s51wM { flex-direction: column;display: flex;width: 100%;align-items: center; } @media (max-width: 639px) { .gp-component-id-AfHT_s51wM { flex-direction: column;display: flex;width: 100%;align-items: center; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-AfHT_s51wM { flex-direction: column;display: flex;width: 100%;align-items: center; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-AfHT_s51wM { flex-direction: column;display: flex;width: 100%;align-items: center; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-AfHT_s51wM { flex-direction: row;display: flex;width: 100%;align-items: center;justify-content: center; } } @media (min-width: 1200px) { .gp-component-id-AfHT_s51wM { flex-direction: row;display: flex;width: 100%;align-items: center;justify-content: center; } } .gp-component-id-EIlPb2MJ0J { margin-left: 0px;margin-bottom: 32px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;color: rgb(135, 138, 154);font-weight: 300;line-height: 1.5;text-align: center; } @media (max-width: 639px) { .gp-component-id-EIlPb2MJ0J { margin-left: 0px;margin-bottom: 32px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;color: rgb(135, 138, 154);font-weight: 300;line-height: 1.5;text-align: center; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-EIlPb2MJ0J { margin-left: 0px;margin-bottom: 32px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;color: rgb(135, 138, 154);font-weight: 300;line-height: 1.5;text-align: center; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-EIlPb2MJ0J { margin-left: 0px;margin-bottom: 32px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;color: rgb(135, 138, 154);font-weight: 300;line-height: 1.5;text-align: left; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-EIlPb2MJ0J { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;color: rgb(135, 138, 154);font-weight: 300;line-height: 1.5;text-align: left; } } @media (min-width: 1200px) { .gp-component-id-EIlPb2MJ0J { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;color: rgb(135, 138, 154);font-weight: 300;line-height: 1.5;text-align: left; } } .gp-component-id-4TgodRZc9o { flex-direction: column;display: flex;text-align: center;line-height: 1.5;font-weight: 300;margin-top: 0px;margin-right: 0px;margin-bottom: 32px;margin-left: 0px;color: rgb(135, 138, 154); } @media (max-width: 639px) { .gp-component-id-4TgodRZc9o { flex-direction: column;display: flex;text-align: center;line-height: 1.5;font-weight: 300;margin-top: 0px;margin-right: 0px;margin-bottom: 32px;margin-left: 0px;color: rgb(135, 138, 154); } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-4TgodRZc9o { flex-direction: column;display: flex;text-align: center;line-height: 1.5;font-weight: 300;margin-top: 0px;margin-right: 0px;margin-bottom: 32px;margin-left: 0px;color: rgb(135, 138, 154); } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-4TgodRZc9o { flex-direction: column;display: flex;text-align: left;line-height: 1.5;font-weight: 300;margin-top: 0px;margin-right: 0px;margin-bottom: 32px;margin-left: 0px;color: rgb(135, 138, 154); } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-4TgodRZc9o { flex-direction: column;display: flex;text-align: left;line-height: 1.5;font-weight: 300;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;color: rgb(135, 138, 154); } } @media (min-width: 1200px) { .gp-component-id-4TgodRZc9o { flex-direction: column;display: flex;text-align: left;line-height: 1.5;font-weight: 300;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;color: rgb(135, 138, 154); } } .gp-component-id-GY6Cav_s4n { width: 100%; } @media (max-width: 639px) { .gp-component-id-GY6Cav_s4n { width: 100%; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-GY6Cav_s4n { width: 100%; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-GY6Cav_s4n { width: 100%; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-GY6Cav_s4n { width: 100%;align-items: center;display: flex; } } @media (min-width: 1200px) { .gp-component-id-GY6Cav_s4n { width: 100%;align-items: center;display: flex; } } .gp-component-id-XWUHO2C9Ho { z-index: 15;position: relative;margin-left: auto;margin-right: auto;width: 100%; } @media (max-width: 639px) { .gp-component-id-XWUHO2C9Ho { z-index: 15;position: relative;margin-left: auto;margin-right: auto;width: 100%; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-XWUHO2C9Ho { z-index: 15;position: relative;margin-left: auto;margin-right: auto;width: 100%;max-width: 640px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-XWUHO2C9Ho { z-index: 15;position: relative;margin-left: auto;margin-right: auto;width: 100%;max-width: 768px;flex-direction: row;display: flex; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-XWUHO2C9Ho { z-index: 15;position: relative;margin-left: auto;margin-right: auto;width: 100%;max-width: 992px;flex-direction: row;display: flex;align-items: center; } } @media (min-width: 1200px) { .gp-component-id-XWUHO2C9Ho { z-index: 15;position: relative;margin-left: auto;margin-right: auto;width: 100%;max-width: 992px;flex-direction: row;display: flex;align-items: center; } } .gp-component-id-2jPyIe3YJ.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-2jPyIe3YJ.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-2jPyIe3YJ.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-2jPyIe3YJ.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-2jPyIe3YJ.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-2jPyIe3YJ.gp-component > [data-section-overlay] { z-index: 14;position: absolute;right: 0px;left: 0px;top: 0px;bottom: 0px; } } .gp-component-id-1JcGunH_AbL { text-decoration-color: initial;text-decoration-style: initial;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: inherit;z-index: 15;position: relative; } @media (max-width: 639px) { .gp-component-id-1JcGunH_AbL { text-decoration-color: initial;text-decoration-style: initial;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: inherit;z-index: 15;position: relative; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-1JcGunH_AbL { text-decoration-color: initial;text-decoration-style: initial;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: inherit;z-index: 15;position: relative; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-1JcGunH_AbL { text-decoration-color: initial;text-decoration-style: initial;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: inherit;z-index: 15;position: relative; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-1JcGunH_AbL { text-decoration-color: initial;text-decoration-style: initial;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: inherit;z-index: 15;position: relative; } } @media (min-width: 1200px) { .gp-component-id-1JcGunH_AbL { text-decoration-color: initial;text-decoration-style: initial;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: inherit;z-index: 15;position: relative; } } .gp-component-id-2jPyIe3YJ { min-height: 50px;position: relative;z-index: auto;padding-bottom: 32px;padding-top: 32px;padding-left: 8px;padding-right: 8px; } @media (max-width: 639px) { .gp-component-id-2jPyIe3YJ { min-height: 50px;position: relative;z-index: auto;padding-bottom: 32px;padding-top: 32px;padding-left: 8px;padding-right: 8px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-2jPyIe3YJ { min-height: 50px;position: relative;z-index: auto;padding-bottom: 32px;padding-top: 32px;padding-left: 8px;padding-right: 8px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-2jPyIe3YJ { min-height: 50px;position: relative;z-index: auto;padding-bottom: 32px;padding-top: 32px;padding-left: 8px;padding-right: 8px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-2jPyIe3YJ { min-height: 50px;position: relative;z-index: auto;padding-bottom: 32px;padding-top: 32px;padding-left: 8px;padding-right: 8px; } } @media (min-width: 1200px) { .gp-component-id-2jPyIe3YJ { min-height: 50px;position: relative;z-index: auto;padding-bottom: 32px;padding-top: 32px;padding-left: 8px;padding-right: 8px; } } .gp-component-id-k2CI3lWMU { 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-k2CI3lWMU { 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-k2CI3lWMU:hover,.gp-component-id-k2CI3lWMU.gp-hover { background-color: rgb(120, 136, 155); } .gp-component-id-k2CI3lWMU:active,.gp-component-id-k2CI3lWMU.gp-active { background-color: rgb(32, 45, 60); } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-k2CI3lWMU { 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-k2CI3lWMU:hover,.gp-component-id-k2CI3lWMU.gp-hover { background-color: rgb(120, 136, 155); } .gp-component-id-k2CI3lWMU:active,.gp-component-id-k2CI3lWMU.gp-active { background-color: rgb(32, 45, 60); } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-k2CI3lWMU { 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-k2CI3lWMU:hover,.gp-component-id-k2CI3lWMU.gp-hover { background-color: rgb(120, 136, 155); } .gp-component-id-k2CI3lWMU:active,.gp-component-id-k2CI3lWMU.gp-active { background-color: rgb(32, 45, 60); } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-k2CI3lWMU { 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-k2CI3lWMU:hover,.gp-component-id-k2CI3lWMU.gp-hover { background-color: rgb(120, 136, 155); } .gp-component-id-k2CI3lWMU:active,.gp-component-id-k2CI3lWMU.gp-active { background-color: rgb(32, 45, 60); } } @media (min-width: 1200px) { .gp-component-id-k2CI3lWMU { 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-k2CI3lWMU:hover,.gp-component-id-k2CI3lWMU.gp-hover { background-color: rgb(120, 136, 155); } .gp-component-id-k2CI3lWMU:active,.gp-component-id-k2CI3lWMU.gp-active { background-color: rgb(32, 45, 60); } } .gp-component-id-QvtbgeIf7K { flex-direction: column;display: flex; } @media (max-width: 639px) { .gp-component-id-QvtbgeIf7K { flex-direction: column;display: flex; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-QvtbgeIf7K { flex-direction: column;display: flex; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-QvtbgeIf7K { flex-direction: column;display: flex; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-QvtbgeIf7K { flex-direction: column;display: flex; } } @media (min-width: 1200px) { .gp-component-id-QvtbgeIf7K { flex-direction: column;display: flex; } } .gp-component-id-mibeo2AtX { width: 100%; } @media (max-width: 639px) { .gp-component-id-mibeo2AtX { width: 100%; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-mibeo2AtX { width: 100%; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-mibeo2AtX { width: 100%; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-mibeo2AtX { width: 100%; } } @media (min-width: 1200px) { .gp-component-id-mibeo2AtX { width: 100%; } } .gp-component-id-_Itg2MMQn { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: inherit;overflow-wrap: break-word;font-weight: inherit; } @media (max-width: 639px) { .gp-component-id-_Itg2MMQn { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 28px !important;overflow-wrap: break-word;font-weight: 600 !important;text-align: center; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-_Itg2MMQn { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 28px !important;overflow-wrap: break-word;font-weight: 600 !important;text-align: center; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-_Itg2MMQn { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 28px !important;overflow-wrap: break-word;font-weight: 600 !important;text-align: center; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-_Itg2MMQn { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 28px !important;overflow-wrap: break-word;font-weight: 600 !important;text-align: center; } } @media (min-width: 1200px) { .gp-component-id-_Itg2MMQn { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 28px !important;overflow-wrap: break-word;font-weight: 600 !important;text-align: center; } } .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] { bottom: 0px;top: 0px;left: 0px;right: 0px;position: absolute;z-index: 14; } @media (max-width: 639px) { .gp-component-id-3RDqXch5tl.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-3RDqXch5tl.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-3RDqXch5tl.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-3RDqXch5tl.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-3RDqXch5tl.gp-component > [data-section-overlay] { bottom: 0px;top: 0px;left: 0px;right: 0px;position: absolute;z-index: 14; } } .gp-component-id-3RDqXch5tl { min-height: 50px;position: relative;z-index: auto; } @media (max-width: 639px) { .gp-component-id-3RDqXch5tl { min-height: 50px;position: relative;z-index: auto;margin-bottom: 0px;margin-top: 0px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-3RDqXch5tl { min-height: 50px;position: relative;z-index: auto;margin-bottom: 0px;margin-top: 0px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-3RDqXch5tl { min-height: 50px;position: relative;z-index: auto;margin-bottom: 0px;margin-top: 0px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-3RDqXch5tl { min-height: 50px;position: relative;z-index: auto;margin-bottom: 0px;margin-top: 0px; } } @media (min-width: 1200px) { .gp-component-id-3RDqXch5tl { min-height: 50px;position: relative;z-index: auto;margin-bottom: 0px;margin-top: 0px; } } .gp-component-id-ArxrIaxzu { width: 192px;object-position: center center;object-fit: cover;border-top-left-radius: 9999px;border-top-right-radius: 9999px;border-bottom-right-radius: 9999px;border-bottom-left-radius: 9999px;max-width: 100%;height: 192px;border-top-style: solid;border-right-style: solid;border-bottom-style: solid;border-left-style: solid; } @media (max-width: 639px) { .gp-component-id-ArxrIaxzu { width: 192px;object-position: center center;object-fit: cover;border-top-left-radius: 9999px;border-top-right-radius: 9999px;border-bottom-right-radius: 9999px;border-bottom-left-radius: 9999px;max-width: 100%;height: 192px;border-top-style: solid;border-right-style: solid;border-bottom-style: solid;border-left-style: solid; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-ArxrIaxzu { width: 192px;object-position: center center;object-fit: cover;border-top-left-radius: 9999px;border-top-right-radius: 9999px;border-bottom-right-radius: 9999px;border-bottom-left-radius: 9999px;max-width: 100%;height: 192px;border-top-style: solid;border-right-style: solid;border-bottom-style: solid;border-left-style: solid; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-ArxrIaxzu { width: 192px;object-position: center center;object-fit: cover;border-top-left-radius: 9999px;border-top-right-radius: 9999px;border-bottom-right-radius: 9999px;border-bottom-left-radius: 9999px;max-width: 100%;height: 192px;border-top-style: solid;border-right-style: solid;border-bottom-style: solid;border-left-style: solid; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-ArxrIaxzu { width: 192px;object-position: center center;object-fit: cover;border-top-left-radius: 9999px;border-top-right-radius: 9999px;border-bottom-right-radius: 9999px;border-bottom-left-radius: 9999px;max-width: 100%;height: 192px;border-top-style: solid;border-right-style: solid;border-bottom-style: solid;border-left-style: solid; } } @media (min-width: 1200px) { .gp-component-id-ArxrIaxzu { width: 192px;object-position: center center;object-fit: cover;border-top-left-radius: 9999px;border-top-right-radius: 9999px;border-bottom-right-radius: 9999px;border-bottom-left-radius: 9999px;max-width: 100%;height: 192px;border-top-style: solid;border-right-style: solid;border-bottom-style: solid;border-left-style: solid; } } .gp-component-id-uWq6oBZtYL { top: 100%;z-index: 20;right: 0px;left: 0px;position: absolute;flex-grow: 1;flex-shrink: 1;flex-basis: 0%; } @media (max-width: 639px) { .gp-component-id-uWq6oBZtYL { top: 100%;z-index: 20;right: 0px;left: 0px;position: absolute;flex-grow: 1;flex-shrink: 1;flex-basis: 0%; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-uWq6oBZtYL { top: 100%;z-index: 20;right: 0px;left: 0px;position: absolute;flex-grow: 1;flex-shrink: 1;flex-basis: 0%; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-uWq6oBZtYL { top: 100%;z-index: 20;right: 0px;left: 0px;position: absolute;flex-grow: 1;flex-shrink: 1;flex-basis: 0%; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-uWq6oBZtYL { top: 100%;z-index: 20;right: 0px;left: 0px;position: relative;flex-grow: 1;flex-shrink: 1;flex-basis: 0%;justify-content: flex-end;display: flex; } } @media (min-width: 1200px) { .gp-component-id-uWq6oBZtYL { top: 100%;z-index: 20;right: 0px;left: 0px;position: relative;flex-grow: 1;flex-shrink: 1;flex-basis: 0%;justify-content: flex-end;display: flex; } } @media (max-width: 639px) { .gp-component-id-sH50RFw8pc { display: flex;align-items: center;justify-content: center;flex-direction: column;width: 100%;padding-bottom: 20px;padding-top: 20px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-sH50RFw8pc { display: flex;align-items: center;justify-content: center;flex-direction: column;width: 100%;padding-bottom: 20px;padding-top: 20px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-sH50RFw8pc { display: flex;align-items: center;justify-content: center;flex-direction: column;width: 100%;padding-bottom: 20px;padding-top: 20px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-sH50RFw8pc { display: flex;align-items: center;justify-content: center;flex-direction: column;width: 100%;padding-bottom: 20px;padding-top: 20px; } } @media (min-width: 1200px) { .gp-component-id-sH50RFw8pc { display: flex;align-items: center;justify-content: center;flex-direction: column;width: 100%;padding-bottom: 20px;padding-top: 20px; } } .gp-component-id-xEtWHwB400 { padding-right: 8px;padding-left: 8px;width: 100%; } @media (max-width: 639px) { .gp-component-id-xEtWHwB400 { padding-right: 8px;padding-left: 8px;width: 100%; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-xEtWHwB400 { padding-right: 8px;padding-left: 8px;width: 100%; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-xEtWHwB400 { padding-right: 8px;padding-left: 8px;width: 100%; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-xEtWHwB400 { padding-right: 8px;padding-left: 8px;width: 100%; } } @media (min-width: 1200px) { .gp-component-id-xEtWHwB400 { padding-right: 8px;padding-left: 8px;width: 100%; } } .gp-component-id-Kh0238rbq_ { z-index: 15;position: relative;margin-left: auto;margin-right: auto;width: 100%; } @media (max-width: 639px) { .gp-component-id-Kh0238rbq_ { z-index: 15;position: relative;margin-left: auto;margin-right: auto;width: 100%; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-Kh0238rbq_ { z-index: 15;position: relative;margin-left: auto;margin-right: auto;width: 100%;max-width: 640px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-Kh0238rbq_ { z-index: 15;position: relative;margin-left: auto;margin-right: auto;width: 100%;max-width: 768px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-Kh0238rbq_ { z-index: 15;position: relative;margin-left: auto;margin-right: auto;width: 100%;max-width: 992px; } } @media (min-width: 1200px) { .gp-component-id-Kh0238rbq_ { z-index: 15;position: relative;margin-left: auto;margin-right: auto;width: 100%;max-width: 1200px; } } .gp-component-id-2KZTcGhjz9.gp-component > [data-section-overlay] { position: absolute;right: 0px;left: 0px;top: 0px;bottom: 0px;z-index: 14; } @media (max-width: 639px) { .gp-component-id-2KZTcGhjz9.gp-component > [data-section-overlay] { position: absolute;right: 0px;left: 0px;top: 0px;bottom: 0px;z-index: 14; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-2KZTcGhjz9.gp-component > [data-section-overlay] { position: absolute;right: 0px;left: 0px;top: 0px;bottom: 0px;z-index: 14; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-2KZTcGhjz9.gp-component > [data-section-overlay] { position: absolute;right: 0px;left: 0px;top: 0px;bottom: 0px;z-index: 14; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-2KZTcGhjz9.gp-component > [data-section-overlay] { position: absolute;right: 0px;left: 0px;top: 0px;bottom: 0px;z-index: 14; } } @media (min-width: 1200px) { .gp-component-id-2KZTcGhjz9.gp-component > [data-section-overlay] { position: absolute;right: 0px;left: 0px;top: 0px;bottom: 0px;z-index: 14; } } .gp-component-id-2KZTcGhjz9 { min-height: 50px;position: relative;z-index: auto; } @media (max-width: 639px) { .gp-component-id-2KZTcGhjz9 { min-height: 50px;position: relative;z-index: auto; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-2KZTcGhjz9 { min-height: 50px;position: relative;z-index: auto; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-2KZTcGhjz9 { min-height: 50px;position: relative;z-index: auto; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-2KZTcGhjz9 { min-height: 50px;position: relative;z-index: auto; } } @media (min-width: 1200px) { .gp-component-id-2KZTcGhjz9 { min-height: 50px;position: relative;z-index: auto; } } .gp-component-id-Zu00vSixaZ { line-height: 1;display: inline-block; } @media (max-width: 639px) { .gp-component-id-Zu00vSixaZ { line-height: 1;display: inline-block;background-color: rgba(255, 255, 255, 0); } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-Zu00vSixaZ { line-height: 1;display: inline-block; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-Zu00vSixaZ { line-height: 1;display: inline-block; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-Zu00vSixaZ { line-height: 1;display: inline-block; } } @media (min-width: 1200px) { .gp-component-id-Zu00vSixaZ { line-height: 1;display: inline-block; } } .gp-component-id-TIwocJC7VU { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: 100%;font-family: inherit;overflow-y: visible;overflow-x: visible;text-transform: none;appearance: button;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;background-color: transparent;background-clip: initial;background-origin: initial;background-attachment: initial;background-repeat: initial;background-size: initial;background-position-y: initial;background-position-x: initial;background-image: initial;cursor: pointer; } .gp-component-id-TIwocJC7VU:focus,.gp-component-id-TIwocJC7VU.gp-focus { outline-width: 5px;outline-style: auto;outline-color: -webkit-focus-ring-color; } @media (max-width: 639px) { .gp-component-id-TIwocJC7VU { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: 24px;font-family: inherit;overflow-y: visible;overflow-x: visible;text-transform: none;appearance: button;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;background-color: rgba(255, 255, 255, 0);background-clip: initial;background-origin: initial;background-attachment: initial;background-repeat: initial;background-size: initial;background-position-y: initial;background-position-x: initial;background-image: initial;cursor: pointer;display: inline-flex;align-items: center; } .gp-component-id-TIwocJC7VU:focus,.gp-component-id-TIwocJC7VU.gp-focus { outline-width: 5px;outline-style: auto;outline-color: -webkit-focus-ring-color; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-TIwocJC7VU { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: 24px;font-family: inherit;overflow-y: visible;overflow-x: visible;text-transform: none;appearance: button;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;background-color: transparent;background-clip: initial;background-origin: initial;background-attachment: initial;background-repeat: initial;background-size: initial;background-position-y: initial;background-position-x: initial;background-image: initial;cursor: pointer;display: inline-flex;align-items: center; } .gp-component-id-TIwocJC7VU:focus,.gp-component-id-TIwocJC7VU.gp-focus { outline-width: 5px;outline-style: auto;outline-color: -webkit-focus-ring-color; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-TIwocJC7VU { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: 24px;font-family: inherit;overflow-y: visible;overflow-x: visible;text-transform: none;appearance: button;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;background-color: transparent;background-clip: initial;background-origin: initial;background-attachment: initial;background-repeat: initial;background-size: initial;background-position-y: initial;background-position-x: initial;background-image: initial;cursor: pointer;display: inline-flex;align-items: center; } .gp-component-id-TIwocJC7VU:focus,.gp-component-id-TIwocJC7VU.gp-focus { outline-width: 5px;outline-style: auto;outline-color: -webkit-focus-ring-color; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-TIwocJC7VU { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: 24px;font-family: inherit;overflow-y: visible;overflow-x: visible;text-transform: none;appearance: button;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;background-color: transparent;background-clip: initial;background-origin: initial;background-attachment: initial;background-repeat: initial;background-size: initial;background-position-y: initial;background-position-x: initial;background-image: initial;cursor: pointer;display: none;align-items: center; } .gp-component-id-TIwocJC7VU:focus,.gp-component-id-TIwocJC7VU.gp-focus { outline-width: 5px;outline-style: auto;outline-color: -webkit-focus-ring-color; } } @media (min-width: 1200px) { .gp-component-id-TIwocJC7VU { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: 24px;font-family: inherit;overflow-y: visible;overflow-x: visible;text-transform: none;appearance: button;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;background-color: transparent;background-clip: initial;background-origin: initial;background-attachment: initial;background-repeat: initial;background-size: initial;background-position-y: initial;background-position-x: initial;background-image: initial;cursor: pointer;display: none;align-items: center; } .gp-component-id-TIwocJC7VU:focus,.gp-component-id-TIwocJC7VU.gp-focus { outline-width: 5px;outline-style: auto;outline-color: -webkit-focus-ring-color; } } .gp-component-id-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-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-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; } }
