{"id":265075,"date":"2024-09-09T16:56:08","date_gmt":"2024-09-09T14:56:08","guid":{"rendered":"https:\/\/sherpas.com\/blog\/?p=265075"},"modified":"2026-04-28T11:37:13","modified_gmt":"2026-04-28T09:37:13","slug":"guide-rentree-prepa","status":"publish","type":"post","link":"https:\/\/sherpas.com\/blog\/guide-rentree-prepa\/","title":{"rendered":"Guide Rentr\u00e9e en Pr\u00e9pa \ud83d\udd25"},"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\/2023\/09\/14.-Guide-etudiant-rentree-prepa-fond.png\" alt=\"guide \u00e9tudiant rentr\u00e9e pr\u00e9pa\">\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=\"telecharge-vite-ton-guide-special-rentree-en-prepa\"><p>T\u00e9l\u00e9charge vite ton 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<br \/>\n\ud83d\udc49 1 cours par jour pendant une semaine dans ta bo\u00eete mail<br \/>\n\ud83d\udc49 Gagner en confiance pour r\u00e9ussir sa rentr\u00e9e<\/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_82' style='display:none'>\n                        <div class='gform_heading'>\n                            <h2 class=\"gform_title\" id=\"14-guide-etudiant-rentree-prepa\">14. Guide \u00e9tudiant rentr\u00e9e pr\u00e9pa<\/h2>\n                            <p class='gform_description'><\/p>\n                        <\/div><form method='post' enctype='multipart\/form-data'  id='gform_82'  action='\/blog\/wp-json\/wp\/v2\/posts\/265075' data-formid='82' novalidate><input type=\"hidden\" name=\"_token\" value=\"\">\n                        <div class='gform-body gform_body'><div id='gform_fields_82' class='gform_fields top_label form_sublabel_below description_below validation_below'><div id=\"field_82_26\" class=\"gfield gfield--type-honeypot gform_validation_container field_sublabel_below gfield--has-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_82_26'>Company<\/label><div class='ginput_container'><input name='input_26' id='input_82_26' type='text' value='' autocomplete='new-password'\/><\/div><div class='gfield_description' id='gfield_description_82_26'>Ce champ n\u2019est utilis\u00e9 qu\u2019\u00e0 des fins de validation et devrait rester inchang\u00e9.<\/div><\/div><fieldset id=\"field_82_1\" 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_82_1'>\n                            \n                            <span id='input_82_1_3_container' class='name_first gform-grid-col gform-grid-col--size-auto' >\n                                                    <input type='text' name='input_1.3' id='input_82_1_3' value=''   aria-required='true'   placeholder='Pr\u00e9nom'  \/>\n                                                    <label for='input_82_1_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_82_1_6_container' class='name_last gform-grid-col gform-grid-col--size-auto' >\n                                                    <input type='text' name='input_1.6' id='input_82_1_6' value=''   aria-required='true'   placeholder='Nom'  \/>\n                                                    <label for='input_82_1_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_82_2\" 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_82_2'>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_2' id='input_82_2' type='email' value='' class='large'    aria-required=\"true\" aria-invalid=\"false\"  \/>\n                        <\/div><\/div><div id=\"field_82_25\" 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_82_25'>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_25' id='input_82_25' type='tel' value='' class='large'   aria-required=\"true\" aria-invalid=\"false\"   \/><\/div><\/div><div id=\"field_82_4\" 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_82_4'>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_4' id='input_82_4' class='large gfield_select'    aria-required=\"true\" aria-invalid=\"false\" ><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='parent' >Parent<\/option><option value='teacher' >Prof<\/option><\/select><\/div><\/div><div id=\"field_82_5\" 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_82_5'>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_5' id='input_82_5' 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_82_6\" 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_82_6'>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_6' id='input_82_6' 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_82_7\" 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_82_7'>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_7' id='input_82_7' 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_82_9\" 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_82_9'>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_9' id='input_82_9' 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_82_8\" 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_82_8'>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_8' id='input_82_8' 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_82_12\" 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_82_12'>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_12' id='input_82_12' 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_82_13\" 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_82_13'>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_13' id='input_82_13' 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_82_10\" 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_82_10'>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_10' id='input_82_10' 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_82_11\" 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_82_11'>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_11' id='input_82_11' 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_82_14\" 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_82_14'>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_14' id='input_82_14' 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_82_21\" class=\"gfield gfield--type-checkbox gfield--type-choice gfield--input-type-checkbox gfield--width-full 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 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_82_21'><div class='gchoice gchoice_82_21_1'>\n\t\t\t\t\t\t\t\t<input class='gfield-choice-input' name='input_21.1' type='checkbox'  value='primaire'  id='choice_82_21_1'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_82_21_1' id='label_82_21_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_82_21_2'>\n\t\t\t\t\t\t\t\t<input class='gfield-choice-input' name='input_21.2' type='checkbox'  value='college'  id='choice_82_21_2'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_82_21_2' id='label_82_21_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_82_21_3'>\n\t\t\t\t\t\t\t\t<input class='gfield-choice-input' name='input_21.3' type='checkbox'  value='lycee'  id='choice_82_21_3'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_82_21_3' id='label_82_21_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_82_21_4'>\n\t\t\t\t\t\t\t\t<input class='gfield-choice-input' name='input_21.4' type='checkbox'  value='prepa'  id='choice_82_21_4'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_82_21_4' id='label_82_21_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_82_21_5'>\n\t\t\t\t\t\t\t\t<input class='gfield-choice-input' name='input_21.5' type='checkbox'  value='superieur'  id='choice_82_21_5'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_82_21_5' id='label_82_21_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_82_17\" 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_82_17'><div class='gchoice gchoice_82_17_1'>\n\t\t\t\t\t\t\t\t<input class='gfield-choice-input' name='input_17.1' type='checkbox'  value='6e'  id='choice_82_17_1'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_82_17_1' id='label_82_17_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_82_17_2'>\n\t\t\t\t\t\t\t\t<input class='gfield-choice-input' name='input_17.2' type='checkbox'  value='5e'  id='choice_82_17_2'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_82_17_2' id='label_82_17_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_82_17_3'>\n\t\t\t\t\t\t\t\t<input class='gfield-choice-input' name='input_17.3' type='checkbox'  value='4e'  id='choice_82_17_3'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_82_17_3' id='label_82_17_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_82_17_4'>\n\t\t\t\t\t\t\t\t<input class='gfield-choice-input' name='input_17.4' type='checkbox'  value='3e'  id='choice_82_17_4'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_82_17_4' id='label_82_17_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_82_17_5'>\n\t\t\t\t\t\t\t\t<input class='gfield-choice-input' name='input_17.5' type='checkbox'  value='2nde'  id='choice_82_17_5'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_82_17_5' id='label_82_17_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_82_17_6'>\n\t\t\t\t\t\t\t\t<input class='gfield-choice-input' name='input_17.6' type='checkbox'  value='1re'  id='choice_82_17_6'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_82_17_6' id='label_82_17_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_82_17_7'>\n\t\t\t\t\t\t\t\t<input class='gfield-choice-input' name='input_17.7' type='checkbox'  value='Tle'  id='choice_82_17_7'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_82_17_7' id='label_82_17_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_82_17_8'>\n\t\t\t\t\t\t\t\t<input class='gfield-choice-input' name='input_17.8' type='checkbox'  value='Bac+1'  id='choice_82_17_8'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_82_17_8' id='label_82_17_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_82_17_9'>\n\t\t\t\t\t\t\t\t<input class='gfield-choice-input' name='input_17.9' type='checkbox'  value='Bac+2'  id='choice_82_17_9'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_82_17_9' id='label_82_17_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_82_17_11'>\n\t\t\t\t\t\t\t\t<input class='gfield-choice-input' name='input_17.11' type='checkbox'  value='Bac+3'  id='choice_82_17_11'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_82_17_11' id='label_82_17_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_82_17_12'>\n\t\t\t\t\t\t\t\t<input class='gfield-choice-input' name='input_17.12' type='checkbox'  value='Bac+4'  id='choice_82_17_12'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_82_17_12' id='label_82_17_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_82_17_13'>\n\t\t\t\t\t\t\t\t<input class='gfield-choice-input' name='input_17.13' type='checkbox'  value='Bac+5'  id='choice_82_17_13'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_82_17_13' id='label_82_17_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_82_18\" 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_82_18'>Donnes-tu 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_18' id='input_82_18' 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_82_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_82_19'>Quel est ton 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_19' id='input_82_19' 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_82_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_82_22'>Quel est ton objectif actuel en 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_22' id='input_82_22' 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 ma moyenne g\u00e9n\u00e9rale' selected='selected'>Am\u00e9liorer ma moyenne g\u00e9n\u00e9rale<\/option><option value='Am\u00e9liorer ma moyenne dans une mati\u00e8re sp\u00e9cifique' >Am\u00e9liorer ma moyenne dans une mati\u00e8re sp\u00e9cifique<\/option><option value='Rejoindre l&#039;orientation de mon choix' >Rejoindre l&#039;orientation de mon choix<\/option><option value='Survivre...' >Survivre&#8230;<\/option><\/select><\/div><\/div><fieldset id=\"field_82_23\" class=\"gfield gfield--type-radio gfield--type-choice gfield--input-type-radio gfield--width-full 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' >Souhaites-tu faire le point sur ton 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_82_23'>\n\t\t\t<div class='gchoice gchoice_82_23_0'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_23' type='radio' value='Oui'  id='choice_82_23_0' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_82_23_0' id='label_82_23_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_82_23_1'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_23' type='radio' value='Non'  id='choice_82_23_1' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_82_23_1' id='label_82_23_1' class='gform-field-label gform-field-label--type-inline'>Non<\/label>\n\t\t\t<\/div><\/div><\/div><\/fieldset><fieldset id=\"field_82_20\" class=\"gfield gfield--type-consent gfield--type-choice gfield--input-type-consent gfield--width-full gfield_contains_required field_sublabel_below gfield--no-description field_description_below hidden_label 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_20.1' id='input_82_20_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_82_20_1' >J&rsquo;accepte la <a href=\"https:\/\/sherpas.com\/mentions_legales\">charte de confidentialit\u00e9<\/a> des Sherpas<span class=\"gfield_required gfield_required_text\">(N\u00e9cessaire)<\/span><\/label><input type='hidden' name='input_20.2' value='J&#039;accepte la &lt;a href=&quot;https:\/\/sherpas.com\/mentions_legales&quot;&gt;charte de confidentialit\u00e9&lt;\/a&gt; des Sherpas' class='gform_hidden' \/><input type='hidden' name='input_20.3' value='77' class='gform_hidden' \/><\/div><\/fieldset><\/div><\/div>\n        <div class='gform-footer gform_footer top_label'> <input type='submit' id='gform_submit_button_82' 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_82' value='postback' \/>\n            <input type='hidden' class='gform_hidden' name='gform_theme' data-js='gform_theme_82' id='gform_theme_82' value='gravity-theme' \/>\n            <input type='hidden' class='gform_hidden' name='gform_style_settings' data-js='gform_style_settings_82' id='gform_style_settings_82' value='' \/>\n            <input type='hidden' class='gform_hidden' name='is_submit_82' value='1' \/>\n            <input type='hidden' class='gform_hidden' name='gform_submit' value='82' \/>\n            \n            <input type='hidden' class='gform_hidden' name='gform_currency' data-currency='EUR' value='wIqyEPiZeMWUidPXxh5xxntH6dYfT4\/XqyAvz6HXwi1ivLI+GDtpme8A4fS+nwK85x3JJ09mXDfjusrR\/tv0c81xi0GMXxTzcjUzQfwxnqKDLic=' \/>\n            <input type='hidden' class='gform_hidden' name='gform_unique_id' value='' \/>\n            <input type='hidden' class='gform_hidden' name='state_82' value='WyJ7XCIyMlwiOltcIjExYzdjZGZhM2Q2MmVlZDdiYjZkZjg4NTQyMTVkZjEzXCIsXCJjZWIzM2ExZTJhYzkyMzlhNGEwNzM4OTAxNDkwNGE1Y1wiLFwiOTNlM2I4ZDgxYmE2M2MwZjliYzUxYTIwOWU1MTIwNjZcIixcIjFkYjM4MjA2ZjcxOWNjYzViYjRmYzhiZTQ5NTNjYWQxXCIsXCJiYjY4ZGIxZWQ0ZmY4ZDYwMzU4OGVkMWUxODIwMTU5ZlwiXSxcIjIzXCI6W1wiMTEyMzU0YjM4NTcwYmVhNWE3MmU4NWQwMTZhYzYyM2ZcIixcIjg0OThkMmM0MmUxMWQxODc2ZTg4YTY4ODY2MTgwM2RlXCJdLFwiMjAuMVwiOlwiYjliNjg5YmVkMDZlYTI2ZDhmNGYxMjBiOGY2YTFlOWFcIixcIjIwLjJcIjpcImYxYTEzY2JjYTA2OWM3MjM2ZmZkZmVhZTNiMGZiNzhlXCIsXCIyMC4zXCI6XCJkYzQyOTkyODQ5YmE0MzgxNDMwNmNlNDg1ZTg2OTdmZlwifSIsImNiZmJhNDgwOTM0ZDA1MzZmYWExMWE1YWI0ODU1OTcyIl0=' \/>\n            <input type='hidden' autocomplete='off' class='gform_hidden' name='gform_target_page_number_82' id='gform_target_page_number_82' value='0' \/>\n            <input type='hidden' autocomplete='off' class='gform_hidden' name='gform_source_page_number_82' id='gform_source_page_number_82' 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=\"64\"\/><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( 82, 'https:\/\/sherpas.com\/content\/plugins\/gravityforms\/images\/spinner.svg', true );jQuery('#gform_ajax_frame_82').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_82');var is_confirmation = jQuery(this).contents().find('#gform_confirmation_wrapper_82').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_82').html(form_content.html());if(form_content.hasClass('gform_validation_error')){jQuery('#gform_wrapper_82').addClass('gform_validation_error');} else {jQuery('#gform_wrapper_82').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_82').val();gformInitSpinner( 82, 'https:\/\/sherpas.com\/content\/plugins\/gravityforms\/images\/spinner.svg', true );jQuery(document).trigger('gform_page_loaded', [82, current_page]);window['gf_submitting_82'] = 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_82').replaceWith(confirmation_content);jQuery(document).trigger('gform_confirmation_loaded', [82]);window['gf_submitting_82'] = false;wp.a11y.speak(jQuery('#gform_confirmation_message_82').text());}else{jQuery('#gform_82').append(contents);if(window['gformRedirect']) {gformRedirect();}}jQuery(document).trigger(\"gform_pre_post_render\", [{ formId: \"82\", currentPage: \"current_page\", abort: function() { this.preventDefault(); } }]);        if (event && event.defaultPrevented) {                return;        }        const gformWrapperDiv = document.getElementById( \"gform_wrapper_82\" );        if ( gformWrapperDiv ) {            const visibilitySpan = document.createElement( \"span\" );            visibilitySpan.id = \"gform_visibility_test_82\";            gformWrapperDiv.insertAdjacentElement( \"afterend\", visibilitySpan );        }        const visibilityTestDiv = document.getElementById( \"gform_visibility_test_82\" );        let postRenderFired = false;        function triggerPostRender() {            if ( postRenderFired ) {                return;            }            postRenderFired = true;            gform.core.triggerPostRenderEvents( 82, 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\">La pr\u00e9pa, c\u2019est quoi ? Sp\u00e9cificit\u00e9s et attentes \ud83e\udd14<\/div>\n                        <\/div>\n                                                                                                                    <div class=\"reasons__item\">\n                            <div class=\"reasons__item-number\">3<\/div>\n                            <div class=\"reasons__item-text\">Faire face aux difficult\u00e9s et aux doutes \ud83d\udcaa<\/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\">G\u00e9rer son temps avec un planning \ud83d\uddd3\ufe0f<\/div>\n                        <\/div>\n                                                                                                                    <div class=\"reasons__item\">\n                            <div class=\"reasons__item-number\">4<\/div>\n                            <div class=\"reasons__item-text\">Travailler sur sa confiance en soi \ud83d\udc9e<\/div>\n                        <\/div>\n                                                <\/div>\n        <\/div>\n            <\/div>\n<\/section>\n\n\n\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n<section\n    class=\"testimony  testimony--full \">\n    <div  class=\"container\" >\n        <div class=\"testimony__container\">\n                        <div class=\"swiper\">\n\n                <div class=\"testimony__header\">\n                    <p class=\"testimony__header-title d-none d-md-block\"><\/p>\n                                        <div class=\"testimony__header-navigation\">\n                            <div class=\"testimony__header-navigation-arrow testimony__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=\"testimony__header-navigation-pages\"><\/div>\n                            <div class=\"testimony__header-navigation-arrow testimony__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 class=\"swiper-wrapper\">\n                                                                        <div class=\"swiper-slide\">\n                                <div class=\"testimony__item\">\n                                                                            <div class=\"testimony__item-text\">Un grand merci ! Je rentre en pr\u00e9pa cette ann\u00e9e et ce guide a tout simplement fait gonfler ma motivation. Les conseils seront appliqu\u00e9s pour partir sur de bonnes bases.<\/div>\n                                                                        <div class=\"d-flex align-items-center mt-50 mt-lg-30\">\n                                                                                    <img decoding=\"async\" src=\"https:\/\/sherpas.com\/content\/uploads\/2023\/09\/Megane.jpg\"\n                                                 alt=\"M\u00e9gane\">\n                                                                                <div class=\"testimony__item-infos\">\n\n                                                                                            <p class=\"testimony__item-name\">M\u00e9gane<\/p>\n                                                                                                                                        <p class=\"testimony__item-promo\">\u00c9tudiante en pr\u00e9pa<\/p>\n                                                                                    <\/div>\n                                    <\/div>\n                                <\/div>\n                            <\/div>\n                                                    <div class=\"swiper-slide\">\n                                <div class=\"testimony__item\">\n                                                                            <div class=\"testimony__item-text\">Pour me pr\u00e9parer aux exigences de la pr\u00e9pa scientifique, j\u2019ai voulu avoir un aper\u00e7u avant la rentr\u00e9e. Gr\u00e2ce \u00e0 des conseils, des \u00e9l\u00e9ments rassurants, de la transparence et un support motivant, j\u2019attends le premier jour avec plus de s\u00e9r\u00e9nit\u00e9.<\/div>\n                                                                        <div class=\"d-flex align-items-center mt-50 mt-lg-30\">\n                                                                                    <img decoding=\"async\" src=\"https:\/\/sherpas.com\/content\/uploads\/2023\/09\/Gregoire.jpg\"\n                                                 alt=\"Gr\u00e9goire\">\n                                                                                <div class=\"testimony__item-infos\">\n\n                                                                                            <p class=\"testimony__item-name\">Gr\u00e9goire<\/p>\n                                                                                                                                        <p class=\"testimony__item-promo\">\u00c9tudiant en pr\u00e9pa scientifique<\/p>\n                                                                                    <\/div>\n                                    <\/div>\n                                <\/div>\n                            <\/div>\n                                                    <div class=\"swiper-slide\">\n                                <div class=\"testimony__item\">\n                                                                            <div class=\"testimony__item-text\">J\u2019avais besoin d\u2019une m\u00e9thode et de conseils pour organiser mon travail afin de gagner en confiance avant la rentr\u00e9e en hypokh\u00e2gne. En appliquant les bonnes m\u00e9thodes, je sais que je pourrais profiter et r\u00e9ussir mes ann\u00e9e de pr\u00e9pa. Merci les Sherpas \ud83d\ude4f.<\/div>\n                                                                        <div class=\"d-flex align-items-center mt-50 mt-lg-30\">\n                                                                                    <img decoding=\"async\" src=\"https:\/\/sherpas.com\/content\/uploads\/2023\/09\/Roxane.jpg\"\n                                                 alt=\"Roxane\">\n                                                                                <div class=\"testimony__item-infos\">\n\n                                                                                            <p class=\"testimony__item-name\">Roxane<\/p>\n                                                                                                                                        <p class=\"testimony__item-promo\">\u00c9tudiante en pr\u00e9pa <\/p>\n                                                                                    <\/div>\n                                    <\/div>\n                                <\/div>\n                            <\/div>\n                                                    <div class=\"swiper-slide\">\n                                <div class=\"testimony__item\">\n                                                                            <div class=\"testimony__item-text\">Des conseils adapt\u00e9s \u00e0 tous et une \u00e9quipe \u00e0 l\u2019\u00e9coute de nos questions, merci aux Sherpas de m\u2019aider et me guider dans mes \u00e9tudes \ud83d\ude0a\u00a0 \u00e7a fait du bien quand on est en pr\u00e9pa !<\/div>\n                                                                        <div class=\"d-flex align-items-center mt-50 mt-lg-30\">\n                                                                                    <img decoding=\"async\" src=\"https:\/\/sherpas.com\/content\/uploads\/2022\/01\/Pauline-avis-1.jpeg\"\n                                                 alt=\"Pauline-avis-1\">\n                                                                                <div class=\"testimony__item-infos\">\n\n                                                                                            <p class=\"testimony__item-name\">Pauline<\/p>\n                                                                                                                                        <p class=\"testimony__item-promo\">Pr\u00e9pa PC<\/p>\n                                                                                    <\/div>\n                                    <\/div>\n                                <\/div>\n                            <\/div>\n                                                            <\/div>\n                <div class=\"testimony__bars\"><\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n<\/section>\n\n\n\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\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=\"28955\"><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\/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\/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\/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=\"28955\">\n    <div class=\"modal__container\">\n        <div class=\"modal--close\" data-modal=\"28955\">\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\/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\/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\/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\/guide-methodo-prepa\/\" class=\"edito-book__item swiper-slide\">\n                                                                            <img decoding=\"async\" src=\"https:\/\/sherpas.com\/content\/uploads\/2024\/09\/guide-methodo-prepa.jpg\" alt=\"Guide M\u00e9thodo Pr\u00e9pa \ud83d\udd25\">\n                                                                            <div class=\"tag-cap mt-20\">\n                                Nos ebooks\n                            <\/div>\n                                                <div class=\"d-block t-08 mt-10\">\n                                                                                        Guide M\u00e9thodo Pr\u00e9pa&nbsp;\ud83d\udd25\n                                                    <\/div>\n                    <\/a>\n                                    <a href=\"https:\/\/sherpas.com\/blog\/guide-memorisation\/\" class=\"edito-book__item swiper-slide\">\n                                                                            <img decoding=\"async\" src=\"https:\/\/sherpas.com\/content\/uploads\/2024\/09\/memorisation.jpg\" alt=\"Guide M\u00e9morisation \ud83e\udde0\">\n                                                                            <div class=\"tag-cap mt-20\">\n                                Nos ebooks\n                            <\/div>\n                                                <div class=\"d-block t-08 mt-10\">\n                                                                                        Guide M\u00e9morisation&nbsp;\ud83e\udde0\n                                                    <\/div>\n                    <\/a>\n                                    <a href=\"https:\/\/sherpas.com\/blog\/guide-productivite\/\" class=\"edito-book__item swiper-slide\">\n                                                                            <img decoding=\"async\" src=\"https:\/\/sherpas.com\/content\/uploads\/2024\/09\/Comment-integrer-une-prepa.jpg\" alt=\"Guide Productivit\u00e9 \u26a1\">\n                                                                            <div class=\"tag-cap mt-20\">\n                                Nos ebooks\n                            <\/div>\n                                                <div class=\"d-block t-08 mt-10\">\n                                                                                        Guide Productivit\u00e9&nbsp;\u26a1\n                                                    <\/div>\n                    <\/a>\n                                            <\/div>\n        <\/div>\n                    <div class=\"mt-40 d-flex justify-content-center\">\n                <a class=\"btn btn-purple\" href=\"https:\/\/sherpas.com\/blog\/toolbox\/nos-hacks-et-ebooks\/nos-ebooks\/\">\n                    D\u00e9couvrir tous nos ebooks\n                <\/a>\n            <\/div>\n        \n    <\/div>\n<\/section>\n\n\n\n<p>Entre pression et charge de travail importante, la pr\u00e9pa n\u2019est pas de tout repos. Si tu te sens d\u00e9j\u00e0 stress\u00e9(e), pas de panique ! Nous sommes pass\u00e9s par l\u00e0 et nous avons concoct\u00e9 ce guide pour t\u2019aider \u00e0 aborder cette aventure sereinement. Que ce soit une question de mental ou de m\u00e9thodologie, ce guide est ta <a href=\"https:\/\/sherpas.com\/blog\/rentree-universite-checklist\/\" data-type=\"post\" data-id=\"293161\">check-list<\/a> pour une rentr\u00e9e r\u00e9ussie en classe pr\u00e9paratoire. \ud83d\ude80<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"comprendre-prepa\" id=\"01-comprendre-la-classe-preparatoire\">01. Comprendre la classe pr\u00e9paratoire<\/h2>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"a-quest-ce-quune-classe-preparatoire\">A. Qu&rsquo;est-ce qu&rsquo;une classe pr\u00e9paratoire ?<\/h3>\n\n\n\n<p>La classe pr\u00e9paratoire est une formation intense destin\u00e9e \u00e0 te pr\u00e9parer aux <a href=\"https:\/\/sherpas.com\/blog\/comment-reussir-concours\/\" data-type=\"post\" data-id=\"188903\">concours d&rsquo;entr\u00e9e des grandes \u00e9coles<\/a>. Elle permet de d\u00e9velopper ta culture g\u00e9n\u00e9rale, tes comp\u00e9tences analytiques et ton raisonnement. M\u00eame si tu ne r\u00e9ussis pas tes concours, la pr\u00e9pa a une vraie valeur sur ton parcours et ton <a href=\"https:\/\/sherpas.com\/blog\/comment-faire-un-bon-cv\/\" data-type=\"post\" data-id=\"218570\">CV<\/a>.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"b-les-differents-types-de-classes-preparatoires\">B. Les diff\u00e9rents types de classes pr\u00e9paratoires<\/h3>\n\n\n\n<p>Il existe plusieurs types de pr\u00e9pas :<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong><a href=\"https:\/\/sherpas.com\/blog\/quelle-prepa-litteraire-choisir\/\" data-type=\"post\" data-id=\"228452\">Pr\u00e9pas litt\u00e9raires<\/a><\/strong> : id\u00e9ales pour les passionn\u00e9(e)s de litt\u00e9rature, langues, philosophie et histoire.<\/li>\n\n\n\n<li><strong><a href=\"https:\/\/sherpas.com\/blog\/es-tu-pret-pour-la-classe-prepa-scientifique\/\" data-type=\"post\" data-id=\"189659\">Pr\u00e9pas scientifiques<\/a><\/strong> : destin\u00e9es \u00e0 ceux qui s\u2019int\u00e9ressent aux math\u00e9matiques, physique, chimie et sciences en g\u00e9n\u00e9ral.<\/li>\n\n\n\n<li><strong>Pr\u00e9pas \u00e9conomiques et commerciales<\/strong> : pour les \u00e9tudiant(e)s attir\u00e9(e)s par l&rsquo;\u00e9conomie, la gestion, le commerce et le marketing.<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"c-pas-de-risque-zero-dechec\">C. Pas de risque z\u00e9ro d\u2019\u00e9chec<\/h3>\n\n\n\n<p>La pr\u00e9pa est exigeante et tout le monde ne r\u00e9ussit pas. Mais il est important de reconna\u00eetre quand un parcours ne nous convient plus et d\u2019envisager une <a href=\"https:\/\/sherpas.com\/blog\/reorientation\/\" data-type=\"post\" data-id=\"263180\">r\u00e9orientation<\/a> si n\u00e9cessaire. La vie est remplie de chemins sinueux, et il n&rsquo;y a pas de honte \u00e0 prendre un autre itin\u00e9raire pour atteindre tes objectifs.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"gerer-temps\" id=\"02-gerer-son-temps-efficacement\">02. G\u00e9rer son temps efficacement<\/h2>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"a-etablir-un-planning-realiste\">A. \u00c9tablir un planning r\u00e9aliste<\/h3>\n\n\n\n<p><a href=\"https:\/\/sherpas.com\/blog\/comment-faire-un-planning\/\" data-type=\"post\" data-id=\"190118\">Planifie tes cours, devoirs et r\u00e9visions en fonction de ton rythme<\/a>. Pr\u00e9vois des plages horaires pour chaque mati\u00e8re et garde des marges de man\u0153uvre pour les impr\u00e9vus. Sois r\u00e9aliste dans tes objectifs.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"b-equilibrer-travail-et-loisirs\">B. \u00c9quilibrer travail et loisirs<\/h3>\n\n\n\n<p>Un bon \u00e9quilibre est essentiel pour \u00e9viter le surmenage. Accorde-toi des moments de d\u00e9tente pour faire du sport, lire ou voir des amis. Ces pauses te permettront de recharger tes batteries pour \u00eatre plus efficace. \ud83e\uddd8<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"c-techniques-de-memorisation-et-dapprentissage\">C. Techniques de m\u00e9morisation et d&rsquo;apprentissage<\/h3>\n\n\n\n<p>Utilise des fiches de r\u00e9sum\u00e9, des <a href=\"https:\/\/sherpas.com\/blog\/flashcards-efficaces-reviser\/\" data-type=\"post\" data-id=\"189505\">cartes m\u00e9moire (flashcards)<\/a> et la <a href=\"https:\/\/sherpas.com\/blog\/methode-repetition-espacee\/\" data-type=\"post\" data-id=\"219779\">m\u00e9thode des r\u00e9p\u00e9titions espac\u00e9es<\/a> pour mieux retenir les informations \u00e0 long terme. R\u00e9vise r\u00e9guli\u00e8rement et adapte tes m\u00e9thodes en fonction de ce qui te convient le mieux.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"difficultes\" id=\"03-faire-face-aux-difficultes-et-aux-doutes\">03. Faire face aux difficult\u00e9s et aux doutes<\/h2>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"a-ne-pas-hesiter-a-demander-de-laide\">A. Ne pas h\u00e9siter \u00e0 demander de l&rsquo;aide<\/h3>\n\n\n\n<p>Si tu rencontres des difficult\u00e9s, parle-en \u00e0 tes professeurs ou \u00e0 tes camarades. N&rsquo;h\u00e9site pas non plus \u00e0 envisager des <a href=\"https:\/\/sherpas.com\/\">cours particuliers<\/a> pour surmonter les blocages. Parfois, une simple discussion peut tout d\u00e9bloquer !<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"b-utiliser-les-ressources-en-ligne\">B. Utiliser les ressources en ligne<\/h3>\n\n\n\n<p>Internet regorge de ressources \u00e9ducatives : sites web, vid\u00e9os et plateformes d&rsquo;apprentissage. Profite de ces outils pour compl\u00e9ter tes connaissances et renforcer tes comp\u00e9tences.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"c-communiquer-avec-tes-parents\">C. Communiquer avec tes parents<\/h3>\n\n\n\n<p>Ne n\u00e9glige pas le soutien de tes parents. Ils peuvent \u00eatre une source de conseils et de r\u00e9confort. N\u2019h\u00e9site pas \u00e0 partager avec eux tes difficult\u00e9s et tes r\u00e9ussites.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"conclusion\">Conclusion<\/h2>\n\n\n\n<p>La pr\u00e9pa est un tremplin vers la carri\u00e8re de tes r\u00eaves. Ce guide t\u2019aidera \u00e0 surmonter les premiers d\u00e9fis, mais n&rsquo;oublie pas de prendre plaisir dans tes \u00e9tudes. Tu as les cl\u00e9s en main, alors fonce et r\u00e9ussis ta pr\u00e9pa ! \ud83d\udcaa\ud83c\udf1f<\/p>\n\n\n\n<p>Pour plus de conseils, n\u2019h\u00e9site pas \u00e0 consulter <a href=\"https:\/\/sherpas.com\/blog\/\">notre blog<\/a>, notre <a href=\"https:\/\/www.youtube.com\/c\/LesSherpas\" target=\"_blank\" rel=\"noopener\">cha\u00eene YouTube<\/a> ou <a href=\"https:\/\/www.tiktok.com\/discover\/les-sherpas\" target=\"_blank\" rel=\"noopener\">notre compte TikTok<\/a>. Nous sommes l\u00e0 pour t\u2019accompagner tout au long de l\u2019ann\u00e9e !<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Entre pression et charge de travail importante, la pr\u00e9pa n\u2019est pas de tout repos. Si tu te sens (&#8230;)<\/p>\n","protected":false},"author":346,"featured_media":306515,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":true,"footnotes":""},"category":[219,217,183],"tag":[],"class_list":["post-265075","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-ebook","category-nos-hacks-ebook","category-toolbox"],"acf":[],"_links":{"self":[{"href":"https:\/\/sherpas.com\/blog\/wp-json\/wp\/v2\/posts\/265075","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/sherpas.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/sherpas.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/sherpas.com\/blog\/wp-json\/wp\/v2\/users\/346"}],"replies":[{"embeddable":true,"href":"https:\/\/sherpas.com\/blog\/wp-json\/wp\/v2\/comments?post=265075"}],"version-history":[{"count":0,"href":"https:\/\/sherpas.com\/blog\/wp-json\/wp\/v2\/posts\/265075\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/sherpas.com\/blog\/wp-json\/wp\/v2\/media\/306515"}],"wp:attachment":[{"href":"https:\/\/sherpas.com\/blog\/wp-json\/wp\/v2\/media?parent=265075"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/sherpas.com\/blog\/wp-json\/wp\/v2\/category?post=265075"},{"taxonomy":"tag","embeddable":true,"href":"https:\/\/sherpas.com\/blog\/wp-json\/wp\/v2\/tag?post=265075"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}