{"id":618,"date":"2021-07-19T13:34:28","date_gmt":"2021-07-19T17:34:28","guid":{"rendered":"https:\/\/www.kativik.qc.ca\/contact\/"},"modified":"2026-07-06T10:58:04","modified_gmt":"2026-07-06T14:58:04","slug":"contact","status":"publish","type":"page","link":"https:\/\/www.kativik.qc.ca\/en\/contact\/","title":{"rendered":"Get in Touch"},"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\/en\/\" title=\"Home\" target=\"\"><span>Home<\/span><\/a><\/div>\n                    <div  data-aos=\"fade\" data-aos-delay=\"0\"><h1>Get in<br>Touch<\/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_2' ><form method='post' enctype='multipart\/form-data'  id='gform_2'  action='\/en\/wp-json\/wp\/v2\/pages\/618' data-formid='2' novalidate>\n                        <div class='gform-body gform_body'><ul id='gform_fields_2' class='gform_fields top_label form_sublabel_below description_below validation_below'><li id=\"field_2_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_2_8'>X\/Twitter<\/label><div class='ginput_container'><input name='input_8' id='input_2_8' type='text' value='' autocomplete='new-password'\/><\/div><div class='gfield_description' id='gfield_description_2_8'>This field is for validation purposes and should be left unchanged.<\/div><\/li><li id=\"field_2_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_2_1'>Select a department to reach<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_2_1' class='medium gfield_select'    aria-required=\"true\" aria-invalid=\"false\" ><option value='' >Choose an option<\/option><option value='Jobs' >Jobs<\/option><option value='Adult Education and Vocational Training' >Adult Education and Vocational Training<\/option><option value='Post-Secondary Student Services' >Post-Secondary Student Services<\/option><option value='Human Resources' >Human Resources<\/option><option value='Payroll' >Payroll<\/option><option value='Media relations' >Media relations<\/option><option value='Education Services' >Education Services<\/option><option value='Complementary and Compassionate Services' >Complementary and Compassionate Services<\/option><option value='Teacher Training' >Teacher Training<\/option><option value='Research and data collection in Nunavik' >Research and data collection in Nunavik<\/option><option value='Nunavik Sivunitsavut' >Nunavik Sivunitsavut<\/option><option value='iNaqittaq' >iNaqittaq<\/option><option value='Other' >Other<\/option><\/select><\/div><\/li><li id=\"field_2_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_2_2'>First Name<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_2_2' type='text' value='' class='medium'     aria-required=\"true\" aria-invalid=\"false\"   \/><\/div><\/li><li id=\"field_2_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_2_3'>Last Name<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_2_3' type='text' value='' class='medium'     aria-required=\"true\" aria-invalid=\"false\"   \/><\/div><\/li><li id=\"field_2_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_2_4'>Email<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_2_4' type='email' value='' class='medium'    aria-required=\"true\" aria-invalid=\"false\"  \/>\n                        <\/div><\/li><li id=\"field_2_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_2_5'>Phone Number<\/label><div class='ginput_container ginput_container_phone'><input name='input_5' id='input_2_5' type='tel' value='' class='medium'    aria-invalid=\"false\"   \/><\/div><\/li><li id=\"field_2_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_2_6'>Message<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_2_6' class='textarea medium'     aria-required=\"true\" aria-invalid=\"false\"   rows='10' cols='50'><\/textarea><\/div><\/li><li id=\"field_2_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_2_7'>CAPTCHA<\/label><div id='input_2_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_2' class='gform_button button' onclick='gform.submission.handleButtonClick(this);' data-submission-type='submit' value='Submit'  \/> \n            <input type='hidden' class='gform_hidden' name='gform_submission_method' data-js='gform_submission_method_2' value='postback' \/>\n            <input type='hidden' class='gform_hidden' name='gform_theme' data-js='gform_theme_2' id='gform_theme_2' value='legacy' \/>\n            <input type='hidden' class='gform_hidden' name='gform_style_settings' data-js='gform_style_settings_2' id='gform_style_settings_2' value='[]' \/>\n            <input type='hidden' class='gform_hidden' name='is_submit_2' value='1' \/>\n            <input type='hidden' class='gform_hidden' name='gform_submit' value='2' \/>\n            \n            <input type='hidden' class='gform_hidden' name='gform_currency' data-currency='CAD' value='66TvQqU+18+RdAT\/YLteWUejPRmx1F+yITPRColWGF4ka0zGEtvs9v+k6hU+oQUGQgvjb14tJYlQFTDHmLyGmY\/B0yuo4KYp2YThXvhC79mDRkM=' \/>\n            <input type='hidden' class='gform_hidden' name='gform_unique_id' value='' \/>\n            <input type='hidden' class='gform_hidden' name='state_2' value='WyJbXSIsImY5YzVjNWNiM2QyNGM1MmU0MTAyZmFmYzQ2NTg4ZmM4Il0=' \/>\n            <input type='hidden' autocomplete='off' class='gform_hidden' name='gform_target_page_number_2' id='gform_target_page_number_2' value='0' \/>\n            <input type='hidden' autocomplete='off' class='gform_hidden' name='gform_source_page_number_2' id='gform_source_page_number_2' value='1' \/>\n            <input type='hidden' name='gform_field_values' value='' \/>\n            \n        <\/div>\n                        <\/form>\n                        <\/div><script>\ngform.initializeOnLoaded( function() {gformInitSpinner( 2, 'https:\/\/www.kativik.qc.ca\/wp-content\/plugins\/gravityforms\/images\/spinner.svg', true );jQuery('#gform_ajax_frame_2').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_2');var is_confirmation = jQuery(this).contents().find('#gform_confirmation_wrapper_2').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_2').html(form_content.html());if(form_content.hasClass('gform_validation_error')){jQuery('#gform_wrapper_2').addClass('gform_validation_error');} else {jQuery('#gform_wrapper_2').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_2').val();gformInitSpinner( 2, 'https:\/\/www.kativik.qc.ca\/wp-content\/plugins\/gravityforms\/images\/spinner.svg', true );jQuery(document).trigger('gform_page_loaded', [2, current_page]);window['gf_submitting_2'] = 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_2').replaceWith(confirmation_content);jQuery(document).trigger('gform_confirmation_loaded', [2]);window['gf_submitting_2'] = false;wp.a11y.speak(jQuery('#gform_confirmation_message_2').text());}else{jQuery('#gform_2').append(contents);if(window['gformRedirect']) {gformRedirect();}}jQuery(document).trigger(\"gform_pre_post_render\", [{ formId: \"2\", currentPage: \"current_page\", abort: function() { this.preventDefault(); } }]);        if (event && event.defaultPrevented) {                return;        }        const gformWrapperDiv = document.getElementById( \"gform_wrapper_2\" );        if ( gformWrapperDiv ) {            const visibilitySpan = document.createElement( \"span\" );            visibilitySpan.id = \"gform_visibility_test_2\";            gformWrapperDiv.insertAdjacentElement( \"afterend\", visibilitySpan );        }        const visibilityTestDiv = document.getElementById( \"gform_visibility_test_2\" );        let postRenderFired = false;        function triggerPostRender() {            if ( postRenderFired ) {                return;            }            postRenderFired = true;            gform.core.triggerPostRenderEvents( 2, 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>Telephone Directory<\/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\">Offices<\/a><\/li><li class=\"\"><a href=\"#idschools\" class=\"menu-link\">Schools<\/a><\/li><li class=\"\"><a href=\"#idcentres\" class=\"menu-link\">Centres<\/a><\/li><li class=\"\"><a href=\"#idmedias\" class=\"menu-link\">Medias<\/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>Our Offices<\/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;Montreal Office&#8221; tab_id=&#8221;bureau-mtl&#8221;][vc_column_text]9800, boul. Cavendish,<br \/>\nSuite 510<br \/>\nSaint-Laurent (Qu\u00e9bec)<br \/>\nH4M 2V9<\/p>\n<p>Tel.: (514) 482-8220<br \/>\nFax: (514) 482-8496<br \/>\nToll free: 1-800-361-2244[\/vc_column_text][\/vc_tta_section][vc_tta_section title=&#8221;Kuujjuaq Office&#8221; tab_id=&#8221;bureaux-kuujjuaq&#8221;][vc_column_text]P.O. Box 150<br \/>\nKuujjuaq, QC<br \/>\nJ0M 1C0<\/p>\n<p>Tel.: (819) 964-1136<br \/>\nFax: (819) 964-1141<br \/>\nToll Free: 1-877-964-1136[\/vc_column_text][\/vc_tta_section][vc_tta_section title=&#8221;Warehouse&#8221; tab_id=&#8221;1625771615289-b0098f34-634d&#8221;][vc_column_text css=&#8221;&#8221;]9641 C\u00f4te-de-Liesse<br \/>\nDorval, QC<br \/>\nH9P 1A3<\/p>\n<p>Tel.: (514) 633-8678<br \/>\nFax: (514) 631-4429<br \/>\nToll free: 1-800-361-2244<\/p>\n<ul>\n<li><strong>Coordinator &#8211; logistics\u00a0<\/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>&#8220;Frontline&#8221; Services :<\/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;Services to the Youth Sector&#8221; tab_id=&#8221;youthservices1667579424320&#8243;][vc_column_text css=&#8221;&#8221;]P.O. Box 150<br \/>\nKuujjuaq, QC<br \/>\nJ0M 1C0<\/p>\n<p>Tel.: (819) 964-1136<br \/>\nFax: (819) 964-1141<br \/>\nToll Free: 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><br \/>\nAdministration :<\/p>\n<ul>\n<li><strong>Director &#8211; Education Services and Complementary and Compassionate Services<br \/>\n<\/strong>Warren Thomson<\/li>\n<li><strong>Director &#8211; Education Services<br \/>\n<\/strong>Catherine Garand<\/li>\n<li><strong>Assistant Director &#8211; School Operations<\/strong><br \/>\nMarie-H\u00e9l\u00e8ne Boyle-Baillot<\/li>\n<li><strong>Assistant Director &#8211; School Operations<\/strong><br \/>\nNicholas Ramsay<\/li>\n<li><strong>Assistant Director &#8211; Education Services | First Language Programs<br \/>\n<\/strong>Alaku Kulula<\/li>\n<li><strong>Assistant Director &#8211; Complementary Services<br \/>\n<\/strong>Liza Cotnoir<\/li>\n<li><strong>Assistant Director &#8211; Psychosocial Services<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;Services to the Adult Sector&#8221; tab_id=&#8221;adultservices1667579424320&#8243;][vc_column_text css=&#8221;&#8221;]9800, boul. Cavendish,<br \/>\nSuite 400<br \/>\nSaint-Laurent (Qu\u00e9bec)<br \/>\nH4M 2V9<\/p>\n<p>Tel.: 514 482-8220<br \/>\nFax: 514 482-8278<br \/>\nToll Free: 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><br \/>\nAdministration :<\/p>\n<ul>\n<li><strong>Director<\/strong><br \/>\nMamadou Diop<\/li>\n<li><strong>Assistant Director &#8211; Development of Training<\/strong><br \/>\nAudr\u00e9e P\u00e9pin-Houle<\/li>\n<li><strong>Assistant Director<\/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;Services to the post-secondary students&#8221; tab_id=&#8221;studentservices1667579424320&#8243;][vc_column_text css=&#8221;&#8221;]9800, boul. Cavendish,<br \/>\nSuite 510<br \/>\nSaint-Laurent (Qu\u00e9bec)<br \/>\nH4M 2V9<\/p>\n<p>Tel.: (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><br \/>\nAdministration :<\/p>\n<ul>\n<li><strong>Director<\/strong><br \/>\nPhebe Bentley<\/li>\n<li><strong>Assistant Director<\/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;Services to the employees (Professional Development)&#8221; tab_id=&#8221;employeesservices1667579424320&#8243;][vc_column_text css=&#8221;&#8221;]9800, boul. Cavendish,<br \/>\nSuite 510<br \/>\nSaint-Laurent (Qu\u00e9bec)<br \/>\nH4M 2V9<\/p>\n<p>Tel.: (514) 482-8220<br \/>\nFax: (514) 482-8496<br \/>\nToll free: 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>Professional Improvement Fund<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>&#8220;Backbone&#8221; Services :<\/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;General Administration&#8221; tab_id=&#8221;1665066470948-148f8a69-577f1667579425012&#8243;][vc_column_text css=&#8221;&#8221;]Administration :<\/p>\n<ul>\n<li><strong>Director General<\/strong><br \/>\nHarriet Keleutak<\/li>\n<li><strong>Assistant Director General<\/strong><br \/>\nLisa Mesher<\/li>\n<li><strong>Assistant Director General<br \/>\n<\/strong>Jeannie Dupuis<\/li>\n<\/ul>\n<p>[\/vc_column_text][\/vc_tta_section][vc_tta_section title=&#8221;Financial Resources&#8221; tab_id=&#8221;1665066471047-ab817689-71ae1667579425012&#8243;][vc_column_text css=&#8221;&#8221;]Administration :<\/p>\n<ul>\n<li><strong>Director<\/strong><br \/>\nYoussef Hayek<\/li>\n<li><strong>Assistant Director<\/strong><br \/>\nJean-Paul Besner<\/li>\n<\/ul>\n<p>[\/vc_column_text][\/vc_tta_section][vc_tta_section title=&#8221;Material Resources&#8221; tab_id=&#8221;1681744654323-ba928985-a21f&#8221;][vc_column_text css=&#8221;&#8221;]Administration :<\/p>\n<ul>\n<li><strong>Director<\/strong><br \/>\nJ\u00e9r\u00f4me Dionne<\/li>\n<li><strong>Assistant Director &#8211; Logistics<\/strong><br \/>\nPaul Ghaleb<\/li>\n<li><strong>Assistant Director &#8211; Maintenance<\/strong><br \/>\nPatrick Curiale<\/li>\n<li><strong>Assistant Director &#8211; Capital Investment<br \/>\n<\/strong>Patricia Cianciarelli<\/li>\n<\/ul>\n<p>[\/vc_column_text][\/vc_tta_section][vc_tta_section title=&#8221;Human Resources&#8221; tab_id=&#8221;1665066471259-10f51dc0-d2b31667579425012&#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><br \/>\nAdministration :<\/p>\n<ul>\n<li><strong>Director<\/strong><\/li>\n<li>Kimberly Makiuk<\/li>\n<li><strong>Assistant Director &#8211; Labour Relations\u00a0<\/strong><br \/>\nEloise Lessard Legault<\/li>\n<li><strong>Assistant Director &#8211; Payroll<\/strong><br \/>\nAngela Megali<\/li>\n<li><strong>Assistant Director &#8211; Talent acquisition<\/strong><br \/>\nJudith Michel<\/li>\n<\/ul>\n<p>[\/vc_column_text][\/vc_tta_section][vc_tta_section title=&#8221;Information Technology&#8221; tab_id=&#8221;1665066471349-5b090325-abbc1667579425012&#8243;][vc_column_text css=&#8221;&#8221;]Administration :<\/p>\n<ul>\n<li><strong>Director<\/strong><br \/>\nPatrice Desroches<\/li>\n<li><strong>Assistant Director<\/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>Our Schools<\/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>AKULIVIK\u2003\u2794\u2003<\/strong>Tukisiniarvik School&#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;\"><!-- Header --><\/p>\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;\">Internal code: #110<\/span><\/p>\n<h2 style=\"font-family: inherit !important; margin: 5px 0; font-size: 1.6em; color: white; font-weight: bold !important;\"><strong>Tukisiniarvik<\/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;\">Kindergarten to Secondary V<\/span><\/p>\n<\/div>\n<p><!-- Content --><\/p>\n<div style=\"padding: 25px 20px;\"><!-- Location & Contact --><\/p>\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;\">Tel:<\/strong> (819) 496-2021<br \/>\n<strong style=\"color: #858689; font-weight: bold !important;\">Fax:<\/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=\"\" width=\"73\" height=\"68\" \/><\/strong><\/a><\/p>\n<p><!-- Administration --><\/p>\n<ul>\n<li><strong style=\"font-family: inherit !important; font-size: 0.9em; color: #858689; display: block; font-weight: bold !important;\">Principal<\/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;\">Interim Vice-Principal<\/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;\">Center Director<\/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>AUPALUK\u2003\u2794\u2003Tarsakallak School<\/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;\"><!-- Header --><\/p>\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;\">Internal code: #040<\/span><\/p>\n<h2 style=\"font-family: inherit !important; margin: 5px 0; font-size: 1.6em; color: white; font-weight: bold !important;\"><strong>Tarsakallak<\/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;\">Kindergarten to Secondary V<\/span><\/p>\n<\/div>\n<p><!-- Content --><\/p>\n<div style=\"padding: 25px 20px;\"><!-- Location & Contact --><\/p>\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;\">Tel:<\/strong> (819) 491-7081<br \/>\n<strong style=\"color: #858689; font-weight: bold !important;\">Fax:<\/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<p><!-- Administration --><\/p>\n<ul>\n<li><strong style=\"font-family: inherit !important; font-size: 0.9em; color: #858689; display: block; font-weight: bold !important;\">Principal<\/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;\">Vice-Principal<\/strong><span style=\"font-family: inherit !important; font-size: 1em; color: #858689;\">Nuna Akpahatak<\/span><\/li>\n<li><strong style=\"font-family: inherit !important; font-size: 0.9em; color: #858689; display: block; font-weight: bold !important;\">Center Director<\/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>INUKJUAK\u2003\u2794\u2003Innalik School + Uquutaq School<\/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;\"><!-- Header --><\/p>\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;\">Internal code: #120<\/span><\/p>\n<h2 style=\"font-family: inherit !important; margin: 5px 0; font-size: 1.6em; color: white; font-weight: bold !important;\"><strong>Innalik<\/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;\">Kindergarten to Grade 6<\/span><\/p>\n<\/div>\n<p><!-- Content --><\/p>\n<div style=\"padding: 25px 20px;\"><!-- Location & Contact --><\/p>\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;\">Tel:<\/strong> (819) 254-8211<br \/>\n<strong style=\"color: #858689; font-weight: bold !important;\">Fax:<\/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<p><!-- Administration --><\/p>\n<ul>\n<li><strong style=\"font-family: inherit !important; font-size: 0.9em; color: #858689; display: block; font-weight: bold !important;\">Interim Principal<\/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;\">Vice-Principal<\/strong><span style=\"font-family: inherit !important; font-size: 1em; color: #858689;\">Vacant<\/span><\/li>\n<li><strong style=\"font-family: inherit !important; font-size: 0.9em; color: #858689; display: block; font-weight: bold !important;\">Center Director<\/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;\"><!-- Header --><\/p>\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;\">Internal code: #122<\/span><\/p>\n<h2 style=\"font-family: inherit !important; margin: 5px 0; font-size: 1.6em; color: white; font-weight: bold !important;\"><strong>Uquutaq<\/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;\">Secondary I to V<\/span><\/p>\n<\/div>\n<p><!-- Content --><\/p>\n<div style=\"padding: 25px 20px;\"><!-- Location & Contact --><\/p>\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;\">Tel:<\/strong> (819) 254-1444<br \/>\n<strong style=\"color: #858689; font-weight: bold !important;\">Fax:<\/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<p><!-- Administration --><\/p>\n<ul>\n<li><strong style=\"font-family: inherit !important; font-size: 0.9em; color: #858689; display: block; font-weight: bold !important;\">Interim Principal<\/strong><span style=\"font-family: inherit !important; font-size: 1em; color: #858689;\">Omar Khaled Kharchaf<\/span><\/li>\n<li><strong style=\"font-family: inherit !important; font-size: 0.9em; color: #858689; display: block; font-weight: bold !important;\">Vice-Principal<\/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;\">Center Director<\/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>IVUJIVIK\u2003\u2794\u2003Nuvviti School<\/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;\"><!-- Header --><\/p>\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;\">Internal code: #090<\/span><\/p>\n<h2 style=\"font-family: inherit !important; margin: 5px 0; font-size: 1.6em; color: white; font-weight: bold !important;\"><strong>Nuvviti<\/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;\">Kindergarten to Secondary V<\/span><\/p>\n<\/div>\n<p><!-- Content --><\/p>\n<div style=\"padding: 25px 20px;\"><!-- Location & Contact --><\/p>\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;\">Tel:<\/strong> (819) 922-9917<br \/>\n<strong style=\"color: #858689; font-weight: bold !important;\">Fax:<\/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<p><!-- Administration --><\/p>\n<ul>\n<li><strong style=\"font-family: inherit !important; font-size: 0.9em; color: #858689; display: block; font-weight: bold !important;\">Interim Principal<\/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;\">Vice-Principal<\/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;\">Center Director<\/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>KANGIQSUALUJJUAQ\u2003\u2794\u2003Ulluriaq School<\/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;\">Internal code: #010<\/span><\/p>\n<h2 style=\"font-family: inherit !important; margin: 5px 0; font-size: 1.6em; color: white; font-weight: bold !important;\"><strong>Ulluriaq<\/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;\">Kindergarten to Secondary V<\/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;\">Tel:<\/strong> (819) 337-5357<br \/>\n<strong style=\"color: #858689; font-weight: bold !important;\">Fax:<\/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<div style=\"margin-bottom: 12px;\"><strong style=\"font-family: inherit !important; font-size: 0.9em; color: #858689; display: block; font-weight: bold !important;\">Principal<\/strong><span style=\"font-family: inherit !important; font-size: 1em; color: #858689;\">Mark Brazeau<\/span><\/div>\n<div style=\"margin-bottom: 12px;\"><strong style=\"font-family: inherit !important; font-size: 0.9em; color: #858689; display: block; font-weight: bold !important;\">Vice-Principal<\/strong><span style=\"font-family: inherit !important; font-size: 1em; color: #858689;\">Nancy Etok<\/span><\/div>\n<div><strong style=\"font-family: inherit !important; font-size: 0.9em; color: #858689; display: block; font-weight: bold !important;\">Interim Center Director<\/strong><span style=\"font-family: inherit !important; font-size: 1em; color: #858689;\">Betty Etok<\/span><\/div>\n<\/div>\n<\/div>\n<p>[\/vc_column_text][\/vc_tta_section][vc_tta_section title=&#8221;<strong>KANGIQSUJUAQ\u2003\u2794\u2003Arsaniq School<\/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;\"><!-- Header --><\/p>\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;\">Internal code: #070<\/span><\/p>\n<h2 style=\"font-family: inherit !important; margin: 5px 0; font-size: 1.6em; color: white; font-weight: bold !important;\"><strong>Arsaniq<\/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;\">Kindergarten to Secondary V<\/span><\/p>\n<\/div>\n<p><!-- Content --><\/p>\n<div style=\"padding: 25px 20px;\"><!-- Location & Contact --><\/p>\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;\">Tel:<\/strong> (819) 338-3332<br \/>\n<strong style=\"color: #858689; font-weight: bold !important;\">Fax:<\/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<p><!-- Administration --><\/p>\n<ul>\n<li><strong style=\"font-family: inherit !important; font-size: 0.9em; color: #858689; display: block; font-weight: bold !important;\">Principal<\/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;\">Vice-Principal<\/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;\">Center Director<\/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>KANGIRSUK\u2003\u2794\u2003Sautjuit School<\/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;\"><!-- Header --><\/p>\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;\">Internal code: #050<\/span><\/p>\n<h2 style=\"font-family: inherit !important; margin: 5px 0; font-size: 1.6em; color: white; font-weight: bold !important;\"><strong>Sautjuit<\/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;\">Kindergarten to Secondary V<\/span><\/p>\n<\/div>\n<p><!-- Content --><\/p>\n<div style=\"padding: 25px 20px;\"><!-- Location & Contact --><\/p>\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;\">Tel:<\/strong> (819) 935-4369<br \/>\n<strong style=\"color: #858689; font-weight: bold !important;\">Fax:<\/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<p><!-- Administration --><\/p>\n<ul>\n<li><strong style=\"font-family: inherit !important; font-size: 0.9em; color: #858689; display: block; font-weight: bold !important;\">Principal<\/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;\">Vice-Principal<\/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;\">Center Director<\/strong><span style=\"font-family: inherit !important; font-size: 1em; color: #858689;\">Alec Kudluk<\/span><\/li>\n<\/ul>\n<\/div>\n<\/div>\n<p>[\/vc_column_text][\/vc_tta_section][vc_tta_section title=&#8221;<strong>KUUJJUAQ\u2003\u2794\u2003Pitakallak School + Jaanimmarik School<\/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;\"><!-- Header --><\/p>\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;\">Internal code: #022<\/span><\/p>\n<h2 style=\"font-family: inherit !important; margin: 5px 0; font-size: 1.6em; color: white; font-weight: bold !important;\"><strong>Pitakallak<\/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;\">Kindergarten to Grade 3<\/span><\/p>\n<\/div>\n<p><!-- Content --><\/p>\n<div style=\"padding: 25px 20px;\"><!-- Location & Contact --><\/p>\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;\">Tel:<\/strong> (819) 964-2654<br \/>\n<strong style=\"color: #858689; font-weight: bold !important;\">Fax:<\/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<p><!-- Administration --><\/p>\n<ul>\n<li><strong style=\"font-family: inherit !important; font-size: 0.9em; color: #858689; display: block; font-weight: bold !important;\">Principal<\/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;\">Vice-Principal<\/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;\">Center Director<\/strong><span style=\"font-family: inherit !important; font-size: 1em; color: #858689;\">Elisapie Saunders<\/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;\"><!-- Header --><\/p>\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;\">Internal code: #020<\/span><\/p>\n<h2 style=\"font-family: inherit !important; margin: 5px 0; font-size: 1.6em; color: white; font-weight: bold !important;\"><strong>Jaanimmarik<\/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;\">Grade 4 to Secondary V<\/span><\/p>\n<\/div>\n<p><!-- Content --><\/p>\n<div style=\"padding: 25px 20px;\"><!-- Location & Contact --><\/p>\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;\">Tel:<\/strong> (819) 964-2912<br \/>\n<strong style=\"color: #858689; font-weight: bold !important;\">Fax:<\/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<p><!-- Administration --><\/p>\n<ul>\n<li><strong style=\"font-family: inherit !important; font-size: 0.9em; color: #858689; display: block; font-weight: bold !important;\">Principal<\/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;\">Vice-Principal<\/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;\">Vice-Principal<\/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;\">Center Director<\/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>KUUJJUARAAPIK\u2003\u2794\u2003Asimauttaq School<\/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;\"><!-- Header --><\/p>\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;\">Internal code: #140<\/span><\/p>\n<h2 style=\"font-family: inherit !important; margin: 5px 0; font-size: 1.6em; color: white; font-weight: bold !important;\"><strong>Asimauttaq<\/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;\">Kindergarten to Secondary V<\/span><\/p>\n<\/div>\n<p><!-- Content --><\/p>\n<div style=\"padding: 25px 20px;\"><!-- Location & Contact --><\/p>\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;\">Tel:<\/strong> (819) 929-3409<br \/>\n<strong style=\"color: #858689; font-weight: bold !important;\">Fax:<\/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<p><!-- Administration --><\/p>\n<ul>\n<li><strong style=\"font-family: inherit !important; font-size: 0.9em; color: #858689; display: block; font-weight: bold !important;\">Principal<\/strong><span style=\"font-family: inherit !important; font-size: 1em; color: #858689;\">Frederic Dub\u00e9<\/span><\/li>\n<li><strong style=\"font-family: inherit !important; font-size: 0.9em; color: #858689; display: block; font-weight: bold !important;\">Vice-Principal<\/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;\">Center Director<\/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>PUVIRNITUQ\u2003\u2794\u2003Ikaarvik School + Iguarsivik School<\/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;\"><!-- Header --><\/p>\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;\">Internal code: #102<\/span><\/p>\n<h2 style=\"font-family: inherit !important; margin: 5px 0; font-size: 1.6em; color: white; font-weight: bold !important;\"><strong>Ikaarvik<\/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;\">Kindergarten to Grade 3<\/span><\/p>\n<\/div>\n<p><!-- Content --><\/p>\n<div style=\"padding: 25px 20px;\"><!-- Location & Contact --><\/p>\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;\">Tel:<\/strong> (819) 988-2344<br \/>\n<strong style=\"color: #858689; font-weight: bold !important;\">Fax:<\/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<p><!-- Administration --><\/p>\n<ul>\n<li><strong style=\"font-family: inherit !important; font-size: 0.9em; color: #858689; display: block; font-weight: bold !important;\">Principal<\/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;\">Interim Vice-Principal<\/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;\">Center Director<\/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;\"><!-- Header --><\/p>\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;\">Internal code: #100<\/span><\/p>\n<h2 style=\"font-family: inherit !important; margin: 5px 0; font-size: 1.6em; color: white; font-weight: bold !important;\"><strong>Iguarsivik<\/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;\">Grade 4 to Secondary V<\/span><\/p>\n<\/div>\n<p><!-- Content --><\/p>\n<div style=\"padding: 25px 20px;\"><!-- Location & Contact --><\/p>\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;\">Tel:<\/strong> (819) 988-2960<br \/>\n<strong style=\"color: #858689; font-weight: bold !important;\">Fax:<\/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<p><!-- Administration --><\/p>\n<ul>\n<li><strong style=\"font-family: inherit !important; font-size: 0.9em; color: #858689; display: block; font-weight: bold !important;\">Interim Principal<\/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;\">Interim Vice-Principal<\/strong><span style=\"font-family: inherit !important; font-size: 1em; color: #858689;\">Ibrahima Bano Diallo<\/span><\/li>\n<li><strong style=\"font-family: inherit !important; font-size: 0.9em; color: #858689; display: block; font-weight: bold !important;\">Center Director<\/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>QUAQTAQ\u2003\u2794\u2003Isummasaqvik School<\/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;\"><!-- Header --><\/p>\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;\">Internal code: #060<\/span><\/p>\n<h2 style=\"font-family: inherit !important; margin: 5px 0; font-size: 1.6em; color: white; font-weight: bold !important;\"><strong>Isummasaqvik<\/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;\">Kindergarten to Secondary V<\/span><\/p>\n<\/div>\n<p><!-- Content --><\/p>\n<div style=\"padding: 25px 20px;\"><!-- Location & Contact --><\/p>\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;\">Tel:<\/strong> (819) 492-9955<br \/>\n<strong style=\"color: #858689; font-weight: bold !important;\">Fax:<\/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<p><!-- Administration --><\/p>\n<ul>\n<li><strong style=\"font-family: inherit !important; font-size: 0.9em; color: #858689; display: block; font-weight: bold !important;\">Principal<\/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;\">Vice-Principal<\/strong><span style=\"font-family: inherit !important; font-size: 1em; color: #858689;\">Tyler Gordon<\/span><\/li>\n<li><strong style=\"font-family: inherit !important; font-size: 0.9em; color: #858689; display: block; font-weight: bold !important;\">Center Director<\/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>SALLUIT\u2003\u2794\u2003Pigiurvik School + Ikusik School<\/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;\">Internal code: #082<\/span><\/p>\n<h2 style=\"font-family: inherit !important; margin: 5px 0; font-size: 1.6em; color: white; font-weight: bold !important;\"><strong>Pigiurvik<\/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;\">Kindergarten to Grade 3<\/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;\">Tel:<\/strong> (819) 255-8931<br \/>\n<strong style=\"color: #858689; font-weight: bold !important;\">Fax:<\/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;\">Principal<\/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;\">Vice-Principal<\/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;\">Center Director<\/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;\"><!-- Header --><\/p>\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;\">Internal code: #080<\/span><\/p>\n<h2 style=\"font-family: inherit !important; margin: 5px 0; font-size: 1.6em; color: white; font-weight: bold !important;\"><strong>Ikusik<\/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;\">Grade 4 to Secondary V<\/span><\/p>\n<\/div>\n<p><!-- Content --><\/p>\n<div style=\"padding: 25px 20px;\"><!-- Location & Contact --><\/p>\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;\">Tel:<\/strong> (819) 255-9914<br \/>\n<strong style=\"color: #858689; font-weight: bold !important;\">Fax:<\/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<p><!-- Administration --><\/p>\n<ul>\n<li><strong style=\"font-family: inherit !important; font-size: 0.9em; color: #858689; display: block; font-weight: bold !important;\">Principal<\/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;\">Vice-Principal<\/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;\">Center Director<\/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>TASIUJAQ\u2003\u2794\u2003Ajagutak School<\/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;\">Internal code: #030<\/span><\/p>\n<h2 style=\"font-family: inherit !important; margin: 5px 0; font-size: 1.6em; color: white; font-weight: bold !important;\"><strong>Ajagutak<\/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;\">Kindergarten to Secondary V<\/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;\">Tel:<\/strong> (819) 633-5152<br \/>\n<strong style=\"color: #858689; font-weight: bold !important;\">Fax:<\/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;\">Principal<\/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;\">Vice-Principal<\/strong><span style=\"font-family: inherit !important; font-size: 1em; color: #858689;\">Janice Cain<\/span><\/li>\n<li><strong style=\"font-family: inherit !important; font-size: 0.9em; color: #858689; display: block; font-weight: bold !important;\">Interim Center Director<\/strong><span style=\"font-family: inherit !important; font-size: 1em; color: #858689;\">Jessie Munick<\/span><\/li>\n<\/ul>\n<\/div>\n<\/div>\n<p>[\/vc_column_text][\/vc_tta_section][vc_tta_section title=&#8221;<strong>UMIUJAQ\u2003\u2794\u2003Kiluutaq School<\/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;\"><!-- Header --><\/p>\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;\">Internal code: #130<\/span><\/p>\n<h2 style=\"font-family: inherit !important; margin: 5px 0; font-size: 1.6em; color: white; font-weight: bold !important;\"><strong>Kiluutaq<\/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;\">Kindergarten to Secondary V<\/span><\/p>\n<\/div>\n<p><!-- Content --><\/p>\n<div style=\"padding: 25px 20px;\"><!-- Location & Contact --><\/p>\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;\">Tel:<\/strong> (819) 331-7061<br \/>\n<strong style=\"color: #858689; font-weight: bold !important;\">Fax:<\/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<p><!-- Administration --><\/p>\n<ul>\n<li><strong style=\"font-family: inherit !important; font-size: 0.9em; color: #858689; display: block; font-weight: bold !important;\">Principal<\/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;\">Vice-Principal<\/strong><span style=\"font-family: inherit !important; font-size: 1em; color: #858689;\">Sarah Stone<\/span><\/li>\n<li><strong style=\"font-family: inherit !important; font-size: 0.9em; color: #858689; display: block; font-weight: bold !important;\">Center Director<\/strong><span style=\"font-family: inherit !important; font-size: 1em; color: #858689;\">Simon Flemming<\/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>Our Adult Education Centres<\/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>PUVIRNITUQ\u2003\u2794\u2003Adult Education Centre<\/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>Tel.: (819) 988-2269<br \/>\nFax: (819) 988-2204<\/p>\n<p>Administration :<\/p>\n<ul>\n<li><strong>Center Director<br \/>\n<\/strong>Malaya Tukalak<\/li>\n<\/ul>\n<p>[\/vc_column_text][\/vc_tta_section][vc_tta_section title=&#8221;<strong>KUUJJUAQ\u2003\u2794\u2003Kajusivik Centre<\/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>Tel.: (819) 964-2750<br \/>\nFax: (819) 964-2745<\/p>\n<p>Administration :<\/p>\n<ul>\n<li><strong>Center Director<br \/>\n<\/strong>Alice Berthe<\/li>\n<li><strong>Residence Manager<\/strong><\/li>\n<li>Susan Nulukie<\/li>\n<\/ul>\n<p>[\/vc_column_text][\/vc_tta_section][vc_tta_section title=&#8221;<strong>KANGIQSUJUAQ\u2003\u2794\u2003Nasivvik Centre<\/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>Tel.: (819) 338-3346<br \/>\nFax: (819) 338-3345<\/p>\n<p>Administration :<\/p>\n<ul>\n<li><strong>Interim Centre Director<br \/>\n<\/strong>Mark Yeates<\/li>\n<\/ul>\n<p>[\/vc_column_text][\/vc_tta_section][vc_tta_section title=&#8221;<strong>INUKJUAK\u2003\u2794\u2003Nunavimmi Pigiursavik Centre<\/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>Tel.: (819) 254-8686<br \/>\nFax: (819) 254-8595<\/p>\n<p>Administration :<\/p>\n<ul>\n<li><strong>Director<br \/>\n<\/strong>Atsu Alogbleto<\/li>\n<li><strong>Residence Manager<br \/>\n<\/strong>Mary Elijassialuk<\/li>\n<\/ul>\n<p>[\/vc_column_text][\/vc_tta_section][vc_tta_section title=&#8221;<strong>SALLUIT\u2003\u2794\u2003Qaunnaq Centre<\/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>Tel.: (819) 255-8365<br \/>\nFax: (819) 255-8804<\/p>\n<p>Administration :<\/p>\n<ul>\n<li><strong>Center Director<br \/>\n<\/strong>Darrell Atagotaaluk<\/li>\n<\/ul>\n<p>[\/vc_column_text][\/vc_tta_section][vc_tta_section title=&#8221;<strong>KUUJJUARAAPIK\u2003\u2794\u2003Sakivivik Centre<\/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>Tel.: (819) 929-3284<br \/>\nFax: (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>Media Relations<\/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;Public Relations&#8221; tab_id=&#8221;1626180462649-02c2bf61-60c21630951477726163095200230116309521407491630952226711&#8243;][vc_column_text css=&#8221;&#8221;]Tel.: (514) 797-8220<\/p>\n<p><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>[\/vc_column_text][\/vc_tta_section][vc_tta_section title=&#8221;Access to Information&#8221; tab_id=&#8221;1774531541814-a9f1f094-b049&#8243;][vc_column_text css=&#8221;&#8221;]Person Responsible for Access:<\/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>Associate Secretary General<\/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;Montreal Office&#8221; tab_id=&#8221;bureau-mtl&#8221;][vc_column_text]9800, boul. Cavendish, Suite 510 Saint-Laurent (Qu\u00e9bec) H4M 2V9 Tel.: (514) 482-8220 Fax: (514) 482-8496 Toll free: 1-800-361-2244[\/vc_column_text][\/vc_tta_section][vc_tta_section title=&#8221;Kuujjuaq Office&#8221; tab_id=&#8221;bureaux-kuujjuaq&#8221;][vc_column_text]P.O. Box 150 Kuujjuaq, QC J0M 1C0 Tel.: (819) 964-1136 Fax: (819) 964-1141 Toll Free: 1-877-964-1136[\/vc_column_text][\/vc_tta_section][vc_tta_section title=&#8221;Warehouse&#8221; tab_id=&#8221;1625771615289-b0098f34-634d&#8221;][vc_column_text css=&#8221;&#8221;]9641 C\u00f4te-de-Liesse Dorval, QC H9P 1A3 Tel.: (514) [&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-618","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>Get in Touch - 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\/en\/contact\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Get in Touch - 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;Montreal Office&#8221; tab_id=&#8221;bureau-mtl&#8221;][vc_column_text]9800, boul. Cavendish, Suite 510 Saint-Laurent (Qu\u00e9bec) H4M 2V9 Tel.: (514) 482-8220 Fax: (514) 482-8496 Toll free: 1-800-361-2244[\/vc_column_text][\/vc_tta_section][vc_tta_section title=&#8221;Kuujjuaq Office&#8221; tab_id=&#8221;bureaux-kuujjuaq&#8221;][vc_column_text]P.O. Box 150 Kuujjuaq, QC J0M 1C0 Tel.: (819) 964-1136 Fax: (819) 964-1141 Toll Free: 1-877-964-1136[\/vc_column_text][\/vc_tta_section][vc_tta_section title=&#8221;Warehouse&#8221; tab_id=&#8221;1625771615289-b0098f34-634d&#8221;][vc_column_text css=&#8221;&#8221;]9641 C\u00f4te-de-Liesse Dorval, QC H9P 1A3 Tel.: (514) [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.kativik.qc.ca\/en\/contact\/\" \/>\n<meta property=\"og:site_name\" content=\"Kativik\" \/>\n<meta property=\"article:modified_time\" content=\"2026-07-06T14:58:04+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=\"12 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.kativik.qc.ca\\\/en\\\/contact\\\/\",\"url\":\"https:\\\/\\\/www.kativik.qc.ca\\\/en\\\/contact\\\/\",\"name\":\"Get in Touch - Kativik\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.kativik.qc.ca\\\/en\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.kativik.qc.ca\\\/en\\\/contact\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.kativik.qc.ca\\\/en\\\/contact\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.kativik.qc.ca\\\/wp-content\\\/uploads\\\/2025\\\/03\\\/icon-mail.png\",\"datePublished\":\"2021-07-19T17:34:28+00:00\",\"dateModified\":\"2026-07-06T14:58:04+00:00\",\"inLanguage\":\"en-CA\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.kativik.qc.ca\\\/en\\\/contact\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-CA\",\"@id\":\"https:\\\/\\\/www.kativik.qc.ca\\\/en\\\/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\\\/en\\\/#website\",\"url\":\"https:\\\/\\\/www.kativik.qc.ca\\\/en\\\/\",\"name\":\"Kativik Ilisarniliriniq\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.kativik.qc.ca\\\/en\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-CA\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Get in Touch - 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\/en\/contact\/","og_locale":"en_US","og_type":"article","og_title":"Get in Touch - 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;Montreal Office&#8221; tab_id=&#8221;bureau-mtl&#8221;][vc_column_text]9800, boul. Cavendish, Suite 510 Saint-Laurent (Qu\u00e9bec) H4M 2V9 Tel.: (514) 482-8220 Fax: (514) 482-8496 Toll free: 1-800-361-2244[\/vc_column_text][\/vc_tta_section][vc_tta_section title=&#8221;Kuujjuaq Office&#8221; tab_id=&#8221;bureaux-kuujjuaq&#8221;][vc_column_text]P.O. Box 150 Kuujjuaq, QC J0M 1C0 Tel.: (819) 964-1136 Fax: (819) 964-1141 Toll Free: 1-877-964-1136[\/vc_column_text][\/vc_tta_section][vc_tta_section title=&#8221;Warehouse&#8221; tab_id=&#8221;1625771615289-b0098f34-634d&#8221;][vc_column_text css=&#8221;&#8221;]9641 C\u00f4te-de-Liesse Dorval, QC H9P 1A3 Tel.: (514) [&hellip;]","og_url":"https:\/\/www.kativik.qc.ca\/en\/contact\/","og_site_name":"Kativik","article_modified_time":"2026-07-06T14:58:04+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":"12 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.kativik.qc.ca\/en\/contact\/","url":"https:\/\/www.kativik.qc.ca\/en\/contact\/","name":"Get in Touch - Kativik","isPartOf":{"@id":"https:\/\/www.kativik.qc.ca\/en\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.kativik.qc.ca\/en\/contact\/#primaryimage"},"image":{"@id":"https:\/\/www.kativik.qc.ca\/en\/contact\/#primaryimage"},"thumbnailUrl":"https:\/\/www.kativik.qc.ca\/wp-content\/uploads\/2025\/03\/icon-mail.png","datePublished":"2021-07-19T17:34:28+00:00","dateModified":"2026-07-06T14:58:04+00:00","inLanguage":"en-CA","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.kativik.qc.ca\/en\/contact\/"]}]},{"@type":"ImageObject","inLanguage":"en-CA","@id":"https:\/\/www.kativik.qc.ca\/en\/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\/en\/#website","url":"https:\/\/www.kativik.qc.ca\/en\/","name":"Kativik Ilisarniliriniq","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.kativik.qc.ca\/en\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-CA"}]}},"_links":{"self":[{"href":"https:\/\/www.kativik.qc.ca\/en\/wp-json\/wp\/v2\/pages\/618","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.kativik.qc.ca\/en\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/www.kativik.qc.ca\/en\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/www.kativik.qc.ca\/en\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.kativik.qc.ca\/en\/wp-json\/wp\/v2\/comments?post=618"}],"version-history":[{"count":286,"href":"https:\/\/www.kativik.qc.ca\/en\/wp-json\/wp\/v2\/pages\/618\/revisions"}],"predecessor-version":[{"id":26543,"href":"https:\/\/www.kativik.qc.ca\/en\/wp-json\/wp\/v2\/pages\/618\/revisions\/26543"}],"wp:attachment":[{"href":"https:\/\/www.kativik.qc.ca\/en\/wp-json\/wp\/v2\/media?parent=618"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}