 /* Calendar Widget */
#calendar-widget { display: none; /* Default to hidden */ margin: 0 auto; /* Center widget horizontally */ width: 100%; /* Full width of the container */ max-width: 800px; /* Adjust for larger screens */ height: auto; /* Let the widget grow based on content */ min-height: 1200px; /* Ensure minimum height */ padding: 20px; /* Add padding for spacing */ box-sizing: border-box; /* Include padding in size */ overflow: hidden; /* Prevent scrollbars */ position: relative; /* Allow proper layout */
}
/* Calendar Widget Container */
#calendar-widget-container { width: 100%; /* Full width of parent container */ height: auto; /* Allow dynamic height */ display: flex; /* Flexbox layout */ justify-content: center; /* Center calendar */ align-items: flex-start; /* Align to top */ overflow: visible; /* Ensure nothing is clipped */
}
/* Zcal Inline Widget */
.zcal-inline-widget { display: block; /* Ensure widget is visible when triggered */ width: 100%; /* Match the container’s width */ height: 100%; /* Match the container’s height */ min-height: inherit; /* Inherit from parent */ overflow: hidden; /* Prevent internal scrolling */
}
/* Mobile Responsive Adjustments */
@media (max-width: 768px) { #calendar-widget { width: 90%; /* Adjust width for smaller screens */ min-height: 800px; /* Reduce height for mobile */ }
}
/* Validation Error Message Styles */
.validation-error { color: #e74c3c; /* Red text color */ font-size: 14px; /* Adjust font size as needed */ margin-top: 5px; /* Add space above the message */ display: block; /* Ensure the error message is visible */ font-weight: bold;
}
/* Highlight Invalid Fields */
input:invalid, textarea:invalid, select:invalid { border: 2px solid #e74c3c; /* Red border for invalid fields */ background-color: #fef2f2; /* Light red background */
}
input:invalid:focus, textarea:invalid:focus, select:invalid:focus { box-shadow: 0 4px 8px rgba(231, 76, 60, 0.3); /* Subtle red shadow */
}
/* Validation Error Styling for Specific Fields */
.form-group.invalid .validation-error { color: #e74c3c; /* Red error text */ font-size: 14px; font-weight: bold; margin-top: 5px;
}
/* Response Message Styling */
#response-message { margin-top: 20px; font-size: 16px; font-weight: bold; text-align: center; display: none; /* Hidden by default */
}
#response-message.success { color: #28a745; /* Green for success */ display: block; /* Show message */
}
#response-message.error { color: #e74c3c; /* Red for error */ display: block; /* Show message */
}
/* Form Container Adjustments */
form { display: flex; flex-direction: column; /* Stack elements vertically */ gap: 15px; /* Add spacing between form elements */ max-width: 600px; /* Limit form width */ margin: 0 auto; /* Center form on the page */ padding: 20px; /* Add spacing inside the form */ box-sizing: border-box;
}
/* Form Group Styling */
.form-group { margin-bottom: 20px; position: relative; /* Allow for dynamic effects */
}
/* Label Styling */
label { display: block; margin-bottom: 8px; font-weight: bold; color: #333; font-size: 14px;
}
/* Input, Textarea, and Dropdown Styling */
input, textarea, select { width: 100%; padding: 12px; font-size: 16px; font-family: 'alataregular', sans-serif; color: #112d4e; /* Dark blue text color */ background-color: #ffffff; /* White background */ border: 1px solid #d1d9e6; /* Light gray border */ border-radius: 8px; /* Rounded corners for modern look */ box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Subtle drop shadow */ transition: all 0.3s ease; /* Smooth hover/focus effects */
}
/* Input and Textarea Focus State */
input:focus, textarea:focus, select:focus { border-color: #112d4e; /* Highlight border */ box-shadow: 0 4px 8px rgba(17, 45, 78, 0.2); /* Enhanced shadow on focus */ outline: none; /* Remove default outline */
}
/* Placeholder Text Styling */
input::placeholder, textarea::placeholder { color: #b0b7c3; /* Light gray placeholder */ font-style: italic; /* Subtle style */
}
/* Dropdown Customization */
select { appearance: none; /* Remove default browser styles */ background: url('data:image/svg+xml;charset=US-ASCII,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7 10l5 5 5-5z"/></svg>') no-repeat right 12px center; background-size: 16px; background-color: #ffffff; /* White dropdown */
}
/* Submit Button Styling */
button { background-color: #3f72af; /* Standard button color */ color: #ffffff; /* White text */ padding: 12px 20px; border: none; border-radius: 8px; font-size: 16px; font-family: 'alataregular', sans-serif; cursor: pointer; box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1); /* Slight shadow for depth */ transition: background-color 0.3s ease, transform 0.2s ease;
}
button:hover { background-color: #112d4e; /* Hover color */ transform: translateY(-2px); /* Lift effect */ box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); /* More prominent shadow */
}
button:active { transform: translateY(0); /* Reset on click */ box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1); /* Reduced shadow */
}
/*! Generated by Font Squirrel (https://www.fontsquirrel.com) on January 9, 2025 */
@font-face { font-family: 'alataregular'; src: url('https://v1.gdapis.com/api/groovemember/download/ycws5bf338bd3eec2e89d26ee9f3990450bcf') format('woff2'), url('https://v1.gdapis.com/api/groovemember/download/ykmmgcd9b90b656a9d5639d5b1e5959d85eeb') format('woff'); font-weight: normal; font-style: normal;
}
h1, h2 { font-family: 'alataregular', sans-serif !important;
}
/* Responsive Adjustments */
@media (max-width: 768px) { .custom-form { padding: 10px; /* Adjust padding for smaller screens */ } input, textarea, select { font-size: 14px; /* Reduce font size on mobile */ }
}
/* Increase icon size */
.share-icons img { width: 40px; /* Adjust size */ height: 40px; /* Adjust size */ margin: 0 8px; /* Add spacing between icons */
}
/* Add spacing below icons */
.share-icons { margin-top: 15px; /* Increased spacing */
}
/* Copy Button Hover Effect */
#copyReferralBtn { transition: background-color 0.3s ease, box-shadow 0.3s ease;
}
#copyReferralBtn:hover { background-color: #2C7BE5; /* Darker shade on hover */ box-shadow: 0px 4px 10px rgba(44, 123, 229, 0.4); /* Soft glow effect */
}
.gradient-bg { background: linear-gradient(180deg, #1E3A5F 0%, #13264D 100%);
}
.tab-active { background: linear-gradient(to bottom, #1E3A8A, #13264D); box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
}
.tab-active { background: linear-gradient(to bottom, #1E3A8A, #13264D); box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
}
.inactive-tab:hover { background: rgba(30, 58, 138, 0.8); transition: background 0.2s ease-in-out;
}
.faq-item:nth-child { background: rgba(0, 0, 0, 0.05);
}
.faq-tab:hover { background-color: #1C3D6E; /* Slightly lighter than active state */ transition: 0.3s ease-in-out;
}
.groove-button:hover { background-color: #FFFFFF !important; color: #3F72AF !important; border: 2px solid #3F72AF !important;
}
.groove-button { background-color: #3F72AF; color: #FFFFFF; border: 2px solid transparent;
} *{} {} #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) { .global-style-h0mqHQGIo { text-align: center;width: 100%;height: 225px;justify-content: space-between;align-items: flex-start;display: flex; } } @media (max-width: 767px) and (min-width: 640px) { .global-style-h0mqHQGIo { text-align: center;width: 100%;height: 225px;justify-content: space-between;align-items: flex-start;display: flex; } } @media (max-width: 991px) and (min-width: 768px) { .global-style-h0mqHQGIo { text-align: center;width: 100%;height: 225px;justify-content: space-between;align-items: flex-start;display: flex; } } @media (max-width: 1199px) and (min-width: 992px) { .global-style-h0mqHQGIo { text-align: center;width: 100%;height: 225px;justify-content: space-between;align-items: flex-start;display: flex; } } @media (min-width: 1200px) { .global-style-h0mqHQGIo { text-align: center;width: 100%;height: 225px;justify-content: space-between;align-items: flex-start;display: flex; } } .global-style-nK2AH4UiC { cursor: pointer;text-decoration-line: none;text-decoration-style: solid;text-decoration-color: initial; } @media (max-width: 639px) { .global-style-nK2AH4UiC { font-size: 24px;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 8px;border-top-right-radius: 8px;border-bottom-left-radius: 8px;border-bottom-right-radius: 8px;margin-top: 30px;padding-left: 50px;padding-right: 50px;padding-top: 19px;padding-bottom: 19px;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-style: solid;text-decoration-color: initial; } } @media (max-width: 767px) and (min-width: 640px) { .global-style-nK2AH4UiC { font-size: 24px;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 8px;border-top-right-radius: 8px;border-bottom-left-radius: 8px;border-bottom-right-radius: 8px;margin-top: 30px;padding-left: 50px;padding-right: 50px;padding-top: 19px;padding-bottom: 19px;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-style: solid;text-decoration-color: initial; } } @media (max-width: 991px) and (min-width: 768px) { .global-style-nK2AH4UiC { font-size: 24px;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 8px;border-top-right-radius: 8px;border-bottom-left-radius: 8px;border-bottom-right-radius: 8px;margin-top: 30px;padding-left: 50px;padding-right: 50px;padding-top: 19px;padding-bottom: 19px;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-style: solid;text-decoration-color: initial; } } @media (max-width: 1199px) and (min-width: 992px) { .global-style-nK2AH4UiC { font-size: 24px;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 8px;border-top-right-radius: 8px;border-bottom-left-radius: 8px;border-bottom-right-radius: 8px;margin-top: 30px;padding-left: 50px;padding-right: 50px;padding-top: 19px;padding-bottom: 19px;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-style: solid;text-decoration-color: initial; } } @media (min-width: 1200px) { .global-style-nK2AH4UiC { font-size: 24px;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 8px;border-top-right-radius: 8px;border-bottom-left-radius: 8px;border-bottom-right-radius: 8px;margin-top: 30px;padding-left: 50px;padding-right: 50px;padding-top: 19px;padding-bottom: 19px;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-style: solid;text-decoration-color: initial; } } .global-style-nK2AH4UiC:not([data-gp-component="block"]), .global-style-nK2AH4UiC [data-section-overlay] { background-color: transparent; } @media (max-width: 639px) { .global-style-nK2AH4UiC:not([data-gp-component="block"]), .global-style-nK2AH4UiC [data-section-overlay] { background-color: rgb(240, 149, 88); } .global-style-nK2AH4UiC:not([data-gp-component="block"]):hover,.global-style-nK2AH4UiC:not([data-gp-component="block"]).gp-hover, .global-style-nK2AH4UiC [data-section-overlay]:hover, .global-style-nK2AH4UiC [data-section-overlay].gp-hover { background-color: rgb(89, 198, 152); } .global-style-nK2AH4UiC:not([data-gp-component="block"]):active,.global-style-nK2AH4UiC:not([data-gp-component="block"]).gp-active, .global-style-nK2AH4UiC [data-section-overlay]:active, .global-style-nK2AH4UiC [data-section-overlay].gp-active { background-color: rgb(32, 45, 60); } } @media (max-width: 767px) and (min-width: 640px) { .global-style-nK2AH4UiC:not([data-gp-component="block"]), .global-style-nK2AH4UiC [data-section-overlay] { background-color: rgb(240, 149, 88); } .global-style-nK2AH4UiC:not([data-gp-component="block"]):hover,.global-style-nK2AH4UiC:not([data-gp-component="block"]).gp-hover, .global-style-nK2AH4UiC [data-section-overlay]:hover, .global-style-nK2AH4UiC [data-section-overlay].gp-hover { background-color: rgb(89, 198, 152); } .global-style-nK2AH4UiC:not([data-gp-component="block"]):active,.global-style-nK2AH4UiC:not([data-gp-component="block"]).gp-active, .global-style-nK2AH4UiC [data-section-overlay]:active, .global-style-nK2AH4UiC [data-section-overlay].gp-active { background-color: rgb(32, 45, 60); } } @media (max-width: 991px) and (min-width: 768px) { .global-style-nK2AH4UiC:not([data-gp-component="block"]), .global-style-nK2AH4UiC [data-section-overlay] { background-color: rgb(240, 149, 88); } .global-style-nK2AH4UiC:not([data-gp-component="block"]):hover,.global-style-nK2AH4UiC:not([data-gp-component="block"]).gp-hover, .global-style-nK2AH4UiC [data-section-overlay]:hover, .global-style-nK2AH4UiC [data-section-overlay].gp-hover { background-color: rgb(89, 198, 152); } .global-style-nK2AH4UiC:not([data-gp-component="block"]):active,.global-style-nK2AH4UiC:not([data-gp-component="block"]).gp-active, .global-style-nK2AH4UiC [data-section-overlay]:active, .global-style-nK2AH4UiC [data-section-overlay].gp-active { background-color: rgb(32, 45, 60); } } @media (max-width: 1199px) and (min-width: 992px) { .global-style-nK2AH4UiC:not([data-gp-component="block"]), .global-style-nK2AH4UiC [data-section-overlay] { background-color: rgb(240, 149, 88); } .global-style-nK2AH4UiC:not([data-gp-component="block"]):hover,.global-style-nK2AH4UiC:not([data-gp-component="block"]).gp-hover, .global-style-nK2AH4UiC [data-section-overlay]:hover, .global-style-nK2AH4UiC [data-section-overlay].gp-hover { background-color: rgb(89, 198, 152); } .global-style-nK2AH4UiC:not([data-gp-component="block"]):active,.global-style-nK2AH4UiC:not([data-gp-component="block"]).gp-active, .global-style-nK2AH4UiC [data-section-overlay]:active, .global-style-nK2AH4UiC [data-section-overlay].gp-active { background-color: rgb(32, 45, 60); } } @media (min-width: 1200px) { .global-style-nK2AH4UiC:not([data-gp-component="block"]), .global-style-nK2AH4UiC [data-section-overlay] { background-color: rgb(240, 149, 88); } .global-style-nK2AH4UiC:not([data-gp-component="block"]):hover,.global-style-nK2AH4UiC:not([data-gp-component="block"]).gp-hover, .global-style-nK2AH4UiC [data-section-overlay]:hover, .global-style-nK2AH4UiC [data-section-overlay].gp-hover { background-color: rgb(89, 198, 152); } .global-style-nK2AH4UiC:not([data-gp-component="block"]):active,.global-style-nK2AH4UiC:not([data-gp-component="block"]).gp-active, .global-style-nK2AH4UiC [data-section-overlay]:active, .global-style-nK2AH4UiC [data-section-overlay].gp-active { background-color: rgb(32, 45, 60); } } .gp-component-id-PFG0N16jYb { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word; } @media (max-width: 639px) { .gp-component-id-PFG0N16jYb { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Poppins, sans-serif;line-height: 1.5;letter-spacing: 0.05em;text-align: center;color: rgb(255, 255, 255);font-size: 14px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-PFG0N16jYb { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Poppins, sans-serif;line-height: 1.5;letter-spacing: 0.05em;text-align: center;color: rgb(255, 255, 255);font-size: 14px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-PFG0N16jYb { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Poppins, sans-serif;line-height: 1.5;letter-spacing: 0.05em;text-align: center;color: rgb(255, 255, 255);font-size: 14px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-PFG0N16jYb { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Poppins, sans-serif;line-height: 1.5;letter-spacing: 0.05em;text-align: center;color: rgb(255, 255, 255);font-size: 14px; } } @media (min-width: 1200px) { .gp-component-id-PFG0N16jYb { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Poppins, sans-serif;line-height: 1.5;letter-spacing: 0.05em;text-align: center;color: rgb(255, 255, 255);font-size: 14px; } } .gp-component-id-u8JY8Jcmvi { flex-direction: column;display: flex; } @media (max-width: 639px) { .gp-component-id-u8JY8Jcmvi { flex-direction: column;display: flex; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-u8JY8Jcmvi { flex-direction: column;display: flex; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-u8JY8Jcmvi { flex-direction: column;display: flex; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-u8JY8Jcmvi { flex-direction: column;display: flex; } } @media (min-width: 1200px) { .gp-component-id-u8JY8Jcmvi { flex-direction: column;display: flex; } } .gp-component-id-eqjkmF7EY5 { width: 100%; } @media (max-width: 639px) { .gp-component-id-eqjkmF7EY5 { width: 100%; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-eqjkmF7EY5 { width: 100%; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-eqjkmF7EY5 { width: 100%; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-eqjkmF7EY5 { width: 100%; } } @media (min-width: 1200px) { .gp-component-id-eqjkmF7EY5 { width: 100%; } } .gp-component-id-oUfBVhzrTUY { padding-left: 8px;width: 100%;padding-right: 8px; } @media (max-width: 639px) { .gp-component-id-oUfBVhzrTUY { padding-left: 8px;width: 100%;padding-right: 8px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-oUfBVhzrTUY { padding-left: 8px;width: 100%;padding-right: 8px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-oUfBVhzrTUY { padding-left: 8px;width: 100%;padding-right: 8px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-oUfBVhzrTUY { padding-left: 8px;width: 100%;padding-right: 8px; } } @media (min-width: 1200px) { .gp-component-id-oUfBVhzrTUY { padding-left: 8px;width: 100%;padding-right: 8px; } } .gp-component-id-ZY8zuHhv6L8 { margin-left: -8px;margin-right: -8px; } @media (max-width: 639px) { .gp-component-id-ZY8zuHhv6L8 { margin-left: -8px;margin-right: -8px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-ZY8zuHhv6L8 { margin-left: -8px;margin-right: -8px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-ZY8zuHhv6L8 { margin-left: -8px;margin-right: -8px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-ZY8zuHhv6L8 { margin-left: -8px;margin-right: -8px; } } @media (min-width: 1200px) { .gp-component-id-ZY8zuHhv6L8 { margin-left: -8px;margin-right: -8px; } } .gp-component-id-UibhoRxADa { padding-left: 8px;width: 100%;padding-right: 8px; } @media (max-width: 639px) { .gp-component-id-UibhoRxADa { padding-left: 8px;width: 100%;padding-right: 8px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-UibhoRxADa { padding-left: 8px;width: 100%;padding-right: 8px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-UibhoRxADa { padding-left: 8px;width: 100%;padding-right: 8px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-UibhoRxADa { padding-left: 8px;width: 100%;padding-right: 8px; } } @media (min-width: 1200px) { .gp-component-id-UibhoRxADa { padding-left: 8px;width: 100%;padding-right: 8px; } } .gp-component-id-DWB6lKwPG1 { z-index: 15;position: relative;margin-left: auto;margin-right: auto;width: 100%; } @media (max-width: 639px) { .gp-component-id-DWB6lKwPG1 { z-index: 15;position: relative;margin-left: auto;margin-right: auto;width: 100%; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-DWB6lKwPG1 { 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-DWB6lKwPG1 { 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-DWB6lKwPG1 { z-index: 15;position: relative;margin-left: auto;margin-right: auto;width: 100%;max-width: 992px; } } @media (min-width: 1200px) { .gp-component-id-DWB6lKwPG1 { z-index: 15;position: relative;margin-left: auto;margin-right: auto;width: 100%;max-width: 1200px; } } .gp-component-id-L1tlLdAzH.gp-component > [data-section-overlay] { z-index: 14;position: absolute;right: 0px;left: 0px;top: 0px;bottom: 0px;background-color: rgb(255, 255, 255); } @media (max-width: 639px) { .gp-component-id-L1tlLdAzH.gp-component > [data-section-overlay] { z-index: 14;position: absolute;right: 0px;left: 0px;top: 0px;bottom: 0px;background-color: rgb(25, 29, 58); } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-L1tlLdAzH.gp-component > [data-section-overlay] { z-index: 14;position: absolute;right: 0px;left: 0px;top: 0px;bottom: 0px;background-color: rgb(25, 29, 58); } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-L1tlLdAzH.gp-component > [data-section-overlay] { z-index: 14;position: absolute;right: 0px;left: 0px;top: 0px;bottom: 0px;background-color: rgb(25, 29, 58); } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-L1tlLdAzH.gp-component > [data-section-overlay] { z-index: 14;position: absolute;right: 0px;left: 0px;top: 0px;bottom: 0px;background-color: rgb(25, 29, 58); } } @media (min-width: 1200px) { .gp-component-id-L1tlLdAzH.gp-component > [data-section-overlay] { z-index: 14;position: absolute;right: 0px;left: 0px;top: 0px;bottom: 0px;background-color: rgb(25, 29, 58); } } .gp-component-id-fvNfVKMvJTo { 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-fvNfVKMvJTo { 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-fvNfVKMvJTo { 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-fvNfVKMvJTo { 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-fvNfVKMvJTo { 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-fvNfVKMvJTo { 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-L1tlLdAzH { min-height: 50px;position: relative;z-index: auto; } @media (max-width: 639px) { .gp-component-id-L1tlLdAzH { min-height: 50px;position: relative;z-index: auto;padding-bottom: 16px;padding-top: 16px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-L1tlLdAzH { min-height: 50px;position: relative;z-index: auto;padding-bottom: 16px;padding-top: 16px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-L1tlLdAzH { min-height: 50px;position: relative;z-index: auto;padding-bottom: 16px;padding-top: 16px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-L1tlLdAzH { min-height: 50px;position: relative;z-index: auto;padding-bottom: 16px;padding-top: 16px; } } @media (min-width: 1200px) { .gp-component-id-L1tlLdAzH { min-height: 50px;position: relative;z-index: auto;padding-bottom: 16px;padding-top: 16px; } } .gp-component-id-4WQO1qVmE { width: 100%; } @media (max-width: 639px) { .gp-component-id-4WQO1qVmE { width: 100%;overflow-wrap: break-word;max-width: 100%;min-width: 100%;height: auto; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-4WQO1qVmE { width: 100%;overflow-wrap: break-word;max-width: 100%;min-width: 100%;height: auto; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-4WQO1qVmE { width: 100%;overflow-wrap: break-word;max-width: 100%;min-width: 100%;height: auto; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-4WQO1qVmE { width: 100%;overflow-wrap: break-word;max-width: 100%;min-width: 100%;height: auto; } } @media (min-width: 1200px) { .gp-component-id-4WQO1qVmE { width: 100%;overflow-wrap: break-word;max-width: 100%;min-width: 100%;height: auto; } } .gp-component-id-uz_ZIBK928 { padding-left: 8px;width: 100%;padding-right: 8px; } @media (max-width: 639px) { .gp-component-id-uz_ZIBK928 { padding-left: 8px;width: 100%;padding-right: 8px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-uz_ZIBK928 { padding-left: 8px;width: 100%;padding-right: 8px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-uz_ZIBK928 { padding-left: 8px;width: 100%;padding-right: 8px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-uz_ZIBK928 { padding-left: 8px;width: 100%;padding-right: 8px; } } @media (min-width: 1200px) { .gp-component-id-uz_ZIBK928 { padding-left: 8px;width: 100%;padding-right: 8px; } } .gp-component-id-obVlF6xTp { margin-left: -8px;margin-right: -8px; } @media (max-width: 639px) { .gp-component-id-obVlF6xTp { margin-left: -8px;margin-right: -8px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-obVlF6xTp { margin-left: -8px;margin-right: -8px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-obVlF6xTp { margin-left: -8px;margin-right: -8px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-obVlF6xTp { margin-left: -8px;margin-right: -8px; } } @media (min-width: 1200px) { .gp-component-id-obVlF6xTp { margin-left: -8px;margin-right: -8px; } } .gp-component-id-YKoITIBcX { padding-left: 8px;width: 100%;padding-right: 8px; } @media (max-width: 639px) { .gp-component-id-YKoITIBcX { padding-left: 8px;width: 100%;padding-right: 8px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-YKoITIBcX { padding-left: 8px;width: 100%;padding-right: 8px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-YKoITIBcX { padding-left: 8px;width: 100%;padding-right: 8px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-YKoITIBcX { padding-left: 8px;width: 100%;padding-right: 8px; } } @media (min-width: 1200px) { .gp-component-id-YKoITIBcX { padding-left: 8px;width: 100%;padding-right: 8px; } } @media (max-width: 639px) { .gp-component-id-0iU0dj6WLj { display: flex;align-items: center;justify-content: center;flex-direction: column;max-width: 600px;height: 100%;width: 100%;padding-right: 0px;margin-top: 0px;margin-right: 0px;margin-left: 0px;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-0iU0dj6WLj { display: flex;align-items: center;justify-content: center;flex-direction: column;max-width: 100%;height: auto;width: auto;padding-right: 0px;margin-top: 0px;margin-right: 0px;margin-left: 0px;border-bottom-width: 0px;border-top-width: 0px;border-right-width: 0px;border-left-width: 0px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-0iU0dj6WLj { display: flex;align-items: center;justify-content: flex-start;flex-direction: column;max-width: 100%;min-width: 100%;height: auto;width: 100%;padding-right: 0px;margin-top: 0px;margin-right: 28px;margin-left: 1px;border-bottom-width: 0px;border-top-width: 0px;border-right-width: 0px;border-left-width: 0px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-0iU0dj6WLj { display: flex;align-items: center;justify-content: center;flex-direction: column;max-width: 600px;height: 100%;width: 100%;padding-right: 0px;margin-top: 0px;margin-right: 0px;margin-left: 1px;border-bottom-width: 0px;border-top-width: 0px;border-right-width: 0px;border-left-width: 0px; } } @media (min-width: 1200px) { .gp-component-id-0iU0dj6WLj { display: flex;align-items: center;justify-content: center;flex-direction: column;max-width: 600px;height: 100%;width: 100%;padding-right: 0px;margin-top: 0px;margin-right: 0px;margin-left: 1px;border-bottom-width: 0px;border-top-width: 0px;border-right-width: 0px;border-left-width: 0px; } } .gp-component-id-AykXwHCTNK { flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%; } @media (max-width: 639px) { .gp-component-id-AykXwHCTNK { 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-AykXwHCTNK { 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-AykXwHCTNK { flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 50%; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-AykXwHCTNK { flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 50%; } } @media (min-width: 1200px) { .gp-component-id-AykXwHCTNK { flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 50%; } } .gp-component-id-ybTiA0aWX { margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;overflow-wrap: break-word; } @media (max-width: 639px) { .gp-component-id-ybTiA0aWX { margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;overflow-wrap: break-word;color: rgb(255, 255, 255); } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-ybTiA0aWX { margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;overflow-wrap: break-word;color: rgb(255, 255, 255); } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-ybTiA0aWX { margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;overflow-wrap: break-word;color: rgb(255, 255, 255); } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-ybTiA0aWX { margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;overflow-wrap: break-word;color: rgb(255, 255, 255); } } @media (min-width: 1200px) { .gp-component-id-ybTiA0aWX { margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;overflow-wrap: break-word;color: rgb(255, 255, 255); } } .gp-component-id-NKIdUoBJLp { flex-direction: column;display: flex; } @media (max-width: 639px) { .gp-component-id-NKIdUoBJLp { flex-direction: column;display: flex; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-NKIdUoBJLp { flex-direction: column;display: flex; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-NKIdUoBJLp { flex-direction: column;display: flex; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-NKIdUoBJLp { flex-direction: column;display: flex; } } @media (min-width: 1200px) { .gp-component-id-NKIdUoBJLp { flex-direction: column;display: flex; } } @media (max-width: 639px) { .gp-component-id-IynaBa4Z8v { color: rgb(249, 247, 247); } .gp-component-id-IynaBa4Z8v:hover,.gp-component-id-IynaBa4Z8v.gp-hover { color: rgb(26, 69, 120); } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-IynaBa4Z8v { color: rgb(249, 247, 247); } .gp-component-id-IynaBa4Z8v:hover,.gp-component-id-IynaBa4Z8v.gp-hover { color: rgb(26, 69, 120); } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-IynaBa4Z8v { color: rgb(249, 247, 247); } .gp-component-id-IynaBa4Z8v:hover,.gp-component-id-IynaBa4Z8v.gp-hover { color: rgb(26, 69, 120); } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-IynaBa4Z8v { color: rgb(249, 247, 247); } .gp-component-id-IynaBa4Z8v:hover,.gp-component-id-IynaBa4Z8v.gp-hover { color: rgb(26, 69, 120); } } @media (min-width: 1200px) { .gp-component-id-IynaBa4Z8v { color: rgb(249, 247, 247); } .gp-component-id-IynaBa4Z8v:hover,.gp-component-id-IynaBa4Z8v.gp-hover { color: rgb(26, 69, 120); } } .gp-component-id-Q6ZOS0tBSQ { 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-Q6ZOS0tBSQ { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;align-items: center;cursor: pointer;background-color: rgb(63, 114, 175);color: rgb(3, 23, 48);font-family: "Open Sans" !important;font-weight: 600 !important;font-size: 20px !important;display: inline-flex;padding-bottom: 16px;padding-top: 16px;padding-right: 30px;padding-left: 30px;margin-top: 30px;margin-left: 0px;border-bottom-right-radius: 7px;border-bottom-left-radius: 7px;border-top-right-radius: 7px;border-top-left-radius: 7px;text-align: center; } .gp-component-id-Q6ZOS0tBSQ:hover,.gp-component-id-Q6ZOS0tBSQ.gp-hover { font-size: 18px !important;background-color: rgb(255, 255, 255);border-bottom-color: rgb(63, 114, 175);border-top-color: rgb(63, 114, 175);border-right-color: rgb(63, 114, 175);border-left-color: rgb(63, 114, 175);border-bottom-width: 2px;border-top-width: 2px;border-right-width: 2px;border-left-width: 2px;color: rgb(63, 115, 175); } .gp-component-id-Q6ZOS0tBSQ:active,.gp-component-id-Q6ZOS0tBSQ.gp-active { background-color: rgb(49, 114, 175); } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-Q6ZOS0tBSQ { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;align-items: center;cursor: pointer;background-color: rgb(63, 114, 175);color: rgb(3, 23, 48);font-family: "Open Sans" !important;font-weight: 600 !important;font-size: 20px !important;display: inline-flex;padding-bottom: 16px;padding-top: 16px;padding-right: 40px;padding-left: 40px;margin-top: 30px;margin-left: 0px;border-bottom-right-radius: 7px;border-bottom-left-radius: 7px;border-top-right-radius: 7px;border-top-left-radius: 7px;text-align: center; } .gp-component-id-Q6ZOS0tBSQ:hover,.gp-component-id-Q6ZOS0tBSQ.gp-hover { font-size: 18px !important;background-color: rgb(255, 255, 255);border-bottom-color: rgb(63, 114, 175);border-top-color: rgb(63, 114, 175);border-right-color: rgb(63, 114, 175);border-left-color: rgb(63, 114, 175);border-bottom-width: 2px;border-top-width: 2px;border-right-width: 2px;border-left-width: 2px;color: rgb(63, 115, 175); } .gp-component-id-Q6ZOS0tBSQ:active,.gp-component-id-Q6ZOS0tBSQ.gp-active { background-color: rgb(49, 114, 175); } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-Q6ZOS0tBSQ { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;align-items: center;cursor: pointer;background-color: rgb(63, 114, 175);color: rgb(3, 23, 48);font-family: "Open Sans" !important;font-weight: 600 !important;font-size: 20px !important;display: inline-flex;padding-bottom: 16px;padding-top: 16px;padding-right: 40px;padding-left: 40px;margin-top: 30px;margin-left: 0px;border-bottom-right-radius: 7px;border-bottom-left-radius: 7px;border-top-right-radius: 7px;border-top-left-radius: 7px;text-align: center; } .gp-component-id-Q6ZOS0tBSQ:hover,.gp-component-id-Q6ZOS0tBSQ.gp-hover { font-size: 18px !important;background-color: rgb(255, 255, 255);border-bottom-color: rgb(63, 114, 175);border-top-color: rgb(63, 114, 175);border-right-color: rgb(63, 114, 175);border-left-color: rgb(63, 114, 175);border-bottom-width: 2px;border-top-width: 2px;border-right-width: 2px;border-left-width: 2px;color: rgb(63, 115, 175); } .gp-component-id-Q6ZOS0tBSQ:active,.gp-component-id-Q6ZOS0tBSQ.gp-active { background-color: rgb(49, 114, 175); } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-Q6ZOS0tBSQ { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;align-items: center;cursor: pointer;background-color: rgb(63, 114, 175);color: rgb(3, 23, 48);font-family: "Open Sans" !important;font-weight: 600 !important;font-size: 20px !important;display: inline-flex;padding-bottom: 16px;padding-top: 16px;padding-right: 40px;padding-left: 40px;margin-top: 30px;margin-left: 0px;border-bottom-right-radius: 7px;border-bottom-left-radius: 7px;border-top-right-radius: 7px;border-top-left-radius: 7px;text-align: center; } .gp-component-id-Q6ZOS0tBSQ:hover,.gp-component-id-Q6ZOS0tBSQ.gp-hover { font-size: 18px !important;background-color: rgb(255, 255, 255);border-bottom-color: rgb(63, 114, 175);border-top-color: rgb(63, 114, 175);border-right-color: rgb(63, 114, 175);border-left-color: rgb(63, 114, 175);border-bottom-width: 2px;border-top-width: 2px;border-right-width: 2px;border-left-width: 2px;color: rgb(63, 115, 175); } .gp-component-id-Q6ZOS0tBSQ:active,.gp-component-id-Q6ZOS0tBSQ.gp-active { background-color: rgb(49, 114, 175); } } @media (min-width: 1200px) { .gp-component-id-Q6ZOS0tBSQ { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;align-items: center;cursor: pointer;background-color: rgb(63, 114, 175);color: rgb(3, 23, 48);font-family: "Open Sans" !important;font-weight: 600 !important;font-size: 20px !important;display: inline-flex;padding-bottom: 16px;padding-top: 16px;padding-right: 40px;padding-left: 40px;margin-top: 30px;margin-left: 0px;border-bottom-right-radius: 7px;border-bottom-left-radius: 7px;border-top-right-radius: 7px;border-top-left-radius: 7px;text-align: center; } .gp-component-id-Q6ZOS0tBSQ:hover,.gp-component-id-Q6ZOS0tBSQ.gp-hover { font-size: 18px !important;background-color: rgb(255, 255, 255);border-bottom-color: rgb(63, 114, 175);border-top-color: rgb(63, 114, 175);border-right-color: rgb(63, 114, 175);border-left-color: rgb(63, 114, 175);border-bottom-width: 2px;border-top-width: 2px;border-right-width: 2px;border-left-width: 2px;color: rgb(63, 115, 175); } .gp-component-id-Q6ZOS0tBSQ:active,.gp-component-id-Q6ZOS0tBSQ.gp-active { background-color: rgb(49, 114, 175); } } .gp-component-id-e3fNWQL8DW { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word; } @media (max-width: 639px) { .gp-component-id-e3fNWQL8DW { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-family: "Open Sans" !important;font-size: 20px !important;line-height: 1.5;color: rgb(255, 255, 255); } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-e3fNWQL8DW { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-family: "Open Sans" !important;font-size: 20px !important;line-height: 1.5;color: rgb(255, 255, 255); } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-e3fNWQL8DW { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-family: "Open Sans" !important;font-size: 15px !important;line-height: 1.5;color: rgb(255, 255, 255); } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-e3fNWQL8DW { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-family: "Open Sans" !important;font-size: 20px !important;line-height: 1.5;color: rgb(255, 255, 255); } } @media (min-width: 1200px) { .gp-component-id-e3fNWQL8DW { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-family: "Open Sans" !important;font-size: 20px !important;line-height: 1.5;color: rgb(255, 255, 255); } } .gp-component-id-BEcin2BhMT { flex-direction: column;display: flex; } @media (max-width: 639px) { .gp-component-id-BEcin2BhMT { flex-direction: column;display: flex; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-BEcin2BhMT { flex-direction: column;display: flex; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-BEcin2BhMT { flex-direction: column;display: flex; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-BEcin2BhMT { flex-direction: column;display: flex; } } @media (min-width: 1200px) { .gp-component-id-BEcin2BhMT { flex-direction: column;display: flex; } } .gp-component-id-kQYZwHXYRw { 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-kQYZwHXYRw { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-weight: 700 !important;font-size: 34px !important;font-family: "Work Sans" !important;padding-bottom: 10px;line-height: 1.25;text-align: left;color: rgb(255, 255, 255); } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-kQYZwHXYRw { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-weight: 700 !important;font-size: 38px !important;font-family: "Work Sans" !important;padding-bottom: 10px;line-height: 1.25;text-align: left;color: rgb(255, 255, 255); } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-kQYZwHXYRw { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-weight: 700 !important;font-size: 23px !important;font-family: "Work Sans" !important;padding-bottom: 10px;line-height: 1.25;text-align: left;color: rgb(255, 255, 255); } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-kQYZwHXYRw { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-weight: 700 !important;font-size: 26px !important;font-family: "Work Sans" !important;padding-bottom: 10px;line-height: 1.25;text-align: left;color: rgb(255, 255, 255); } } @media (min-width: 1200px) { .gp-component-id-kQYZwHXYRw { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-weight: 700 !important;font-size: 38px !important;font-family: "Work Sans" !important;padding-bottom: 10px;line-height: 1.25;text-align: left;color: rgb(255, 255, 255); } } .gp-component-id-ZBL0tiYotT { flex-direction: column;display: flex; } @media (max-width: 639px) { .gp-component-id-ZBL0tiYotT { flex-direction: column;display: flex; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-ZBL0tiYotT { flex-direction: column;display: flex; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-ZBL0tiYotT { flex-direction: column;display: flex; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-ZBL0tiYotT { flex-direction: column;display: flex; } } @media (min-width: 1200px) { .gp-component-id-ZBL0tiYotT { flex-direction: column;display: flex; } } @media (max-width: 639px) { .gp-component-id-vqBgShcSl9 { width: 100%; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-vqBgShcSl9 { width: 100%; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-vqBgShcSl9 { width: 100%; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-vqBgShcSl9 { width: 100%; } } @media (min-width: 1200px) { .gp-component-id-vqBgShcSl9 { width: 100%; } } @media (max-width: 639px) { .gp-component-id-YNmvwPU8x9 { display: flex;justify-content: center;flex-direction: column;height: 100%;width: 100%;padding-bottom: 50px;padding-top: 50px;padding-right: 20px;padding-left: 20px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-YNmvwPU8x9 { display: flex;justify-content: center;flex-direction: column;height: 100%;width: 100%;padding-bottom: 50px;padding-top: 50px;padding-right: 50px;padding-left: 50px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-YNmvwPU8x9 { display: flex;justify-content: center;flex-direction: column;height: 100%;width: 100%;padding-bottom: 50px;padding-top: 50px;padding-right: 50px;padding-left: 50px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-YNmvwPU8x9 { display: flex;justify-content: center;flex-direction: column;height: 100%;width: 100%;padding-bottom: 50px;padding-top: 50px;padding-right: 50px;padding-left: 50px; } } @media (min-width: 1200px) { .gp-component-id-YNmvwPU8x9 { display: flex;justify-content: center;flex-direction: column;height: 100%;width: 100%;padding-bottom: 50px;padding-top: 50px;padding-right: 50px;padding-left: 50px; } } .gp-component-id-RsfDfTK4to { flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%; } @media (max-width: 639px) { .gp-component-id-RsfDfTK4to { 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-RsfDfTK4to { 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-RsfDfTK4to { flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 50%; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-RsfDfTK4to { flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 50%; } } @media (min-width: 1200px) { .gp-component-id-RsfDfTK4to { flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 50%; } } .gp-component-id-NzXMjiw2gz { flex-wrap: wrap;margin-right: -8px;margin-left: -8px; } @media (max-width: 639px) { .gp-component-id-NzXMjiw2gz { flex-wrap: wrap;margin-right: -8px;margin-left: -8px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-NzXMjiw2gz { flex-wrap: wrap;margin-right: -8px;margin-left: -8px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-NzXMjiw2gz { flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-NzXMjiw2gz { flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex; } } @media (min-width: 1200px) { .gp-component-id-NzXMjiw2gz { flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex; } } @media (max-width: 639px) { .gp-component-id-IhcdXWPM0S { width: 100%;padding-right: 0px;padding-left: 0px;background-color: rgb(26, 69, 120);border-bottom-right-radius: 20px;border-bottom-left-radius: 20px;border-top-right-radius: 20px;border-top-left-radius: 20px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-IhcdXWPM0S { width: 100%;padding-right: 0px;padding-left: 0px;background-color: rgb(26, 69, 120);border-bottom-right-radius: 20px;border-bottom-left-radius: 20px;border-top-right-radius: 20px;border-top-left-radius: 20px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-IhcdXWPM0S { width: 100%;padding-right: 0px;padding-left: 0px;background-color: rgb(26, 69, 120);border-bottom-right-radius: 20px;border-bottom-left-radius: 20px;border-top-right-radius: 20px;border-top-left-radius: 20px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-IhcdXWPM0S { width: 100%;padding-right: 0px;padding-left: 0px;background-color: rgb(26, 69, 120);border-bottom-right-radius: 20px;border-bottom-left-radius: 20px;border-top-right-radius: 20px;border-top-left-radius: 20px; } } @media (min-width: 1200px) { .gp-component-id-IhcdXWPM0S { width: 100%;padding-right: 0px;padding-left: 0px;background-color: rgb(26, 69, 120);border-bottom-right-radius: 20px;border-bottom-left-radius: 20px;border-top-right-radius: 20px;border-top-left-radius: 20px; } } .gp-component-id-x3OZ46T5d5 { z-index: 15;position: relative; } @media (max-width: 639px) { .gp-component-id-x3OZ46T5d5 { z-index: 15;position: relative;width: 100%;margin-right: auto;margin-left: auto; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-x3OZ46T5d5 { 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-x3OZ46T5d5 { z-index: 15;position: relative;max-width: 768px;width: 100%;margin-right: auto;margin-left: auto; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-x3OZ46T5d5 { z-index: 15;position: relative;max-width: 992px;width: 100%;margin-right: auto;margin-left: auto; } } @media (min-width: 1200px) { .gp-component-id-x3OZ46T5d5 { z-index: 15;position: relative;max-width: 1200px;width: 100%;margin-right: auto;margin-left: auto; } } .gp-component-id-Wv9PmMyKY.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-Wv9PmMyKY.gp-component > [data-section-overlay] { right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;z-index: 14;background-color: rgb(63, 114, 175); } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-Wv9PmMyKY.gp-component > [data-section-overlay] { right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;z-index: 14;background-color: rgb(63, 114, 175); } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-Wv9PmMyKY.gp-component > [data-section-overlay] { right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;z-index: 14;background-color: rgb(63, 114, 175); } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-Wv9PmMyKY.gp-component > [data-section-overlay] { right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;z-index: 14;background-color: rgb(63, 114, 175); } } @media (min-width: 1200px) { .gp-component-id-Wv9PmMyKY.gp-component > [data-section-overlay] { right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;z-index: 14;background-color: rgb(63, 114, 175); } } .gp-component-id-96oY3gRGuY { 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-96oY3gRGuY { 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-96oY3gRGuY { 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-96oY3gRGuY { 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-96oY3gRGuY { 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-96oY3gRGuY { 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-Wv9PmMyKY { min-height: 50px;position: relative;z-index: auto; } @media (max-width: 639px) { .gp-component-id-Wv9PmMyKY { min-height: 50px;position: relative;z-index: auto;padding-bottom: 120px;padding-top: 120px;padding-right: 20px;padding-left: 20px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-Wv9PmMyKY { min-height: 50px;position: relative;z-index: auto;padding-bottom: 120px;padding-top: 120px;padding-right: 20px;padding-left: 20px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-Wv9PmMyKY { min-height: 50px;position: relative;z-index: auto;padding-bottom: 120px;padding-top: 120px;padding-right: 20px;padding-left: 20px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-Wv9PmMyKY { min-height: 50px;position: relative;z-index: auto;padding-bottom: 120px;padding-top: 120px;padding-right: 20px;padding-left: 20px; } } @media (min-width: 1200px) { .gp-component-id-Wv9PmMyKY { min-height: 50px;position: relative;z-index: auto;padding-bottom: 120px;padding-top: 120px;padding-right: 20px;padding-left: 20px; } } .gp-component-id-BqVEOLO0jrJ { flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 100%;padding-right: 8px;padding-left: 8px; } @media (max-width: 639px) { .gp-component-id-BqVEOLO0jrJ { flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 100%;padding-right: 8px;padding-left: 8px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-BqVEOLO0jrJ { flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 100%;padding-right: 8px;padding-left: 8px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-BqVEOLO0jrJ { flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 25%;padding-right: 8px;padding-left: 8px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-BqVEOLO0jrJ { flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 25%;padding-right: 8px;padding-left: 8px; } } @media (min-width: 1200px) { .gp-component-id-BqVEOLO0jrJ { flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 25%;padding-right: 8px;padding-left: 8px; } } @media (max-width: 639px) { .gp-component-id-dBua0GkDYD { color: rgb(249, 247, 247); } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-dBua0GkDYD { color: rgb(249, 247, 247); } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-dBua0GkDYD { color: rgb(249, 247, 247); } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-dBua0GkDYD { color: rgb(249, 247, 247); } } @media (min-width: 1200px) { .gp-component-id-dBua0GkDYD { color: rgb(249, 247, 247); } } .gp-component-id-bMNg4W4YqV { 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-bMNg4W4YqV { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;align-items: center;cursor: pointer;background-color: rgb(49, 114, 175);color: rgb(255, 255, 255);font-family: "Open Sans" !important;font-weight: 600 !important;font-size: 20px !important;display: inline-flex;padding-bottom: 16px;padding-top: 16px;padding-right: 30px;padding-left: 30px;margin-top: 30px;margin-left: 0px;border-bottom-right-radius: 7px;border-bottom-left-radius: 7px;border-top-right-radius: 7px;border-top-left-radius: 7px;text-align: center; } .gp-component-id-bMNg4W4YqV:hover,.gp-component-id-bMNg4W4YqV.gp-hover { background-color: rgb(17, 45, 78); } .gp-component-id-bMNg4W4YqV:active,.gp-component-id-bMNg4W4YqV.gp-active { background-color: rgb(49, 114, 175); } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-bMNg4W4YqV { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;align-items: center;cursor: pointer;background-color: rgb(49, 114, 175);color: rgb(255, 255, 255);font-family: "Open Sans" !important;font-weight: 600 !important;font-size: 20px !important;display: inline-flex;padding-bottom: 16px;padding-top: 16px;padding-right: 40px;padding-left: 40px;margin-top: 30px;margin-left: 0px;border-bottom-right-radius: 7px;border-bottom-left-radius: 7px;border-top-right-radius: 7px;border-top-left-radius: 7px;text-align: center; } .gp-component-id-bMNg4W4YqV:hover,.gp-component-id-bMNg4W4YqV.gp-hover { background-color: rgb(17, 45, 78); } .gp-component-id-bMNg4W4YqV:active,.gp-component-id-bMNg4W4YqV.gp-active { background-color: rgb(49, 114, 175); } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-bMNg4W4YqV { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;align-items: center;cursor: pointer;background-color: rgb(49, 114, 175);color: rgb(255, 255, 255);font-family: "Open Sans" !important;font-weight: 600 !important;font-size: 20px !important;display: inline-flex;padding-bottom: 16px;padding-top: 16px;padding-right: 40px;padding-left: 40px;margin-top: 30px;margin-left: 0px;border-bottom-right-radius: 7px;border-bottom-left-radius: 7px;border-top-right-radius: 7px;border-top-left-radius: 7px;text-align: center; } .gp-component-id-bMNg4W4YqV:hover,.gp-component-id-bMNg4W4YqV.gp-hover { background-color: rgb(17, 45, 78); } .gp-component-id-bMNg4W4YqV:active,.gp-component-id-bMNg4W4YqV.gp-active { background-color: rgb(49, 114, 175); } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-bMNg4W4YqV { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;align-items: center;cursor: pointer;background-color: rgb(49, 114, 175);color: rgb(255, 255, 255);font-family: "Open Sans" !important;font-weight: 600 !important;font-size: 20px !important;display: inline-flex;padding-bottom: 16px;padding-top: 16px;padding-right: 40px;padding-left: 40px;margin-top: 30px;margin-left: 0px;border-bottom-right-radius: 7px;border-bottom-left-radius: 7px;border-top-right-radius: 7px;border-top-left-radius: 7px;text-align: center; } .gp-component-id-bMNg4W4YqV:hover,.gp-component-id-bMNg4W4YqV.gp-hover { background-color: rgb(17, 45, 78); } .gp-component-id-bMNg4W4YqV:active,.gp-component-id-bMNg4W4YqV.gp-active { background-color: rgb(49, 114, 175); } } @media (min-width: 1200px) { .gp-component-id-bMNg4W4YqV { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;align-items: center;cursor: pointer;background-color: rgb(49, 114, 175);color: rgb(255, 255, 255);font-family: "Open Sans" !important;font-weight: 600 !important;font-size: 20px !important;display: inline-flex;padding-bottom: 16px;padding-top: 16px;padding-right: 40px;padding-left: 40px;margin-top: 30px;margin-left: 0px;border-bottom-right-radius: 7px;border-bottom-left-radius: 7px;border-top-right-radius: 7px;border-top-left-radius: 7px;text-align: center; } .gp-component-id-bMNg4W4YqV:hover,.gp-component-id-bMNg4W4YqV.gp-hover { background-color: rgb(17, 45, 78); } .gp-component-id-bMNg4W4YqV:active,.gp-component-id-bMNg4W4YqV.gp-active { background-color: rgb(49, 114, 175); } } .gp-component-id-cJDKTc_NyQx { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word; } @media (max-width: 639px) { .gp-component-id-cJDKTc_NyQx { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;line-height: 1.5;text-align: center;font-size: 18px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-cJDKTc_NyQx { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;line-height: 1.5;text-align: center;font-size: 18px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-cJDKTc_NyQx { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;line-height: 1.5;text-align: center;font-size: 18px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-cJDKTc_NyQx { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;line-height: 1.5;text-align: left;font-size: 18px; } } @media (min-width: 1200px) { .gp-component-id-cJDKTc_NyQx { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;line-height: 1.5;text-align: left;font-size: 18px; } } .gp-component-id-9zf6C1qqmn2 { flex-direction: column;display: flex; } @media (max-width: 639px) { .gp-component-id-9zf6C1qqmn2 { flex-direction: column;display: flex; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-9zf6C1qqmn2 { flex-direction: column;display: flex; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-9zf6C1qqmn2 { flex-direction: column;display: flex; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-9zf6C1qqmn2 { flex-direction: column;display: flex; } } @media (min-width: 1200px) { .gp-component-id-9zf6C1qqmn2 { flex-direction: column;display: flex; } } .gp-component-id-Uo1f1d0VBL { font-weight: bolder;overflow-wrap: break-word; } @media (max-width: 639px) { .gp-component-id-Uo1f1d0VBL { font-weight: bolder;overflow-wrap: break-word; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-Uo1f1d0VBL { font-weight: bolder;overflow-wrap: break-word; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-Uo1f1d0VBL { font-weight: bolder;overflow-wrap: break-word; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-Uo1f1d0VBL { font-weight: bolder;overflow-wrap: break-word; } } @media (min-width: 1200px) { .gp-component-id-Uo1f1d0VBL { font-weight: bolder;overflow-wrap: break-word; } } .gp-component-id-UhKzzvzLcl3 { 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-UhKzzvzLcl3 { margin-left: 0px;margin-bottom: 12px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-weight: inherit;font-size: 20px;cursor: text;box-sizing: border-box; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-UhKzzvzLcl3 { margin-left: 0px;margin-bottom: 12px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-weight: inherit;font-size: 20px;cursor: text;box-sizing: border-box; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-UhKzzvzLcl3 { margin-left: 0px;margin-bottom: 12px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-weight: inherit;font-size: 20px;cursor: text;box-sizing: border-box; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-UhKzzvzLcl3 { margin-left: 0px;margin-bottom: 12px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-weight: inherit;font-size: 20px;cursor: text;box-sizing: border-box; } } @media (min-width: 1200px) { .gp-component-id-UhKzzvzLcl3 { margin-left: 0px;margin-bottom: 12px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-weight: inherit;font-size: 20px;cursor: text;box-sizing: border-box; } } .gp-component-id-n6FQiO0gZ7L { flex-direction: column;display: flex; } @media (max-width: 639px) { .gp-component-id-n6FQiO0gZ7L { flex-direction: column;display: flex; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-n6FQiO0gZ7L { flex-direction: column;display: flex; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-n6FQiO0gZ7L { flex-direction: column;display: flex; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-n6FQiO0gZ7L { flex-direction: column;display: flex; } } @media (min-width: 1200px) { .gp-component-id-n6FQiO0gZ7L { flex-direction: column;display: flex; } } @media (max-width: 639px) { .gp-component-id-bfxOUnEGvVm { min-height: 120px;display: flex;align-items: center;justify-content: center;flex-direction: column;height: 100%;width: 100%;padding-bottom: 16px;padding-top: 16px;padding-right: 20px;padding-left: 20px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-bfxOUnEGvVm { min-height: 120px;display: flex;align-items: center;justify-content: center;flex-direction: column;height: 100%;width: 100%;padding-bottom: 16px;padding-top: 16px;padding-right: 20px;padding-left: 20px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-bfxOUnEGvVm { min-height: 120px;display: flex;align-items: center;justify-content: center;flex-direction: column;height: 100%;width: 100%;padding-bottom: 16px;padding-top: 16px;padding-right: 20px;padding-left: 20px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-bfxOUnEGvVm { min-height: 120px;display: flex;align-items: flex-start;justify-content: center;flex-direction: column;height: 100%;width: 100%;padding-bottom: 16px;padding-top: 16px;padding-right: 0px;padding-left: 0px; } } @media (min-width: 1200px) { .gp-component-id-bfxOUnEGvVm { min-height: 120px;display: flex;align-items: flex-start;justify-content: center;flex-direction: column;height: 100%;width: 100%;padding-bottom: 16px;padding-top: 16px;padding-right: 0px;padding-left: 0px; } } .gp-component-id-fSynqXzFOMy { flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 100%;padding-right: 8px;padding-left: 8px; } @media (max-width: 639px) { .gp-component-id-fSynqXzFOMy { flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 100%;padding-right: 8px;padding-left: 8px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-fSynqXzFOMy { flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 100%;padding-right: 8px;padding-left: 8px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-fSynqXzFOMy { flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 50%;padding-right: 8px;padding-left: 8px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-fSynqXzFOMy { flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 50%;padding-right: 8px;padding-left: 8px; } } @media (min-width: 1200px) { .gp-component-id-fSynqXzFOMy { flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 50%;padding-right: 8px;padding-left: 8px; } } .gp-component-id-CYWR7j6H1 { 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-CYWR7j6H1 { border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100px;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-CYWR7j6H1 { border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100px;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-CYWR7j6H1 { border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100px;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-CYWR7j6H1 { border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100px;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center; } } @media (min-width: 1200px) { .gp-component-id-CYWR7j6H1 { border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100px;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-Zx8k0ZU6vIh { min-height: 120px;display: flex;align-items: center;justify-content: center;flex-direction: column;height: 145.99px;width: 100%; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-Zx8k0ZU6vIh { min-height: 120px;display: flex;align-items: center;justify-content: center;flex-direction: column;height: 145.99px;width: 100%; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-Zx8k0ZU6vIh { min-height: 120px;display: flex;align-items: center;justify-content: center;flex-direction: column;height: 145.99px;width: 100%; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-Zx8k0ZU6vIh { min-height: 120px;display: flex;align-items: center;justify-content: center;flex-direction: column;height: 145.99px;width: 100%; } } @media (min-width: 1200px) { .gp-component-id-Zx8k0ZU6vIh { min-height: 120px;display: flex;align-items: center;justify-content: center;flex-direction: column;height: 145.99px;width: 100%; } } .gp-component-id-eygOysKR4fu { flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 100%;padding-right: 8px;padding-left: 8px; } @media (max-width: 639px) { .gp-component-id-eygOysKR4fu { flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 100%;padding-right: 8px;padding-left: 8px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-eygOysKR4fu { flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 100%;padding-right: 8px;padding-left: 8px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-eygOysKR4fu { flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 25%;padding-right: 8px;padding-left: 8px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-eygOysKR4fu { flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 25%;padding-right: 8px;padding-left: 8px; } } @media (min-width: 1200px) { .gp-component-id-eygOysKR4fu { flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 25%;padding-right: 8px;padding-left: 8px; } } .gp-component-id-yua8WcxeCcz { flex-wrap: wrap;margin-right: -8px;margin-left: -8px; } @media (max-width: 639px) { .gp-component-id-yua8WcxeCcz { flex-wrap: wrap;margin-right: -8px;margin-left: -8px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-yua8WcxeCcz { flex-wrap: wrap;margin-right: -8px;margin-left: -8px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-yua8WcxeCcz { flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-yua8WcxeCcz { flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex; } } @media (min-width: 1200px) { .gp-component-id-yua8WcxeCcz { flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex; } } @media (max-width: 639px) { .gp-component-id-FnBXQTy2iO9 { width: 100%;padding-bottom: 12px;padding-top: 12px;padding-right: 0px;padding-left: 8px;margin-bottom: 20px;box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;background-color: rgb(255, 255, 255);border-bottom-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-top-right-radius: 5.6px;border-top-left-radius: 5.6px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-FnBXQTy2iO9 { width: 100%;padding-bottom: 12px;padding-top: 12px;padding-right: 0px;padding-left: 8px;margin-bottom: 20px;box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;background-color: rgb(255, 255, 255);border-bottom-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-top-right-radius: 5.6px;border-top-left-radius: 5.6px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-FnBXQTy2iO9 { width: 100%;padding-bottom: 12px;padding-top: 12px;padding-right: 0px;padding-left: 8px;margin-bottom: 20px;box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;background-color: rgb(255, 255, 255);border-bottom-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-top-right-radius: 5.6px;border-top-left-radius: 5.6px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-FnBXQTy2iO9 { width: 85.71%;padding-bottom: 12px;padding-top: 12px;padding-right: 0px;padding-left: 8px;margin-bottom: 20px;box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;background-color: rgb(255, 255, 255);border-bottom-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-top-right-radius: 5.6px;border-top-left-radius: 5.6px; } } @media (min-width: 1200px) { .gp-component-id-FnBXQTy2iO9 { width: 85.71%;padding-bottom: 12px;padding-top: 12px;padding-right: 0px;padding-left: 8px;margin-bottom: 20px;box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;background-color: rgb(255, 255, 255);border-bottom-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-top-right-radius: 5.6px;border-top-left-radius: 5.6px; } } @media (max-width: 639px) { .gp-component-id-4pyjewb_Yp7 { height: 100%;width: 100%; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-4pyjewb_Yp7 { height: 100%;width: 100%; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-4pyjewb_Yp7 { height: 100%;width: 100%; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-4pyjewb_Yp7 { height: 100%;width: 100%; } } @media (min-width: 1200px) { .gp-component-id-4pyjewb_Yp7 { height: 100%;width: 100%; } } .gp-component-id-6mj6avZmTw9 { flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px; } @media (max-width: 639px) { .gp-component-id-6mj6avZmTw9 { flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-6mj6avZmTw9 { flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-6mj6avZmTw9 { flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-6mj6avZmTw9 { flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px; } } @media (min-width: 1200px) { .gp-component-id-6mj6avZmTw9 { flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px; } } .gp-component-id-TWUTQr0A2b { padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto; } @media (max-width: 639px) { .gp-component-id-TWUTQr0A2b { padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-TWUTQr0A2b { padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-TWUTQr0A2b { padding-left: 8px;padding-right: 8px;width: 25%;flex-grow: 0;flex-shrink: 0;flex-basis: auto; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-TWUTQr0A2b { padding-left: 8px;padding-right: 8px;width: 25%;flex-grow: 0;flex-shrink: 0;flex-basis: auto; } } @media (min-width: 1200px) { .gp-component-id-TWUTQr0A2b { padding-left: 8px;padding-right: 8px;width: 25%;flex-grow: 0;flex-shrink: 0;flex-basis: auto; } } @media (max-width: 639px) { .gp-component-id-6yozA_9uTW { color: rgb(249, 247, 247); } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-6yozA_9uTW { color: rgb(249, 247, 247); } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-6yozA_9uTW { color: rgb(249, 247, 247); } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-6yozA_9uTW { color: rgb(249, 247, 247); } } @media (min-width: 1200px) { .gp-component-id-6yozA_9uTW { color: rgb(249, 247, 247); } } .gp-component-id-r8BdGsYU8l { 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-r8BdGsYU8l { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;align-items: center;cursor: pointer;background-color: rgb(49, 114, 175);color: rgb(255, 255, 255);font-family: "Open Sans" !important;font-weight: 600 !important;font-size: 20px !important;display: inline-flex;padding-bottom: 16px;padding-top: 16px;padding-right: 30px;padding-left: 30px;margin-top: 30px;margin-left: 0px;border-bottom-right-radius: 7px;border-bottom-left-radius: 7px;border-top-right-radius: 7px;border-top-left-radius: 7px;text-align: center; } .gp-component-id-r8BdGsYU8l:hover,.gp-component-id-r8BdGsYU8l.gp-hover { background-color: rgb(17, 45, 78); } .gp-component-id-r8BdGsYU8l:active,.gp-component-id-r8BdGsYU8l.gp-active { background-color: rgb(49, 114, 175); } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-r8BdGsYU8l { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;align-items: center;cursor: pointer;background-color: rgb(49, 114, 175);color: rgb(255, 255, 255);font-family: "Open Sans" !important;font-weight: 600 !important;font-size: 20px !important;display: inline-flex;padding-bottom: 16px;padding-top: 16px;padding-right: 40px;padding-left: 40px;margin-top: 30px;margin-left: 0px;border-bottom-right-radius: 7px;border-bottom-left-radius: 7px;border-top-right-radius: 7px;border-top-left-radius: 7px;text-align: center; } .gp-component-id-r8BdGsYU8l:hover,.gp-component-id-r8BdGsYU8l.gp-hover { background-color: rgb(17, 45, 78); } .gp-component-id-r8BdGsYU8l:active,.gp-component-id-r8BdGsYU8l.gp-active { background-color: rgb(49, 114, 175); } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-r8BdGsYU8l { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;align-items: center;cursor: pointer;background-color: rgb(49, 114, 175);color: rgb(255, 255, 255);font-family: "Open Sans" !important;font-weight: 600 !important;font-size: 20px !important;display: inline-flex;padding-bottom: 16px;padding-top: 16px;padding-right: 40px;padding-left: 40px;margin-top: 30px;margin-left: 0px;border-bottom-right-radius: 7px;border-bottom-left-radius: 7px;border-top-right-radius: 7px;border-top-left-radius: 7px;text-align: center; } .gp-component-id-r8BdGsYU8l:hover,.gp-component-id-r8BdGsYU8l.gp-hover { background-color: rgb(17, 45, 78); } .gp-component-id-r8BdGsYU8l:active,.gp-component-id-r8BdGsYU8l.gp-active { background-color: rgb(49, 114, 175); } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-r8BdGsYU8l { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;align-items: center;cursor: pointer;background-color: rgb(49, 114, 175);color: rgb(255, 255, 255);font-family: "Open Sans" !important;font-weight: 600 !important;font-size: 20px !important;display: inline-flex;padding-bottom: 16px;padding-top: 16px;padding-right: 40px;padding-left: 40px;margin-top: 30px;margin-left: 0px;border-bottom-right-radius: 7px;border-bottom-left-radius: 7px;border-top-right-radius: 7px;border-top-left-radius: 7px;text-align: center; } .gp-component-id-r8BdGsYU8l:hover,.gp-component-id-r8BdGsYU8l.gp-hover { background-color: rgb(17, 45, 78); } .gp-component-id-r8BdGsYU8l:active,.gp-component-id-r8BdGsYU8l.gp-active { background-color: rgb(49, 114, 175); } } @media (min-width: 1200px) { .gp-component-id-r8BdGsYU8l { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;align-items: center;cursor: pointer;background-color: rgb(49, 114, 175);color: rgb(255, 255, 255);font-family: "Open Sans" !important;font-weight: 600 !important;font-size: 20px !important;display: inline-flex;padding-bottom: 16px;padding-top: 16px;padding-right: 40px;padding-left: 40px;margin-top: 30px;margin-left: 0px;border-bottom-right-radius: 7px;border-bottom-left-radius: 7px;border-top-right-radius: 7px;border-top-left-radius: 7px;text-align: center; } .gp-component-id-r8BdGsYU8l:hover,.gp-component-id-r8BdGsYU8l.gp-hover { background-color: rgb(17, 45, 78); } .gp-component-id-r8BdGsYU8l:active,.gp-component-id-r8BdGsYU8l.gp-active { background-color: rgb(49, 114, 175); } } .gp-component-id-ynZWGak3eA { overflow-wrap: break-word; } @media (max-width: 639px) { .gp-component-id-ynZWGak3eA { overflow-wrap: break-word; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-ynZWGak3eA { overflow-wrap: break-word; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-ynZWGak3eA { overflow-wrap: break-word; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-ynZWGak3eA { overflow-wrap: break-word; } } @media (min-width: 1200px) { .gp-component-id-ynZWGak3eA { overflow-wrap: break-word; } } .gp-component-id-cfUm1r01xJ { overflow-wrap: break-word; } @media (max-width: 639px) { .gp-component-id-cfUm1r01xJ { overflow-wrap: break-word; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-cfUm1r01xJ { overflow-wrap: break-word; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-cfUm1r01xJ { overflow-wrap: break-word; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-cfUm1r01xJ { overflow-wrap: break-word; } } @media (min-width: 1200px) { .gp-component-id-cfUm1r01xJ { overflow-wrap: break-word; } } .gp-component-id-pi7z6ssXRz { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word; } @media (max-width: 639px) { .gp-component-id-pi7z6ssXRz { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;line-height: 1.5;text-align: center;font-size: 18px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-pi7z6ssXRz { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;line-height: 1.5;text-align: center;font-size: 18px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-pi7z6ssXRz { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;line-height: 1.5;text-align: center;font-size: 18px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-pi7z6ssXRz { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;line-height: 1.5;text-align: left;font-size: 18px; } } @media (min-width: 1200px) { .gp-component-id-pi7z6ssXRz { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;line-height: 1.5;text-align: left;font-size: 18px; } } .gp-component-id-Uv_kc6em4s { flex-direction: column;display: flex; } @media (max-width: 639px) { .gp-component-id-Uv_kc6em4s { flex-direction: column;display: flex; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-Uv_kc6em4s { flex-direction: column;display: flex; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-Uv_kc6em4s { flex-direction: column;display: flex; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-Uv_kc6em4s { flex-direction: column;display: flex; } } @media (min-width: 1200px) { .gp-component-id-Uv_kc6em4s { flex-direction: column;display: flex; } } .gp-component-id-0D228a9aui { font-weight: bolder;overflow-wrap: break-word; } @media (max-width: 639px) { .gp-component-id-0D228a9aui { font-weight: bolder;overflow-wrap: break-word; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-0D228a9aui { font-weight: bolder;overflow-wrap: break-word; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-0D228a9aui { font-weight: bolder;overflow-wrap: break-word; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-0D228a9aui { font-weight: bolder;overflow-wrap: break-word; } } @media (min-width: 1200px) { .gp-component-id-0D228a9aui { font-weight: bolder;overflow-wrap: break-word; } } .gp-component-id-E3OUMf_bmb { 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-E3OUMf_bmb { margin-left: 0px;margin-bottom: 12px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-weight: inherit;font-size: 20px;box-sizing: border-box;cursor: text; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-E3OUMf_bmb { margin-left: 0px;margin-bottom: 12px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-weight: inherit;font-size: 20px;box-sizing: border-box;cursor: text; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-E3OUMf_bmb { margin-left: 0px;margin-bottom: 12px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-weight: inherit;font-size: 20px;box-sizing: border-box;cursor: text; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-E3OUMf_bmb { margin-left: 0px;margin-bottom: 12px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-weight: inherit;font-size: 20px;box-sizing: border-box;cursor: text; } } @media (min-width: 1200px) { .gp-component-id-E3OUMf_bmb { margin-left: 0px;margin-bottom: 12px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-weight: inherit;font-size: 20px;box-sizing: border-box;cursor: text; } } .gp-component-id-zxfQO1j04P { flex-direction: column;display: flex; } @media (max-width: 639px) { .gp-component-id-zxfQO1j04P { flex-direction: column;display: flex; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-zxfQO1j04P { flex-direction: column;display: flex; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-zxfQO1j04P { flex-direction: column;display: flex; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-zxfQO1j04P { flex-direction: column;display: flex; } } @media (min-width: 1200px) { .gp-component-id-zxfQO1j04P { flex-direction: column;display: flex; } } @media (max-width: 639px) { .gp-component-id-u0X7DIsvJV { min-height: 120px;display: flex;align-items: center;justify-content: center;flex-direction: column;height: 100%;width: 100%;padding-bottom: 16px;padding-top: 16px;padding-right: 20px;padding-left: 20px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-u0X7DIsvJV { min-height: 120px;display: flex;align-items: center;justify-content: center;flex-direction: column;height: 100%;width: 100%;padding-bottom: 16px;padding-top: 16px;padding-right: 20px;padding-left: 20px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-u0X7DIsvJV { min-height: 120px;display: flex;align-items: center;justify-content: center;flex-direction: column;height: 100%;width: 100%;padding-bottom: 16px;padding-top: 16px;padding-right: 20px;padding-left: 20px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-u0X7DIsvJV { min-height: 120px;display: flex;align-items: flex-start;justify-content: center;flex-direction: column;height: 100%;width: 100%;padding-bottom: 16px;padding-top: 16px;padding-right: 0px;padding-left: 0px; } } @media (min-width: 1200px) { .gp-component-id-u0X7DIsvJV { min-height: 120px;display: flex;align-items: flex-start;justify-content: center;flex-direction: column;height: 100%;width: 100%;padding-bottom: 16px;padding-top: 16px;padding-right: 0px;padding-left: 0px; } } .gp-component-id-APImqeiGPD { padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto; } @media (max-width: 639px) { .gp-component-id-APImqeiGPD { padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-APImqeiGPD { padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-APImqeiGPD { padding-left: 8px;padding-right: 8px;width: 50%;flex-grow: 0;flex-shrink: 0;flex-basis: auto; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-APImqeiGPD { padding-left: 8px;padding-right: 8px;width: 50%;flex-grow: 0;flex-shrink: 0;flex-basis: auto; } } @media (min-width: 1200px) { .gp-component-id-APImqeiGPD { padding-left: 8px;padding-right: 8px;width: 50%;flex-grow: 0;flex-shrink: 0;flex-basis: auto; } } .gp-component-id-8v1Emb0Fy { 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-8v1Emb0Fy { border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100px;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;width: 316px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-8v1Emb0Fy { border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100px;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;width: 316px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-8v1Emb0Fy { border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100px;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;width: 316px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-8v1Emb0Fy { border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100px;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;width: 316px; } } @media (min-width: 1200px) { .gp-component-id-8v1Emb0Fy { border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100px;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;width: 316px; } } @media (max-width: 639px) { .gp-component-id-l0F1cQ9TU2 { min-height: 120px;display: flex;align-items: center;justify-content: center;flex-direction: column;height: 145.99px;width: 100%; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-l0F1cQ9TU2 { min-height: 120px;display: flex;align-items: center;justify-content: center;flex-direction: column;height: 145.99px;width: 100%; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-l0F1cQ9TU2 { min-height: 120px;display: flex;align-items: center;justify-content: center;flex-direction: column;height: 145.99px;width: 100%; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-l0F1cQ9TU2 { min-height: 120px;display: flex;align-items: center;justify-content: center;flex-direction: column;height: 145.99px;width: 100%; } } @media (min-width: 1200px) { .gp-component-id-l0F1cQ9TU2 { min-height: 120px;display: flex;align-items: center;justify-content: center;flex-direction: column;height: 145.99px;width: 100%; } } .gp-component-id-LvMfpXmXVf { padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto; } @media (max-width: 639px) { .gp-component-id-LvMfpXmXVf { padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-LvMfpXmXVf { padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-LvMfpXmXVf { padding-left: 8px;padding-right: 8px;width: 25%;flex-grow: 0;flex-shrink: 0;flex-basis: auto; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-LvMfpXmXVf { padding-left: 8px;padding-right: 8px;width: 25%;flex-grow: 0;flex-shrink: 0;flex-basis: auto; } } @media (min-width: 1200px) { .gp-component-id-LvMfpXmXVf { padding-left: 8px;padding-right: 8px;width: 25%;flex-grow: 0;flex-shrink: 0;flex-basis: auto; } } .gp-component-id-Zq7Z8gPvk1 { margin-left: -8px;margin-right: -8px;flex-wrap: wrap; } @media (max-width: 639px) { .gp-component-id-Zq7Z8gPvk1 { margin-left: -8px;margin-right: -8px;flex-wrap: wrap; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-Zq7Z8gPvk1 { margin-left: -8px;margin-right: -8px;flex-wrap: wrap; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-Zq7Z8gPvk1 { margin-left: -8px;margin-right: -8px;flex-wrap: wrap;display: flex; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-Zq7Z8gPvk1 { margin-left: -8px;margin-right: -8px;flex-wrap: wrap;display: flex; } } @media (min-width: 1200px) { .gp-component-id-Zq7Z8gPvk1 { margin-left: -8px;margin-right: -8px;flex-wrap: wrap;display: flex; } } @media (max-width: 639px) { .gp-component-id-VCW0GxqdgW { width: 100%;padding-bottom: 12px;padding-top: 12px;padding-right: 0px;padding-left: 8px;margin-bottom: 20px;box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;background-color: rgb(255, 255, 255);border-bottom-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-top-right-radius: 5.6px;border-top-left-radius: 5.6px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-VCW0GxqdgW { width: 100%;padding-bottom: 12px;padding-top: 12px;padding-right: 0px;padding-left: 8px;margin-bottom: 20px;box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;background-color: rgb(255, 255, 255);border-bottom-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-top-right-radius: 5.6px;border-top-left-radius: 5.6px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-VCW0GxqdgW { width: 100%;padding-bottom: 12px;padding-top: 12px;padding-right: 0px;padding-left: 8px;margin-bottom: 20px;box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;background-color: rgb(255, 255, 255);border-bottom-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-top-right-radius: 5.6px;border-top-left-radius: 5.6px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-VCW0GxqdgW { width: 85.71%;padding-bottom: 12px;padding-top: 12px;padding-right: 0px;padding-left: 8px;margin-bottom: 20px;box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;background-color: rgb(255, 255, 255);border-bottom-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-top-right-radius: 5.6px;border-top-left-radius: 5.6px; } } @media (min-width: 1200px) { .gp-component-id-VCW0GxqdgW { width: 85.71%;padding-bottom: 12px;padding-top: 12px;padding-right: 0px;padding-left: 8px;margin-bottom: 20px;box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;background-color: rgb(255, 255, 255);border-bottom-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-top-right-radius: 5.6px;border-top-left-radius: 5.6px; } } @media (max-width: 639px) { .gp-component-id-gUX4Qbq4OF { height: 100%;width: 100%; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-gUX4Qbq4OF { height: 100%;width: 100%; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-gUX4Qbq4OF { height: 100%;width: 100%; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-gUX4Qbq4OF { height: 100%;width: 100%; } } @media (min-width: 1200px) { .gp-component-id-gUX4Qbq4OF { height: 100%;width: 100%; } } .gp-component-id-4r2qUa62wo { flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px; } @media (max-width: 639px) { .gp-component-id-4r2qUa62wo { flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-4r2qUa62wo { flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-4r2qUa62wo { flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-4r2qUa62wo { flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px; } } @media (min-width: 1200px) { .gp-component-id-4r2qUa62wo { flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px; } } .gp-component-id-2G0ka2MMy3 { flex-wrap: wrap;margin-right: -8px;margin-left: -8px; } @media (max-width: 639px) { .gp-component-id-2G0ka2MMy3 { flex-wrap: wrap;margin-right: -8px;margin-left: -8px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-2G0ka2MMy3 { flex-wrap: wrap;margin-right: -8px;margin-left: -8px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-2G0ka2MMy3 { flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-2G0ka2MMy3 { flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex; } } @media (min-width: 1200px) { .gp-component-id-2G0ka2MMy3 { flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex; } } @media (max-width: 639px) { .gp-component-id-bcUZoAc6z { width: 100%;padding-right: 8px;padding-left: 8px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-bcUZoAc6z { width: 100%;padding-right: 8px;padding-left: 8px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-bcUZoAc6z { width: 100%;padding-right: 8px;padding-left: 8px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-bcUZoAc6z { width: 100%;padding-right: 8px;padding-left: 8px; } } @media (min-width: 1200px) { .gp-component-id-bcUZoAc6z { width: 100%;padding-right: 8px;padding-left: 8px; } } .gp-component-id-7Z5mw_NRGq7 { padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto; } @media (max-width: 639px) { .gp-component-id-7Z5mw_NRGq7 { padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-7Z5mw_NRGq7 { padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-7Z5mw_NRGq7 { padding-left: 8px;padding-right: 8px;width: 25%;flex-grow: 0;flex-shrink: 0;flex-basis: auto; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-7Z5mw_NRGq7 { padding-left: 8px;padding-right: 8px;width: 25%;flex-grow: 0;flex-shrink: 0;flex-basis: auto; } } @media (min-width: 1200px) { .gp-component-id-7Z5mw_NRGq7 { padding-left: 8px;padding-right: 8px;width: 25%;flex-grow: 0;flex-shrink: 0;flex-basis: auto; } } @media (max-width: 639px) { .gp-component-id-OKrudv3Tti { color: rgb(249, 247, 247); } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-OKrudv3Tti { color: rgb(249, 247, 247); } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-OKrudv3Tti { color: rgb(249, 247, 247); } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-OKrudv3Tti { color: rgb(249, 247, 247); } } @media (min-width: 1200px) { .gp-component-id-OKrudv3Tti { color: rgb(249, 247, 247); } } .gp-component-id-S2BEj4dbZZ { 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-S2BEj4dbZZ { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;align-items: center;cursor: pointer;background-color: rgb(49, 114, 175);color: rgb(255, 255, 255);font-family: "Open Sans" !important;font-weight: 600 !important;font-size: 20px !important;display: inline-flex;padding-bottom: 16px;padding-top: 16px;padding-right: 30px;padding-left: 30px;margin-top: 30px;margin-left: 0px;border-bottom-right-radius: 7px;border-bottom-left-radius: 7px;border-top-right-radius: 7px;border-top-left-radius: 7px;text-align: center; } .gp-component-id-S2BEj4dbZZ:hover,.gp-component-id-S2BEj4dbZZ.gp-hover { background-color: rgb(17, 45, 78); } .gp-component-id-S2BEj4dbZZ:active,.gp-component-id-S2BEj4dbZZ.gp-active { background-color: rgb(49, 114, 175); } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-S2BEj4dbZZ { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;align-items: center;cursor: pointer;background-color: rgb(49, 114, 175);color: rgb(255, 255, 255);font-family: "Open Sans" !important;font-weight: 600 !important;font-size: 20px !important;display: inline-flex;padding-bottom: 16px;padding-top: 16px;padding-right: 40px;padding-left: 40px;margin-top: 30px;margin-left: 0px;border-bottom-right-radius: 7px;border-bottom-left-radius: 7px;border-top-right-radius: 7px;border-top-left-radius: 7px;text-align: center; } .gp-component-id-S2BEj4dbZZ:hover,.gp-component-id-S2BEj4dbZZ.gp-hover { background-color: rgb(17, 45, 78); } .gp-component-id-S2BEj4dbZZ:active,.gp-component-id-S2BEj4dbZZ.gp-active { background-color: rgb(49, 114, 175); } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-S2BEj4dbZZ { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;align-items: center;cursor: pointer;background-color: rgb(49, 114, 175);color: rgb(255, 255, 255);font-family: "Open Sans" !important;font-weight: 600 !important;font-size: 20px !important;display: inline-flex;padding-bottom: 16px;padding-top: 16px;padding-right: 40px;padding-left: 40px;margin-top: 30px;margin-left: 0px;border-bottom-right-radius: 7px;border-bottom-left-radius: 7px;border-top-right-radius: 7px;border-top-left-radius: 7px;text-align: center; } .gp-component-id-S2BEj4dbZZ:hover,.gp-component-id-S2BEj4dbZZ.gp-hover { background-color: rgb(17, 45, 78); } .gp-component-id-S2BEj4dbZZ:active,.gp-component-id-S2BEj4dbZZ.gp-active { background-color: rgb(49, 114, 175); } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-S2BEj4dbZZ { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;align-items: center;cursor: pointer;background-color: rgb(49, 114, 175);color: rgb(255, 255, 255);font-family: "Open Sans" !important;font-weight: 600 !important;font-size: 20px !important;display: inline-flex;padding-bottom: 16px;padding-top: 16px;padding-right: 40px;padding-left: 40px;margin-top: 30px;margin-left: 0px;border-bottom-right-radius: 7px;border-bottom-left-radius: 7px;border-top-right-radius: 7px;border-top-left-radius: 7px;text-align: center; } .gp-component-id-S2BEj4dbZZ:hover,.gp-component-id-S2BEj4dbZZ.gp-hover { background-color: rgb(17, 45, 78); } .gp-component-id-S2BEj4dbZZ:active,.gp-component-id-S2BEj4dbZZ.gp-active { background-color: rgb(49, 114, 175); } } @media (min-width: 1200px) { .gp-component-id-S2BEj4dbZZ { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;align-items: center;cursor: pointer;background-color: rgb(49, 114, 175);color: rgb(255, 255, 255);font-family: "Open Sans" !important;font-weight: 600 !important;font-size: 20px !important;display: inline-flex;padding-bottom: 16px;padding-top: 16px;padding-right: 40px;padding-left: 40px;margin-top: 30px;margin-left: 0px;border-bottom-right-radius: 7px;border-bottom-left-radius: 7px;border-top-right-radius: 7px;border-top-left-radius: 7px;text-align: center; } .gp-component-id-S2BEj4dbZZ:hover,.gp-component-id-S2BEj4dbZZ.gp-hover { background-color: rgb(17, 45, 78); } .gp-component-id-S2BEj4dbZZ:active,.gp-component-id-S2BEj4dbZZ.gp-active { background-color: rgb(49, 114, 175); } } .gp-component-id-GuEjtxCmf9y { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word; } @media (max-width: 639px) { .gp-component-id-GuEjtxCmf9y { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;line-height: 1.5;text-align: center;font-size: 18px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-GuEjtxCmf9y { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;line-height: 1.5;text-align: center;font-size: 18px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-GuEjtxCmf9y { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;line-height: 1.5;text-align: center;font-size: 18px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-GuEjtxCmf9y { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;line-height: 1.5;text-align: left;font-size: 18px; } } @media (min-width: 1200px) { .gp-component-id-GuEjtxCmf9y { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;line-height: 1.5;text-align: left;font-size: 18px; } } .gp-component-id-0Huuwyv3POB { flex-direction: column;display: flex; } @media (max-width: 639px) { .gp-component-id-0Huuwyv3POB { flex-direction: column;display: flex; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-0Huuwyv3POB { flex-direction: column;display: flex; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-0Huuwyv3POB { flex-direction: column;display: flex; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-0Huuwyv3POB { flex-direction: column;display: flex; } } @media (min-width: 1200px) { .gp-component-id-0Huuwyv3POB { flex-direction: column;display: flex; } } .gp-component-id-16bAieLafA { font-weight: bolder;overflow-wrap: break-word; } @media (max-width: 639px) { .gp-component-id-16bAieLafA { font-weight: bolder;overflow-wrap: break-word; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-16bAieLafA { font-weight: bolder;overflow-wrap: break-word; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-16bAieLafA { font-weight: bolder;overflow-wrap: break-word; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-16bAieLafA { font-weight: bolder;overflow-wrap: break-word; } } @media (min-width: 1200px) { .gp-component-id-16bAieLafA { font-weight: bolder;overflow-wrap: break-word; } } .gp-component-id-L434O5302C { 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-L434O5302C { margin-left: 0px;margin-bottom: 12px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-weight: inherit;font-size: 20px;box-sizing: border-box;cursor: text; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-L434O5302C { margin-left: 0px;margin-bottom: 12px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-weight: inherit;font-size: 20px;box-sizing: border-box;cursor: text; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-L434O5302C { margin-left: 0px;margin-bottom: 12px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-weight: inherit;font-size: 20px;box-sizing: border-box;cursor: text; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-L434O5302C { margin-left: 0px;margin-bottom: 12px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-weight: inherit;font-size: 20px;box-sizing: border-box;cursor: text; } } @media (min-width: 1200px) { .gp-component-id-L434O5302C { margin-left: 0px;margin-bottom: 12px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-weight: inherit;font-size: 20px;box-sizing: border-box;cursor: text; } } .gp-component-id-EZLUxaVXx { flex-direction: column;display: flex; } @media (max-width: 639px) { .gp-component-id-EZLUxaVXx { flex-direction: column;display: flex; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-EZLUxaVXx { flex-direction: column;display: flex; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-EZLUxaVXx { flex-direction: column;display: flex; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-EZLUxaVXx { flex-direction: column;display: flex; } } @media (min-width: 1200px) { .gp-component-id-EZLUxaVXx { flex-direction: column;display: flex; } } .gp-component-id-x0uKjMP6ACV { padding-left: 20px;padding-right: 20px;padding-top: 16px;padding-bottom: 16px;width: 100%;height: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;min-height: 120px; } @media (max-width: 639px) { .gp-component-id-x0uKjMP6ACV { padding-left: 20px;padding-right: 20px;padding-top: 16px;padding-bottom: 16px;width: 100%;height: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;min-height: 120px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-x0uKjMP6ACV { padding-left: 20px;padding-right: 20px;padding-top: 16px;padding-bottom: 16px;width: 100%;height: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;min-height: 120px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-x0uKjMP6ACV { padding-left: 20px;padding-right: 20px;padding-top: 16px;padding-bottom: 16px;width: 100%;height: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;min-height: 120px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-x0uKjMP6ACV { padding-left: 0px;padding-right: 0px;padding-top: 16px;padding-bottom: 16px;width: 100%;height: 100%;flex-direction: column;justify-content: center;align-items: flex-start;display: flex;min-height: 120px; } } @media (min-width: 1200px) { .gp-component-id-x0uKjMP6ACV { padding-left: 0px;padding-right: 0px;padding-top: 16px;padding-bottom: 16px;width: 100%;height: 100%;flex-direction: column;justify-content: center;align-items: flex-start;display: flex;min-height: 120px; } } .gp-component-id-2lZwbS7bNXU { padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto; } @media (max-width: 639px) { .gp-component-id-2lZwbS7bNXU { padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-2lZwbS7bNXU { padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-2lZwbS7bNXU { padding-left: 8px;padding-right: 8px;width: 50%;flex-grow: 0;flex-shrink: 0;flex-basis: auto; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-2lZwbS7bNXU { padding-left: 8px;padding-right: 8px;width: 50%;flex-grow: 0;flex-shrink: 0;flex-basis: auto; } } @media (min-width: 1200px) { .gp-component-id-2lZwbS7bNXU { padding-left: 8px;padding-right: 8px;width: 50%;flex-grow: 0;flex-shrink: 0;flex-basis: auto; } } .gp-component-id-PFpwxUSlN { 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-PFpwxUSlN { border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100px;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-PFpwxUSlN { border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100px;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-PFpwxUSlN { border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100px;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-PFpwxUSlN { border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100px;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center; } } @media (min-width: 1200px) { .gp-component-id-PFpwxUSlN { border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100px;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center; } } .gp-component-id-7PMTlfs20eF { width: 100%;height: 145.99px;flex-direction: column;justify-content: center;align-items: center;display: flex;min-height: 120px; } @media (max-width: 639px) { .gp-component-id-7PMTlfs20eF { width: 100%;height: 145.99px;flex-direction: column;justify-content: center;align-items: center;display: flex;min-height: 120px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-7PMTlfs20eF { width: 100%;height: 145.99px;flex-direction: column;justify-content: center;align-items: center;display: flex;min-height: 120px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-7PMTlfs20eF { width: 100%;height: 145.99px;flex-direction: column;justify-content: center;align-items: center;display: flex;min-height: 120px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-7PMTlfs20eF { width: 100%;height: 145.99px;flex-direction: column;justify-content: center;align-items: center;display: flex;min-height: 120px; } } @media (min-width: 1200px) { .gp-component-id-7PMTlfs20eF { width: 100%;height: 145.99px;flex-direction: column;justify-content: center;align-items: center;display: flex;min-height: 120px; } } .gp-component-id-6dQVB5BWcxt { padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto; } @media (max-width: 639px) { .gp-component-id-6dQVB5BWcxt { padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-6dQVB5BWcxt { padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-6dQVB5BWcxt { padding-left: 8px;padding-right: 8px;width: 25%;flex-grow: 0;flex-shrink: 0;flex-basis: auto; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-6dQVB5BWcxt { padding-left: 8px;padding-right: 8px;width: 25%;flex-grow: 0;flex-shrink: 0;flex-basis: auto; } } @media (min-width: 1200px) { .gp-component-id-6dQVB5BWcxt { padding-left: 8px;padding-right: 8px;width: 25%;flex-grow: 0;flex-shrink: 0;flex-basis: auto; } } .gp-component-id-_RKcOouATgA { margin-left: -8px;margin-right: -8px;flex-wrap: wrap; } @media (max-width: 639px) { .gp-component-id-_RKcOouATgA { margin-left: -8px;margin-right: -8px;flex-wrap: wrap; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-_RKcOouATgA { margin-left: -8px;margin-right: -8px;flex-wrap: wrap; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-_RKcOouATgA { margin-left: -8px;margin-right: -8px;flex-wrap: wrap;display: flex; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-_RKcOouATgA { margin-left: -8px;margin-right: -8px;flex-wrap: wrap;display: flex; } } @media (min-width: 1200px) { .gp-component-id-_RKcOouATgA { margin-left: -8px;margin-right: -8px;flex-wrap: wrap;display: flex; } } @media (max-width: 639px) { .gp-component-id-6rjxDIEmWdR { width: 100%;padding-bottom: 12px;padding-top: 12px;padding-right: 0px;padding-left: 8px;margin-bottom: 20px;box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;background-color: rgb(255, 255, 255);border-bottom-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-top-right-radius: 5.6px;border-top-left-radius: 5.6px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-6rjxDIEmWdR { width: 100%;padding-bottom: 12px;padding-top: 12px;padding-right: 0px;padding-left: 8px;margin-bottom: 20px;box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;background-color: rgb(255, 255, 255);border-bottom-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-top-right-radius: 5.6px;border-top-left-radius: 5.6px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-6rjxDIEmWdR { width: 100%;padding-bottom: 12px;padding-top: 12px;padding-right: 0px;padding-left: 8px;margin-bottom: 20px;box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;background-color: rgb(255, 255, 255);border-bottom-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-top-right-radius: 5.6px;border-top-left-radius: 5.6px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-6rjxDIEmWdR { width: 85.71%;padding-bottom: 12px;padding-top: 12px;padding-right: 0px;padding-left: 8px;margin-bottom: 20px;box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;background-color: rgb(255, 255, 255);border-bottom-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-top-right-radius: 5.6px;border-top-left-radius: 5.6px; } } @media (min-width: 1200px) { .gp-component-id-6rjxDIEmWdR { width: 85.71%;padding-bottom: 12px;padding-top: 12px;padding-right: 0px;padding-left: 8px;margin-bottom: 20px;box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;background-color: rgb(255, 255, 255);border-bottom-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-top-right-radius: 5.6px;border-top-left-radius: 5.6px; } } .gp-component-id-_ohd10192u { width: 100%;height: 100%; } @media (max-width: 639px) { .gp-component-id-_ohd10192u { width: 100%;height: 100%; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-_ohd10192u { width: 100%;height: 100%; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-_ohd10192u { width: 100%;height: 100%; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-_ohd10192u { width: 100%;height: 100%; } } @media (min-width: 1200px) { .gp-component-id-_ohd10192u { width: 100%;height: 100%; } } .gp-component-id-Fnr6lD_tit { padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto; } @media (max-width: 639px) { .gp-component-id-Fnr6lD_tit { 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-Fnr6lD_tit { 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-Fnr6lD_tit { 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-Fnr6lD_tit { padding-left: 8px;width: 50%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto; } } @media (min-width: 1200px) { .gp-component-id-Fnr6lD_tit { padding-left: 8px;width: 50%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto; } } .gp-component-id-aHHAgUOZH2 { flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 100%;padding-right: 8px;padding-left: 8px; } @media (max-width: 639px) { .gp-component-id-aHHAgUOZH2 { flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 100%;padding-right: 8px;padding-left: 8px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-aHHAgUOZH2 { flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 100%;padding-right: 8px;padding-left: 8px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-aHHAgUOZH2 { flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 25%;padding-right: 8px;padding-left: 8px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-aHHAgUOZH2 { flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 25%;padding-right: 8px;padding-left: 8px; } } @media (min-width: 1200px) { .gp-component-id-aHHAgUOZH2 { flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 25%;padding-right: 8px;padding-left: 8px; } } @media (max-width: 639px) { .gp-component-id-KUQ4_NpMIo { color: rgb(249, 247, 247); } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-KUQ4_NpMIo { color: rgb(249, 247, 247); } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-KUQ4_NpMIo { color: rgb(249, 247, 247); } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-KUQ4_NpMIo { color: rgb(249, 247, 247); } } @media (min-width: 1200px) { .gp-component-id-KUQ4_NpMIo { color: rgb(249, 247, 247); } } .gp-component-id-Z08FvOJcTA { 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-Z08FvOJcTA { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;align-items: center;cursor: pointer;background-color: rgb(49, 114, 175);color: rgb(255, 255, 255);font-family: "Open Sans" !important;font-weight: 600 !important;font-size: 20px !important;display: inline-flex;padding-bottom: 16px;padding-top: 16px;padding-right: 30px;padding-left: 30px;margin-top: 30px;margin-left: 0px;border-bottom-right-radius: 7px;border-bottom-left-radius: 7px;border-top-right-radius: 7px;border-top-left-radius: 7px;text-align: center; } .gp-component-id-Z08FvOJcTA:hover,.gp-component-id-Z08FvOJcTA.gp-hover { background-color: rgb(17, 45, 78); } .gp-component-id-Z08FvOJcTA:active,.gp-component-id-Z08FvOJcTA.gp-active { background-color: rgb(49, 114, 175); } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-Z08FvOJcTA { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;align-items: center;cursor: pointer;background-color: rgb(49, 114, 175);color: rgb(255, 255, 255);font-family: "Open Sans" !important;font-weight: 600 !important;font-size: 20px !important;display: inline-flex;padding-bottom: 16px;padding-top: 16px;padding-right: 40px;padding-left: 40px;margin-top: 30px;margin-left: 0px;border-bottom-right-radius: 7px;border-bottom-left-radius: 7px;border-top-right-radius: 7px;border-top-left-radius: 7px;text-align: center; } .gp-component-id-Z08FvOJcTA:hover,.gp-component-id-Z08FvOJcTA.gp-hover { background-color: rgb(17, 45, 78); } .gp-component-id-Z08FvOJcTA:active,.gp-component-id-Z08FvOJcTA.gp-active { background-color: rgb(49, 114, 175); } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-Z08FvOJcTA { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;align-items: center;cursor: pointer;background-color: rgb(49, 114, 175);color: rgb(255, 255, 255);font-family: "Open Sans" !important;font-weight: 600 !important;font-size: 20px !important;display: inline-flex;padding-bottom: 16px;padding-top: 16px;padding-right: 40px;padding-left: 40px;margin-top: 30px;margin-left: 0px;border-bottom-right-radius: 7px;border-bottom-left-radius: 7px;border-top-right-radius: 7px;border-top-left-radius: 7px;text-align: center; } .gp-component-id-Z08FvOJcTA:hover,.gp-component-id-Z08FvOJcTA.gp-hover { background-color: rgb(17, 45, 78); } .gp-component-id-Z08FvOJcTA:active,.gp-component-id-Z08FvOJcTA.gp-active { background-color: rgb(49, 114, 175); } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-Z08FvOJcTA { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;align-items: center;cursor: pointer;background-color: rgb(49, 114, 175);color: rgb(255, 255, 255);font-family: "Open Sans" !important;font-weight: 600 !important;font-size: 20px !important;display: inline-flex;padding-bottom: 16px;padding-top: 16px;padding-right: 40px;padding-left: 40px;margin-top: 30px;margin-left: 0px;border-bottom-right-radius: 7px;border-bottom-left-radius: 7px;border-top-right-radius: 7px;border-top-left-radius: 7px;text-align: center; } .gp-component-id-Z08FvOJcTA:hover,.gp-component-id-Z08FvOJcTA.gp-hover { background-color: rgb(17, 45, 78); } .gp-component-id-Z08FvOJcTA:active,.gp-component-id-Z08FvOJcTA.gp-active { background-color: rgb(49, 114, 175); } } @media (min-width: 1200px) { .gp-component-id-Z08FvOJcTA { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;align-items: center;cursor: pointer;background-color: rgb(49, 114, 175);color: rgb(255, 255, 255);font-family: "Open Sans" !important;font-weight: 600 !important;font-size: 20px !important;display: inline-flex;padding-bottom: 16px;padding-top: 16px;padding-right: 40px;padding-left: 40px;margin-top: 30px;margin-left: 0px;border-bottom-right-radius: 7px;border-bottom-left-radius: 7px;border-top-right-radius: 7px;border-top-left-radius: 7px;text-align: center; } .gp-component-id-Z08FvOJcTA:hover,.gp-component-id-Z08FvOJcTA.gp-hover { background-color: rgb(17, 45, 78); } .gp-component-id-Z08FvOJcTA:active,.gp-component-id-Z08FvOJcTA.gp-active { background-color: rgb(49, 114, 175); } } .gp-component-id-phxh8elo9y { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word; } @media (max-width: 639px) { .gp-component-id-phxh8elo9y { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;line-height: 1.5;text-align: center;font-size: 18px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-phxh8elo9y { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;line-height: 1.5;text-align: center;font-size: 18px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-phxh8elo9y { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;line-height: 1.5;text-align: center;font-size: 18px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-phxh8elo9y { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;line-height: 1.5;text-align: left;font-size: 18px; } } @media (min-width: 1200px) { .gp-component-id-phxh8elo9y { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;line-height: 1.5;text-align: left;font-size: 18px; } } .gp-component-id-1va9q8ObE_ { flex-direction: column;display: flex; } @media (max-width: 639px) { .gp-component-id-1va9q8ObE_ { flex-direction: column;display: flex; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-1va9q8ObE_ { flex-direction: column;display: flex; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-1va9q8ObE_ { flex-direction: column;display: flex; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-1va9q8ObE_ { flex-direction: column;display: flex; } } @media (min-width: 1200px) { .gp-component-id-1va9q8ObE_ { flex-direction: column;display: flex; } } .gp-component-id-1TBLKCPTiz { font-weight: bolder;overflow-wrap: break-word; } @media (max-width: 639px) { .gp-component-id-1TBLKCPTiz { font-weight: bolder;overflow-wrap: break-word; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-1TBLKCPTiz { font-weight: bolder;overflow-wrap: break-word; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-1TBLKCPTiz { font-weight: bolder;overflow-wrap: break-word; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-1TBLKCPTiz { font-weight: bolder;overflow-wrap: break-word; } } @media (min-width: 1200px) { .gp-component-id-1TBLKCPTiz { font-weight: bolder;overflow-wrap: break-word; } } .gp-component-id-uuoIRWJ_VB { 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-uuoIRWJ_VB { margin-left: 0px;margin-bottom: 12px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-weight: inherit;font-size: 20px;cursor: text;box-sizing: border-box; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-uuoIRWJ_VB { margin-left: 0px;margin-bottom: 12px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-weight: inherit;font-size: 20px;cursor: text;box-sizing: border-box; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-uuoIRWJ_VB { margin-left: 0px;margin-bottom: 12px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-weight: inherit;font-size: 20px;cursor: text;box-sizing: border-box; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-uuoIRWJ_VB { margin-left: 0px;margin-bottom: 12px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-weight: inherit;font-size: 20px;cursor: text;box-sizing: border-box; } } @media (min-width: 1200px) { .gp-component-id-uuoIRWJ_VB { margin-left: 0px;margin-bottom: 12px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-weight: inherit;font-size: 20px;cursor: text;box-sizing: border-box; } } .gp-component-id-e_eYj56C1p { flex-direction: column;display: flex; } @media (max-width: 639px) { .gp-component-id-e_eYj56C1p { flex-direction: column;display: flex; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-e_eYj56C1p { flex-direction: column;display: flex; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-e_eYj56C1p { flex-direction: column;display: flex; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-e_eYj56C1p { flex-direction: column;display: flex; } } @media (min-width: 1200px) { .gp-component-id-e_eYj56C1p { flex-direction: column;display: flex; } } @media (max-width: 639px) { .gp-component-id-05t7as_U6_ { min-height: 120px;display: flex;align-items: center;justify-content: center;flex-direction: column;height: 100%;width: 100%;padding-bottom: 16px;padding-top: 16px;padding-right: 20px;padding-left: 20px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-05t7as_U6_ { min-height: 120px;display: flex;align-items: center;justify-content: center;flex-direction: column;height: 100%;width: 100%;padding-bottom: 16px;padding-top: 16px;padding-right: 20px;padding-left: 20px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-05t7as_U6_ { min-height: 120px;display: flex;align-items: center;justify-content: center;flex-direction: column;height: 100%;width: 100%;padding-bottom: 16px;padding-top: 16px;padding-right: 20px;padding-left: 20px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-05t7as_U6_ { min-height: 120px;display: flex;align-items: flex-start;justify-content: center;flex-direction: column;height: 100%;width: 100%;padding-bottom: 16px;padding-top: 16px;padding-right: 0px;padding-left: 0px; } } @media (min-width: 1200px) { .gp-component-id-05t7as_U6_ { min-height: 120px;display: flex;align-items: flex-start;justify-content: center;flex-direction: column;height: 100%;width: 100%;padding-bottom: 16px;padding-top: 16px;padding-right: 0px;padding-left: 0px; } } .gp-component-id-jSiiaSb62X { flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 100%;padding-right: 8px;padding-left: 8px; } @media (max-width: 639px) { .gp-component-id-jSiiaSb62X { flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 100%;padding-right: 8px;padding-left: 8px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-jSiiaSb62X { flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 100%;padding-right: 8px;padding-left: 8px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-jSiiaSb62X { flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 50%;padding-right: 8px;padding-left: 8px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-jSiiaSb62X { flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 50%;padding-right: 8px;padding-left: 8px; } } @media (min-width: 1200px) { .gp-component-id-jSiiaSb62X { flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 50%;padding-right: 8px;padding-left: 8px; } } .gp-component-id-lrwGb4Tbx { 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-lrwGb4Tbx { border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100px;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-lrwGb4Tbx { border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100px;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-lrwGb4Tbx { border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100px;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-lrwGb4Tbx { border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100px;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center; } } @media (min-width: 1200px) { .gp-component-id-lrwGb4Tbx { border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100px;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-zD_sbO__ku { min-height: 120px;display: flex;align-items: center;justify-content: center;flex-direction: column;height: 145.99px;width: 100%; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-zD_sbO__ku { min-height: 120px;display: flex;align-items: center;justify-content: center;flex-direction: column;height: 145.99px;width: 100%; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-zD_sbO__ku { min-height: 120px;display: flex;align-items: center;justify-content: center;flex-direction: column;height: 145.99px;width: 100%; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-zD_sbO__ku { min-height: 120px;display: flex;align-items: center;justify-content: center;flex-direction: column;height: 145.99px;width: 100%; } } @media (min-width: 1200px) { .gp-component-id-zD_sbO__ku { min-height: 120px;display: flex;align-items: center;justify-content: center;flex-direction: column;height: 145.99px;width: 100%; } } .gp-component-id-AqELNAjK6m { flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 100%;padding-right: 8px;padding-left: 8px; } @media (max-width: 639px) { .gp-component-id-AqELNAjK6m { flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 100%;padding-right: 8px;padding-left: 8px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-AqELNAjK6m { flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 100%;padding-right: 8px;padding-left: 8px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-AqELNAjK6m { flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 25%;padding-right: 8px;padding-left: 8px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-AqELNAjK6m { flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 25%;padding-right: 8px;padding-left: 8px; } } @media (min-width: 1200px) { .gp-component-id-AqELNAjK6m { flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 25%;padding-right: 8px;padding-left: 8px; } } .gp-component-id-VkDDCPS02D { flex-wrap: wrap;margin-right: -8px;margin-left: -8px; } @media (max-width: 639px) { .gp-component-id-VkDDCPS02D { flex-wrap: wrap;margin-right: -8px;margin-left: -8px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-VkDDCPS02D { flex-wrap: wrap;margin-right: -8px;margin-left: -8px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-VkDDCPS02D { flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-VkDDCPS02D { flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex; } } @media (min-width: 1200px) { .gp-component-id-VkDDCPS02D { flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex; } } @media (max-width: 639px) { .gp-component-id-O_eOJnrHL { width: 100%;padding-bottom: 12px;padding-top: 12px;padding-right: 0px;padding-left: 8px;margin-bottom: 20px;box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;background-color: rgb(255, 255, 255);border-bottom-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-top-right-radius: 5.6px;border-top-left-radius: 5.6px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-O_eOJnrHL { width: 100%;padding-bottom: 12px;padding-top: 12px;padding-right: 0px;padding-left: 8px;margin-bottom: 20px;box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;background-color: rgb(255, 255, 255);border-bottom-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-top-right-radius: 5.6px;border-top-left-radius: 5.6px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-O_eOJnrHL { width: 100%;padding-bottom: 12px;padding-top: 12px;padding-right: 0px;padding-left: 8px;margin-bottom: 20px;box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;background-color: rgb(255, 255, 255);border-bottom-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-top-right-radius: 5.6px;border-top-left-radius: 5.6px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-O_eOJnrHL { width: 85.71%;padding-bottom: 12px;padding-top: 12px;padding-right: 0px;padding-left: 8px;margin-bottom: 20px;box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;background-color: rgb(255, 255, 255);border-bottom-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-top-right-radius: 5.6px;border-top-left-radius: 5.6px; } } @media (min-width: 1200px) { .gp-component-id-O_eOJnrHL { width: 85.71%;padding-bottom: 12px;padding-top: 12px;padding-right: 0px;padding-left: 8px;margin-bottom: 20px;box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;background-color: rgb(255, 255, 255);border-bottom-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-top-right-radius: 5.6px;border-top-left-radius: 5.6px; } } .gp-component-id-uoFkG8zrhS { width: 100%;height: 100%; } @media (max-width: 639px) { .gp-component-id-uoFkG8zrhS { width: 100%;height: 100%; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-uoFkG8zrhS { width: 100%;height: 100%; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-uoFkG8zrhS { width: 100%;height: 100%; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-uoFkG8zrhS { width: 100%;height: 100%; } } @media (min-width: 1200px) { .gp-component-id-uoFkG8zrhS { width: 100%;height: 100%; } } .gp-component-id-GJj9EuO1bW { padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto; } @media (max-width: 639px) { .gp-component-id-GJj9EuO1bW { 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-GJj9EuO1bW { 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-GJj9EuO1bW { 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-GJj9EuO1bW { padding-left: 8px;width: 50%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto; } } @media (min-width: 1200px) { .gp-component-id-GJj9EuO1bW { padding-left: 8px;width: 50%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto; } } .gp-component-id-SnUo9H5A0 { margin-left: -8px;margin-right: -8px;flex-wrap: wrap; } @media (max-width: 639px) { .gp-component-id-SnUo9H5A0 { margin-left: -8px;margin-right: -8px;flex-wrap: wrap; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-SnUo9H5A0 { margin-left: -8px;margin-right: -8px;flex-wrap: wrap; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-SnUo9H5A0 { margin-left: -8px;margin-right: -8px;flex-wrap: wrap;display: flex; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-SnUo9H5A0 { margin-left: -8px;margin-right: -8px;flex-wrap: wrap;display: flex; } } @media (min-width: 1200px) { .gp-component-id-SnUo9H5A0 { margin-left: -8px;margin-right: -8px;flex-wrap: wrap;display: flex; } } .gp-component-id-qFWXLslpN { padding-left: 8px;width: 100%;padding-right: 8px; } @media (max-width: 639px) { .gp-component-id-qFWXLslpN { padding-left: 8px;width: 100%;padding-right: 8px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-qFWXLslpN { padding-left: 8px;width: 100%;padding-right: 8px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-qFWXLslpN { padding-left: 8px;width: 100%;padding-right: 8px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-qFWXLslpN { padding-left: 8px;width: 100%;padding-right: 8px; } } @media (min-width: 1200px) { .gp-component-id-qFWXLslpN { padding-left: 8px;width: 100%;padding-right: 8px; } } .gp-component-id-WsLK0Jqe4u { margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;list-style-position: inside;padding-left: 16px;padding-bottom: 16px;padding-right: 0px;padding-top: 16px;width: 85.71%;height: auto;list-style-type: inherit; } @media (max-width: 639px) { .gp-component-id-WsLK0Jqe4u { margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;list-style-position: inside;padding-left: 16px;padding-bottom: 16px;padding-right: 0px;padding-top: 16px;width: 85.71%;height: auto;list-style-type: inherit; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-WsLK0Jqe4u { margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;list-style-position: inside;padding-left: 16px;padding-bottom: 16px;padding-right: 0px;padding-top: 16px;width: 85.71%;height: auto;list-style-type: inherit; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-WsLK0Jqe4u { margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;list-style-position: inside;padding-left: 16px;padding-bottom: 16px;padding-right: 0px;padding-top: 16px;width: 85.71%;height: auto;list-style-type: inherit; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-WsLK0Jqe4u { margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;list-style-position: inside;padding-left: 16px;padding-bottom: 16px;padding-right: 0px;padding-top: 16px;width: 100%;height: auto;list-style-type: inherit;flex-direction: column;align-items: center;display: flex; } } @media (min-width: 1200px) { .gp-component-id-WsLK0Jqe4u { margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;list-style-position: inside;padding-left: 16px;padding-bottom: 16px;padding-right: 0px;padding-top: 16px;width: 100%;height: auto;list-style-type: inherit;flex-direction: column;align-items: center;display: flex; } } .gp-component-id-z0QzjrAt0J { font-size: 1em;font-family: monospace, monospace;overflow-wrap: break-word; } @media (max-width: 639px) { .gp-component-id-z0QzjrAt0J { font-size: 1em;font-family: monospace, monospace;overflow-wrap: break-word; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-z0QzjrAt0J { font-size: 1em;font-family: monospace, monospace;overflow-wrap: break-word; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-z0QzjrAt0J { font-size: 1em;font-family: monospace, monospace;overflow-wrap: break-word; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-z0QzjrAt0J { font-size: 1em;font-family: monospace, monospace;overflow-wrap: break-word; } } @media (min-width: 1200px) { .gp-component-id-z0QzjrAt0J { font-size: 1em;font-family: monospace, monospace;overflow-wrap: break-word; } } .gp-component-id-qtiFAClsxn { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word; } @media (max-width: 639px) { .gp-component-id-qtiFAClsxn { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 50px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;line-height: 1.5;text-align: center;font-size: 18px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-qtiFAClsxn { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 50px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;line-height: 1.5;text-align: center;font-size: 18px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-qtiFAClsxn { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 50px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;line-height: 1.5;text-align: center;font-size: 18px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-qtiFAClsxn { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 50px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;line-height: 1.5;text-align: center;font-size: 18px; } } @media (min-width: 1200px) { .gp-component-id-qtiFAClsxn { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 50px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;line-height: 1.5;text-align: center;font-size: 18px; } } .gp-component-id-9sbSdgF1qw { flex-direction: column;display: flex; } @media (max-width: 639px) { .gp-component-id-9sbSdgF1qw { flex-direction: column;display: flex; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-9sbSdgF1qw { flex-direction: column;display: flex; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-9sbSdgF1qw { flex-direction: column;display: flex; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-9sbSdgF1qw { flex-direction: column;display: flex; } } @media (min-width: 1200px) { .gp-component-id-9sbSdgF1qw { flex-direction: column;display: flex; } } .gp-component-id-Sx0AVpBXNv { margin-bottom: 28px;width: 85.71%; } @media (max-width: 639px) { .gp-component-id-Sx0AVpBXNv { margin-bottom: 28px;width: 85.71%; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-Sx0AVpBXNv { margin-bottom: 28px;width: 85.71%; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-Sx0AVpBXNv { margin-bottom: 28px;width: 80%; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-Sx0AVpBXNv { margin-bottom: 28px;width: 75%; } } @media (min-width: 1200px) { .gp-component-id-Sx0AVpBXNv { margin-bottom: 28px;width: 75%; } } .gp-component-id-x0HMixWy5S { font-size: 1em;font-family: monospace, monospace;overflow-wrap: break-word; } @media (max-width: 639px) { .gp-component-id-x0HMixWy5S { font-size: 1em;font-family: monospace, monospace;overflow-wrap: break-word; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-x0HMixWy5S { font-size: 1em;font-family: monospace, monospace;overflow-wrap: break-word; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-x0HMixWy5S { font-size: 1em;font-family: monospace, monospace;overflow-wrap: break-word; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-x0HMixWy5S { font-size: 1em;font-family: monospace, monospace;overflow-wrap: break-word; } } @media (min-width: 1200px) { .gp-component-id-x0HMixWy5S { font-size: 1em;font-family: monospace, monospace;overflow-wrap: break-word; } } .gp-component-id-jmJP0jvY0n { 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-jmJP0jvY0n { margin-left: 0px;margin-bottom: 20px;margin-right: 0px;margin-top: 50px;font-size: 48px;overflow-wrap: break-word;font-weight: 700;box-sizing: border-box;cursor: text;text-align: center; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-jmJP0jvY0n { margin-left: 0px;margin-bottom: 20px;margin-right: 0px;margin-top: 50px;font-size: 48px;overflow-wrap: break-word;font-weight: 700;box-sizing: border-box;cursor: text;text-align: center; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-jmJP0jvY0n { margin-left: 0px;margin-bottom: 20px;margin-right: 0px;margin-top: 50px;font-size: 48px;overflow-wrap: break-word;font-weight: 700;box-sizing: border-box;cursor: text;text-align: center; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-jmJP0jvY0n { margin-left: 0px;margin-bottom: 20px;margin-right: 0px;margin-top: 50px;font-size: 48px;overflow-wrap: break-word;font-weight: 700;box-sizing: border-box;cursor: text;text-align: center; } } @media (min-width: 1200px) { .gp-component-id-jmJP0jvY0n { margin-left: 0px;margin-bottom: 20px;margin-right: 0px;margin-top: 50px;font-size: 48px;overflow-wrap: break-word;font-weight: 700;box-sizing: border-box;cursor: text;text-align: center; } } .gp-component-id-TOc5pskUHE { flex-direction: column;display: flex; } @media (max-width: 639px) { .gp-component-id-TOc5pskUHE { flex-direction: column;display: flex; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-TOc5pskUHE { flex-direction: column;display: flex; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-TOc5pskUHE { flex-direction: column;display: flex; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-TOc5pskUHE { flex-direction: column;display: flex; } } @media (min-width: 1200px) { .gp-component-id-TOc5pskUHE { flex-direction: column;display: flex; } } .gp-component-id-ieVFxd8CLR { z-index: 15;position: relative; } @media (max-width: 639px) { .gp-component-id-ieVFxd8CLR { z-index: 15;position: relative;display: flex;align-items: center;flex-direction: column;height: auto;width: 100%;margin-right: auto;margin-left: auto;font-family: "Work Sans"; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-ieVFxd8CLR { z-index: 15;position: relative;display: flex;align-items: center;flex-direction: column;max-width: 640px;height: auto;width: 100%;margin-right: auto;margin-left: auto;font-family: "Work Sans"; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-ieVFxd8CLR { z-index: 15;position: relative;display: flex;align-items: center;flex-direction: column;max-width: 768px;height: auto;width: 100%;margin-right: auto;margin-left: auto;font-family: "Work Sans"; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-ieVFxd8CLR { z-index: 15;position: relative;display: flex;align-items: center;flex-direction: column;max-width: 992px;height: auto;width: 100%;margin-right: auto;margin-left: auto;font-family: "Work Sans"; } } @media (min-width: 1200px) { .gp-component-id-ieVFxd8CLR { z-index: 15;position: relative;display: flex;align-items: center;flex-direction: column;max-width: 1200px;height: auto;width: 100%;margin-right: auto;margin-left: auto;font-family: "Work Sans"; } } .gp-component-id-2cAYSSJTt.gp-component > [data-section-overlay] { background-color: rgb(234, 240, 243);right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;z-index: 14; } @media (max-width: 639px) { .gp-component-id-2cAYSSJTt.gp-component > [data-section-overlay] { background-color: rgb(234, 240, 243);right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;z-index: 14; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-2cAYSSJTt.gp-component > [data-section-overlay] { background-color: rgb(234, 240, 243);right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;z-index: 14; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-2cAYSSJTt.gp-component > [data-section-overlay] { background-color: rgb(234, 240, 243);right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;z-index: 14; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-2cAYSSJTt.gp-component > [data-section-overlay] { background-color: rgb(234, 240, 243);right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;z-index: 14; } } @media (min-width: 1200px) { .gp-component-id-2cAYSSJTt.gp-component > [data-section-overlay] { background-color: rgb(234, 240, 243);right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;z-index: 14; } } .gp-component-id-JbpDsgWhsb { 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-JbpDsgWhsb { 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-JbpDsgWhsb { 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-JbpDsgWhsb { 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-JbpDsgWhsb { 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-JbpDsgWhsb { 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-2cAYSSJTt { min-height: 50px;position: relative;z-index: auto; } @media (max-width: 639px) { .gp-component-id-2cAYSSJTt { min-height: 50px;position: relative;z-index: auto !important;padding-bottom: 0px;padding-top: 0px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-2cAYSSJTt { min-height: 50px;position: relative;z-index: auto !important;padding-bottom: 0px;padding-top: 0px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-2cAYSSJTt { min-height: 50px;position: relative;z-index: auto !important;padding-bottom: 0px;padding-top: 0px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-2cAYSSJTt { min-height: 50px;position: relative;z-index: auto !important;padding-bottom: 0px;padding-top: 0px; } } @media (min-width: 1200px) { .gp-component-id-2cAYSSJTt { min-height: 50px;position: relative;z-index: auto !important;padding-bottom: 0px;padding-top: 0px; } } .gp-component-id-LFUB2MXp3MX { 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;width: 400px; } @media (max-width: 639px) { .gp-component-id-LFUB2MXp3MX { 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;width: 400px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-LFUB2MXp3MX { 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;width: 400px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-LFUB2MXp3MX { 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;width: 400px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-LFUB2MXp3MX { 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;width: 500px; } } @media (min-width: 1200px) { .gp-component-id-LFUB2MXp3MX { 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;width: 500px; } } .gp-component-id-xHBf5E_f7aw { display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%; } @media (max-width: 639px) { .gp-component-id-xHBf5E_f7aw { display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-xHBf5E_f7aw { display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-xHBf5E_f7aw { display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-xHBf5E_f7aw { display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%; } } @media (min-width: 1200px) { .gp-component-id-xHBf5E_f7aw { display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-top: 48px;padding-right: 56px;padding-left: 56px; } } .gp-component-id-43_rF2aerj { width: 100%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto; } @media (max-width: 639px) { .gp-component-id-43_rF2aerj { 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-43_rF2aerj { 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-43_rF2aerj { width: 50%;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-43_rF2aerj { width: 50%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto; } } @media (min-width: 1200px) { .gp-component-id-43_rF2aerj { width: 50%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto; } } @media (max-width: 639px) { .gp-component-id-ULj36zxdci { color: rgb(249, 247, 247); } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-ULj36zxdci { color: rgb(249, 247, 247); } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-ULj36zxdci { color: rgb(249, 247, 247); } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-ULj36zxdci { color: rgb(249, 247, 247); } } @media (min-width: 1200px) { .gp-component-id-ULj36zxdci { color: rgb(249, 247, 247); } } .gp-component-id-KW9q0CxQWB { 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-KW9q0CxQWB { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;align-items: center;cursor: pointer;background-color: rgb(49, 114, 175);color: rgb(255, 255, 255);font-family: "Open Sans" !important;font-weight: 600 !important;font-size: 20px !important;display: inline-flex;padding-bottom: 16px;padding-top: 16px;padding-right: 30px;padding-left: 30px;margin-top: 30px;margin-left: 0px;border-bottom-right-radius: 7px;border-bottom-left-radius: 7px;border-top-right-radius: 7px;border-top-left-radius: 7px; } .gp-component-id-KW9q0CxQWB:hover,.gp-component-id-KW9q0CxQWB.gp-hover { background-color: rgb(17, 45, 78); } .gp-component-id-KW9q0CxQWB:active,.gp-component-id-KW9q0CxQWB.gp-active { background-color: rgb(49, 114, 175); } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-KW9q0CxQWB { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;align-items: center;cursor: pointer;background-color: rgb(49, 114, 175);color: rgb(255, 255, 255);font-family: "Open Sans" !important;font-weight: 600 !important;font-size: 20px !important;display: inline-flex;padding-bottom: 16px;padding-top: 16px;padding-right: 40px;padding-left: 40px;margin-top: 30px;margin-left: 0px;border-bottom-right-radius: 7px;border-bottom-left-radius: 7px;border-top-right-radius: 7px;border-top-left-radius: 7px; } .gp-component-id-KW9q0CxQWB:hover,.gp-component-id-KW9q0CxQWB.gp-hover { background-color: rgb(17, 45, 78); } .gp-component-id-KW9q0CxQWB:active,.gp-component-id-KW9q0CxQWB.gp-active { background-color: rgb(49, 114, 175); } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-KW9q0CxQWB { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;align-items: center;cursor: pointer;background-color: rgb(49, 114, 175);color: rgb(255, 255, 255);font-family: "Open Sans" !important;font-weight: 600 !important;font-size: 20px !important;display: inline-flex;padding-bottom: 16px;padding-top: 16px;padding-right: 40px;padding-left: 40px;margin-top: 30px;margin-left: 0px;border-bottom-right-radius: 7px;border-bottom-left-radius: 7px;border-top-right-radius: 7px;border-top-left-radius: 7px; } .gp-component-id-KW9q0CxQWB:hover,.gp-component-id-KW9q0CxQWB.gp-hover { background-color: rgb(17, 45, 78); } .gp-component-id-KW9q0CxQWB:active,.gp-component-id-KW9q0CxQWB.gp-active { background-color: rgb(49, 114, 175); } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-KW9q0CxQWB { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;align-items: center;cursor: pointer;background-color: rgb(49, 114, 175);color: rgb(255, 255, 255);font-family: "Open Sans" !important;font-weight: 600 !important;font-size: 20px !important;display: inline-flex;padding-bottom: 16px;padding-top: 16px;padding-right: 40px;padding-left: 40px;margin-top: 30px;margin-left: 0px;border-bottom-right-radius: 7px;border-bottom-left-radius: 7px;border-top-right-radius: 7px;border-top-left-radius: 7px; } .gp-component-id-KW9q0CxQWB:hover,.gp-component-id-KW9q0CxQWB.gp-hover { background-color: rgb(17, 45, 78); } .gp-component-id-KW9q0CxQWB:active,.gp-component-id-KW9q0CxQWB.gp-active { background-color: rgb(49, 114, 175); } } @media (min-width: 1200px) { .gp-component-id-KW9q0CxQWB { text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;align-items: center;cursor: pointer;background-color: rgb(49, 114, 175);color: rgb(255, 255, 255);font-family: "Open Sans" !important;font-weight: 600 !important;font-size: 20px !important;display: inline-flex;padding-bottom: 16px;padding-top: 16px;padding-right: 40px;padding-left: 40px;margin-top: 30px;margin-left: 0px;border-bottom-right-radius: 7px;border-bottom-left-radius: 7px;border-top-right-radius: 7px;border-top-left-radius: 7px; } .gp-component-id-KW9q0CxQWB:hover,.gp-component-id-KW9q0CxQWB.gp-hover { background-color: rgb(17, 45, 78); } .gp-component-id-KW9q0CxQWB:active,.gp-component-id-KW9q0CxQWB.gp-active { background-color: rgb(49, 114, 175); } } .gp-component-id-wW8nO9RCsM { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word; } @media (max-width: 639px) { .gp-component-id-wW8nO9RCsM { margin-left: 0px;margin-bottom: 4px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: "Source Sans Pro", sans-serif;line-height: 1.5;text-align: center;color: rgb(57, 75, 86);font-size: 20px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-wW8nO9RCsM { margin-left: 0px;margin-bottom: 4px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: "Source Sans Pro", sans-serif;line-height: 1.5;text-align: center;color: rgb(57, 75, 86);font-size: 20px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-wW8nO9RCsM { margin-left: 0px;margin-bottom: 4px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: "Source Sans Pro", sans-serif;line-height: 1.5;text-align: center;color: rgb(57, 75, 86);font-size: 20px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-wW8nO9RCsM { margin-left: 0px;margin-bottom: 4px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: "Source Sans Pro", sans-serif;line-height: 1.5;text-align: left;color: rgb(57, 75, 86);font-size: 20px; } } @media (min-width: 1200px) { .gp-component-id-wW8nO9RCsM { margin-left: 0px;margin-bottom: 4px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: "Source Sans Pro", sans-serif;line-height: 1.5;text-align: left;color: rgb(57, 75, 86);font-size: 20px; } } .gp-component-id-29XzHzHaA { flex-direction: column;display: flex; } @media (max-width: 639px) { .gp-component-id-29XzHzHaA { flex-direction: column;display: flex; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-29XzHzHaA { flex-direction: column;display: flex; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-29XzHzHaA { flex-direction: column;display: flex; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-29XzHzHaA { flex-direction: column;display: flex; } } @media (min-width: 1200px) { .gp-component-id-29XzHzHaA { flex-direction: column;display: flex; } } .gp-component-id-Xccf254vM0 { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;list-style-position: inside;padding-left: 16px;padding-bottom: 16px;padding-right: 0px;padding-top: 16px;list-style-type: inherit; } @media (max-width: 639px) { .gp-component-id-Xccf254vM0 { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;list-style-position: inside;padding-left: 16px;padding-bottom: 16px;padding-right: 0px;padding-top: 16px;list-style-type: inherit; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-Xccf254vM0 { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;list-style-position: inside;padding-left: 16px;padding-bottom: 16px;padding-right: 0px;padding-top: 16px;list-style-type: inherit; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-Xccf254vM0 { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;list-style-position: inside;padding-left: 16px;padding-bottom: 16px;padding-right: 0px;padding-top: 16px;list-style-type: inherit; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-Xccf254vM0 { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;list-style-position: inside;padding-left: 16px;padding-bottom: 16px;padding-right: 0px;padding-top: 16px;list-style-type: inherit; } } @media (min-width: 1200px) { .gp-component-id-Xccf254vM0 { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;list-style-position: inside;padding-left: 16px;padding-bottom: 16px;padding-right: 0px;padding-top: 16px;list-style-type: inherit; } } .gp-component-id-4igFesFhKb { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word; } @media (max-width: 639px) { .gp-component-id-4igFesFhKb { margin-left: 0px;margin-bottom: 8px;margin-right: 0px;margin-top: 20px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: "Crimson Pro", serif;text-align: left;color: rgb(63, 115, 175);font-size: 24px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-4igFesFhKb { margin-left: 0px;margin-bottom: 8px;margin-right: 0px;margin-top: 20px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: "Crimson Pro", serif;text-align: left;color: rgb(63, 115, 175);font-size: 24px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-4igFesFhKb { margin-left: 0px;margin-bottom: 8px;margin-right: 0px;margin-top: 20px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: "Crimson Pro", serif;text-align: left;color: rgb(63, 115, 175);font-size: 24px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-4igFesFhKb { margin-left: 0px;margin-bottom: 8px;margin-right: 0px;margin-top: 20px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: "Crimson Pro", serif;text-align: left;color: rgb(63, 115, 175);font-size: 24px; } } @media (min-width: 1200px) { .gp-component-id-4igFesFhKb { margin-left: 0px;margin-bottom: 8px;margin-right: 0px;margin-top: 20px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: "Crimson Pro", serif;text-align: left;color: rgb(63, 115, 175);font-size: 24px; } } .gp-component-id-Zi0j2dAS99 { flex-direction: column;display: flex; } @media (max-width: 639px) { .gp-component-id-Zi0j2dAS99 { flex-direction: column;display: flex; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-Zi0j2dAS99 { flex-direction: column;display: flex; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-Zi0j2dAS99 { flex-direction: column;display: flex; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-Zi0j2dAS99 { flex-direction: column;display: flex; } } @media (min-width: 1200px) { .gp-component-id-Zi0j2dAS99 { flex-direction: column;display: flex; } } .gp-component-id-sOwOXjUV8j { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word; } @media (max-width: 639px) { .gp-component-id-sOwOXjUV8j { margin-left: 0px;margin-bottom: 4px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: "Source Sans Pro", sans-serif;line-height: 1.5;text-align: center;color: rgb(57, 75, 86);font-size: 20px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-sOwOXjUV8j { margin-left: 0px;margin-bottom: 4px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: "Source Sans Pro", sans-serif;line-height: 1.5;text-align: center;color: rgb(57, 75, 86);font-size: 20px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-sOwOXjUV8j { margin-left: 0px;margin-bottom: 4px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: "Source Sans Pro", sans-serif;line-height: 1.5;text-align: center;color: rgb(57, 75, 86);font-size: 20px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-sOwOXjUV8j { margin-left: 0px;margin-bottom: 4px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: "Source Sans Pro", sans-serif;line-height: 1.5;text-align: left;color: rgb(57, 75, 86);font-size: 20px; } } @media (min-width: 1200px) { .gp-component-id-sOwOXjUV8j { margin-left: 0px;margin-bottom: 4px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: "Source Sans Pro", sans-serif;line-height: 1.5;text-align: left;color: rgb(57, 75, 86);font-size: 20px; } } .gp-component-id-so46KH97PM { flex-direction: column;display: flex; } @media (max-width: 639px) { .gp-component-id-so46KH97PM { flex-direction: column;display: flex; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-so46KH97PM { flex-direction: column;display: flex; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-so46KH97PM { flex-direction: column;display: flex; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-so46KH97PM { flex-direction: column;display: flex; } } @media (min-width: 1200px) { .gp-component-id-so46KH97PM { flex-direction: column;display: flex; } } .gp-component-id-ekTVzd4QY4 { margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-weight: inherit;font-size: 36px;box-sizing: border-box;cursor: text;text-align: center;font-family: "Source Sans Pro", sans-serif; } @media (max-width: 639px) { .gp-component-id-ekTVzd4QY4 { margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-weight: inherit;font-size: 36px;box-sizing: border-box;cursor: text;text-align: center;font-family: "Source Sans Pro", sans-serif; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-ekTVzd4QY4 { margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-weight: inherit;font-size: 48px;box-sizing: border-box;cursor: text;text-align: center;font-family: "Source Sans Pro", sans-serif; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-ekTVzd4QY4 { margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-weight: inherit;font-size: 48px;box-sizing: border-box;cursor: text;text-align: center;font-family: "Source Sans Pro", sans-serif; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-ekTVzd4QY4 { margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-weight: inherit;font-size: 36px;box-sizing: border-box;cursor: text;text-align: left;font-family: "Source Sans Pro", sans-serif; } } @media (min-width: 1200px) { .gp-component-id-ekTVzd4QY4 { margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-weight: inherit;font-size: 36px;box-sizing: border-box;cursor: text;text-align: left;font-family: "Source Sans Pro", sans-serif; } } .gp-component-id-WAqHoBVB4X { flex-direction: column;display: flex; } @media (max-width: 639px) { .gp-component-id-WAqHoBVB4X { flex-direction: column;display: flex; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-WAqHoBVB4X { flex-direction: column;display: flex; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-WAqHoBVB4X { flex-direction: column;display: flex; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-WAqHoBVB4X { flex-direction: column;display: flex; } } @media (min-width: 1200px) { .gp-component-id-WAqHoBVB4X { flex-direction: column;display: flex; } } @media (max-width: 639px) { .gp-component-id-hEhrZUJMc2 { display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-bottom: 28px;padding-top: 20px;padding-right: 28px;padding-left: 28px;text-align: center; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-hEhrZUJMc2 { display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-bottom: 28px;padding-top: 20px;padding-right: 28px;padding-left: 28px;text-align: center; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-hEhrZUJMc2 { display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-bottom: 28px;padding-top: 20px;padding-right: 28px;padding-left: 28px;text-align: center; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-hEhrZUJMc2 { display: flex;align-items: flex-start;flex-direction: column;height: 100%;width: 100%;padding-bottom: 28px;padding-top: 36px;padding-right: 28px;padding-left: 28px;text-align: center; } } @media (min-width: 1200px) { .gp-component-id-hEhrZUJMc2 { display: flex;align-items: flex-start;flex-direction: column;height: 100%;width: 100%;padding-bottom: 48px;padding-top: 80px;padding-right: 48px;padding-left: 48px;text-align: center; } } .gp-component-id-AMAMtoaaW9 { width: 100%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto; } @media (max-width: 639px) { .gp-component-id-AMAMtoaaW9 { 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-AMAMtoaaW9 { 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-AMAMtoaaW9 { width: 50%;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-AMAMtoaaW9 { width: 50%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto; } } @media (min-width: 1200px) { .gp-component-id-AMAMtoaaW9 { width: 50%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto; } } .gp-component-id-pm8VV1xWnk { margin-left: -8px;margin-right: -8px;flex-wrap: wrap; } @media (max-width: 639px) { .gp-component-id-pm8VV1xWnk { margin-left: -8px;margin-right: -8px;flex-wrap: wrap; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-pm8VV1xWnk { margin-left: -8px;margin-right: -8px;flex-wrap: wrap; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-pm8VV1xWnk { margin-left: -8px;margin-right: -8px;flex-wrap: wrap;display: flex; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-pm8VV1xWnk { margin-left: -8px;margin-right: -8px;flex-wrap: wrap;display: flex; } } @media (min-width: 1200px) { .gp-component-id-pm8VV1xWnk { margin-left: -8px;margin-right: -8px;flex-wrap: wrap;display: flex; } } .gp-component-id-NmRTDtK3SN { width: 100%;padding-left: 8px;padding-right: 8px; } @media (max-width: 639px) { .gp-component-id-NmRTDtK3SN { width: 100%;padding-left: 8px;padding-right: 8px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-NmRTDtK3SN { width: 100%;padding-left: 8px;padding-right: 8px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-NmRTDtK3SN { width: 100%;padding-left: 8px;padding-right: 8px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-NmRTDtK3SN { width: 100%;padding-left: 8px;padding-right: 8px; } } @media (min-width: 1200px) { .gp-component-id-NmRTDtK3SN { width: 100%;padding-left: 8px;padding-right: 8px; } } .gp-component-id-fdma7hllUM { z-index: 15;position: relative;margin-left: auto;margin-right: auto;width: 100%; } @media (max-width: 639px) { .gp-component-id-fdma7hllUM { z-index: 15;position: relative;margin-left: auto;margin-right: auto;width: 100%; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-fdma7hllUM { 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-fdma7hllUM { 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-fdma7hllUM { z-index: 15;position: relative;margin-left: auto;margin-right: auto;width: 100%;max-width: 992px; } } @media (min-width: 1200px) { .gp-component-id-fdma7hllUM { z-index: 15;position: relative;margin-left: auto;margin-right: auto;width: 100%;max-width: 992px; } } .gp-component-id-uKwtViC5E.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-uKwtViC5E.gp-component > [data-section-overlay] { z-index: 14;position: absolute;right: 0px;left: 0px;top: 0px;bottom: 0px;background-color: rgb(255, 255, 255); } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-uKwtViC5E.gp-component > [data-section-overlay] { z-index: 14;position: absolute;right: 0px;left: 0px;top: 0px;bottom: 0px;background-color: rgb(255, 255, 255); } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-uKwtViC5E.gp-component > [data-section-overlay] { z-index: 14;position: absolute;right: 0px;left: 0px;top: 0px;bottom: 0px;background-color: rgb(255, 255, 255); } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-uKwtViC5E.gp-component > [data-section-overlay] { z-index: 14;position: absolute;right: 0px;left: 0px;top: 0px;bottom: 0px;background-color: rgb(255, 255, 255); } } @media (min-width: 1200px) { .gp-component-id-uKwtViC5E.gp-component > [data-section-overlay] { z-index: 14;position: absolute;right: 0px;left: 0px;top: 0px;bottom: 0px;background-color: rgb(255, 255, 255); } } .gp-component-id-sIYY4N3_6P { 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-sIYY4N3_6P { 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-sIYY4N3_6P { 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-sIYY4N3_6P { 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-sIYY4N3_6P { 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-sIYY4N3_6P { 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-uKwtViC5E { min-height: 50px;position: relative;z-index: auto; } @media (max-width: 639px) { .gp-component-id-uKwtViC5E { min-height: 50px;position: relative;z-index: auto !important;padding-top: 36px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-uKwtViC5E { min-height: 50px;position: relative;z-index: auto !important;padding-top: 36px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-uKwtViC5E { min-height: 50px;position: relative;z-index: auto !important;padding-top: 36px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-uKwtViC5E { min-height: 50px;position: relative;z-index: auto !important;padding-top: 8px; } } @media (min-width: 1200px) { .gp-component-id-uKwtViC5E { min-height: 50px;position: relative;z-index: auto !important;padding-top: 36px; } } .gp-component-id-ntlwUHuH0 { 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-ntlwUHuH0 { 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;min-width: 100%; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-ntlwUHuH0 { 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;min-width: 100%; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-ntlwUHuH0 { 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;min-width: 100%; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-ntlwUHuH0 { 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;min-width: 100%; } } @media (min-width: 1200px) { .gp-component-id-ntlwUHuH0 { 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;min-width: 100%; } } .gp-component-id-ETtpA2zwQP { z-index: 15;position: relative; } @media (max-width: 639px) { .gp-component-id-ETtpA2zwQP { z-index: 15;position: relative;display: flex;align-items: center;justify-content: center;flex-direction: column;max-width: 100%;height: auto;width: 100%;margin-right: auto;margin-left: auto; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-ETtpA2zwQP { z-index: 15;position: relative;display: flex;align-items: center;justify-content: center;flex-direction: column;max-width: 100%;height: auto;width: 100%;margin-right: auto;margin-left: auto; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-ETtpA2zwQP { z-index: 15;position: relative;display: flex;align-items: center;justify-content: center;flex-direction: column;max-width: 100%;height: auto;width: 100%;margin-right: auto;margin-left: auto; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-ETtpA2zwQP { z-index: 15;position: relative;display: flex;align-items: center;justify-content: center;flex-direction: column;max-width: 100%;height: auto;width: 100%;margin-right: auto;margin-left: auto; } } @media (min-width: 1200px) { .gp-component-id-ETtpA2zwQP { z-index: 15;position: relative;display: flex;align-items: center;justify-content: center;flex-direction: column;max-width: 100%;height: auto;width: 100%;margin-right: auto;margin-left: auto; } } .gp-component-id-MWOKFC_hsy.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-MWOKFC_hsy.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-MWOKFC_hsy.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-MWOKFC_hsy.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-MWOKFC_hsy.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-MWOKFC_hsy.gp-component > [data-section-overlay] { z-index: 14;position: absolute;right: 0px;left: 0px;top: 0px;bottom: 0px; } } .gp-component-id-jz_zjeGhw { 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-jz_zjeGhw { 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-jz_zjeGhw { 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-jz_zjeGhw { 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-jz_zjeGhw { 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-jz_zjeGhw { 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-MWOKFC_hsy { min-height: 50px;position: relative;z-index: auto; } @media (max-width: 639px) { .gp-component-id-MWOKFC_hsy { min-height: 50px;position: relative;z-index: auto; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-MWOKFC_hsy { min-height: 50px;position: relative;z-index: auto; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-MWOKFC_hsy { min-height: 50px;position: relative;z-index: auto; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-MWOKFC_hsy { min-height: 50px;position: relative;z-index: auto; } } @media (min-width: 1200px) { .gp-component-id-MWOKFC_hsy { min-height: 50px;position: relative;z-index: auto; } }
