
      
    


      
     


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

 @media (max-width: 639px) { [data-gp-text] .gp-component-id-k00LSEiJ0b { font-size: 40px !important;font-weight: inherit;color: rgb(25, 29, 58);text-align: center;font-family: Poppins, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;overflow-wrap: break-word; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-k00LSEiJ0b { font-size: 40px !important;font-weight: inherit;color: rgb(25, 29, 58);text-align: center;font-family: Poppins, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;overflow-wrap: break-word; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-k00LSEiJ0b { font-size: 40px !important;font-weight: inherit;color: rgb(25, 29, 58);text-align: center;font-family: Poppins, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;overflow-wrap: break-word; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-k00LSEiJ0b { font-size: 40px !important;font-weight: inherit;color: rgb(25, 29, 58);text-align: center;font-family: Poppins, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;overflow-wrap: break-word; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-k00LSEiJ0b { font-size: 40px !important;font-weight: inherit;color: rgb(25, 29, 58);text-align: center;font-family: Poppins, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;overflow-wrap: break-word; } }

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

 .gp-component-id-zW2xGjW2Ey { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word; } @media (max-width: 639px) { .gp-component-id-zW2xGjW2Ey { 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-zW2xGjW2Ey { 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-zW2xGjW2Ey { 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-zW2xGjW2Ey { 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-zW2xGjW2Ey { 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-1BT8kfvWtZ { flex-direction: column;display: flex; } @media (max-width: 639px) { .gp-component-id-1BT8kfvWtZ { flex-direction: column;display: flex; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-1BT8kfvWtZ { flex-direction: column;display: flex; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-1BT8kfvWtZ { flex-direction: column;display: flex; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-1BT8kfvWtZ { flex-direction: column;display: flex; } } @media (min-width: 1200px) { .gp-component-id-1BT8kfvWtZ { flex-direction: column;display: flex; } }

 .gp-component-id-82LkoP8zEP { width: 100%; } @media (max-width: 639px) { .gp-component-id-82LkoP8zEP { width: 100%; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-82LkoP8zEP { width: 100%; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-82LkoP8zEP { width: 100%; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-82LkoP8zEP { width: 100%; } } @media (min-width: 1200px) { .gp-component-id-82LkoP8zEP { 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-zopb06RfIA { padding-left: 8px;width: 100%;padding-right: 8px; } @media (max-width: 639px) { .gp-component-id-zopb06RfIA { padding-left: 8px;width: 100%;padding-right: 8px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-zopb06RfIA { padding-left: 8px;width: 100%;padding-right: 8px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-zopb06RfIA { padding-left: 8px;width: 100%;padding-right: 8px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-zopb06RfIA { padding-left: 8px;width: 100%;padding-right: 8px; } } @media (min-width: 1200px) { .gp-component-id-zopb06RfIA { padding-left: 8px;width: 100%;padding-right: 8px; } }

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

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

 .gp-component-id-MKUMeYxiUt { min-height: 50px;position: relative;z-index: auto; } @media (max-width: 639px) { .gp-component-id-MKUMeYxiUt { 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-MKUMeYxiUt { 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-MKUMeYxiUt { 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-MKUMeYxiUt { min-height: 50px;position: relative;z-index: auto;padding-bottom: 16px;padding-top: 16px; } } @media (min-width: 1200px) { .gp-component-id-MKUMeYxiUt { min-height: 50px;position: relative;z-index: auto;padding-bottom: 16px;padding-top: 16px; } }

 .gp-component-id-WGswkTuar3 { font-size: inherit;font-weight: inherit;overflow-wrap: break-word;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px; } @media (max-width: 639px) { .gp-component-id-WGswkTuar3 { font-size: 24px;font-weight: inherit;overflow-wrap: break-word;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;color: rgb(25, 29, 58);text-align: left;font-family: Poppins, sans-serif;box-sizing: border-box;cursor: text; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-WGswkTuar3 { font-size: 24px;font-weight: inherit;overflow-wrap: break-word;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;color: rgb(25, 29, 58);text-align: center;font-family: Poppins, sans-serif;box-sizing: border-box;cursor: text; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-WGswkTuar3 { font-size: 24px;font-weight: inherit;overflow-wrap: break-word;margin-top: 0px;margin-right: 0px;margin-bottom: 32px;margin-left: 0px;color: rgb(25, 29, 58);text-align: center;font-family: Poppins, sans-serif;box-sizing: border-box;cursor: text; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-WGswkTuar3 { font-size: 24px;font-weight: inherit;overflow-wrap: break-word;margin-top: 0px;margin-right: 0px;margin-bottom: 32px;margin-left: 0px;color: rgb(25, 29, 58);text-align: center;font-family: Poppins, sans-serif;box-sizing: border-box;cursor: text; } } @media (min-width: 1200px) { .gp-component-id-WGswkTuar3 { font-size: 24px;font-weight: inherit;overflow-wrap: break-word;margin-top: 0px;margin-right: 0px;margin-bottom: 32px;margin-left: 0px;color: rgb(25, 29, 58);text-align: center;font-family: Poppins, sans-serif;box-sizing: border-box;cursor: text; } }

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

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

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

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

 @media (max-width: 639px) { .gp-component-id-IZo0_o14v { margin-bottom: 64px;padding-left: 8px;padding-right: 8px;width: 100%; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-IZo0_o14v { margin-bottom: 64px;padding-left: 0px;padding-right: 0px;width: 100%; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-IZo0_o14v { margin-bottom: 64px;padding-left: 128px;padding-right: 128px;width: 100%; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-IZo0_o14v { margin-bottom: 64px;padding-left: 96px;padding-right: 96px;width: 100%; } } @media (min-width: 1200px) { .gp-component-id-IZo0_o14v { margin-bottom: 64px;padding-left: 256px;padding-right: 256px;width: 100%; } }

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

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

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

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

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

 @media (max-width: 639px) { .gp-component-id-5h_45P2001 { margin-bottom: 30px;padding-left: 8px;padding-right: 8px;width: 100%; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-5h_45P2001 { margin-bottom: 30px;padding-left: 0px;padding-right: 0px;width: 100%; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-5h_45P2001 { margin-bottom: 30px;padding-left: 128px;padding-right: 128px;width: 100%; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-5h_45P2001 { margin-bottom: 30px;padding-left: 96px;padding-right: 96px;width: 100%; } } @media (min-width: 1200px) { .gp-component-id-5h_45P2001 { margin-bottom: 30px;padding-left: 256px;padding-right: 256px;width: 100%; } }

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

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

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

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

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

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

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

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

 @media (max-width: 639px) { .gp-component-id-gkQcyiX7w { font-size: 18px;color: rgb(32, 45, 60);margin-bottom: 16px;align-items: flex-start;display: flex; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-gkQcyiX7w { font-size: 18px;color: rgb(32, 45, 60);margin-bottom: 16px;align-items: flex-start;display: flex; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-gkQcyiX7w { font-size: 18px;color: rgb(32, 45, 60);margin-bottom: 16px;align-items: flex-start;display: flex; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-gkQcyiX7w { font-size: 18px;color: rgb(32, 45, 60);margin-bottom: 16px;align-items: flex-start;display: flex; } } @media (min-width: 1200px) { .gp-component-id-gkQcyiX7w { font-size: 18px;color: rgb(32, 45, 60);margin-bottom: 16px;align-items: flex-start;display: flex; } }

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

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

 .gp-component-id-QC7fIHgzRX { font-size: 24px;color: rgb(40, 167, 68);line-height: 1;margin-right: 16px;margin-top: 0px;display: inline-block; } @media (max-width: 639px) { .gp-component-id-QC7fIHgzRX { font-size: 24px;color: rgb(40, 167, 68);line-height: 1;margin-right: 16px;margin-top: 0px;display: inline-block; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-QC7fIHgzRX { font-size: 24px;color: rgb(40, 167, 68);line-height: 1;margin-right: 16px;margin-top: 0px;display: inline-block; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-QC7fIHgzRX { font-size: 24px;color: rgb(40, 167, 68);line-height: 1;margin-right: 16px;margin-top: 0px;display: inline-block; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-QC7fIHgzRX { font-size: 24px;color: rgb(40, 167, 68);line-height: 1;margin-right: 16px;margin-top: 0px;display: inline-block; } } @media (min-width: 1200px) { .gp-component-id-QC7fIHgzRX { font-size: 24px;color: rgb(40, 167, 68);line-height: 1;margin-right: 16px;margin-top: 0px;display: inline-block; } }

 .gp-component-id-MK0aXrRNZ { font-size: 18px;color: rgb(32, 45, 60);margin-bottom: 16px;align-items: flex-start;display: flex; } @media (max-width: 639px) { .gp-component-id-MK0aXrRNZ { font-size: 18px;color: rgb(32, 45, 60);margin-bottom: 16px;align-items: flex-start;display: flex; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-MK0aXrRNZ { font-size: 18px;color: rgb(32, 45, 60);margin-bottom: 16px;align-items: flex-start;display: flex; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-MK0aXrRNZ { font-size: 18px;color: rgb(32, 45, 60);margin-bottom: 16px;align-items: flex-start;display: flex; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-MK0aXrRNZ { font-size: 18px;color: rgb(32, 45, 60);margin-bottom: 16px;align-items: flex-start;display: flex; } } @media (min-width: 1200px) { .gp-component-id-MK0aXrRNZ { font-size: 18px;color: rgb(32, 45, 60);margin-bottom: 16px;align-items: flex-start;display: flex; } }

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

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

 .gp-component-id-CyMOOH1Kt { font-size: 24px;color: rgb(40, 167, 68);line-height: 1;margin-right: 16px;margin-top: 0px;display: inline-block; } @media (max-width: 639px) { .gp-component-id-CyMOOH1Kt { font-size: 24px;color: rgb(40, 167, 68);line-height: 1;margin-right: 16px;margin-top: 0px;display: inline-block; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-CyMOOH1Kt { font-size: 24px;color: rgb(40, 167, 68);line-height: 1;margin-right: 16px;margin-top: 0px;display: inline-block; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-CyMOOH1Kt { font-size: 24px;color: rgb(40, 167, 68);line-height: 1;margin-right: 16px;margin-top: 0px;display: inline-block; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-CyMOOH1Kt { font-size: 24px;color: rgb(40, 167, 68);line-height: 1;margin-right: 16px;margin-top: 0px;display: inline-block; } } @media (min-width: 1200px) { .gp-component-id-CyMOOH1Kt { font-size: 24px;color: rgb(40, 167, 68);line-height: 1;margin-right: 16px;margin-top: 0px;display: inline-block; } }

 .gp-component-id-fmeNeG8m9 { font-size: 18px;color: rgb(32, 45, 60);margin-bottom: 16px;align-items: flex-start;display: flex; } @media (max-width: 639px) { .gp-component-id-fmeNeG8m9 { font-size: 18px;color: rgb(32, 45, 60);margin-bottom: 16px;align-items: flex-start;display: flex; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-fmeNeG8m9 { font-size: 18px;color: rgb(32, 45, 60);margin-bottom: 16px;align-items: flex-start;display: flex; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-fmeNeG8m9 { font-size: 18px;color: rgb(32, 45, 60);margin-bottom: 16px;align-items: flex-start;display: flex; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-fmeNeG8m9 { font-size: 18px;color: rgb(32, 45, 60);margin-bottom: 16px;align-items: flex-start;display: flex; } } @media (min-width: 1200px) { .gp-component-id-fmeNeG8m9 { font-size: 18px;color: rgb(32, 45, 60);margin-bottom: 16px;align-items: flex-start;display: flex; } }

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

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

 .gp-component-id-xakeqZnT5d { font-size: 24px;color: rgb(40, 167, 68);line-height: 1;margin-right: 16px;margin-top: 0px;display: inline-block; } @media (max-width: 639px) { .gp-component-id-xakeqZnT5d { font-size: 24px;color: rgb(40, 167, 68);line-height: 1;margin-right: 16px;margin-top: 0px;display: inline-block; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-xakeqZnT5d { font-size: 24px;color: rgb(40, 167, 68);line-height: 1;margin-right: 16px;margin-top: 0px;display: inline-block; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-xakeqZnT5d { font-size: 24px;color: rgb(40, 167, 68);line-height: 1;margin-right: 16px;margin-top: 0px;display: inline-block; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-xakeqZnT5d { font-size: 24px;color: rgb(40, 167, 68);line-height: 1;margin-right: 16px;margin-top: 0px;display: inline-block; } } @media (min-width: 1200px) { .gp-component-id-xakeqZnT5d { font-size: 24px;color: rgb(40, 167, 68);line-height: 1;margin-right: 16px;margin-top: 0px;display: inline-block; } }

 .gp-component-id-NQFPXaMxZ { font-size: 18px;color: rgb(32, 45, 60);margin-bottom: 16px;align-items: flex-start;display: flex; } @media (max-width: 639px) { .gp-component-id-NQFPXaMxZ { font-size: 18px;color: rgb(32, 45, 60);margin-bottom: 16px;align-items: flex-start;display: flex; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-NQFPXaMxZ { font-size: 18px;color: rgb(32, 45, 60);margin-bottom: 16px;align-items: flex-start;display: flex; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-NQFPXaMxZ { font-size: 18px;color: rgb(32, 45, 60);margin-bottom: 16px;align-items: flex-start;display: flex; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-NQFPXaMxZ { font-size: 18px;color: rgb(32, 45, 60);margin-bottom: 16px;align-items: flex-start;display: flex; } } @media (min-width: 1200px) { .gp-component-id-NQFPXaMxZ { font-size: 18px;color: rgb(32, 45, 60);margin-bottom: 16px;align-items: flex-start;display: flex; } }

 .gp-component-id-pMOw3QI1d { padding-right: 0px;list-style-position: inside;margin-top: 0px;margin-right: 0px;margin-left: 0px;margin-bottom: 16px;padding-left: 0px;padding-top: 16px;padding-bottom: 16px;flex-direction: column;align-items: center;display: flex;list-style-type: inherit;min-height: 120px; } @media (max-width: 639px) { .gp-component-id-pMOw3QI1d { padding-right: 0px;list-style-position: inside;margin-top: 0px;margin-right: 0px;margin-left: 0px;margin-bottom: 16px;padding-left: 0px;padding-top: 16px;padding-bottom: 16px;flex-direction: column;align-items: center;display: flex;list-style-type: inherit;min-height: 120px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-pMOw3QI1d { padding-right: 0px;list-style-position: inside;margin-top: 0px;margin-right: 0px;margin-left: 0px;margin-bottom: 16px;padding-left: 0px;padding-top: 16px;padding-bottom: 16px;flex-direction: column;align-items: center;display: flex;list-style-type: inherit;min-height: 120px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-pMOw3QI1d { padding-right: 0px;list-style-position: inside;margin-top: 0px;margin-right: 0px;margin-left: 0px;margin-bottom: 16px;padding-left: 0px;padding-top: 16px;padding-bottom: 16px;flex-direction: column;align-items: center;display: flex;list-style-type: inherit;min-height: 120px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-pMOw3QI1d { padding-right: 0px;list-style-position: inside;margin-top: 0px;margin-right: 0px;margin-left: 0px;margin-bottom: 16px;padding-left: 0px;padding-top: 16px;padding-bottom: 16px;flex-direction: column;align-items: center;display: flex;list-style-type: inherit;min-height: 120px; } } @media (min-width: 1200px) { .gp-component-id-pMOw3QI1d { padding-right: 0px;list-style-position: inside;margin-top: 0px;margin-right: 0px;margin-left: 0px;margin-bottom: 16px;padding-left: 0px;padding-top: 16px;padding-bottom: 16px;flex-direction: column;align-items: center;display: flex;list-style-type: inherit;min-height: 120px; } }

 .gp-component-id-kA9zVum_Mh { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word; } @media (max-width: 639px) { .gp-component-id-kA9zVum_Mh { margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Poppins, sans-serif;line-height: 1.5;text-align: left;font-weight: 400;font-size: 16px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-kA9zVum_Mh { margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Poppins, sans-serif;line-height: 1.5;text-align: center;font-weight: 400;font-size: 16px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-kA9zVum_Mh { margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Poppins, sans-serif;line-height: 1.5;text-align: left;font-weight: 400;font-size: 16px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-kA9zVum_Mh { margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Poppins, sans-serif;line-height: 1.5;text-align: left;font-weight: 400;font-size: 16px; } } @media (min-width: 1200px) { .gp-component-id-kA9zVum_Mh { margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Poppins, sans-serif;line-height: 1.5;text-align: left;font-weight: 400;font-size: 16px; } }

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

 .gp-component-id-iQWsGGfg1e { 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-iQWsGGfg1e { margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-weight: 700;font-size: 24px;box-sizing: border-box;cursor: text;font-family: Poppins, sans-serif;text-align: left;color: rgb(25, 29, 58); } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-iQWsGGfg1e { margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-weight: 700;font-size: 24px;box-sizing: border-box;cursor: text;font-family: Poppins, sans-serif;text-align: center;color: rgb(25, 29, 58); } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-iQWsGGfg1e { margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-weight: 700;font-size: 24px;box-sizing: border-box;cursor: text;font-family: Poppins, sans-serif;text-align: left;color: rgb(25, 29, 58); } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-iQWsGGfg1e { margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-weight: 700;font-size: 24px;box-sizing: border-box;cursor: text;font-family: Poppins, sans-serif;text-align: center;color: rgb(25, 29, 58); } } @media (min-width: 1200px) { .gp-component-id-iQWsGGfg1e { margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;font-weight: 700;font-size: 24px;box-sizing: border-box;cursor: text;font-family: Poppins, sans-serif;text-align: center;color: rgb(25, 29, 58); } }

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

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

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

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

 .gp-component-id-vlDmj7Lq5A { width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex; } @media (max-width: 639px) { .gp-component-id-vlDmj7Lq5A { width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-vlDmj7Lq5A { width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;margin-bottom: 16px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-vlDmj7Lq5A { width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;margin-bottom: 16px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-vlDmj7Lq5A { width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;margin-bottom: 16px; } } @media (min-width: 1200px) { .gp-component-id-vlDmj7Lq5A { width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;margin-bottom: 16px; } }

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

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

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

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

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

 .gp-component-id-aWkjWAkhSk { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word; } @media (max-width: 639px) { .gp-component-id-aWkjWAkhSk { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;padding-right: 16px;padding-left: 16px;font-family: Poppins, sans-serif;line-height: 1.5;text-align: center;color: rgb(120, 136, 155);font-weight: 400;font-size: 16px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-aWkjWAkhSk { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;padding-right: 16px;padding-left: 16px;font-family: Poppins, sans-serif;line-height: 1.5;text-align: center;color: rgb(120, 136, 155);font-weight: 400;font-size: 20px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-aWkjWAkhSk { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;padding-right: 16px;padding-left: 16px;font-family: Poppins, sans-serif;line-height: 1.5;text-align: center;color: rgb(120, 136, 155);font-weight: 400;font-size: 20px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-aWkjWAkhSk { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;padding-right: 16px;padding-left: 16px;font-family: Poppins, sans-serif;line-height: 1.5;text-align: center;color: rgb(120, 136, 155);font-weight: 400;font-size: 20px; } } @media (min-width: 1200px) { .gp-component-id-aWkjWAkhSk { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;padding-right: 16px;padding-left: 16px;font-family: Poppins, sans-serif;line-height: 1.5;text-align: center;color: rgb(120, 136, 155);font-weight: 400;font-size: 20px; } }

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

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

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

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

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

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

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

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

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

 @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-88EAVTIYa0 { position: static !important; } } @media (min-width: 1200px) { .gp-component-id-88EAVTIYa0 { position: static !important; } }

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

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

 .gp-component-id-PcBqyBxlUv { display: flex;align-items: center; } @media (max-width: 639px) { .gp-component-id-PcBqyBxlUv { display: flex;align-items: center; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-PcBqyBxlUv { display: flex;align-items: center; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-PcBqyBxlUv { display: flex;align-items: center; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-PcBqyBxlUv { display: flex;align-items: center;position: static !important; } } @media (min-width: 1200px) { .gp-component-id-PcBqyBxlUv { display: flex;align-items: center;position: static !important; } }

 @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-dYxuQ_ZoOl { position: static !important; } } @media (min-width: 1200px) { .gp-component-id-dYxuQ_ZoOl { position: static !important; } }

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

 @media (max-width: 639px) { .gp-component-id-h1vjLYgFyx { background-color: rgb(17, 45, 78);padding-left: 16px;padding-right: 16px;padding-top: 20px;padding-bottom: 20px;position: relative; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-h1vjLYgFyx { background-color: rgb(17, 45, 78);padding-left: 16px;padding-right: 16px;padding-top: 20px;padding-bottom: 20px;position: relative; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-h1vjLYgFyx { background-color: rgb(17, 45, 78);padding-left: 16px;padding-right: 16px;padding-top: 20px;padding-bottom: 20px;position: relative; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-h1vjLYgFyx { background-color: rgb(17, 45, 78);padding-left: 16px;padding-right: 16px;padding-top: 20px;padding-bottom: 20px;position: relative; } } @media (min-width: 1200px) { .gp-component-id-h1vjLYgFyx { background-color: rgb(17, 45, 78);padding-left: 16px;padding-right: 16px;padding-top: 20px;padding-bottom: 20px;position: relative; } }

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

 .gp-component-id-B26m80hIoN { z-index: 20 !important;background-color: rgb(240, 242, 244);position: relative;min-height: 50px; } @media (max-width: 639px) { .gp-component-id-B26m80hIoN { z-index: 20 !important;background-color: rgb(240, 242, 244);position: relative;min-height: 50px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-B26m80hIoN { z-index: 20 !important;background-color: rgb(240, 242, 244);position: relative;min-height: 50px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-B26m80hIoN { z-index: 20 !important;background-color: rgb(240, 242, 244);position: relative;min-height: 50px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-B26m80hIoN { z-index: 20 !important;background-color: rgb(240, 242, 244);position: relative;min-height: 50px; } } @media (min-width: 1200px) { .gp-component-id-B26m80hIoN { z-index: 20 !important;background-color: rgb(240, 242, 244);position: relative;min-height: 50px; } }

