{"id":1050,"date":"2025-05-15T20:20:35","date_gmt":"2025-05-15T20:20:35","guid":{"rendered":"https:\/\/britishswimschool.com\/columbiasc\/?page_id=1050"},"modified":"2025-09-30T02:11:41","modified_gmt":"2025-09-30T02:11:41","slug":"find-a-lesson","status":"publish","type":"page","link":"https:\/\/britishswimschool.com\/columbia-lexington\/find-a-lesson\/","title":{"rendered":"Find a Lesson"},"content":{"rendered":"\t\t<div data-elementor-type=\"wp-page\" data-elementor-id=\"1050\" class=\"elementor elementor-1050\" data-elementor-post-type=\"page\">\n\t\t\t\t<div data-particle_enable=\"false\" data-particle-mobile-disabled=\"false\" class=\"elementor-element elementor-element-75c909c e-flex e-con-boxed e-con e-parent\" data-id=\"75c909c\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;jet_parallax_layout_list&quot;:[],&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div data-particle_enable=\"false\" data-particle-mobile-disabled=\"false\" class=\"elementor-element elementor-element-bf35cd4 e-con-full e-flex e-con e-child\" data-id=\"bf35cd4\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;jet_parallax_layout_list&quot;:[]}\">\n\t\t<div data-particle_enable=\"false\" data-particle-mobile-disabled=\"false\" class=\"elementor-element elementor-element-f9ba366 e-con-full e-flex e-con e-child\" data-id=\"f9ba366\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;jet_parallax_layout_list&quot;:[]}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-1b5d2eb elementor-widget__width-inherit elementor-headline--style-highlight elementor-widget elementor-widget-animated-headline\" data-id=\"1b5d2eb\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;marker&quot;:&quot;underline_zigzag&quot;,&quot;highlighted_text&quot;:&quot;Start Here&quot;,&quot;headline_style&quot;:&quot;highlight&quot;,&quot;loop&quot;:&quot;yes&quot;,&quot;highlight_animation_duration&quot;:1200,&quot;highlight_iteration_delay&quot;:8000}\" data-widget_type=\"animated-headline.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<h3 class=\"elementor-headline\">\n\t\t\t\t\t<span class=\"elementor-headline-plain-text elementor-headline-text-wrapper\">Safer Swimmers<\/span>\n\t\t\t\t<span class=\"elementor-headline-dynamic-wrapper elementor-headline-text-wrapper\">\n\t\t\t\t\t<span class=\"elementor-headline-dynamic-text elementor-headline-text-active\">Start Here<\/span>\n\t\t\t\t<\/span>\n\t\t\t\t<\/h3>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-7cf0473 elementor-widget__width-inherit program-wizard eael-gravity-form-button-custom elementor-widget elementor-widget-eael-gravity-form\" data-id=\"7cf0473\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"eael-gravity-form.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t<div class=\"eael-contact-form eael-gravity-form eael-contact-form-align-center\">\n\t\t        \n            <script type=\"text\/javascript\">\n                \/* EA Gravity Forms - fallback dispatch of GF's per-form post-render event.\n                 *\n                 * GF normally dispatches this itself from GFFormDisplay::footer_init_scripts().\n                 * In render contexts where that never runs, GF add-ons that bind to\n                 * `gform\/post_render` - e.g. the reCAPTCHA Add-On v2.2.2+, which registers its\n                 * v3 token submission filter there - are never initialised.\n                 *\n                 * Dispatching unconditionally is not safe. GF's multi-file uploader calls\n                 * `new plupload.Uploader()` on every post_render with no idempotency guard\n                 * (gravityforms\/js\/gravityforms.js), so a second dispatch binds a second\n                 * uploader to the same field and every selected file is submitted twice. GF's\n                 * own guard is function-local to the script it prints and cannot be read from\n                 * here, so we watch for the event instead and only step in if it never comes.\n                 *\n                 * This is the single fallback for this widget. Tickets 84410 and 84529 each\n                 * added one independently and both were merged, leaving two mutually-blind\n                 * shims that raced (issue #894). Do not add another - extend this one, and\n                 * keep the `window.__eaelGfPostRender*` flags as the shared source of truth.\n                 *\n                 * Printed before the form markup so the listeners are in place ahead of any\n                 * GF init script for this form, whether printed inline or in the footer.\n                 *\/\n                ( function () {\n                    var formId    = 10;\n                    var seenFlag  = '__eaelGfPostRenderSeen_'  + formId; \/\/ dispatched, by anyone\n                    var boundFlag = '__eaelGfPostRenderBound_' + formId; \/\/ this shim is installed\n\n                    if ( window[ boundFlag ] ) {\n                        return;\n                    }\n                    window[ boundFlag ] = true;\n\n                    function markSeen( id ) {\n                        if ( parseInt( id, 10 ) === formId ) {\n                            window[ seenFlag ] = true;\n                        }\n                    }\n\n                    \/\/ triggerPostRenderEvents() always fires the jQuery event first and the\n                    \/\/ gform.utils one after, whoever calls it - so between them these observe\n                    \/\/ GF core's own dispatch as well as any other caller's.\n                    if ( window.jQuery ) {\n                        window.jQuery( document ).on( 'gform_post_render', function ( event, id ) {\n                            markSeen( typeof id !== 'undefined' ? id : formId );\n                        } );\n                    }\n                    if ( window.gform && window.gform.utils\n                         && typeof window.gform.utils.addEventListener === 'function' ) {\n                        window.gform.utils.addEventListener( 'gform\/post_render', function ( e ) {\n                            markSeen( e && e.detail && typeof e.detail.formId !== 'undefined'\n                                      ? e.detail.formId : formId );\n                        } );\n                    }\n\n                    function maybeDispatch() {\n                        if ( window[ seenFlag ] ) {\n                            return;\n                        }\n\n                        \/\/ GF leaves this marker beside a hidden form while it waits for the\n                        \/\/ form to become visible, and removes it once it dispatches. Still\n                        \/\/ present means GF's script did run and will dispatch on its own -\n                        \/\/ firing now is the double-dispatch that duplicates file uploads.\n                        if ( document.getElementById( 'gform_visibility_test_' + formId ) ) {\n                            return;\n                        }\n\n                        if ( ! window.gform || ! window.gform.core\n                             || typeof window.gform.core.triggerPostRenderEvents !== 'function' ) {\n                            return;\n                        }\n\n                        var pageInput   = document.getElementById( 'gform_source_page_number_' + formId );\n                        var currentPage = pageInput ? parseInt( pageInput.value, 10 ) : 1;\n\n                        window[ seenFlag ] = true;\n                        window.gform.core.triggerPostRenderEvents( formId, currentPage || 1 );\n                    }\n\n                    \/\/ Wait for the window load event and then for GF's own gate, which needs\n                    \/\/ DOMContentLoaded plus its main and theme script events. Registering the\n                    \/\/ callback this late puts it behind GF's in the queue, and the timeout\n                    \/\/ puts it in a later task again, so GF always gets to dispatch first.\n                    function schedule() {\n                        if ( window.gform && typeof window.gform.initializeOnLoaded === 'function' ) {\n                            window.gform.initializeOnLoaded( function () {\n                                setTimeout( maybeDispatch, 0 );\n                            } );\n                        } else {\n                            setTimeout( maybeDispatch, 0 );\n                        }\n                    }\n\n                    if ( document.readyState === 'complete' ) {\n                        schedule();\n                    } else {\n                        window.addEventListener( 'load', schedule );\n                    }\n                } )();\n            <\/script>\n\n            <script>\nvar gform;gform||(document.addEventListener(\"gform_main_scripts_loaded\",function(){gform.scriptsLoaded=!0}),document.addEventListener(\"gform\/theme\/scripts_loaded\",function(){gform.themeScriptsLoaded=!0}),window.addEventListener(\"DOMContentLoaded\",function(){gform.domLoaded=!0}),gform={domLoaded:!1,scriptsLoaded:!1,themeScriptsLoaded:!1,isFormEditor:()=>\"function\"==typeof InitializeEditor,callIfLoaded:function(o){return!(!gform.domLoaded||!gform.scriptsLoaded||!gform.themeScriptsLoaded&&!gform.isFormEditor()||(gform.isFormEditor()&&console.warn(\"The use of gform.initializeOnLoaded() is deprecated in the form editor context and will be removed in Gravity Forms 3.1.\"),o(),0))},initializeOnLoaded:function(o){gform.callIfLoaded(o)||(document.addEventListener(\"gform_main_scripts_loaded\",()=>{gform.scriptsLoaded=!0,gform.callIfLoaded(o)}),document.addEventListener(\"gform\/theme\/scripts_loaded\",()=>{gform.themeScriptsLoaded=!0,gform.callIfLoaded(o)}),window.addEventListener(\"DOMContentLoaded\",()=>{gform.domLoaded=!0,gform.callIfLoaded(o)}))},hooks:{action:{},filter:{}},addAction:function(o,r,e,t){gform.addHook(\"action\",o,r,e,t)},addFilter:function(o,r,e,t){gform.addHook(\"filter\",o,r,e,t)},doAction:function(o){gform.doHook(\"action\",o,arguments)},applyFilters:function(o){return gform.doHook(\"filter\",o,arguments)},removeAction:function(o,r){gform.removeHook(\"action\",o,r)},removeFilter:function(o,r,e){gform.removeHook(\"filter\",o,r,e)},addHook:function(o,r,e,t,n){null==gform.hooks[o][r]&&(gform.hooks[o][r]=[]);var d=gform.hooks[o][r];null==n&&(n=r+\"_\"+d.length),gform.hooks[o][r].push({tag:n,callable:e,priority:t=null==t?10:t})},doHook:function(r,o,e){var t;if(e=Array.prototype.slice.call(e,1),null!=gform.hooks[r][o]&&((o=gform.hooks[r][o]).sort(function(o,r){return o.priority-r.priority}),o.forEach(function(o){\"function\"!=typeof(t=o.callable)&&(t=window[t]),\"action\"==r?t.apply(null,e):e[0]=t.apply(null,e)})),\"filter\"==r)return e[0]},removeHook:function(o,r,t,n){var e;null!=gform.hooks[o][r]&&(e=(e=gform.hooks[o][r]).filter(function(o,r,e){return!!(null!=n&&n!=o.tag||null!=t&&t!=o.priority)}),gform.hooks[o][r]=e)}});\n<\/script>\n\n                <div class='gf_browser_gecko gform_wrapper gform-theme gform-theme--foundation gform-theme--framework gform-theme--orbital' data-form-theme='orbital' data-form-index='0' id='gform_wrapper_10' style='display:none'><style>#gform_wrapper_10[data-form-index=\"0\"].gform-theme{--gf-color-primary: #204ce5;--gf-color-primary-rgb: 32, 76, 229;--gf-color-primary-contrast: #fff;--gf-color-primary-contrast-rgb: 255, 255, 255;--gf-color-primary-darker: #001AB3;--gf-color-primary-lighter: #527EFF;--gf-color-secondary: #fff;--gf-color-secondary-rgb: 255, 255, 255;--gf-color-secondary-contrast: #112337;--gf-color-secondary-contrast-rgb: 17, 35, 55;--gf-color-secondary-darker: #F5F5F5;--gf-color-secondary-lighter: #FFFFFF;--gf-color-out-ctrl-light: rgba(17, 35, 55, 0.1);--gf-color-out-ctrl-light-rgb: 17, 35, 55;--gf-color-out-ctrl-light-darker: rgba(104, 110, 119, 0.35);--gf-color-out-ctrl-light-lighter: #F5F5F5;--gf-color-out-ctrl-dark: #585e6a;--gf-color-out-ctrl-dark-rgb: 88, 94, 106;--gf-color-out-ctrl-dark-darker: #112337;--gf-color-out-ctrl-dark-lighter: rgba(17, 35, 55, 0.65);--gf-color-in-ctrl: #fff;--gf-color-in-ctrl-rgb: 255, 255, 255;--gf-color-in-ctrl-contrast: #112337;--gf-color-in-ctrl-contrast-rgb: 17, 35, 55;--gf-color-in-ctrl-darker: #F5F5F5;--gf-color-in-ctrl-lighter: #FFFFFF;--gf-color-in-ctrl-primary: #204ce5;--gf-color-in-ctrl-primary-rgb: 32, 76, 229;--gf-color-in-ctrl-primary-contrast: #fff;--gf-color-in-ctrl-primary-contrast-rgb: 255, 255, 255;--gf-color-in-ctrl-primary-darker: #001AB3;--gf-color-in-ctrl-primary-lighter: #527EFF;--gf-color-in-ctrl-light: rgba(17, 35, 55, 0.1);--gf-color-in-ctrl-light-rgb: 17, 35, 55;--gf-color-in-ctrl-light-darker: rgba(104, 110, 119, 0.35);--gf-color-in-ctrl-light-lighter: #F5F5F5;--gf-color-in-ctrl-dark: #585e6a;--gf-color-in-ctrl-dark-rgb: 88, 94, 106;--gf-color-in-ctrl-dark-darker: #112337;--gf-color-in-ctrl-dark-lighter: rgba(17, 35, 55, 0.65);--gf-radius: 3px;--gf-font-size-secondary: 14px;--gf-font-size-tertiary: 13px;--gf-icon-ctrl-number: url(\"data:image\/svg+xml,%3Csvg width='8' height='14' viewBox='0 0 8 14' fill='none' xmlns='http:\/\/www.w3.org\/2000\/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M4 0C4.26522 5.96046e-08 4.51957 0.105357 4.70711 0.292893L7.70711 3.29289C8.09763 3.68342 8.09763 4.31658 7.70711 4.70711C7.31658 5.09763 6.68342 5.09763 6.29289 4.70711L4 2.41421L1.70711 4.70711C1.31658 5.09763 0.683417 5.09763 0.292893 4.70711C-0.0976311 4.31658 -0.097631 3.68342 0.292893 3.29289L3.29289 0.292893C3.48043 0.105357 3.73478 0 4 0ZM0.292893 9.29289C0.683417 8.90237 1.31658 8.90237 1.70711 9.29289L4 11.5858L6.29289 9.29289C6.68342 8.90237 7.31658 8.90237 7.70711 9.29289C8.09763 9.68342 8.09763 10.3166 7.70711 10.7071L4.70711 13.7071C4.31658 14.0976 3.68342 14.0976 3.29289 13.7071L0.292893 10.7071C-0.0976311 10.3166 -0.0976311 9.68342 0.292893 9.29289Z' fill='rgba(17, 35, 55, 0.65)'\/%3E%3C\/svg%3E\");--gf-icon-ctrl-select: url(\"data:image\/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http:\/\/www.w3.org\/2000\/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M0.292893 0.292893C0.683417 -0.097631 1.31658 -0.097631 1.70711 0.292893L5 3.58579L8.29289 0.292893C8.68342 -0.0976311 9.31658 -0.0976311 9.70711 0.292893C10.0976 0.683417 10.0976 1.31658 9.70711 1.70711L5.70711 5.70711C5.31658 6.09763 4.68342 6.09763 4.29289 5.70711L0.292893 1.70711C-0.0976311 1.31658 -0.0976311 0.683418 0.292893 0.292893Z' fill='rgba(17, 35, 55, 0.65)'\/%3E%3C\/svg%3E\");--gf-icon-ctrl-search: url(\"data:image\/svg+xml,%3Csvg width='640' height='640' xmlns='http:\/\/www.w3.org\/2000\/svg'%3E%3Cpath d='M256 128c-70.692 0-128 57.308-128 128 0 70.691 57.308 128 128 128 70.691 0 128-57.309 128-128 0-70.692-57.309-128-128-128zM64 256c0-106.039 85.961-192 192-192s192 85.961 192 192c0 41.466-13.146 79.863-35.498 111.248l154.125 154.125c12.496 12.496 12.496 32.758 0 45.254s-32.758 12.496-45.254 0L367.248 412.502C335.862 434.854 297.467 448 256 448c-106.039 0-192-85.962-192-192z' fill='rgba(17, 35, 55, 0.65)'\/%3E%3C\/svg%3E\");--gf-label-space-y-secondary: var(--gf-label-space-y-md-secondary);--gf-ctrl-border-color: #686e77;--gf-ctrl-size: var(--gf-ctrl-size-md);--gf-ctrl-label-color-primary: #112337;--gf-ctrl-label-color-secondary: #112337;--gf-ctrl-choice-size: var(--gf-ctrl-choice-size-md);--gf-ctrl-checkbox-check-size: var(--gf-ctrl-checkbox-check-size-md);--gf-ctrl-radio-check-size: var(--gf-ctrl-radio-check-size-md);--gf-ctrl-btn-font-size: var(--gf-ctrl-btn-font-size-md);--gf-ctrl-btn-padding-x: var(--gf-ctrl-btn-padding-x-md);--gf-ctrl-btn-size: var(--gf-ctrl-btn-size-md);--gf-ctrl-btn-border-color-secondary: #686e77;--gf-ctrl-btn-bg-color-hover-tertiary: #EBEBEB;--gf-field-img-choice-size: var(--gf-field-img-choice-size-md);--gf-field-img-choice-card-space: var(--gf-field-img-choice-card-space-md);--gf-field-img-choice-check-ind-size: var(--gf-field-img-choice-check-ind-size-md);--gf-field-img-choice-check-ind-icon-size: var(--gf-field-img-choice-check-ind-icon-size-md);--gf-field-pg-steps-number-color: rgba(17, 35, 55, 0.8);}<\/style><form method='post' enctype='multipart\/form-data' target='gform_ajax_frame_10' id='gform_10'  action='\/columbia-lexington\/wp-json\/wp\/v2\/pages\/1050' data-formid='10' novalidate>\n                        <div class='gform-body gform_body'><div id='gform_page_10_1' class='gform_page ' data-js='page-field-id-0' >\n\t\t\t\t\t<div class='gform_page_fields'><div id='gform_fields_10' class='gform_fields top_label form_sublabel_below description_below validation_below'><div id=\"field_10_16\" class=\"gfield gfield--type-text gfield--input-type-text gfield--width-full field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_hidden\"  ><div class=\"admin-hidden-markup\"><i class=\"gform-icon gform-icon--hidden\" aria-hidden=\"true\" title=\"This field is hidden when viewing the form\"><\/i><span>This field is hidden when viewing the form<\/span><\/div><label class='gfield_label gform-field-label' for='input_10_16'><span class='gform-field-label__text'>Franchise ID<\/span><\/label><div class='ginput_container ginput_container_text'><input name='input_16' id='input_10_16' type='text' value='554645' class='large'      aria-invalid=\"false\"   \/><\/div><\/div><div id=\"field_10_20\" class=\"gfield gfield--type-text gfield--input-type-text gfield--width-full field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_hidden\"  ><div class=\"admin-hidden-markup\"><i class=\"gform-icon gform-icon--hidden\" aria-hidden=\"true\" title=\"This field is hidden when viewing the form\"><\/i><span>This field is hidden when viewing the form<\/span><\/div><label class='gfield_label gform-field-label' for='input_10_20'><span class='gform-field-label__text'>Pool ID<\/span><\/label><div class='ginput_container ginput_container_text'><input name='input_20' id='input_10_20' type='text' value='' class='large'      aria-invalid=\"false\"   \/><\/div><\/div><fieldset id=\"field_10_1\" class=\"gfield gfield--type-radio gfield--type-choice gfield--input-type-radio gf_list_2col field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible gfield--choice-align-vertical\"  ><legend class='gfield_label gform-field-label' ><span class='gform-field-label__text'>Child or adult?<\/span><\/legend><div class='ginput_container ginput_container_radio'><div class='gfield_radio' id='input_10_1'>\n\t\t\t<div class='gchoice gchoice_10_1_0'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_1' type='radio' value='Child'  id='choice_10_1_0' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_10_1_0' id='label_10_1_0' class='gform-field-label gform-field-label--type-inline'>Child<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_10_1_1'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_1' type='radio' value='Adult'  id='choice_10_1_1' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_10_1_1' id='label_10_1_1' class='gform-field-label gform-field-label--type-inline'>Adult<\/label>\n\t\t\t<\/div><\/div><\/div><\/fieldset><\/div>\n                    <\/div>\n                    <div class='gform-page-footer gform_page_footer top_label'>\n                         <button type='button' id='gform_next_button_10_35' class='gform_next_button gform-theme-button button' onclick='gform.submission.handleButtonClick(this);' data-submission-type='next' >Next<\/button> \n                    <\/div>\n                <\/div>\n                <div id='gform_page_10_2' class='gform_page' data-js='page-field-id-35' style='display:none;'>\n                    <div class='gform_page_fields'>\n                        <div id='gform_fields_10_2' class='gform_fields top_label form_sublabel_below description_below validation_below'><fieldset id=\"field_10_4\" class=\"gfield gfield--type-radio gfield--type-choice gfield--input-type-radio gfield--width-full gf_list_2col field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible gfield--choice-align-vertical\"  ><legend class='gfield_label gform-field-label' ><span class='gform-field-label__text'>How old is your child?<\/span><\/legend><div class='ginput_container ginput_container_radio'><div class='gfield_radio' id='input_10_4'>\n\t\t\t<div class='gchoice gchoice_10_4_0'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_4' type='radio' value='3 - 24 months'  id='choice_10_4_0' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_10_4_0' id='label_10_4_0' class='gform-field-label gform-field-label--type-inline'>3 - 24 months<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_10_4_1'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_4' type='radio' value='24 - 36 months'  id='choice_10_4_1' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_10_4_1' id='label_10_4_1' class='gform-field-label gform-field-label--type-inline'>24 - 36 months<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_10_4_2'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_4' type='radio' value='3 - 11 years'  id='choice_10_4_2' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_10_4_2' id='label_10_4_2' class='gform-field-label gform-field-label--type-inline'>3 - 11 years<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_10_4_3'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_4' type='radio' value='12 - 17 years'  id='choice_10_4_3' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_10_4_3' id='label_10_4_3' class='gform-field-label gform-field-label--type-inline'>12 - 17 years<\/label>\n\t\t\t<\/div><\/div><\/div><\/fieldset><\/div>\n                    <\/div>\n                    <div class='gform-page-footer gform_page_footer top_label'>\n                        <button type='button' id='gform_previous_button_10_87' class='gform_previous_button gform-theme-button gform-theme-button--secondary button' onclick='gform.submission.handleButtonClick(this);' data-submission-type='previous' >Previous<\/button> <button type='button' id='gform_next_button_10_87' class='gform_next_button gform-theme-button button' onclick='gform.submission.handleButtonClick(this);' data-submission-type='next' >Next<\/button> \n                    <\/div>\n                <\/div>\n                <div id='gform_page_10_3' class='gform_page' data-js='page-field-id-87' style='display:none;'>\n                    <div class='gform_page_fields'>\n                        <div id='gform_fields_10_3' class='gform_fields top_label form_sublabel_below description_below validation_below'><fieldset id=\"field_10_88\" class=\"gfield gfield--type-radio gfield--type-choice gfield--input-type-radio gfield--width-full gf_list_2col field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible gfield--choice-align-vertical\"  ><legend class='gfield_label gform-field-label' ><span class='gform-field-label__text'>Is this their first time in a program?<\/span><\/legend><div class='ginput_container ginput_container_radio'><div class='gfield_radio' id='input_10_88'>\n\t\t\t<div class='gchoice gchoice_10_88_0'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_88' type='radio' value='Yes'  id='choice_10_88_0' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_10_88_0' id='label_10_88_0' class='gform-field-label gform-field-label--type-inline'>Yes<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_10_88_1'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_88' type='radio' value='No'  id='choice_10_88_1' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_10_88_1' id='label_10_88_1' class='gform-field-label gform-field-label--type-inline'>No<\/label>\n\t\t\t<\/div><\/div><\/div><\/fieldset><\/div>\n                    <\/div>\n                    <div class='gform-page-footer gform_page_footer top_label'>\n                        <button type='button' id='gform_previous_button_10_39' class='gform_previous_button gform-theme-button gform-theme-button--secondary button' onclick='gform.submission.handleButtonClick(this);' data-submission-type='previous' >Previous<\/button> <button type='button' id='gform_next_button_10_39' class='gform_next_button gform-theme-button button' onclick='gform.submission.handleButtonClick(this);' data-submission-type='next' >Next<\/button> \n                    <\/div>\n                <\/div>\n                <div id='gform_page_10_4' class='gform_page' data-js='page-field-id-39' style='display:none;'>\n                    <div class='gform_page_fields'>\n                        <div id='gform_fields_10_4' class='gform_fields top_label form_sublabel_below description_below validation_below'><fieldset id=\"field_10_46\" class=\"gfield gfield--type-radio gfield--type-choice gfield--input-type-radio gfield--width-full gf_list_2col field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible gfield--choice-align-vertical\"  ><legend class='gfield_label gform-field-label' ><span class='gform-field-label__text'>Are they comfortable in the water and can they fully submerge their head?<\/span><\/legend><div class='ginput_container ginput_container_radio'><div class='gfield_radio' id='input_10_46'>\n\t\t\t<div class='gchoice gchoice_10_46_0'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_46' type='radio' value='Yes'  id='choice_10_46_0' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_10_46_0' id='label_10_46_0' class='gform-field-label gform-field-label--type-inline'>Yes<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_10_46_1'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_46' type='radio' value='No'  id='choice_10_46_1' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_10_46_1' id='label_10_46_1' class='gform-field-label gform-field-label--type-inline'>No<\/label>\n\t\t\t<\/div><\/div><\/div><\/fieldset><\/div>\n                    <\/div>\n                    <div class='gform-page-footer gform_page_footer top_label'>\n                        <button type='button' id='gform_previous_button_10_91' class='gform_previous_button gform-theme-button gform-theme-button--secondary button' onclick='gform.submission.handleButtonClick(this);' data-submission-type='previous' >Previous<\/button> <button type='button' id='gform_next_button_10_91' class='gform_next_button gform-theme-button button' onclick='gform.submission.handleButtonClick(this);' data-submission-type='next' >Next<\/button> \n                    <\/div>\n                <\/div>\n                <div id='gform_page_10_5' class='gform_page' data-js='page-field-id-91' style='display:none;'>\n                    <div class='gform_page_fields'>\n                        <div id='gform_fields_10_5' class='gform_fields top_label form_sublabel_below description_below validation_below'><fieldset id=\"field_10_92\" class=\"gfield gfield--type-radio gfield--type-choice gfield--input-type-radio gfield--width-full gf_list_2col field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible gfield--choice-align-vertical\"  ><legend class='gfield_label gform-field-label' ><span class='gform-field-label__text'>Are they comfortable being separated from you to work one on one with an instructor?<\/span><\/legend><div class='ginput_container ginput_container_radio'><div class='gfield_radio' id='input_10_92'>\n\t\t\t<div class='gchoice gchoice_10_92_0'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_92' type='radio' value='Yes'  id='choice_10_92_0' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_10_92_0' id='label_10_92_0' class='gform-field-label gform-field-label--type-inline'>Yes<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_10_92_1'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_92' type='radio' value='No'  id='choice_10_92_1' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_10_92_1' id='label_10_92_1' class='gform-field-label gform-field-label--type-inline'>No<\/label>\n\t\t\t<\/div><\/div><\/div><\/fieldset><\/div>\n                    <\/div>\n                    <div class='gform-page-footer gform_page_footer top_label'>\n                        <button type='button' id='gform_previous_button_10_81' class='gform_previous_button gform-theme-button gform-theme-button--secondary button' onclick='gform.submission.handleButtonClick(this);' data-submission-type='previous' >Previous<\/button> <button type='button' id='gform_next_button_10_81' class='gform_next_button gform-theme-button button' onclick='gform.submission.handleButtonClick(this);' data-submission-type='next' >Next<\/button> \n                    <\/div>\n                <\/div>\n                <div id='gform_page_10_6' class='gform_page' data-js='page-field-id-81' style='display:none;'>\n                    <div class='gform_page_fields'>\n                        <div id='gform_fields_10_6' class='gform_fields top_label form_sublabel_below description_below validation_below'><fieldset id=\"field_10_82\" class=\"gfield gfield--type-radio gfield--type-choice gfield--input-type-radio gfield--width-full gf_list_2col field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible gfield--choice-align-vertical\"  ><legend class='gfield_label gform-field-label' ><span class='gform-field-label__text'>Are they able to float unassisted (no swim aids or support)?<\/span><\/legend><div class='ginput_container ginput_container_radio'><div class='gfield_radio' id='input_10_82'>\n\t\t\t<div class='gchoice gchoice_10_82_0'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_82' type='radio' value='Yes'  id='choice_10_82_0' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_10_82_0' id='label_10_82_0' class='gform-field-label gform-field-label--type-inline'>Yes<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_10_82_1'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_82' type='radio' value='No'  id='choice_10_82_1' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_10_82_1' id='label_10_82_1' class='gform-field-label gform-field-label--type-inline'>No<\/label>\n\t\t\t<\/div><\/div><\/div><\/fieldset><\/div>\n                    <\/div>\n                    <div class='gform-page-footer gform_page_footer top_label'>\n                        <button type='button' id='gform_previous_button_10_93' class='gform_previous_button gform-theme-button gform-theme-button--secondary button' onclick='gform.submission.handleButtonClick(this);' data-submission-type='previous' >Previous<\/button> <button type='button' id='gform_next_button_10_93' class='gform_next_button gform-theme-button button' onclick='gform.submission.handleButtonClick(this);' data-submission-type='next' >Next<\/button> \n                    <\/div>\n                <\/div>\n                <div id='gform_page_10_7' class='gform_page' data-js='page-field-id-93' style='display:none;'>\n                    <div class='gform_page_fields'>\n                        <div id='gform_fields_10_7' class='gform_fields top_label form_sublabel_below description_below validation_below'><fieldset id=\"field_10_94\" class=\"gfield gfield--type-radio gfield--type-choice gfield--input-type-radio gfield--width-full gf_list_2col field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible gfield--choice-align-vertical\"  ><legend class='gfield_label gform-field-label' ><span class='gform-field-label__text'>Can they glide in the water and stand up from a floating position (front and back) ?<\/span><\/legend><div class='ginput_container ginput_container_radio'><div class='gfield_radio' id='input_10_94'>\n\t\t\t<div class='gchoice gchoice_10_94_0'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_94' type='radio' value='Yes'  id='choice_10_94_0' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_10_94_0' id='label_10_94_0' class='gform-field-label gform-field-label--type-inline'>Yes<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_10_94_1'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_94' type='radio' value='No'  id='choice_10_94_1' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_10_94_1' id='label_10_94_1' class='gform-field-label gform-field-label--type-inline'>No<\/label>\n\t\t\t<\/div><\/div><\/div><\/fieldset><\/div>\n                    <\/div>\n                    <div class='gform-page-footer gform_page_footer top_label'>\n                        <button type='button' id='gform_previous_button_10_95' class='gform_previous_button gform-theme-button gform-theme-button--secondary button' onclick='gform.submission.handleButtonClick(this);' data-submission-type='previous' >Previous<\/button> <button type='button' id='gform_next_button_10_95' class='gform_next_button gform-theme-button button' onclick='gform.submission.handleButtonClick(this);' data-submission-type='next' >Next<\/button> \n                    <\/div>\n                <\/div>\n                <div id='gform_page_10_8' class='gform_page' data-js='page-field-id-95' style='display:none;'>\n                    <div class='gform_page_fields'>\n                        <div id='gform_fields_10_8' class='gform_fields top_label form_sublabel_below description_below validation_below'><fieldset id=\"field_10_96\" class=\"gfield gfield--type-radio gfield--type-choice gfield--input-type-radio gfield--width-full gf_list_2col field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible gfield--choice-align-vertical\"  ><legend class='gfield_label gform-field-label' ><span class='gform-field-label__text'>Can they swim 10 yards of freestyle and backstroke with their face in the water and utilizing a side breath?<\/span><\/legend><div class='ginput_container ginput_container_radio'><div class='gfield_radio' id='input_10_96'>\n\t\t\t<div class='gchoice gchoice_10_96_0'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_96' type='radio' value='Yes'  id='choice_10_96_0' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_10_96_0' id='label_10_96_0' class='gform-field-label gform-field-label--type-inline'>Yes<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_10_96_1'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_96' type='radio' value='No'  id='choice_10_96_1' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_10_96_1' id='label_10_96_1' class='gform-field-label gform-field-label--type-inline'>No<\/label>\n\t\t\t<\/div><\/div><\/div><\/fieldset><\/div>\n                    <\/div>\n                    <div class='gform-page-footer gform_page_footer top_label'>\n                        <button type='button' id='gform_previous_button_10_97' class='gform_previous_button gform-theme-button gform-theme-button--secondary button' onclick='gform.submission.handleButtonClick(this);' data-submission-type='previous' >Previous<\/button> <button type='button' id='gform_next_button_10_97' class='gform_next_button gform-theme-button button' onclick='gform.submission.handleButtonClick(this);' data-submission-type='next' >Next<\/button> \n                    <\/div>\n                <\/div>\n                <div id='gform_page_10_9' class='gform_page' data-js='page-field-id-97' style='display:none;'>\n                    <div class='gform_page_fields'>\n                        <div id='gform_fields_10_9' class='gform_fields top_label form_sublabel_below description_below validation_below'><fieldset id=\"field_10_98\" class=\"gfield gfield--type-radio gfield--type-choice gfield--input-type-radio gfield--width-full gf_list_2col field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible gfield--choice-align-vertical\"  ><legend class='gfield_label gform-field-label' ><span class='gform-field-label__text'>Can they swim freestyle and backstroke with their arms out of the water?<\/span><\/legend><div class='ginput_container ginput_container_radio'><div class='gfield_radio' id='input_10_98'>\n\t\t\t<div class='gchoice gchoice_10_98_0'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_98' type='radio' value='Yes'  id='choice_10_98_0' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_10_98_0' id='label_10_98_0' class='gform-field-label gform-field-label--type-inline'>Yes<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_10_98_1'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_98' type='radio' value='No'  id='choice_10_98_1' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_10_98_1' id='label_10_98_1' class='gform-field-label gform-field-label--type-inline'>No<\/label>\n\t\t\t<\/div><\/div><\/div><\/fieldset><\/div>\n                    <\/div>\n                    <div class='gform-page-footer gform_page_footer top_label'>\n                        <button type='button' id='gform_previous_button_10_45' class='gform_previous_button gform-theme-button gform-theme-button--secondary button' onclick='gform.submission.handleButtonClick(this);' data-submission-type='previous' >Previous<\/button> <button type='button' id='gform_next_button_10_45' class='gform_next_button gform-theme-button button' onclick='gform.submission.handleButtonClick(this);' data-submission-type='next' >Next<\/button> \n                    <\/div>\n                <\/div>\n                <div id='gform_page_10_10' class='gform_page' data-js='page-field-id-45' style='display:none;'>\n                    <div class='gform_page_fields'>\n                        <div id='gform_fields_10_10' class='gform_fields top_label form_sublabel_below description_below validation_below'><fieldset id=\"field_10_56\" class=\"gfield gfield--type-radio gfield--type-choice gfield--input-type-radio gfield--width-full gf_list_2col field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible gfield--choice-align-vertical\"  ><legend class='gfield_label gform-field-label' ><span class='gform-field-label__text'>Are they able to jump in, roll over and float without assistance?<\/span><\/legend><div class='ginput_container ginput_container_radio'><div class='gfield_radio' id='input_10_56'>\n\t\t\t<div class='gchoice gchoice_10_56_0'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_56' type='radio' value='Yes'  id='choice_10_56_0' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_10_56_0' id='label_10_56_0' class='gform-field-label gform-field-label--type-inline'>Yes<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_10_56_1'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_56' type='radio' value='No'  id='choice_10_56_1' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_10_56_1' id='label_10_56_1' class='gform-field-label gform-field-label--type-inline'>No<\/label>\n\t\t\t<\/div><\/div><\/div><\/fieldset><\/div>\n                    <\/div>\n                    <div class='gform-page-footer gform_page_footer top_label'>\n                        <button type='button' id='gform_previous_button_10_59' class='gform_previous_button gform-theme-button gform-theme-button--secondary button' onclick='gform.submission.handleButtonClick(this);' data-submission-type='previous' >Previous<\/button> <button type='button' id='gform_next_button_10_59' class='gform_next_button gform-theme-button button' onclick='gform.submission.handleButtonClick(this);' data-submission-type='next' >Next<\/button> \n                    <\/div>\n                <\/div>\n                <div id='gform_page_10_11' class='gform_page' data-js='page-field-id-59' style='display:none;'>\n                    <div class='gform_page_fields'>\n                        <div id='gform_fields_10_11' class='gform_fields top_label form_sublabel_below description_below validation_below'><fieldset id=\"field_10_60\" class=\"gfield gfield--type-radio gfield--type-choice gfield--input-type-radio gfield--width-full gf_list_2col field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible gfield--choice-align-vertical\"  ><legend class='gfield_label gform-field-label' ><span class='gform-field-label__text'>Can they swim freestyle and backstroke with their arms out of the water?<\/span><\/legend><div class='ginput_container ginput_container_radio'><div class='gfield_radio' id='input_10_60'>\n\t\t\t<div class='gchoice gchoice_10_60_0'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_60' type='radio' value='Yes'  id='choice_10_60_0' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_10_60_0' id='label_10_60_0' class='gform-field-label gform-field-label--type-inline'>Yes<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_10_60_1'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_60' type='radio' value='No'  id='choice_10_60_1' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_10_60_1' id='label_10_60_1' class='gform-field-label gform-field-label--type-inline'>No<\/label>\n\t\t\t<\/div><\/div><\/div><\/fieldset><\/div>\n                    <\/div>\n                    <div class='gform-page-footer gform_page_footer top_label'>\n                        <button type='button' id='gform_previous_button_10_55' class='gform_previous_button gform-theme-button gform-theme-button--secondary button' onclick='gform.submission.handleButtonClick(this);' data-submission-type='previous' >Previous<\/button> <button type='button' id='gform_next_button_10_55' class='gform_next_button gform-theme-button button' onclick='gform.submission.handleButtonClick(this);' data-submission-type='next' >Next<\/button> \n                    <\/div>\n                <\/div>\n                <div id='gform_page_10_12' class='gform_page' data-js='page-field-id-55' style='display:none;'>\n                    <div class='gform_page_fields'>\n                        <div id='gform_fields_10_12' class='gform_fields top_label form_sublabel_below description_below validation_below'><fieldset id=\"field_10_40\" class=\"gfield gfield--type-radio gfield--type-choice gfield--input-type-radio gfield--width-full gf_list_2col field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible gfield--choice-align-vertical\"  ><legend class='gfield_label gform-field-label' ><span class='gform-field-label__text'>Can they sit on the edge independently?<\/span><\/legend><div class='ginput_container ginput_container_radio'><div class='gfield_radio' id='input_10_40'>\n\t\t\t<div class='gchoice gchoice_10_40_0'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_40' type='radio' value='Yes'  id='choice_10_40_0' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_10_40_0' id='label_10_40_0' class='gform-field-label gform-field-label--type-inline'>Yes<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_10_40_1'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_40' type='radio' value='No'  id='choice_10_40_1' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_10_40_1' id='label_10_40_1' class='gform-field-label gform-field-label--type-inline'>No<\/label>\n\t\t\t<\/div><\/div><\/div><\/fieldset><\/div>\n                    <\/div>\n                    <div class='gform-page-footer gform_page_footer top_label'>\n                        <button type='button' id='gform_previous_button_10_3' class='gform_previous_button gform-theme-button gform-theme-button--secondary button' onclick='gform.submission.handleButtonClick(this);' data-submission-type='previous' >Previous<\/button> <button type='button' id='gform_next_button_10_3' class='gform_next_button gform-theme-button button' onclick='gform.submission.handleButtonClick(this);' data-submission-type='next' >Next<\/button> \n                    <\/div>\n                <\/div>\n                <div id='gform_page_10_13' class='gform_page' data-js='page-field-id-3' style='display:none;'>\n                    <div class='gform_page_fields'>\n                        <div id='gform_fields_10_13' class='gform_fields top_label form_sublabel_below description_below validation_below'><fieldset id=\"field_10_37\" class=\"gfield gfield--type-radio gfield--type-choice gfield--input-type-radio gfield--width-full gf_list_2col field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible gfield--choice-align-vertical\"  ><legend class='gfield_label gform-field-label' ><span class='gform-field-label__text'>Are you comfortable in the water?<\/span><\/legend><div class='ginput_container ginput_container_radio'><div class='gfield_radio' id='input_10_37'>\n\t\t\t<div class='gchoice gchoice_10_37_0'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_37' type='radio' value='Yes'  id='choice_10_37_0' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_10_37_0' id='label_10_37_0' class='gform-field-label gform-field-label--type-inline'>Yes<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_10_37_1'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_37' type='radio' value='No'  id='choice_10_37_1' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_10_37_1' id='label_10_37_1' class='gform-field-label gform-field-label--type-inline'>No<\/label>\n\t\t\t<\/div><\/div><\/div><\/fieldset><\/div>\n                    <\/div>\n                    <div class='gform-page-footer gform_page_footer top_label'>\n                        <button type='button' id='gform_previous_button_10_5' class='gform_previous_button gform-theme-button gform-theme-button--secondary button' onclick='gform.submission.handleButtonClick(this);' data-submission-type='previous' >Previous<\/button> <button type='button' id='gform_next_button_10_5' class='gform_next_button gform-theme-button button' onclick='gform.submission.handleButtonClick(this);' data-submission-type='next' >Next<\/button> \n                    <\/div>\n                <\/div>\n                <div id='gform_page_10_14' class='gform_page' data-js='page-field-id-5' style='display:none;'>\n                    <div class='gform_page_fields'>\n                        <div id='gform_fields_10_14' class='gform_fields top_label form_sublabel_below description_below validation_below'><fieldset id=\"field_10_26\" class=\"gfield gfield--type-radio gfield--type-choice gfield--input-type-radio gfield--width-full gf_list_2col field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible gfield--choice-align-vertical\"  ><legend class='gfield_label gform-field-label' ><span class='gform-field-label__text'>Are you able to tread water for one minute?<\/span><\/legend><div class='ginput_container ginput_container_radio'><div class='gfield_radio' id='input_10_26'>\n\t\t\t<div class='gchoice gchoice_10_26_0'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_26' type='radio' value='Yes'  id='choice_10_26_0' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_10_26_0' id='label_10_26_0' class='gform-field-label gform-field-label--type-inline'>Yes<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_10_26_1'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_26' type='radio' value='No'  id='choice_10_26_1' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_10_26_1' id='label_10_26_1' class='gform-field-label gform-field-label--type-inline'>No<\/label>\n\t\t\t<\/div><\/div><\/div><\/fieldset><\/div>\n                    <\/div>\n                    <div class='gform-page-footer gform_page_footer top_label'>\n                        <button type='button' id='gform_previous_button_10_29' class='gform_previous_button gform-theme-button gform-theme-button--secondary button' onclick='gform.submission.handleButtonClick(this);' data-submission-type='previous' >Previous<\/button> <button type='button' id='gform_next_button_10_29' class='gform_next_button gform-theme-button button' onclick='gform.submission.handleButtonClick(this);' data-submission-type='next' >Next<\/button> \n                    <\/div>\n                <\/div>\n                <div id='gform_page_10_15' class='gform_page' data-js='page-field-id-29' style='display:none;'>\n                    <div class='gform_page_fields'>\n                        <div id='gform_fields_10_15' class='gform_fields top_label form_sublabel_below description_below validation_below'><fieldset id=\"field_10_7\" class=\"gfield gfield--type-radio gfield--type-choice gfield--input-type-radio gfield--width-full gf_list_2col field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible gfield--choice-align-vertical\"  ><legend class='gfield_label gform-field-label' ><span class='gform-field-label__text'>Are you familiar with all 4 strokes?<\/span><\/legend><div class='ginput_container ginput_container_radio'><div class='gfield_radio' id='input_10_7'>\n\t\t\t<div class='gchoice gchoice_10_7_0'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_7' type='radio' value='Yes'  id='choice_10_7_0' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_10_7_0' id='label_10_7_0' class='gform-field-label gform-field-label--type-inline'>Yes<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_10_7_1'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_7' type='radio' value='No'  id='choice_10_7_1' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_10_7_1' id='label_10_7_1' class='gform-field-label gform-field-label--type-inline'>No<\/label>\n\t\t\t<\/div><\/div><\/div><\/fieldset><\/div>\n                    <\/div>\n                    <div class='gform-page-footer gform_page_footer top_label'>\n                        <button type='button' id='gform_previous_button_10_34' class='gform_previous_button gform-theme-button gform-theme-button--secondary button' onclick='gform.submission.handleButtonClick(this);' data-submission-type='previous' >Previous<\/button> <button type='button' id='gform_next_button_10_34' class='gform_next_button gform-theme-button button' onclick='gform.submission.handleButtonClick(this);' data-submission-type='next' >Next<\/button> \n                    <\/div>\n                <\/div>\n                <div id='gform_page_10_16' class='gform_page' data-js='page-field-id-34' style='display:none;'>\n                    <div class='gform_page_fields'>\n                        <div id='gform_fields_10_16' class='gform_fields top_label form_sublabel_below description_below validation_below'><div id=\"field_10_100\" class=\"gfield gfield--type-html gfield--input-type-html gfield--width-full gfield_html gfield_html_formatted gfield_no_follows_desc field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><div class=\"result-box\">\n<h4>Your Result<\/h4>\n\t<div class=\"result-card\">\n\t<h3>Young Adult 3<\/h3>\n\t<img decoding=\"async\" src=\"https:\/\/britishswimschool.com\/wp-content\/uploads\/2025\/05\/Young-Adult-icon-1.svg\" height:200px width:200px \/>\n\t<a href=\"\/programs\/young-adult\/\" style=\"color:#E61C22\">\n\t<p>Program Details<\/p>\n\t<\/a>\n\t<\/div>\n<\/div><\/div><div id=\"field_10_126\" class=\"gfield gfield--type-text gfield--input-type-text gfield--width-full field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_hidden\"  ><div class=\"admin-hidden-markup\"><i class=\"gform-icon gform-icon--hidden\" aria-hidden=\"true\" title=\"This field is hidden when viewing the form\"><\/i><span>This field is hidden when viewing the form<\/span><\/div><label class='gfield_label gform-field-label' for='input_10_126'><span class='gform-field-label__text'>Result- Young Adult 3<\/span><\/label><div class='ginput_container ginput_container_text'><input name='input_126' id='input_10_126' type='text' value='Young Adult 3' class='large'      aria-invalid=\"false\"   \/><\/div><\/div><div id=\"field_10_41\" class=\"gfield gfield--type-html gfield--input-type-html gfield--width-full gfield_html gfield_html_formatted gfield_no_follows_desc field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><div class=\"result-box\">\n<h4>Your Result<\/h4>\n\t<div class=\"result-card\">\n\t<h3>Tadpole<\/h3>\n\t<img decoding=\"async\" src=\"https:\/\/britishswimschool.com\/wp-content\/uploads\/2025\/05\/Tadpole-icon-1.svg\" height:200px width:200px \/>\n\t<a href=\"https:\/\/\/\/britishswimschool.com\/columbia-lexington\/programs\/tadpole\/\" target=\"_blank\" style=\"color:#E61C22\">\n\t<p>Program Details<\/p>\n\t<\/a>\n\t<\/div>\n<\/div><\/div><div id=\"field_10_127\" class=\"gfield gfield--type-text gfield--input-type-text gfield--width-full field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_hidden\"  ><div class=\"admin-hidden-markup\"><i class=\"gform-icon gform-icon--hidden\" aria-hidden=\"true\" title=\"This field is hidden when viewing the form\"><\/i><span>This field is hidden when viewing the form<\/span><\/div><label class='gfield_label gform-field-label' for='input_10_127'><span class='gform-field-label__text'>Result- Tadpole<\/span><\/label><div class='ginput_container ginput_container_text'><input name='input_127' id='input_10_127' type='text' value='Tadpole' class='large'      aria-invalid=\"false\"   \/><\/div><\/div><div id=\"field_10_101\" class=\"gfield gfield--type-html gfield--input-type-html gfield--width-full gfield_html gfield_html_formatted gfield_no_follows_desc field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><div class=\"result-box\">\n<h4>Your Result<\/h4>\n\t<div class=\"result-card\">\n\t<h3>Tadpole<\/h3>\n\t<img decoding=\"async\" src=\"https:\/\/britishswimschool.com\/wp-content\/uploads\/2025\/05\/Tadpole-icon-1.svg\" height:200px width:200px \/>\n\t<a href=\"https:\/\/\/\/britishswimschool.com\/columbia-lexington\/programs\/tadpole\/\" target=\"_blank\" style=\"color:#E61C22\">\n\t<p>Program Details<\/p>\n\t<\/a>\n\t<\/div>\n<\/div><\/div><div id=\"field_10_117\" class=\"gfield gfield--type-text gfield--input-type-text gfield--width-full field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_hidden\"  ><div class=\"admin-hidden-markup\"><i class=\"gform-icon gform-icon--hidden\" aria-hidden=\"true\" title=\"This field is hidden when viewing the form\"><\/i><span>This field is hidden when viewing the form<\/span><\/div><label class='gfield_label gform-field-label' for='input_10_117'><span class='gform-field-label__text'>Result- Tadpole<\/span><\/label><div class='ginput_container ginput_container_text'><input name='input_117' id='input_10_117' type='text' value='Tadpole' class='large'      aria-invalid=\"false\"   \/><\/div><\/div><div id=\"field_10_102\" class=\"gfield gfield--type-html gfield--input-type-html gfield--width-full gfield_html gfield_html_formatted gfield_no_follows_desc field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><div class=\"result-box\">\n<h4>Your Result<\/h4>\n\t<div class=\"result-card\">\n\t<h3>Tadpole<\/h3>\n\t<img decoding=\"async\" src=\"https:\/\/britishswimschool.com\/wp-content\/uploads\/2025\/05\/Tadpole-icon-1.svg\" height:200px width:200px \/>\n\t<a href=\"https:\/\/\/\/britishswimschool.com\/columbia-lexington\/programs\/tadpole\/\" target=\"_blank\" style=\"color:#E61C22\">\n\t<p>Program Details<\/p>\n\t<\/a>\n\t<\/div>\n<\/div><\/div><div id=\"field_10_118\" class=\"gfield gfield--type-text gfield--input-type-text gfield--width-full field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_hidden\"  ><div class=\"admin-hidden-markup\"><i class=\"gform-icon gform-icon--hidden\" aria-hidden=\"true\" title=\"This field is hidden when viewing the form\"><\/i><span>This field is hidden when viewing the form<\/span><\/div><label class='gfield_label gform-field-label' for='input_10_118'><span class='gform-field-label__text'>Result- Tadpole<\/span><\/label><div class='ginput_container ginput_container_text'><input name='input_118' id='input_10_118' type='text' value='Tadpole' class='large'      aria-invalid=\"false\"   \/><\/div><\/div><div id=\"field_10_103\" class=\"gfield gfield--type-html gfield--input-type-html gfield--width-full gfield_html gfield_html_formatted gfield_no_follows_desc field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><div class=\"result-box\">\n<h4>Your Result<\/h4>\n\t<div class=\"result-card\">\n\t<h3>Tadpole<\/h3>\n\t<img decoding=\"async\" src=\"https:\/\/britishswimschool.com\/wp-content\/uploads\/2025\/05\/Tadpole-icon-1.svg\" height:200px width:200px \/>\n\t<a href=\"https:\/\/\/\/britishswimschool.com\/columbia-lexington\/programs\/tadpole\/\" target=\"_blank\" style=\"color:#E61C22\">\n\t<p>Program Details<\/p>\n\t<\/a>\n\t<\/div>\n<\/div><\/div><div id=\"field_10_119\" class=\"gfield gfield--type-text gfield--input-type-text gfield--width-full field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_hidden\"  ><div class=\"admin-hidden-markup\"><i class=\"gform-icon gform-icon--hidden\" aria-hidden=\"true\" title=\"This field is hidden when viewing the form\"><\/i><span>This field is hidden when viewing the form<\/span><\/div><label class='gfield_label gform-field-label' for='input_10_119'><span class='gform-field-label__text'>Result- Tadpole<\/span><\/label><div class='ginput_container ginput_container_text'><input name='input_119' id='input_10_119' type='text' value='Tadpole' class='large'      aria-invalid=\"false\"   \/><\/div><\/div><div id=\"field_10_42\" class=\"gfield gfield--type-html gfield--input-type-html gfield--width-full gfield_html gfield_html_formatted gfield_no_follows_desc field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><div class=\"result-box\">\n<h4>Your Result<\/h4>\n\t<div class=\"result-card\">\n\t<h3>Swimboree<\/h3>\n\t<img decoding=\"async\" src=\"https:\/\/britishswimschool.com\/wp-content\/uploads\/2025\/05\/Swimbore-icon-1.svg\" height:200px width:200px \/>\n\t<a href=\"https:\/\/\/\/britishswimschool.com\/columbia-lexington\/programs\/swimboree\/\" style=\"color:#E61C22\">\n\t<p>Program Details<\/p>\n\t<\/a>\n\t<\/div>\n<\/div><\/div><div id=\"field_10_44\" class=\"gfield gfield--type-text gfield--input-type-text gfield--width-full field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_hidden\"  ><div class=\"admin-hidden-markup\"><i class=\"gform-icon gform-icon--hidden\" aria-hidden=\"true\" title=\"This field is hidden when viewing the form\"><\/i><span>This field is hidden when viewing the form<\/span><\/div><label class='gfield_label gform-field-label' for='input_10_44'><span class='gform-field-label__text'>Result- Swimboree<\/span><\/label><div class='ginput_container ginput_container_text'><input name='input_44' id='input_10_44' type='text' value='Swimboree' class='large'      aria-invalid=\"false\"   \/><\/div><\/div><div id=\"field_10_104\" class=\"gfield gfield--type-html gfield--input-type-html gfield--width-full gfield_html gfield_html_formatted gfield_no_follows_desc field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><div class=\"result-box\">\n<h4>Your Result<\/h4>\n\t<div class=\"result-card\">\n\t<h3>Swimboree<\/h3>\n\t<img decoding=\"async\" src=\"https:\/\/britishswimschool.com\/wp-content\/uploads\/2025\/05\/Swimbore-icon-1.svg\" height:200px width:200px \/>\n\t<a href=\"https:\/\/\/\/britishswimschool.com\/columbia-lexington\/programs\/swimboree\/\" style=\"color:#E61C22\">\n\t<p>Program Details<\/p>\n\t<\/a>\n\t<\/div>\n<\/div><\/div><div id=\"field_10_121\" class=\"gfield gfield--type-text gfield--input-type-text gfield--width-full field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_hidden\"  ><div class=\"admin-hidden-markup\"><i class=\"gform-icon gform-icon--hidden\" aria-hidden=\"true\" title=\"This field is hidden when viewing the form\"><\/i><span>This field is hidden when viewing the form<\/span><\/div><label class='gfield_label gform-field-label' for='input_10_121'><span class='gform-field-label__text'>Result- Swimboree<\/span><\/label><div class='ginput_container ginput_container_text'><input name='input_121' id='input_10_121' type='text' value='Swimboree' class='large'      aria-invalid=\"false\"   \/><\/div><\/div><div id=\"field_10_105\" class=\"gfield gfield--type-html gfield--input-type-html gfield--width-full gfield_html gfield_html_formatted gfield_no_follows_desc field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><div class=\"result-box\">\n<h4>Your Result<\/h4>\n\t<div class=\"result-card\">\n\t<h3>Swimboree<\/h3>\n\t<img decoding=\"async\" src=\"https:\/\/britishswimschool.com\/wp-content\/uploads\/2025\/05\/Swimbore-icon-1.svg\" height:200px width:200px \/>\n\t<a href=\"https:\/\/\/\/britishswimschool.com\/columbia-lexington\/programs\/swimboree\/\" style=\"color:#E61C22\">\n\t<p>Program Details<\/p>\n\t<\/a>\n\t<\/div>\n<\/div><\/div><div id=\"field_10_122\" class=\"gfield gfield--type-text gfield--input-type-text gfield--width-full field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_hidden\"  ><div class=\"admin-hidden-markup\"><i class=\"gform-icon gform-icon--hidden\" aria-hidden=\"true\" title=\"This field is hidden when viewing the form\"><\/i><span>This field is hidden when viewing the form<\/span><\/div><label class='gfield_label gform-field-label' for='input_10_122'><span class='gform-field-label__text'>Result- Swimboree<\/span><\/label><div class='ginput_container ginput_container_text'><input name='input_122' id='input_10_122' type='text' value='Swimboree' class='large'      aria-invalid=\"false\"   \/><\/div><\/div><div id=\"field_10_47\" class=\"gfield gfield--type-html gfield--input-type-html gfield--width-full gfield_html gfield_html_formatted gfield_no_follows_desc field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><div class=\"result-box\">\n<h4>Your Result<\/h4>\n\t<div class=\"result-card\">\n\t<h3>Starfish<\/h3>\n\t<img decoding=\"async\" src=\"https:\/\/britishswimschool.com\/wp-content\/uploads\/2025\/05\/Starfish-icon-1.svg\" height:200px width:200px \/>\n\t<a href=\"https:\/\/\/\/britishswimschool.com\/columbia-lexington\/programs\/starfish\/\" style=\"color:#E61C22\">\n\t<p>Program Details<\/p>\n\t<\/a>\n\t<\/div>\n<\/div><\/div><div id=\"field_10_123\" class=\"gfield gfield--type-text gfield--input-type-text gfield--width-full field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_hidden\"  ><div class=\"admin-hidden-markup\"><i class=\"gform-icon gform-icon--hidden\" aria-hidden=\"true\" title=\"This field is hidden when viewing the form\"><\/i><span>This field is hidden when viewing the form<\/span><\/div><label class='gfield_label gform-field-label' for='input_10_123'><span class='gform-field-label__text'>Result- Starfish<\/span><\/label><div class='ginput_container ginput_container_text'><input name='input_123' id='input_10_123' type='text' value='Starfish' class='large'      aria-invalid=\"false\"   \/><\/div><\/div><div id=\"field_10_106\" class=\"gfield gfield--type-html gfield--input-type-html gfield--width-full gfield_html gfield_html_formatted gfield_no_follows_desc field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><div class=\"result-box\">\n<h4>Your Result<\/h4>\n\t<div class=\"result-card\">\n\t<h3>Young Adult 1<\/h3>\n\t<img decoding=\"async\" src=\"https:\/\/britishswimschool.com\/wp-content\/uploads\/2025\/05\/Young-Adult-icon-1.svg\" height:200px width:200px \/>\n\t<a href=\"\/programs\/young-adult\/\" style=\"color:#E61C22\">\n\t<p>Program Details<\/p>\n\t<\/a>\n\t<\/div>\n<\/div><\/div><div id=\"field_10_115\" class=\"gfield gfield--type-text gfield--input-type-text gfield--width-full field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_hidden\"  ><div class=\"admin-hidden-markup\"><i class=\"gform-icon gform-icon--hidden\" aria-hidden=\"true\" title=\"This field is hidden when viewing the form\"><\/i><span>This field is hidden when viewing the form<\/span><\/div><label class='gfield_label gform-field-label' for='input_10_115'><span class='gform-field-label__text'>Result- Young Adult 1<\/span><\/label><div class='ginput_container ginput_container_text'><input name='input_115' id='input_10_115' type='text' value='Young Adult 1' class='large'      aria-invalid=\"false\"   \/><\/div><\/div><div id=\"field_10_107\" class=\"gfield gfield--type-html gfield--input-type-html gfield--width-full gfield_html gfield_html_formatted gfield_no_follows_desc field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><div class=\"result-box\">\n<h4>Your Result<\/h4>\n\t<div class=\"result-card\">\n\t<h3>Starfish<\/h3>\n\t<img decoding=\"async\" src=\"https:\/\/britishswimschool.com\/wp-content\/uploads\/2025\/05\/Starfish-icon-1.svg\" height:200px width:200px \/>\n\t<a href=\"https:\/\/\/\/britishswimschool.com\/columbia-lexington\/programs\/starfish\/\" style=\"color:#E61C22\">\n\t<p>Program Details<\/p>\n\t<\/a>\n\t<\/div>\n<\/div><\/div><div id=\"field_10_124\" class=\"gfield gfield--type-text gfield--input-type-text gfield--width-full field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_hidden\"  ><div class=\"admin-hidden-markup\"><i class=\"gform-icon gform-icon--hidden\" aria-hidden=\"true\" title=\"This field is hidden when viewing the form\"><\/i><span>This field is hidden when viewing the form<\/span><\/div><label class='gfield_label gform-field-label' for='input_10_124'><span class='gform-field-label__text'>Result- Starfish<\/span><\/label><div class='ginput_container ginput_container_text'><input name='input_124' id='input_10_124' type='text' value='Starfish' class='large'      aria-invalid=\"false\"   \/><\/div><\/div><div id=\"field_10_108\" class=\"gfield gfield--type-html gfield--input-type-html gfield--width-full gfield_html gfield_html_formatted gfield_no_follows_desc field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><div class=\"result-box\">\n<h4>Your Result<\/h4>\n\t<div class=\"result-card\">\n\t<h3>Young Adult 1<\/h3>\n\t<img decoding=\"async\" src=\"https:\/\/britishswimschool.com\/wp-content\/uploads\/2025\/05\/Young-Adult-icon-1.svg\" height:200px width:200px \/>\n\t<a href=\"\/programs\/young-adult\/\" style=\"color:#E61C22\">\n\t<p>Program Details<\/p>\n\t<\/a>\n\t<\/div>\n<\/div><\/div><div id=\"field_10_116\" class=\"gfield gfield--type-text gfield--input-type-text gfield--width-full field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_hidden\"  ><div class=\"admin-hidden-markup\"><i class=\"gform-icon gform-icon--hidden\" aria-hidden=\"true\" title=\"This field is hidden when viewing the form\"><\/i><span>This field is hidden when viewing the form<\/span><\/div><label class='gfield_label gform-field-label' for='input_10_116'><span class='gform-field-label__text'>Result- Young Adult 1<\/span><\/label><div class='ginput_container ginput_container_text'><input name='input_116' id='input_10_116' type='text' value='Young Adult 1' class='large'      aria-invalid=\"false\"   \/><\/div><\/div><div id=\"field_10_109\" class=\"gfield gfield--type-html gfield--input-type-html gfield--width-full gfield_html gfield_html_formatted gfield_no_follows_desc field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><div class=\"result-box\">\n<h4>Your Result<\/h4>\n\t<div class=\"result-card\">\n\t<h3>Starfish<\/h3>\n\t<img decoding=\"async\" src=\"https:\/\/britishswimschool.com\/wp-content\/uploads\/2025\/05\/Starfish-icon-1.svg\" height:200px width:200px \/>\n\t<a href=\"https:\/\/\/\/britishswimschool.com\/columbia-lexington\/programs\/starfish\/\" style=\"color:#E61C22\">\n\t<p>Program Details<\/p>\n\t<\/a>\n\t<\/div>\n<\/div><\/div><div id=\"field_10_48\" class=\"gfield gfield--type-text gfield--input-type-text gfield--width-full field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_hidden\"  ><div class=\"admin-hidden-markup\"><i class=\"gform-icon gform-icon--hidden\" aria-hidden=\"true\" title=\"This field is hidden when viewing the form\"><\/i><span>This field is hidden when viewing the form<\/span><\/div><label class='gfield_label gform-field-label' for='input_10_48'><span class='gform-field-label__text'>Result- Starfish<\/span><\/label><div class='ginput_container ginput_container_text'><input name='input_48' id='input_10_48' type='text' value='Starfish' class='large'      aria-invalid=\"false\"   \/><\/div><\/div><div id=\"field_10_110\" class=\"gfield gfield--type-html gfield--input-type-html gfield--width-full gfield_html gfield_html_formatted gfield_no_follows_desc field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><div class=\"result-box\">\n<h4>Your Result<\/h4>\n\t<div class=\"result-card\">\n\t<h3>Young Adult 1<\/h3>\n\t<img decoding=\"async\" src=\"https:\/\/britishswimschool.com\/wp-content\/uploads\/2025\/05\/Young-Adult-icon-1.svg\" height:200px width:200px \/>\n\t<a href=\"\/programs\/young-adult\/\" style=\"color:#E61C22\">\n\t<p>Program Details<\/p>\n\t<\/a>\n\t<\/div>\n<\/div><\/div><div id=\"field_10_114\" class=\"gfield gfield--type-text gfield--input-type-text gfield--width-full field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_hidden\"  ><div class=\"admin-hidden-markup\"><i class=\"gform-icon gform-icon--hidden\" aria-hidden=\"true\" title=\"This field is hidden when viewing the form\"><\/i><span>This field is hidden when viewing the form<\/span><\/div><label class='gfield_label gform-field-label' for='input_10_114'><span class='gform-field-label__text'>Result- Young Adult 1<\/span><\/label><div class='ginput_container ginput_container_text'><input name='input_114' id='input_10_114' type='text' value='Young Adult 1' class='large'      aria-invalid=\"false\"   \/><\/div><\/div><div id=\"field_10_85\" class=\"gfield gfield--type-html gfield--input-type-html gfield--width-full gfield_html gfield_html_formatted gfield_no_follows_desc field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><div class=\"result-box\">\n<h4>Your Result<\/h4>\n\t<div class=\"result-card\">\n\t<h3>Starfish<\/h3>\n\t<img decoding=\"async\" src=\"https:\/\/britishswimschool.com\/wp-content\/uploads\/2025\/05\/Starfish-icon-1.svg\" height:200px width:200px \/>\n\t<a href=\"https:\/\/\/\/britishswimschool.com\/columbia-lexington\/programs\/starfish\/\" style=\"color:#E61C22\">\n\t<p>Program Details<\/p>\n\t<\/a>\n\t<\/div>\n<\/div><\/div><div id=\"field_10_49\" class=\"gfield gfield--type-html gfield--input-type-html gfield--width-full gfield_html gfield_html_formatted gfield_no_follows_desc field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><div class=\"result-box\">\n<h4>Your Result<\/h4>\n\t<div class=\"result-card\">\n\t<h3>Seahorse<\/h3>\n\t<img decoding=\"async\" src=\"https:\/\/britishswimschool.com\/wp-content\/uploads\/2025\/05\/Seahorse-icon-1.svg\" height:200px width:200px \/>\n\t<a href=\"https:\/\/\/\/britishswimschool.com\/columbia-lexington\/programs\/seahorse\/\" style=\"color:#E61C22\">\n\t<p>Program Details<\/p>\n\t<\/a>\n\t<\/div>\n<\/div><\/div><div id=\"field_10_50\" class=\"gfield gfield--type-text gfield--input-type-text gfield--width-full field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_hidden\"  ><div class=\"admin-hidden-markup\"><i class=\"gform-icon gform-icon--hidden\" aria-hidden=\"true\" title=\"This field is hidden when viewing the form\"><\/i><span>This field is hidden when viewing the form<\/span><\/div><label class='gfield_label gform-field-label' for='input_10_50'><span class='gform-field-label__text'>Result- Seahorse<\/span><\/label><div class='ginput_container ginput_container_text'><input name='input_50' id='input_10_50' type='text' value='Seahorse' class='large'      aria-invalid=\"false\"   \/><\/div><\/div><div id=\"field_10_53\" class=\"gfield gfield--type-html gfield--input-type-html gfield--width-full gfield_html gfield_html_formatted gfield_no_follows_desc field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><div class=\"result-box\">\n<h4>Your Result<\/h4>\n\t<div class=\"result-card\">\n\t<h3>Minnow<\/h3>\n\t<img decoding=\"async\" src=\"https:\/\/britishswimschool.com\/wp-content\/uploads\/2025\/05\/Minnow-icon-1.svg\" height:200px width:200px \/>\n\t<a href=\"https:\/\/\/\/britishswimschool.com\/columbia-lexington\/programs\/minnow\/\" style=\"color:#E61C22\">\n\t<p>Program Details<\/p>\n\t<\/a>\n\t<\/div>\n<\/div><\/div><div id=\"field_10_54\" class=\"gfield gfield--type-text gfield--input-type-text gfield--width-full field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_hidden\"  ><div class=\"admin-hidden-markup\"><i class=\"gform-icon gform-icon--hidden\" aria-hidden=\"true\" title=\"This field is hidden when viewing the form\"><\/i><span>This field is hidden when viewing the form<\/span><\/div><label class='gfield_label gform-field-label' for='input_10_54'><span class='gform-field-label__text'>Result- Minnow<\/span><\/label><div class='ginput_container ginput_container_text'><input name='input_54' id='input_10_54' type='text' value='Minnow' class='large'      aria-invalid=\"false\"   \/><\/div><\/div><div id=\"field_10_111\" class=\"gfield gfield--type-html gfield--input-type-html gfield--width-full gfield_html gfield_html_formatted gfield_no_follows_desc field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><div class=\"result-box\">\n<h4>Your Result<\/h4>\n\t<div class=\"result-card\">\n\t<h3>Young Adult 2<\/h3>\n\t<img decoding=\"async\" src=\"https:\/\/britishswimschool.com\/wp-content\/uploads\/2025\/05\/Young-Adult-icon-1.svg\" height:200px width:200px \/>\n\t<a href=\"\/programs\/young-adult\/\" style=\"color:#E61C22\">\n\t<p>Program Details<\/p>\n\t<\/a>\n\t<\/div>\n<\/div><\/div><div id=\"field_10_125\" class=\"gfield gfield--type-text gfield--input-type-text gfield--width-full field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_hidden\"  ><div class=\"admin-hidden-markup\"><i class=\"gform-icon gform-icon--hidden\" aria-hidden=\"true\" title=\"This field is hidden when viewing the form\"><\/i><span>This field is hidden when viewing the form<\/span><\/div><label class='gfield_label gform-field-label' for='input_10_125'><span class='gform-field-label__text'>Result- Young Adult 2<\/span><\/label><div class='ginput_container ginput_container_text'><input name='input_125' id='input_10_125' type='text' value='Young Adult 2' class='large'      aria-invalid=\"false\"   \/><\/div><\/div><div id=\"field_10_57\" class=\"gfield gfield--type-html gfield--input-type-html gfield--width-full gfield_html gfield_html_formatted gfield_no_follows_desc field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><div class=\"result-box\">\n<h4>Your Result<\/h4>\n\t<div class=\"result-card\">\n\t<h3>Turtle 1<\/h3>\n\t<img decoding=\"async\" src=\"https:\/\/britishswimschool.com\/wp-content\/uploads\/2025\/05\/Turtle-1-icon-1.svg\" height:200px width:200px \/>\n\t<a href=\"https:\/\/\/\/britishswimschool.com\/columbia-lexington\/programs\/turtle-1\/\" style=\"color:#E61C22\">\n\t<p>Program Details<\/p>\n\t<\/a>\n\t<\/div>\n<\/div><\/div><div id=\"field_10_58\" class=\"gfield gfield--type-text gfield--input-type-text gfield--width-full field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_hidden\"  ><div class=\"admin-hidden-markup\"><i class=\"gform-icon gform-icon--hidden\" aria-hidden=\"true\" title=\"This field is hidden when viewing the form\"><\/i><span>This field is hidden when viewing the form<\/span><\/div><label class='gfield_label gform-field-label' for='input_10_58'><span class='gform-field-label__text'>Result- Turtle 1<\/span><\/label><div class='ginput_container ginput_container_text'><input name='input_58' id='input_10_58' type='text' value='Turtle 1' class='large'      aria-invalid=\"false\"   \/><\/div><\/div><div id=\"field_10_112\" class=\"gfield gfield--type-html gfield--input-type-html gfield--width-full gfield_html gfield_html_formatted gfield_no_follows_desc field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><div class=\"result-box\">\n<h4>Your Result<\/h4>\n\t<div class=\"result-card\">\n\t<h3>Turtle 1<\/h3>\n\t<img decoding=\"async\" src=\"https:\/\/britishswimschool.com\/wp-content\/uploads\/2025\/05\/Turtle-1-icon-1.svg\" height:200px width:200px \/>\n\t<a href=\"https:\/\/\/\/britishswimschool.com\/columbia-lexington\/programs\/turtle-1\/\" style=\"color:#E61C22\">\n\t<p>Program Details<\/p>\n\t<\/a>\n\t<\/div>\n<\/div><\/div><div id=\"field_10_61\" class=\"gfield gfield--type-html gfield--input-type-html gfield--width-full gfield_html gfield_html_formatted gfield_no_follows_desc field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><div class=\"result-box\">\n<h4>Your Result<\/h4>\n\t<div class=\"result-card\">\n\t<h3>Turtle 2<\/h3>\n\t<img decoding=\"async\" src=\"https:\/\/britishswimschool.com\/wp-content\/uploads\/2025\/05\/Turtle-2-icon-1.svg\" height:200px width:200px \/>\n\t<a href=\"https:\/\/\/\/britishswimschool.com\/columbia-lexington\/programs\/turtle-2\/\" style=\"color:#E61C22\">\n\t<p>Program Details<\/p>\n\t<\/a>\n\t<\/div>\n<\/div><\/div><div id=\"field_10_113\" class=\"gfield gfield--type-html gfield--input-type-html gfield--width-full gfield_html gfield_html_formatted gfield_no_follows_desc field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><div class=\"result-box\">\n<h4>Your Result<\/h4>\n\t<div class=\"result-card\">\n\t<h3>Turtle 2<\/h3>\n\t<img decoding=\"async\" src=\"https:\/\/britishswimschool.com\/wp-content\/uploads\/2025\/05\/Turtle-2-icon-1.svg\" height:200px width:200px \/>\n\t<a href=\"https:\/\/\/\/britishswimschool.com\/columbia-lexington\/programs\/turtle-2\/\" style=\"color:#E61C22\">\n\t<p>Program Details<\/p>\n\t<\/a>\n\t<\/div>\n<\/div><\/div><div id=\"field_10_64\" class=\"gfield gfield--type-text gfield--input-type-text gfield--width-full field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_hidden\"  ><div class=\"admin-hidden-markup\"><i class=\"gform-icon gform-icon--hidden\" aria-hidden=\"true\" title=\"This field is hidden when viewing the form\"><\/i><span>This field is hidden when viewing the form<\/span><\/div><label class='gfield_label gform-field-label' for='input_10_64'><span class='gform-field-label__text'>Result- Turtle 2<\/span><\/label><div class='ginput_container ginput_container_text'><input name='input_64' id='input_10_64' type='text' value='Turtle 2' class='large'      aria-invalid=\"false\"   \/><\/div><\/div><div id=\"field_10_63\" class=\"gfield gfield--type-html gfield--input-type-html gfield--width-full gfield_html gfield_html_formatted gfield_no_follows_desc field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_hidden\"  ><div class=\"result-box\">\n<h4>Your Result<\/h4>\n\t<div class=\"result-card\">\n\t<h3>Shark 1<\/h3>\n\t<img decoding=\"async\" src=\"https:\/\/britishswimschool.com\/wp-content\/uploads\/2025\/05\/Shark-1-icon-1.svg\" height:200px width:200px \/>\n\t<a href=\"https:\/\/\/\/britishswimschool.com\/columbia-lexington\/programs\/shark-1\/\" style=\"color:#E61C22\">\n\t<p>Program Details<\/p>\n\t<\/a>\n\t<\/div>\n<\/div><\/div><div id=\"field_10_65\" class=\"gfield gfield--type-html gfield--input-type-html gfield--width-full gfield_html gfield_html_formatted gfield_no_follows_desc field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_hidden\"  ><div class=\"result-box\">\n<h4>Your Result<\/h4>\n\t<div class=\"result-card\">\n\t<h3>Young Adult 1<\/h3>\n\t<img decoding=\"async\" src=\"https:\/\/britishswimschool.com\/wp-content\/uploads\/2025\/05\/Young-Adult-icon-1.svg\" height:200px width:200px \/>\n\t<a href=\"https:\/\/\/\/britishswimschool.com\/columbia-lexington\/programs\/young-adult\/\" style=\"color:#E61C22\">\n\t<p>Program Details<\/p>\n\t<\/a>\n\t<\/div>\n<\/div><\/div><div id=\"field_10_67\" class=\"gfield gfield--type-html gfield--input-type-html gfield--width-full gfield_html gfield_html_formatted gfield_no_follows_desc field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_hidden\"  ><div class=\"result-box\">\n<h4>Your Result<\/h4>\n\t<div class=\"result-card\">\n\t<h3>Young Adult 2<\/h3>\n\t<img decoding=\"async\" src=\"https:\/\/britishswimschool.com\/wp-content\/uploads\/2025\/05\/Young-Adult-icon-1.svg\" height:200px width:200px \/>\n\t<a href=\"https:\/\/\/\/britishswimschool.com\/columbia-lexington\/programs\/young-adult\/\" style=\"color:#E61C22\">\n\t<p>Program Details<\/p>\n\t<\/a>\n\t<\/div>\n<\/div><\/div><div id=\"field_10_71\" class=\"gfield gfield--type-html gfield--input-type-html gfield--width-full gfield_html gfield_html_formatted gfield_no_follows_desc field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_hidden\"  ><div class=\"result-box\">\n<h4>Your Result<\/h4>\n\t<div class=\"result-card\">\n\t<h3>Young Adult 2<\/h3>\n\t<img decoding=\"async\" src=\"https:\/\/britishswimschool.com\/wp-content\/uploads\/2025\/05\/Young-Adult-icon-1.svg\" height:200px width:200px \/>\n\t<a href=\"https:\/\/\/\/britishswimschool.com\/columbia-lexington\/programs\/young-adult\/\" style=\"color:#E61C22\">\n\t<p>Program Details<\/p>\n\t<\/a>\n\t<\/div>\n<\/div><\/div><div id=\"field_10_75\" class=\"gfield gfield--type-html gfield--input-type-html gfield--width-full gfield_html gfield_html_formatted gfield_no_follows_desc field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_hidden\"  ><div class=\"result-box\">\n<h4>Your Result<\/h4>\n\t<div class=\"result-card\">\n\t<h3>Young Adult 3<\/h3>\n\t<img decoding=\"async\" src=\"https:\/\/britishswimschool.com\/wp-content\/uploads\/2025\/05\/Young-Adult-icon-1.svg\" height:200px width:200px \/>\n\t<a href=\"https:\/\/\/\/britishswimschool.com\/columbia-lexington\/programs\/young-adult\/\" style=\"color:#E61C22\">\n\t<p>Program Details<\/p>\n\t<\/a>\n\t<\/div>\n<\/div><\/div><div id=\"field_10_23\" class=\"gfield gfield--type-html gfield--input-type-html gfield--width-full gfield_html gfield_html_formatted gfield_no_follows_desc field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><div class=\"result-box\">\n<h4>Your Result<\/h4>\n\t<div class=\"result-card\">\n\t<h3>Adult 1<\/h3>\n\t<img decoding=\"async\" src=\"https:\/\/britishswimschool.com\/wp-content\/uploads\/2025\/05\/Adult-icon-1.svg\" height:200px width:200px \/>\n\t<a href=\"https:\/\/\/\/britishswimschool.com\/columbia-lexington\/programs\/adult\/\" style=\"color:#E61C22\">\n\t<p>Program Details<\/p>\n\t<\/a>\n\t<\/div>\n<\/div><\/div><div id=\"field_10_43\" class=\"gfield gfield--type-text gfield--input-type-text gfield--width-full field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_hidden\"  ><div class=\"admin-hidden-markup\"><i class=\"gform-icon gform-icon--hidden\" aria-hidden=\"true\" title=\"This field is hidden when viewing the form\"><\/i><span>This field is hidden when viewing the form<\/span><\/div><label class='gfield_label gform-field-label' for='input_10_43'><span class='gform-field-label__text'>Result- Adult 1<\/span><\/label><div class='ginput_container ginput_container_text'><input name='input_43' id='input_10_43' type='text' value='Adult Level 1' class='large'      aria-invalid=\"false\"   \/><\/div><\/div><div id=\"field_10_27\" class=\"gfield gfield--type-html gfield--input-type-html gfield--width-full gfield_html gfield_html_formatted gfield_no_follows_desc field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><div class=\"result-box\">\n<h4>Your Result<\/h4>\n\t<div class=\"result-card\">\n\t<h3>Adult 2<\/h3>\n\t<img decoding=\"async\" src=\"https:\/\/britishswimschool.com\/wp-content\/uploads\/2025\/05\/Adult-icon-1.svg\" height:200px width:200px \/>\n\t<a href=\"https:\/\/\/\/britishswimschool.com\/columbia-lexington\/programs\/adult\/\" style=\"color:#E61C22\">\n\t<p>Program Details<\/p>\n\t<\/a>\n\t<\/div>\n<\/div><\/div><div id=\"field_10_32\" class=\"gfield gfield--type-text gfield--input-type-text gfield--width-full field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_hidden\"  ><div class=\"admin-hidden-markup\"><i class=\"gform-icon gform-icon--hidden\" aria-hidden=\"true\" title=\"This field is hidden when viewing the form\"><\/i><span>This field is hidden when viewing the form<\/span><\/div><label class='gfield_label gform-field-label' for='input_10_32'><span class='gform-field-label__text'>Result- Adult 2<\/span><\/label><div class='ginput_container ginput_container_text'><input name='input_32' id='input_10_32' type='text' value='Adult Level 2' class='large'      aria-invalid=\"false\"   \/><\/div><\/div><div id=\"field_10_31\" class=\"gfield gfield--type-html gfield--input-type-html gfield--width-full gfield_html gfield_html_formatted gfield_no_follows_desc field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><div class=\"result-box\">\n<h4>Your Result<\/h4>\n\t<div class=\"result-card\">\n\t<h3>Adult 3<\/h3>\n\t<img decoding=\"async\" src=\"https:\/\/britishswimschool.com\/wp-content\/uploads\/2025\/05\/Adult-icon-1.svg\" height:200px width:200px \/>\n\t<a href=\"https:\/\/\/\/britishswimschool.com\/columbia-lexington\/programs\/adult\/\" style=\"color:#E61C22\">\n\t<p>Program Details<\/p>\n\t<\/a>\n\t<\/div>\n<\/div><\/div><div id=\"field_10_33\" class=\"gfield gfield--type-text gfield--input-type-text gfield--width-full field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_hidden\"  ><div class=\"admin-hidden-markup\"><i class=\"gform-icon gform-icon--hidden\" aria-hidden=\"true\" title=\"This field is hidden when viewing the form\"><\/i><span>This field is hidden when viewing the form<\/span><\/div><label class='gfield_label gform-field-label' for='input_10_33'><span class='gform-field-label__text'>Result- Adult 3<\/span><\/label><div class='ginput_container ginput_container_text'><input name='input_33' id='input_10_33' type='text' value='Adult Level 3' class='large'      aria-invalid=\"false\"   \/><\/div><\/div><\/div><\/div>\n        <div class='gform-page-footer gform_page_footer top_label'><button type='submit' id='gform_previous_button_10' class='gform_previous_button gform-theme-button gform-theme-button--secondary button' onclick='gform.submission.handleButtonClick(this);' data-submission-type='previous' >Previous<\/button> <button type='submit' id='gform_submit_button_10' class='gform_button button' onclick='gform.submission.handleButtonClick(this);' data-submission-type='submit' >Enroll Now<\/button> <input type='hidden' name='gform_ajax' value='form_id=10&amp;title=&amp;description=&amp;tabindex=0&amp;theme=orbital&amp;hash=36041fc2b1a792143341901221579b44' \/>\n            <input type='hidden' class='gform_hidden' name='gform_submission_method' data-js='gform_submission_method_10' value='iframe' \/>\n            <input type='hidden' class='gform_hidden' name='gform_theme' data-js='gform_theme_10' id='gform_theme_10' value='orbital' \/>\n            <input type='hidden' class='gform_hidden' name='gform_style_settings' data-js='gform_style_settings_10' id='gform_style_settings_10' value='' \/>\n            <input type='hidden' class='gform_hidden' name='is_submit_10' value='1' \/>\n            <input type='hidden' class='gform_hidden' name='gform_submit' value='10' \/>\n            \n            <input type='hidden' class='gform_hidden' name='gform_currency' data-currency='USD' value='egxfh3IlgPcTmF0jb69z9iP+ICkwu7fABtgrhnr2ximpZF+YxguUdTFcSU22MRxIrwtOKqKq5OCum\/M\/tnO\/6oXZIrJLVeCAtxaiQV5f\/bdXYRw=' \/>\n            <input type='hidden' class='gform_hidden' name='gform_unique_id' value='' \/>\n            <input type='hidden' class='gform_hidden' name='state_10' value='WyJ7XCIxXCI6W1wiYTg3ZWNkYmYyNWE0OTI3NTFhYzU3NzRmMTFiMmI5MjBcIixcIjcxNDhmZDI4ZDczODZjOGYxMTRmNWY4NWRkNjIxMjExXCJdLFwiNFwiOltcIjdhMmZkODgxYjgwY2ZjODJhNjU4YWYwZTMzYTc1Y2RlXCIsXCIyMTQ3ZWQ2NjNjNDEyMThjMjk0ODdlOTYzNmRlYzI1YlwiLFwiNTk5MjBmMzcwMTUyNjhkMWExYWYxNmZiYzAzODBkY2JcIixcImVjODVlNDc0YjhmY2I3ZTBkOGM1Mzk5OWYzMzY5NDFlXCJdLFwiODhcIjpbXCI1NTZlMWQzNjQ4ODhjYjIyODU0MTlhZjkyZjQyNmEyN1wiLFwiNWQ1NjJjZThjODNmODI5NTI3NmU2Nzg0NWY0NzA1YmZcIl0sXCI0NlwiOltcIjU1NmUxZDM2NDg4OGNiMjI4NTQxOWFmOTJmNDI2YTI3XCIsXCI1ZDU2MmNlOGM4M2Y4Mjk1Mjc2ZTY3ODQ1ZjQ3MDViZlwiXSxcIjkyXCI6W1wiNTU2ZTFkMzY0ODg4Y2IyMjg1NDE5YWY5MmY0MjZhMjdcIixcIjVkNTYyY2U4YzgzZjgyOTUyNzZlNjc4NDVmNDcwNWJmXCJdLFwiODJcIjpbXCI1NTZlMWQzNjQ4ODhjYjIyODU0MTlhZjkyZjQyNmEyN1wiLFwiNWQ1NjJjZThjODNmODI5NTI3NmU2Nzg0NWY0NzA1YmZcIl0sXCI5NFwiOltcIjU1NmUxZDM2NDg4OGNiMjI4NTQxOWFmOTJmNDI2YTI3XCIsXCI1ZDU2MmNlOGM4M2Y4Mjk1Mjc2ZTY3ODQ1ZjQ3MDViZlwiXSxcIjk2XCI6W1wiNTU2ZTFkMzY0ODg4Y2IyMjg1NDE5YWY5MmY0MjZhMjdcIixcIjVkNTYyY2U4YzgzZjgyOTUyNzZlNjc4NDVmNDcwNWJmXCJdLFwiOThcIjpbXCI1NTZlMWQzNjQ4ODhjYjIyODU0MTlhZjkyZjQyNmEyN1wiLFwiNWQ1NjJjZThjODNmODI5NTI3NmU2Nzg0NWY0NzA1YmZcIl0sXCI1NlwiOltcIjU1NmUxZDM2NDg4OGNiMjI4NTQxOWFmOTJmNDI2YTI3XCIsXCI1ZDU2MmNlOGM4M2Y4Mjk1Mjc2ZTY3ODQ1ZjQ3MDViZlwiXSxcIjYwXCI6W1wiNTU2ZTFkMzY0ODg4Y2IyMjg1NDE5YWY5MmY0MjZhMjdcIixcIjVkNTYyY2U4YzgzZjgyOTUyNzZlNjc4NDVmNDcwNWJmXCJdLFwiNDBcIjpbXCI1NTZlMWQzNjQ4ODhjYjIyODU0MTlhZjkyZjQyNmEyN1wiLFwiNWQ1NjJjZThjODNmODI5NTI3NmU2Nzg0NWY0NzA1YmZcIl0sXCIzN1wiOltcIjU1NmUxZDM2NDg4OGNiMjI4NTQxOWFmOTJmNDI2YTI3XCIsXCI1ZDU2MmNlOGM4M2Y4Mjk1Mjc2ZTY3ODQ1ZjQ3MDViZlwiXSxcIjI2XCI6W1wiNTU2ZTFkMzY0ODg4Y2IyMjg1NDE5YWY5MmY0MjZhMjdcIixcIjVkNTYyY2U4YzgzZjgyOTUyNzZlNjc4NDVmNDcwNWJmXCJdLFwiN1wiOltcIjU1NmUxZDM2NDg4OGNiMjI4NTQxOWFmOTJmNDI2YTI3XCIsXCI1ZDU2MmNlOGM4M2Y4Mjk1Mjc2ZTY3ODQ1ZjQ3MDViZlwiXSxcImdmb3JtX3N1Ym1pc3Npb25fbWV0aG9kXCI6W1wiY2IxMjgzYTY2ZTA3ZDQxNDNiYjdhMmZhZjFkMzhhMjRcIixcImU2ZmNkOWE2ODkxNDBmODNlYmQ4MGZiMDRhODUxM2QwXCIsXCJiZDI0ZmViNjc2OTIyOGIyMzBlNDI1MmZjNWNhMTZhMVwiXSxcImdmb3JtX3RoZW1lXCI6XCI5OTAxZDUzZDViZDdlYjgxYmJiOTVmYWVhMDExMTZmYVwiLFwiZ2Zvcm1fc3R5bGVfc2V0dGluZ3NcIjpcIjJlZWVmN2RiYWI1MjhiNTUwN2UxZGY2NDA3ZmIzNjNmXCIsXCJmb3JtX2lkXCI6XCJmZGI2MWViNTViNDE0ZTNmMmQwMzM2NzZjM2M3MTM0N1wiLFwidXJsXCI6XCI3ZTQxYzc3MmQxMjc5MDlmYjM4MzhiNWEzY2M0NmMzMlwiLFwic3RhdGVfdGltZXN0YW1wXCI6XCI2MTJlOGUwMGQ3ZjUwNThhNTdkZTdiNmM3OGJjMmI2NVwifSIsIjliZDA1MDgyMDYyMDM5OTBkNWU4ZjRjODA4ZDc2MmIxIiwxNzkwMDk0OTQ2XQ==' \/>\n            <input type='hidden' autocomplete='off' class='gform_hidden' name='gform_target_page_number_10' id='gform_target_page_number_10' value='2' \/>\n            <input type='hidden' autocomplete='off' class='gform_hidden' name='gform_source_page_number_10' id='gform_source_page_number_10' value='1' \/>\n            <input type='hidden' name='gform_field_values' value='' \/>\n            \n        <\/div>\n             <\/div><\/div>\n                        <\/form>\n                        <\/div>\n\t\t                <iframe style='display:none;width:0px;height:0px;' src='about:blank' name='gform_ajax_frame_10' id='gform_ajax_frame_10' title='This iframe contains the logic required to handle Ajax powered Gravity Forms.'><\/iframe>\n\t\t                <script>\ngform.initializeOnLoaded( function() {jQuery('#gform_ajax_frame_10').on('load',function(){var contents = jQuery(this).contents().find('*').html();var is_postback = contents.indexOf('GF_AJAX_POSTBACK') >= 0;if(!is_postback){return;}var form_content = jQuery(this).contents().find('#gform_wrapper_10');var is_confirmation = jQuery(this).contents().find('#gform_confirmation_wrapper_10').length > 0;var is_redirect = contents.indexOf('gformRedirect(){') >= 0;var is_form = form_content.length > 0 && ! is_redirect && ! is_confirmation;var mt = parseInt(jQuery('html').css('margin-top'), 10) + parseInt(jQuery('body').css('margin-top'), 10) + 100;if(is_form){form_content.find('form').css('opacity', 0);jQuery('#gform_wrapper_10').html(form_content.html());if(form_content.hasClass('gform_validation_error')){jQuery('#gform_wrapper_10').addClass('gform_validation_error');} else {jQuery('#gform_wrapper_10').removeClass('gform_validation_error');}setTimeout( function() { \/* delay the scroll by 50 milliseconds to fix a bug in chrome *\/  }, 50 );var current_page = jQuery('#gform_source_page_number_10').val();jQuery(document).trigger('gform_page_loaded', [10, current_page]);window['gf_submitting_10'] = false;}else if(!is_redirect){var confirmation_content = jQuery(this).contents().find('.GF_AJAX_POSTBACK').html();if(!confirmation_content){confirmation_content = contents;}jQuery('#gform_wrapper_10').replaceWith(confirmation_content);jQuery(document).trigger('gform_confirmation_loaded', [10]);window['gf_submitting_10'] = false;wp.a11y.speak(jQuery('#gform_confirmation_message_10').text());}else{jQuery('#gform_10').append(contents);if(window['gformRedirect']) {gformRedirect();}}jQuery(document).trigger(\"gform_pre_post_render\", [{ formId: \"10\", currentPage: \"current_page\", abort: function() { this.preventDefault(); } }]);        if (event && event.defaultPrevented) {                return;        }        const gformWrapperDiv = document.getElementById( \"gform_wrapper_10\" );        if ( gformWrapperDiv ) {            const visibilitySpan = document.createElement( \"span\" );            visibilitySpan.id = \"gform_visibility_test_10\";            gformWrapperDiv.insertAdjacentElement( \"afterend\", visibilitySpan );        }        const visibilityTestDiv = document.getElementById( \"gform_visibility_test_10\" );        let postRenderFired = false;        function triggerPostRender() {            if ( postRenderFired ) {                return;            }            postRenderFired = true;            gform.core.triggerPostRenderEvents( 10, current_page );            if ( visibilityTestDiv ) {                visibilityTestDiv.parentNode.removeChild( visibilityTestDiv );            }        }        function debounce( func, wait, immediate ) {            var timeout;            return function() {                var context = this, args = arguments;                var later = function() {                    timeout = null;                    if ( !immediate ) func.apply( context, args );                };                var callNow = immediate && !timeout;                clearTimeout( timeout );                timeout = setTimeout( later, wait );                if ( callNow ) func.apply( context, args );            };        }        const debouncedTriggerPostRender = debounce( function() {            triggerPostRender();        }, 200 );        if ( visibilityTestDiv && visibilityTestDiv.offsetParent === null ) {            const observer = new MutationObserver( ( mutations ) => {                mutations.forEach( ( mutation ) => {                    if ( mutation.type === 'attributes' && visibilityTestDiv.offsetParent !== null ) {                        debouncedTriggerPostRender();                        observer.disconnect();                    }                });            });            observer.observe( document.body, {                attributes: true,                childList: false,                subtree: true,                attributeFilter: [ 'style', 'class' ],            });        } else {            triggerPostRender();        }    } );} );\n<\/script>\n\t\t\t<\/div>\n\n            <script type=\"text\/javascript\">\n                var gf_global = {\"gf_currency_config\":{\"name\":\"U.S. Dollar\",\"symbol_left\":\"$\",\"symbol_right\":\"\",\"symbol_padding\":\"\",\"thousand_separator\":\",\",\"decimal_separator\":\".\",\"decimals\":2,\"code\":\"USD\"},\"base_url\":\"https:\\\/\\\/britishswimschool.com\\\/columbia-lexington\\\/wp-content\\\/plugins\\\/gravityforms\",\"number_formats\":[],\"version_hash\":\"45fa5dc56772b7089744aa633f079d0b\",\"countries\":{\"AF\":\"Afghanistan\",\"AX\":\"\\u00c5land Islands\",\"AL\":\"Albania\",\"DZ\":\"Algeria\",\"AS\":\"American Samoa\",\"AD\":\"Andorra\",\"AO\":\"Angola\",\"AI\":\"Anguilla\",\"AQ\":\"Antarctica\",\"AG\":\"Antigua and Barbuda\",\"AR\":\"Argentina\",\"AM\":\"Armenia\",\"AW\":\"Aruba\",\"AU\":\"Australia\",\"AT\":\"Austria\",\"AZ\":\"Azerbaijan\",\"BS\":\"Bahamas\",\"BH\":\"Bahrain\",\"BD\":\"Bangladesh\",\"BB\":\"Barbados\",\"BY\":\"Belarus\",\"BE\":\"Belgium\",\"BZ\":\"Belize\",\"BJ\":\"Benin\",\"BM\":\"Bermuda\",\"BT\":\"Bhutan\",\"BO\":\"Bolivia\",\"BQ\":\"Bonaire, Sint Eustatius and Saba\",\"BA\":\"Bosnia and Herzegovina\",\"BW\":\"Botswana\",\"BV\":\"Bouvet Island\",\"BR\":\"Brazil\",\"IO\":\"British Indian Ocean Territory\",\"BN\":\"Brunei Darussalam\",\"BG\":\"Bulgaria\",\"BF\":\"Burkina Faso\",\"BI\":\"Burundi\",\"CV\":\"Cabo Verde\",\"KH\":\"Cambodia\",\"CM\":\"Cameroon\",\"CA\":\"Canada\",\"KY\":\"Cayman Islands\",\"CF\":\"Central African Republic\",\"TD\":\"Chad\",\"CL\":\"Chile\",\"CN\":\"China\",\"CX\":\"Christmas Island\",\"CC\":\"Cocos Islands\",\"CO\":\"Colombia\",\"KM\":\"Comoros\",\"CD\":\"Congo, Democratic Republic of the\",\"CG\":\"Congo\",\"CK\":\"Cook Islands\",\"CR\":\"Costa Rica\",\"CI\":\"C\\u00f4te d'Ivoire\",\"HR\":\"Croatia\",\"CU\":\"Cuba\",\"CW\":\"Cura\\u00e7ao\",\"CY\":\"Cyprus\",\"CZ\":\"Czechia\",\"DK\":\"Denmark\",\"DJ\":\"Djibouti\",\"DM\":\"Dominica\",\"DO\":\"Dominican Republic\",\"EC\":\"Ecuador\",\"EG\":\"Egypt\",\"SV\":\"El Salvador\",\"GQ\":\"Equatorial Guinea\",\"ER\":\"Eritrea\",\"EE\":\"Estonia\",\"SZ\":\"Eswatini\",\"ET\":\"Ethiopia\",\"FK\":\"Falkland Islands\",\"FO\":\"Faroe Islands\",\"FJ\":\"Fiji\",\"FI\":\"Finland\",\"FR\":\"France\",\"GF\":\"French Guiana\",\"PF\":\"French Polynesia\",\"TF\":\"French Southern Territories\",\"GA\":\"Gabon\",\"GM\":\"Gambia\",\"GE\":\"Georgia\",\"DE\":\"Germany\",\"GH\":\"Ghana\",\"GI\":\"Gibraltar\",\"GR\":\"Greece\",\"GL\":\"Greenland\",\"GD\":\"Grenada\",\"GP\":\"Guadeloupe\",\"GU\":\"Guam\",\"GT\":\"Guatemala\",\"GG\":\"Guernsey\",\"GN\":\"Guinea\",\"GW\":\"Guinea-Bissau\",\"GY\":\"Guyana\",\"HT\":\"Haiti\",\"HM\":\"Heard Island and McDonald Islands\",\"VA\":\"Holy See\",\"HN\":\"Honduras\",\"HK\":\"Hong Kong\",\"HU\":\"Hungary\",\"IS\":\"Iceland\",\"IN\":\"India\",\"ID\":\"Indonesia\",\"IR\":\"Iran\",\"IQ\":\"Iraq\",\"IE\":\"Ireland\",\"IM\":\"Isle of Man\",\"IL\":\"Israel\",\"IT\":\"Italy\",\"JM\":\"Jamaica\",\"JP\":\"Japan\",\"JE\":\"Jersey\",\"JO\":\"Jordan\",\"KZ\":\"Kazakhstan\",\"KE\":\"Kenya\",\"KI\":\"Kiribati\",\"KP\":\"Korea, Democratic People's Republic of\",\"KR\":\"Korea, Republic of\",\"KW\":\"Kuwait\",\"KG\":\"Kyrgyzstan\",\"LA\":\"Lao People's Democratic Republic\",\"LV\":\"Latvia\",\"LB\":\"Lebanon\",\"LS\":\"Lesotho\",\"LR\":\"Liberia\",\"LY\":\"Libya\",\"LI\":\"Liechtenstein\",\"LT\":\"Lithuania\",\"LU\":\"Luxembourg\",\"MO\":\"Macao\",\"MG\":\"Madagascar\",\"MW\":\"Malawi\",\"MY\":\"Malaysia\",\"MV\":\"Maldives\",\"ML\":\"Mali\",\"MT\":\"Malta\",\"MH\":\"Marshall Islands\",\"MQ\":\"Martinique\",\"MR\":\"Mauritania\",\"MU\":\"Mauritius\",\"YT\":\"Mayotte\",\"MX\":\"Mexico\",\"FM\":\"Micronesia\",\"MD\":\"Moldova\",\"MC\":\"Monaco\",\"MN\":\"Mongolia\",\"ME\":\"Montenegro\",\"MS\":\"Montserrat\",\"MA\":\"Morocco\",\"MZ\":\"Mozambique\",\"MM\":\"Myanmar\",\"NA\":\"Namibia\",\"NR\":\"Nauru\",\"NP\":\"Nepal\",\"NL\":\"Netherlands\",\"NC\":\"New Caledonia\",\"NZ\":\"New Zealand\",\"NI\":\"Nicaragua\",\"NE\":\"Niger\",\"NG\":\"Nigeria\",\"NU\":\"Niue\",\"NF\":\"Norfolk Island\",\"MK\":\"North Macedonia\",\"MP\":\"Northern Mariana Islands\",\"NO\":\"Norway\",\"OM\":\"Oman\",\"PK\":\"Pakistan\",\"PW\":\"Palau\",\"PS\":\"Palestine, State of\",\"PA\":\"Panama\",\"PG\":\"Papua New Guinea\",\"PY\":\"Paraguay\",\"PE\":\"Peru\",\"PH\":\"Philippines\",\"PN\":\"Pitcairn\",\"PL\":\"Poland\",\"PT\":\"Portugal\",\"PR\":\"Puerto Rico\",\"QA\":\"Qatar\",\"RE\":\"R\\u00e9union\",\"RO\":\"Romania\",\"RU\":\"Russian Federation\",\"RW\":\"Rwanda\",\"BL\":\"Saint Barth\\u00e9lemy\",\"SH\":\"Saint Helena, Ascension and Tristan da Cunha\",\"KN\":\"Saint Kitts and Nevis\",\"LC\":\"Saint Lucia\",\"MF\":\"Saint Martin\",\"PM\":\"Saint Pierre and Miquelon\",\"VC\":\"Saint Vincent and the Grenadines\",\"WS\":\"Samoa\",\"SM\":\"San Marino\",\"ST\":\"Sao Tome and Principe\",\"SA\":\"Saudi Arabia\",\"SN\":\"Senegal\",\"RS\":\"Serbia\",\"SC\":\"Seychelles\",\"SL\":\"Sierra Leone\",\"SG\":\"Singapore\",\"SX\":\"Sint Maarten\",\"SK\":\"Slovakia\",\"SI\":\"Slovenia\",\"SB\":\"Solomon Islands\",\"SO\":\"Somalia\",\"ZA\":\"South Africa\",\"GS\":\"South Georgia and the South Sandwich Islands\",\"SS\":\"South Sudan\",\"ES\":\"Spain\",\"LK\":\"Sri Lanka\",\"SD\":\"Sudan\",\"SR\":\"Suriname\",\"SJ\":\"Svalbard and Jan Mayen\",\"SE\":\"Sweden\",\"CH\":\"Switzerland\",\"SY\":\"Syria Arab Republic\",\"TW\":\"Taiwan\",\"TJ\":\"Tajikistan\",\"TZ\":\"Tanzania, the United Republic of\",\"TH\":\"Thailand\",\"TL\":\"Timor-Leste\",\"TG\":\"Togo\",\"TK\":\"Tokelau\",\"TO\":\"Tonga\",\"TT\":\"Trinidad and Tobago\",\"TN\":\"Tunisia\",\"TR\":\"T\\u00fcrkiye\",\"TM\":\"Turkmenistan\",\"TC\":\"Turks and Caicos Islands\",\"TV\":\"Tuvalu\",\"UG\":\"Uganda\",\"UA\":\"Ukraine\",\"AE\":\"United Arab Emirates\",\"GB\":\"United Kingdom\",\"US\":\"United States\",\"UY\":\"Uruguay\",\"UM\":\"US Minor Outlying Islands\",\"UZ\":\"Uzbekistan\",\"VU\":\"Vanuatu\",\"VE\":\"Venezuela\",\"VN\":\"Viet Nam\",\"VG\":\"Virgin Islands, British\",\"VI\":\"Virgin Islands, U.S.\",\"WF\":\"Wallis and Futuna\",\"EH\":\"Western Sahara\",\"YE\":\"Yemen\",\"ZM\":\"Zambia\",\"ZW\":\"Zimbabwe\"},\"strings\":{\"newRowAdded\":\"New row added.\",\"rowRemoved\":\"Row removed\",\"formSaved\":\"The form has been saved.  The content contains the link to return and complete the form.\"}};\t\t\t\tvar gf_vars = {\"active\":\"Active\",\"inactive\":\"Inactive\",\"save\":\"Save\",\"update\":\"Update\",\"previousLabel\":\"Previous\",\"selectFormat\":\"Select a format\",\"column\":\"Column\",\"editToViewAll\":\"5 of %d items shown. Edit field to view all\",\"selectAll\":\"Select All\",\"enterValue\":\"Enter a value\",\"formTitle\":\"Untitled Form\",\"formDescription\":\"We would love to hear from you! Please fill out this form and we will get in touch with you shortly.\",\"formConfirmationMessage\":\"Thanks for contacting us! We will get in touch with you shortly.\",\"submitButtonText\":\"Submit Button Text\",\"submitImageAltText\":\"Submit Image Alt Text\",\"buttonText\":\"Submit\",\"pageButtonText\":\"Button Text\",\"nextPageButtonAltText\":\"Next Image Alt Text\",\"previousPageButtonAltText\":\"Previous Image Alt Text\",\"next_page_button\":\"Next\",\"previous_page_button\":\"Previous\",\"buttonDescription\":\"The submit button for this form\",\"loading\":\"Loading...\",\"thisFieldIf\":\"this field if\",\"thisSectionIf\":\"this section if\",\"thisPage\":\"this page if\",\"thisFormButton\":\"this form button if\",\"show\":\"Show\",\"hide\":\"Hide\",\"enable\":\"Enable\",\"disable\":\"Disable\",\"enabled\":\"Enabled\",\"disabled\":\"Disabled\",\"configure\":\"Configure\",\"conditional_logic_text\":\"Conditional Logic\",\"conditional_logic_desc\":\"Conditional logic allows you to change what the user sees depending on the fields they select.\",\"conditional_logic_a11y\":\"Adding conditional logic to the form submit button could cause usability problems for some users and negatively impact the accessibility of your form. Learn more about button conditional logic in our <a href=\\\"https:\\\/\\\/docs.gravityforms.com\\\/field-accessibility-warning\\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">documentation<span class=\\\"screen-reader-text\\\">(opens in a new tab)<\\\/span>&nbsp;<span class=\\\"gform-icon gform-icon--external-link\\\" aria-hidden=\\\"true\\\"><\\\/span><\\\/a>.\",\"page\":\"Page\",\"next_button\":\"Next Button\",\"button\":\"Submit Button\",\"all\":\"All\",\"any\":\"Any\",\"ofTheFollowingMatch\":\"of the following match:\",\"is\":\"is\",\"isNot\":\"is not\",\"greaterThan\":\"greater than\",\"lessThan\":\"less than\",\"contains\":\"contains\",\"startsWith\":\"starts with\",\"endsWith\":\"ends with\",\"emptyChoice\":\"Empty (no choices selected)\",\"alertLegacyMode\":\"This form has legacy markup enabled and doesn\\u2019t support field resizing within the editor. Please disable legacy markup in the form settings to enable live resizing.\",\"thisConfirmation\":\"Use this confirmation if\",\"thisNotification\":\"Send this notification if\",\"confirmationSave\":\"Save\",\"confirmationSaving\":\"Saving...\",\"confirmationAreYouSure\":\"Are you sure you wish to cancel these changes?\",\"confirmationIssueSaving\":\"There was an issue saving this confirmation.\",\"confirmationConfirmDelete\":\"Are you sure you wish to delete this confirmation?\",\"confirmationIssueDeleting\":\"There was an issue deleting this confirmation.\",\"confirmationConfirmDiscard\":\"There are unsaved changes to the current confirmation. Would you like to discard these changes?\",\"confirmationDefaultName\":\"Untitled Confirmation\",\"confirmationDefaultMessage\":\"Thanks for contacting us! We will get in touch with you shortly.\",\"confirmationInvalidPageSelection\":\"Please select a page.\",\"confirmationInvalidRedirect\":\"Please enter a URL.\",\"confirmationInvalidName\":\"Please enter a confirmation name.\",\"confirmationDeleteField\":\"Deleting this field will also delete all entry data associated with it. 'Cancel' to abort. 'OK' to delete.\",\"confirmationDeleteDisplayField\":\"You're about to delete this field. 'Cancel' to stop. 'OK' to delete\",\"confirmationDeleteDisplayFieldTitle\":\"Warning\",\"conditionalLogicDependency\":\"This form contains {type} conditional logic dependent upon this field. Deleting this field will deactivate those conditional logic rules and also delete all entry data associated with the field. 'Cancel' to abort. 'OK' to delete.\",\"conditionalLogicDependencyChoice\":\"This form contains {type} conditional logic dependent upon this choice. Are you sure you want to delete this choice? 'Cancel' to abort. 'OK' to delete.\",\"conditionalLogicDependencyChoiceEdit\":\"This form contains {type} conditional logic dependent upon this choice. Are you sure you want to modify this choice? 'Cancel' to abort. 'OK' to continue.\",\"conditionalLogicDependencyAdminOnly\":\"This form contains {type} conditional logic dependent upon this field. Are you sure you want to mark this field as Administrative? 'Cancel' to abort. 'OK' to continue.\",\"conditionalLogicRichTextEditorWarning\":\"This form contains conditional logic dependent upon this field. This will no longer work if the Rich Text Editor is enabled.  Are you sure you want to enable the Rich Text Editor?  'Cancel' to abort. 'OK' to continue.\",\"conditionalLogicTypeButton\":\"button\",\"conditionalLogicTypeConfirmation\":\"confirmation\",\"conditionalLogicTypeNotification\":\"notification\",\"conditionalLogicTypeNoficationRouting\":\"notification routing\",\"conditionalLogicTypeField\":\"field\",\"conditionalLogicTypeFeed\":\"feed\",\"conditionalLogicWarningTitle\":\"Conditional Logic Warning\",\"mergeTagsText\":\"Insert Merge Tags\",\"baseUrl\":\"https:\\\/\\\/britishswimschool.com\\\/columbia-lexington\\\/wp-content\\\/plugins\\\/gravityforms\",\"gf_currency_config\":{\"name\":\"U.S. Dollar\",\"symbol_left\":\"$\",\"symbol_right\":\"\",\"symbol_padding\":\"\",\"thousand_separator\":\",\",\"decimal_separator\":\".\",\"decimals\":2,\"code\":\"USD\"},\"otherChoiceValue\":\"Other\",\"isFormTrash\":false,\"currentlyAddingField\":false,\"visibilityOptions\":[{\"label\":\"Visible\",\"value\":\"visible\",\"description\":\"Default option. The field is visible when viewing the form.\"},{\"label\":\"Hidden\",\"value\":\"hidden\",\"description\":\"The field is hidden when viewing the form. Useful when you require the functionality of this field but do not want the user to be able to see this field.\"},{\"label\":\"Administrative\",\"value\":\"administrative\",\"description\":\"The field is only visible when administering submitted entries. The field is not visible or functional when viewing the form.\"}],\"addFieldFilter\":\"Add a condition\",\"removeFieldFilter\":\"Remove a condition\",\"filterAndAny\":\"{0} of the following match:\",\"customChoices\":\"Custom Choices\",\"predefinedChoices\":\"Predefined Choices\",\"fieldLabelAriaLabel\":\"{field_label} - {field_type}, jump to this field&#039;s settings\",\"fieldCanBeAddedTitle\":\"Field Limit\",\"fieldCanBeAddedMessage\":\"A form can only contain one {field_type} field.\",\"fieldCanBeAddedProductTitle\":\"Missing Product field\",\"fieldCanBeAddedProduct\":\"You must add a Product field to the form first.\",\"fieldForbiddenInRepeaterTitle\":\"Unrepeatable Field\",\"fieldForbiddenInRepeater\":\"{field_type} fields are not supported in Repeaters.\",\"legacyMarkupTitle\":\"Unsupported Markup\",\"fieldCanBeAddedMultipleChoice\":\"You cannot add a Multiple Choice field to a form that uses legacy markup. Please edit the form settings and turn off Legacy Markup.\",\"fieldCanBeAddedImageChoice\":\"You cannot add an Image Choice field to a form that uses legacy markup. Please edit the form settings and turn off Legacy Markup.\",\"FieldAjaxonErrorTitle\":\"Error\",\"StartAddFieldAjaxonError\":\"Ajax error while adding field. Please refresh the page and try again.\",\"StartChangeInputTypeAjaxonError\":\"Ajax error while changing input type. Please refresh the page and try again.\",\"MissingNameCustomChoicesTitle\":\"Missing Name\",\"MissingNameCustomChoices\":\"Please give this custom choice a name.\",\"DuplicateNameCustomChoicesTitle\":\"Duplicate Name\",\"DuplicateNameCustomChoices\":\"This custom choice name is already in use. Please enter another name.\",\"DuplicateTitleMessageTitle\":\"Duplicate Title\",\"DuplicateTitleMessage\":\"The form title you have entered is already taken. Please enter a unique form title.\",\"ValidateFormMissingFormTitleTitle\":\"Missing Form Title\",\"ValidateFormMissingFormTitle\":\"Please enter a Title for this form. When adding the form to a page or post, you will have the option to hide the title.\",\"ValidateFormEmptyPageTitle\":\"Empty Page\",\"ValidateFormEmptyPage\":\"This form currently has one or more pages without any fields. Blank pages are a result of Page Breaks that are positioned as the first or last field in the form or right after each other. Please adjust the Page Breaks.\",\"ValidateFormMissingProductLabelTitle\":\"Missing Product Label\",\"ValidateFormMissingProductLabel\":\"This form has a Product field with a blank label. Please enter a label for every Product field.\",\"ValidateFormMissingProductFieldTitle\":\"Missing Product field\",\"ValidateFormMissingProductField\":\"This form has an Option field without a Product field. You must add a Product field to your form.\",\"FormulaIsValidTitle\":\"Success\",\"FormulaIsValid\":\"The formula appears to be valid.\",\"FormulaIsInvalid\":\"There appears to be a problem with the formula.\",\"DeleteFormTitle\":\"Confirm\",\"DeleteForm\":\"You are about to move this form to the trash. &#039;Cancel&#039; to abort. &#039;OK&#039; to delete.\",\"DeleteCustomChoice\":\"Delete this custom choice list? &#039;Cancel&#039; to abort. &#039;OK&#039; to delete.\",\"FieldAdded\":\"&nbsp;field added to form\",\"nameFieldDefaultPrefixes\":[{\"text\":\"Dr.\",\"value\":\"Dr.\"},{\"text\":\"Miss\",\"value\":\"Miss\"},{\"text\":\"Mr.\",\"value\":\"Mr.\"},{\"text\":\"Mrs.\",\"value\":\"Mrs.\"},{\"text\":\"Ms.\",\"value\":\"Ms.\"},{\"text\":\"Mx.\",\"value\":\"Mx.\"},{\"text\":\"Prof.\",\"value\":\"Prof.\"},{\"text\":\"Rev.\",\"value\":\"Rev.\"}]};\t\t\t<\/script>\n\n            \t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t","protected":false},"excerpt":{"rendered":"<p>Safer Swimmers Start Here This field is hidden when viewing the formFranchise IDThis field is hidden when viewing the formPool ID Child or adult? Child Adult How old is your child? 3 &#8211; 24 months 24 &#8211; 36 months 3 &#8211; 12 years 13 &#8211; 17 years Is this their first time in a water [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_acf_changed":false,"footnotes":""},"class_list":["post-1050","page","type-page","status-publish","hentry"],"acf":[],"_links":{"self":[{"href":"https:\/\/britishswimschool.com\/columbia-lexington\/wp-json\/wp\/v2\/pages\/1050","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/britishswimschool.com\/columbia-lexington\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/britishswimschool.com\/columbia-lexington\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/britishswimschool.com\/columbia-lexington\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/britishswimschool.com\/columbia-lexington\/wp-json\/wp\/v2\/comments?post=1050"}],"version-history":[{"count":0,"href":"https:\/\/britishswimschool.com\/columbia-lexington\/wp-json\/wp\/v2\/pages\/1050\/revisions"}],"wp:attachment":[{"href":"https:\/\/britishswimschool.com\/columbia-lexington\/wp-json\/wp\/v2\/media?parent=1050"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}