{"id":266377,"date":"2024-03-14T09:00:00","date_gmt":"2024-03-14T08:00:00","guid":{"rendered":"https:\/\/sherpas.com\/blog\/parents\/?p=266377"},"modified":"2025-08-01T10:59:34","modified_gmt":"2025-08-01T08:59:34","slug":"epreuve-philosophie-bac","status":"publish","type":"post","link":"https:\/\/sherpas.com\/blog\/parents\/a\/epreuve-philosophie-bac\/","title":{"rendered":"Le guide parents \u2013 e\u0301preuve de philosophie au bac \ud83d\udcda"},"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-notre-guide-de-lepreuve-de-philo-du-bac\"><p>T\u00e9l\u00e9chargez notre guide de l&rsquo;\u00e9preuve de philo du bac !<\/p>\n<\/h1>\n                            <div class=\"t-08\"><p>\ud83d\udc49 Un ebook de 13 pages pour comprendre l&rsquo;\u00e9preuve de philosophie au bac<br \/>\n\ud83d\udc49 Des conseils cl\u00e9s pour aider votre ado \u00e0 se pr\u00e9parer \u00e0 l&rsquo;\u00e9preuve<br \/>\n\ud83d\udc49 Des m\u00e9thodes d&rsquo;organisation pour apprendre efficacement<\/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_21' style='display:none'>\n                        <div class='gform_heading'>\n                            <h2 class=\"gform_title\" id=\"23-le-guide-parents-epreuve-de-philosophie-au-bac\">23. Le guide parents e\u0301preuve de philosophie au bac<\/h2>\n                            <p class='gform_description'><\/p>\n                        <\/div><form method='post' enctype='multipart\/form-data'  id='gform_21'  action='\/blog\/parents\/wp-json\/wp\/v2\/posts\/266377' data-formid='21' novalidate><input type=\"hidden\" name=\"_token\" value=\"\">\n                        <div class='gform-body gform_body'><div id='gform_fields_21' class='gform_fields top_label form_sublabel_below description_below validation_below'><fieldset id=\"field_21_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_21_5'>\n                            \n                            <span id='input_21_5_3_container' class='name_first gform-grid-col gform-grid-col--size-auto' >\n                                                    <input type='text' name='input_5.3' id='input_21_5_3' value=''   aria-required='true'   placeholder='Pr\u00e9nom'  \/>\n                                                    <label for='input_21_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_21_5_6_container' class='name_last gform-grid-col gform-grid-col--size-auto' >\n                                                    <input type='text' name='input_5.6' id='input_21_5_6' value=''   aria-required='true'   placeholder='Nom'  \/>\n                                                    <label for='input_21_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_21_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_21_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_21_7' type='email' value='' class='large'    aria-required=\"true\" aria-invalid=\"false\"  \/>\n                        <\/div><\/div><div id=\"field_21_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_21_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_21_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_21_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_21_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_21_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_21_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_21_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_21_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_21_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_21_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_21_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_21_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_21_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_21_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_21_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_21_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_21_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_21_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_21_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_21_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_21_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_21_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_21_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_21_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_21_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_21_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_21_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_21_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_21_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_21_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_21_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_21_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_21_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_21_9'><div class='gchoice gchoice_21_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_21_9_1'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_21_9_1' id='label_21_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_21_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_21_9_2'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_21_9_2' id='label_21_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_21_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_21_9_3'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_21_9_3' id='label_21_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_21_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_21_9_4'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_21_9_4' id='label_21_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_21_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_21_9_5'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_21_9_5' id='label_21_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_21_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_21_10'><div class='gchoice gchoice_21_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_21_10_1'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_21_10_1' id='label_21_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_21_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_21_10_2'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_21_10_2' id='label_21_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_21_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_21_10_3'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_21_10_3' id='label_21_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_21_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_21_10_4'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_21_10_4' id='label_21_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_21_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_21_10_5'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_21_10_5' id='label_21_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_21_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_21_10_6'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_21_10_6' id='label_21_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_21_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_21_10_7'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_21_10_7' id='label_21_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_21_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_21_10_8'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_21_10_8' id='label_21_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_21_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_21_10_9'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_21_10_9' id='label_21_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_21_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_21_10_11'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_21_10_11' id='label_21_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_21_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_21_10_12'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_21_10_12' id='label_21_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_21_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_21_10_13'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_21_10_13' id='label_21_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_21_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_21_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_21_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_21_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_21_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_21_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_21_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_21_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_21_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_21_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_21_12'>\n\t\t\t<div class='gchoice gchoice_21_12_0'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_12' type='radio' value='Oui'  id='choice_21_12_0' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_21_12_0' id='label_21_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_21_12_1'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_12' type='radio' value='Non'  id='choice_21_12_1' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_21_12_1' id='label_21_12_1' class='gform-field-label gform-field-label--type-inline'>Non<\/label>\n\t\t\t<\/div><\/div><\/div><\/fieldset><div id=\"field_21_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_21_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_21_29' type='tel' value='' class='large'   aria-required=\"true\" aria-invalid=\"false\"   \/><\/div><\/div><fieldset id=\"field_21_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_21_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_21_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='18' class='gform_hidden' \/><\/div><\/fieldset><\/div><\/div>\n        <div class='gform-footer gform_footer top_label'> <input type='submit' id='gform_submit_button_21' 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_21' value='postback' \/>\n            <input type='hidden' class='gform_hidden' name='gform_theme' data-js='gform_theme_21' id='gform_theme_21' value='gravity-theme' \/>\n            <input type='hidden' class='gform_hidden' name='gform_style_settings' data-js='gform_style_settings_21' id='gform_style_settings_21' value='' \/>\n            <input type='hidden' class='gform_hidden' name='is_submit_21' value='1' \/>\n            <input type='hidden' class='gform_hidden' name='gform_submit' value='21' \/>\n            \n            <input type='hidden' class='gform_hidden' name='gform_currency' data-currency='USD' value='iD\/9TUzbqrDurStQ4a2Mle4JatKzxkNsKfuNEEKFRxjK0Qa2ziuihOoOjUSOAA4hwc4xfyUKQDYXuljOIEMfMoF1qBxmWwCE7JWMlMBXehHtaZY=' \/>\n            <input type='hidden' class='gform_hidden' name='gform_unique_id' value='' \/>\n            <input type='hidden' class='gform_hidden' name='state_21' value='WyJ7XCI4XCI6W1wiNjk3N2Y2N2Y1NmUwNmViMmFlMDFlZTA4MWMxZjBhNGZcIixcIjkzYjE3MTAyMmIwOTcwZWMxZWM3NTAxYjdhMTQ3YzQxXCIsXCJlNGZkYmYxMjU0MTAzZTc3Y2Y2NmE4MGRlNGM5MjY3MFwiLFwiNGY2NjA5MmQ1MDdmNzQ3NGVlNDJjNTdjM2M0NmFiNzVcIixcIjUyMTI5YzUzY2JmZjBiZDdkYzdmY2E1M2Y0MTc0YjEwXCIsXCJkMDdmODZjZGE3NDg4N2M1NDljZTVjOTJhNmY1ZGM1OFwiLFwiNDI0MGQyM2VhZWQyNGNjOTU3NzU4ODgwYzBhMGRlNTZcIl0sXCIxNlwiOltcIjY3Yzk0NjExYjU4M2FlZDk4YTVmNDkwOTNjMTkxMjIyXCIsXCIyZjMwNjEzYmJmY2I3M2I5MzFjM2VkNmU5MzA5MGRhMlwiLFwiMDk1NzJlNGZjZDM0OTNjMjQyZWMxMmFhOTg5ZTE3N2VcIixcIjI2Njg3ZDNhZGY3YmQwMjVjNWI0NjY5MDVkZmQxZDk0XCJdLFwiMTdcIjpbXCIwZDNhZGVhY2M2NzhiYmQ5YjNiN2Y3OGJiNTdiM2JkNFwiLFwiMmVlZDA3OGU1ZmJmZTBlY2JjZDYzZjhlYTA3NzQ1MmZcIixcImM4MDAwN2JlM2ZjMjkyMTc3MGFmZmU2NzQ3ZTU3YmU5XCJdLFwiMThcIjpbXCJkYTYzZDczMWNkZTMxY2ExOWUxMjM4OGM3ZTk4ZDRkY1wiLFwiZmRiZTdkOWZiYmRkZTFjZjNlOTk1ZGQ5MzM4NGI4MDRcIixcIjk4OGFiNjhhOWFkMGRkNWUzMDI1MmYyMzY3M2Y0MDQzXCJdLFwiMTlcIjpbXCI1YzBmZDc0OTM4NmNiOWM5ZWM2MzQ1NGFjMzU1ZGU1NlwiLFwiMzIwN2JjOTMyYjJmMGVlNmI5Y2Y2ODExM2NiN2RmYThcIl0sXCIyMFwiOltcImQxNGZkMmY4YzMwODgyNjI3Zjk2NTlmODNmMDkyY2M5XCIsXCIyYzA1YjUwZjlmN2MyZDNjNDRkMGZhYzNmZWM4MGY3NlwiLFwiYzFkMzM4YTJjOWI3YWYzZTE2NDc3MDkyN2Y4ZWZiNTBcIixcIjRiMThmNzgxZDBjNmVjN2M0YTY2MGM4YTA5NjMxZTg2XCIsXCIwNGJjZGM0YTZmOTBmNjJlYWM4ZDVjY2Y4NTE5MTkyNFwiLFwiMTkxZWE1MzY2MWE5NmQ3MjkwMjAyNTdhYzU4ZTZmNGJcIixcImY0NzIwZTU2YWI4NTcwYzM4MGU5ZjNhMGU2YzA5ZDE2XCJdLFwiMjFcIjpbXCJlODRjMTMxNjIzOWU4OWYzMGY5MGI5NTgxMzM0YmZlZVwiLFwiYzU5NDk2MzllNDAzYmUyMDhmOTg0YjRmNzhjZTIxMGJcIixcImYyMmY2Mjc4YmY4OWRhOWViOWU3NWVhZDBlOWYzNzBkXCIsXCI0YWUwZThhNTYyNDY5N2VhYTI3ZTFiZjM2NmNkODBjZlwiLFwiMTU1MzBkZmE3M2E0OWVhZGQzMThiYzBiMTU4MjgxMTdcIixcImQwMzlhMTRhZTBjNTc0Y2Y0MGFlYjE0ZDMyYzc4ZTU1XCIsXCJkZDRlYjAwYzk0ODdmYzQzZWUzNGQwNjAzYmRjODkzMVwiLFwiMTVmZjQ4NDE5NDA4MDM0MWU4ZmQyMGE0ZTNlZmQ3NjdcIl0sXCIyMlwiOltcImU4NGMxMzE2MjM5ZTg5ZjMwZjkwYjk1ODEzMzRiZmVlXCIsXCJjNTk0OTYzOWU0MDNiZTIwOGY5ODRiNGY3OGNlMjEwYlwiLFwiZjIyZjYyNzhiZjg5ZGE5ZWI5ZTc1ZWFkMGU5ZjM3MGRcIixcIjRhZTBlOGE1NjI0Njk3ZWFhMjdlMWJmMzY2Y2Q4MGNmXCIsXCIxNTUzMGRmYTczYTQ5ZWFkZDMxOGJjMGIxNTgyODExN1wiXSxcIjIzXCI6W1wiNWMwZmQ3NDkzODZjYjljOWVjNjM0NTRhYzM1NWRlNTZcIixcIjMyMDdiYzkzMmIyZjBlZTZiOWNmNjgxMTNjYjdkZmE4XCJdLFwiMjRcIjpbXCI1YzBmZDc0OTM4NmNiOWM5ZWM2MzQ1NGFjMzU1ZGU1NlwiLFwiMzIwN2JjOTMyYjJmMGVlNmI5Y2Y2ODExM2NiN2RmYThcIixcImRkN2Y3YTFiNDJkZDUxZDg3Y2YyMDVmMjJkYjY5NWI5XCJdLFwiMjVcIjpbXCJkNDU0NzIxOWU4OTYyYjA0ZGUzNmJkZWM4MjNmNWEwOFwiLFwiOGYwMTAzZDlhMzcxOTI2NTNjNjQ3NjliMzZlYjZkYTBcIixcIjJkNjg0MGZhZDg1NzJlOGZiNzM5OTM4MGZkMmYyMjIyXCJdLFwiOS4xXCI6XCJkMTA2ZTg3Y2RkMTk3MzI2MWZjZTg5ZmMyMmE1MTc5ZFwiLFwiOS4yXCI6XCJlNGZkYmYxMjU0MTAzZTc3Y2Y2NmE4MGRlNGM5MjY3MFwiLFwiOS4zXCI6XCI5M2IxNzEwMjJiMDk3MGVjMWVjNzUwMWI3YTE0N2M0MVwiLFwiOS40XCI6XCI0ZjY2MDkyZDUwN2Y3NDc0ZWU0MmM1N2MzYzQ2YWI3NVwiLFwiOS41XCI6XCI1MjEyOWM1M2NiZmYwYmQ3ZGM3ZmNhNTNmNDE3NGIxMFwiLFwiMTAuMVwiOlwiNjdjOTQ2MTFiNTgzYWVkOThhNWY0OTA5M2MxOTEyMjJcIixcIjEwLjJcIjpcIjJmMzA2MTNiYmZjYjczYjkzMWMzZWQ2ZTkzMDkwZGEyXCIsXCIxMC4zXCI6XCIwOTU3MmU0ZmNkMzQ5M2MyNDJlYzEyYWE5ODllMTc3ZVwiLFwiMTAuNFwiOlwiMjY2ODdkM2FkZjdiZDAyNWM1YjQ2NjkwNWRmZDFkOTRcIixcIjEwLjVcIjpcIjBkM2FkZWFjYzY3OGJiZDliM2I3Zjc4YmI1N2IzYmQ0XCIsXCIxMC42XCI6XCIyZWVkMDc4ZTVmYmZlMGVjYmNkNjNmOGVhMDc3NDUyZlwiLFwiMTAuN1wiOlwiYzgwMDA3YmUzZmMyOTIxNzcwYWZmZTY3NDdlNTdiZTlcIixcIjEwLjhcIjpcIjgyZTRlZDBkYTU5YjBlZTg3NDk0ZGJlZGVhODI4MmVjXCIsXCIxMC45XCI6XCI0NTI1YTU2NmY1YmQ2NWYwZTEwMTNjMDA2Y2RiYzE1NlwiLFwiMTAuMTFcIjpcIjMwYmE0NTk5MWZmNTU3ZDZkZDZmZThjYTM0MDk1ZWUyXCIsXCIxMC4xMlwiOlwiOTM0ZTQxNzNmNjkzOGU3MWQ3NWYxMTljYTQyNjFkZjhcIixcIjEwLjEzXCI6XCIwMDkyNjhjNDJkNGZiNDczNWVkYjBjODVmZjYyYWVmZVwiLFwiMjZcIjpbXCIxMTIzNTRiMzg1NzBiZWE1YTcyZTg1ZDAxNmFjNjIzZlwiLFwiODQ5OGQyYzQyZTExZDE4NzZlODhhNjg4NjYxODAzZGVcIl0sXCIyN1wiOltcIjMzN2IzNjNlZGE3OGQ2Nzk4NDUyNzdhYzM5Zjk1YjhhXCIsXCI2MGQ0YTNkMzhlY2U5MDNkM2I3ZWJhZmM5ODJkN2Q3ZFwiLFwiYWZiNTgwZjU5NDFhNTQ1YWU4ZTkzMmY5ZGY4OTJiNTNcIixcIjkzOTQ0NTg4M2JiMDY0YTkyNzY0OTVjODkwNzZjYjAwXCJdLFwiMTFcIjpbXCIxMWM3Y2RmYTNkNjJlZWQ3YmI2ZGY4ODU0MjE1ZGYxM1wiLFwiODE4NDcxMDU0NGYzZTc1MzRkN2VlZGM2MDQ4MmUyMmNcIixcImI3MTE5ZDAzNGYxMjYxNmI4YTFiMTdjZTYwYmY0YTIxXCIsXCJlZWEwY2RmYzU4Y2NiNzZjNTEzZmY3NjZhMjQ5NWY5M1wiLFwiZjg0ZmM0MWZiOGEzOGMzMmI1MTQwNmZlMzdjZGFjYmNcIl0sXCIxMlwiOltcIjExMjM1NGIzODU3MGJlYTVhNzJlODVkMDE2YWM2MjNmXCIsXCI4NDk4ZDJjNDJlMTFkMTg3NmU4OGE2ODg2NjE4MDNkZVwiXSxcIjE0LjFcIjpcImI5YjY4OWJlZDA2ZWEyNmQ4ZjRmMTIwYjhmNmExZTlhXCIsXCIxNC4yXCI6XCI1Y2QwZTA0OTAzOTcxNTFjZGFhMmQwYmQ1NDA2MzY5ZlwiLFwiMTQuM1wiOlwiZjM0NTcwYmJhZjA3OTMwZWEyNzJkOTczNjAxOTczY2RcIn0iLCI0NDEyZTQ1OTM2OTE0Mzg0MWFiMjlkY2EwMDBmZDk4ZCJd' \/>\n            <input type='hidden' autocomplete='off' class='gform_hidden' name='gform_target_page_number_21' id='gform_target_page_number_21' value='0' \/>\n            <input type='hidden' autocomplete='off' class='gform_hidden' name='gform_source_page_number_21' id='gform_source_page_number_21' 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=\"162\"\/><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( 21, 'https:\/\/sherpas.com\/content\/plugins\/gravityforms\/images\/spinner.svg', true );jQuery('#gform_ajax_frame_21').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_21');var is_confirmation = jQuery(this).contents().find('#gform_confirmation_wrapper_21').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_21').html(form_content.html());if(form_content.hasClass('gform_validation_error')){jQuery('#gform_wrapper_21').addClass('gform_validation_error');} else {jQuery('#gform_wrapper_21').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_21').val();gformInitSpinner( 21, 'https:\/\/sherpas.com\/content\/plugins\/gravityforms\/images\/spinner.svg', true );jQuery(document).trigger('gform_page_loaded', [21, current_page]);window['gf_submitting_21'] = 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_21').replaceWith(confirmation_content);jQuery(document).trigger('gform_confirmation_loaded', [21]);window['gf_submitting_21'] = false;wp.a11y.speak(jQuery('#gform_confirmation_message_21').text());}else{jQuery('#gform_21').append(contents);if(window['gformRedirect']) {gformRedirect();}}jQuery(document).trigger(\"gform_pre_post_render\", [{ formId: \"21\", currentPage: \"current_page\", abort: function() { this.preventDefault(); } }]);        if (event && event.defaultPrevented) {                return;        }        const gformWrapperDiv = document.getElementById( \"gform_wrapper_21\" );        if ( gformWrapperDiv ) {            const visibilitySpan = document.createElement( \"span\" );            visibilitySpan.id = \"gform_visibility_test_21\";            gformWrapperDiv.insertAdjacentElement( \"afterend\", visibilitySpan );        }        const visibilityTestDiv = document.getElementById( \"gform_visibility_test_21\" );        let postRenderFired = false;        function triggerPostRender() {            if ( postRenderFired ) {                return;            }            postRenderFired = true;            gform.core.triggerPostRenderEvents( 21, 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 l&rsquo;\u00e9preuve de philosophie<\/div>\n                        <\/div>\n                                                                                                                    <div class=\"reasons__item\">\n                            <div class=\"reasons__item-number\">3<\/div>\n                            <div class=\"reasons__item-text\">Aider votre ado \u00e0 se pr\u00e9parer efficacement \u00e0 l&rsquo;\u00e9preuve de philo<\/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\">La dissertation et l&rsquo;explication de texte<\/div>\n                        <\/div>\n                                                                                                                    <div class=\"reasons__item\">\n                            <div class=\"reasons__item-number\">4<\/div>\n                            <div class=\"reasons__item-text\">Conseils d&rsquo;organisation en or pour apprendre efficacement<\/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=\"58648\"><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\/03\/bac-philo-extrait-1.jpg\" alt=\"bac philo 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\/03\/bac-philo-extrait-2.jpg\" alt=\"bac philo 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\/03\/bac-philo-extrait-3.jpg\" alt=\"bac philo 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=\"58648\">\n    <div class=\"modal__container\">\n        <div class=\"modal--close\" data-modal=\"58648\">\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\/03\/bac-philo-extrait-1.jpg\" alt=\"bac philo 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\/03\/bac-philo-extrait-2.jpg\" alt=\"bac philo 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\/03\/bac-philo-extrait-3.jpg\" alt=\"bac philo 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\/parent-enfant-difficulte-scolaire\/\" class=\"edito-book__item swiper-slide\">\n                                                                            <img decoding=\"async\" src=\"https:\/\/sherpas.com\/content\/uploads\/sites\/3\/2024\/02\/Kit-de-survie-du-parent-denfant-en-difficulte-scolaire.jpg\" alt=\"Guide de survie du parent d&#039;enfant en difficult\u00e9 scolaire \ud83d\udca1\">\n                                                                            <div class=\"tag-cap mt-20\">\n                                Toolbox\n                            <\/div>\n                                                <div class=\"d-block t-08 mt-10\">\n                                                                                        Guide de survie du parent d&rsquo;enfant en difficult\u00e9 scolaire&nbsp;\ud83d\udca1\n                                                    <\/div>\n                    <\/a>\n                                    <a href=\"https:\/\/sherpas.com\/blog\/parents\/a\/bac-general-2026\/\" class=\"edito-book__item swiper-slide\">\n                                                                            <img decoding=\"async\" src=\"https:\/\/sherpas.com\/content\/uploads\/sites\/3\/2024\/08\/Le-guide-du-bac-general-2024-1.jpg\" alt=\"Guide du bac g\u00e9n\u00e9ral 2026 \ud83d\udcab\">\n                                                                            <div class=\"tag-cap mt-20\">\n                                Toolbox\n                            <\/div>\n                                                <div class=\"d-block t-08 mt-10\">\n                                                                                        Guide du bac g\u00e9n\u00e9ral 2026&nbsp;\ud83d\udcab\n                                                    <\/div>\n                    <\/a>\n                                    <a href=\"https:\/\/sherpas.com\/blog\/parents\/a\/guide-ameliorer-notes-francais\/\" class=\"edito-book__item swiper-slide\">\n                                                                            <img decoding=\"async\" src=\"https:\/\/sherpas.com\/content\/uploads\/sites\/3\/2024\/05\/Comment-ameliorer-les-notes-de-son-ado-en-francais.jpg\" alt=\"Guide parents : comment am\u00e9liorer les notes de son ado en fran\u00e7ais ?\">\n                                                                            <div class=\"tag-cap mt-20\">\n                                Toolbox\n                            <\/div>\n                                                <div class=\"d-block t-08 mt-10\">\n                                                                                        Guide parents : comment am\u00e9liorer les notes de son ado en fran\u00e7ais&nbsp;?\n                                                    <\/div>\n                    <\/a>\n                                            <\/div>\n        <\/div>\n        \n    <\/div>\n<\/section>\n\n\n\n<p>Votre ado est en terminale, le <strong>bac<\/strong> approche, et il se sent d\u00e9j\u00e0 submerg\u00e9 \u00e0 l&rsquo;id\u00e9e d&rsquo;affronter <strong>l&rsquo;\u00e9preuve de philo<\/strong> ? Pas de panique, on est l\u00e0 pour vous aider !<\/p>\n\n\n\n<p>Eh oui, aujourd\u2019hui, on vous explique comment r\u00e9ussir cette \u00e9preuve haut la main gr\u00e2ce \u00e0 notre guide.&nbsp;<\/p>\n\n\n\n<p>Pr\u00eat ? 1, 2, 3, c\u2019est partii ! \ud83d\ude80<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"lepreuve-de-philosophie-a-quoi-sattendre\">L&rsquo;\u00e9preuve de philosophie : \u00e0 quoi s&rsquo;attendre ? \ud83e\udd14<\/h2>\n\n\n\n<p>L&rsquo;\u00e9preuve de philosophie au baccalaur\u00e9at, \u00e7a fait partie des \u00e9preuves importantes qui permettent d&rsquo;\u00e9valuer la capacit\u00e9 \u00e0 <strong>r\u00e9fl\u00e9chir<\/strong> de mani\u00e8re <strong>critique<\/strong>, \u00e0 <strong>argumenter<\/strong> et \u00e0 <strong>analyser<\/strong> des concepts fondamentaux. Eh oui, \u00e7a a l\u2019air assez barbant, dit comme \u00e7a ! \ud83d\ude05<\/p>\n\n\n\n<p>Alors, voici ce \u00e0 quoi votre ado pourra s&rsquo;attendre lors de cette \u00e9preuve :<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"duree-et-format\">Dur\u00e9e et format \u23f1\ufe0f<\/h3>\n\n\n\n<p>Comme on le r\u00e9sume dans notre guide de philosophie, elle se compose g\u00e9n\u00e9ralement de deux parties :&nbsp;<\/p>\n\n\n\n<p>\u21aa\ufe0f Une <a href=\"https:\/\/sherpas.com\/blog\/methode-explication-de-texte-philo\/\"><strong>explication de texte<\/strong><\/a>, o\u00f9 il devra analyser un extrait de texte philosophique ;&nbsp;<\/p>\n\n\n\n<p>\u21aa\ufe0f Une <a href=\"https:\/\/sherpas.com\/blog\/comment-faire-une-bonne-dissertation\/\"><strong>dissertation<\/strong><\/a>, o\u00f9 il devra d\u00e9velopper une r\u00e9flexion argument\u00e9e sur un sujet donn\u00e9.&nbsp;<\/p>\n\n\n\n<p>Dans l&rsquo;ensemble, l&rsquo;\u00e9preuve dure <strong>quatre heures<\/strong>. Autant vous dire que \u00e7a peut \u00eatre pas mal de penser \u00e0 emmener de quoi grignoter, juste au cas o\u00f9.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"focus-sur-les-sujets\">Focus sur les sujets \ud83d\udd0e&nbsp;<\/h3>\n\n\n\n<p>Les sujets qui lui seront donn\u00e9s peuvent \u00eatre assez vari\u00e9s. Ils peuvent porter sur <strong>des notions philosophiques classiques<\/strong> qu\u2019il aura \u00e9tudi\u00e9es en cours, comme la libert\u00e9, la justice, ou le bonheur, mais aussi sur <strong>des sujets contemporains<\/strong> ou m\u00eame <strong>d&rsquo;actualit\u00e9<\/strong>.<\/p>\n\n\n\n<p>D\u2019ailleurs, si votre ado a besoin d\u2019un petit coup de pouce pour g\u00e9rer son \u00e9preuve, et ce, peu importe les sujets qu\u2019il aura, faites appel \u00e0 l\u2019un de nos Sherpas sp\u00e9cialis\u00e9s pour <a href=\"https:\/\/sherpas.com\/cours\/philosophie\">un cours de soutien de philosophie<\/a> ! \ud83d\ude09<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"quelques-techniques-de-revisions\">Quelques techniques de r\u00e9visions \u270d\ufe0f<\/h2>\n\n\n\n<p>Bon, maintenant que vous savez \u00e0 peu pr\u00e8s \u00e0 quoi il devra s\u2019attendre pour cette \u00e9preuve, laissez-nous vous pr\u00e9senter quelques strat\u00e9gies sympas pour optimiser ses r\u00e9visions et le mettre dans les meilleures conditions le jour-J (suivez le guide philosophie !) :<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"les-methodes-classiques\">Les m\u00e9thodes classiques \ud83d\udcd9<\/h3>\n\n\n\n<p>On commence par les classiques :<\/p>\n\n\n\n<p><strong>\ud83d\udc49 Faire <\/strong><a href=\"https:\/\/sherpas.com\/blog\/comment-faire-fiche-revision\/\"><strong>des fiches de r\u00e9vision<\/strong><\/a><strong> ;<\/strong><\/p>\n\n\n\n<p><strong>\ud83d\udc49 S\u2019entra\u00eener<\/strong> r\u00e9guli\u00e8rement \u00e0 r\u00e9diger des disserts et \u00e0 faire des explications de texte ;<\/p>\n\n\n\n<p><strong>\ud83d\udc49 Lire<\/strong> <strong>et relire<\/strong>, et re-relire les textes des <a href=\"https:\/\/sherpas.com\/blog\/https-sherpas-com-blog-philosophes-incontournables\/\">philosophes<\/a> au programme.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"la-modern-touch\">La <em>modern touch<\/em> \ud83d\udcf1<\/h3>\n\n\n\n<p>Il peut aussi :&nbsp;<\/p>\n\n\n\n<p><strong>\ud83d\udc49 Utiliser des applications<\/strong> comme Anki ou Quizlet pour cr\u00e9er des <a href=\"https:\/\/sherpas.com\/blog\/flashcards-efficaces-reviser\/\">cartes m\u00e9moire<\/a> et des quiz interactifs ;<\/p>\n\n\n\n<p><strong>\ud83d\udc49 Regarder des vid\u00e9os explicatives<\/strong> sur les concepts philosophiques et \u00e9couter des podcasts.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"les-methodes-de-groupe\">Les m\u00e9thodes de groupe \ud83d\udc65<\/h3>\n\n\n\n<p>On peut aussi lui proposer de :<\/p>\n\n\n\n<p><strong>\ud83d\udc49 Cr\u00e9er<\/strong> <strong>un groupe<\/strong> avec quelques amis pour pouvoir r\u00e9viser la philosophie ensemble ;<\/p>\n\n\n\n<p><strong>\ud83d\udc49 Organiser<\/strong> des s\u00e9ances de dissertation ou de commentaire de texte en conditions r\u00e9elles. On sait, \u00e7a para\u00eet pas tr\u00e8s <em>fun<\/em> dit comme \u00e7a, mais organiser des oraux blancs avec quelques amis, \u00e7a peut l\u2019aider \u00e0 s\u2019entra\u00eener \u00e0 d\u00e9fendre ses id\u00e9es \u00e0 l\u2019oral.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"comment-gerer-le-stress\">Comment g\u00e9rer le stress \ud83d\ude27<\/h2>\n\n\n\n<p>Bon, pour finir en beaut\u00e9, laissez-nous vous donner quelques conseils \u00e0 lui donner pour r\u00e9ussir \u00e0 <strong>g\u00e9rer le stress<\/strong> des \u00e9preuves le jour-J. \ud83d\udc47<\/p>\n\n\n\n<p><strong>\ud83e\uddd8\u200d\u2642\ufe0f Pratiquer la relaxation <\/strong>: int\u00e9grer des exercices de relaxation dans ta routine quotidienne. Que ce soit la m\u00e9ditation, la respiration profonde, ou m\u00eame le yoga, ce sont d\u2019excellents moyens pour apaiser ton esprit et r\u00e9duire le stress.&nbsp;<\/p>\n\n\n\n<p><strong>\ud83d\udde3\ufe0f Parler de ses inqui\u00e9tudes : <\/strong>il ne faut pas qu\u2019il garde ses inqui\u00e9tudes. Le fait de parler de ce qui le stresse avec vous, des amis, d\u2019autres membres de votre famille ou m\u00eame des profs (m\u00eame si, on sait, ce n\u2019est pas toujours tr\u00e8s simple). Le simple fait d\u2019exprimer ses peurs peut lui soulager et il pourrait m\u00eame recevoir des conseils presque aussi utiles que les n\u00f4tres !<\/p>\n\n\n\n<p><strong>\ud83d\ude34 Dormir suffisamment <\/strong>: on ne le dira jamais assez, mais un bon sommeil, c\u2019est essentiel pour g\u00e9rer le stress et rester performant.<\/p>\n\n\n\n<p><strong>\ud83e\udd14 Relativiser l\u2019\u00e9preuve <\/strong>: il faut toujours lui rappeler que l\u2019\u00e9preuve de philosophie, ce n\u2019est qu\u2019un exam parmi d\u2019autres. Que, peu importe ce qui arrive, il fera de son mieux, mais qu\u2019il ne faut pas qu\u2019il se mette une pression excessive. Il faut aussi garder \u00e0 l\u2019esprit qu\u2019il est bien pr\u00e9par\u00e9 pour le bac, et que dans tous les cas, il fait de son mieux, et qu\u2019il a toutes les capacit\u00e9s pour r\u00e9ussir.<\/p>\n\n\n\n<p>Et voil\u00e0, avec tous ces petits conseils (et surtout avec notre super guide de philosophie \ud83d\ude09), vous avez maintenant toutes les cl\u00e9s pour aider votre ado \u00e0 r\u00e9ussir haut la main ton \u00e9preuve de philosophie. Alors, on lui souhaite <strong>bonne chance<\/strong> pour le bac et surtout <strong>bon courage<\/strong> pour ses r\u00e9visions\u202f! \ud83d\udcaa<\/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;266377&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;Le guide parents - e\u0301preuve de philosophie au bac \ud83d\udcda&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>Votre ado est en terminale, le bac approche, et il se sent d\u00e9j\u00e0 submerg\u00e9 \u00e0 l\u2019id\u00e9e d\u2019affronter l\u2019\u00e9preuve (&#8230;)<\/p>\n","protected":false},"author":334,"featured_media":271528,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":true,"footnotes":""},"category":[15,17,20],"tag":[],"class_list":["post-266377","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\/266377","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=266377"}],"version-history":[{"count":0,"href":"https:\/\/sherpas.com\/blog\/parents\/wp-json\/wp\/v2\/posts\/266377\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/sherpas.com\/blog\/parents\/wp-json\/wp\/v2\/media\/271528"}],"wp:attachment":[{"href":"https:\/\/sherpas.com\/blog\/parents\/wp-json\/wp\/v2\/media?parent=266377"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/sherpas.com\/blog\/parents\/wp-json\/wp\/v2\/category?post=266377"},{"taxonomy":"tag","embeddable":true,"href":"https:\/\/sherpas.com\/blog\/parents\/wp-json\/wp\/v2\/tag?post=266377"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}