{"id":266026,"date":"2024-02-09T19:27:59","date_gmt":"2024-02-09T18:27:59","guid":{"rendered":"https:\/\/sherpas.com\/blog\/parents\/?p=266026"},"modified":"2025-08-01T11:00:12","modified_gmt":"2025-08-01T09:00:12","slug":"guide-reconcilier-enfant-maths","status":"publish","type":"post","link":"https:\/\/sherpas.com\/blog\/parents\/a\/guide-reconcilier-enfant-maths\/","title":{"rendered":"Guide : comment r\u00e9concilier son enfant avec les maths \ud83d\udd22"},"content":{"rendered":"<section class=\"form-hack\">\n    <div class=\"container\">\n        <div class=\"form-hack__container\">\n                                                <div class=\"form-hack__bg\">\n                        <img decoding=\"async\" src=\"https:\/\/sherpas.com\/content\/uploads\/sites\/3\/2023\/11\/Design-sans-titre.png\" alt=\"ebook parcoursup parents\">\n                    <\/div>\n                                <div class=\"row align-items-center justify-content-between\">\n                    <div class=\"col-12 col-lg-5 offset-lg-1\">\n                        <div class=\"form-hack__content\">\n                            <h1 class=\"t-01 mb-15 mb-lg-30\" id=\"telechargez-votre-guide\"><p>T\u00e9l\u00e9chargez votre guide !<\/p>\n<\/h1>\n                            <div class=\"t-08\"><p>\ud83d\udc49 Un ebook de 15 pages sur comment r\u00e9concilier votre enfant avec les math\u00e9matiques<br \/>\n\ud83d\udc49 10 conseils pour aider votre enfant \u00e0 g\u00e9rer son temps<br \/>\n\ud83d\udc49 Des solutions adapt\u00e9es \u00e0 ses besoins<\/p>\n<\/div>\n                        <\/div>\n                    <\/div>\n                    \n                                                    <div class=\"form-hack__right col\">\n                                <div class=\"form-hack__form\">\n                                    <script type=\"text\/javascript\">\n\/* <![CDATA[ *\/\n\n\/\/----------------------------------------------------------\n\/\/------ JAVASCRIPT HOOK FUNCTIONS FOR GRAVITY FORMS -------\n\/\/----------------------------------------------------------\n\nif ( ! gform ) {\n\tdocument.addEventListener( 'gform_main_scripts_loaded', function() { gform.scriptsLoaded = true; } );\n\tdocument.addEventListener( 'gform\/theme\/scripts_loaded', function() { gform.themeScriptsLoaded = true; } );\n\twindow.addEventListener( 'DOMContentLoaded', function() { gform.domLoaded = true; } );\n\n\tvar gform = {\n\t\tdomLoaded: false,\n\t\tscriptsLoaded: false,\n\t\tthemeScriptsLoaded: false,\n\t\tisFormEditor: () => typeof InitializeEditor === 'function',\n\n\t\t\/**\n\t\t * @deprecated 2.9 the use of initializeOnLoaded in the form editor context is deprecated.\n\t\t * @remove-in 4.0 this function will not check for gform.isFormEditor().\n\t\t *\/\n\t\tcallIfLoaded: function ( fn ) {\n\t\t\tif ( gform.domLoaded && gform.scriptsLoaded && ( gform.themeScriptsLoaded || gform.isFormEditor() ) ) {\n\t\t\t\tif ( gform.isFormEditor() ) {\n\t\t\t\t\tconsole.warn( 'The use of gform.initializeOnLoaded() is deprecated in the form editor context and will be removed in Gravity Forms 3.1.' );\n\t\t\t\t}\n\t\t\t\tfn();\n\t\t\t\treturn true;\n\t\t\t}\n\t\t\treturn false;\n\t\t},\n\n\t\t\/**\n\t\t * Call a function when all scripts are loaded\n\t\t *\n\t\t * @param function fn the callback function to call when all scripts are loaded\n\t\t *\n\t\t * @returns void\n\t\t *\/\n\t\tinitializeOnLoaded: function( fn ) {\n\t\t\tif ( ! gform.callIfLoaded( fn ) ) {\n\t\t\t\tdocument.addEventListener( 'gform_main_scripts_loaded', () => { gform.scriptsLoaded = true; gform.callIfLoaded( fn ); } );\n\t\t\t\tdocument.addEventListener( 'gform\/theme\/scripts_loaded', () => { gform.themeScriptsLoaded = true; gform.callIfLoaded( fn ); } );\n\t\t\t\twindow.addEventListener( 'DOMContentLoaded', () => { gform.domLoaded = true; gform.callIfLoaded( fn ); } );\n\t\t\t}\n\t\t},\n\n\t\thooks: { action: {}, filter: {} },\n\t\taddAction: function( action, callable, priority, tag ) {\n\t\t\tgform.addHook( 'action', action, callable, priority, tag );\n\t\t},\n\t\taddFilter: function( action, callable, priority, tag ) {\n\t\t\tgform.addHook( 'filter', action, callable, priority, tag );\n\t\t},\n\t\tdoAction: function( action ) {\n\t\t\tgform.doHook( 'action', action, arguments );\n\t\t},\n\t\tapplyFilters: function( action ) {\n\t\t\treturn gform.doHook( 'filter', action, arguments );\n\t\t},\n\t\tremoveAction: function( action, tag ) {\n\t\t\tgform.removeHook( 'action', action, tag );\n\t\t},\n\t\tremoveFilter: function( action, priority, tag ) {\n\t\t\tgform.removeHook( 'filter', action, priority, tag );\n\t\t},\n\t\taddHook: function( hookType, action, callable, priority, tag ) {\n\t\t\tif ( undefined == gform.hooks[hookType][action] ) {\n\t\t\t\tgform.hooks[hookType][action] = [];\n\t\t\t}\n\t\t\tvar hooks = gform.hooks[hookType][action];\n\t\t\tif ( undefined == tag ) {\n\t\t\t\ttag = action + '_' + hooks.length;\n\t\t\t}\n\t\t\tif( priority == undefined ){\n\t\t\t\tpriority = 10;\n\t\t\t}\n\n\t\t\tgform.hooks[hookType][action].push( { tag:tag, callable:callable, priority:priority } );\n\t\t},\n\t\tdoHook: function( hookType, action, args ) {\n\n\t\t\t\/\/ splice args from object into array and remove first index which is the hook name\n\t\t\targs = Array.prototype.slice.call(args, 1);\n\n\t\t\tif ( undefined != gform.hooks[hookType][action] ) {\n\t\t\t\tvar hooks = gform.hooks[hookType][action], hook;\n\t\t\t\t\/\/sort by priority\n\t\t\t\thooks.sort(function(a,b){return a[\"priority\"]-b[\"priority\"]});\n\n\t\t\t\thooks.forEach( function( hookItem ) {\n\t\t\t\t\thook = hookItem.callable;\n\n\t\t\t\t\tif(typeof hook != 'function')\n\t\t\t\t\t\thook = window[hook];\n\t\t\t\t\tif ( 'action' == hookType ) {\n\t\t\t\t\t\thook.apply(null, args);\n\t\t\t\t\t} else {\n\t\t\t\t\t\targs[0] = hook.apply(null, args);\n\t\t\t\t\t}\n\t\t\t\t} );\n\t\t\t}\n\t\t\tif ( 'filter'==hookType ) {\n\t\t\t\treturn args[0];\n\t\t\t}\n\t\t},\n\t\tremoveHook: function( hookType, action, priority, tag ) {\n\t\t\tif ( undefined != gform.hooks[hookType][action] ) {\n\t\t\t\tvar hooks = gform.hooks[hookType][action];\n\t\t\t\thooks = hooks.filter( function(hook, index, arr) {\n\t\t\t\t\tvar removeHook = (undefined==tag||tag==hook.tag) && (undefined==priority||priority==hook.priority);\n\t\t\t\t\treturn !removeHook;\n\t\t\t\t} );\n\t\t\t\tgform.hooks[hookType][action] = hooks;\n\t\t\t}\n\t\t}\n\t};\n}\n\n\/* ]]> *\/\n<\/script>\n\n                <div class='gf_browser_gecko gform_wrapper gravity-theme gform-theme--no-framework' data-form-theme='gravity-theme' data-form-index='0' id='gform_wrapper_12' style='display:none'>\n                        <div class='gform_heading'>\n                            <h2 class=\"gform_title\" id=\"17-guide-parents-reconcilier-son-enfant-avec-les-maths\">17. Guide parents : r\u00e9concilier son enfant avec les maths<\/h2>\n                            <p class='gform_description'><\/p>\n                        <\/div><form method='post' enctype='multipart\/form-data'  id='gform_12'  action='\/blog\/parents\/wp-json\/wp\/v2\/posts\/266026' data-formid='12' novalidate><input type=\"hidden\" name=\"_token\" value=\"\">\n                        <div class='gform-body gform_body'><div id='gform_fields_12' class='gform_fields top_label form_sublabel_below description_below validation_below'><fieldset id=\"field_12_5\" class=\"gfield gfield--type-name gfield--input-type-name gfield_contains_required field_sublabel_hidden_label gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><legend class='gfield_label gform-field-label gfield_label_before_complex' >Nom<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_text\">(N\u00e9cessaire)<\/span><\/span><\/legend><div class='ginput_complex ginput_container ginput_container--name no_prefix has_first_name no_middle_name has_last_name no_suffix gf_name_has_2 ginput_container_name gform-grid-row' id='input_12_5'>\n                            \n                            <span id='input_12_5_3_container' class='name_first gform-grid-col gform-grid-col--size-auto' >\n                                                    <input type='text' name='input_5.3' id='input_12_5_3' value=''   aria-required='true'   placeholder='Pr\u00e9nom'  \/>\n                                                    <label for='input_12_5_3' class='gform-field-label gform-field-label--type-sub hidden_sub_label screen-reader-text'>Pr\u00e9nom<\/label>\n                                                <\/span>\n                            \n                            <span id='input_12_5_6_container' class='name_last gform-grid-col gform-grid-col--size-auto' >\n                                                    <input type='text' name='input_5.6' id='input_12_5_6' value=''   aria-required='true'   placeholder='Nom'  \/>\n                                                    <label for='input_12_5_6' class='gform-field-label gform-field-label--type-sub hidden_sub_label screen-reader-text'>Nom<\/label>\n                                                <\/span>\n                            \n                        <\/div><\/fieldset><div id=\"field_12_7\" class=\"gfield gfield--type-email gfield--input-type-email gfield_contains_required field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_12_7'>E-mail<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_text\">(N\u00e9cessaire)<\/span><\/span><\/label><div class='ginput_container ginput_container_email'>\n                            <input name='input_7' id='input_12_7' type='email' value='' class='large'    aria-required=\"true\" aria-invalid=\"false\"  \/>\n                        <\/div><\/div><div id=\"field_12_8\" class=\"gfield gfield--type-select gfield--input-type-select gfield_contains_required field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_12_8'>Cycle<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_text\">(N\u00e9cessaire)<\/span><\/span><\/label><div class='ginput_container ginput_container_select'><select name='input_8' id='input_12_8' class='large gfield_select'    aria-required=\"true\" aria-invalid=\"false\" ><option value='parent' >Parent<\/option><option value='lycee' >Lyc\u00e9e<\/option><option value='college' >Coll\u00e8ge<\/option><option value='prepa' >Pr\u00e9pa<\/option><option value='superieur' >Sup\u00e9rieur<\/option><option value='graduate' >Jeune dipl\u00f4m\u00e9<\/option><option value='teacher' >Prof<\/option><\/select><\/div><\/div><div id=\"field_12_16\" class=\"gfield gfield--type-select gfield--input-type-select gfield--width-full gfield_contains_required field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_12_16'>Ann\u00e9e au coll\u00e8ge<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_text\">(N\u00e9cessaire)<\/span><\/span><\/label><div class='ginput_container ginput_container_select'><select name='input_16' id='input_12_16' class='large gfield_select'    aria-required=\"true\" aria-invalid=\"false\" ><option value='6e' >6e<\/option><option value='5e' >5e<\/option><option value='4e' >4e<\/option><option value='3e' >3e<\/option><\/select><\/div><\/div><div id=\"field_12_17\" class=\"gfield gfield--type-select gfield--input-type-select gfield--width-full gfield_contains_required field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_12_17'>Ann\u00e9e au lyc\u00e9e<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_text\">(N\u00e9cessaire)<\/span><\/span><\/label><div class='ginput_container ginput_container_select'><select name='input_17' id='input_12_17' class='large gfield_select'    aria-required=\"true\" aria-invalid=\"false\" ><option value='2nde' >2nde<\/option><option value='1re' >1re<\/option><option value='Tle' selected='selected'>Tle<\/option><\/select><\/div><\/div><div id=\"field_12_18\" class=\"gfield gfield--type-select gfield--input-type-select gfield--width-full gfield_contains_required field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_12_18'>Fili\u00e8re de pr\u00e9pa<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_text\">(N\u00e9cessaire)<\/span><\/span><\/label><div class='ginput_container ginput_container_select'><select name='input_18' id='input_12_18' class='large gfield_select'    aria-required=\"true\" aria-invalid=\"false\" ><option value='Pr\u00e9pa commerciale' >Pr\u00e9pa commerciale<\/option><option value='Pr\u00e9pa scientifique' >Pr\u00e9pa scientifique<\/option><option value='Pr\u00e9pa litt\u00e9raire' >Pr\u00e9pa litt\u00e9raire<\/option><\/select><\/div><\/div><div id=\"field_12_19\" class=\"gfield gfield--type-select gfield--input-type-select gfield--width-full gfield_contains_required field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_12_19'>Ann\u00e9e en pr\u00e9pa<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_text\">(N\u00e9cessaire)<\/span><\/span><\/label><div class='ginput_container ginput_container_select'><select name='input_19' id='input_12_19' class='large gfield_select'    aria-required=\"true\" aria-invalid=\"false\" ><option value='1A' >1A<\/option><option value='2A' >2A<\/option><\/select><\/div><\/div><div id=\"field_12_20\" class=\"gfield gfield--type-select gfield--input-type-select gfield--width-full gfield_contains_required field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_12_20'>Fili\u00e8re dans le sup\u00e9rieur<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_text\">(N\u00e9cessaire)<\/span><\/span><\/label><div class='ginput_container ginput_container_select'><select name='input_20' id='input_12_20' class='large gfield_select'    aria-required=\"true\" aria-invalid=\"false\" ><option value='Universit\u00e9' >Universit\u00e9<\/option><option value='IEP' >IEP<\/option><option value='BTS' >BTS<\/option><option value='BUT' >BUT<\/option><option value='Ecoles de commerce' >Ecoles de commerce<\/option><option value='Ecoles d&#039;ing\u00e9nieurs' >Ecoles d&#039;ing\u00e9nieurs<\/option><option value='Ecoles sp\u00e9cialis\u00e9es' >Ecoles sp\u00e9cialis\u00e9es<\/option><\/select><\/div><\/div><div id=\"field_12_21\" class=\"gfield gfield--type-select gfield--input-type-select gfield--width-full gfield_contains_required field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_12_21'>Ann\u00e9e \u00e0 l&#039;universit\u00e9<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_text\">(N\u00e9cessaire)<\/span><\/span><\/label><div class='ginput_container ginput_container_select'><select name='input_21' id='input_12_21' class='large gfield_select'    aria-required=\"true\" aria-invalid=\"false\" ><option value='Bac +1' >Bac +1<\/option><option value='Bac +2' >Bac +2<\/option><option value='Bac +3' >Bac +3<\/option><option value='Bac +4' >Bac +4<\/option><option value='Bac +5' >Bac +5<\/option><option value='Bac +6' >Bac +6<\/option><option value='Bac +7' >Bac +7<\/option><option value='Bac +8' >Bac +8<\/option><\/select><\/div><\/div><div id=\"field_12_22\" class=\"gfield gfield--type-select gfield--input-type-select gfield--width-full gfield_contains_required field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_12_22'>Ann\u00e9e en \u00e9cole<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_text\">(N\u00e9cessaire)<\/span><\/span><\/label><div class='ginput_container ginput_container_select'><select name='input_22' id='input_12_22' class='large gfield_select'    aria-required=\"true\" aria-invalid=\"false\" ><option value='Bac +1' >Bac +1<\/option><option value='Bac +2' >Bac +2<\/option><option value='Bac +3' >Bac +3<\/option><option value='Bac +4' >Bac +4<\/option><option value='Bac +5' >Bac +5<\/option><\/select><\/div><\/div><div id=\"field_12_23\" class=\"gfield gfield--type-select gfield--input-type-select gfield--width-full gfield_contains_required field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_12_23'>Ann\u00e9e en BTS<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_text\">(N\u00e9cessaire)<\/span><\/span><\/label><div class='ginput_container ginput_container_select'><select name='input_23' id='input_12_23' class='large gfield_select'    aria-required=\"true\" aria-invalid=\"false\" ><option value='1A' >1A<\/option><option value='2A' >2A<\/option><\/select><\/div><\/div><div id=\"field_12_24\" class=\"gfield gfield--type-select gfield--input-type-select gfield--width-full gfield_contains_required field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_12_24'>Ann\u00e9e en BUT<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_text\">(N\u00e9cessaire)<\/span><\/span><\/label><div class='ginput_container ginput_container_select'><select name='input_24' id='input_12_24' class='large gfield_select'    aria-required=\"true\" aria-invalid=\"false\" ><option value='1A' >1A<\/option><option value='2A' >2A<\/option><option value='3A' >3A<\/option><\/select><\/div><\/div><div id=\"field_12_25\" class=\"gfield gfield--type-select gfield--input-type-select gfield--width-full gfield_contains_required field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_12_25'>Tranche d&#039;\u00e2ge<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_text\">(N\u00e9cessaire)<\/span><\/span><\/label><div class='ginput_container ginput_container_select'><select name='input_25' id='input_12_25' class='large gfield_select'    aria-required=\"true\" aria-invalid=\"false\" ><option value='18-23' >18-23<\/option><option value='24-27' >24-27<\/option><option value='+28' >+28<\/option><\/select><\/div><\/div><fieldset id=\"field_12_9\" class=\"gfield gfield--type-checkbox gfield--type-choice gfield--input-type-checkbox gfield_contains_required field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><legend class='gfield_label gform-field-label gfield_label_before_complex' >Dans quel cycle est votre enfant ?<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_text\">(N\u00e9cessaire)<\/span><\/span><\/legend><div class='ginput_container ginput_container_checkbox'><div class='gfield_checkbox ' id='input_12_9'><div class='gchoice gchoice_12_9_1'>\n\t\t\t\t\t\t\t\t<input class='gfield-choice-input' name='input_9.1' type='checkbox'  value='primaire'  id='choice_12_9_1'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_12_9_1' id='label_12_9_1' class='gform-field-label gform-field-label--type-inline'>Primaire<\/label>\n\t\t\t\t\t\t\t<\/div><div class='gchoice gchoice_12_9_2'>\n\t\t\t\t\t\t\t\t<input class='gfield-choice-input' name='input_9.2' type='checkbox'  value='college'  id='choice_12_9_2'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_12_9_2' id='label_12_9_2' class='gform-field-label gform-field-label--type-inline'>Coll\u00e8ge<\/label>\n\t\t\t\t\t\t\t<\/div><div class='gchoice gchoice_12_9_3'>\n\t\t\t\t\t\t\t\t<input class='gfield-choice-input' name='input_9.3' type='checkbox'  value='lycee'  id='choice_12_9_3'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_12_9_3' id='label_12_9_3' class='gform-field-label gform-field-label--type-inline'>Lyc\u00e9e<\/label>\n\t\t\t\t\t\t\t<\/div><div class='gchoice gchoice_12_9_4'>\n\t\t\t\t\t\t\t\t<input class='gfield-choice-input' name='input_9.4' type='checkbox'  value='prepa'  id='choice_12_9_4'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_12_9_4' id='label_12_9_4' class='gform-field-label gform-field-label--type-inline'>Pr\u00e9pa<\/label>\n\t\t\t\t\t\t\t<\/div><div class='gchoice gchoice_12_9_5'>\n\t\t\t\t\t\t\t\t<input class='gfield-choice-input' name='input_9.5' type='checkbox'  value='superieur'  id='choice_12_9_5'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_12_9_5' id='label_12_9_5' class='gform-field-label gform-field-label--type-inline'>Sup\u00e9rieur<\/label>\n\t\t\t\t\t\t\t<\/div><\/div><\/div><\/fieldset><fieldset id=\"field_12_10\" class=\"gfield gfield--type-checkbox gfield--type-choice gfield--input-type-checkbox gfield_contains_required field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><legend class='gfield_label gform-field-label gfield_label_before_complex' >Dans quelle ann\u00e9e scolaire sont vos enfants ?<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_text\">(N\u00e9cessaire)<\/span><\/span><\/legend><div class='ginput_container ginput_container_checkbox'><div class='gfield_checkbox ' id='input_12_10'><div class='gchoice gchoice_12_10_1'>\n\t\t\t\t\t\t\t\t<input class='gfield-choice-input' name='input_10.1' type='checkbox'  value='6e'  id='choice_12_10_1'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_12_10_1' id='label_12_10_1' class='gform-field-label gform-field-label--type-inline'>6e<\/label>\n\t\t\t\t\t\t\t<\/div><div class='gchoice gchoice_12_10_2'>\n\t\t\t\t\t\t\t\t<input class='gfield-choice-input' name='input_10.2' type='checkbox'  value='5e'  id='choice_12_10_2'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_12_10_2' id='label_12_10_2' class='gform-field-label gform-field-label--type-inline'>5e<\/label>\n\t\t\t\t\t\t\t<\/div><div class='gchoice gchoice_12_10_3'>\n\t\t\t\t\t\t\t\t<input class='gfield-choice-input' name='input_10.3' type='checkbox'  value='4e'  id='choice_12_10_3'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_12_10_3' id='label_12_10_3' class='gform-field-label gform-field-label--type-inline'>4e<\/label>\n\t\t\t\t\t\t\t<\/div><div class='gchoice gchoice_12_10_4'>\n\t\t\t\t\t\t\t\t<input class='gfield-choice-input' name='input_10.4' type='checkbox'  value='3e'  id='choice_12_10_4'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_12_10_4' id='label_12_10_4' class='gform-field-label gform-field-label--type-inline'>3e<\/label>\n\t\t\t\t\t\t\t<\/div><div class='gchoice gchoice_12_10_5'>\n\t\t\t\t\t\t\t\t<input class='gfield-choice-input' name='input_10.5' type='checkbox'  value='2nde'  id='choice_12_10_5'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_12_10_5' id='label_12_10_5' class='gform-field-label gform-field-label--type-inline'>2nde<\/label>\n\t\t\t\t\t\t\t<\/div><div class='gchoice gchoice_12_10_6'>\n\t\t\t\t\t\t\t\t<input class='gfield-choice-input' name='input_10.6' type='checkbox'  value='1re'  id='choice_12_10_6'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_12_10_6' id='label_12_10_6' class='gform-field-label gform-field-label--type-inline'>1re<\/label>\n\t\t\t\t\t\t\t<\/div><div class='gchoice gchoice_12_10_7'>\n\t\t\t\t\t\t\t\t<input class='gfield-choice-input' name='input_10.7' type='checkbox'  value='Tle'  id='choice_12_10_7'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_12_10_7' id='label_12_10_7' class='gform-field-label gform-field-label--type-inline'>Tle<\/label>\n\t\t\t\t\t\t\t<\/div><div class='gchoice gchoice_12_10_8'>\n\t\t\t\t\t\t\t\t<input class='gfield-choice-input' name='input_10.8' type='checkbox'  value='Bac+1'  id='choice_12_10_8'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_12_10_8' id='label_12_10_8' class='gform-field-label gform-field-label--type-inline'>Bac+1<\/label>\n\t\t\t\t\t\t\t<\/div><div class='gchoice gchoice_12_10_9'>\n\t\t\t\t\t\t\t\t<input class='gfield-choice-input' name='input_10.9' type='checkbox'  value='Bac+2'  id='choice_12_10_9'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_12_10_9' id='label_12_10_9' class='gform-field-label gform-field-label--type-inline'>Bac+2<\/label>\n\t\t\t\t\t\t\t<\/div><div class='gchoice gchoice_12_10_11'>\n\t\t\t\t\t\t\t\t<input class='gfield-choice-input' name='input_10.11' type='checkbox'  value='Bac+3'  id='choice_12_10_11'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_12_10_11' id='label_12_10_11' class='gform-field-label gform-field-label--type-inline'>Bac+3<\/label>\n\t\t\t\t\t\t\t<\/div><div class='gchoice gchoice_12_10_12'>\n\t\t\t\t\t\t\t\t<input class='gfield-choice-input' name='input_10.12' type='checkbox'  value='Bac+4'  id='choice_12_10_12'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_12_10_12' id='label_12_10_12' class='gform-field-label gform-field-label--type-inline'>Bac+4<\/label>\n\t\t\t\t\t\t\t<\/div><div class='gchoice gchoice_12_10_13'>\n\t\t\t\t\t\t\t\t<input class='gfield-choice-input' name='input_10.13' type='checkbox'  value='Bac+5'  id='choice_12_10_13'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_12_10_13' id='label_12_10_13' class='gform-field-label gform-field-label--type-inline'>Bac+5<\/label>\n\t\t\t\t\t\t\t<\/div><\/div><\/div><\/fieldset><div id=\"field_12_26\" class=\"gfield gfield--type-select gfield--input-type-select gfield--width-full gfield_contains_required field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_12_26'>Donnez-vous d\u00e9j\u00e0 cours chez Les Sherpas ?<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_text\">(N\u00e9cessaire)<\/span><\/span><\/label><div class='ginput_container ginput_container_select'><select name='input_26' id='input_12_26' class='large gfield_select'    aria-required=\"true\" aria-invalid=\"false\" ><option value='Oui' >Oui<\/option><option value='Non' >Non<\/option><\/select><\/div><\/div><div id=\"field_12_27\" class=\"gfield gfield--type-select gfield--input-type-select gfield--width-full gfield_contains_required field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_12_27'>Quel est votre niveau d&#039;\u00e9tudes ?<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_text\">(N\u00e9cessaire)<\/span><\/span><\/label><div class='ginput_container ginput_container_select'><select name='input_27' id='input_12_27' class='large gfield_select'    aria-required=\"true\" aria-invalid=\"false\" ><option value='Au lyc\u00e9e' >Au lyc\u00e9e<\/option><option value='Dans le sup\u00e9rieur' selected='selected'>Dans le sup\u00e9rieur<\/option><option value='Salari\u00e9 du priv\u00e9' >Salari\u00e9 du priv\u00e9<\/option><option value='Professeur certifi\u00e9' >Professeur certifi\u00e9<\/option><\/select><\/div><\/div><div id=\"field_12_11\" class=\"gfield gfield--type-select gfield--input-type-select gfield_contains_required field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_12_11'>Quel est votre objectif actuel pour les cours ?<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_text\">(N\u00e9cessaire)<\/span><\/span><\/label><div class='ginput_container ginput_container_select'><select name='input_11' id='input_12_11' class='large gfield_select'    aria-required=\"true\" aria-invalid=\"false\" ><option value='Pr\u00e9parer un examen \/ concours' >Pr\u00e9parer un examen \/ concours<\/option><option value='Am\u00e9liorer sa moyenne g\u00e9n\u00e9rale' selected='selected'>Am\u00e9liorer sa moyenne g\u00e9n\u00e9rale<\/option><option value='Am\u00e9liorer sa moyenne dans une mati\u00e8re sp\u00e9cifique' >Am\u00e9liorer sa moyenne dans une mati\u00e8re sp\u00e9cifique<\/option><option value='Rejoindre l&#039;orientation de son choix' >Rejoindre l&#039;orientation de son choix<\/option><option value='Avoir des conseils' >Avoir des conseils<\/option><\/select><\/div><\/div><fieldset id=\"field_12_12\" class=\"gfield gfield--type-radio gfield--type-choice gfield--input-type-radio gfield_contains_required field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><legend class='gfield_label gform-field-label' >Souhaitez-vous faire le point sur votre besoin de cours particuliers avec un conseiller p\u00e9dagogique ?<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_text\">(N\u00e9cessaire)<\/span><\/span><\/legend><div class='ginput_container ginput_container_radio'><div class='gfield_radio' id='input_12_12'>\n\t\t\t<div class='gchoice gchoice_12_12_0'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_12' type='radio' value='Oui'  id='choice_12_12_0' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_12_12_0' id='label_12_12_0' class='gform-field-label gform-field-label--type-inline'>Oui<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_12_12_1'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_12' type='radio' value='Non'  id='choice_12_12_1' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_12_12_1' id='label_12_12_1' class='gform-field-label gform-field-label--type-inline'>Non<\/label>\n\t\t\t<\/div><\/div><\/div><\/fieldset><div id=\"field_12_29\" class=\"gfield gfield--type-phone gfield--input-type-phone gfield--width-full gfield_contains_required field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_12_29'>T\u00e9l\u00e9phone<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_text\">(N\u00e9cessaire)<\/span><\/span><\/label><div class='ginput_container ginput_container_phone'><input name='input_29' id='input_12_29' type='tel' value='' class='large'   aria-required=\"true\" aria-invalid=\"false\"   \/><\/div><\/div><fieldset id=\"field_12_14\" class=\"gfield gfield--type-consent gfield--type-choice gfield--input-type-consent gfield_contains_required field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><legend class='gfield_label gform-field-label gfield_label_before_complex' >RGPD<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_text\">(N\u00e9cessaire)<\/span><\/span><\/legend><div class='ginput_container ginput_container_consent'><input name='input_14.1' id='input_12_14_1' type='checkbox' value='1'   aria-required=\"true\" aria-invalid=\"false\"   \/> <label class=\"gform-field-label gform-field-label--type-inline gfield_consent_label\" for='input_12_14_1' >J&rsquo;accepte la <a href=\"https:\/\/sherpas.com\/mentions-legales\" target=\"_blank\">charte de confidentialit\u00e9<\/a> des Sherpas<\/label><input type='hidden' name='input_14.2' value='J&#039;accepte la &lt;a href=&quot;https:\/\/sherpas.com\/mentions-legales&quot; target=&quot;_blank&quot;&gt;charte de confidentialit\u00e9&lt;\/a&gt; des Sherpas' class='gform_hidden' \/><input type='hidden' name='input_14.3' value='11' class='gform_hidden' \/><\/div><\/fieldset><\/div><\/div>\n        <div class='gform-footer gform_footer top_label'> <input type='submit' id='gform_submit_button_12' class='gform_button button' onclick='gform.submission.handleButtonClick(this);' data-submission-type='submit' value='T\u00c9L\u00c9CHARGER MON EBOOK'  \/> \n            <input type='hidden' class='gform_hidden' name='gform_submission_method' data-js='gform_submission_method_12' value='postback' \/>\n            <input type='hidden' class='gform_hidden' name='gform_theme' data-js='gform_theme_12' id='gform_theme_12' value='gravity-theme' \/>\n            <input type='hidden' class='gform_hidden' name='gform_style_settings' data-js='gform_style_settings_12' id='gform_style_settings_12' value='' \/>\n            <input type='hidden' class='gform_hidden' name='is_submit_12' value='1' \/>\n            <input type='hidden' class='gform_hidden' name='gform_submit' value='12' \/>\n            \n            <input type='hidden' class='gform_hidden' name='gform_currency' data-currency='USD' value='hcHe7qro2taZyaxXEyuvzer4aYTEUVMAwmNCTrH\/qXxi3KrinkZjEfYzijVO9ULVBtSjbghtBqk8oru+QBHumeT37HtP0oG+pYnuOC4UuoRyzec=' \/>\n            <input type='hidden' class='gform_hidden' name='gform_unique_id' value='' \/>\n            <input type='hidden' class='gform_hidden' name='state_12' value='WyJ7XCI4XCI6W1wiNjk3N2Y2N2Y1NmUwNmViMmFlMDFlZTA4MWMxZjBhNGZcIixcIjkzYjE3MTAyMmIwOTcwZWMxZWM3NTAxYjdhMTQ3YzQxXCIsXCJlNGZkYmYxMjU0MTAzZTc3Y2Y2NmE4MGRlNGM5MjY3MFwiLFwiNGY2NjA5MmQ1MDdmNzQ3NGVlNDJjNTdjM2M0NmFiNzVcIixcIjUyMTI5YzUzY2JmZjBiZDdkYzdmY2E1M2Y0MTc0YjEwXCIsXCJkMDdmODZjZGE3NDg4N2M1NDljZTVjOTJhNmY1ZGM1OFwiLFwiNDI0MGQyM2VhZWQyNGNjOTU3NzU4ODgwYzBhMGRlNTZcIl0sXCIxNlwiOltcIjY3Yzk0NjExYjU4M2FlZDk4YTVmNDkwOTNjMTkxMjIyXCIsXCIyZjMwNjEzYmJmY2I3M2I5MzFjM2VkNmU5MzA5MGRhMlwiLFwiMDk1NzJlNGZjZDM0OTNjMjQyZWMxMmFhOTg5ZTE3N2VcIixcIjI2Njg3ZDNhZGY3YmQwMjVjNWI0NjY5MDVkZmQxZDk0XCJdLFwiMTdcIjpbXCIwZDNhZGVhY2M2NzhiYmQ5YjNiN2Y3OGJiNTdiM2JkNFwiLFwiMmVlZDA3OGU1ZmJmZTBlY2JjZDYzZjhlYTA3NzQ1MmZcIixcImM4MDAwN2JlM2ZjMjkyMTc3MGFmZmU2NzQ3ZTU3YmU5XCJdLFwiMThcIjpbXCJkYTYzZDczMWNkZTMxY2ExOWUxMjM4OGM3ZTk4ZDRkY1wiLFwiZmRiZTdkOWZiYmRkZTFjZjNlOTk1ZGQ5MzM4NGI4MDRcIixcIjk4OGFiNjhhOWFkMGRkNWUzMDI1MmYyMzY3M2Y0MDQzXCJdLFwiMTlcIjpbXCI1YzBmZDc0OTM4NmNiOWM5ZWM2MzQ1NGFjMzU1ZGU1NlwiLFwiMzIwN2JjOTMyYjJmMGVlNmI5Y2Y2ODExM2NiN2RmYThcIl0sXCIyMFwiOltcImQxNGZkMmY4YzMwODgyNjI3Zjk2NTlmODNmMDkyY2M5XCIsXCIyYzA1YjUwZjlmN2MyZDNjNDRkMGZhYzNmZWM4MGY3NlwiLFwiYzFkMzM4YTJjOWI3YWYzZTE2NDc3MDkyN2Y4ZWZiNTBcIixcIjRiMThmNzgxZDBjNmVjN2M0YTY2MGM4YTA5NjMxZTg2XCIsXCIwNGJjZGM0YTZmOTBmNjJlYWM4ZDVjY2Y4NTE5MTkyNFwiLFwiMTkxZWE1MzY2MWE5NmQ3MjkwMjAyNTdhYzU4ZTZmNGJcIixcImY0NzIwZTU2YWI4NTcwYzM4MGU5ZjNhMGU2YzA5ZDE2XCJdLFwiMjFcIjpbXCJlODRjMTMxNjIzOWU4OWYzMGY5MGI5NTgxMzM0YmZlZVwiLFwiYzU5NDk2MzllNDAzYmUyMDhmOTg0YjRmNzhjZTIxMGJcIixcImYyMmY2Mjc4YmY4OWRhOWViOWU3NWVhZDBlOWYzNzBkXCIsXCI0YWUwZThhNTYyNDY5N2VhYTI3ZTFiZjM2NmNkODBjZlwiLFwiMTU1MzBkZmE3M2E0OWVhZGQzMThiYzBiMTU4MjgxMTdcIixcImQwMzlhMTRhZTBjNTc0Y2Y0MGFlYjE0ZDMyYzc4ZTU1XCIsXCJkZDRlYjAwYzk0ODdmYzQzZWUzNGQwNjAzYmRjODkzMVwiLFwiMTVmZjQ4NDE5NDA4MDM0MWU4ZmQyMGE0ZTNlZmQ3NjdcIl0sXCIyMlwiOltcImU4NGMxMzE2MjM5ZTg5ZjMwZjkwYjk1ODEzMzRiZmVlXCIsXCJjNTk0OTYzOWU0MDNiZTIwOGY5ODRiNGY3OGNlMjEwYlwiLFwiZjIyZjYyNzhiZjg5ZGE5ZWI5ZTc1ZWFkMGU5ZjM3MGRcIixcIjRhZTBlOGE1NjI0Njk3ZWFhMjdlMWJmMzY2Y2Q4MGNmXCIsXCIxNTUzMGRmYTczYTQ5ZWFkZDMxOGJjMGIxNTgyODExN1wiXSxcIjIzXCI6W1wiNWMwZmQ3NDkzODZjYjljOWVjNjM0NTRhYzM1NWRlNTZcIixcIjMyMDdiYzkzMmIyZjBlZTZiOWNmNjgxMTNjYjdkZmE4XCJdLFwiMjRcIjpbXCI1YzBmZDc0OTM4NmNiOWM5ZWM2MzQ1NGFjMzU1ZGU1NlwiLFwiMzIwN2JjOTMyYjJmMGVlNmI5Y2Y2ODExM2NiN2RmYThcIixcImRkN2Y3YTFiNDJkZDUxZDg3Y2YyMDVmMjJkYjY5NWI5XCJdLFwiMjVcIjpbXCJkNDU0NzIxOWU4OTYyYjA0ZGUzNmJkZWM4MjNmNWEwOFwiLFwiOGYwMTAzZDlhMzcxOTI2NTNjNjQ3NjliMzZlYjZkYTBcIixcIjJkNjg0MGZhZDg1NzJlOGZiNzM5OTM4MGZkMmYyMjIyXCJdLFwiOS4xXCI6XCJkMTA2ZTg3Y2RkMTk3MzI2MWZjZTg5ZmMyMmE1MTc5ZFwiLFwiOS4yXCI6XCJlNGZkYmYxMjU0MTAzZTc3Y2Y2NmE4MGRlNGM5MjY3MFwiLFwiOS4zXCI6XCI5M2IxNzEwMjJiMDk3MGVjMWVjNzUwMWI3YTE0N2M0MVwiLFwiOS40XCI6XCI0ZjY2MDkyZDUwN2Y3NDc0ZWU0MmM1N2MzYzQ2YWI3NVwiLFwiOS41XCI6XCI1MjEyOWM1M2NiZmYwYmQ3ZGM3ZmNhNTNmNDE3NGIxMFwiLFwiMTAuMVwiOlwiNjdjOTQ2MTFiNTgzYWVkOThhNWY0OTA5M2MxOTEyMjJcIixcIjEwLjJcIjpcIjJmMzA2MTNiYmZjYjczYjkzMWMzZWQ2ZTkzMDkwZGEyXCIsXCIxMC4zXCI6XCIwOTU3MmU0ZmNkMzQ5M2MyNDJlYzEyYWE5ODllMTc3ZVwiLFwiMTAuNFwiOlwiMjY2ODdkM2FkZjdiZDAyNWM1YjQ2NjkwNWRmZDFkOTRcIixcIjEwLjVcIjpcIjBkM2FkZWFjYzY3OGJiZDliM2I3Zjc4YmI1N2IzYmQ0XCIsXCIxMC42XCI6XCIyZWVkMDc4ZTVmYmZlMGVjYmNkNjNmOGVhMDc3NDUyZlwiLFwiMTAuN1wiOlwiYzgwMDA3YmUzZmMyOTIxNzcwYWZmZTY3NDdlNTdiZTlcIixcIjEwLjhcIjpcIjgyZTRlZDBkYTU5YjBlZTg3NDk0ZGJlZGVhODI4MmVjXCIsXCIxMC45XCI6XCI0NTI1YTU2NmY1YmQ2NWYwZTEwMTNjMDA2Y2RiYzE1NlwiLFwiMTAuMTFcIjpcIjMwYmE0NTk5MWZmNTU3ZDZkZDZmZThjYTM0MDk1ZWUyXCIsXCIxMC4xMlwiOlwiOTM0ZTQxNzNmNjkzOGU3MWQ3NWYxMTljYTQyNjFkZjhcIixcIjEwLjEzXCI6XCIwMDkyNjhjNDJkNGZiNDczNWVkYjBjODVmZjYyYWVmZVwiLFwiMjZcIjpbXCIxMTIzNTRiMzg1NzBiZWE1YTcyZTg1ZDAxNmFjNjIzZlwiLFwiODQ5OGQyYzQyZTExZDE4NzZlODhhNjg4NjYxODAzZGVcIl0sXCIyN1wiOltcIjMzN2IzNjNlZGE3OGQ2Nzk4NDUyNzdhYzM5Zjk1YjhhXCIsXCI2MGQ0YTNkMzhlY2U5MDNkM2I3ZWJhZmM5ODJkN2Q3ZFwiLFwiYWZiNTgwZjU5NDFhNTQ1YWU4ZTkzMmY5ZGY4OTJiNTNcIixcIjkzOTQ0NTg4M2JiMDY0YTkyNzY0OTVjODkwNzZjYjAwXCJdLFwiMTFcIjpbXCIxMWM3Y2RmYTNkNjJlZWQ3YmI2ZGY4ODU0MjE1ZGYxM1wiLFwiODE4NDcxMDU0NGYzZTc1MzRkN2VlZGM2MDQ4MmUyMmNcIixcImI3MTE5ZDAzNGYxMjYxNmI4YTFiMTdjZTYwYmY0YTIxXCIsXCJlZWEwY2RmYzU4Y2NiNzZjNTEzZmY3NjZhMjQ5NWY5M1wiLFwiZjg0ZmM0MWZiOGEzOGMzMmI1MTQwNmZlMzdjZGFjYmNcIl0sXCIxMlwiOltcIjExMjM1NGIzODU3MGJlYTVhNzJlODVkMDE2YWM2MjNmXCIsXCI4NDk4ZDJjNDJlMTFkMTg3NmU4OGE2ODg2NjE4MDNkZVwiXSxcIjE0LjFcIjpcImI5YjY4OWJlZDA2ZWEyNmQ4ZjRmMTIwYjhmNmExZTlhXCIsXCIxNC4yXCI6XCI1Y2QwZTA0OTAzOTcxNTFjZGFhMmQwYmQ1NDA2MzY5ZlwiLFwiMTQuM1wiOlwiZTZhNzJjYTE0NGYxNThlNjQ3NjAxYmMzMmQ3YzY0NTVcIn0iLCJjNDQ1MWZmMzUxZjFiNGVmYzhhNzFhMGU4ZDgzYTgwZCJd' \/>\n            <input type='hidden' autocomplete='off' class='gform_hidden' name='gform_target_page_number_12' id='gform_target_page_number_12' value='0' \/>\n            <input type='hidden' autocomplete='off' class='gform_hidden' name='gform_source_page_number_12' id='gform_source_page_number_12' value='1' \/>\n            <input type='hidden' name='gform_field_values' value='' \/>\n            \n        <\/div>\n                        <p style=\"display: none !important;\" class=\"akismet-fields-container\" data-prefix=\"ak_\"><label>&#916;<textarea name=\"ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"><\/textarea><\/label><input type=\"hidden\" id=\"ak_js_1\" name=\"ak_js\" value=\"25\"\/><script>document.getElementById( \"ak_js_1\" ).setAttribute( \"value\", ( new Date() ).getTime() );<\/script><\/p><\/form>\n                        <\/div><script type=\"text\/javascript\">\n\/* <![CDATA[ *\/\n gform.initializeOnLoaded( function() {gformInitSpinner( 12, 'https:\/\/sherpas.com\/content\/plugins\/gravityforms\/images\/spinner.svg', true );jQuery('#gform_ajax_frame_12').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_12');var is_confirmation = jQuery(this).contents().find('#gform_confirmation_wrapper_12').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_12').html(form_content.html());if(form_content.hasClass('gform_validation_error')){jQuery('#gform_wrapper_12').addClass('gform_validation_error');} else {jQuery('#gform_wrapper_12').removeClass('gform_validation_error');}setTimeout( function() { \/* delay the scroll by 50 milliseconds to fix a bug in chrome *\/  }, 50 );if(window['gformInitDatepicker']) {gformInitDatepicker();}if(window['gformInitPriceFields']) {gformInitPriceFields();}var current_page = jQuery('#gform_source_page_number_12').val();gformInitSpinner( 12, 'https:\/\/sherpas.com\/content\/plugins\/gravityforms\/images\/spinner.svg', true );jQuery(document).trigger('gform_page_loaded', [12, current_page]);window['gf_submitting_12'] = 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_12').replaceWith(confirmation_content);jQuery(document).trigger('gform_confirmation_loaded', [12]);window['gf_submitting_12'] = false;wp.a11y.speak(jQuery('#gform_confirmation_message_12').text());}else{jQuery('#gform_12').append(contents);if(window['gformRedirect']) {gformRedirect();}}jQuery(document).trigger(\"gform_pre_post_render\", [{ formId: \"12\", currentPage: \"current_page\", abort: function() { this.preventDefault(); } }]);        if (event && event.defaultPrevented) {                return;        }        const gformWrapperDiv = document.getElementById( \"gform_wrapper_12\" );        if ( gformWrapperDiv ) {            const visibilitySpan = document.createElement( \"span\" );            visibilitySpan.id = \"gform_visibility_test_12\";            gformWrapperDiv.insertAdjacentElement( \"afterend\", visibilitySpan );        }        const visibilityTestDiv = document.getElementById( \"gform_visibility_test_12\" );        let postRenderFired = false;        function triggerPostRender() {            if ( postRenderFired ) {                return;            }            postRenderFired = true;            gform.core.triggerPostRenderEvents( 12, 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\/* ]]> *\/\n<\/script>\n                                <\/div>\n                            <\/div>\n                                                            <\/div>\n                    <\/div>\n    <\/div>\n<\/section>\n\n\n<section class=\"reasons\">\n    <div class=\"container\">\n        <h3 class=\"reasons__title\" id=\"au-programme\"><p>Au programme<\/p>\n<\/h3>\n                <div class=\"row\">\n            <div class=\"col-12 col-md-6\">\n                                                            <div class=\"reasons__item\">\n                            <div class=\"reasons__item-number\">1<\/div>\n                            <div class=\"reasons__item-text\">Communiquer ouvertement avec votre ado<\/div>\n                        <\/div>\n                                                                                                                    <div class=\"reasons__item\">\n                            <div class=\"reasons__item-number\">3<\/div>\n                            <div class=\"reasons__item-text\">Responsabiliser le lyc\u00e9en vis-\u00e0-vis de ses \u00e9tudes<\/div>\n                        <\/div>\n                                                                                    <\/div>\n            <div class=\"col-12 col-md-6\">\n                                                                                                <div class=\"reasons__item\">\n                            <div class=\"reasons__item-number\">2<\/div>\n                            <div class=\"reasons__item-text\">Soutenir les apprentissages du lyc\u00e9en<\/div>\n                        <\/div>\n                                                                                                                    <div class=\"reasons__item\">\n                            <div class=\"reasons__item-number\">4<\/div>\n                            <div class=\"reasons__item-text\">Encourager la poursuite des passions<\/div>\n                        <\/div>\n                                                <\/div>\n        <\/div>\n            <\/div>\n<\/section>\n\n\n<section class=\"slider\">\n    <div  class=\"container\" >\n        <div class=\"slider__container\">\n            <div class=\"swiper\">\n                <div class=\"slider__header\">\n                    <div class=\"slider__header-title\">\n                                                <p><p>Quelques extraits en avant-premi\u00e8re<\/p>\n<\/p>\n                                            <\/div>\n\n                    <div class=\"slider__header-navigation\">\n                        <div class=\"slider__header-navigation-arrow slider__header-navigation-arrow--prev\">\n                            <svg>\n                                <use\n                                    xlink:href=\"\/content\/themes\/sherpas-theme\/dist\/images\/sprite.svg#navigation-left\" \/>\n                            <\/svg>\n                        <\/div>\n                        <div class=\"slider__header-navigation-pages\"><\/div>\n                        <div class=\"slider__header-navigation-arrow slider__header-navigation-arrow--next\">\n                            <svg>\n                                <use\n                                    xlink:href=\"\/content\/themes\/sherpas-theme\/dist\/images\/sprite.svg#navigation-right\" \/>\n                            <\/svg>\n                        <\/div>\n                        <span class=\"toggle-fullscreen\" data-modal=\"68241\"><svg\n                                xmlns=\"http:\/\/www.w3.org\/2000\/svg\" height=\"24px\" viewBox=\"0 -960 960 960\"\n                                width=\"24px\" fill=\"black\">\n                                <path\n                                    d=\"M120-120v-200h80v120h120v80H120Zm520 0v-80h120v-120h80v200H640ZM120-640v-200h200v80H200v120h-80Zm640 0v-120H640v-80h200v200h-80Z\" \/>\n                            <\/svg><\/span>\n                    <\/div>\n                <\/div>\n                                    <div class=\"swiper-wrapper\">\n                                                                                                                <div class=\"swiper-slide\">\n                                    <picture>\n\n                                        <img decoding=\"async\" src=\"https:\/\/sherpas.com\/content\/uploads\/sites\/3\/2024\/02\/reconcilier-enfant-maths-extrait-1.jpg\" alt=\"r\u00e9concilier enfant maths extrait 1\">\n                                    <\/picture>\n                                    <p><\/p>\n                                <\/div>\n                                                                                                                                            <div class=\"swiper-slide\">\n                                    <picture>\n\n                                        <img decoding=\"async\" src=\"https:\/\/sherpas.com\/content\/uploads\/sites\/3\/2024\/02\/reconcilier-enfant-maths-extrait-2.jpg\" alt=\"r\u00e9concilier enfant maths extrait 2\">\n                                    <\/picture>\n                                    <p><\/p>\n                                <\/div>\n                                                                                                                                            <div class=\"swiper-slide\">\n                                    <picture>\n\n                                        <img decoding=\"async\" src=\"https:\/\/sherpas.com\/content\/uploads\/sites\/3\/2024\/02\/reconcilier-enfant-maths-extrait-3.jpg\" alt=\"r\u00e9concilier enfant maths extrait 3\">\n                                    <\/picture>\n                                    <p><\/p>\n                                <\/div>\n                                                                        <\/div>\n                            <\/div>\n        <\/div>\n    <\/div>\n<\/section>\n\n<div class=\"modal-slider modal--resource hide\" id=\"68241\">\n    <div class=\"modal__container\">\n        <div class=\"modal--close\" data-modal=\"68241\">\n            Fermer\n            <svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\">\n                <path\n                    d=\"M19 6.41L17.59 5L12 10.59L6.41 5L5 6.41L10.59 12L5 17.59L6.41 19L12 13.41L17.59 19L19 17.59L13.41 12L19 6.41Z\"\n                    fill=\"black\" fill-opacity=\"0.64\" \/>\n            <\/svg>\n        <\/div>\n        <section class=\"slider\">\n            <div class=\"swiper\">\n\n                                    <div class=\"swiper-wrapper\">\n                                                                                                                <div class=\"swiper-slide\">\n                                    <img decoding=\"async\" src=\"https:\/\/sherpas.com\/content\/uploads\/sites\/3\/2024\/02\/reconcilier-enfant-maths-extrait-1.jpg\" alt=\"r\u00e9concilier enfant maths extrait 1\">\n                                    <p><\/p>\n                                <\/div>\n                                                                                                                                            <div class=\"swiper-slide\">\n                                    <img decoding=\"async\" src=\"https:\/\/sherpas.com\/content\/uploads\/sites\/3\/2024\/02\/reconcilier-enfant-maths-extrait-2.jpg\" alt=\"r\u00e9concilier enfant maths extrait 2\">\n                                    <p><\/p>\n                                <\/div>\n                                                                                                                                            <div class=\"swiper-slide\">\n                                    <img decoding=\"async\" src=\"https:\/\/sherpas.com\/content\/uploads\/sites\/3\/2024\/02\/reconcilier-enfant-maths-extrait-3.jpg\" alt=\"r\u00e9concilier enfant maths extrait 3\">\n                                    <p><\/p>\n                                <\/div>\n                                                                        <\/div>\n                                <div class=\"slider__header\">\n\n\n                    <div class=\"slider__header-navigation\">\n                        <div class=\"slider__header-navigation-arrow slider__header-navigation-arrow--prev\">\n                            <svg>\n                                <use\n                                    xlink:href=\"\/content\/themes\/sherpas-theme\/dist\/images\/sprite.svg#navigation-left\" \/>\n                            <\/svg>\n                        <\/div>\n                        <div class=\"slider__header-navigation-pages\"><\/div>\n                        <div class=\"slider__header-navigation-arrow slider__header-navigation-arrow--next\">\n                            <svg>\n                                <use\n                                    xlink:href=\"\/content\/themes\/sherpas-theme\/dist\/images\/sprite.svg#navigation-right\" \/>\n                            <\/svg>\n                        <\/div>\n                    <\/div>\n                <\/div>\n            <\/div>\n        <\/section>\n    <\/div>\n<\/div>\n<div id=\"modal-receiver\">\n<\/div>\n\n\n<section class=\"edito-book\">\n    <div class=\"container\">\n        <h2 class=\"edito-book__title\" id=\"nos-ebooks\">Nos ebooks<\/h2>\n        <div class=\"edito-book__items swiper\">\n            <div class=\"swiper-wrapper\">\n                                                    <a href=\"https:\/\/sherpas.com\/blog\/parents\/a\/guide-rentree-lycee\/\" class=\"edito-book__item swiper-slide\">\n                                                                            <img decoding=\"async\" src=\"https:\/\/sherpas.com\/content\/uploads\/sites\/3\/2023\/09\/Pour-une-rentree-au-lycee-reussie.jpg\" alt=\"Guide pour une rentr\u00e9e au lyc\u00e9e r\u00e9ussie \ud83d\udcaa\">\n                                                                            <div class=\"tag-cap mt-20\">\n                                Toolbox\n                            <\/div>\n                                                <div class=\"d-block t-08 mt-10\">\n                                                                                        Guide pour une rentr\u00e9e au lyc\u00e9e r\u00e9ussie&nbsp;\ud83d\udcaa\n                                                    <\/div>\n                    <\/a>\n                                    <a href=\"https:\/\/sherpas.com\/blog\/parents\/a\/guide-rentree-prepa\/\" class=\"edito-book__item swiper-slide\">\n                                                                            <img decoding=\"async\" src=\"https:\/\/sherpas.com\/content\/uploads\/sites\/3\/2023\/09\/Preparer-la-rentree-en-prepa.jpg\" alt=\"Guide pour une rentr\u00e9e en pr\u00e9pa r\u00e9ussie \ud83d\udcaa\">\n                                                                            <div class=\"tag-cap mt-20\">\n                                Nos ebooks parents\n                            <\/div>\n                                                <div class=\"d-block t-08 mt-10\">\n                                                                                        Guide pour une rentr\u00e9e en pr\u00e9pa r\u00e9ussie&nbsp;\ud83d\udcaa\n                                                    <\/div>\n                    <\/a>\n                                    <a href=\"https:\/\/sherpas.com\/blog\/parents\/a\/guide-parcoursup-2\/\" class=\"edito-book__item swiper-slide\">\n                                                                            <img decoding=\"async\" src=\"https:\/\/sherpas.com\/content\/uploads\/sites\/3\/2023\/11\/Le-guide-ultime-de-Parcoursup.jpg\" alt=\"Guide complet Parcoursup 2025 - 2026 \ud83d\udcbb\">\n                                                                            <div class=\"tag-cap mt-20\">\n                                Toolbox\n                            <\/div>\n                                                <div class=\"d-block t-08 mt-10\">\n                                                                                        Guide complet Parcoursup 2025 &#8211; 2026&nbsp;\ud83d\udcbb\n                                                    <\/div>\n                    <\/a>\n                                            <\/div>\n        <\/div>\n        \n    <\/div>\n<\/section>\n\n\n\n<p>Les math\u00e9matiques sont souvent redout\u00e9es par de nombreux \u00e9l\u00e8ves, mais aussi par leurs parents. Si votre enfant rencontre des difficult\u00e9s en maths, ne paniquez pas ! Ce guide est con\u00e7u pour vous fournir des conseils pratiques pour l&rsquo;aider \u00e0 surmonter ses blocages et \u00e0 retrouver confiance en lui. Suivez le guide et d\u00e9couvrez comment transformer les maths en un jeu d\u2019enfant pour votre ado ! \ud83d\udd25<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"comprendre-les-difficultes-en-mathematiques\">Comprendre les difficult\u00e9s en math\u00e9matiques<\/h2>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"les-difficultes-en-maths-une-fatalite\">Les difficult\u00e9s en maths : une fatalit\u00e9 ? \u274c<\/h3>\n\n\n\n<p>Non, <a href=\"https:\/\/sherpas.com\/blog\/parents\/a\/reconcilier-enfant-maths\/\" data-type=\"post\" data-id=\"264444\">votre enfant n\u2019est pas \u00ab\u00a0nul en maths\u00a0\u00bb,<\/a> m\u00eame s\u2019il le r\u00e9p\u00e8te souvent. Les math\u00e9matiques sont une discipline dans laquelle les progr\u00e8s peuvent \u00eatre exponentiels une fois le \u00ab\u00a0d\u00e9clic\u00a0\u00bb survenu. Il est important de lui faire comprendre que les difficult\u00e9s actuelles peuvent \u00eatre surmont\u00e9es avec de la pratique r\u00e9guli\u00e8re et cibl\u00e9e. Encouragez-le \u00e0 pers\u00e9v\u00e9rer, car les efforts en maths finissent toujours par payer ! \ud83d\udcc8<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"reconnaitre-les-signes-de-difficulte\">Reconna\u00eetre les signes de difficult\u00e9 \ud83d\udcca<\/h3>\n\n\n\n<p>Certains signes peuvent indiquer que votre enfant \u00e9prouve des difficult\u00e9s en math\u00e9matiques, comme une baisse de motivation, des notes en chute libre, ou encore de l&rsquo;<a href=\"https:\/\/sherpas.com\/blog\/parents\/a\/anxiete-enfant\/\" data-type=\"post\" data-id=\"265275\">anxi\u00e9t\u00e9<\/a> avant les cours ou les devoirs. Identifiez ces signes t\u00f4t pour pouvoir agir rapidement et efficacement.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"conseils-pratiques-pour-aider-votre-enfant-en-maths\">Conseils pratiques pour aider votre enfant en maths<\/h2>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"creer-un-environnement-dapprentissage-positif\">Cr\u00e9er un environnement d&rsquo;apprentissage positif \ud83e\udde0<\/h3>\n\n\n\n<p>Assurez-vous que votre <a href=\"https:\/\/sherpas.com\/blog\/parents\/a\/espace-travail-enfant\/\" data-type=\"post\" data-id=\"264431\">enfant dispose d&rsquo;un environnement calme et encourageant pour ses s\u00e9ances de travail<\/a>. Patience et r\u00e9gularit\u00e9 sont les cl\u00e9s du succ\u00e8s en maths. Reformulez les \u00e9nonc\u00e9s des exercices si n\u00e9cessaire, expliquez les concepts difficiles et n\u2019h\u00e9sitez pas \u00e0 utiliser des sch\u00e9mas pour clarifier les points complexes. Enfin, montrez-vous disponible et \u00e0 l\u2019\u00e9coute pour l\u2019aider dans son parcours.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"integrer-les-maths-dans-la-vie-quotidienne\">Int\u00e9grer les maths dans la vie quotidienne \ud83c\udfe0<\/h3>\n\n\n\n<p>Pour rendre les maths plus attractives, essayez de les int\u00e9grer dans des activit\u00e9s quotidiennes. Les jeux comme les \u00e9checs, les sudokus ou m\u00eame certains jeux de cartes peuvent renforcer les comp\u00e9tences math\u00e9matiques de mani\u00e8re ludique. Plus les maths auront du sens dans la vie de tous les jours, plus votre enfant sera motiv\u00e9 \u00e0 les ma\u00eetriser ! \ud83c\udfae<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"utiliser-des-ressources-supplementaires\">Utiliser des ressources suppl\u00e9mentaires \ud83d\udcda<\/h3>\n\n\n\n<p>Des livres tels que \u00ab\u00a0Le grand roman des maths\u00a0\u00bb de Micka\u00ebl Launay ou \u00ab\u00a0Le beau livre des math\u00e9matiques\u00a0\u00bb de Clifford A. Pickover peuvent rendre l\u2019apprentissage des maths plus int\u00e9ressant. N\u2019h\u00e9sitez pas \u00e0 explorer ces ressources avec votre enfant pour diversifier son approche de la mati\u00e8re.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"encourager-la-perseverance-et-la-resilience\">Encourager la pers\u00e9v\u00e9rance et la r\u00e9silience<\/h2>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"faire-face-aux-echecs-avec-optimisme\">Faire face aux \u00e9checs avec optimisme \ud83d\udcaa<\/h3>\n\n\n\n<p>Les \u00e9checs sont in\u00e9vitables en maths, mais ils sont aussi un puissant moteur d\u2019apprentissage. Encouragez votre enfant \u00e0 analyser ses erreurs pour mieux comprendre les concepts. Soulignez ses progr\u00e8s, m\u00eame les plus petits, et mettez l\u2019accent sur ses efforts plut\u00f4t que sur les r\u00e9sultats. Une attitude positive face aux d\u00e9fis est essentielle pour d\u00e9velopper sa r\u00e9silience.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"limportance-des-mathematiques-dans-la-vie-quotidienne\">L\u2019importance des math\u00e9matiques dans la vie quotidienne \ud83c\udf0d<\/h3>\n\n\n\n<p>Expliquez \u00e0 votre enfant que les math\u00e9matiques ne sont pas seulement utiles pour r\u00e9ussir \u00e0 l\u2019\u00e9cole, mais qu\u2019elles sont \u00e9galement pr\u00e9cieuses pour d\u00e9velopper une agilit\u00e9 intellectuelle et un raisonnement logique, <a href=\"https:\/\/sherpas.com\/blog\/utiliser-maths-vie-courante\/\">indispensables dans de nombreux aspects de la vie<\/a>. Que ce soit pour des \u00e9tudes sup\u00e9rieures ou pour des comp\u00e9tences de vie, les maths jouent un r\u00f4le crucial.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"conclusion\">Conclusion<\/h2>\n\n\n\n<p>Les math\u00e9matiques peuvent sembler intimidantes, mais avec les bonnes m\u00e9thodes et un soutien constant, votre enfant peut surmonter ses difficult\u00e9s et m\u00eame apprendre \u00e0 appr\u00e9cier cette mati\u00e8re. Ce guide vous a donn\u00e9 des cl\u00e9s pour accompagner votre ado sur le chemin de la r\u00e9ussite en maths. Pour plus de conseils, n\u2019h\u00e9sitez pas \u00e0 consulter notre <a href=\"https:\/\/sherpas.com\/blog\/parents\/\">blog d\u00e9di\u00e9 aux parents<\/a>. Bonne chance \u00e0 vous et \u00e0 votre enfant dans cette aventure math\u00e9matique ! \ud83c\udf89<\/p>\n\n\n<div class=\"kk-star-ratings kksr-auto kksr-align-center kksr-valign-bottom\"\n    data-payload='{&quot;align&quot;:&quot;center&quot;,&quot;id&quot;:&quot;266026&quot;,&quot;slug&quot;:&quot;default&quot;,&quot;valign&quot;:&quot;bottom&quot;,&quot;ignore&quot;:&quot;&quot;,&quot;reference&quot;:&quot;auto&quot;,&quot;class&quot;:&quot;&quot;,&quot;count&quot;:&quot;0&quot;,&quot;legendonly&quot;:&quot;&quot;,&quot;readonly&quot;:&quot;&quot;,&quot;score&quot;:&quot;0&quot;,&quot;starsonly&quot;:&quot;&quot;,&quot;best&quot;:&quot;5&quot;,&quot;gap&quot;:&quot;5&quot;,&quot;greet&quot;:&quot;Vous avez aim\u00e9 cet article ?&quot;,&quot;legend&quot;:&quot;0\\\/5 - (0 vote)&quot;,&quot;size&quot;:&quot;24&quot;,&quot;title&quot;:&quot;Guide : comment r\u00e9concilier son enfant avec les maths \ud83d\udd22&quot;,&quot;width&quot;:&quot;0&quot;,&quot;_legend&quot;:&quot;{score}\\\/{best} - ({count} {votes})&quot;,&quot;font_factor&quot;:&quot;1.25&quot;}'>\n            \n<div class=\"kksr-stars\">\n    \n<div class=\"kksr-stars-inactive\">\n            <div class=\"kksr-star\" data-star=\"1\" style=\"padding-right: 5px\">\n            \n\n<div class=\"kksr-icon\" style=\"width: 24px; height: 24px;\"><\/div>\n        <\/div>\n            <div class=\"kksr-star\" data-star=\"2\" style=\"padding-right: 5px\">\n            \n\n<div class=\"kksr-icon\" style=\"width: 24px; height: 24px;\"><\/div>\n        <\/div>\n            <div class=\"kksr-star\" data-star=\"3\" style=\"padding-right: 5px\">\n            \n\n<div class=\"kksr-icon\" style=\"width: 24px; height: 24px;\"><\/div>\n        <\/div>\n            <div class=\"kksr-star\" data-star=\"4\" style=\"padding-right: 5px\">\n            \n\n<div class=\"kksr-icon\" style=\"width: 24px; height: 24px;\"><\/div>\n        <\/div>\n            <div class=\"kksr-star\" data-star=\"5\" style=\"padding-right: 5px\">\n            \n\n<div class=\"kksr-icon\" style=\"width: 24px; height: 24px;\"><\/div>\n        <\/div>\n    <\/div>\n    \n<div class=\"kksr-stars-active\" style=\"width: 0px;\">\n            <div class=\"kksr-star\" style=\"padding-right: 5px\">\n            \n\n<div class=\"kksr-icon\" style=\"width: 24px; height: 24px;\"><\/div>\n        <\/div>\n            <div class=\"kksr-star\" style=\"padding-right: 5px\">\n            \n\n<div class=\"kksr-icon\" style=\"width: 24px; height: 24px;\"><\/div>\n        <\/div>\n            <div class=\"kksr-star\" style=\"padding-right: 5px\">\n            \n\n<div class=\"kksr-icon\" style=\"width: 24px; height: 24px;\"><\/div>\n        <\/div>\n            <div class=\"kksr-star\" style=\"padding-right: 5px\">\n            \n\n<div class=\"kksr-icon\" style=\"width: 24px; height: 24px;\"><\/div>\n        <\/div>\n            <div class=\"kksr-star\" style=\"padding-right: 5px\">\n            \n\n<div class=\"kksr-icon\" style=\"width: 24px; height: 24px;\"><\/div>\n        <\/div>\n    <\/div>\n<\/div>\n                \n\n<div class=\"kksr-legend\" style=\"font-size: 19.2px;\">\n            <span class=\"kksr-muted\">Vous avez aim\u00e9 cet article ?<\/span>\n    <\/div>\n    <\/div>\n","protected":false},"excerpt":{"rendered":"<p>Les math\u00e9matiques sont souvent redout\u00e9es par de nombreux \u00e9l\u00e8ves, mais aussi par leurs parents. Si votre enfant rencontre (&#8230;)<\/p>\n","protected":false},"author":334,"featured_media":271533,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":true,"footnotes":""},"category":[15,17,20],"tag":[],"class_list":["post-266026","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-toolbox","category-ebooks-parents","category-scolarite"],"acf":[],"_links":{"self":[{"href":"https:\/\/sherpas.com\/blog\/parents\/wp-json\/wp\/v2\/posts\/266026","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/sherpas.com\/blog\/parents\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/sherpas.com\/blog\/parents\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/sherpas.com\/blog\/parents\/wp-json\/wp\/v2\/users\/334"}],"replies":[{"embeddable":true,"href":"https:\/\/sherpas.com\/blog\/parents\/wp-json\/wp\/v2\/comments?post=266026"}],"version-history":[{"count":0,"href":"https:\/\/sherpas.com\/blog\/parents\/wp-json\/wp\/v2\/posts\/266026\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/sherpas.com\/blog\/parents\/wp-json\/wp\/v2\/media\/271533"}],"wp:attachment":[{"href":"https:\/\/sherpas.com\/blog\/parents\/wp-json\/wp\/v2\/media?parent=266026"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/sherpas.com\/blog\/parents\/wp-json\/wp\/v2\/category?post=266026"},{"taxonomy":"tag","embeddable":true,"href":"https:\/\/sherpas.com\/blog\/parents\/wp-json\/wp\/v2\/tag?post=266026"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}