{"id":198024,"date":"2015-12-27T15:45:19","date_gmt":"2015-12-27T14:45:19","guid":{"rendered":"https:\/\/sherpas.com\/blog\/?p=198024"},"modified":"2025-08-21T09:40:09","modified_gmt":"2025-08-21T07:40:09","slug":"planning-revisions-brevet-des-colleges","status":"publish","type":"post","link":"https:\/\/sherpas.com\/blog\/planning-revisions-brevet-des-colleges\/","title":{"rendered":"Planning de R\u00e9visions Brevet des Coll\u00e8ges"},"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\/2015\/12\/planning-revision-brevet-2.png\" alt=\"\">\n                    <\/div>\n                                <div class=\"row align-items-center justify-content-between\">\n                    <div class=\"col-12 col-lg-5 offset-lg-1\">\n                        <div class=\"form-hack__content\">\n                            <h1 class=\"t-01 mb-15 mb-lg-30\" id=\"telecharge-vite-ton-planning-de-revision-pour-le-brevet-des-colleges\"><p>T\u00e9l\u00e9charge vite ton planning de r\u00e9vision pour le Brevet des Coll\u00e8ges ! \ud83e\udd73<\/p>\n<\/h1>\n                            <div class=\"t-08\"><p>\ud83d\udc49 Un <a href=\"https:\/\/sherpas.com\/blog\/toolbox\/planning-a-telecharger\/planning-de-revision\/\">planning de r\u00e9vision<\/a> pour t&rsquo;aider \u00e0 pr\u00e9parer le brevet des coll\u00e8ges !<\/p>\n<p>\ud83d\udc49 Des conseils d&rsquo;organisation pour r\u00e9ussir !<\/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_47' style='display:none'>\n                        <div class='gform_heading'>\n                            <h2 class=\"gform_title\" id=\"07-planning-revision-brevet\">#07 Planning R\u00e9vision Brevet<\/h2>\n                            <p class='gform_description'><\/p>\n                        <\/div><form method='post' enctype='multipart\/form-data'  id='gform_47'  action='\/blog\/wp-json\/wp\/v2\/posts\/198024' data-formid='47' novalidate><input type=\"hidden\" name=\"_token\" value=\"\">\n                        <div class='gform-body gform_body'><div id='gform_fields_47' class='gform_fields top_label form_sublabel_below description_below validation_below'><div id=\"field_47_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_47_26'>Comments<\/label><div class='ginput_container'><input name='input_26' id='input_47_26' type='text' value='' autocomplete='new-password'\/><\/div><div class='gfield_description' id='gfield_description_47_26'>Ce champ n\u2019est utilis\u00e9 qu\u2019\u00e0 des fins de validation et devrait rester inchang\u00e9.<\/div><\/div><fieldset id=\"field_47_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_47_1'>\n                            \n                            <span id='input_47_1_3_container' class='name_first gform-grid-col gform-grid-col--size-auto' >\n                                                    <input type='text' name='input_1.3' id='input_47_1_3' value=''   aria-required='true'   placeholder='Pr\u00e9nom'  \/>\n                                                    <label for='input_47_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_47_1_6_container' class='name_last gform-grid-col gform-grid-col--size-auto' >\n                                                    <input type='text' name='input_1.6' id='input_47_1_6' value=''   aria-required='true'   placeholder='Nom'  \/>\n                                                    <label for='input_47_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_47_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_47_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_47_2' type='email' value='' class='large'    aria-required=\"true\" aria-invalid=\"false\"  \/>\n                        <\/div><\/div><div id=\"field_47_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_47_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_47_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_47_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_47_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_47_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_47_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_47_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_47_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_47_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_47_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_47_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_47_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_47_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_47_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_47_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_47_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_47_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_47_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_47_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_47_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_47_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_47_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_47_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_47_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_47_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_47_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_47_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_47_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_47_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_47_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_47_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_47_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_47_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_47_21'><div class='gchoice gchoice_47_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_47_21_1'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_47_21_1' id='label_47_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_47_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_47_21_2'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_47_21_2' id='label_47_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_47_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_47_21_3'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_47_21_3' id='label_47_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_47_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_47_21_4'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_47_21_4' id='label_47_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_47_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_47_21_5'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_47_21_5' id='label_47_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_47_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_47_17'><div class='gchoice gchoice_47_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_47_17_1'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_47_17_1' id='label_47_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_47_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_47_17_2'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_47_17_2' id='label_47_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_47_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_47_17_3'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_47_17_3' id='label_47_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_47_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_47_17_4'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_47_17_4' id='label_47_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_47_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_47_17_5'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_47_17_5' id='label_47_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_47_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_47_17_6'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_47_17_6' id='label_47_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_47_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_47_17_7'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_47_17_7' id='label_47_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_47_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_47_17_8'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_47_17_8' id='label_47_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_47_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_47_17_9'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_47_17_9' id='label_47_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_47_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_47_17_11'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_47_17_11' id='label_47_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_47_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_47_17_12'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_47_17_12' id='label_47_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_47_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_47_17_13'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_47_17_13' id='label_47_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_47_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_47_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_47_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_47_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_47_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_47_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_47_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_47_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_47_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_47_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_47_23'>\n\t\t\t<div class='gchoice gchoice_47_23_0'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_23' type='radio' value='Oui'  id='choice_47_23_0' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_47_23_0' id='label_47_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_47_23_1'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_23' type='radio' value='Non'  id='choice_47_23_1' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_47_23_1' id='label_47_23_1' class='gform-field-label gform-field-label--type-inline'>Non<\/label>\n\t\t\t<\/div><\/div><\/div><\/fieldset><div id=\"field_47_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_47_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_47_25' type='tel' value='' class='large'   aria-required=\"true\" aria-invalid=\"false\"   \/><\/div><\/div><fieldset id=\"field_47_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_47_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_47_20_1' >J&rsquo;accepte la <a href=\"https:\/\/sherpas.com\/mentions-legales\" target=\"_blank\">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; target=&quot;_blank&quot;&gt;charte de confidentialit\u00e9&lt;\/a&gt; des Sherpas' class='gform_hidden' \/><input type='hidden' name='input_20.3' value='42' class='gform_hidden' \/><\/div><\/fieldset><\/div><\/div>\n        <div class='gform-footer gform_footer top_label'> <input type='submit' id='gform_submit_button_47' class='gform_button button' onclick='gform.submission.handleButtonClick(this);' data-submission-type='submit' value='T\u00c9L\u00c9CHARGER MON PLANNING'  \/> \n            <input type='hidden' class='gform_hidden' name='gform_submission_method' data-js='gform_submission_method_47' value='postback' \/>\n            <input type='hidden' class='gform_hidden' name='gform_theme' data-js='gform_theme_47' id='gform_theme_47' value='gravity-theme' \/>\n            <input type='hidden' class='gform_hidden' name='gform_style_settings' data-js='gform_style_settings_47' id='gform_style_settings_47' value='' \/>\n            <input type='hidden' class='gform_hidden' name='is_submit_47' value='1' \/>\n            <input type='hidden' class='gform_hidden' name='gform_submit' value='47' \/>\n            \n            <input type='hidden' class='gform_hidden' name='gform_currency' data-currency='EUR' value='T0QWO1NMfw7zotUJCypR+egc1iM3W5vSyY6fZVULmkyY7vAk1e+7O6RSiSsBAL9sLzK5byRTq6YQiD5h04qCzKyrEf2Yuvm\/Pz2IDUPD7MMslhE=' \/>\n            <input type='hidden' class='gform_hidden' name='gform_unique_id' value='' \/>\n            <input type='hidden' class='gform_hidden' name='state_47' value='WyJ7XCIyMlwiOltcIjExYzdjZGZhM2Q2MmVlZDdiYjZkZjg4NTQyMTVkZjEzXCIsXCJjZWIzM2ExZTJhYzkyMzlhNGEwNzM4OTAxNDkwNGE1Y1wiLFwiOTNlM2I4ZDgxYmE2M2MwZjliYzUxYTIwOWU1MTIwNjZcIixcIjFkYjM4MjA2ZjcxOWNjYzViYjRmYzhiZTQ5NTNjYWQxXCIsXCJiYjY4ZGIxZWQ0ZmY4ZDYwMzU4OGVkMWUxODIwMTU5ZlwiXSxcIjIzXCI6W1wiMTEyMzU0YjM4NTcwYmVhNWE3MmU4NWQwMTZhYzYyM2ZcIixcIjg0OThkMmM0MmUxMWQxODc2ZTg4YTY4ODY2MTgwM2RlXCJdLFwiMjAuMVwiOlwiYjliNjg5YmVkMDZlYTI2ZDhmNGYxMjBiOGY2YTFlOWFcIixcIjIwLjJcIjpcIjVjZDBlMDQ5MDM5NzE1MWNkYWEyZDBiZDU0MDYzNjlmXCIsXCIyMC4zXCI6XCJkM2Y5NjAzMWNhODA2ZGU3YWQ2ZWY2NjJiOGQyYTBiMVwifSIsIjI5YWJkZjY5NDg2NTkzYmExYjNjNGM0YjQ5ZDM0OWQ2Il0=' \/>\n            <input type='hidden' autocomplete='off' class='gform_hidden' name='gform_target_page_number_47' id='gform_target_page_number_47' value='0' \/>\n            <input type='hidden' autocomplete='off' class='gform_hidden' name='gform_source_page_number_47' id='gform_source_page_number_47' 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=\"7\"\/><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( 47, 'https:\/\/sherpas.com\/content\/plugins\/gravityforms\/images\/spinner.svg', true );jQuery('#gform_ajax_frame_47').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_47');var is_confirmation = jQuery(this).contents().find('#gform_confirmation_wrapper_47').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_47').html(form_content.html());if(form_content.hasClass('gform_validation_error')){jQuery('#gform_wrapper_47').addClass('gform_validation_error');} else {jQuery('#gform_wrapper_47').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_47').val();gformInitSpinner( 47, 'https:\/\/sherpas.com\/content\/plugins\/gravityforms\/images\/spinner.svg', true );jQuery(document).trigger('gform_page_loaded', [47, current_page]);window['gf_submitting_47'] = 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_47').replaceWith(confirmation_content);jQuery(document).trigger('gform_confirmation_loaded', [47]);window['gf_submitting_47'] = false;wp.a11y.speak(jQuery('#gform_confirmation_message_47').text());}else{jQuery('#gform_47').append(contents);if(window['gformRedirect']) {gformRedirect();}}jQuery(document).trigger(\"gform_pre_post_render\", [{ formId: \"47\", currentPage: \"current_page\", abort: function() { this.preventDefault(); } }]);        if (event && event.defaultPrevented) {                return;        }        const gformWrapperDiv = document.getElementById( \"gform_wrapper_47\" );        if ( gformWrapperDiv ) {            const visibilitySpan = document.createElement( \"span\" );            visibilitySpan.id = \"gform_visibility_test_47\";            gformWrapperDiv.insertAdjacentElement( \"afterend\", visibilitySpan );        }        const visibilityTestDiv = document.getElementById( \"gform_visibility_test_47\" );        let postRenderFired = false;        function triggerPostRender() {            if ( postRenderFired ) {                return;            }            postRenderFired = true;            gform.core.triggerPostRenderEvents( 47, 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=\"pourquoi-telecharger-le-planning-brevet-des-colleges\"><p>Pourquoi t\u00e9l\u00e9charger le planning Brevet des coll\u00e8ges ? <\/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\">Pour te motiver \u00e0 travailler \ud83d\ude80<\/div>\n                        <\/div>\n                                                                                                                    <div class=\"reasons__item\">\n                            <div class=\"reasons__item-number\">3<\/div>\n                            <div class=\"reasons__item-text\">Pour progresser en mati\u00e8re d&rsquo;organisation \ud83d\udc4a<\/div>\n                        <\/div>\n                                                                                                                    <div class=\"reasons__item\">\n                            <div class=\"reasons__item-number\">5<\/div>\n                            <div class=\"reasons__item-text\">Pour avoir des conseils sp\u00e9cifiques au brevet \ud83d\ude09<\/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\">Un temps de travail adapt\u00e9 \u00e0 chaque mati\u00e8re \ud83d\udcda<\/div>\n                        <\/div>\n                                                                                                                    <div class=\"reasons__item\">\n                            <div class=\"reasons__item-number\">4<\/div>\n                            <div class=\"reasons__item-text\">Pour r\u00e9ussir le brevet haut la main \ud83d\udcaa<\/div>\n                        <\/div>\n                                                                                                                    <div class=\"reasons__item\">\n                            <div class=\"reasons__item-number\">6<\/div>\n                            <div class=\"reasons__item-text\">Pour t&rsquo;am\u00e9liorer jour apr\u00e8s jour \ud83d\ude0e<\/div>\n                        <\/div>\n                                                <\/div>\n        <\/div>\n            <\/div>\n<\/section>\n\n\n<section\n    class=\"testimony  testimony--full \">\n    <div  class=\"container\" >\n        <div class=\"testimony__container\">\n                            <p class=\"testimony__header-title d-md-none\">Ils en parlent mieux que nous<\/p>\n                        <div class=\"swiper\">\n\n                <div class=\"testimony__header\">\n                    <p class=\"testimony__header-title d-none d-md-block\">Ils en parlent mieux que nous<\/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\">Pour le brevet, j\u2019\u00e9tais un peu perdu dans mes r\u00e9visions, mais gr\u00e2ce \u00e0 vos plannings de r\u00e9vision et de travail, \u00e0 moi la mention tr\u00e8s bien ! \ud83e\udd17<\/div>\n                                                                        <div class=\"d-flex align-items-center mt-50 mt-lg-30\">\n                                                                                    <img decoding=\"async\" src=\"https:\/\/sherpas.com\/content\/uploads\/2021\/12\/Martin-avis.jpeg\"\n                                                 alt=\"Martin avis\">\n                                                                                <div class=\"testimony__item-infos\">\n\n                                                                                            <p class=\"testimony__item-name\">Martin<\/p>\n                                                                                                                                        <p class=\"testimony__item-promo\">Coll\u00e9gien en 3e<\/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\">Les Sherpas, la meilleure cha\u00eene pour de super conseils d\u2019organisation ! M\u00eame pour les coll\u00e9giens, les conseils marchent tr\u00e8s bien pour le brevet \ud83d\udcaa<\/div>\n                                                                        <div class=\"d-flex align-items-center mt-50 mt-lg-30\">\n                                                                                    <img decoding=\"async\" src=\"https:\/\/sherpas.com\/content\/uploads\/2021\/12\/Cle\u0301mence-avis.jpeg\"\n                                                 alt=\"Cle\u0301mence avis\">\n                                                                                <div class=\"testimony__item-infos\">\n\n                                                                                            <p class=\"testimony__item-name\">Cl\u00e9mence<\/p>\n                                                                                                                                        <p class=\"testimony__item-promo\">Coll\u00e9gienne en 3e<\/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\">Vos plannings m\u2019ont beaucoup aid\u00e9 \u00e0 m\u2019organiser et commencer \u00e0 r\u00e9viser pour le brevet, merci beaucoup ! \ud83d\ude09<\/div>\n                                                                        <div class=\"d-flex align-items-center mt-50 mt-lg-30\">\n                                                                                    <img decoding=\"async\" src=\"https:\/\/sherpas.com\/content\/uploads\/2021\/12\/Capture-de\u0301cran-2021-12-29-a\u0300-15.40.58.jpg\"\n                                                 alt=\"Capture d\u2019e\u0301cran 2021-12-29 a\u0300 15.40.58\">\n                                                                                <div class=\"testimony__item-infos\">\n\n                                                                                            <p class=\"testimony__item-name\">Sophie<\/p>\n                                                                                                                                        <p class=\"testimony__item-promo\">Coll\u00e9gienne en 3e<\/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\">Vos vid\u00e9os Youtube m\u2019aident beaucoup \u00e0 progresser et \u00e0 apprendre de nouvelles m\u00e9thodes ! Un vrai plus en fin de coll\u00e8ge \ud83d\udcaa<\/div>\n                                                                        <div class=\"d-flex align-items-center mt-50 mt-lg-30\">\n                                                                                    <img decoding=\"async\" src=\"https:\/\/sherpas.com\/content\/uploads\/2021\/12\/Capture-de\u0301cran-2021-12-29-a\u0300-15.40.23.jpg\"\n                                                 alt=\"Capture d\u2019e\u0301cran 2021-12-29 a\u0300 15.40.23\">\n                                                                                <div class=\"testimony__item-infos\">\n\n                                                                                            <p class=\"testimony__item-name\">Lucas<\/p>\n                                                                                                                                        <p class=\"testimony__item-promo\">Coll\u00e9gien en 3e<\/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<section class=\"edito-book\">\n    <div class=\"container\">\n        <h2 class=\"edito-book__title\" id=\"nos-e-books\">Nos E-books<\/h2>\n        <div class=\"edito-book__items swiper\">\n            <div class=\"swiper-wrapper\">\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=\"d-block t-08 mt-10\">\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=\"d-block t-08 mt-10\">\n                                                                                <\/div>\n                    <\/a>\n                                    <a href=\"https:\/\/sherpas.com\/blog\/guide-confiance-en-soi\/\" class=\"edito-book__item swiper-slide\">\n                                                                            <img decoding=\"async\" src=\"https:\/\/sherpas.com\/content\/uploads\/2020\/12\/guide-confiance-en-soi.jpg\" alt=\"Guide Confiance en soi \ud83d\ude09\">\n                                                                        <div class=\"d-block t-08 mt-10\">\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\u00e9couvre tous nos E-books !\n                <\/a>\n            <\/div>\n        \n    <\/div>\n<\/section>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"comment-faire-un-planning-pour-les-revisions-du-brevet\">Comment faire un planning pour les r\u00e9visions du brevet ?<\/h2>\n\n\n\n<p>Tu es en <strong>troisi\u00e8me<\/strong> et tu es terroris\u00e9 \u00e0 l\u2019id\u00e9e de passer ton brevet ? Les dates butoirs approchent et tu n\u2019as toujours pas commenc\u00e9 <strong>tes r\u00e9visions <\/strong>? Ne t\u2019en fais pas, on est toutes et tous pass\u00e9s par l\u00e0\u202f! Aujourd\u2019hui, on t\u2019explique comment affronter le brevet avec un solide <strong>planning de r\u00e9visions<\/strong> ! \ud83d\ude80<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"le-brevet-cest-quoi-au-juste\">Le brevet : c\u2019est quoi au juste ? \ud83e\uddd0<\/h2>\n\n\n\n<p>Le brevet permet d\u2019<strong>\u00e9valuer tes comp\u00e9tences<\/strong>, <strong>tes connaissances et ta culture<\/strong> \u00e0 l\u2019issue du coll\u00e8ge. Il est not\u00e9 sur <strong>800 points<\/strong>, dont<strong> la moiti\u00e9<\/strong> peut \u00eatre obtenue au <strong>contr\u00f4le continu<\/strong>, c&rsquo;est-\u00e0-dire tes notes durant l\u2019ann\u00e9e scolaire. Les autres 400 points sont obtenus lors d<strong>\u2019\u00e9preuves finales <\/strong>qui se d\u00e9roulent \u00e0 la fin du mois de juin, r\u00e9partis entre les diff\u00e9rentes \u00e9preuves. \ud83e\uddd1\u200d\ud83c\udf93<\/p>\n\n\n<section class=\"you-know\">\n                <div class=\"you-know__title\"><p>\ud83d\udca1 Le savais-tu ?<\/p>\n<\/div>\n                        <div class=\"you-know__text\">\n            <p>Des enseignements facultatifs te permettent d\u2019obtenir 20 points suppl\u00e9mentaires !<\/p>\n\n        <\/div>\n              <\/section>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"epreuves-ecrites-communes-reparties-sur-deux-jours\">\u00c9preuves \u00e9crites communes (r\u00e9parties sur deux jours) \u270d\ufe0f<\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Le<strong> fran\u00e7ais :<\/strong> gr\u00e2ce \u00e0 un extrait de texte litt\u00e9raire ou d&rsquo;une image, on \u00e9value tes comp\u00e9tences linguistiques et tes comp\u00e9tences de compr\u00e9hension et d&rsquo;interpr\u00e9tation + dict\u00e9e + r\u00e9daction. Il s\u2019agit d\u2019une <strong>\u00e9preuve de 3 h <\/strong>not\u00e9e sur <strong>100 points ;<\/strong><\/li>\n\n\n\n<li>Les<strong> math\u00e9matiques<\/strong> : exercices, parfois accompagn\u00e9s de tableaux ou de sch\u00e9mas, et dont un exercice d&rsquo;algorithmique. Cette \u00e9preuve dure <strong>2 heures <\/strong>et est not\u00e9e sur <strong>100 points ;<\/strong><\/li>\n\n\n\n<li>L&rsquo;<strong>histoire, la g\u00e9ographie et l&rsquo;enseignement moral et civique<\/strong> : il faut analyser et comprendre un corpus de documents + utiliser des rep\u00e8res historiques et g\u00e9ographiques + mobiliser des comp\u00e9tences de l&rsquo;enseignement moral et civique. Cette \u00e9preuve dure <strong>2 heures <\/strong>et est not\u00e9e sur <strong>50 points<\/strong> ;&nbsp;<\/li>\n\n\n\n<li>Les<strong> sciences<\/strong> (2 disciplines sur les 3) : une \u00e9preuve comportant de la physique-chimie, des sciences de la vie et de la Terre, et de la technologie. Cette \u00e9preuve est not\u00e9e sur <strong>50 points<\/strong> et dure<strong> 1 heure<\/strong>.&nbsp;<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"epreuve-orale\">\u00c9preuve orale \ud83d\udde3\ufe0f<\/h3>\n\n\n\n<p>Elle vaut <strong>100 points<\/strong> et elle est pass\u00e9e en<strong> groupe<\/strong> (25 minutes) ou <strong>seule<\/strong> (15 minutes). Le but est de pr\u00e9senter un projet men\u00e9 durant ton ann\u00e9e de troisi\u00e8me en <strong>histoire des arts<\/strong>, en<strong> parcours \u00e9ducatif<\/strong> ou un<strong> Enseignement Pratique Interdisciplinaire<\/strong> (EPI).&nbsp;<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"le-planning-ideal\">Le planning id\u00e9al \ud83e\udd0c<\/h2>\n\n\n\n<p>L\u2019id\u00e9al, c\u2019est de commencer les r\u00e9visions <strong>deux mois \u00e0 l\u2019avance<\/strong>, comme \u00e7a tu es d\u00e9j\u00e0 pr\u00eat pour le mois de juin. Pour commencer, on te conseille de :&nbsp;<\/p>\n\n\n\n<p><strong>\ud83d\udc49 Prioriser<\/strong> les mati\u00e8res o\u00f9 tu es le plus en difficult\u00e9 ;&nbsp;<\/p>\n\n\n\n<p><strong>\ud83d\udc49 <\/strong>Faire un <strong>planning par semaine ;<\/strong><\/p>\n\n\n\n<p><strong>\ud83d\udc49 Alterner<\/strong> entre les <strong>mati\u00e8res\/chapitres difficiles <\/strong>et les <strong>mati\u00e8res\/chapitres plus simples ;<\/strong><\/p>\n\n\n\n<p><strong>\ud83d\udc49 <\/strong>S\u2019accorder <strong>des temps de pause ;<\/strong><\/p>\n\n\n\n<p><strong>\ud83d\udc49 <\/strong>Privil\u00e9gier un<strong> bon sommeil ;<\/strong><\/p>\n\n\n\n<p><strong>\ud83d\udc49 <\/strong>Mettre des <strong>plages de travail r\u00e9alisables<\/strong> (2 heures d\u2019affil\u00e9e maximum).&nbsp;<\/p>\n\n\n<section class=\"you-know\">\n                <div class=\"you-know__title\"><p>\ud83d\udcce Comment d\u00e9cider quelle mati\u00e8re prioriser ?<\/p>\n<\/div>\n                        <div class=\"you-know__text\">\n            <p>Selon tes r\u00e9sultats scolaires, ton int\u00e9r\u00eat pour la mati\u00e8re, tu auras <strong>des mati\u00e8res qui te mettront plus en difficult\u00e9 que d\u2019autres<\/strong>. On te conseille de prendre <a href=\"https:\/\/sherpas.com\/cours-particuliers-matieres\">un cours de soutien <\/a>avec un de nos professeurs pour t\u2019aider, de r\u00e9viser un peu plus ces mati\u00e8res que les autres, et d\u2019y aller sans panique. Au <strong>dernier conseil de classe<\/strong>, tes professeurs t\u2019attribueront <strong>un nombre de points par mati\u00e8re<\/strong> (de 10 \u00e0 50 points\/ mati\u00e8res), qui te permettront de bien \u00e9valuer ou sont tes facilit\u00e9s et tes difficult\u00e9s.<\/p>\n\n        <\/div>\n              <\/section>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"techniques-de-revisions\">Techniques de r\u00e9visions \ud83e\udde0<\/h2>\n\n\n\n<p><em>It\u2019s time<\/em> for les techniques de r\u00e9vision ! D\u00e9j\u00e0, on te propose d\u2019effectuer un test pour conna\u00eetre <a href=\"https:\/\/sherpas.com\/blog\/test-type-memoire-visuelle-auditive-kinesthesique\/\">ton type de m\u00e9moire<\/a> (visuelle, kinesth\u00e9sique, auditive), car cela t\u2019aidera \u00e0 savoir si faire des fiches est vraiment la meilleure mani\u00e8re de r\u00e9viser ou pas pour toi. Voici les techniques qu\u2019on valide chez les Sherpas :&nbsp;<\/p>\n\n\n\n<p>\ud83d\udcd9 <strong>Les m\u00e9thodes classiques<\/strong> : fiches de r\u00e9visions, exercices, quiz, annales du brevet\u2026<\/p>\n\n\n\n<p>\ud83d\udcf1<strong>La mani\u00e8re moderne <\/strong>: utilise des applications pour t\u2019aider, comme Anki, Quizlet\u2026<\/p>\n\n\n\n<p>\ud83d\udc65 <strong>Les m\u00e9thodes de groupe<\/strong> : tu peux te constituer un groupe de camarades pour travailler les annales ensemble, afin que chacun s\u2019entraide sur les difficult\u00e9s rencontr\u00e9es. Cela te permet aussi de tester tes capacit\u00e9s pour l\u2019\u00e9preuve orale en demandant \u00e0 quelqu\u2019un de te faire un oral blanc.&nbsp;<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"gerer-son-temps\">G\u00e9rer son temps \ud83d\udd70\ufe0f<\/h2>\n\n\n\n<p>Le mieux pour t\u2019organiser et savoir ce que tu as \u00e0 faire, c\u2019est de remplir un <em>weekly planner<\/em> : c\u2019est une sorte d\u2019<strong>agenda \u00e0 la semaine<\/strong> que tu peux accrocher sur ton bureau, te permettant d\u2019avoir une <strong>vision globale<\/strong> de ta semaine et de r\u00e9viser chapitre par chapitre. Tu peux m\u00eame remplir les pages d\u2019apr\u00e8s afin d\u2019organiser directement ton mois ! \ud83d\udcc2<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"destresser\">D\u00e9stresser \ud83e\uddd8<\/h2>\n\n\n\n<p>N\u2019oublie pas que le brevet est un <strong>marathon<\/strong>, pas un sprint : il est important que tu pr\u00e9voies des plages de <strong>repos<\/strong>, des moments d\u2019<strong>amusement <\/strong>et du<strong> temps pour toi.<\/strong> Si tu sens que le stress monte, on ne peut que te conseiller de faire des <strong>exercices de respiration<\/strong>, ou de pratiquer une activit\u00e9 sportive afin de concentrer ton \u00e9nergie ailleurs. \u26f9\ufe0f<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"le-jour-j\">Le jour J \ud83d\udccc<\/h2>\n\n\n\n<p>Et voil\u00e0, c\u2019est le<strong> jour J <\/strong>! Ne panique pas : si tu as suivi nos conseils, <strong>tout va bien se passer<\/strong>. N\u2019oublie pas que tu as d\u00e9j\u00e0 pass\u00e9 la moiti\u00e9 du brevet en contr\u00f4le continu, donc il ne te reste plus que l\u2019autre moiti\u00e9 ! Allez, on te souhaite bon courage et <strong>bonnes r\u00e9visions\u202f!<\/strong>&nbsp;\ud83d\udcda<\/p>\n\n\n\n<p>PS : apr\u00e8s le brevet, ce sont les <strong>vacances\u202f!<\/strong> C\u2019est une bonne nouvelle, non ? \ud83c\udfd6\ufe0f<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Comment faire un planning pour les r\u00e9visions du brevet ? Tu es en troisi\u00e8me et tu es terroris\u00e9 (&#8230;)<\/p>\n","protected":false},"author":326,"featured_media":306609,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":true,"footnotes":""},"category":[391,216,183],"tag":[],"class_list":["post-198024","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-planning-de-revision","category-planning-a-telecharger","category-toolbox"],"acf":[],"_links":{"self":[{"href":"https:\/\/sherpas.com\/blog\/wp-json\/wp\/v2\/posts\/198024","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\/326"}],"replies":[{"embeddable":true,"href":"https:\/\/sherpas.com\/blog\/wp-json\/wp\/v2\/comments?post=198024"}],"version-history":[{"count":0,"href":"https:\/\/sherpas.com\/blog\/wp-json\/wp\/v2\/posts\/198024\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/sherpas.com\/blog\/wp-json\/wp\/v2\/media\/306609"}],"wp:attachment":[{"href":"https:\/\/sherpas.com\/blog\/wp-json\/wp\/v2\/media?parent=198024"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/sherpas.com\/blog\/wp-json\/wp\/v2\/category?post=198024"},{"taxonomy":"tag","embeddable":true,"href":"https:\/\/sherpas.com\/blog\/wp-json\/wp\/v2\/tag?post=198024"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}