{"id":621,"date":"2021-07-19T13:36:22","date_gmt":"2021-07-19T17:36:22","guid":{"rendered":"https:\/\/www.kativik.qc.ca\/contact\/"},"modified":"2026-08-03T11:23:30","modified_gmt":"2026-08-03T15:23:30","slug":"contact","status":"publish","type":"page","link":"https:\/\/www.kativik.qc.ca\/in\/contact\/","title":{"rendered":"\u1583\u1405\u1528\u148b\u140a\u1546\u1466"},"content":{"rendered":"<div class=\"wpb-content-wrapper\"><p>[vc_row][vc_column][vc_empty_space][\/vc_column][\/vc_row][vc_row][vc_column]<div class=\"module-title-1\">\n    <div class=\"title-box\">\n                            <div class=\"bt-back\" data-aos=\"fade-left\" data-aos-delay=\"400\"><a class=\"btn btn-back\" href=\"http:\/\/www.kativik.qc.ca\/in\/\" title=\"Home\" target=\"\"><span>\u140a\u14c2\u1550\u154b\u1585<\/span><\/a><\/div>\n                    <div  data-aos=\"fade\" data-aos-delay=\"0\"><h1>\u1583\u1405\u1528\u148b\u140a\u1546\u1466<\/h1><\/div>            <\/div>\n<\/div>[\/vc_column][\/vc_row][vc_row][vc_column]<script>\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<\/script>\n\n                <div class='gf_browser_gecko gform_wrapper gform_legacy_markup_wrapper gform-theme--no-framework' data-form-theme='legacy' data-form-index='0' id='gform_wrapper_3' ><form method='post' enctype='multipart\/form-data'  id='gform_3'  action='\/in\/wp-json\/wp\/v2\/pages\/621' data-formid='3' novalidate>\n                        <div class='gform-body gform_body'><ul id='gform_fields_3' class='gform_fields top_label form_sublabel_below description_below validation_below'><li id=\"field_3_8\" 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_3_8'>Phone<\/label><div class='ginput_container'><input name='input_8' id='input_3_8' type='text' value='' autocomplete='new-password'\/><\/div><div class='gfield_description' id='gfield_description_3_8'>This field is for validation purposes and should be left unchanged.<\/div><\/li><li id=\"field_3_1\" 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_3_1'>Choisir le d\u00e9partement que vous voulez joindre<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_asterisk\">*<\/span><\/span><\/label><div class='ginput_container ginput_container_select'><select name='input_1' id='input_3_1' class='medium gfield_select'    aria-required=\"true\" aria-invalid=\"false\" ><option value='' >\u14c2\u1548\u140a\u1550\u14d7\u144e\u1466 \u14f1\u14c7\u1405\u14c2\u1550\u14c2<\/option><option value='\u1431\u14c7\u14f1\u1489\u1466' >\u1431\u14c7\u14f1\u1489\u1466<\/option><option value='\u1403\u14c4\u14bb\u14aa\u1547\u1466 \u1403\u14d5\u14d0\u14c2\u140a\u144e\u1455\u1405\u14c2\u158f\u1466 \u1431\u14c7\u14f1\u1490\u1550\u14c2\u14d7 \u1431\u148b\u1405\u1550\u14f4\u144e\u1466\u14ef\u148d\u144f\u1466' >\u1403\u14c4\u14bb\u14aa\u1547\u1466 \u1403\u14d5\u14d0\u14c2\u140a\u144e\u1455\u1405\u14c2\u158f\u1466 \u1431\u14c7\u14f1\u1490\u1550\u14c2\u14d7 \u1431\u148b\u1405\u1550\u14f4\u144e\u1466\u14ef\u148d\u144f\u1466<\/option><option value='\u1433\u1550\u1450\u14c2\u1550\u14f4\u148b\u140a\u14ea\u14da\u14a5\u1483 \u1403\u14d5\u14d0\u14c2\u140a\u144f\u1466 \u1431\u148d\u1466\u152d\u1405\u1555\u1593\u1466' >\u1433\u1550\u1450\u14c2\u1550\u14f4\u148b\u140a\u14ea\u14da\u14a5\u1483 \u1403\u14d5\u14d0\u14c2\u140a\u144f\u1466 \u1431\u148d\u1466\u152d\u1405\u1555\u1593\u1466<\/option><option value='\u1431\u14c7\u14f1\u1466\u1450\u14d5\u1546\u1555\u1483' >\u1431\u14c7\u14f1\u1466\u1450\u14d5\u1546\u1555\u1483<\/option><option value='\u1431\u14c7\u14f1\u1466\u144f\u1466 \u146e\u14c7\u1405\u1466\u152d\u14f5\u14d5\u1405\u1550\u1455\u1405\u14c2\u1593' >\u1431\u14c7\u14f1\u1466\u144f\u1466 \u146e\u14c7\u1405\u1466\u152d\u14f5\u14d5\u1405\u1550\u1455\u1405\u14c2\u1593<\/option><option value='\u1431\u1559\u14ea\u14d5\u140a\u152a\u14d5\u1546\u14c2\u1550\u14a5\u1483 \u1431\u14c7\u14f1\u1466\u144f\u1466' >\u1431\u1559\u14ea\u14d5\u140a\u152a\u14d5\u1546\u14c2\u1550\u14a5\u1483 \u1431\u14c7\u14f1\u1466\u144f\u1466<\/option><option value='\u1403\u14d5\u14d0\u14c2\u140a\u1548\u144e\u14d5\u1405\u1550\u1555\u1483' >\u1403\u14d5\u14d0\u14c2\u140a\u1548\u144e\u14d5\u1405\u1550\u1555\u1483<\/option><option value='\u1431\u148d\u1466\u1528\u148b\u140a\u14ea\u14db\u1555\u1483 \u140a\u14bb\u14aa\u14d7 \u14f4\u1450\u1550\u14c7\u1450\u14d5\u14d0\u14c2\u1483 \u1403\u14d5\u14d0\u14c2\u140a\u1555\u1583\u1550\u14c2\u14a7\u1466 \u1431\u148d\u1466\u1528\u1555\u1483' >\u1431\u148d\u1466\u1528\u148b\u140a\u14ea\u14db\u1555\u1483 \u140a\u14bb\u14aa\u14d7 \u14f4\u1450\u1550\u14c7\u1450\u14d5\u14d0\u14c2\u1483 \u1403\u14d5\u14d0\u14c2\u140a\u1555\u1583\u1550\u14c2\u14a7\u1466 \u1431\u148d\u1466\u1528\u1555\u1483<\/option><option value='\u1403\u14d5\u14d0\u14c2\u140a\u144e\u1466\u14ef\u1529\u1466 \u1431\u148b\u1405\u1550\u14f4\u144e\u1455\u1405\u14c2\u158f\u1466' >\u1403\u14d5\u14d0\u14c2\u140a\u144e\u1466\u14ef\u1529\u1466 \u1431\u148b\u1405\u1550\u14f4\u144e\u1455\u1405\u14c2\u158f\u1466<\/option><option value='\u1583\u1405\u1528\u14f4\u1548\u144e\u14c2\u1466 \u140a\u14bb\u14aa\u14d7 \u1583\u1405\u1528\u14aa\u152d\u1405\u152a\u14c2\u1466 \u14c4\u140a\u1466\u14ef\u14c3\u1466 \u14c4\u14c7\u1555\u14bb\u14a5' >\u1583\u1405\u1528\u14f4\u1548\u144e\u14c2\u1466 \u140a\u14bb\u14aa\u14d7 \u1583\u1405\u1528\u14aa\u152d\u1405\u152a\u14c2\u1466 \u14c4\u140a\u1466\u14ef\u14c3\u1466 \u14c4\u14c7\u1555\u14bb\u14a5<\/option><option value='\u14c4\u14c7\u1555\u1483 \u14ef\u1557\u14c2\u1466\u14f4\u1557\u1466' >\u14c4\u14c7\u1555\u1483 \u14ef\u1557\u14c2\u1466\u14f4\u1557\u1466<\/option><option value='iNaqittaq' >iNaqittaq<\/option><option value='\u140a\u14ef\u140a' >\u140a\u14ef\u140a<\/option><\/select><\/div><\/li><li id=\"field_3_2\" class=\"gfield gfield--type-text gfield--input-type-text gf_left_half 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_3_2'>\u140a\u144e\u1593<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_asterisk\">*<\/span><\/span><\/label><div class='ginput_container ginput_container_text'><input name='input_2' id='input_3_2' type='text' value='' class='medium'     aria-required=\"true\" aria-invalid=\"false\"   \/><\/div><\/li><li id=\"field_3_3\" class=\"gfield gfield--type-text gfield--input-type-text gf_right_half 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_3_3'>\u140a\u144e\u14d5\u1550\u157f\u1593<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_asterisk\">*<\/span><\/span><\/label><div class='ginput_container ginput_container_text'><input name='input_3' id='input_3_3' type='text' value='' class='medium'     aria-required=\"true\" aria-invalid=\"false\"   \/><\/div><\/li><li id=\"field_3_4\" class=\"gfield gfield--type-email gfield--input-type-email gf_left_half 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_3_4'>\u1583\u1546\u1455\u1405\u152d\u1483\u146f\u1466 \u1450\u154c\u1548\u144e\u1593<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_asterisk\">*<\/span><\/span><\/label><div class='ginput_container ginput_container_email'>\n                            <input name='input_4' id='input_3_4' type='email' value='' class='medium'    aria-required=\"true\" aria-invalid=\"false\"  \/>\n                        <\/div><\/li><li id=\"field_3_5\" class=\"gfield gfield--type-phone gfield--input-type-phone gf_right_half field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_3_5'>\u1405\u1583\u14d5\u14aa\u1405\u144e\u1593<\/label><div class='ginput_container ginput_container_phone'><input name='input_5' id='input_3_5' type='tel' value='' class='medium'    aria-invalid=\"false\"   \/><\/div><\/li><li id=\"field_3_6\" class=\"gfield gfield--type-textarea gfield--input-type-textarea 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_3_6'>\u1405\u1583\u1405\u14ef\u1466\u14f4\u144e\u1466<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_asterisk\">*<\/span><\/span><\/label><div class='ginput_container ginput_container_textarea'><textarea name='input_6' id='input_3_6' class='textarea medium'     aria-required=\"true\" aria-invalid=\"false\"   rows='10' cols='50'><\/textarea><\/div><\/li><li id=\"field_3_7\" class=\"gfield gfield--type-captcha gfield--input-type-captcha gfield--width-full field_sublabel_below gfield--no-description field_description_below hidden_label field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_3_7'>CAPTCHA<\/label><div id='input_3_7' class='ginput_container ginput_recaptcha' data-sitekey='6Lfn004rAAAAAJmLVmm0m_3g26yj1HfMYveL6kCr'  data-theme='light' data-tabindex='0'  data-badge=''><\/div><\/li><\/ul><\/div>\n        <div class='gform-footer gform_footer top_label'> <input type='submit' id='gform_submit_button_3' class='gform_button button' onclick='gform.submission.handleButtonClick(this);' data-submission-type='submit' value='\u1450\u14c2\u14d7\u148b\u1466'  \/> \n            <input type='hidden' class='gform_hidden' name='gform_submission_method' data-js='gform_submission_method_3' value='postback' \/>\n            <input type='hidden' class='gform_hidden' name='gform_theme' data-js='gform_theme_3' id='gform_theme_3' value='legacy' \/>\n            <input type='hidden' class='gform_hidden' name='gform_style_settings' data-js='gform_style_settings_3' id='gform_style_settings_3' value='[]' \/>\n            <input type='hidden' class='gform_hidden' name='is_submit_3' value='1' \/>\n            <input type='hidden' class='gform_hidden' name='gform_submit' value='3' \/>\n            \n            <input type='hidden' class='gform_hidden' name='gform_currency' data-currency='CAD' value='\/b4li1zmtPIrNDhhpg2dQcuMNp8+1p+Z+98K3zId3tSZs5KE7l4lLVz7WhZ7nFveGCtjuVIDDL+Oc+G2DejVwbYCDHhV82egX8la+DUO0AUh5bg=' \/>\n            <input type='hidden' class='gform_hidden' name='gform_unique_id' value='' \/>\n            <input type='hidden' class='gform_hidden' name='state_3' value='WyJbXSIsImY5YzVjNWNiM2QyNGM1MmU0MTAyZmFmYzQ2NTg4ZmM4Il0=' \/>\n            <input type='hidden' autocomplete='off' class='gform_hidden' name='gform_target_page_number_3' id='gform_target_page_number_3' value='0' \/>\n            <input type='hidden' autocomplete='off' class='gform_hidden' name='gform_source_page_number_3' id='gform_source_page_number_3' value='1' \/>\n            <input type='hidden' name='gform_field_values' value='' \/>\n            \n        <\/div>\n                        <\/form>\n                        <\/div><script>\ngform.initializeOnLoaded( function() {gformInitSpinner( 3, 'https:\/\/www.kativik.qc.ca\/wp-content\/plugins\/gravityforms\/images\/spinner.svg', true );jQuery('#gform_ajax_frame_3').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_3');var is_confirmation = jQuery(this).contents().find('#gform_confirmation_wrapper_3').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){jQuery('#gform_wrapper_3').html(form_content.html());if(form_content.hasClass('gform_validation_error')){jQuery('#gform_wrapper_3').addClass('gform_validation_error');} else {jQuery('#gform_wrapper_3').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_3').val();gformInitSpinner( 3, 'https:\/\/www.kativik.qc.ca\/wp-content\/plugins\/gravityforms\/images\/spinner.svg', true );jQuery(document).trigger('gform_page_loaded', [3, current_page]);window['gf_submitting_3'] = 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_3').replaceWith(confirmation_content);jQuery(document).trigger('gform_confirmation_loaded', [3]);window['gf_submitting_3'] = false;wp.a11y.speak(jQuery('#gform_confirmation_message_3').text());}else{jQuery('#gform_3').append(contents);if(window['gformRedirect']) {gformRedirect();}}jQuery(document).trigger(\"gform_pre_post_render\", [{ formId: \"3\", currentPage: \"current_page\", abort: function() { this.preventDefault(); } }]);        if (event && event.defaultPrevented) {                return;        }        const gformWrapperDiv = document.getElementById( \"gform_wrapper_3\" );        if ( gformWrapperDiv ) {            const visibilitySpan = document.createElement( \"span\" );            visibilitySpan.id = \"gform_visibility_test_3\";            gformWrapperDiv.insertAdjacentElement( \"afterend\", visibilitySpan );        }        const visibilityTestDiv = document.getElementById( \"gform_visibility_test_3\" );        let postRenderFired = false;        function triggerPostRender() {            if ( postRenderFired ) {                return;            }            postRenderFired = true;            gform.core.triggerPostRenderEvents( 3, 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<\/script>\n[\/vc_column][\/vc_row][vc_row equal_height=&#8221;yes&#8221; content_placement=&#8221;bottom&#8221;][vc_column]<div class=\"module-title-2 has-submenu\" style=\"background-image: url('https:\/\/www.kativik.qc.ca\/wp-content\/uploads\/2021\/05\/deco-1.png')\">\n        <div class=\"title-type-2-box\">\n        <div class=\"title-sub-box\"  data-aos=\"fade\" data-aos-delay=\"0\">\n            <h3>\u1405\u1584\u14da\u1405\u144f\u1466 \u146d\u14ef\u1466\u14ef\u148d\u144e\u158f\u1466<\/h3>\n        <\/div>\n        <div class=\"txt-box txt-bleu\"  data-aos=\"fade-left\" data-aos-delay=\"200\">\n                    <\/div>\n    <\/div>\n<\/div><div class=\"module-title-2-menu\">\n    <div class=\"title-type-2-box\">\n        <div class=\"menu-de-page\"  data-aos=\"fade-left\" data-aos-delay=\"0\">\n            <ul>\n                <li class=\"\"><a href=\"#idoffices\" class=\"menu-link\">\u140a\u14a1\u14da\u1555\u1557\u1466<\/a><\/li><li class=\"\"><a href=\"#idschools\" class=\"menu-link\">\u1403\u14d5\u14d0\u14c2\u140a\u1555\u1450\u1403\u14d0\u14c7\u1557\u1466<\/a><\/li><li class=\"\"><a href=\"#idcentres\" class=\"menu-link\">\u1403\u14c4\u14bb\u14aa\u1546\u14c4\u1466 \u1403\u14d5\u14d0\u14c2\u140a\u1555\u1557\u1466<\/a><\/li><li class=\"\"><a href=\"#idmedias\" class=\"menu-link\">\u1450\u14f4\u1405\u14aa\u1490\u14f1\u140a\u1550\u1556\u1466<\/a><\/li>            <\/ul>\n        <\/div>\n    <\/div>\n<\/div>[vc_empty_space height=&#8221;40px&#8221;][\/vc_column][\/vc_row][vc_row][vc_column]<a class=\"henri-anchor idoffices\" id=\"idoffices\" name=\"idoffices\"><\/a><div class=\"module-title-3 \">\n    <div class=\"title-type-3-box\">\n        <div class=\"title-sub-box\"  data-aos=\"fade\" data-aos-delay=\"0\">\n            <h3>\u140a\u14a1\u14da\u1555\u1557\u1466<\/h3>\n                    <\/div>\n            <\/div>\n<\/div>[vc_tta_accordion color=&#8221;vista-blue&#8221; active_section=&#8221;-1&#8243; collapsible_all=&#8221;true&#8221;][vc_tta_section title=&#8221;\u1403\u14d5\u14d0\u14c2\u140a\u14c2\u14d5\u1546\u14c2\u1405\u1449 \u140a\u14ea\u14da\u1555\u14bb\u14aa\u1546\u1593&#8221; tab_id=&#8221;bureau-mtl1630951477571&#8243;][vc_column_text]9800, boul. Cavendish,<br \/>\nSuite 510<br \/>\nSaint-Laurent (Qu\u00e9bec)<br \/>\nH4M 2V9<\/p>\n<p>\u1405\u1584\u14da\u1405\u144e\u1483:\u00a0514 482-8220<br \/>\n\u14f1\u1472\u1466\u1450\u1470\u1548\u144e\u1483: 514 482-8496<br \/>\n\u140a\u146d\u1583\u158f\u1450\u1585: 1 800 361-2244[\/vc_column_text][\/vc_tta_section][vc_tta_section title=&#8221;\u1470\u1466\u152a\u140a\u14a5 \u140a\u14ea\u14da\u1555\u1483&#8221; tab_id=&#8221;bureaux-kuujjuaq1630951477571&#8243;][vc_column_text]P.O. Box 150<br \/>\nKuujjuaq, QC<br \/>\nJ0M 1C0<\/p>\n<p>\u1405\u1584\u14da\u1405\u144e\u1483: 819 964-1136<br \/>\n\u14f1\u1472\u1466\u1450\u1470\u1548\u144e\u1483: 819 964-1141<br \/>\n\u140a\u146d\u1583\u158f\u1450\u1585: 1 877 964-1136[\/vc_column_text][\/vc_tta_section][vc_tta_section title=&#8221;\u1431\u1581\u144e\u1583\u1405\u144e&#8221; tab_id=&#8221;1625771615289-b0098f34-634d1630951477571&#8243;][vc_column_text css=&#8221;&#8221;]9641 C\u00f4te-de-Liesse<br \/>\nDorval, QC<br \/>\nH9P 1A3<\/p>\n<p>\u1405\u1584\u14da\u1405\u144e\u1483: 514 633-8678<br \/>\n\u14f1\u1472\u1466\u1450\u1470\u1548\u144e\u1483: 514 631-4429<br \/>\n\u140a\u146d\u1583\u158f\u1450\u1585: 1 800 361-2244<\/p>\n<ul>\n<li><strong>\u140a\u1455\u1405\u1466\u14ef\u1470\u1550\u144e\u14ef\u1528 &#8211; \u1431\u14c7\u14f1\u155d\u1555\u1483<\/strong><br \/>\nRakesh Awasthi<\/li>\n<\/ul>\n<p>[\/vc_column_text][\/vc_tta_section][\/vc_tta_accordion][vc_empty_space height=&#8221;50px&#8221;][\/vc_column][\/vc_row][vc_row][vc_column]<a class=\"henri-anchor idfrontline\" id=\"idfrontline\" name=\"idfrontline\"><\/a>[vc_column_text]<strong>\u1455\u1489\u14d0\u14c7\u14ed\u14d0\u14c7\u1585 \u1431\u148d\u1466\u1528\u1556\u1466 :<\/strong>[\/vc_column_text][vc_tta_accordion color=&#8221;vista-blue&#8221; active_section=&#8221;-1&#8243; collapsible_all=&#8221;true&#8221;][vc_tta_section title=&#8221;\u1431\u148d\u1466\u1528\u1405\u144e\u1557\u1466 &#8211; \u1403\u14d5\u14d0\u14c2\u140a\u1555\u1450\u1403\u14d0\u14c0\u1466&#8221; tab_id=&#8221;youthservices16675794243201683547707946&#8243;][vc_column_text css=&#8221;&#8221;]P.O. Box 150<br \/>\nKuujjuaq, QC<br \/>\nJ0M 1C0<\/p>\n<p>\u1405\u1584\u14da\u1405\u144e\u1483: (819) 964-1136<br \/>\n\u14f1\u1472\u1466\u1450\u1470\u1548\u144e\u1483: (819) 964-1141<br \/>\n\u140a\u146d\u1583\u158f\u1450\u1585: 1-877-964-1136<\/p>\n<p><a href=\"mailto:L2@kativik.qc.ca\"><strong><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-19460\" src=\"https:\/\/www.kativik.qc.ca\/wp-content\/uploads\/2025\/03\/icon-mail.png\" alt=\"\" width=\"73\" height=\"68\" \/><\/strong><\/a><\/p>\n<p>Administration :<\/p>\n<ul>\n<li><strong><strong>\u1450\u146d\u14a7\u140a\u1466\u144e\u14ef\u1528 &#8211; \u1403\u14d5\u14d0\u14c2\u140a\u1548\u144e\u14d5\u1546\u1555\u1483 \u140a\u14bb\u14aa\u14d7 \u1431\u148d\u1466\u1528\u148b\u140a\u14ea\u14db\u1555\u1483 \u140a\u14bb\u14aa\u14d7 \u14f4\u1450\u1550\u14c7\u1450\u14d5\u14d0\u14c2\u1483 \u1403\u14d5\u14d0\u14c2\u140a\u1555\u1583\u1550\u14c2\u14a7\u1466 \u1431\u148d\u1466\u1528\u1555\u1483<br \/>\n<\/strong><\/strong>Warren Thomson<\/li>\n<li><strong>\u1450\u146d\u14a7\u140a\u1466\u144e\u14ef\u1528<span class=\"ui-provider a b c d e f g h i j k l m n o p q r s t u v w x y z ab ac ae af ag ah ai aj ak\" dir=\"ltr\">\u14a5\u1483<\/span> &#8211; \u1403\u14d5\u14d0\u14c2\u140a\u1548\u144e\u14d5\u1546\u1555\u1483<br \/>\n<\/strong>Catherine Garand<\/li>\n<li><strong><span class=\"ui-provider a b c d e f g h i j k l m n o p q r s t u v w x y z ab ac ae af ag ah ai aj ak\" dir=\"ltr\">\u1450\u146d\u14a7\u140a\u1466\u144e\u14ef\u1528\u14a5\u1483 \u1403\u1472\u152a\u1550\u144e &#8211; \u1403\u14d5\u14d0\u14c2\u140a\u1556\u1466 \u140a\u1405\u14da\u1455\u1405\u1555\u1593<\/span><\/strong><br \/>\nMarie-H\u00e9l\u00e8ne Boyle-Baillot<\/li>\n<li><strong><span class=\"ui-provider a b c d e f g h i j k l m n o p q r s t u v w x y z ab ac ae af ag ah ai aj ak\" dir=\"ltr\">\u1450\u146d\u14a7\u140a\u1466\u144e\u14ef\u1528\u14a5\u1483 \u1403\u1472\u152a\u1550\u144e &#8211; \u1403\u14d5\u14d0\u14c2\u140a\u1556\u1466 \u140a\u1405\u14da\u1455\u1405\u1555\u1593<\/span><\/strong><br \/>\nNicholas Ramsay<\/li>\n<li><strong>\u1450\u146d\u14a7\u140a\u1466\u144e\u14ef\u1528\u1405\u1449 \u1403\u1472\u152a\u1550\u144e\u1593 &#8211; \u1403\u14d5\u14d0\u14c2\u140a\u1548\u144e\u14d5\u1546\u1555\u1483 | \u1405\u1583\u1405\u14ef\u1550\u14a5\u14c2\u1483 \u1403\u14d5\u14d0\u14c2\u140a\u14c3\u1466<\/strong><strong><br \/>\n<\/strong>Alaku Kulula<\/li>\n<li><strong>\u1450\u146d\u14f1\u140a\u1466\u144e\u14ef\u1528\u1405\u1449 \u1403\u1472\u152a\u1550\u144e\u1593 &#8211; \u1431\u148d\u1466\u1528\u148b\u140a\u14ea\u14db\u1555\u1483 \u140a\u14bb\u14aa\u14d7 \u1431\u148d\u1466\u1528\u148b\u140a\u14ea\u14db\u1555\u1483 \u140a\u14bb\u14aa\u14d7 \u14f4\u1450\u1550\u14c7\u1450\u14d5\u14d0\u14c2\u1483 \u1403\u14d5\u14d0\u14c2\u140a\u1555\u1583\u1550\u14c2\u14a7\u1466 \u1431\u148d\u1466\u1528\u1555\u1483<br \/>\n<\/strong>Liza Cotnoir<\/li>\n<li><strong>\u1450\u146d\u14a7\u140a\u1550\u144e\u14ef\u1528\u1405\u1449 \u1403\u1472\u152a\u1550\u144e\u1593 &#8211; \u1403\u14c5\u1583\u144e\u1583\u1466\u14ef\u140a\u1548\u14d0\u14c7\u14c2\u1550\u14a5\u1483 \u1431\u148d\u1466\u1528\u1555\u1483<br \/>\n<\/strong>Jasmine John<\/li>\n<\/ul>\n<p>[\/vc_column_text][\/vc_tta_section][\/vc_tta_accordion][vc_tta_accordion color=&#8221;green&#8221; active_section=&#8221;-1&#8243; collapsible_all=&#8221;true&#8221;][vc_tta_section title=&#8221;\u1431\u148d\u1466\u1528\u1405\u144e\u1557\u1466 &#8211; \u1403\u14c4\u14bb\u14aa\u1547\u1466 \u1403\u14d5\u14d0\u14c2\u140a\u1555\u1593&#8221; tab_id=&#8221;adultservices16675794243201683547707946&#8243;][vc_column_text css=&#8221;&#8221;]9800, boul. Cavendish,<br \/>\nSuite 400<br \/>\nSaint-Laurent (Qu\u00e9bec)<br \/>\nH4M 2V9<\/p>\n<p>\u1405\u1584\u14da\u1405\u144e\u1483: 514 482-8220<br \/>\n\u14f1\u1472\u1466\u1450\u1470\u1548\u144e\u1483: 514 482-8278<br \/>\n\u140a\u146d\u1583\u158f\u1450\u1585: 1 800 361-2244<\/p>\n<p><a href=\"mailto:adulteducation@kativik.qc.ca\"><strong><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-19460\" src=\"https:\/\/www.kativik.qc.ca\/wp-content\/uploads\/2025\/03\/icon-mail.png\" alt=\"\" width=\"73\" height=\"68\" \/><\/strong><\/a><\/p>\n<p>Administration :<\/p>\n<ul>\n<li><strong>\u1450\u146d\u14a7\u140a\u1466\u144e\u14ef\u1528<\/strong><br \/>\nMamadou Diop<\/li>\n<li><strong>\u1450\u146d\u14f1\u140a\u1466\u144e\u14ef\u1528\u1405\u1449 \u1403\u1472\u152a\u1550\u144e\u1593 &#8211; \u1431\u148b\u1405\u1550\u14f4\u1548\u144e\u1466\u14ed\u1466 \u1431\u1559\u14ea\u14d5\u140a\u152d\u1405\u14c2\u158f\u14d0\u14c4\u1466<\/strong><br \/>\nAudr\u00e9e Pepin-Houle<\/li>\n<li><strong>\u1450\u146d\u14f1\u140a\u1466\u144e\u14ef\u1528\u1405\u1449 \u1403\u1472\u152a\u1550\u144e\u1593<\/strong><br \/>\nParfait Cem\u00e9<\/li>\n<\/ul>\n<p>[\/vc_column_text][\/vc_tta_section][\/vc_tta_accordion][vc_tta_accordion color=&#8221;juicy-pink&#8221; active_section=&#8221;-1&#8243; collapsible_all=&#8221;true&#8221;][vc_tta_section title=&#8221;\u1431\u148d\u1466\u1528\u1405\u144e\u1557\u1466 &#8211; \u1433\u1550\u1450\u14c2\u1550\u14f4\u148b\u140a\u14ea\u14da\u14a5 \u1431\u148d\u1466\u1528\u148d\u144f\u1466&#8221; tab_id=&#8221;studentservices16675794243201683547707946&#8243;][vc_column_text css=&#8221;&#8221;]9800, boul. Cavendish,<br \/>\nSuite 510<br \/>\nSaint-Laurent (Qu\u00e9bec)<br \/>\nH4M 2V9<\/p>\n<p>\u1405\u1584\u14da\u1405\u144e\u1483: (514) 457-1178<\/p>\n<p><a href=\"mailto:student.services@kativik.qc.ca\"><strong><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-19460\" src=\"https:\/\/www.kativik.qc.ca\/wp-content\/uploads\/2025\/03\/icon-mail.png\" alt=\"\" width=\"73\" height=\"68\" \/><\/strong><\/a><\/p>\n<p>Administration :<\/p>\n<ul>\n<li><strong>\u1450\u146d\u14a7\u140a\u1466\u144e\u14ef\u1528<\/strong><br \/>\nPhebe Bentley<\/li>\n<li><strong>\u1450\u146d\u14f1\u140a\u1466\u144e\u14ef\u1528\u1405\u1449 \u1403\u1472\u152a\u1550\u144e\u1593<\/strong><br \/>\nErik Olsthoorn<\/li>\n<\/ul>\n<p>[\/vc_column_text][\/vc_tta_section][\/vc_tta_accordion][vc_tta_accordion color=&#8221;black&#8221; active_section=&#8221;-1&#8243; collapsible_all=&#8221;true&#8221;][vc_tta_section title=&#8221;\u1431\u148d\u1466\u1528\u1405\u144e\u1557\u1466 &#8211; employees (\u1431\u152a\u14d0\u14c7\u1405\u144e\u1456\u1550\u1438\u14d5\u140a\u14c2\u1585)&#8221; tab_id=&#8221;employeesservices16675794243201683547707946&#8243;][vc_column_text css=&#8221;&#8221;]9800, boul. Cavendish,<br \/>\nSuite 510<br \/>\nSaint-Laurent (Qu\u00e9bec)<br \/>\nH4M 2V9<\/p>\n<p>\u1405\u1584\u14da\u1405\u144e\u1483:\u00a0514 482-8220<br \/>\n\u14f1\u1472\u1466\u1450\u1470\u1548\u144e\u1483: 514 482-8496<br \/>\n\u140a\u146d\u1583\u158f\u1450\u1585: 1 800 361-2244<\/p>\n<p><a href=\"mailto:ProfessionalImprovement@kativik.qc.ca\"><strong><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-19460\" src=\"https:\/\/www.kativik.qc.ca\/wp-content\/uploads\/2025\/03\/icon-mail.png\" alt=\"\" width=\"73\" height=\"68\" \/><\/strong><\/a><br \/>\nAdministration :<\/p>\n<ul>\n<li><strong>\u1431\u152a\u14d0\u14c7\u1405\u144e\u14d6\u1466 \u1431\u152a\u14d0\u14c7\u1405\u144e\u1456\u1546\u140a\u14ea\u14db\u14c2\u1550\u14a7\u1466 \u1431\u1555\u1466\u14f4\u1583\u1550\u144e\u14ef\u148d\u144f\u1466<br \/>\n<\/strong>Vikie Brabant<\/li>\n<\/ul>\n<p>[\/vc_column_text][\/vc_tta_section][\/vc_tta_accordion][vc_empty_space height=&#8221;25px&#8221;][\/vc_column][\/vc_row][vc_row][vc_column]<a class=\"henri-anchor idbackbone\" id=\"idbackbone\" name=\"idbackbone\"><\/a>[vc_column_text]<strong>\u14aa\u146d\u1455\u144e\u1466\u14ef\u14da\u1546\u1466\u1450\u1466 \u1431\u148d\u1466\u1528\u1556\u1466 :<\/strong>[\/vc_column_text][vc_tta_accordion color=&#8221;vista-blue&#8221; active_section=&#8221;-1&#8243; collapsible_all=&#8221;true&#8221;][vc_tta_section title=&#8221;\u1403\u14d8\u14d0\u14c8\u148d\u1466 \u140a\u1405\u14da\u1466\u14ef\u14c2\u14d5\u1546\u1555\u1483&#8221; tab_id=&#8221;1665066470948-148f8a69-577f16675794250121683547708876&#8243;][vc_column_text css=&#8221;&#8221;]Administration :<\/p>\n<ul>\n<li><strong>\u1472\u152a\u14ef\u1483\u146b\u1528<\/strong><br \/>\nHarriet Keleutak<\/li>\n<li><strong>\u1472\u152a\u14ef\u1483\u146b\u1528\u1405\u1449 \u1403\u1472\u152a\u1550\u144e\u1593<\/strong><br \/>\nLisa Mesher<\/li>\n<li><strong>\u1472\u152a\u14ef\u1483\u146b\u1528\u1405\u1449 \u1403\u1472\u152a\u1550\u144e\u1593<br \/>\n<\/strong>Jeannie Dupuis<\/li>\n<\/ul>\n<p>[\/vc_column_text][\/vc_tta_section][vc_tta_section title=&#8221;\u146e\u14c7\u1405\u152d\u14d5\u1546\u14c2\u1585&#8221; tab_id=&#8221;1665066471047-ab817689-71ae16675794250121683547708876&#8243;][vc_column_text css=&#8221;&#8221;]Administration :<\/p>\n<ul>\n<li><strong>\u1450\u146d\u14a7\u140a\u1466\u144e\u14ef\u1528<\/strong><br \/>\nYoussef Hayek<\/li>\n<li><strong>\u1450\u146d\u14f1\u140a\u1466\u144e\u14ef\u1528\u1405\u1449 \u1403\u1472\u152a\u1550\u144e\u1593<\/strong><br \/>\nJean-Paul Besner<\/li>\n<\/ul>\n<p>[\/vc_column_text][\/vc_tta_section][vc_tta_section title=&#8221;\u1431\u1405\u14d5\u14c2\u140a\u1490\u14d5\u1546\u1555\u1483&#8221; tab_id=&#8221;1681744654323-ba928985-a21f1683547708876&#8243;][vc_column_text css=&#8221;&#8221;]Administration :<\/p>\n<ul>\n<li><strong>\u1450\u146d\u14a7\u140a\u1466\u144e\u14ef\u1528<\/strong><br \/>\nJ\u00e9r\u00f4me Dionne<\/li>\n<li><strong>\u1450\u146d\u14f1\u140a\u1466\u144e\u14ef\u1528\u1405\u1449 \u1403\u1472\u152a\u1550\u144e\u1593 <span class=\"ui-provider ed bhc bcm bzj bzk bzl bzm bzn bzo bzp bzq bzr bzs bzt bzu bzv bzw bzx bzy bzz caa cab cac cae caf cag cah cai caj cak cal cam can cao cap\" dir=\"ltr\">&#8211;\u00a0\u146e\u14c7\u1405\u152d\u1550\u1451\u144e\u14d5\u1546\u1405\u144e\u14c2\u1483<\/span><\/strong><br \/>\nPaul Ghaleb<\/li>\n<li><strong>\u1450\u146d\u14f1\u140a\u1466\u144e\u14ef\u1528\u1405\u1449 \u1403\u1472\u152a\u1550\u144e\u1593 &#8211; \u14f1\u1483\u146f\u144e\u1466\u14ef\u144c\u14d5\u1529\u1466<\/strong><br \/>\nPatrick Curiale<\/li>\n<li><strong>\u1450\u146d\u14f1\u140a\u1466\u144e\u14ef\u1528\u1405\u1449 \u1403\u1472\u152a\u1550\u144e\u1593 <span class=\"ui-provider ed bhc bcm bzj bzk bzl bzm bzn bzo bzp bzq bzr bzs bzt bzu bzv bzw bzx bzy bzz caa cab cac cae caf cag cah cai caj cak cal cam can cao cap\" dir=\"ltr\">&#8211; \u1431\u1405\u1483\u146f\u144e\u14bb\u14aa\u1546\u14d5\u1546\u14c2\u1550\u14a5\u00a0<\/span><br \/>\n<\/strong>Patricia Cianciarelli<\/li>\n<\/ul>\n<p>[\/vc_column_text][\/vc_tta_section][vc_tta_section title=&#8221;\u1431\u14c7\u14f1\u1466\u1450\u14d5\u1546\u1555\u1483&#8221; tab_id=&#8221;1665066471259-10f51dc0-d2b316675794250121683547708876&#8243;][vc_column_text css=&#8221;&#8221;]<a href=\"mailto:hr_lr@kativik.qc.ca\"><strong><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-19460\" src=\"https:\/\/www.kativik.qc.ca\/wp-content\/uploads\/2025\/03\/icon-mail.png\" alt=\"\" width=\"73\" height=\"68\" \/><\/strong><\/a><\/p>\n<p>Administration :<\/p>\n<ul>\n<li><strong>\u1450\u146d\u14a7\u140a\u1466\u144e\u14ef\u1528<\/strong><br \/>\nKimberly Makiuk<\/li>\n<li><strong><span class=\"ui-provider a b c d e f g h i j k l m n o p q r s t u v w x y z ab ac ae af ag ah ai aj ak\" dir=\"ltr\">\u1403\u14c7\u1590\u14aa\u152a\u1585 \u1450\u146d\u14a7\u140a\u1466\u144e\u14ef\u1528\u14a5\u1483 \u1403\u1472\u152a\u1550\u144e &#8211; \u1431\u14c7\u14f1\u1466\u144e\u14c2 \u1472\u1450\u1466\u1528\u1583\u144e\u148c\u14d0\u14c2\u14d5\u1546\u14c2\u1585<\/span><\/strong><br \/>\nEloise Lessard Legault<\/li>\n<li><strong>\u1450\u146d\u14f1\u140a\u1466\u144e\u14ef\u1528\u1405\u1449 \u1403\u1472\u152a\u1550\u144e\u1593 &#8211; \u1431\u14c7\u14f1\u1466\u144f\u1466 \u146e\u14c7\u1405\u1466\u152d\u14f5\u14d5\u1405\u1550\u1455\u1405\u14c2\u1593<\/strong><br \/>\nAngela Megali<\/li>\n<li><strong>\u1450\u146d\u14f1\u140a\u1466\u144e\u14ef\u1528\u1405\u1449 \u1403\u1472\u152a\u1550\u144e\u1593 &#8211; \u1431\u14c7\u14f1\u1466\u14ef\u140a\u1548\u14d0\u14c7\u1450\u1550\u14ef\u1405\u144e<\/strong><br \/>\nJudith Michel<\/li>\n<\/ul>\n<p>[\/vc_column_text][\/vc_tta_section][vc_tta_section title=&#8221;\u1583\u1546\u1455\u1405\u152d\u14d5\u1546\u1555\u1483 (IT)&#8221; tab_id=&#8221;1665066471349-5b090325-abbc16675794250121683547708876&#8243;][vc_column_text css=&#8221;&#8221;]Administration :<\/p>\n<ul>\n<li><strong>\u1450\u146d\u14a7\u140a\u1466\u144e\u14ef\u1528<\/strong><br \/>\nPatrice Desroches<\/li>\n<li><strong>\u1450\u146d\u14f1\u140a\u1466\u144e\u14ef\u1528\u1405\u1449 \u1403\u1472\u152a\u1550\u144e\u1593<\/strong><br \/>\nVincent Renaud<\/li>\n<\/ul>\n<p>[\/vc_column_text][\/vc_tta_section][\/vc_tta_accordion][vc_empty_space height=&#8221;50px&#8221;][\/vc_column][\/vc_row][vc_row][vc_column]<a class=\"henri-anchor idschools\" id=\"idschools\" name=\"idschools\"><\/a><div class=\"module-title-3 \">\n    <div class=\"title-type-3-box\">\n        <div class=\"title-sub-box\"  data-aos=\"fade\" data-aos-delay=\"0\">\n            <h3>\u1403\u14d5\u14d0\u14c2\u140a\u1555\u1450\u1403\u14d0\u14c7\u1557\u1466<\/h3>\n                    <\/div>\n            <\/div>\n<\/div>[vc_tta_accordion color=&#8221;vista-blue&#8221; active_section=&#8221;-1&#8243; collapsible_all=&#8221;true&#8221;][vc_tta_section title=&#8221;<strong>\u140a\u146f\u14d5\u1555\u1483\u2003\u2794\u2003\u1450\u146d\u14ef\u14c2\u140a\u1550\u1555\u1483 \u1403\u14d5\u14f4\u1550\u1555\u1483<\/strong>&#8221; tab_id=&#8221;tukisiniarvik&#8221;][vc_column_text css=&#8221;&#8221;]<\/p>\n<div style=\"font-family: inherit !important; border: 1px solid #61a6df; border-radius: 12px; max-width: 100%; background: #f2f3f8; box-shadow: 0 4px 10px rgba(0,0,0,0.08); overflow: hidden;\">\n<div style=\"background-color: #61a6df; color: white; padding: 20px;\">\n<p><span style=\"font-family: inherit !important; font-size: 0.85em; opacity: 0.9; font-weight: bold !important; display: block;\">\u1431\u14c7\u14f1\u155d\u1555\u1405\u1449 \u1403\u14d7\u140a\u14c2 \u14c7\u14d7\u14c0\u1483\u146f\u1455\u1585: #110<\/span><\/p>\n<h2 style=\"font-family: inherit !important; margin: 5px 0; font-size: 1.6em; color: white; font-weight: bold !important;\"><strong>\u1450\u146d\u14ef\u14c2\u140a\u1550\u1555\u1483<\/strong><\/h2>\n<p><span style=\"font-family: inherit !important; display: inline-block; font-size: 0.85em; background: rgba(255,255,255,0.25); padding: 6px 12px; border-radius: 4px; margin-top: 8px; font-weight: 500;\">\u1403\u14d5\u14d0\u14c2\u140a\u1546\u140a\u1595\u1593\u1450\u14a5\u1466 \u1433\u1550\u1450\u14c2\u1550\u1439\u14c4\u1466<\/span><\/p>\n<\/div>\n<div style=\"padding: 25px 20px;\">\n<p style=\"font-family: inherit !important; font-size: 0.95em; line-height: 1.6; color: #858689; margin-bottom: 25px;\">P.O. Box 80<br \/>\nAkulivik, QC J0M 1V0<\/p>\n<p style=\"font-family: inherit !important; font-size: 0.95em; line-height: 1.6; color: #858689; margin-bottom: 25px;\"><strong style=\"color: #858689; font-weight: bold !important;\">\u1405\u1584\u14da\u1405\u144e\u1483:<\/strong> (819) 496-2021<br \/>\n<strong style=\"color: #858689; font-weight: bold !important;\">\u14f1\u1483\u1472\u152a\u1483\u146f\u1466:<\/strong> (819) 496-2611<\/p>\n<p><a href=\"mailto:tukisiniarvik.school@kativik.qc.ca\"><strong><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-19460\" src=\"https:\/\/www.kativik.qc.ca\/wp-content\/uploads\/2025\/03\/icon-mail.png\" alt=\"Email\" width=\"73\" height=\"68\" \/><\/strong><\/a><\/p>\n<ul>\n<li><strong style=\"font-family: inherit !important; font-size: 0.9em; color: #858689; display: block; font-weight: bold !important;\">\u1403\u14d5\u14d0\u14c2\u140a\u144e\u1466\u14ef\u1529\u1466 \u140a\u1593\u152a\u1550\u1584\u1593<\/strong><span style=\"font-family: inherit !important; font-size: 1em; color: #858689;\">Jill Hudson<\/span><\/li>\n<li><strong style=\"font-family: inherit !important; font-size: 0.9em; color: #858689; display: block; font-weight: bold !important;\">\u1403\u14c7\u1590\u14aa\u152a\u1585 \u1403\u14d5\u14d0\u14c2\u140a\u144e\u1466\u14ef\u1529\u1466 \u140a\u1593\u152a\u1550\u1584\u1593\u14c4\u1466 \u1403\u1472\u152a\u1550\u144e<\/strong><span style=\"font-family: inherit !important; font-size: 1em; color: #858689;\">Nicole Duffy<\/span><\/li>\n<li><strong style=\"font-family: inherit !important; font-size: 0.9em; color: #858689; display: block; font-weight: bold !important;\">\u1472\u14aa\u1528\u14bb\u14aa\u1546\u1483<\/strong><span style=\"font-family: inherit !important; font-size: 1em; color: #858689;\">Trudy Ikey<\/span><\/li>\n<\/ul>\n<\/div>\n<\/div>\n<p>[\/vc_column_text][\/vc_tta_section][vc_tta_section title=&#8221;<strong>\u140a\u1405\u1438\u14d7\u1483\u2003\u2794\u2003\u1455\u1550\u14f4\u1472\u14ea\u14da\u1483 \u1403\u14d5\u14d0\u14c2\u140a\u1555\u1483<\/strong>&#8221; tab_id=&#8221;tarsakallak&#8221;][vc_column_text css=&#8221;&#8221;]<\/p>\n<div style=\"font-family: inherit !important; border: 1px solid #61a6df; border-radius: 12px; max-width: 100%; background: #f2f3f8; box-shadow: 0 4px 10px rgba(0,0,0,0.08); overflow: hidden;\">\n<div style=\"background-color: #61a6df; color: white; padding: 20px;\">\n<p><span style=\"font-family: inherit !important; font-size: 0.85em; opacity: 0.9; font-weight: bold !important; display: block;\">\u1431\u14c7\u14f1\u155d\u1555\u1405\u1449 \u1403\u14d7\u140a\u14c2 \u14c7\u14d7\u14c0\u1483\u146f\u1455\u1585: #040<\/span><\/p>\n<h2 style=\"font-family: inherit !important; margin: 5px 0; font-size: 1.6em; color: white; font-weight: bold !important;\"><strong>\u1455\u1550\u14f4\u1472\u14ea\u14da\u1483<\/strong><\/h2>\n<p><span style=\"font-family: inherit !important; display: inline-block; font-size: 0.85em; background: rgba(255,255,255,0.25); padding: 6px 12px; border-radius: 4px; margin-top: 8px; font-weight: 500;\">\u1403\u14d5\u14d0\u14c2\u140a\u1546\u140a\u1595\u1593\u1450\u14a5\u1466 \u1433\u1550\u1450\u14c2\u1550\u1439\u14c4\u1466<\/span><\/p>\n<\/div>\n<div style=\"padding: 25px 20px;\">\n<p style=\"font-family: inherit !important; font-size: 0.95em; line-height: 1.6; color: #858689; margin-bottom: 25px;\">P.O. Box 30<br \/>\nAupaluk, QC J0M 1X0<\/p>\n<p style=\"font-family: inherit !important; font-size: 0.95em; line-height: 1.6; color: #858689; margin-bottom: 25px;\"><strong style=\"color: #858689; font-weight: bold !important;\">\u1405\u1584\u14da\u1405\u144e\u1483:<\/strong> (819) 491-7081<br \/>\n<strong style=\"color: #858689; font-weight: bold !important;\">\u14f1\u1483\u1472\u152a\u1483\u146f\u1466:<\/strong> (819) 491-7082<\/p>\n<p><a href=\"mailto:tarsakallak.school@kativik.qc.ca\"><strong><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-19460\" src=\"https:\/\/www.kativik.qc.ca\/wp-content\/uploads\/2025\/03\/icon-mail.png\" alt=\"\" width=\"73\" height=\"68\" \/><\/strong><\/a><\/p>\n<ul>\n<li><strong style=\"font-family: inherit !important; font-size: 0.9em; color: #858689; display: block; font-weight: bold !important;\">\u1403\u14d5\u14d0\u14c2\u140a\u144e\u1466\u14ef\u1529\u1466 \u140a\u1593\u152a\u1550\u1584\u1593<\/strong><span style=\"font-family: inherit !important; font-size: 1em; color: #858689;\">Shaun McMahon<\/span><\/li>\n<li><strong style=\"font-family: inherit !important; font-size: 0.9em; color: #858689; display: block; font-weight: bold !important;\">\u1403\u14d5\u14d0\u14c2\u140a\u144e\u1466\u14ef\u1529\u1466 \u140a\u1593\u152a\u1550\u1584\u1593\u14c4\u1466 \u1403\u1472\u152a\u1550\u144e<\/strong><em><span style=\"font-family: inherit !important; font-size: 1em; color: #858689;\">Vacant<\/span><\/em><\/li>\n<li><strong style=\"font-family: inherit !important; font-size: 0.9em; color: #858689; display: block; font-weight: bold !important;\">\u1472\u14aa\u1528\u14bb\u14aa\u1546\u1483<\/strong><em><span style=\"font-family: inherit !important; font-size: 1em; color: #858689;\">Vacant<\/span><\/em><\/li>\n<\/ul>\n<\/div>\n<\/div>\n<p>[\/vc_column_text][\/vc_tta_section][vc_tta_section title=&#8221;<strong>\u1403\u14c4\u1483\u152a\u140a\u1483\u2003\u2794\u2003\u1403\u14d0\u14c7\u14d5\u1483 \u1403\u14d5\u14f4\u1550\u1555\u1483 + \u1405\u1582\u1455\u1585 \u1403\u14d5\u14f4\u1550\u1555\u1483<\/strong>&#8221; tab_id=&#8221;innalik&#8221;][vc_column_text css=&#8221;&#8221;]<\/p>\n<div style=\"font-family: inherit !important; border: 1px solid #61a6df; border-radius: 12px; max-width: 100%; background: #f2f3f8; box-shadow: 0 4px 10px rgba(0,0,0,0.08); overflow: hidden;\">\n<div style=\"background-color: #61a6df; color: white; padding: 20px;\">\n<p><span style=\"font-family: inherit !important; font-size: 0.85em; opacity: 0.9; font-weight: bold !important; display: block;\">\u1431\u14c7\u14f1\u155d\u1555\u1405\u1449 \u1403\u14d7\u140a\u14c2 \u14c7\u14d7\u14c0\u1483\u146f\u1455\u1585: #120<\/span><\/p>\n<h2 style=\"font-family: inherit !important; margin: 5px 0; font-size: 1.6em; color: white; font-weight: bold !important;\"><strong>\u1403\u14d0\u14c7\u14d5\u1483<\/strong><\/h2>\n<p><span style=\"font-family: inherit !important; display: inline-block; font-size: 0.85em; background: rgba(255,255,255,0.25); padding: 6px 12px; border-radius: 4px; margin-top: 8px; font-weight: 500;\">\u1403\u14d5\u14d0\u14c2\u140a\u1546\u140a\u1595\u1593\u1450\u14c2\u1466 \u1433\u1550\u1450\u14c2\u14d5\u14d0\u14c4\u1466 \u1431\u1593\u14f2\u152a\u1550\u1450\u14c4\u1466<\/span><\/p>\n<\/div>\n<div style=\"padding: 25px 20px;\">\n<p style=\"font-family: inherit !important; font-size: 0.95em; line-height: 1.6; color: #858689; margin-bottom: 25px;\">P.O. Box 287<br \/>\nInukjuak, QC J0M 1M0<\/p>\n<p style=\"font-family: inherit !important; font-size: 0.95em; line-height: 1.6; color: #858689; margin-bottom: 25px;\"><strong style=\"color: #858689; font-weight: bold !important;\">\u1405\u1584\u14da\u1405\u144e\u1483:<\/strong> (819) 254-8211<br \/>\n<strong style=\"color: #858689; font-weight: bold !important;\">\u14f1\u1483\u1472\u152a\u1483\u146f\u1466:<\/strong> (819) 254-8953<\/p>\n<p><a href=\"mailto:innalik.school@kativik.qc.ca\"><strong><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-19460\" src=\"https:\/\/www.kativik.qc.ca\/wp-content\/uploads\/2025\/03\/icon-mail.png\" alt=\"\" width=\"73\" height=\"68\" \/><\/strong><\/a><\/p>\n<ul>\n<li><strong style=\"font-family: inherit !important; font-size: 0.9em; color: #858689; display: block; font-weight: bold !important;\">\u1403\u14c7\u1590\u14aa\u152a\u1585 \u1403\u14d5\u14d0\u14c2\u140a\u144e\u1466\u14ef\u1529\u1466 \u140a\u1593\u152a\u1550\u1584\u1593<\/strong><span style=\"font-family: inherit !important; font-size: 1em; color: #858689;\">Francis Amprako<\/span><\/li>\n<li><strong style=\"font-family: inherit !important; font-size: 0.9em; color: #858689; display: block; font-weight: bold !important;\">\u1403\u14d5\u14d0\u14c2\u140a\u144e\u1466\u14ef\u1529\u1466 \u140a\u1593\u152a\u1550\u1584\u1593\u14c4\u1466 \u1403\u1472\u152a\u1550\u144e<\/strong><em><span style=\"font-family: inherit !important; font-size: 1em; color: #858689;\">Vacant<\/span><\/em><\/li>\n<li><strong style=\"font-family: inherit !important; font-size: 0.9em; color: #858689; display: block; font-weight: bold !important;\">\u1472\u14aa\u1528\u14bb\u14aa\u1546\u1483<\/strong><span style=\"font-family: inherit !important; font-size: 1em; color: #858689;\">Annie Samisack<\/span><\/li>\n<\/ul>\n<\/div>\n<\/div>\n<p>[\/vc_column_text][vc_column_text css=&#8221;&#8221;]<\/p>\n<div style=\"font-family: inherit !important; border: 1px solid #61a6df; border-radius: 12px; max-width: 100%; background: #f2f3f8; box-shadow: 0 4px 10px rgba(0,0,0,0.08); overflow: hidden;\">\n<div style=\"background-color: #61a6df; color: white; padding: 20px;\">\n<p><span style=\"font-family: inherit !important; font-size: 0.85em; opacity: 0.9; font-weight: bold !important; display: block;\">\u1431\u14c7\u14f1\u155d\u1555\u1405\u1449 \u1403\u14d7\u140a\u14c2 \u14c7\u14d7\u14c0\u1483\u146f\u1455\u1585: #122<\/span><\/p>\n<h2 style=\"font-family: inherit !important; margin: 5px 0; font-size: 1.6em; color: white; font-weight: bold !important;\"><strong>\u1405\u1582\u1455\u1585<\/strong><\/h2>\n<p><span style=\"font-family: inherit !important; display: inline-block; font-size: 0.85em; background: rgba(255,255,255,0.25); padding: 6px 12px; border-radius: 4px; margin-top: 8px; font-weight: 500;\">\u1433\u1550\u1450\u14c2\u1550\u14f4\u14c2\u1466 \u140a\u1455\u1405\u14ef\u1550\u14a5\u1483 \u1433\u1550\u1450\u14c2\u1550\u1439\u14c4\u1466<\/span><\/p>\n<\/div>\n<div style=\"padding: 25px 20px;\">\n<p style=\"font-family: inherit !important; font-size: 0.95em; line-height: 1.6; color: #858689; margin-bottom: 25px;\">P.O. Box 470<br \/>\nInukjuak, QC J0M 1M0<\/p>\n<p style=\"font-family: inherit !important; font-size: 0.95em; line-height: 1.6; color: #858689; margin-bottom: 25px;\"><strong style=\"color: #858689; font-weight: bold !important;\">\u1405\u1584\u14da\u1405\u144e\u1483:<\/strong> (819) 254-1444<br \/>\n<strong style=\"color: #858689; font-weight: bold !important;\">\u14f1\u1483\u1472\u152a\u1483\u146f\u1466:<\/strong> n\/a<\/p>\n<p><a href=\"mailto:uquutaq.school@kativik.qc.ca\"><strong><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-19460\" src=\"https:\/\/www.kativik.qc.ca\/wp-content\/uploads\/2025\/03\/icon-mail.png\" alt=\"\" width=\"73\" height=\"68\" \/><\/strong><\/a><\/p>\n<ul>\n<li><strong style=\"font-family: inherit !important; font-size: 0.9em; color: #858689; display: block; font-weight: bold !important;\">\u1403\u14c7\u1590\u14aa\u152a\u1585 \u1403\u14d5\u14d0\u14c2\u140a\u144e\u1466\u14ef\u1529\u1466 \u140a\u1593\u152a\u1550\u1584\u1593<\/strong><span style=\"font-family: inherit !important; font-size: 1em; color: #858689;\"><span class=\"outlook-search-highlight\" data-markjs=\"true\">Omar<\/span> <span class=\"outlook-search-highlight\" data-markjs=\"true\">Khaled Kharchaf<\/span><\/span><\/li>\n<li><strong style=\"font-family: inherit !important; font-size: 0.9em; color: #858689; display: block; font-weight: bold !important;\">\u1403\u14c7\u1590\u14aa\u152a\u1585 \u1403\u14d5\u14d0\u14c2\u140a\u144e\u1466\u14ef\u1529\u1466 \u140a\u1593\u152a\u1550\u1584\u1593\u14c4\u1466 \u1403\u1472\u152a\u1550\u144e<\/strong><span style=\"font-family: inherit !important; font-size: 1em; color: #858689;\">Claus Vogel<\/span><\/li>\n<li><strong style=\"font-family: inherit !important; font-size: 0.9em; color: #858689; display: block; font-weight: bold !important;\">\u1472\u14aa\u1528\u14bb\u14aa\u1546\u1483<\/strong><span style=\"font-family: inherit !important; font-size: 1em; color: #858689;\">Stephane Lacasse<\/span><\/li>\n<\/ul>\n<\/div>\n<\/div>\n<p>[\/vc_column_text][\/vc_tta_section][vc_tta_section title=&#8221;<strong>\u1403\u1557\u1528\u1555\u1483\u2003\u2794\u2003\u14c4\u155d\u1555\u144e \u1403\u14d5\u14d0\u14c2\u140a\u1555\u1483<\/strong>&#8221; tab_id=&#8221;nuvviti&#8221;][vc_column_text css=&#8221;&#8221;]<\/p>\n<div style=\"font-family: inherit !important; border: 1px solid #61a6df; border-radius: 12px; max-width: 100%; background: #f2f3f8; box-shadow: 0 4px 10px rgba(0,0,0,0.08); overflow: hidden;\">\n<div style=\"background-color: #61a6df; color: white; padding: 20px;\">\n<p><span style=\"font-family: inherit !important; font-size: 0.85em; opacity: 0.9; font-weight: bold !important; display: block;\">\u1431\u14c7\u14f1\u155d\u1555\u1405\u1449 \u1403\u14d7\u140a\u14c2 \u14c7\u14d7\u14c0\u1483\u146f\u1455\u1585: #090<\/span><\/p>\n<h2 style=\"font-family: inherit !important; margin: 5px 0; font-size: 1.6em; color: white; font-weight: bold !important;\"><strong>\u14c4\u155d\u1555\u144e<\/strong><\/h2>\n<p><span style=\"font-family: inherit !important; display: inline-block; font-size: 0.85em; background: rgba(255,255,255,0.25); padding: 6px 12px; border-radius: 4px; margin-top: 8px; font-weight: 500;\">\u1403\u14d5\u14d0\u14c2\u140a\u1546\u140a\u1595\u1593\u1450\u14a5\u1466 \u1433\u1550\u1450\u14c2\u1550\u1439\u14c4\u1466<\/span><\/p>\n<\/div>\n<div style=\"padding: 25px 20px;\">\n<p style=\"font-family: inherit !important; font-size: 0.95em; line-height: 1.6; color: #858689; margin-bottom: 25px;\">P.O. Box 60<br \/>\nIvujivik, QC J0M 1H0<\/p>\n<p style=\"font-family: inherit !important; font-size: 0.95em; line-height: 1.6; color: #858689; margin-bottom: 25px;\"><strong style=\"color: #858689; font-weight: bold !important;\">\u1405\u1584\u14da\u1405\u144e\u1483:<\/strong> (819) 922-9917<br \/>\n<strong style=\"color: #858689; font-weight: bold !important;\">\u14f1\u1483\u1472\u152a\u1483\u146f\u1466:<\/strong> (819) 922-3112<\/p>\n<p><a href=\"mailto:nuvviti.school@kativik.qc.ca\"><strong><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-19460\" src=\"https:\/\/www.kativik.qc.ca\/wp-content\/uploads\/2025\/03\/icon-mail.png\" alt=\"\" width=\"73\" height=\"68\" \/><\/strong><\/a><\/p>\n<ul>\n<li><strong style=\"font-family: inherit !important; font-size: 0.9em; color: #858689; display: block; font-weight: bold !important;\">\u1403\u14c7\u1590\u14aa\u152a\u1585 \u1403\u14d5\u14d0\u14c2\u140a\u144e\u1466\u14ef\u1529\u1466 \u140a\u1593\u152a\u1550\u1584\u1593<\/strong><span style=\"font-family: inherit !important; font-size: 1em; color: #858689;\">Justin Fillion-Riopel<\/span><\/li>\n<li><strong style=\"font-family: inherit !important; font-size: 0.9em; color: #858689; display: block; font-weight: bold !important;\">\u1403\u14d5\u14d0\u14c2\u140a\u144e\u1466\u14ef\u1529\u1466 \u140a\u1593\u152a\u1550\u1584\u1593\u14c4\u1466 \u1403\u1472\u152a\u1550\u144e<\/strong><span style=\"font-family: inherit !important; font-size: 1em; color: #858689;\"><i>Vacant<\/i><\/span><\/li>\n<li><strong style=\"font-family: inherit !important; font-size: 0.9em; color: #858689; display: block; font-weight: bold !important;\">\u1472\u14aa\u1528\u14bb\u14aa\u1546\u1483<\/strong><span style=\"font-family: inherit !important; font-size: 1em; color: #858689;\">Thomassie Mangiok<\/span><\/li>\n<\/ul>\n<\/div>\n<\/div>\n<p>[\/vc_column_text][\/vc_tta_section][vc_tta_section title=&#8221;<strong>\u1472\u158f\u1550\u14f1\u140a\u14d7\u1483\u152a\u140a\u1585\u2003\u2794\u2003\u1405\u14ea\u14d7\u1546\u140a\u1585 \u1403\u14d5\u14d0\u14c2\u140a\u1555\u1483<\/strong>&#8221; tab_id=&#8221;ulluriaq&#8221;][vc_column_text css=&#8221;&#8221;]<\/p>\n<div style=\"font-family: inherit !important; border: 1px solid #61a6df; border-radius: 12px; max-width: 100%; background: #f2f3f8; box-shadow: 0 4px 10px rgba(0,0,0,0.08); overflow: hidden;\">\n<div style=\"background-color: #61a6df; color: white; padding: 20px;\">\n<p><span style=\"font-family: inherit !important; font-size: 0.85em; opacity: 0.9; font-weight: bold !important; display: block;\">\u1431\u14c7\u14f1\u155d\u1555\u1405\u1449 \u1403\u14d7\u140a\u14c2 \u14c7\u14d7\u14c0\u1483\u146f\u1455\u1585: #010<\/span><\/p>\n<h2 style=\"font-family: inherit !important; margin: 5px 0; font-size: 1.6em; color: white; font-weight: bold !important;\"><strong>\u1405\u14ea\u14d7\u1546\u140a\u1585<\/strong><\/h2>\n<p><span style=\"font-family: inherit !important; display: inline-block; font-size: 0.85em; background: rgba(255,255,255,0.25); padding: 6px 12px; border-radius: 4px; margin-top: 8px; font-weight: 500;\">\u1403\u14d5\u14d0\u14c2\u140a\u1546\u140a\u1595\u1593\u1450\u14a5\u1466 \u1433\u1550\u1450\u14c2\u1550\u1439\u14c4\u1466<\/span><\/p>\n<\/div>\n<div style=\"padding: 25px 20px;\">\n<p style=\"font-family: inherit !important; font-size: 0.95em; line-height: 1.6; color: #858689; margin-bottom: 25px;\">P.O. Box 90<br \/>\nKangiqsualujjuaq, QC J0M 1N0<\/p>\n<p style=\"font-family: inherit !important; font-size: 0.95em; line-height: 1.6; color: #858689; margin-bottom: 25px;\"><strong style=\"color: #858689; font-weight: bold !important;\">\u1405\u1584\u14da\u1405\u144e\u1483:<\/strong> (819) 337-5357<br \/>\n<strong style=\"color: #858689; font-weight: bold !important;\">\u14f1\u1483\u1472\u152a\u1483\u146f\u1466:<\/strong> (819) 337-5354<\/p>\n<p><a href=\"mailto:ulluriaq.school@kativik.qc.ca\"><strong><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-19460\" src=\"https:\/\/www.kativik.qc.ca\/wp-content\/uploads\/2025\/03\/icon-mail.png\" alt=\"\" width=\"73\" height=\"68\" \/><\/strong><\/a><\/p>\n<ul>\n<li><strong style=\"font-family: inherit !important; font-size: 0.9em; color: #858689; display: block; font-weight: bold !important;\">\u1403\u14d5\u14d0\u14c2\u140a\u144e\u1466\u14ef\u1529\u1466 \u140a\u1593\u152a\u1550\u1584\u1593<\/strong><span style=\"font-family: inherit !important; font-size: 1em; color: #858689;\">Mark Brazeau<\/span><\/li>\n<li><strong style=\"font-family: inherit !important; font-size: 0.9em; color: #858689; display: block; font-weight: bold !important;\">\u1403\u14d5\u14d0\u14c2\u140a\u144e\u1466\u14ef\u1529\u1466 \u140a\u1593\u152a\u1550\u1584\u1593\u14c4\u1466 \u1403\u1472\u152a\u1550\u144e<\/strong><span style=\"font-family: inherit !important; font-size: 1em; color: #858689;\">Nancy Etok<\/span><\/li>\n<li><strong style=\"font-family: inherit !important; font-size: 0.9em; color: #858689; display: block; font-weight: bold !important;\">\u1472\u14aa\u1528\u14bb\u14aa\u1546\u1483<\/strong><span style=\"font-family: inherit !important; font-size: 1em; color: #858689;\">Nikita Etok<\/span><\/li>\n<\/ul>\n<\/div>\n<\/div>\n<p>[\/vc_column_text][\/vc_tta_section][vc_tta_section title=&#8221;<strong>\u1472\u158f\u1550\u14f1\u152a\u140a\u1585\u2003\u2794\u2003\u140a\u1550\u14f4\u14c2\u1585 \u1403\u14d5\u14d0\u14c2\u140a\u1555\u1483<\/strong>&#8221; tab_id=&#8221;arsaniq&#8221;][vc_column_text css=&#8221;&#8221;]<\/p>\n<div style=\"font-family: inherit !important; border: 1px solid #61a6df; border-radius: 12px; max-width: 100%; background: #f2f3f8; box-shadow: 0 4px 10px rgba(0,0,0,0.08); overflow: hidden;\">\n<div style=\"background-color: #61a6df; color: white; padding: 20px;\">\n<p><span style=\"font-family: inherit !important; font-size: 0.85em; opacity: 0.9; font-weight: bold !important; display: block;\">\u1431\u14c7\u14f1\u155d\u1555\u1405\u1449 \u1403\u14d7\u140a\u14c2 \u14c7\u14d7\u14c0\u1483\u146f\u1455\u1585: #070<\/span><\/p>\n<h2 style=\"font-family: inherit !important; margin: 5px 0; font-size: 1.6em; color: white; font-weight: bold !important;\"><strong>\u140a\u1550\u14f4\u14c2\u1585<\/strong><\/h2>\n<p><span style=\"font-family: inherit !important; display: inline-block; font-size: 0.85em; background: rgba(255,255,255,0.25); padding: 6px 12px; border-radius: 4px; margin-top: 8px; font-weight: 500;\">\u1403\u14d5\u14d0\u14c2\u140a\u1546\u140a\u1595\u1593\u1450\u14a5\u1466 \u1433\u1550\u1450\u14c2\u1550\u1439\u14c4\u1466<\/span><\/p>\n<\/div>\n<div style=\"padding: 25px 20px;\">\n<p style=\"font-family: inherit !important; font-size: 0.95em; line-height: 1.6; color: #858689; margin-bottom: 25px;\">P.O. Box 160<br \/>\nKangiqsujuaq, QC J0M 1K0<\/p>\n<p style=\"font-family: inherit !important; font-size: 0.95em; line-height: 1.6; color: #858689; margin-bottom: 25px;\"><strong style=\"color: #858689; font-weight: bold !important;\">\u1405\u1584\u14da\u1405\u144e\u1483:<\/strong> (819) 338-3332<br \/>\n<strong style=\"color: #858689; font-weight: bold !important;\">\u14f1\u1483\u1472\u152a\u1483\u146f\u1466:<\/strong> (819) 338-3369<\/p>\n<p><a href=\"mailto:arsaniq.school@kativik.qc.ca\"><strong><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-19460\" src=\"https:\/\/www.kativik.qc.ca\/wp-content\/uploads\/2025\/03\/icon-mail.png\" alt=\"\" width=\"73\" height=\"68\" \/><\/strong><\/a><\/p>\n<ul>\n<li><strong style=\"font-family: inherit !important; font-size: 0.9em; color: #858689; display: block; font-weight: bold !important;\">\u1403\u14d5\u14d0\u14c2\u140a\u144e\u1466\u14ef\u1529\u1466 \u140a\u1593\u152a\u1550\u1584\u1593<\/strong><span style=\"font-family: inherit !important; font-size: 1em; color: #858689;\">Miriam Brochu<\/span><\/li>\n<li><strong style=\"font-family: inherit !important; font-size: 0.9em; color: #858689; display: block; font-weight: bold !important;\">\u1403\u14d5\u14d0\u14c2\u140a\u144e\u1466\u14ef\u1529\u1466 \u140a\u1593\u152a\u1550\u1584\u1593\u14c4\u1466 \u1403\u1472\u152a\u1550\u144e<\/strong><span style=\"font-family: inherit !important; font-size: 1em; color: #858689;\">Eliane Beaudin-Demers<\/span><\/li>\n<li><strong style=\"font-family: inherit !important; font-size: 0.9em; color: #858689; display: block; font-weight: bold !important;\">\u1472\u14aa\u1528\u14bb\u14aa\u1546\u1483<\/strong><span style=\"font-family: inherit !important; font-size: 1em; color: #858689;\">Sarah Alaku<\/span><\/li>\n<\/ul>\n<\/div>\n<\/div>\n<p>[\/vc_column_text][\/vc_tta_section][vc_tta_section title=&#8221;<strong>\u1472\u158f\u1550\u14f1\u1585\u2003\u2794\u2003\u14f4\u1405\u1466\u152a\u1403\u1466 \u1403\u14d5\u14d0\u14c2\u140a\u1555\u1483<\/strong>&#8221; tab_id=&#8221;sautjuit&#8221;][vc_column_text css=&#8221;&#8221;]<\/p>\n<div style=\"font-family: inherit !important; border: 1px solid #61a6df; border-radius: 12px; max-width: 100%; background: #f2f3f8; box-shadow: 0 4px 10px rgba(0,0,0,0.08); overflow: hidden;\">\n<div style=\"background-color: #61a6df; color: white; padding: 20px;\">\n<p><span style=\"font-family: inherit !important; font-size: 0.85em; opacity: 0.9; font-weight: bold !important; display: block;\">\u1431\u14c7\u14f1\u155d\u1555\u1405\u1449 \u1403\u14d7\u140a\u14c2 \u14c7\u14d7\u14c0\u1483\u146f\u1455\u1585: #050<\/span><\/p>\n<h2 style=\"font-family: inherit !important; margin: 5px 0; font-size: 1.6em; color: white; font-weight: bold !important;\"><strong>\u14f4\u1405\u1466\u152a\u1403\u1466<\/strong><\/h2>\n<p><span style=\"font-family: inherit !important; display: inline-block; font-size: 0.85em; background: rgba(255,255,255,0.25); padding: 6px 12px; border-radius: 4px; margin-top: 8px; font-weight: 500;\">\u1403\u14d5\u14d0\u14c2\u140a\u1546\u140a\u1595\u1593\u1450\u14a5\u1466 \u1433\u1550\u1450\u14c2\u1550\u1439\u14c4\u1466<\/span><\/p>\n<\/div>\n<div style=\"padding: 25px 20px;\">\n<p style=\"font-family: inherit !important; font-size: 0.95em; line-height: 1.6; color: #858689; margin-bottom: 25px;\">P.O. Box 120<br \/>\nKangirsuk, QC J0M 1A0<\/p>\n<p style=\"font-family: inherit !important; font-size: 0.95em; line-height: 1.6; color: #858689; margin-bottom: 25px;\"><strong style=\"color: #858689; font-weight: bold !important;\">\u1405\u1584\u14da\u1405\u144e\u1483:<\/strong> (819) 935-4369<br \/>\n<strong style=\"color: #858689; font-weight: bold !important;\">\u14f1\u1483\u1472\u152a\u1483\u146f\u1466:<\/strong> (819) 935-4223<\/p>\n<p><a href=\"mailto:sautjuit.school@kativik.qc.ca\"><strong><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-19460\" src=\"https:\/\/www.kativik.qc.ca\/wp-content\/uploads\/2025\/03\/icon-mail.png\" alt=\"\" width=\"73\" height=\"68\" \/><\/strong><\/a><\/p>\n<ul>\n<li><strong style=\"font-family: inherit !important; font-size: 0.9em; color: #858689; display: block; font-weight: bold !important;\">\u1403\u14d5\u14d0\u14c2\u140a\u144e\u1466\u14ef\u1529\u1466 \u140a\u1593\u152a\u1550\u1584\u1593<\/strong><span style=\"font-family: inherit !important; font-size: 1em; color: #858689;\">Winnie Grey<\/span><\/li>\n<li><strong style=\"font-family: inherit !important; font-size: 0.9em; color: #858689; display: block; font-weight: bold !important;\">\u1403\u14d5\u14d0\u14c2\u140a\u144e\u1466\u14ef\u1529\u1466 \u140a\u1593\u152a\u1550\u1584\u1593\u14c4\u1466 \u1403\u1472\u152a\u1550\u144e<\/strong><span style=\"font-family: inherit !important; font-size: 1em; color: #858689;\">Robin de Vailly-Lafortune<\/span><\/li>\n<li><strong style=\"font-family: inherit !important; font-size: 0.9em; color: #858689; display: block; font-weight: bold !important;\">\u1472\u14aa\u1528\u14bb\u14aa\u1546\u1483<\/strong><span style=\"font-family: inherit !important; font-size: 1em; color: #858689;\">Alec Grey<\/span><\/li>\n<\/ul>\n<\/div>\n<\/div>\n<p>[\/vc_column_text][\/vc_tta_section][vc_tta_section title=&#8221;<strong>\u1470\u1466\u152a\u140a\u1585\u2003\u2794\u2003\u1431\u1455\u1472\u14ea\u14da\u1483 \u1403\u14d5\u14d0\u14c2\u140a\u1555\u1483 + \u152e\u14c2\u14bb\u14aa\u1546\u1483 \u1403\u14d5\u14d0\u14c2\u140a\u1555\u1483<\/strong>&#8221; tab_id=&#8221;jaanimmarik&#8221;][vc_column_text css=&#8221;&#8221;]<\/p>\n<div style=\"font-family: inherit !important; border: 1px solid #61a6df; border-radius: 12px; max-width: 100%; background: #f2f3f8; box-shadow: 0 4px 10px rgba(0,0,0,0.08); overflow: hidden;\">\n<div style=\"background-color: #61a6df; color: white; padding: 20px;\">\n<p><span style=\"font-family: inherit !important; font-size: 0.85em; opacity: 0.9; font-weight: bold !important; display: block;\">\u1431\u14c7\u14f1\u155d\u1555\u1405\u1449 \u1403\u14d7\u140a\u14c2 \u14c7\u14d7\u14c0\u1483\u146f\u1455\u1585: #022<\/span><\/p>\n<h2 style=\"font-family: inherit !important; margin: 5px 0; font-size: 1.6em; color: white; font-weight: bold !important;\"><strong>\u1431\u1455\u1472\u14ea\u14da\u1483<\/strong><\/h2>\n<p><span style=\"font-family: inherit !important; display: inline-block; font-size: 0.85em; background: rgba(255,255,255,0.25); padding: 6px 12px; border-radius: 4px; margin-top: 8px; font-weight: 500;\">\u1403\u14d5\u14d0\u14c2\u140a\u1546\u140a\u1595\u1593\u1450\u14a5\u1466 \u1433\u1550\u1450\u14c2\u14d5\u14bb\u14a7\u1466 \u1431\u1593\u14f1\u14c2\u1466<\/span><\/p>\n<\/div>\n<div style=\"padding: 25px 20px;\">\n<p style=\"font-family: inherit !important; font-size: 0.95em; line-height: 1.6; color: #858689; margin-bottom: 25px;\">P.O. Box 150<br \/>\nKuujjuaq, QC J0M 1C0<\/p>\n<p style=\"font-family: inherit !important; font-size: 0.95em; line-height: 1.6; color: #858689; margin-bottom: 25px;\"><strong style=\"color: #858689; font-weight: bold !important;\">\u1405\u1584\u14da\u1405\u144e\u1483:<\/strong> (819) 964-2654<br \/>\n<strong style=\"color: #858689; font-weight: bold !important;\">\u14f1\u1483\u1472\u152a\u1483\u146f\u1466:<\/strong> (819) 964-2047<\/p>\n<p><a href=\"mailto:pitakallak.school@kativik.qc.ca\"><strong><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-19460\" src=\"https:\/\/www.kativik.qc.ca\/wp-content\/uploads\/2025\/03\/icon-mail.png\" alt=\"\" width=\"73\" height=\"68\" \/><\/strong><\/a><\/p>\n<ul>\n<li><strong style=\"font-family: inherit !important; font-size: 0.9em; color: #858689; display: block; font-weight: bold !important;\">\u1403\u14d5\u14d0\u14c2\u140a\u144e\u1466\u14ef\u1529\u1466 \u140a\u1593\u152a\u1550\u1584\u1593<\/strong><span style=\"font-family: inherit !important; font-size: 1em; color: #858689;\">Gina Jean<\/span><\/li>\n<li><strong style=\"font-family: inherit !important; font-size: 0.9em; color: #858689; display: block; font-weight: bold !important;\">\u1403\u14d5\u14d0\u14c2\u140a\u144e\u1466\u14ef\u1529\u1466 \u140a\u1593\u152a\u1550\u1584\u1593\u14c4\u1466 \u1403\u1472\u152a\u1550\u144e<\/strong><span style=\"font-family: inherit !important; font-size: 1em; color: #858689;\">Cheryl Saumure<\/span><\/li>\n<li><strong style=\"font-family: inherit !important; font-size: 0.9em; color: #858689; display: block; font-weight: bold !important;\">\u1472\u14aa\u1528\u14bb\u14aa\u1546\u1483<\/strong><span style=\"font-family: inherit !important; font-size: 1em; color: #858689;\">Elisapie Saumure<\/span><\/li>\n<\/ul>\n<\/div>\n<\/div>\n<p>[\/vc_column_text][vc_column_text css=&#8221;&#8221;]<\/p>\n<div style=\"font-family: inherit !important; border: 1px solid #61a6df; border-radius: 12px; max-width: 100%; background: #f2f3f8; box-shadow: 0 4px 10px rgba(0,0,0,0.08); overflow: hidden;\">\n<div style=\"background-color: #61a6df; color: white; padding: 20px;\">\n<p><span style=\"font-family: inherit !important; font-size: 0.85em; opacity: 0.9; font-weight: bold !important; display: block;\">\u1431\u14c7\u14f1\u155d\u1555\u1405\u1449 \u1403\u14d7\u140a\u14c2 \u14c7\u14d7\u14c0\u1483\u146f\u1455\u1585: #020<\/span><\/p>\n<h2 style=\"font-family: inherit !important; margin: 5px 0; font-size: 1.6em; color: white; font-weight: bold !important;\"><strong>\u152e\u14c2\u14bb\u14aa\u1546\u1483<\/strong><\/h2>\n<p><span style=\"font-family: inherit !important; display: inline-block; font-size: 0.85em; background: rgba(255,255,255,0.25); padding: 6px 12px; border-radius: 4px; margin-top: 8px; font-weight: 500;\">\u1433\u1550\u1450\u14c2\u14d5\u14d0\u14c2\u1466 \u14ef\u1455\u14aa\u14c2\u1466 \u1433\u1550\u1450\u14c2\u1550\u1439\u14a7\u1466<\/span><\/p>\n<\/div>\n<div style=\"padding: 25px 20px;\">\n<p style=\"font-family: inherit !important; font-size: 0.95em; line-height: 1.6; color: #858689; margin-bottom: 25px;\">P.O. Box 150<br \/>\nKuujjuaq, QC J0M 1C0<\/p>\n<p style=\"font-family: inherit !important; font-size: 0.95em; line-height: 1.6; color: #858689; margin-bottom: 25px;\"><strong style=\"color: #858689; font-weight: bold !important;\">\u1405\u1584\u14da\u1405\u144e\u1483:<\/strong> (819) 964-2912<br \/>\n<strong style=\"color: #858689; font-weight: bold !important;\">\u14f1\u1483\u1472\u152a\u1483\u146f\u1466:<\/strong> (819) 964-2818<\/p>\n<p><a href=\"mailto:jaanimmarik.school@kativik.qc.ca\"><strong><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-19460\" src=\"https:\/\/www.kativik.qc.ca\/wp-content\/uploads\/2025\/03\/icon-mail.png\" alt=\"\" width=\"73\" height=\"68\" \/><\/strong><\/a><\/p>\n<ul>\n<li><strong style=\"font-family: inherit !important; font-size: 0.9em; color: #858689; display: block; font-weight: bold !important;\">\u1403\u14d5\u14d0\u14c2\u140a\u144e\u1466\u14ef\u1529\u1466 \u140a\u1593\u152a\u1550\u1584\u1593<\/strong><span style=\"font-family: inherit !important; font-size: 1em; color: #858689;\">Gary Koiter<\/span><\/li>\n<li><strong style=\"font-family: inherit !important; font-size: 0.9em; color: #858689; display: block; font-weight: bold !important;\">\u1403\u14d5\u14d0\u14c2\u140a\u144e\u1466\u14ef\u1529\u1466 \u140a\u1593\u152a\u1550\u1584\u1593\u14c4\u1466 \u1403\u1472\u152a\u1550\u144e<\/strong><span style=\"font-family: inherit !important; font-size: 1em; color: #858689;\">Nancy Cain<\/span><\/li>\n<li><strong style=\"font-family: inherit !important; font-size: 0.9em; color: #858689; display: block; font-weight: bold !important;\">\u1403\u14d5\u14d0\u14c2\u140a\u144e\u1466\u14ef\u1529\u1466 \u140a\u1593\u152a\u1550\u1584\u1593\u14c4\u1466 \u1403\u1472\u152a\u1550\u144e<\/strong><span style=\"font-family: inherit !important; font-size: 1em; color: #858689;\">Nicolas Gauthier<\/span><\/li>\n<li><strong style=\"font-family: inherit !important; font-size: 0.9em; color: #858689; display: block; font-weight: bold !important;\">\u1472\u14aa\u1528\u14bb\u14aa\u1546\u1483<\/strong><span style=\"font-family: inherit !important; font-size: 1em; color: #858689;\">Joe Snowball<\/span><\/li>\n<\/ul>\n<\/div>\n<\/div>\n<p>[\/vc_column_text][\/vc_tta_section][vc_tta_section title=&#8221;<strong>\u1470\u1466\u152a\u140a\u154c\u1431\u1483\u2003\u2794\u2003\u140a\u14ef\u14aa\u1405\u1466\u1455\u1585 \u1403\u14d5\u14f4\u1550\u1555\u1483<\/strong>&#8221; tab_id=&#8221;asimauttaq&#8221;][vc_column_text css=&#8221;&#8221;]<\/p>\n<div style=\"font-family: inherit !important; border: 1px solid #61a6df; border-radius: 12px; max-width: 100%; background: #f2f3f8; box-shadow: 0 4px 10px rgba(0,0,0,0.08); overflow: hidden;\">\n<div style=\"background-color: #61a6df; color: white; padding: 20px;\">\n<p><span style=\"font-family: inherit !important; font-size: 0.85em; opacity: 0.9; font-weight: bold !important; display: block;\">\u1431\u14c7\u14f1\u155d\u1555\u1405\u1449 \u1403\u14d7\u140a\u14c2 \u14c7\u14d7\u14c0\u1483\u146f\u1455\u1585: #140<\/span><\/p>\n<h2 style=\"font-family: inherit !important; margin: 5px 0; font-size: 1.6em; color: white; font-weight: bold !important;\"><strong>\u140a\u14ef\u14aa\u1405\u1466\u1455\u1585<\/strong><\/h2>\n<p><span style=\"font-family: inherit !important; display: inline-block; font-size: 0.85em; background: rgba(255,255,255,0.25); padding: 6px 12px; border-radius: 4px; margin-top: 8px; font-weight: 500;\">\u1403\u14d5\u14d0\u14c2\u140a\u1546\u140a\u1595\u1593\u1450\u14a5\u1466 \u1433\u1550\u1450\u14c2\u1550\u1439\u14c4\u1466<\/span><\/p>\n<\/div>\n<div style=\"padding: 25px 20px;\">\n<p style=\"font-family: inherit !important; font-size: 0.95em; line-height: 1.6; color: #858689; margin-bottom: 25px;\">P.O. Box 60<br \/>\nKuujjuaraapik, QC J0M 1G0<\/p>\n<p style=\"font-family: inherit !important; font-size: 0.95em; line-height: 1.6; color: #858689; margin-bottom: 25px;\"><strong style=\"color: #858689; font-weight: bold !important;\">\u1405\u1584\u14da\u1405\u144e\u1483:<\/strong> (819) 929-3409<br \/>\n<strong style=\"color: #858689; font-weight: bold !important;\">\u14f1\u1483\u1472\u152a\u1483\u146f\u1466:<\/strong> (819) 929-3332<\/p>\n<p><a href=\"mailto:asimauttaq.school@kativik.qc.ca\"><strong><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-19460\" src=\"https:\/\/www.kativik.qc.ca\/wp-content\/uploads\/2025\/03\/icon-mail.png\" alt=\"\" width=\"73\" height=\"68\" \/><\/strong><\/a><\/p>\n<ul>\n<li><strong style=\"font-family: inherit !important; font-size: 0.9em; color: #858689; display: block; font-weight: bold !important;\">\u1403\u14d5\u14d0\u14c2\u140a\u144e\u1466\u14ef\u1529\u1466 \u140a\u1593\u152a\u1550\u1584\u1593<\/strong><span style=\"font-family: inherit !important; font-size: 1em; color: #858689;\">Dagadan Angele Aklah<\/span><\/li>\n<li><strong style=\"font-family: inherit !important; font-size: 0.9em; color: #858689; display: block; font-weight: bold !important;\">\u1403\u14d5\u14d0\u14c2\u140a\u144e\u1466\u14ef\u1529\u1466 \u140a\u1593\u152a\u1550\u1584\u1593\u14c4\u1466 \u1403\u1472\u152a\u1550\u144e<\/strong><span style=\"font-family: inherit !important; font-size: 1em; color: #858689;\">Winnie Mickeyook<\/span><\/li>\n<li><strong style=\"font-family: inherit !important; font-size: 0.9em; color: #858689; display: block; font-weight: bold !important;\">\u1472\u14aa\u1528\u14bb\u14aa\u1546\u1483<\/strong><span style=\"font-family: inherit !important; font-size: 1em; color: #858689;\">Rhoda Cookie<\/span><\/li>\n<\/ul>\n<\/div>\n<\/div>\n<p>[\/vc_column_text][\/vc_tta_section][vc_tta_section title=&#8221;<strong>\u1433\u1555\u1550\u14c2\u1450\u1585\u2003\u2794\u2003\u1403\u1473\u1550\u1555\u1483 \u1403\u14d5\u14f4\u1550\u1555\u1483 + \u1403\u148d\u140a\u1550\u14ef\u1555\u1483 \u1403\u14d5\u14f4\u1550\u1555\u1483<\/strong>&#8221; tab_id=&#8221;iguarsivik&#8221;][vc_column_text css=&#8221;&#8221;]<\/p>\n<div style=\"font-family: inherit !important; border: 1px solid #61a6df; border-radius: 12px; max-width: 100%; background: #f2f3f8; box-shadow: 0 4px 10px rgba(0,0,0,0.08); overflow: hidden;\">\n<div style=\"background-color: #61a6df; color: white; padding: 20px;\">\n<p><span style=\"font-family: inherit !important; font-size: 0.85em; opacity: 0.9; font-weight: bold !important; display: block;\">\u1431\u14c7\u14f1\u155d\u1555\u1405\u1449 \u1403\u14d7\u140a\u14c2 \u14c7\u14d7\u14c0\u1483\u146f\u1455\u1585: #102<\/span><\/p>\n<h2 style=\"font-family: inherit !important; margin: 5px 0; font-size: 1.6em; color: white; font-weight: bold !important;\"><strong>\u1403\u1473\u1550\u1555\u1483<\/strong><\/h2>\n<p><span style=\"font-family: inherit !important; display: inline-block; font-size: 0.85em; background: rgba(255,255,255,0.25); padding: 6px 12px; border-radius: 4px; margin-top: 8px; font-weight: 500;\">\u1403\u14d5\u14d0\u14c2\u140a\u1546\u140a\u1595\u1593\u1450\u14a5\u1466 \u1433\u1550\u1450\u14c2\u14d5\u14bb\u14a7\u1466 \u1431\u1593\u14f1\u14c2\u1466<\/span><\/p>\n<\/div>\n<div style=\"padding: 25px 20px;\">\n<p style=\"font-family: inherit !important; font-size: 0.95em; line-height: 1.6; color: #858689; margin-bottom: 25px;\">P.O. Box 400<br \/>\nPuvirnituq, QC J0M 1P0<\/p>\n<p style=\"font-family: inherit !important; font-size: 0.95em; line-height: 1.6; color: #858689; margin-bottom: 25px;\"><strong style=\"color: #858689; font-weight: bold !important;\">\u1405\u1584\u14da\u1405\u144e\u1483:<\/strong> (819) 988-2344<br \/>\n<strong style=\"color: #858689; font-weight: bold !important;\">\u14f1\u1483\u1472\u152a\u1483\u146f\u1466:<\/strong> (819) 988-2223<\/p>\n<p><a href=\"mailto:ikaarvik.school@kativik.qc.ca\"><strong><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-19460\" src=\"https:\/\/www.kativik.qc.ca\/wp-content\/uploads\/2025\/03\/icon-mail.png\" alt=\"\" width=\"73\" height=\"68\" \/><\/strong><\/a><\/p>\n<ul>\n<li><strong style=\"font-family: inherit !important; font-size: 0.9em; color: #858689; display: block; font-weight: bold !important;\">\u1403\u14d5\u14d0\u14c2\u140a\u144e\u1466\u14ef\u1529\u1466 \u140a\u1593\u152a\u1550\u1584\u1593<\/strong><span style=\"font-family: inherit !important; font-size: 1em; color: #858689;\">Sarah Angiyou<\/span><\/li>\n<li><strong style=\"font-family: inherit !important; font-size: 0.9em; color: #858689; display: block; font-weight: bold !important;\">\u1403\u14c7\u1590\u14aa\u152a\u1585 \u1403\u14d5\u14d0\u14c2\u140a\u144e\u1466\u14ef\u1529\u1466 \u140a\u1593\u152a\u1550\u1584\u1593\u14c4\u1466 \u1403\u1472\u152a\u1550\u144e<\/strong><em><span style=\"color: #858689;\">Vacant<\/span><\/em><\/li>\n<li><strong style=\"font-family: inherit !important; font-size: 0.9em; color: #858689; display: block; font-weight: bold !important;\">\u1472\u14aa\u1528\u14bb\u14aa\u1546\u1483<\/strong><span style=\"font-family: inherit !important; font-size: 1em; color: #858689;\">Sarah Quara Amamatuak<\/span><\/li>\n<\/ul>\n<\/div>\n<\/div>\n<p>[\/vc_column_text][vc_column_text css=&#8221;&#8221;]<\/p>\n<div style=\"font-family: inherit !important; border: 1px solid #61a6df; border-radius: 12px; max-width: 100%; background: #f2f3f8; box-shadow: 0 4px 10px rgba(0,0,0,0.08); overflow: hidden;\">\n<div style=\"background-color: #61a6df; color: white; padding: 20px;\">\n<p><span style=\"font-family: inherit !important; font-size: 0.85em; opacity: 0.9; font-weight: bold !important; display: block;\">\u1431\u14c7\u14f1\u155d\u1555\u1405\u1449 \u1403\u14d7\u140a\u14c2 \u14c7\u14d7\u14c0\u1483\u146f\u1455\u1585: #100<\/span><\/p>\n<h2 style=\"font-family: inherit !important; margin: 5px 0; font-size: 1.6em; color: white; font-weight: bold !important;\"><strong>\u1403\u148d\u140a\u1550\u14ef\u1555\u1483<\/strong><\/h2>\n<p><span style=\"font-family: inherit !important; display: inline-block; font-size: 0.85em; background: rgba(255,255,255,0.25); padding: 6px 12px; border-radius: 4px; margin-top: 8px; font-weight: 500;\">\u1433\u1550\u1450\u14c2\u14d5\u14d0\u14c2\u1466 \u14ef\u1455\u14aa\u14c2\u1466 \u1433\u1550\u1450\u14c2\u1550\u1439\u14a7\u1466<\/span><\/p>\n<\/div>\n<div style=\"padding: 25px 20px;\">\n<p style=\"font-family: inherit !important; font-size: 0.95em; line-height: 1.6; color: #858689; margin-bottom: 25px;\">P.O. Box 500<br \/>\nPuvirnituq, QC J0M 1P0<\/p>\n<p style=\"font-family: inherit !important; font-size: 0.95em; line-height: 1.6; color: #858689; margin-bottom: 25px;\"><strong style=\"color: #858689; font-weight: bold !important;\">\u1405\u1584\u14da\u1405\u144e\u1483:<\/strong> (819) 988-2960<br \/>\n<strong style=\"color: #858689; font-weight: bold !important;\">\u14f1\u1483\u1472\u152a\u1483\u146f\u1466:<\/strong> (819) 988-2090<\/p>\n<p><a href=\"mailto:iguarsivik.school@kativik.qc.ca\"><strong><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-19460\" src=\"https:\/\/www.kativik.qc.ca\/wp-content\/uploads\/2025\/03\/icon-mail.png\" alt=\"\" width=\"73\" height=\"68\" \/><\/strong><\/a><\/p>\n<ul>\n<li><strong style=\"font-family: inherit !important; font-size: 0.9em; color: #858689; display: block; font-weight: bold !important;\">\u1403\u14d5\u14d0\u14c2\u140a\u144e\u1466\u14ef\u1529\u1466 \u140a\u1593\u152a\u1550\u1584\u1593<\/strong><span style=\"font-family: inherit !important; font-size: 1em; color: #858689;\">Aurel Vatamaniuc<\/span><\/li>\n<li><strong style=\"font-family: inherit !important; font-size: 0.9em; color: #858689; display: block; font-weight: bold !important;\">\u1403\u14d5\u14d0\u14c2\u140a\u144e\u1466\u14ef\u1529\u1466 \u140a\u1593\u152a\u1550\u1584\u1593\u14c4\u1466 \u1403\u1472\u152a\u1550\u144e<\/strong><span style=\"font-family: inherit !important; font-size: 1em; color: #858689;\">Charles Aur\u00e9lien Priso-Priso<\/span><\/li>\n<li><strong style=\"font-family: inherit !important; font-size: 0.9em; color: #858689; display: block; font-weight: bold !important;\">\u1472\u14aa\u1528\u14bb\u14aa\u1546\u1483<\/strong><span style=\"font-family: inherit !important; font-size: 1em; color: #858689;\">Akinisie Novalinga<\/span><\/li>\n<\/ul>\n<\/div>\n<\/div>\n<p>[\/vc_column_text][\/vc_tta_section][vc_tta_section title=&#8221;<strong>\u1581\u140a\u1550\u1455\u1585\u2003\u2794\u2003\u1403\u14f1\u14bb\u14aa\u14f4\u1550\u1555\u1483 \u1403\u14d5\u14d0\u14c2\u140a\u1555\u1483<\/strong>&#8221; tab_id=&#8221;isummasaqvik&#8221;][vc_column_text css=&#8221;&#8221;]<\/p>\n<div style=\"font-family: inherit !important; border: 1px solid #61a6df; border-radius: 12px; max-width: 100%; background: #f2f3f8; box-shadow: 0 4px 10px rgba(0,0,0,0.08); overflow: hidden;\">\n<div style=\"background-color: #61a6df; color: white; padding: 20px;\">\n<p><span style=\"font-family: inherit !important; font-size: 0.85em; opacity: 0.9; font-weight: bold !important; display: block;\">\u1431\u14c7\u14f1\u155d\u1555\u1405\u1449 \u1403\u14d7\u140a\u14c2 \u14c7\u14d7\u14c0\u1483\u146f\u1455\u1585: #060<\/span><\/p>\n<h2 style=\"font-family: inherit !important; margin: 5px 0; font-size: 1.6em; color: white; font-weight: bold !important;\"><strong>\u1403\u14f1\u14bb\u14aa\u14f4\u1550\u1555\u1483<\/strong><\/h2>\n<p><span style=\"font-family: inherit !important; display: inline-block; font-size: 0.85em; background: rgba(255,255,255,0.25); padding: 6px 12px; border-radius: 4px; margin-top: 8px; font-weight: 500;\">\u1403\u14d5\u14d0\u14c2\u140a\u1546\u140a\u1595\u1593\u1450\u14a5\u1466 \u1433\u1550\u1450\u14c2\u1550\u1439\u14c4\u1466<\/span><\/p>\n<\/div>\n<div style=\"padding: 25px 20px;\">\n<p style=\"font-family: inherit !important; font-size: 0.95em; line-height: 1.6; color: #858689; margin-bottom: 25px;\">P.O. Box 108<br \/>\nQuaqtaq, QC J0M 1J0<\/p>\n<p style=\"font-family: inherit !important; font-size: 0.95em; line-height: 1.6; color: #858689; margin-bottom: 25px;\"><strong style=\"color: #858689; font-weight: bold !important;\">\u1405\u1584\u14da\u1405\u144e\u1483:<\/strong> (819) 492-9955<br \/>\n<strong style=\"color: #858689; font-weight: bold !important;\">\u14f1\u1483\u1472\u152a\u1483\u146f\u1466:<\/strong> (819) 492-9971<\/p>\n<p><a href=\"mailto:isummasaqvik.school@kativik.qc.ca\"><strong><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-19460\" src=\"https:\/\/www.kativik.qc.ca\/wp-content\/uploads\/2025\/03\/icon-mail.png\" alt=\"\" width=\"73\" height=\"68\" \/><\/strong><\/a><\/p>\n<ul>\n<li><strong style=\"font-family: inherit !important; font-size: 0.9em; color: #858689; display: block; font-weight: bold !important;\">\u1403\u14d5\u14d0\u14c2\u140a\u144e\u1466\u14ef\u1529\u1466 \u140a\u1593\u152a\u1550\u1584\u1593<\/strong><span style=\"font-family: inherit !important; font-size: 1em; color: #858689;\">Mae Tukkiapik<\/span><\/li>\n<li><strong style=\"font-family: inherit !important; font-size: 0.9em; color: #858689; display: block; font-weight: bold !important;\">\u1403\u14d5\u14d0\u14c2\u140a\u144e\u1466\u14ef\u1529\u1466 \u140a\u1593\u152a\u1550\u1584\u1593\u14c4\u1466 \u1403\u1472\u152a\u1550\u144e<\/strong><span style=\"font-family: inherit !important; font-size: 1em; color: #858689;\">Cameron Jolicouer<\/span><\/li>\n<li><strong style=\"font-family: inherit !important; font-size: 0.9em; color: #858689; display: block; font-weight: bold !important;\">\u1472\u14aa\u1528\u14bb\u14aa\u1546\u1483<\/strong><span style=\"font-family: inherit !important; font-size: 1em; color: #858689;\">Tommy Annatok<\/span><\/li>\n<\/ul>\n<\/div>\n<\/div>\n<p>[\/vc_column_text][\/vc_tta_section][vc_tta_section title=&#8221;<strong>\u14f4\u14ea\u14d7\u1403\u1466\u2003\u2794\u2003\u1431\u148b\u1405\u1550\u1555\u1483 \u1403\u14d5\u14d0\u14c2\u140a\u1555\u1483 + \u1403\u146f\u14ef\u1483 \u1403\u14d5\u14d0\u14c2\u140a\u1555\u1483<\/strong>&#8221; tab_id=&#8221;ikusik&#8221;][vc_column_text css=&#8221;&#8221;]<\/p>\n<div style=\"font-family: inherit !important; border: 1px solid #61a6df; border-radius: 12px; max-width: 100%; background: #f2f3f8; box-shadow: 0 4px 10px rgba(0,0,0,0.08); overflow: hidden;\">\n<div style=\"background-color: #61a6df; color: white; padding: 20px;\">\n<p><span style=\"font-family: inherit !important; font-size: 0.85em; opacity: 0.9; font-weight: bold !important; display: block;\">\u1431\u14c7\u14f1\u155d\u1555\u1405\u1449 \u1403\u14d7\u140a\u14c2 \u14c7\u14d7\u14c0\u1483\u146f\u1455\u1585: #082<\/span><\/p>\n<h2 style=\"font-family: inherit !important; margin: 5px 0; font-size: 1.6em; color: white; font-weight: bold !important;\"><strong>\u1431\u148b\u1405\u1550\u1555\u1483<\/strong><\/h2>\n<p><span style=\"font-family: inherit !important; display: inline-block; font-size: 0.85em; background: rgba(255,255,255,0.25); padding: 6px 12px; border-radius: 4px; margin-top: 8px; font-weight: 500;\">\u1403\u14d5\u14d0\u14c2\u140a\u1546\u140a\u1595\u1593\u1450\u14c2\u1466 \u1433\u1550\u1450\u14c2\u14d5\u14bb\u14a7\u1466 \u1431\u1593\u14f1\u14c2\u1466<\/span><\/p>\n<\/div>\n<div style=\"padding: 25px 20px;\">\n<p style=\"font-family: inherit !important; font-size: 0.95em; line-height: 1.6; color: #858689; margin-bottom: 25px;\">P.O. Box 210<br \/>\nSalluit, QC J0M 1S0<\/p>\n<p style=\"font-family: inherit !important; font-size: 0.95em; line-height: 1.6; color: #858689; margin-bottom: 25px;\"><strong style=\"color: #858689; font-weight: bold !important;\">\u1405\u1584\u14da\u1405\u144e\u1483:<\/strong> (819) 255-8931<br \/>\n<strong style=\"color: #858689; font-weight: bold !important;\">\u14f1\u1483\u1472\u152a\u1483\u146f\u1466:<\/strong> (819) 255-8909<\/p>\n<p><a href=\"mailto:pigiurvik.school@kativik.qc.ca\"><strong><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-19460\" src=\"https:\/\/www.kativik.qc.ca\/wp-content\/uploads\/2025\/03\/icon-mail.png\" alt=\"\" width=\"73\" height=\"68\" \/><\/strong><\/a><\/p>\n<ul>\n<li><strong style=\"font-family: inherit !important; font-size: 0.9em; color: #858689; display: block; font-weight: bold !important;\">\u1403\u14d5\u14d0\u14c2\u140a\u144e\u1466\u14ef\u1529\u1466 \u140a\u1593\u152a\u1550\u1584\u1593<\/strong><span style=\"font-family: inherit !important; font-size: 1em; color: #858689;\">Quppia Kaitak<\/span><\/li>\n<li><strong style=\"font-family: inherit !important; font-size: 0.9em; color: #858689; display: block; font-weight: bold !important;\">\u1403\u14d5\u14d0\u14c2\u140a\u144e\u1466\u14ef\u1529\u1466 \u140a\u1593\u152a\u1550\u1584\u1593\u14c4\u1466 \u1403\u1472\u152a\u1550\u144e<\/strong><span style=\"font-family: inherit !important; font-size: 1em; color: #858689;\">Armelle Kodjo D&#8217;Amour <\/span><\/li>\n<li><strong style=\"font-family: inherit !important; font-size: 0.9em; color: #858689; display: block; font-weight: bold !important;\">\u1472\u14aa\u1528\u14bb\u14aa\u1546\u1483<\/strong><span style=\"font-family: inherit !important; font-size: 1em; color: #858689;\">Julie Ikey<\/span><\/li>\n<\/ul>\n<\/div>\n<\/div>\n<p>[\/vc_column_text][vc_column_text css=&#8221;&#8221;]<\/p>\n<div style=\"font-family: inherit !important; border: 1px solid #61a6df; border-radius: 12px; max-width: 100%; background: #f2f3f8; box-shadow: 0 4px 10px rgba(0,0,0,0.08); overflow: hidden;\">\n<div style=\"background-color: #61a6df; color: white; padding: 20px;\">\n<p><span style=\"font-family: inherit !important; font-size: 0.85em; opacity: 0.9; font-weight: bold !important; display: block;\">\u1431\u14c7\u14f1\u155d\u1555\u1405\u1449 \u1403\u14d7\u140a\u14c2 \u14c7\u14d7\u14c0\u1483\u146f\u1455\u1585: #080<\/span><\/p>\n<h2 style=\"font-family: inherit !important; margin: 5px 0; font-size: 1.6em; color: white; font-weight: bold !important;\"><strong>\u1403\u146f\u14ef\u1483<\/strong><\/h2>\n<p><span style=\"font-family: inherit !important; display: inline-block; font-size: 0.85em; background: rgba(255,255,255,0.25); padding: 6px 12px; border-radius: 4px; margin-top: 8px; font-weight: 500;\">\u1433\u1550\u1450\u14c2\u14d5\u14d0\u14c2\u1466 \u14ef\u1455\u14aa\u14c2\u1466 \u1433\u1550\u1450\u14c2\u1550\u1439\u14a7\u1466<\/span><\/p>\n<\/div>\n<div style=\"padding: 25px 20px;\">\n<p style=\"font-family: inherit !important; font-size: 0.95em; line-height: 1.6; color: #858689; margin-bottom: 25px;\">P.O. Box 210<br \/>\nSalluit, QC J0M 1S0<\/p>\n<p style=\"font-family: inherit !important; font-size: 0.95em; line-height: 1.6; color: #858689; margin-bottom: 25px;\"><strong style=\"color: #858689; font-weight: bold !important;\">\u1405\u1584\u14da\u1405\u144e\u1483:<\/strong> (819) 255-9914<br \/>\n<strong style=\"color: #858689; font-weight: bold !important;\">\u14f1\u1483\u1472\u152a\u1483\u146f\u1466:<\/strong> (819) 255-8117<\/p>\n<p><a href=\"mailto:ikusik.school@kativik.qc.ca\"><strong><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-19460\" src=\"https:\/\/www.kativik.qc.ca\/wp-content\/uploads\/2025\/03\/icon-mail.png\" alt=\"\" width=\"73\" height=\"68\" \/><\/strong><\/a><\/p>\n<ul>\n<li><strong style=\"font-family: inherit !important; font-size: 0.9em; color: #858689; display: block; font-weight: bold !important;\">\u1403\u14d5\u14d0\u14c2\u140a\u144e\u1466\u14ef\u1529\u1466 \u140a\u1593\u152a\u1550\u1584\u1593<\/strong><span style=\"font-family: inherit !important; font-size: 1em; color: #858689;\">Emalla Amaamatuak<\/span><\/li>\n<li><strong style=\"font-family: inherit !important; font-size: 0.9em; color: #858689; display: block; font-weight: bold !important;\">\u1403\u14d5\u14d0\u14c2\u140a\u144e\u1466\u14ef\u1529\u1466 \u140a\u1593\u152a\u1550\u1584\u1593\u14c4\u1466 \u1403\u1472\u152a\u1550\u144e<\/strong><em><span style=\"color: #858689;\">Vacant<\/span><\/em><\/li>\n<li><strong style=\"font-family: inherit !important; font-size: 0.9em; color: #858689; display: block; font-weight: bold !important;\">\u1472\u14aa\u1528\u14bb\u14aa\u1546\u1483<\/strong><span style=\"font-family: inherit !important; font-size: 1em; color: #858689;\">Charlie Tarkirk<\/span><\/li>\n<\/ul>\n<\/div>\n<\/div>\n<p>[\/vc_column_text][\/vc_tta_section][vc_tta_section title=&#8221;<strong>\u1455\u14ef\u1405\u152d\u1585\u2003\u2794\u2003\u140a\u152d\u148d\u1455\u1585 \u1403\u14d5\u14d0\u14c2\u140a\u1555\u1483<\/strong>&#8221; tab_id=&#8221;ajagutak&#8221;][vc_column_text css=&#8221;&#8221;]<\/p>\n<div style=\"font-family: inherit !important; border: 1px solid #61a6df; border-radius: 12px; max-width: 100%; background: #f2f3f8; box-shadow: 0 4px 10px rgba(0,0,0,0.08); overflow: hidden;\">\n<div style=\"background-color: #61a6df; color: white; padding: 20px;\">\n<p><span style=\"font-family: inherit !important; font-size: 0.85em; opacity: 0.9; font-weight: bold !important; display: block;\">\u1431\u14c7\u14f1\u155d\u1555\u1405\u1449 \u1403\u14d7\u140a\u14c2 \u14c7\u14d7\u14c0\u1483\u146f\u1455\u1585: #030<\/span><\/p>\n<h2 style=\"font-family: inherit !important; margin: 5px 0; font-size: 1.6em; color: white; font-weight: bold !important;\"><strong>\u140a\u152d\u148d\u1455\u1585<\/strong><\/h2>\n<p><span style=\"font-family: inherit !important; display: inline-block; font-size: 0.85em; background: rgba(255,255,255,0.25); padding: 6px 12px; border-radius: 4px; margin-top: 8px; font-weight: 500;\">\u1403\u14d5\u14d0\u14c2\u140a\u1546\u140a\u1595\u1593\u1450\u14a5\u1466 \u1433\u1550\u1450\u14c2\u1550\u1439\u14c4\u1466<\/span><\/p>\n<\/div>\n<div style=\"padding: 25px 20px;\">\n<p style=\"font-family: inherit !important; font-size: 0.95em; line-height: 1.6; color: #858689; margin-bottom: 25px;\">P.O. Box 27<br \/>\nTasiujaq, QC J0M 1T0<\/p>\n<p style=\"font-family: inherit !important; font-size: 0.95em; line-height: 1.6; color: #858689; margin-bottom: 25px;\"><strong style=\"color: #858689; font-weight: bold !important;\">\u1405\u1584\u14da\u1405\u144e\u1483:<\/strong> (819) 633-5152<br \/>\n<strong style=\"color: #858689; font-weight: bold !important;\">\u14f1\u1483\u1472\u152a\u1483\u146f\u1466:<\/strong> (819) 633-5020<\/p>\n<p><a href=\"mailto:ajagutak.school@kativik.qc.ca\"><strong><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-19460\" src=\"https:\/\/www.kativik.qc.ca\/wp-content\/uploads\/2025\/03\/icon-mail.png\" alt=\"\" width=\"73\" height=\"68\" \/><\/strong><\/a><\/p>\n<ul>\n<li><strong style=\"font-family: inherit !important; font-size: 0.9em; color: #858689; display: block; font-weight: bold !important;\">\u1403\u14d5\u14d0\u14c2\u140a\u144e\u1466\u14ef\u1529\u1466 \u140a\u1593\u152a\u1550\u1584\u1593<\/strong><span style=\"font-family: inherit !important; font-size: 1em; color: #858689;\">Frances Agro<\/span><\/li>\n<li><strong style=\"font-family: inherit !important; font-size: 0.9em; color: #858689; display: block; font-weight: bold !important;\">\u1403\u14d5\u14d0\u14c2\u140a\u144e\u1466\u14ef\u1529\u1466 \u140a\u1593\u152a\u1550\u1584\u1593\u14c4\u1466 \u1403\u1472\u152a\u1550\u144e<\/strong><em><span style=\"font-family: inherit !important; font-size: 1em; color: #858689;\">Vacant<\/span><\/em><\/li>\n<li><strong style=\"font-family: inherit !important; font-size: 0.9em; color: #858689; display: block; font-weight: bold !important;\">\u1472\u14aa\u1528\u14bb\u14aa\u1546\u1483<\/strong><span style=\"font-family: inherit !important; font-size: 1em; color: #858689;\">Victoria Alacie Emudluk-May<\/span><\/li>\n<\/ul>\n<\/div>\n<\/div>\n<p>[\/vc_column_text][\/vc_tta_section][vc_tta_section title=&#8221;<strong>\u1405\u14a5\u1405\u152d\u1585\u2003\u2794\u2003\u146d\u14d8\u1455\u1585 \u1403\u14d5\u14f4\u1550\u1555\u1483<\/strong>&#8221; tab_id=&#8221;kiluutaq&#8221;][vc_column_text css=&#8221;&#8221;]<\/p>\n<div style=\"font-family: inherit !important; border: 1px solid #61a6df; border-radius: 12px; max-width: 100%; background: #f2f3f8; box-shadow: 0 4px 10px rgba(0,0,0,0.08); overflow: hidden;\">\n<div style=\"background-color: #61a6df; color: white; padding: 20px;\">\n<p><span style=\"font-family: inherit !important; font-size: 0.85em; opacity: 0.9; font-weight: bold !important; display: block;\">\u1431\u14c7\u14f1\u155d\u1555\u1405\u1449 \u1403\u14d7\u140a\u14c2 \u14c7\u14d7\u14c0\u1483\u146f\u1455\u1585: #130<\/span><\/p>\n<h2 style=\"font-family: inherit !important; margin: 5px 0; font-size: 1.6em; color: white; font-weight: bold !important;\"><strong>\u146d\u14d8\u1455\u1585<\/strong><\/h2>\n<p><span style=\"font-family: inherit !important; display: inline-block; font-size: 0.85em; background: rgba(255,255,255,0.25); padding: 6px 12px; border-radius: 4px; margin-top: 8px; font-weight: 500;\">\u1403\u14d5\u14d0\u14c2\u140a\u1546\u140a\u1595\u1593\u1450\u14a5\u1466 \u1433\u1550\u1450\u14c2\u1550\u1439\u14c4\u1466<\/span><\/p>\n<\/div>\n<div style=\"padding: 25px 20px;\">\n<p style=\"font-family: inherit !important; font-size: 0.95em; line-height: 1.6; color: #858689; margin-bottom: 25px;\">P.O. Box 98<br \/>\nUmiujaq, QC J0M 1Y0<\/p>\n<p style=\"font-family: inherit !important; font-size: 0.95em; line-height: 1.6; color: #858689; margin-bottom: 25px;\"><strong style=\"color: #858689; font-weight: bold !important;\">\u1405\u1584\u14da\u1405\u144e\u1483:<\/strong> (819) 331-7061<br \/>\n<strong style=\"color: #858689; font-weight: bold !important;\">\u14f1\u1483\u1472\u152a\u1483\u146f\u1466:<\/strong> (819) 331-7025<\/p>\n<p><a href=\"mailto:kiluutaq.school@kativik.qc.ca\"><strong><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-19460\" src=\"https:\/\/www.kativik.qc.ca\/wp-content\/uploads\/2025\/03\/icon-mail.png\" alt=\"\" width=\"73\" height=\"68\" \/><\/strong><\/a><\/p>\n<ul>\n<li><strong style=\"font-family: inherit !important; font-size: 0.9em; color: #858689; display: block; font-weight: bold !important;\">\u1403\u14d5\u14d0\u14c2\u140a\u144e\u1466\u14ef\u1529\u1466 \u140a\u1593\u152a\u1550\u1584\u1593<\/strong><span style=\"font-family: inherit !important; font-size: 1em; color: #858689;\">Matthew Bryan<\/span><\/li>\n<li><strong style=\"font-family: inherit !important; font-size: 0.9em; color: #858689; display: block; font-weight: bold !important;\">\u1403\u14d5\u14d0\u14c2\u140a\u144e\u1466\u14ef\u1529\u1466 \u140a\u1593\u152a\u1550\u1584\u1593\u14c4\u1466 \u1403\u1472\u152a\u1550\u144e<\/strong><em><span style=\"font-family: inherit !important; font-size: 1em; color: #858689;\">Vacant<\/span><\/em><\/li>\n<li><strong style=\"font-family: inherit !important; font-size: 0.9em; color: #858689; display: block; font-weight: bold !important;\">\u1472\u14aa\u1528\u14bb\u14aa\u1546\u1483<\/strong><span style=\"font-family: inherit !important; font-size: 1em; color: #858689;\">Markusie Aragutak<\/span><\/li>\n<\/ul>\n<\/div>\n<\/div>\n<p>[\/vc_column_text][\/vc_tta_section][\/vc_tta_accordion][vc_empty_space height=&#8221;50px&#8221;][\/vc_column][\/vc_row][vc_row][vc_column]<a class=\"henri-anchor idcentres\" id=\"idcentres\" name=\"idcentres\"><\/a><div class=\"module-title-3 \">\n    <div class=\"title-type-3-box\">\n        <div class=\"title-sub-box\"  data-aos=\"fade\" data-aos-delay=\"0\">\n            <h3>\u1403\u14c4\u14bb\u14aa\u1546\u14c4\u1466 \u1403\u14d5\u14d0\u14c2\u140a\u1555\u1557\u1466<\/h3>\n                    <\/div>\n            <\/div>\n<\/div>[vc_tta_accordion color=&#8221;green&#8221; active_section=&#8221;-1&#8243; collapsible_all=&#8221;true&#8221;][vc_tta_section title=&#8221;<strong>\u1433\u1555\u1550\u14c2\u1450\u1585\u2003\u2794\u2003\u1403\u14c4\u14bb\u14aa\u1547\u1466 \u1403\u14d5\u14d0\u14c2\u140a\u1555\u1593<\/strong>&#8221; tab_id=&#8221;puvcenter&#8221;][vc_column_text css=&#8221;&#8221;]P.O. Box 299<br \/>\nPuvirnituq, QC<br \/>\nJ0M 1P0<\/p>\n<p>\u1405\u1584\u14da\u1405\u144e\u1483: (819) 988-2269<br \/>\n\u14f1\u1472\u1466\u1450\u1470\u1548\u144e\u1483: (819) 988-2204<\/p>\n<p>Administration :<\/p>\n<ul>\n<li><strong>\u1472\u14aa\u1528\u14bb\u14aa\u1546\u1483<br \/>\n<\/strong>Malaya Tukalak<\/li>\n<\/ul>\n<p>[\/vc_column_text][\/vc_tta_section][vc_tta_section title=&#8221;<strong>\u1470\u1483\u152a\u140a\u1585\u2003\u2794\u2003\u1472\u152a\u14ef\u1555\u1483<\/strong>&#8221; tab_id=&#8221;kajusivik&#8221;][vc_column_text css=&#8221;&#8221;]P.O. Box 309,<br \/>\nKuujjuaq, Qc<br \/>\nJ0M 1C0<\/p>\n<p>\u1405\u1584\u14da\u1405\u144e\u1483: (819) 964-2750<br \/>\n\u14f1\u1472\u1466\u1450\u1470\u1548\u144e\u1483: (819) 964-2745<\/p>\n<p>Administration :<\/p>\n<ul>\n<li><strong>\u1472\u14aa\u1528\u14bb\u14aa\u1546\u1483<br \/>\n<\/strong>Alice Berthe<\/li>\n<li><strong>\u14ef\u14c2\u1466\u1455\u1555\u14bb\u1483 \u140a\u1405\u14da\u1466\u14ef\u1528<\/strong><\/li>\n<li>Susan Nulukie<\/li>\n<\/ul>\n<p>[\/vc_column_text][\/vc_tta_section][vc_tta_section title=&#8221;<strong>\u1472\u158f\u1550\u14f1\u152a\u140a\u1585\u2003\u2794\u2003\u14c7\u14ef\u155d\u1555\u1483<\/strong>&#8221; tab_id=&#8221;nasivvik&#8221;][vc_column_text css=&#8221;&#8221;]P.O. Box 142<br \/>\nKangiqsujuaq, QC<br \/>\nJ0M 1K0<\/p>\n<p>\u1405\u1584\u14da\u1405\u144e\u1483: (819) 338-3346<br \/>\n\u14f1\u1472\u1466\u1450\u1470\u1548\u144e\u1483: (819) 338-3345<\/p>\n<p>Administration :<\/p>\n<ul>\n<li><strong>\u1403\u14c7\u1590\u14aa\u152a\u1585 \u1472\u14aa\u1528\u14bb\u14aa\u1546\u1483<br \/>\n<\/strong>Mark Yeates<\/li>\n<\/ul>\n<p>[\/vc_column_text][\/vc_tta_section][vc_tta_section title=&#8221;<strong>\u1403\u14c4\u1483\u152a\u140a\u1483\u2003\u2794\u2003\u14c4\u14c7\u1555\u14bb\u14a5 \u1431\u148b\u1405\u1550\u14f4\u1555\u1483<\/strong>&#8221; tab_id=&#8221;nunavimmi&#8221;][vc_column_text css=&#8221;&#8221;]P.O. Box 326<br \/>\nInukjuak, QC<br \/>\nJ0M 1M0<\/p>\n<p>\u1405\u1584\u14da\u1405\u144e\u1483: (819) 254-8686<br \/>\n\u14f1\u1472\u1466\u1450\u1470\u1548\u144e\u1483: (819) 254-8595<\/p>\n<p>Administration :<\/p>\n<ul>\n<li><strong>\u14ef\u14c2\u1466\u1455\u1555\u14bb\u14a5\u1483 \u140a\u1405\u14da\u1466\u14ef\u1528<br \/>\n<\/strong>Mary Elijassialuk<\/li>\n<li><strong>\u1450\u146d\u14a7\u140a\u1466\u144e\u14ef\u1528<br \/>\n<\/strong>Atsu Alogbleto<\/li>\n<\/ul>\n<p>[\/vc_column_text][\/vc_tta_section][vc_tta_section title=&#8221;<strong>\u14f4\u14ea\u14d7\u1403\u1466\u2003\u2794\u2003\u1583\u1405\u14d0\u14c7\u1585<\/strong>&#8221; tab_id=&#8221;qaunnaq&#8221;][vc_column_text css=&#8221;&#8221;]P.O. Box 69<br \/>\nSalluit, QC<br \/>\nJ0M 1S0<\/p>\n<p>\u1405\u1584\u14da\u1405\u144e\u1483: (819) 255-8365<br \/>\n\u14f1\u1472\u1466\u1450\u1470\u1548\u144e\u1483: (819) 255-8804<\/p>\n<p>Administration :<\/p>\n<ul>\n<li><strong>\u1472\u14aa\u1528\u14bb\u14aa\u1546\u1483<br \/>\n<\/strong>Darrell Atagotaaluk<\/li>\n<\/ul>\n<p>[\/vc_column_text][\/vc_tta_section][vc_tta_section title=&#8221;<strong>\u1470\u1483\u152a\u140a\u154c\u1431\u1483\u2003\u2794\u2003\u14f4\u146d\u1555\u155d\u1555\u1483<\/strong>&#8221; tab_id=&#8221;sakivivik&#8221;][vc_column_text css=&#8221;&#8221;]P.O. Box 30<br \/>\nKuujjuaraapik, QC<br \/>\nJ0M 1G0<\/p>\n<p>\u1405\u1584\u14da\u1405\u144e\u1483: (819) 929-3284<br \/>\n\u14f1\u1472\u1466\u1450\u1470\u1548\u144e\u1483: (819) 929-3522<\/p>\n<p>Administration :<\/p>\n<ul>\n<li><strong>Contact person<br \/>\n<\/strong>Madeleine Kemp<\/li>\n<\/ul>\n<p>[\/vc_column_text][\/vc_tta_section][\/vc_tta_accordion][vc_empty_space height=&#8221;50px&#8221;][\/vc_column][\/vc_row][vc_row][vc_column]<a class=\"henri-anchor idmedias\" id=\"idmedias\" name=\"idmedias\"><\/a><div class=\"module-title-3 \">\n    <div class=\"title-type-3-box\">\n        <div class=\"title-sub-box\"  data-aos=\"fade\" data-aos-delay=\"0\">\n            <h3>\u1431\u1559\u14ea\u14d5\u140a\u152a\u14d5\u1546\u14c2\u1550\u14a5\u1483 \u1431\u14c7\u14f1\u1466\u144f\u1466<\/h3>\n                    <\/div>\n            <\/div>\n<\/div>[vc_tta_accordion color=&#8221;vista-blue&#8221; active_section=&#8221;-1&#8243; collapsible_all=&#8221;true&#8221;][vc_tta_section title=&#8221;\u1450\u14f4\u154b\u1466\u14f4\u14d5\u1546\u14c2\u1550\u14c4\u1466&#8221; tab_id=&#8221;1626180462649-02c2bf61-60c216309514777261630952002301163095214074916309522267111635774679187&#8243;][vc_column_text css=&#8221;&#8221;]<a href=\"mailto:publicrelations@kativik.qc.ca\"><strong><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-19460\" src=\"https:\/\/www.kativik.qc.ca\/wp-content\/uploads\/2025\/03\/icon-mail.png\" alt=\"\" width=\"73\" height=\"68\" \/><\/strong><\/a><\/p>\n<p>\u1405\u1584\u14da\u1405\u144e\u1483: (514) 797-8220[\/vc_column_text][\/vc_tta_section][vc_tta_section title=&#8221;\u1450\u146d\u14ef\u148b\u140a\u1548\u14d0\u14c7\u1550\u14c2\u1585 \u1450\u14f4\u154b\u1466\u14f4\u14c2\u1483&#8221; tab_id=&#8221;1774531871432-8a311daa-61b5&#8243;][vc_column_text css=&#8221;&#8221;]\u1450\u146d\u14ef\u148b\u140a\u1548\u14d0\u14c7\u1550\u14c2\u1550\u14a7\u1466 \u1472\u14aa\u1528:<\/p>\n<p><a href=\"mailto:philemon.boileau@kativik.qc.ca\"><strong><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-19460\" src=\"https:\/\/www.kativik.qc.ca\/wp-content\/uploads\/2025\/03\/icon-mail.png\" alt=\"\" width=\"73\" height=\"68\" \/><\/strong><\/a><\/p>\n<p><strong>\u1450\u14a1\u14d5\u140a \u140a\u14ea\u14da\u1466\u144e\u14bb\u14aa\u1546\u1405\u1449<\/strong><br \/>\nM<sup>e<\/sup> Phil\u00e9mon Boileau[\/vc_column_text][\/vc_tta_section][\/vc_tta_accordion][vc_empty_space height=&#8221;50px&#8221;][\/vc_column][\/vc_row]<\/p>\n<\/div>","protected":false},"excerpt":{"rendered":"<p>[vc_row][vc_column][vc_empty_space][\/vc_column][\/vc_row][vc_row][vc_column][\/vc_column][\/vc_row][vc_row][vc_column][\/vc_column][\/vc_row][vc_row equal_height=&#8221;yes&#8221; content_placement=&#8221;bottom&#8221;][vc_column][vc_empty_space height=&#8221;40px&#8221;][\/vc_column][\/vc_row][vc_row][vc_column][vc_tta_accordion color=&#8221;vista-blue&#8221; active_section=&#8221;-1&#8243; collapsible_all=&#8221;true&#8221;][vc_tta_section title=&#8221;\u1403\u14d5\u14d0\u14c2\u140a\u14c2\u14d5\u1546\u14c2\u1405\u1449 \u140a\u14ea\u14da\u1555\u14bb\u14aa\u1546\u1593&#8221; tab_id=&#8221;bureau-mtl1630951477571&#8243;][vc_column_text]9800, boul. Cavendish, Suite 510 Saint-Laurent (Qu\u00e9bec) H4M 2V9 \u1405\u1584\u14da\u1405\u144e\u1483:\u00a0514 482-8220 \u14f1\u1472\u1466\u1450\u1470\u1548\u144e\u1483: 514 482-8496 \u140a\u146d\u1583\u158f\u1450\u1585: 1 800 361-2244[\/vc_column_text][\/vc_tta_section][vc_tta_section title=&#8221;\u1470\u1466\u152a\u140a\u14a5 \u140a\u14ea\u14da\u1555\u1483&#8221; tab_id=&#8221;bureaux-kuujjuaq1630951477571&#8243;][vc_column_text]P.O. Box 150 Kuujjuaq, QC J0M 1C0 \u1405\u1584\u14da\u1405\u144e\u1483: 819 964-1136 \u14f1\u1472\u1466\u1450\u1470\u1548\u144e\u1483: 819 964-1141 \u140a\u146d\u1583\u158f\u1450\u1585: 1 877 964-1136[\/vc_column_text][\/vc_tta_section][vc_tta_section title=&#8221;\u1431\u1581\u144e\u1583\u1405\u144e&#8221; tab_id=&#8221;1625771615289-b0098f34-634d1630951477571&#8243;][vc_column_text css=&#8221;&#8221;]9641 C\u00f4te-de-Liesse Dorval, QC H9P 1A3 \u1405\u1584\u14da\u1405\u144e\u1483: [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_acf_changed":false,"footnotes":""},"class_list":["post-621","page","type-page","status-publish","hentry"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.8 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>\u1583\u1405\u1528\u148b\u140a\u1546\u1466 - Kativik<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.kativik.qc.ca\/in\/contact\/\" \/>\n<meta property=\"og:locale\" content=\"iu_CA\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"\u1583\u1405\u1528\u148b\u140a\u1546\u1466 - Kativik\" \/>\n<meta property=\"og:description\" content=\"[vc_row][vc_column][vc_empty_space][\/vc_column][\/vc_row][vc_row][vc_column][\/vc_column][\/vc_row][vc_row][vc_column][\/vc_column][\/vc_row][vc_row equal_height=&#8221;yes&#8221; content_placement=&#8221;bottom&#8221;][vc_column][vc_empty_space height=&#8221;40px&#8221;][\/vc_column][\/vc_row][vc_row][vc_column][vc_tta_accordion color=&#8221;vista-blue&#8221; active_section=&#8221;-1&#8243; collapsible_all=&#8221;true&#8221;][vc_tta_section title=&#8221;\u1403\u14d5\u14d0\u14c2\u140a\u14c2\u14d5\u1546\u14c2\u1405\u1449 \u140a\u14ea\u14da\u1555\u14bb\u14aa\u1546\u1593&#8221; tab_id=&#8221;bureau-mtl1630951477571&#8243;][vc_column_text]9800, boul. Cavendish, Suite 510 Saint-Laurent (Qu\u00e9bec) H4M 2V9 \u1405\u1584\u14da\u1405\u144e\u1483:\u00a0514 482-8220 \u14f1\u1472\u1466\u1450\u1470\u1548\u144e\u1483: 514 482-8496 \u140a\u146d\u1583\u158f\u1450\u1585: 1 800 361-2244[\/vc_column_text][\/vc_tta_section][vc_tta_section title=&#8221;\u1470\u1466\u152a\u140a\u14a5 \u140a\u14ea\u14da\u1555\u1483&#8221; tab_id=&#8221;bureaux-kuujjuaq1630951477571&#8243;][vc_column_text]P.O. Box 150 Kuujjuaq, QC J0M 1C0 \u1405\u1584\u14da\u1405\u144e\u1483: 819 964-1136 \u14f1\u1472\u1466\u1450\u1470\u1548\u144e\u1483: 819 964-1141 \u140a\u146d\u1583\u158f\u1450\u1585: 1 877 964-1136[\/vc_column_text][\/vc_tta_section][vc_tta_section title=&#8221;\u1431\u1581\u144e\u1583\u1405\u144e&#8221; tab_id=&#8221;1625771615289-b0098f34-634d1630951477571&#8243;][vc_column_text css=&#8221;&#8221;]9641 C\u00f4te-de-Liesse Dorval, QC H9P 1A3 \u1405\u1584\u14da\u1405\u144e\u1483: [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.kativik.qc.ca\/in\/contact\/\" \/>\n<meta property=\"og:site_name\" content=\"Kativik\" \/>\n<meta property=\"article:modified_time\" content=\"2026-08-03T15:23:30+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.kativik.qc.ca\/wp-content\/uploads\/2025\/03\/icon-mail.png\" \/>\n\t<meta property=\"og:image:width\" content=\"73\" \/>\n\t<meta property=\"og:image:height\" content=\"68\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"11 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.kativik.qc.ca\\\/in\\\/contact\\\/\",\"url\":\"https:\\\/\\\/www.kativik.qc.ca\\\/in\\\/contact\\\/\",\"name\":\"\u1583\u1405\u1528\u148b\u140a\u1546\u1466 - Kativik\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.kativik.qc.ca\\\/in\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.kativik.qc.ca\\\/in\\\/contact\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.kativik.qc.ca\\\/in\\\/contact\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.kativik.qc.ca\\\/wp-content\\\/uploads\\\/2025\\\/03\\\/icon-mail.png\",\"datePublished\":\"2021-07-19T17:36:22+00:00\",\"dateModified\":\"2026-08-03T15:23:30+00:00\",\"inLanguage\":\"iu-CA\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.kativik.qc.ca\\\/in\\\/contact\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"iu-CA\",\"@id\":\"https:\\\/\\\/www.kativik.qc.ca\\\/in\\\/contact\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.kativik.qc.ca\\\/wp-content\\\/uploads\\\/2025\\\/03\\\/icon-mail.png\",\"contentUrl\":\"https:\\\/\\\/www.kativik.qc.ca\\\/wp-content\\\/uploads\\\/2025\\\/03\\\/icon-mail.png\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.kativik.qc.ca\\\/in\\\/#website\",\"url\":\"https:\\\/\\\/www.kativik.qc.ca\\\/in\\\/\",\"name\":\"Kativik Ilisarniliriniq\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.kativik.qc.ca\\\/in\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"iu-CA\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"\u1583\u1405\u1528\u148b\u140a\u1546\u1466 - Kativik","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.kativik.qc.ca\/in\/contact\/","og_locale":"iu_CA","og_type":"article","og_title":"\u1583\u1405\u1528\u148b\u140a\u1546\u1466 - Kativik","og_description":"[vc_row][vc_column][vc_empty_space][\/vc_column][\/vc_row][vc_row][vc_column][\/vc_column][\/vc_row][vc_row][vc_column][\/vc_column][\/vc_row][vc_row equal_height=&#8221;yes&#8221; content_placement=&#8221;bottom&#8221;][vc_column][vc_empty_space height=&#8221;40px&#8221;][\/vc_column][\/vc_row][vc_row][vc_column][vc_tta_accordion color=&#8221;vista-blue&#8221; active_section=&#8221;-1&#8243; collapsible_all=&#8221;true&#8221;][vc_tta_section title=&#8221;\u1403\u14d5\u14d0\u14c2\u140a\u14c2\u14d5\u1546\u14c2\u1405\u1449 \u140a\u14ea\u14da\u1555\u14bb\u14aa\u1546\u1593&#8221; tab_id=&#8221;bureau-mtl1630951477571&#8243;][vc_column_text]9800, boul. Cavendish, Suite 510 Saint-Laurent (Qu\u00e9bec) H4M 2V9 \u1405\u1584\u14da\u1405\u144e\u1483:\u00a0514 482-8220 \u14f1\u1472\u1466\u1450\u1470\u1548\u144e\u1483: 514 482-8496 \u140a\u146d\u1583\u158f\u1450\u1585: 1 800 361-2244[\/vc_column_text][\/vc_tta_section][vc_tta_section title=&#8221;\u1470\u1466\u152a\u140a\u14a5 \u140a\u14ea\u14da\u1555\u1483&#8221; tab_id=&#8221;bureaux-kuujjuaq1630951477571&#8243;][vc_column_text]P.O. Box 150 Kuujjuaq, QC J0M 1C0 \u1405\u1584\u14da\u1405\u144e\u1483: 819 964-1136 \u14f1\u1472\u1466\u1450\u1470\u1548\u144e\u1483: 819 964-1141 \u140a\u146d\u1583\u158f\u1450\u1585: 1 877 964-1136[\/vc_column_text][\/vc_tta_section][vc_tta_section title=&#8221;\u1431\u1581\u144e\u1583\u1405\u144e&#8221; tab_id=&#8221;1625771615289-b0098f34-634d1630951477571&#8243;][vc_column_text css=&#8221;&#8221;]9641 C\u00f4te-de-Liesse Dorval, QC H9P 1A3 \u1405\u1584\u14da\u1405\u144e\u1483: [&hellip;]","og_url":"https:\/\/www.kativik.qc.ca\/in\/contact\/","og_site_name":"Kativik","article_modified_time":"2026-08-03T15:23:30+00:00","og_image":[{"width":73,"height":68,"url":"https:\/\/www.kativik.qc.ca\/wp-content\/uploads\/2025\/03\/icon-mail.png","type":"image\/png"}],"twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"11 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.kativik.qc.ca\/in\/contact\/","url":"https:\/\/www.kativik.qc.ca\/in\/contact\/","name":"\u1583\u1405\u1528\u148b\u140a\u1546\u1466 - Kativik","isPartOf":{"@id":"https:\/\/www.kativik.qc.ca\/in\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.kativik.qc.ca\/in\/contact\/#primaryimage"},"image":{"@id":"https:\/\/www.kativik.qc.ca\/in\/contact\/#primaryimage"},"thumbnailUrl":"https:\/\/www.kativik.qc.ca\/wp-content\/uploads\/2025\/03\/icon-mail.png","datePublished":"2021-07-19T17:36:22+00:00","dateModified":"2026-08-03T15:23:30+00:00","inLanguage":"iu-CA","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.kativik.qc.ca\/in\/contact\/"]}]},{"@type":"ImageObject","inLanguage":"iu-CA","@id":"https:\/\/www.kativik.qc.ca\/in\/contact\/#primaryimage","url":"https:\/\/www.kativik.qc.ca\/wp-content\/uploads\/2025\/03\/icon-mail.png","contentUrl":"https:\/\/www.kativik.qc.ca\/wp-content\/uploads\/2025\/03\/icon-mail.png"},{"@type":"WebSite","@id":"https:\/\/www.kativik.qc.ca\/in\/#website","url":"https:\/\/www.kativik.qc.ca\/in\/","name":"Kativik Ilisarniliriniq","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.kativik.qc.ca\/in\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"iu-CA"}]}},"_links":{"self":[{"href":"https:\/\/www.kativik.qc.ca\/in\/wp-json\/wp\/v2\/pages\/621","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.kativik.qc.ca\/in\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/www.kativik.qc.ca\/in\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/www.kativik.qc.ca\/in\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.kativik.qc.ca\/in\/wp-json\/wp\/v2\/comments?post=621"}],"version-history":[{"count":216,"href":"https:\/\/www.kativik.qc.ca\/in\/wp-json\/wp\/v2\/pages\/621\/revisions"}],"predecessor-version":[{"id":26814,"href":"https:\/\/www.kativik.qc.ca\/in\/wp-json\/wp\/v2\/pages\/621\/revisions\/26814"}],"wp:attachment":[{"href":"https:\/\/www.kativik.qc.ca\/in\/wp-json\/wp\/v2\/media?parent=621"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}