{"id":264848,"date":"2023-09-29T10:09:23","date_gmt":"2023-09-29T08:09:23","guid":{"rendered":"https:\/\/sherpas.com\/blog\/parents\/?p=264848"},"modified":"2025-08-01T11:00:50","modified_gmt":"2025-08-01T09:00:50","slug":"guide-rentree-prepa","status":"publish","type":"post","link":"https:\/\/sherpas.com\/blog\/parents\/a\/guide-rentree-prepa\/","title":{"rendered":"Guide pour une rentr\u00e9e en pr\u00e9pa r\u00e9ussie \ud83d\udcaa"},"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\/09\/13.-Guide-parents-pour-une-rentree-en-prepa-reussie-fond.png\" alt=\"\">\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-vite-votre-guide-special-rentree-en-prepa\"><p>T\u00e9l\u00e9chargez vite votre guide sp\u00e9cial rentr\u00e9e en pr\u00e9pa !<\/p>\n<\/h1>\n                            <div class=\"t-08\"><p>\ud83d\udc49 Un ebook sp\u00e9cial rentr\u00e9e de 20 pages<br \/>\n\ud83d\udc49 des explications et des conseils pratiques<br \/>\n\ud83d\udc49 Tout pour aborder sereinement ce passage avec votre ado<\/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_4' style='display:none'>\n                        <div class='gform_heading'>\n                            <h2 class=\"gform_title\" id=\"13-guide-parents-rentree-prepa\">13. Guide parents rentr\u00e9e pr\u00e9pa<\/h2>\n                            <p class='gform_description'><\/p>\n                        <\/div><form method='post' enctype='multipart\/form-data'  id='gform_4'  action='\/blog\/parents\/wp-json\/wp\/v2\/posts\/264848' data-formid='4' novalidate><input type=\"hidden\" name=\"_token\" value=\"\">\n                        <div class='gform-body gform_body'><div id='gform_fields_4' class='gform_fields top_label form_sublabel_below description_below validation_below'><fieldset id=\"field_4_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_4_5'>\n                            \n                            <span id='input_4_5_3_container' class='name_first gform-grid-col gform-grid-col--size-auto' >\n                                                    <input type='text' name='input_5.3' id='input_4_5_3' value=''   aria-required='true'   placeholder='Pr\u00e9nom'  \/>\n                                                    <label for='input_4_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_4_5_6_container' class='name_last gform-grid-col gform-grid-col--size-auto' >\n                                                    <input type='text' name='input_5.6' id='input_4_5_6' value=''   aria-required='true'   placeholder='Nom'  \/>\n                                                    <label for='input_4_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_4_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_4_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_4_7' type='email' value='' class='large'    aria-required=\"true\" aria-invalid=\"false\"  \/>\n                        <\/div><\/div><div id=\"field_4_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_4_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_4_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_4_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_4_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_4_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_4_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_4_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_4_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_4_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_4_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_4_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_4_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_4_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_4_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_4_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_4_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_4_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_4_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_4_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_4_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_4_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_4_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_4_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_4_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_4_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_4_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_4_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_4_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_4_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_4_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_4_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_4_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_4_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_4_9'><div class='gchoice gchoice_4_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_4_9_1'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_4_9_1' id='label_4_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_4_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_4_9_2'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_4_9_2' id='label_4_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_4_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_4_9_3'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_4_9_3' id='label_4_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_4_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_4_9_4'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_4_9_4' id='label_4_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_4_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_4_9_5'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_4_9_5' id='label_4_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_4_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_4_10'><div class='gchoice gchoice_4_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_4_10_1'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_4_10_1' id='label_4_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_4_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_4_10_2'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_4_10_2' id='label_4_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_4_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_4_10_3'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_4_10_3' id='label_4_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_4_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_4_10_4'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_4_10_4' id='label_4_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_4_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_4_10_5'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_4_10_5' id='label_4_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_4_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_4_10_6'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_4_10_6' id='label_4_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_4_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_4_10_7'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_4_10_7' id='label_4_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_4_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_4_10_8'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_4_10_8' id='label_4_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_4_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_4_10_9'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_4_10_9' id='label_4_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_4_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_4_10_11'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_4_10_11' id='label_4_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_4_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_4_10_12'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_4_10_12' id='label_4_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_4_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_4_10_13'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_4_10_13' id='label_4_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_4_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_4_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_4_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_4_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_4_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_4_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_4_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_4_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_4_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_4_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_4_12'>\n\t\t\t<div class='gchoice gchoice_4_12_0'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_12' type='radio' value='Oui'  id='choice_4_12_0' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_4_12_0' id='label_4_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_4_12_1'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_12' type='radio' value='Non'  id='choice_4_12_1' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_4_12_1' id='label_4_12_1' class='gform-field-label gform-field-label--type-inline'>Non<\/label>\n\t\t\t<\/div><\/div><\/div><\/fieldset><div id=\"field_4_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_4_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_4_29' type='tel' value='' class='large'   aria-required=\"true\" aria-invalid=\"false\"   \/><\/div><\/div><fieldset id=\"field_4_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_4_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_4_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='4' class='gform_hidden' \/><\/div><\/fieldset><\/div><\/div>\n        <div class='gform-footer gform_footer top_label'> <input type='submit' id='gform_submit_button_4' 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_4' value='postback' \/>\n            <input type='hidden' class='gform_hidden' name='gform_theme' data-js='gform_theme_4' id='gform_theme_4' value='gravity-theme' \/>\n            <input type='hidden' class='gform_hidden' name='gform_style_settings' data-js='gform_style_settings_4' id='gform_style_settings_4' value='' \/>\n            <input type='hidden' class='gform_hidden' name='is_submit_4' value='1' \/>\n            <input type='hidden' class='gform_hidden' name='gform_submit' value='4' \/>\n            \n            <input type='hidden' class='gform_hidden' name='gform_currency' data-currency='USD' value='H\/XzLUOi7s7X1Ydail4TXJzn9ZXSoC1W3lmbpnap6cu\/5zhRiGC9jEf4rqH61i05RlzYbznU+2T7KiJSfUhmf2gp2Zb7fiEtBImqVOO+j5C2OpY=' \/>\n            <input type='hidden' class='gform_hidden' name='gform_unique_id' value='' \/>\n            <input type='hidden' class='gform_hidden' name='state_4' value='WyJ7XCI4XCI6W1wiNjk3N2Y2N2Y1NmUwNmViMmFlMDFlZTA4MWMxZjBhNGZcIixcIjkzYjE3MTAyMmIwOTcwZWMxZWM3NTAxYjdhMTQ3YzQxXCIsXCJlNGZkYmYxMjU0MTAzZTc3Y2Y2NmE4MGRlNGM5MjY3MFwiLFwiNGY2NjA5MmQ1MDdmNzQ3NGVlNDJjNTdjM2M0NmFiNzVcIixcIjUyMTI5YzUzY2JmZjBiZDdkYzdmY2E1M2Y0MTc0YjEwXCIsXCJkMDdmODZjZGE3NDg4N2M1NDljZTVjOTJhNmY1ZGM1OFwiLFwiNDI0MGQyM2VhZWQyNGNjOTU3NzU4ODgwYzBhMGRlNTZcIl0sXCIxNlwiOltcIjY3Yzk0NjExYjU4M2FlZDk4YTVmNDkwOTNjMTkxMjIyXCIsXCIyZjMwNjEzYmJmY2I3M2I5MzFjM2VkNmU5MzA5MGRhMlwiLFwiMDk1NzJlNGZjZDM0OTNjMjQyZWMxMmFhOTg5ZTE3N2VcIixcIjI2Njg3ZDNhZGY3YmQwMjVjNWI0NjY5MDVkZmQxZDk0XCJdLFwiMTdcIjpbXCIwZDNhZGVhY2M2NzhiYmQ5YjNiN2Y3OGJiNTdiM2JkNFwiLFwiMmVlZDA3OGU1ZmJmZTBlY2JjZDYzZjhlYTA3NzQ1MmZcIixcImM4MDAwN2JlM2ZjMjkyMTc3MGFmZmU2NzQ3ZTU3YmU5XCJdLFwiMThcIjpbXCJkYTYzZDczMWNkZTMxY2ExOWUxMjM4OGM3ZTk4ZDRkY1wiLFwiZmRiZTdkOWZiYmRkZTFjZjNlOTk1ZGQ5MzM4NGI4MDRcIixcIjk4OGFiNjhhOWFkMGRkNWUzMDI1MmYyMzY3M2Y0MDQzXCJdLFwiMTlcIjpbXCI1YzBmZDc0OTM4NmNiOWM5ZWM2MzQ1NGFjMzU1ZGU1NlwiLFwiMzIwN2JjOTMyYjJmMGVlNmI5Y2Y2ODExM2NiN2RmYThcIl0sXCIyMFwiOltcImQxNGZkMmY4YzMwODgyNjI3Zjk2NTlmODNmMDkyY2M5XCIsXCIyYzA1YjUwZjlmN2MyZDNjNDRkMGZhYzNmZWM4MGY3NlwiLFwiYzFkMzM4YTJjOWI3YWYzZTE2NDc3MDkyN2Y4ZWZiNTBcIixcIjRiMThmNzgxZDBjNmVjN2M0YTY2MGM4YTA5NjMxZTg2XCIsXCIwNGJjZGM0YTZmOTBmNjJlYWM4ZDVjY2Y4NTE5MTkyNFwiLFwiMTkxZWE1MzY2MWE5NmQ3MjkwMjAyNTdhYzU4ZTZmNGJcIixcImY0NzIwZTU2YWI4NTcwYzM4MGU5ZjNhMGU2YzA5ZDE2XCJdLFwiMjFcIjpbXCJlODRjMTMxNjIzOWU4OWYzMGY5MGI5NTgxMzM0YmZlZVwiLFwiYzU5NDk2MzllNDAzYmUyMDhmOTg0YjRmNzhjZTIxMGJcIixcImYyMmY2Mjc4YmY4OWRhOWViOWU3NWVhZDBlOWYzNzBkXCIsXCI0YWUwZThhNTYyNDY5N2VhYTI3ZTFiZjM2NmNkODBjZlwiLFwiMTU1MzBkZmE3M2E0OWVhZGQzMThiYzBiMTU4MjgxMTdcIixcImQwMzlhMTRhZTBjNTc0Y2Y0MGFlYjE0ZDMyYzc4ZTU1XCIsXCJkZDRlYjAwYzk0ODdmYzQzZWUzNGQwNjAzYmRjODkzMVwiLFwiMTVmZjQ4NDE5NDA4MDM0MWU4ZmQyMGE0ZTNlZmQ3NjdcIl0sXCIyMlwiOltcImU4NGMxMzE2MjM5ZTg5ZjMwZjkwYjk1ODEzMzRiZmVlXCIsXCJjNTk0OTYzOWU0MDNiZTIwOGY5ODRiNGY3OGNlMjEwYlwiLFwiZjIyZjYyNzhiZjg5ZGE5ZWI5ZTc1ZWFkMGU5ZjM3MGRcIixcIjRhZTBlOGE1NjI0Njk3ZWFhMjdlMWJmMzY2Y2Q4MGNmXCIsXCIxNTUzMGRmYTczYTQ5ZWFkZDMxOGJjMGIxNTgyODExN1wiXSxcIjIzXCI6W1wiNWMwZmQ3NDkzODZjYjljOWVjNjM0NTRhYzM1NWRlNTZcIixcIjMyMDdiYzkzMmIyZjBlZTZiOWNmNjgxMTNjYjdkZmE4XCJdLFwiMjRcIjpbXCI1YzBmZDc0OTM4NmNiOWM5ZWM2MzQ1NGFjMzU1ZGU1NlwiLFwiMzIwN2JjOTMyYjJmMGVlNmI5Y2Y2ODExM2NiN2RmYThcIixcImRkN2Y3YTFiNDJkZDUxZDg3Y2YyMDVmMjJkYjY5NWI5XCJdLFwiMjVcIjpbXCJkNDU0NzIxOWU4OTYyYjA0ZGUzNmJkZWM4MjNmNWEwOFwiLFwiOGYwMTAzZDlhMzcxOTI2NTNjNjQ3NjliMzZlYjZkYTBcIixcIjJkNjg0MGZhZDg1NzJlOGZiNzM5OTM4MGZkMmYyMjIyXCJdLFwiOS4xXCI6XCJkMTA2ZTg3Y2RkMTk3MzI2MWZjZTg5ZmMyMmE1MTc5ZFwiLFwiOS4yXCI6XCJlNGZkYmYxMjU0MTAzZTc3Y2Y2NmE4MGRlNGM5MjY3MFwiLFwiOS4zXCI6XCI5M2IxNzEwMjJiMDk3MGVjMWVjNzUwMWI3YTE0N2M0MVwiLFwiOS40XCI6XCI0ZjY2MDkyZDUwN2Y3NDc0ZWU0MmM1N2MzYzQ2YWI3NVwiLFwiOS41XCI6XCI1MjEyOWM1M2NiZmYwYmQ3ZGM3ZmNhNTNmNDE3NGIxMFwiLFwiMTAuMVwiOlwiNjdjOTQ2MTFiNTgzYWVkOThhNWY0OTA5M2MxOTEyMjJcIixcIjEwLjJcIjpcIjJmMzA2MTNiYmZjYjczYjkzMWMzZWQ2ZTkzMDkwZGEyXCIsXCIxMC4zXCI6XCIwOTU3MmU0ZmNkMzQ5M2MyNDJlYzEyYWE5ODllMTc3ZVwiLFwiMTAuNFwiOlwiMjY2ODdkM2FkZjdiZDAyNWM1YjQ2NjkwNWRmZDFkOTRcIixcIjEwLjVcIjpcIjBkM2FkZWFjYzY3OGJiZDliM2I3Zjc4YmI1N2IzYmQ0XCIsXCIxMC42XCI6XCIyZWVkMDc4ZTVmYmZlMGVjYmNkNjNmOGVhMDc3NDUyZlwiLFwiMTAuN1wiOlwiYzgwMDA3YmUzZmMyOTIxNzcwYWZmZTY3NDdlNTdiZTlcIixcIjEwLjhcIjpcIjgyZTRlZDBkYTU5YjBlZTg3NDk0ZGJlZGVhODI4MmVjXCIsXCIxMC45XCI6XCI0NTI1YTU2NmY1YmQ2NWYwZTEwMTNjMDA2Y2RiYzE1NlwiLFwiMTAuMTFcIjpcIjMwYmE0NTk5MWZmNTU3ZDZkZDZmZThjYTM0MDk1ZWUyXCIsXCIxMC4xMlwiOlwiOTM0ZTQxNzNmNjkzOGU3MWQ3NWYxMTljYTQyNjFkZjhcIixcIjEwLjEzXCI6XCIwMDkyNjhjNDJkNGZiNDczNWVkYjBjODVmZjYyYWVmZVwiLFwiMjZcIjpbXCIxMTIzNTRiMzg1NzBiZWE1YTcyZTg1ZDAxNmFjNjIzZlwiLFwiODQ5OGQyYzQyZTExZDE4NzZlODhhNjg4NjYxODAzZGVcIl0sXCIyN1wiOltcIjMzN2IzNjNlZGE3OGQ2Nzk4NDUyNzdhYzM5Zjk1YjhhXCIsXCI2MGQ0YTNkMzhlY2U5MDNkM2I3ZWJhZmM5ODJkN2Q3ZFwiLFwiYWZiNTgwZjU5NDFhNTQ1YWU4ZTkzMmY5ZGY4OTJiNTNcIixcIjkzOTQ0NTg4M2JiMDY0YTkyNzY0OTVjODkwNzZjYjAwXCJdLFwiMTFcIjpbXCIxMWM3Y2RmYTNkNjJlZWQ3YmI2ZGY4ODU0MjE1ZGYxM1wiLFwiODE4NDcxMDU0NGYzZTc1MzRkN2VlZGM2MDQ4MmUyMmNcIixcImI3MTE5ZDAzNGYxMjYxNmI4YTFiMTdjZTYwYmY0YTIxXCIsXCJlZWEwY2RmYzU4Y2NiNzZjNTEzZmY3NjZhMjQ5NWY5M1wiLFwiZjg0ZmM0MWZiOGEzOGMzMmI1MTQwNmZlMzdjZGFjYmNcIl0sXCIxMlwiOltcIjExMjM1NGIzODU3MGJlYTVhNzJlODVkMDE2YWM2MjNmXCIsXCI4NDk4ZDJjNDJlMTFkMTg3NmU4OGE2ODg2NjE4MDNkZVwiXSxcIjE0LjFcIjpcImI5YjY4OWJlZDA2ZWEyNmQ4ZjRmMTIwYjhmNmExZTlhXCIsXCIxNC4yXCI6XCI1Y2QwZTA0OTAzOTcxNTFjZGFhMmQwYmQ1NDA2MzY5ZlwiLFwiMTQuM1wiOlwiZDJlYzMwMDgwY2IwMWNiNTljNTc5M2FhMGJmZDU0MDBcIn0iLCIwNGFlNTNiMGM1ODQ1ODdhZTA4ZDE4NGYyYjgxZGViNiJd' \/>\n            <input type='hidden' autocomplete='off' class='gform_hidden' name='gform_target_page_number_4' id='gform_target_page_number_4' value='0' \/>\n            <input type='hidden' autocomplete='off' class='gform_hidden' name='gform_source_page_number_4' id='gform_source_page_number_4' 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=\"249\"\/><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( 4, 'https:\/\/sherpas.com\/content\/plugins\/gravityforms\/images\/spinner.svg', true );jQuery('#gform_ajax_frame_4').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_4');var is_confirmation = jQuery(this).contents().find('#gform_confirmation_wrapper_4').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_4').html(form_content.html());if(form_content.hasClass('gform_validation_error')){jQuery('#gform_wrapper_4').addClass('gform_validation_error');} else {jQuery('#gform_wrapper_4').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_4').val();gformInitSpinner( 4, 'https:\/\/sherpas.com\/content\/plugins\/gravityforms\/images\/spinner.svg', true );jQuery(document).trigger('gform_page_loaded', [4, current_page]);window['gf_submitting_4'] = 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_4').replaceWith(confirmation_content);jQuery(document).trigger('gform_confirmation_loaded', [4]);window['gf_submitting_4'] = false;wp.a11y.speak(jQuery('#gform_confirmation_message_4').text());}else{jQuery('#gform_4').append(contents);if(window['gformRedirect']) {gformRedirect();}}jQuery(document).trigger(\"gform_pre_post_render\", [{ formId: \"4\", currentPage: \"current_page\", abort: function() { this.preventDefault(); } }]);        if (event && event.defaultPrevented) {                return;        }        const gformWrapperDiv = document.getElementById( \"gform_wrapper_4\" );        if ( gformWrapperDiv ) {            const visibilitySpan = document.createElement( \"span\" );            visibilitySpan.id = \"gform_visibility_test_4\";            gformWrapperDiv.insertAdjacentElement( \"afterend\", visibilitySpan );        }        const visibilityTestDiv = document.getElementById( \"gform_visibility_test_4\" );        let postRenderFired = false;        function triggerPostRender() {            if ( postRenderFired ) {                return;            }            postRenderFired = true;            gform.core.triggerPostRenderEvents( 4, 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\">Comprendre la classe pr\u00e9paratoire \ud83d\udc53<\/div>\n                        <\/div>\n                                                                                                                    <div class=\"reasons__item\">\n                            <div class=\"reasons__item-number\">3<\/div>\n                            <div class=\"reasons__item-text\">Pr\u00e9parer efficacement la rentr\u00e9e : nos conseils pratiques \u2728<\/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\">Une rentr\u00e9e en pr\u00e9pa : qu\u2019est-ce qui est diff\u00e9rent du lyc\u00e9e ou de l\u2019universit\u00e9 ? \ud83c\udf93<\/div>\n                        <\/div>\n                                                                                                                    <div class=\"reasons__item\">\n                            <div class=\"reasons__item-number\">4<\/div>\n                            <div class=\"reasons__item-text\">L\u2019aider \u00e0 d\u00e9velopper des m\u00e9thodes de travail efficaces \ud83d\udcaa<\/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=\"18465\"><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\/2023\/09\/rentree-prepa-extrait-1.jpg\" alt=\"rentr\u00e9e pr\u00e9pa 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\/2023\/09\/rentree-prepa-extrait-2.jpg\" alt=\"rentr\u00e9e pr\u00e9pa 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\/2023\/09\/rentree-prepa-extrait-3.jpg\" alt=\"rentr\u00e9e pr\u00e9pa 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=\"18465\">\n    <div class=\"modal__container\">\n        <div class=\"modal--close\" data-modal=\"18465\">\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\/2023\/09\/rentree-prepa-extrait-1.jpg\" alt=\"rentr\u00e9e pr\u00e9pa extrait 1\">\n                                    <p><\/p>\n                                <\/div>\n                                                                                                                                            <div class=\"swiper-slide\">\n                                    <img decoding=\"async\" src=\"https:\/\/sherpas.com\/content\/uploads\/sites\/3\/2023\/09\/rentree-prepa-extrait-2.jpg\" alt=\"rentr\u00e9e pr\u00e9pa extrait 2\">\n                                    <p><\/p>\n                                <\/div>\n                                                                                                                                            <div class=\"swiper-slide\">\n                                    <img decoding=\"async\" src=\"https:\/\/sherpas.com\/content\/uploads\/sites\/3\/2023\/09\/rentree-prepa-extrait-3.jpg\" alt=\"rentr\u00e9e pr\u00e9pa 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                                            <\/div>\n        <\/div>\n        \n    <\/div>\n<\/section>\n\n\n\n<p>La <a href=\"https:\/\/sherpas.com\/blog\/parents\/a\/differences-universite-prepa\/\" data-type=\"post\" data-id=\"266633\">rentr\u00e9e en classe pr\u00e9paratoire<\/a> marque une \u00e9tape cruciale dans la vie de votre enfant, et en tant que parent, vous jouez un r\u00f4le essentiel dans son accompagnement. Ce guide est con\u00e7u pour vous aider \u00e0 comprendre les sp\u00e9cificit\u00e9s des classes pr\u00e9paratoires, \u00e0 anticiper les d\u00e9fis et \u00e0 offrir le soutien n\u00e9cessaire \u00e0 votre \u00e9tudiant pour qu\u2019il r\u00e9ussisse cette transition en toute s\u00e9r\u00e9nit\u00e9.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"comprendre-les-specificites-des-classes-preparatoires\">Comprendre les sp\u00e9cificit\u00e9s des classes pr\u00e9paratoires<\/h2>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"quest-ce-quune-classe-preparatoire\">Qu&rsquo;est-ce qu&rsquo;une classe pr\u00e9paratoire ? \ud83c\udf93<\/h3>\n\n\n\n<p>Les classes pr\u00e9paratoires aux grandes \u00e9coles (CPGE) sont des formations post-baccalaur\u00e9at tr\u00e8s exigeantes, visant \u00e0 <a href=\"https:\/\/sherpas.com\/blog\/parents\/a\/soutien-scolaire-preparation-concours\/\" data-type=\"post\" data-id=\"269008\">pr\u00e9parer les \u00e9tudiants aux concours d&rsquo;entr\u00e9e des grandes \u00e9coles<\/a>. Elles se distinguent par un niveau acad\u00e9mique \u00e9lev\u00e9 et une charge de travail intensive, qui n\u00e9cessitent un engagement total de la part des \u00e9l\u00e8ves. Les cours y sont dispens\u00e9s de mani\u00e8re intensive, avec des sessions en petits groupes appel\u00e9es <em><a href=\"https:\/\/sherpas.com\/blog\/parents\/a\/kholle\/\" data-type=\"post\" data-id=\"264432\">kh\u00f4lles<\/a><\/em> pour approfondir les connaissances.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"les-avantages-et-les-defis-dune-classe-preparatoire\">Les avantages et les d\u00e9fis d&rsquo;une classe pr\u00e9paratoire \u2696\ufe0f<\/h3>\n\n\n\n<p>Opter pour une classe pr\u00e9paratoire pr\u00e9sente des avantages significatifs, notamment l\u2019acquisition de comp\u00e9tences rigoureuses, la pr\u00e9paration aux concours les plus prestigieux et l&rsquo;ouverture vers des carri\u00e8res d&rsquo;excellence. Toutefois, le rythme intensif et les attentes \u00e9lev\u00e9es peuvent <a href=\"https:\/\/sherpas.com\/blog\/parents\/a\/stress-examen\/\" data-type=\"post\" data-id=\"264454\">g\u00e9n\u00e9rer du stress<\/a> et n\u00e9cessitent une gestion efficace du temps et des priorit\u00e9s. En tant que parent, il est essentiel de soutenir votre enfant dans cette d\u00e9marche en \u00e9tant attentif \u00e0 son bien-\u00eatre.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"se-preparer-a-une-rentree-en-prepa\">Se pr\u00e9parer \u00e0 une rentr\u00e9e en pr\u00e9pa<\/h2>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"les-differences-majeures-avec-le-lycee\">Les diff\u00e9rences majeures avec le lyc\u00e9e \ud83c\udfeb<\/h3>\n\n\n\n<p>La transition entre le lyc\u00e9e et la pr\u00e9pa peut \u00eatre d\u00e9routante. Alors que le lyc\u00e9e offre un cadre plus souple, la pr\u00e9pa impose un rythme de travail beaucoup plus intense et des attentes acad\u00e9miques tr\u00e8s \u00e9lev\u00e9es. Les \u00e9tudiants doivent non seulement assimiler un grand volume d&rsquo;informations, mais aussi d\u00e9velopper des capacit\u00e9s d\u2019analyse et de synth\u00e8se approfondies. Encourager votre enfant \u00e0 adopter une m\u00e9thode de travail active et \u00e0 renforcer ses relations avec ses enseignants sera cl\u00e9 pour sa r\u00e9ussite.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"checklist-pour-une-rentree-reussie\">Checklist pour une rentr\u00e9e r\u00e9ussie \u2705<\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong><a href=\"https:\/\/sherpas.com\/blog\/parents\/a\/trouver-logement-etudiant\/\" data-type=\"post\" data-id=\"265135\">Trouver un logement adapt\u00e9<\/a> :<\/strong> Proche du lieu d&rsquo;\u00e9tudes, s\u00fbr et confortable.<\/li>\n\n\n\n<li><strong>Souscrire une assurance habitation et responsabilit\u00e9 civile :<\/strong> Obligatoires dans la plupart des r\u00e9sidences \u00e9tudiantes.<\/li>\n\n\n\n<li><strong>Pr\u00e9voir <a href=\"https:\/\/sherpas.com\/blog\/parents\/a\/comment-choisir-mutuelle-etudiante\/\" data-type=\"post\" data-id=\"265894\">une mutuelle sant\u00e9<\/a> :<\/strong> Pour couvrir les frais m\u00e9dicaux.<\/li>\n\n\n\n<li><strong>Acqu\u00e9rir un ordinateur performant :<\/strong> Indispensable pour les cours et les travaux de recherche.<\/li>\n\n\n\n<li><strong>Planifier les transports et la restauration :<\/strong> Pour une organisation sans faille d\u00e8s le premier jour.<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"accompagner-votre-enfant-tout-au-long-de-lannee\">Accompagner votre enfant tout au long de l&rsquo;ann\u00e9e<\/h2>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"gerer-le-stress-et-prevenir-le-burn-out\">G\u00e9rer le stress et pr\u00e9venir le burn-out \ud83d\udc86\u200d\u2642\ufe0f<\/h3>\n\n\n\n<p>La charge de travail en pr\u00e9pa est telle qu&rsquo;il est crucial de surveiller les <a href=\"https:\/\/sherpas.com\/blog\/parents\/a\/signe-stress-ado\/\" data-type=\"post\" data-id=\"267258\">signes de stress<\/a> et de surmenage chez votre enfant. Encouragez-le \u00e0 trouver un \u00e9quilibre entre ses \u00e9tudes et ses loisirs, et soyez attentif aux signaux d\u2019alarme tels que des troubles du sommeil, une irritabilit\u00e9 accrue ou une baisse des performances scolaires. En tant que parent, votre r\u00f4le est de cr\u00e9er un environnement apaisant et de lui rappeler que vous \u00eates l\u00e0 pour le soutenir, quelle que soit la difficult\u00e9.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"developper-des-methodes-de-travail-efficaces\">D\u00e9velopper des m\u00e9thodes de travail efficaces \ud83d\udcda<\/h3>\n\n\n\n<p>La r\u00e9ussite en pr\u00e9pa repose largement sur une <a href=\"https:\/\/sherpas.com\/blog\/parents\/a\/gestion-temps-ado\/\" data-type=\"post\" data-id=\"267193\">bonne gestion du temps<\/a>. Aidez votre enfant \u00e0 \u00e9tablir un planning de r\u00e9visions r\u00e9aliste, qui tient compte des cours, des devoirs et des moments de d\u00e9tente. Si n\u00e9cessaire, envisagez le recours \u00e0 des <a href=\"https:\/\/sherpas.com\/\">cours particuliers<\/a> pour combler les lacunes ou renforcer certains acquis. De nombreux professeurs issus des pr\u00e9pas peuvent offrir un soutien personnalis\u00e9, pr\u00e9cieux pour am\u00e9liorer l&rsquo;organisation et la m\u00e9thodologie de travail.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"conclusion\">Conclusion<\/h2>\n\n\n\n<p>La rentr\u00e9e en classe pr\u00e9paratoire est un moment charni\u00e8re dans la vie de votre enfant. En tant que parent, votre r\u00f4le est d&rsquo;accompagner cette transition en offrant un soutien \u00e0 la fois logistique et \u00e9motionnel. Avec une bonne pr\u00e9paration et une attention constante \u00e0 son bien-\u00eatre, votre enfant pourra aborder cette p\u00e9riode avec confiance et d\u00e9termination. N\u2019oubliez pas, votre soutien est un atout majeur dans sa r\u00e9ussite !<\/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;264848&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 pour une rentr\u00e9e en pr\u00e9pa r\u00e9ussie \ud83d\udcaa&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>La rentr\u00e9e en classe pr\u00e9paratoire marque une \u00e9tape cruciale dans la vie de votre enfant, et en tant (&#8230;)<\/p>\n","protected":false},"author":336,"featured_media":271537,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":true,"footnotes":""},"category":[17,15],"tag":[],"class_list":["post-264848","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-ebooks-parents","category-toolbox"],"acf":[],"_links":{"self":[{"href":"https:\/\/sherpas.com\/blog\/parents\/wp-json\/wp\/v2\/posts\/264848","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\/336"}],"replies":[{"embeddable":true,"href":"https:\/\/sherpas.com\/blog\/parents\/wp-json\/wp\/v2\/comments?post=264848"}],"version-history":[{"count":0,"href":"https:\/\/sherpas.com\/blog\/parents\/wp-json\/wp\/v2\/posts\/264848\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/sherpas.com\/blog\/parents\/wp-json\/wp\/v2\/media\/271537"}],"wp:attachment":[{"href":"https:\/\/sherpas.com\/blog\/parents\/wp-json\/wp\/v2\/media?parent=264848"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/sherpas.com\/blog\/parents\/wp-json\/wp\/v2\/category?post=264848"},{"taxonomy":"tag","embeddable":true,"href":"https:\/\/sherpas.com\/blog\/parents\/wp-json\/wp\/v2\/tag?post=264848"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}