CINXE.COM

Brunei Darussalam: Talian ANAK 121 – Child Helpline International

<!doctype html> <html lang="en-GB"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="profile" href="https://gmpg.org/xfn/11"> <script> (()=>{var e={};e.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(e){if("object"==typeof window)return window}}(),function({ampUrl:n,isCustomizePreview:t,isAmpDevMode:r,noampQueryVarName:o,noampQueryVarValue:s,disabledStorageKey:i,mobileUserAgents:a,regexRegex:c}){if("undefined"==typeof sessionStorage)return;const d=new RegExp(c);if(!a.some((e=>{const n=e.match(d);return!(!n||!new RegExp(n[1],n[2]).test(navigator.userAgent))||navigator.userAgent.includes(e)})))return;e.g.addEventListener("DOMContentLoaded",(()=>{const e=document.getElementById("amp-mobile-version-switcher");if(!e)return;e.hidden=!1;const n=e.querySelector("a[href]");n&&n.addEventListener("click",(()=>{sessionStorage.removeItem(i)}))}));const g=r&&["paired-browsing-non-amp","paired-browsing-amp"].includes(window.name);if(sessionStorage.getItem(i)||t||g)return;const u=new URL(location.href),m=new URL(n);m.hash=u.hash,u.searchParams.has(o)&&s===u.searchParams.get(o)?sessionStorage.setItem(i,"1"):m.href!==u.href&&(window.stop(),location.replace(m.href))}({"ampUrl":"https:\/\/childhelplineinternational.org\/brunei-darussalam-talian-anak-121\/?amp=1","noampQueryVarName":"noamp","noampQueryVarValue":"mobile","disabledStorageKey":"amp_mobile_redirect_disabled","mobileUserAgents":["Mobile","Android","Silk\/","Kindle","BlackBerry","Opera Mini","Opera Mobi"],"regexRegex":"^\\\/((?:.|\\n)+)\\\/([i]*)$","isCustomizePreview":false,"isAmpDevMode":false})})(); </script> <title>Brunei Darussalam: Talian ANAK 121 &#8211; Child Helpline International</title> <style> .pro-wccp:before { content: "\f160"; top: 3px; } .pro-wccp:before{ color:#02CA03 !important } .pro-wccp { transform: rotate(45deg); } </style> <script id="wccp_pro_disable_hot_keys"> /*****************For contenteditable tags***************/ var wccp_pro_iscontenteditable_flag = false; function wccp_pro_iscontenteditable(e) { var e = e || window.event; // also there is no e.target property in IE. instead IE uses window.event.srcElement var target = e.target || e.srcElement; var iscontenteditable = "false"; if(typeof target.getAttribute!="undefined" ) { iscontenteditable = target.getAttribute("contenteditable"); // Return true or false as string if(typeof target.hasAttribute!="undefined") { if(target.hasAttribute("contenteditable")) iscontenteditable = true; } } console.log("iscontenteditable:" + iscontenteditable); var iscontenteditable2 = false; if(typeof target.isContentEditable!="undefined" ) iscontenteditable2 = target.isContentEditable; // Return true or false as boolean if(target.parentElement !=null) iscontenteditable2 = target.parentElement.isContentEditable; if (iscontenteditable == "true" || iscontenteditable == true || iscontenteditable2 == true) { if(typeof target.style!="undefined" ) target.style.cursor = "text"; //wccp_pro_log_to_console_if_allowed("", iscontenteditable + " " + iscontenteditable2); wccp_pro_iscontenteditable_flag = true; wccp_pro_log_to_console_if_allowed("function", "wccp_pro_iscontenteditable: true"); return true; } wccp_pro_log_to_console_if_allowed("function", "wccp_pro_iscontenteditable: false"); //wccp_pro_iscontenteditable_flag = false; } /******************************************************/ function wccp_pro_clear_any_selection() { if(window.wccp_pro_iscontenteditable_flag == true) return; wccp_pro_log_to_console_if_allowed("function", "wccp_pro_clear_any_selection"); var myName = wccp_pro_clear_any_selection.caller.toString(); myName = myName.substr('function '.length); myName = myName.substr(0, myName.indexOf('(')); console.log("called_by: " + myName); if (window.getSelection) { if (window.getSelection().empty) { // Chrome window.getSelection().empty(); } else if (window.getSelection().removeAllRanges) { // Firefox window.getSelection().removeAllRanges(); } } else if (document.selection) { // IE? document.selection.empty(); } //show_wccp_pro_message("You are not allowed to make this operation"); } /*Is content_editable element*/ function is_content_editable_element(element_name = "") { if (element_name == "TEXT" || element_name == "#TEXT" || element_name == "TEXTAREA" || element_name == "INPUT" || element_name == "PASSWORD" || element_name == "SELECT" || element_name == "OPTION" || element_name == "EMBED" || element_name == "CODE" || element_name == "CODEBLOCK") { wccp_pro_log_to_console_if_allowed("function", "is_content_editable_element: true >>" + element_name); return true; } wccp_pro_log_to_console_if_allowed("function", "is_content_editable_element: false >>" + element_name); return false; } /*Is selection enabled element*/ /* function is_selection_enabled_element(element_name = "") { if (is_content_editable_element == true) { wccp_pro_log_to_console_if_allowed("function", "is_selection_enabled_element: true >>" + element_name); return true; } wccp_pro_log_to_console_if_allowed("function", "is_selection_enabled_element: false >>" + element_name); return false; } */ /*Hot keys function */ function disable_hot_keys(e) { wccp_pro_log_to_console_if_allowed("function", "disable_hot_keys"); e = e || window.event; //console.log(e); if (!e) return; var key; if(window.event) key = window.event.keyCode; /*IE*/ else if (e.hasOwnProperty("which")) key = e.which; /*firefox (97)*/ wccp_pro_log_to_console_if_allowed("Data:", key); var elemtype = e.target.tagName; elemtype = elemtype.toUpperCase(); var sel = getSelectionTextAndContainerElement(); if(elemtype == "BODY" && sel.text != "") elemtype = sel.containerElement.tagName; /* no need for it when tag name is BODY, so we get the selected text tag name */ /*elemtype must be merged by elemtype checker on function disable_copy & disable_copy_ie*/ if (is_content_editable_element(elemtype) == true) { elemtype = 'TEXT'; } if(wccp_pro_iscontenteditable(e) == true) elemtype = 'TEXT'; if (e.ctrlKey || e.metaKey) { if (elemtype!= 'TEXT' && (key == 97 || key == 99 || key == 120 || key == 26 || key == 43)) { show_wccp_pro_message('<b>Alert:</b> You are not allowed to copy content or view source'); return false; } if (elemtype!= 'TEXT') { } } return true; } window.addEventListener('load', function (){ if(window.Zepto || !window.jQuery) jQuery = $; jQuery(document).ready(function() { jQuery(document).bind("keyup keydown", disable_hot_keys); }); }); </script> <style> .wccp_pro_copy_code_button { line-height: 6px; width: auto; font-size: 8pt; font-family: tahoma; margin-top: 1px; margin-right: 2px; position:absolute; top:0; right:0; border-radius: 4px; opacity: 100%; margin-top: -30px; } .wccp_pro_copy_code_button:hover { opacity: 100%; } .wccp_pro_copy_code_button[disabled] { opacity: 40%; border-color: red; } code,pre { overflow: visible; white-space: pre-line; } </style> <script id="wccp_pro_disable_Right_Click"> function nocontext(e) { wccp_pro_log_to_console_if_allowed("function", "nocontext"); e = e || window.event; // also there is no e.target property in IE. instead IE uses window.event.srcElement if (apply_class_exclusion(e) == 'Yes') return true; var exception_tags = 'NOTAG,'; var clickedTag = (e==null) ? event.srcElement.tagName : e.target.tagName; console.log("clickedTag: " + clickedTag); var target = e.target || e.srcElement; var parent_tag = ""; var parent_of_parent_tag = ""; if(target.parentElement != null) { parent_tag = target.parentElement.tagName; if(target.parentElement.parentElement != null) parent_of_parent_tag = target.parentElement.parentElement.tagName; } var checker = 'checked'; if ((clickedTag == "IMG" || clickedTag == "FIGURE" || clickedTag == "SVG" || clickedTag == "PROTECTEDIMGDIV") && checker == 'checked') { if (alertMsg_IMG != "")show_wccp_pro_message(alertMsg_IMG); return false; }else {exception_tags = exception_tags + 'IMG,';} checker = ''; if ((clickedTag == "VIDEO" || clickedTag == "PROTECTEDWCCPVIDEO" || clickedTag == "EMBED") && checker == 'checked') { if (alertMsg_VIDEO != "")show_wccp_pro_message(alertMsg_VIDEO); return false; }else {exception_tags = exception_tags + 'VIDEO,PROTECTEDWCCPVIDEO,EMBED,';} checker = ''; if ((clickedTag == "A" || clickedTag == "TIME" || parent_tag == "A" || parent_of_parent_tag == "A") && checker == 'checked') { if (alertMsg_A != "")show_wccp_pro_message(alertMsg_A); return false; }else {exception_tags = exception_tags + 'A,';if(parent_tag == "A" || parent_of_parent_tag == "A") clickedTag = "A";} checker = ''; if ((clickedTag == "P" || clickedTag == "B" || clickedTag == "FONT" || clickedTag == "LI" || clickedTag == "UL" || clickedTag == "STRONG" || clickedTag == "OL" || clickedTag == "BLOCKQUOTE" || clickedTag == "TH" || clickedTag == "TR" || clickedTag == "TD" || clickedTag == "SPAN" || clickedTag == "EM" || clickedTag == "SMALL" || clickedTag == "I" || clickedTag == "BUTTON") && checker == 'checked') { if (alertMsg_PB != "")show_wccp_pro_message(alertMsg_PB); return false; }else {exception_tags = exception_tags + 'P,B,FONT,LI,UL,STRONG,OL,BLOCKQUOTE,TD,SPAN,EM,SMALL,I,BUTTON,';} checker = ''; if ((clickedTag == "INPUT" || clickedTag == "PASSWORD") && checker == 'checked') { if (alertMsg_INPUT != "")show_wccp_pro_message(alertMsg_INPUT); return false; }else {exception_tags = exception_tags + 'INPUT,PASSWORD,';} checker = ''; if ((clickedTag == "H1" || clickedTag == "H2" || clickedTag == "H3" || clickedTag == "H4" || clickedTag == "H5" || clickedTag == "H6" || clickedTag == "ASIDE" || clickedTag == "NAV") && checker == 'checked') { if (alertMsg_H != "")show_wccp_pro_message(alertMsg_H); return false; }else {exception_tags = exception_tags + 'H1,H2,H3,H4,H5,H6,';} checker = ''; if (clickedTag == "TEXTAREA" && checker == 'checked') { if (alertMsg_TEXTAREA != "")show_wccp_pro_message(alertMsg_TEXTAREA); return false; }else {exception_tags = exception_tags + 'TEXTAREA,';} checker = ''; if ((clickedTag == "DIV" || clickedTag == "BODY" || clickedTag == "HTML" || clickedTag == "ARTICLE" || clickedTag == "SECTION" || clickedTag == "NAV" || clickedTag == "HEADER" || clickedTag == "FOOTER") && checker == 'checked') { if (alertMsg_EmptySpaces != "")show_wccp_pro_message(alertMsg_EmptySpaces); return false; } else { if (exception_tags.indexOf(clickedTag)!=-1) { return true; } else return false; } } function disable_drag_images(e) { wccp_pro_log_to_console_if_allowed("function", "disable_drag_images"); var e = e || window.event; // also there is no e.target property in IE. instead IE uses window.event.srcElement var target = e.target || e.srcElement; //For contenteditable tags if (apply_class_exclusion(e) == "Yes") return true; var elemtype = e.target.nodeName; if (elemtype != "IMG") {return;} elemtype = elemtype.toUpperCase(); var disable_drag_drop_images = 'checked'; if (disable_drag_drop_images != "checked") return true; if (window.location.href.indexOf("/user/") > -1) { return true; //To allow users to drag & drop images when editing thier profiles } show_wccp_pro_message(alertMsg_IMG); return false; } var alertMsg_IMG = "<b> Photography on this page is copyright protected </b>"; var alertMsg_A = "Alert: This link is protected"; var alertMsg_PB = "Alert: Right click on text is disabled"; var alertMsg_INPUT = "Alert: Right click is disabled"; var alertMsg_H = "Alert: Right click on headlines is disabled"; var alertMsg_TEXTAREA = "Alert: Right click is disabled"; var alertMsg_EmptySpaces = "Alert: Right click on empty spaces is disabled"; var alertMsg_VIDEO = "Alert: Right click on videos is disabled"; document.oncontextmenu=null; document.oncontextmenu = nocontext; document.addEventListener("contextmenu",nocontext); window.addEventListener("contextmenu",nocontext); </script> <script id="wccp_pro_disable_drag_images"> document.ondragstart = disable_drag_images; window.addEventListener('load', function (){ if(window.Zepto || !window.jQuery) jQuery = $; jQuery(document).ready(function(){ jQuery('img').each(function() { jQuery(this).attr('draggable', false); }); }); }); </script> <style id="wccp_pro_style1"> img{ -moz-user-select: none; -webkit-user-select: none; -ms-user-select: none; -khtml-user-select: none; user-select: none; -webkit-user-drag: none; } </style> <style>/* Start your code after this line */ /* End your code before this line */</style><script id="wccp_pro_class_exclusion"> function copyToClipboard(elem) { // create hidden text element, if it doesn't already exist var targetId = "_wccp_pro_hiddenCopyText_"; { // must use a temporary form element for the selection and copy target = document.getElementById(targetId); if (!target) { var target = document.createElement("textarea"); target.style.position = "absolute"; target.style.left = "-9999px"; target.style.top = "0"; target.id = targetId; document.body.appendChild(target); } target.textContent = elem.textContent; } // select the content var currentFocus = document.activeElement; target.focus(); target.setSelectionRange(0, target.value.length); // copy the selection var succeed; try { succeed = document.execCommand("copy"); } catch(e) { succeed = false; } // restore original focus if (currentFocus && typeof currentFocus.focus === "function") { currentFocus.focus(); } // clear temporary content target.textContent = ""; document.getElementsByTagName('span')[0].innerHTML = " "; return succeed; } /**************************************************/ function wccp_pro_log_to_console_if_allowed(title = "title", data = "") { var myName = ""; if(wccp_pro_log_to_console_if_allowed.caller != null) myName = wccp_pro_log_to_console_if_allowed.caller.toString(); myName = myName.substr('function '.length); myName = myName.substr(0, myName.indexOf('(')); //console.log("function_name: " + myName); } /**************************************************/ function fallbackCopyTextToClipboard(text) { var textArea = document.createElement("textarea"); textArea.value = text; document.body.appendChild(textArea); textArea.focus(); textArea.select(); try { var successful = document.execCommand("copy"); var msg = successful ? "successful" : "unsuccessful"; console.log("Fallback: Copying text command was " + msg); } catch (err) { console.error("Fallback: Oops, unable to copy", err); } document.body.removeChild(textArea); } /*****************************************/ function copyTextToClipboard(text) { if (!navigator.clipboard) { fallbackCopyTextToClipboard(text); return; } navigator.clipboard.writeText(text).then( function() { console.log("Async: Copying to clipboard was successful!"); }, function(err) { console.error("Async: Could not copy text: ", err); } ); } /*****************************************/ /*getSelectionTextAndContainerElement*/ function getSelectionTextAndContainerElement() { var text = "", containerElement = null; if (typeof window.getSelection != "undefined") { var sel = window.getSelection(); if (sel.rangeCount) { var node = sel.getRangeAt(0).commonAncestorContainer; containerElement = node.nodeType == 1 ? node : node.parentNode; if (typeof(containerElement.parentElement) != 'undefined') current_clicked_object = containerElement.parentElement; text = sel.toString(); } } else if (typeof document.selection != "undefined" && document.selection.type != "Control") { var textRange = document.selection.createRange(); containerElement = textRange.parentElement(); text = textRange.text; } return { text: text, containerElement: containerElement }; } function getSelectionParentElement() { var parentEl = null, sel; if (window.getSelection) { sel = window.getSelection(); if (sel.rangeCount) { parentEl = sel.getRangeAt(0).commonAncestorContainer; //sel.getRangeAt(0).startContainer.parentNode; if (parentEl.nodeType != 1) { parentEl = parentEl.parentNode; } } } else if ( (sel = document.selection) && sel.type != "Control") { parentEl = sel.createRange().parentElement(); } let arr = new Array(); arr["nodeName"] = "cant_find_parent_element"; if(parentEl != null) return parentEl; else return arr; } /*****************************************/ function sleep(ms) { return new Promise(resolve => setTimeout(resolve, ms)); } /*****************************************/ </script> <script id="apply_class_exclusion"> function apply_class_exclusion(e) { wccp_pro_log_to_console_if_allowed("function", "apply_class_exclusion" + e); var my_return = 'No'; var e = e || window.event; // also there is no e.target property in IE. instead IE uses window.event.srcElement var target = e.target || e.srcElement || 'nothing'; //if(target.parentElement != null) console.log (target.parentElement.className); var excluded_classes = '' + ''; var class_to_exclude = ""; if(target.parentElement != null) { class_to_exclude = target.className + ' ' + target.parentElement.className || ''; }else{ class_to_exclude = target.className; } var class_to_exclude_array = Array(); //console.log(class_to_exclude); if (typeof(class_to_exclude) != 'undefined') class_to_exclude_array = class_to_exclude.split(" "); //console.log (class_to_exclude_array); class_to_exclude_array.forEach(function(item) { if(item != '' && excluded_classes.indexOf(item)>=0) { //target.style.cursor = "text"; //console.log ('Yes'); my_return = 'Yes'; } }); try { class_to_exclude = target.parentElement.getAttribute('class') || target.parentElement.className || ''; } catch(err) { class_to_exclude = ''; } if(class_to_exclude != '' && excluded_classes.indexOf(class_to_exclude)>=0) { //target.style.cursor = "text"; my_return = 'Yes'; } return my_return; } </script> <style id="wccp_pro_style2" data-asas-style=""> *[contenteditable] , [contenteditable] *,*[contenteditable="true"] , [contenteditable="true"] * { /* for contenteditable tags*/ , /* for tags inside contenteditable tags*/ -webkit-user-select: auto !important; cursor: text !important; user-select: text !important; pointer-events: auto !important; } /* *[contenteditable]::selection, [contenteditable] *::selection, [contenteditable="true"]::selection, [contenteditable="true"] *::selection { background: Highlight !important; color: HighlightText !important;} *[contenteditable]::-moz-selection, [contenteditable="true"] *::-moz-selection { background: Highlight !important; color: HighlightText !important;} input::selection,textarea::selection, code::selection, code > *::selection { background: Highlight !important; color: HighlightText !important;} input::-moz-selection,textarea::-moz-selection, code::-moz-selection, code > *::-moz-selection { background: Highlight !important; color: HighlightText !important;} */ a{ cursor: pointer ; pointer-events: auto !important;} </style><style>TEXT,TEXTAREA,input[type="text"] {cursor: text !important; user-select: text !important;}</style><meta name='robots' content='max-image-preview:large' /> <style>img:is([sizes="auto" i], [sizes^="auto," i]) { contain-intrinsic-size: 3000px 1500px }</style> <link rel='dns-prefetch' href='//use.fontawesome.com' /> <link rel='dns-prefetch' href='//www.googletagmanager.com' /> <link rel="alternate" type="application/rss+xml" title="Child Helpline International &raquo; Feed" href="https://childhelplineinternational.org/feed/" /> <link rel="alternate" type="application/rss+xml" title="Child Helpline International &raquo; Comments Feed" href="https://childhelplineinternational.org/comments/feed/" /> <script> window._wpemojiSettings = {"baseUrl":"https:\/\/s.w.org\/images\/core\/emoji\/15.0.3\/72x72\/","ext":".png","svgUrl":"https:\/\/s.w.org\/images\/core\/emoji\/15.0.3\/svg\/","svgExt":".svg","source":{"concatemoji":"https:\/\/childhelplineinternational.org\/wp-includes\/js\/wp-emoji-release.min.js?ver=6.7.1"}}; /*! This file is auto-generated */ !function(i,n){var o,s,e;function c(e){try{var t={supportTests:e,timestamp:(new Date).valueOf()};sessionStorage.setItem(o,JSON.stringify(t))}catch(e){}}function p(e,t,n){e.clearRect(0,0,e.canvas.width,e.canvas.height),e.fillText(t,0,0);var t=new Uint32Array(e.getImageData(0,0,e.canvas.width,e.canvas.height).data),r=(e.clearRect(0,0,e.canvas.width,e.canvas.height),e.fillText(n,0,0),new Uint32Array(e.getImageData(0,0,e.canvas.width,e.canvas.height).data));return t.every(function(e,t){return e===r[t]})}function u(e,t,n){switch(t){case"flag":return n(e,"\ud83c\udff3\ufe0f\u200d\u26a7\ufe0f","\ud83c\udff3\ufe0f\u200b\u26a7\ufe0f")?!1:!n(e,"\ud83c\uddfa\ud83c\uddf3","\ud83c\uddfa\u200b\ud83c\uddf3")&&!n(e,"\ud83c\udff4\udb40\udc67\udb40\udc62\udb40\udc65\udb40\udc6e\udb40\udc67\udb40\udc7f","\ud83c\udff4\u200b\udb40\udc67\u200b\udb40\udc62\u200b\udb40\udc65\u200b\udb40\udc6e\u200b\udb40\udc67\u200b\udb40\udc7f");case"emoji":return!n(e,"\ud83d\udc26\u200d\u2b1b","\ud83d\udc26\u200b\u2b1b")}return!1}function f(e,t,n){var r="undefined"!=typeof WorkerGlobalScope&&self instanceof WorkerGlobalScope?new OffscreenCanvas(300,150):i.createElement("canvas"),a=r.getContext("2d",{willReadFrequently:!0}),o=(a.textBaseline="top",a.font="600 32px Arial",{});return e.forEach(function(e){o[e]=t(a,e,n)}),o}function t(e){var t=i.createElement("script");t.src=e,t.defer=!0,i.head.appendChild(t)}"undefined"!=typeof Promise&&(o="wpEmojiSettingsSupports",s=["flag","emoji"],n.supports={everything:!0,everythingExceptFlag:!0},e=new Promise(function(e){i.addEventListener("DOMContentLoaded",e,{once:!0})}),new Promise(function(t){var n=function(){try{var e=JSON.parse(sessionStorage.getItem(o));if("object"==typeof e&&"number"==typeof e.timestamp&&(new Date).valueOf()<e.timestamp+604800&&"object"==typeof e.supportTests)return e.supportTests}catch(e){}return null}();if(!n){if("undefined"!=typeof Worker&&"undefined"!=typeof OffscreenCanvas&&"undefined"!=typeof URL&&URL.createObjectURL&&"undefined"!=typeof Blob)try{var e="postMessage("+f.toString()+"("+[JSON.stringify(s),u.toString(),p.toString()].join(",")+"));",r=new Blob([e],{type:"text/javascript"}),a=new Worker(URL.createObjectURL(r),{name:"wpTestEmojiSupports"});return void(a.onmessage=function(e){c(n=e.data),a.terminate(),t(n)})}catch(e){}c(n=f(s,u,p))}t(n)}).then(function(e){for(var t in e)n.supports[t]=e[t],n.supports.everything=n.supports.everything&&n.supports[t],"flag"!==t&&(n.supports.everythingExceptFlag=n.supports.everythingExceptFlag&&n.supports[t]);n.supports.everythingExceptFlag=n.supports.everythingExceptFlag&&!n.supports.flag,n.DOMReady=!1,n.readyCallback=function(){n.DOMReady=!0}}).then(function(){return e}).then(function(){var e;n.supports.everything||(n.readyCallback(),(e=n.source||{}).concatemoji?t(e.concatemoji):e.wpemoji&&e.twemoji&&(t(e.twemoji),t(e.wpemoji)))}))}((window,document),window._wpemojiSettings); </script> <style id='wp-emoji-styles-inline-css'> img.wp-smiley, img.emoji { display: inline !important; border: none !important; box-shadow: none !important; height: 1em !important; width: 1em !important; margin: 0 0.07em !important; vertical-align: -0.1em !important; background: none !important; padding: 0 !important; } </style> <style id='classic-theme-styles-inline-css'> /*! This file is auto-generated */ .wp-block-button__link{color:#fff;background-color:#32373c;border-radius:9999px;box-shadow:none;text-decoration:none;padding:calc(.667em + 2px) calc(1.333em + 2px);font-size:1.125em}.wp-block-file__button{background:#32373c;color:#fff;text-decoration:none} </style> <style id='global-styles-inline-css'> :root{--wp--preset--aspect-ratio--square: 1;--wp--preset--aspect-ratio--4-3: 4/3;--wp--preset--aspect-ratio--3-4: 3/4;--wp--preset--aspect-ratio--3-2: 3/2;--wp--preset--aspect-ratio--2-3: 2/3;--wp--preset--aspect-ratio--16-9: 16/9;--wp--preset--aspect-ratio--9-16: 9/16;--wp--preset--color--black: #000000;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #ffffff;--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #cf2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;--wp--preset--color--luminous-vivid-amber: #fcb900;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #00d084;--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgba(252,185,0,1) 0%,rgba(255,105,0,1) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgba(255,105,0,1) 0%,rgb(207,46,46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);--wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);--wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);--wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);--wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);--wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);--wp--preset--font-size--small: 13px;--wp--preset--font-size--medium: 20px;--wp--preset--font-size--large: 36px;--wp--preset--font-size--x-large: 42px;--wp--preset--spacing--20: 0.44rem;--wp--preset--spacing--30: 0.67rem;--wp--preset--spacing--40: 1rem;--wp--preset--spacing--50: 1.5rem;--wp--preset--spacing--60: 2.25rem;--wp--preset--spacing--70: 3.38rem;--wp--preset--spacing--80: 5.06rem;--wp--preset--shadow--natural: 6px 6px 9px rgba(0, 0, 0, 0.2);--wp--preset--shadow--deep: 12px 12px 50px rgba(0, 0, 0, 0.4);--wp--preset--shadow--sharp: 6px 6px 0px rgba(0, 0, 0, 0.2);--wp--preset--shadow--outlined: 6px 6px 0px -3px rgba(255, 255, 255, 1), 6px 6px rgba(0, 0, 0, 1);--wp--preset--shadow--crisp: 6px 6px 0px rgba(0, 0, 0, 1);}:where(.is-layout-flex){gap: 0.5em;}:where(.is-layout-grid){gap: 0.5em;}body .is-layout-flex{display: flex;}.is-layout-flex{flex-wrap: wrap;align-items: center;}.is-layout-flex > :is(*, div){margin: 0;}body .is-layout-grid{display: grid;}.is-layout-grid > :is(*, div){margin: 0;}:where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;}:where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;} :where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;} :where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;} :root :where(.wp-block-pullquote){font-size: 1.5em;line-height: 1.6;} </style> <link rel='stylesheet' id='frontendCSS-css' href='https://childhelplineinternational.org/wp-content/plugins/safety-exit/assets/css/frontend.css?ver=6.7.1' media='all' /> <link rel='stylesheet' id='font-awesome-free-css' href='//use.fontawesome.com/releases/v5.3.1/css/all.css?ver=6.7.1' media='all' /> <link rel='stylesheet' id='ivory-search-styles-css' href='https://childhelplineinternational.org/wp-content/plugins/add-search-to-menu/public/css/ivory-search.min.css?ver=5.5.7' media='all' /> <link rel='stylesheet' id='hello-elementor-css' href='https://childhelplineinternational.org/wp-content/themes/hello-elementor/style.min.css?ver=3.0.2' media='all' /> <link rel='stylesheet' id='hello-elementor-theme-style-css' href='https://childhelplineinternational.org/wp-content/themes/hello-elementor/theme.min.css?ver=3.0.2' media='all' /> <link rel='stylesheet' id='hello-elementor-header-footer-css' href='https://childhelplineinternational.org/wp-content/themes/hello-elementor/header-footer.min.css?ver=3.0.2' media='all' /> <link rel='stylesheet' id='elementor-frontend-css' href='https://childhelplineinternational.org/wp-content/plugins/elementor/assets/css/frontend.min.css?ver=3.25.9' media='all' /> <link rel='stylesheet' id='elementor-post-5-css' href='https://childhelplineinternational.org/wp-content/uploads/elementor/css/post-5.css?ver=1732181425' media='all' /> <link rel='stylesheet' id='widget-search-form-css' href='https://childhelplineinternational.org/wp-content/plugins/elementor-pro/assets/css/widget-search-form.min.css?ver=3.25.4' media='all' /> <link rel='stylesheet' id='elementor-icons-shared-0-css' href='https://childhelplineinternational.org/wp-content/plugins/elementor/assets/lib/font-awesome/css/fontawesome.min.css?ver=5.15.3' media='all' /> <link rel='stylesheet' id='elementor-icons-fa-solid-css' href='https://childhelplineinternational.org/wp-content/plugins/elementor/assets/lib/font-awesome/css/solid.min.css?ver=5.15.3' media='all' /> <link rel='stylesheet' id='widget-image-css' href='https://childhelplineinternational.org/wp-content/plugins/elementor/assets/css/widget-image.min.css?ver=3.25.9' media='all' /> <link rel='stylesheet' id='widget-text-editor-css' href='https://childhelplineinternational.org/wp-content/plugins/elementor/assets/css/widget-text-editor.min.css?ver=3.25.9' media='all' /> <link rel='stylesheet' id='widget-heading-css' href='https://childhelplineinternational.org/wp-content/plugins/elementor/assets/css/widget-heading.min.css?ver=3.25.9' media='all' /> <link rel='stylesheet' id='e-animation-grow-css' href='https://childhelplineinternational.org/wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-grow.min.css?ver=3.25.9' media='all' /> <link rel='stylesheet' id='widget-social-icons-css' href='https://childhelplineinternational.org/wp-content/plugins/elementor/assets/css/widget-social-icons.min.css?ver=3.25.9' media='all' /> <link rel='stylesheet' id='e-apple-webkit-css' href='https://childhelplineinternational.org/wp-content/plugins/elementor/assets/css/conditionals/apple-webkit.min.css?ver=3.25.9' media='all' /> <link rel='stylesheet' id='widget-post-info-css' href='https://childhelplineinternational.org/wp-content/plugins/elementor-pro/assets/css/widget-post-info.min.css?ver=3.25.4' media='all' /> <link rel='stylesheet' id='widget-icon-list-css' href='https://childhelplineinternational.org/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css?ver=3.25.9' media='all' /> <link rel='stylesheet' id='elementor-icons-fa-regular-css' href='https://childhelplineinternational.org/wp-content/plugins/elementor/assets/lib/font-awesome/css/regular.min.css?ver=5.15.3' media='all' /> <link rel='stylesheet' id='widget-post-navigation-css' href='https://childhelplineinternational.org/wp-content/plugins/elementor-pro/assets/css/widget-post-navigation.min.css?ver=3.25.4' media='all' /> <link rel='stylesheet' id='feedzy-rss-feeds-elementor-css' href='https://childhelplineinternational.org/wp-content/plugins/feedzy-rss-feeds/css/feedzy-rss-feeds.css?ver=1' media='all' /> <link rel='stylesheet' id='elementor-icons-css' href='https://childhelplineinternational.org/wp-content/plugins/elementor/assets/lib/eicons/css/elementor-icons.min.css?ver=5.32.0' media='all' /> <link rel='stylesheet' id='swiper-css' href='https://childhelplineinternational.org/wp-content/plugins/elementor/assets/lib/swiper/v8/css/swiper.min.css?ver=8.4.5' media='all' /> <link rel='stylesheet' id='e-swiper-css' href='https://childhelplineinternational.org/wp-content/plugins/elementor/assets/css/conditionals/e-swiper.min.css?ver=3.25.9' media='all' /> <link rel='stylesheet' id='e-popup-style-css' href='https://childhelplineinternational.org/wp-content/plugins/elementor-pro/assets/css/conditionals/popup.min.css?ver=3.25.4' media='all' /> <link rel='stylesheet' id='widget-google_maps-css' href='https://childhelplineinternational.org/wp-content/plugins/elementor/assets/css/widget-google_maps.min.css?ver=3.25.9' media='all' /> <link rel='stylesheet' id='elementor-post-3735-css' href='https://childhelplineinternational.org/wp-content/uploads/elementor/css/post-3735.css?ver=1732199260' media='all' /> <link rel='stylesheet' id='elementor-post-241-css' href='https://childhelplineinternational.org/wp-content/uploads/elementor/css/post-241.css?ver=1732181426' media='all' /> <link rel='stylesheet' id='elementor-post-163-css' href='https://childhelplineinternational.org/wp-content/uploads/elementor/css/post-163.css?ver=1732181426' media='all' /> <link rel='stylesheet' id='elementor-post-10362-css' href='https://childhelplineinternational.org/wp-content/uploads/elementor/css/post-10362.css?ver=1732181478' media='all' /> <link rel='stylesheet' id='print-protection.css-css' href='https://childhelplineinternational.org/wp-content/plugins/wccp-pro/css/print-protection.css?wccp_ver_num=9&#038;ver=6.7.1' media='all' /> <link rel='stylesheet' id='elementor-icons-fa-brands-css' href='https://childhelplineinternational.org/wp-content/plugins/elementor/assets/lib/font-awesome/css/brands.min.css?ver=5.15.3' media='all' /> <script id="cookie-law-info-js-extra"> var _ckyConfig = {"_ipData":[],"_assetsURL":"https:\/\/childhelplineinternational.org\/wp-content\/plugins\/cookie-law-info\/lite\/frontend\/images\/","_publicURL":"https:\/\/childhelplineinternational.org","_expiry":"365","_categories":[{"name":"Necessary","slug":"necessary","isNecessary":true,"ccpaDoNotSell":true,"cookies":[],"active":true,"defaultConsent":{"gdpr":true,"ccpa":true}},{"name":"Functional","slug":"functional","isNecessary":false,"ccpaDoNotSell":true,"cookies":[],"active":true,"defaultConsent":{"gdpr":false,"ccpa":false}},{"name":"Analytics","slug":"analytics","isNecessary":false,"ccpaDoNotSell":true,"cookies":[],"active":true,"defaultConsent":{"gdpr":false,"ccpa":false}},{"name":"Performance","slug":"performance","isNecessary":false,"ccpaDoNotSell":true,"cookies":[],"active":true,"defaultConsent":{"gdpr":false,"ccpa":false}},{"name":"Advertisement","slug":"advertisement","isNecessary":false,"ccpaDoNotSell":true,"cookies":[],"active":true,"defaultConsent":{"gdpr":false,"ccpa":false}}],"_activeLaw":"gdpr","_rootDomain":"","_block":"1","_showBanner":"1","_bannerConfig":{"settings":{"type":"classic","preferenceCenterType":"pushdown","position":"top","applicableLaw":"gdpr"},"behaviours":{"reloadBannerOnAccept":false,"loadAnalyticsByDefault":false,"animations":{"onLoad":"animate","onHide":"sticky"}},"config":{"revisitConsent":{"status":false,"tag":"revisit-consent","position":"bottom-right","meta":{"url":"#"},"styles":{"background-color":"#0056A7"},"elements":{"title":{"type":"text","tag":"revisit-consent-title","status":true,"styles":{"color":"#0056a7"}}}},"preferenceCenter":{"toggle":{"status":true,"tag":"detail-category-toggle","type":"toggle","states":{"active":{"styles":{"background-color":"#1863DC"}},"inactive":{"styles":{"background-color":"#D0D5D2"}}}}},"categoryPreview":{"status":false,"toggle":{"status":true,"tag":"detail-category-preview-toggle","type":"toggle","states":{"active":{"styles":{"background-color":"#1863DC"}},"inactive":{"styles":{"background-color":"#D0D5D2"}}}}},"videoPlaceholder":{"status":true,"styles":{"background-color":"#000000","border-color":"#000000","color":"#ffffff"}},"readMore":{"status":false,"tag":"readmore-button","type":"link","meta":{"noFollow":true,"newTab":true},"styles":{"color":"#1863DC","background-color":"transparent","border-color":"transparent"}},"auditTable":{"status":true},"optOption":{"status":true,"toggle":{"status":true,"tag":"optout-option-toggle","type":"toggle","states":{"active":{"styles":{"background-color":"#1863dc"}},"inactive":{"styles":{"background-color":"#FFFFFF"}}}}}}},"_version":"3.2.7","_logConsent":"1","_tags":[{"tag":"accept-button","styles":{"color":"#FFFFFF","background-color":"#1863DC","border-color":"#1863DC"}},{"tag":"reject-button","styles":{"color":"#1863DC","background-color":"transparent","border-color":"#1863DC"}},{"tag":"settings-button","styles":{"color":"#1863DC","background-color":"transparent","border-color":"#1863DC"}},{"tag":"readmore-button","styles":{"color":"#1863DC","background-color":"transparent","border-color":"transparent"}},{"tag":"donotsell-button","styles":{"color":"#1863DC","background-color":"transparent","border-color":"transparent"}},{"tag":"accept-button","styles":{"color":"#FFFFFF","background-color":"#1863DC","border-color":"#1863DC"}},{"tag":"revisit-consent","styles":{"background-color":"#0056A7"}}],"_shortCodes":[{"key":"cky_readmore","content":"<a href=\"#\" class=\"cky-policy\" aria-label=\"Cookie Policy\" target=\"_blank\" rel=\"noopener\" data-cky-tag=\"readmore-button\">Cookie Policy<\/a>","tag":"readmore-button","status":false,"attributes":{"rel":"nofollow","target":"_blank"}},{"key":"cky_show_desc","content":"<button class=\"cky-show-desc-btn\" data-cky-tag=\"show-desc-button\" aria-label=\"Show more\">Show more<\/button>","tag":"show-desc-button","status":true,"attributes":[]},{"key":"cky_hide_desc","content":"<button class=\"cky-show-desc-btn\" data-cky-tag=\"hide-desc-button\" aria-label=\"Show less\">Show less<\/button>","tag":"hide-desc-button","status":true,"attributes":[]},{"key":"cky_category_toggle_label","content":"[cky_{{status}}_category_label] [cky_preference_{{category_slug}}_title]","tag":"","status":true,"attributes":[]},{"key":"cky_enable_category_label","content":"Enable","tag":"","status":true,"attributes":[]},{"key":"cky_disable_category_label","content":"Disable","tag":"","status":true,"attributes":[]},{"key":"cky_video_placeholder","content":"<div class=\"video-placeholder-normal\" data-cky-tag=\"video-placeholder\" id=\"[UNIQUEID]\"><p class=\"video-placeholder-text-normal\" data-cky-tag=\"placeholder-title\">Please accept cookies to access this content<\/p><\/div>","tag":"","status":true,"attributes":[]},{"key":"cky_enable_optout_label","content":"Enable","tag":"","status":true,"attributes":[]},{"key":"cky_disable_optout_label","content":"Disable","tag":"","status":true,"attributes":[]},{"key":"cky_optout_toggle_label","content":"[cky_{{status}}_optout_label] [cky_optout_option_title]","tag":"","status":true,"attributes":[]},{"key":"cky_optout_option_title","content":"Do Not Sell or Share My Personal Information","tag":"","status":true,"attributes":[]},{"key":"cky_optout_close_label","content":"Close","tag":"","status":true,"attributes":[]}],"_rtl":"","_language":"en","_providersToBlock":[]}; var _ckyStyles = {"css":".cky-hide{display: none;}.cky-btn-revisit-wrapper{display: flex; align-items: center; justify-content: center; background: #0056a7; width: 45px; height: 45px; border-radius: 50%; position: fixed; z-index: 999999; cursor: pointer;}.cky-revisit-bottom-left{bottom: 15px; left: 15px;}.cky-revisit-bottom-right{bottom: 15px; right: 15px;}.cky-btn-revisit-wrapper .cky-btn-revisit{display: flex; align-items: center; justify-content: center; background: none; border: none; cursor: pointer; position: relative; margin: 0; padding: 0;}.cky-btn-revisit-wrapper .cky-btn-revisit img{max-width: fit-content; margin: 0; height: 30px; width: 30px;}.cky-revisit-bottom-left:hover::before{content: attr(data-tooltip); position: absolute; background: #4E4B66; color: #ffffff; left: calc(100% + 7px); font-size: 12px; line-height: 16px; width: max-content; padding: 4px 8px; border-radius: 4px;}.cky-revisit-bottom-left:hover::after{position: absolute; content: \"\"; border: 5px solid transparent; left: calc(100% + 2px); border-left-width: 0; border-right-color: #4E4B66;}.cky-revisit-bottom-right:hover::before{content: attr(data-tooltip); position: absolute; background: #4E4B66; color: #ffffff; right: calc(100% + 7px); font-size: 12px; line-height: 16px; width: max-content; padding: 4px 8px; border-radius: 4px;}.cky-revisit-bottom-right:hover::after{position: absolute; content: \"\"; border: 5px solid transparent; right: calc(100% + 2px); border-right-width: 0; border-left-color: #4E4B66;}.cky-revisit-hide{display: none;}.cky-consent-container{position: fixed; width: 100%; box-sizing: border-box; z-index: 9999999;}.cky-classic-bottom{bottom: 0; left: 0;}.cky-classic-top{top: 0; left: 0;}.cky-consent-container .cky-consent-bar{background: #ffffff; border: 1px solid; padding: 16.5px 24px; box-shadow: 0 -1px 10px 0 #acabab4d;}.cky-consent-bar .cky-banner-btn-close{position: absolute; right: 9px; top: 5px; background: none; border: none; cursor: pointer; padding: 0; margin: 0; height: auto; width: auto; min-height: 0; line-height: 0; text-shadow: none; box-shadow: none;}.cky-consent-bar .cky-banner-btn-close img{width: 9px; height: 9px; margin: 0;}.cky-custom-brand-logo-wrapper .cky-custom-brand-logo{width: 100px; height: auto; margin: 0 0 10px 0;}.cky-notice .cky-title{color: #212121; font-weight: 700; font-size: 18px; line-height: 24px; margin: 0 0 10px 0;}.cky-notice-group{display: flex; justify-content: space-between; align-items: center;}.cky-notice-des *{font-size: 14px;}.cky-notice-des{color: #212121; font-size: 14px; line-height: 24px; font-weight: 400;}.cky-notice-des img{height: 25px; width: 25px;}.cky-consent-bar .cky-notice-des p{color: inherit; margin-top: 0; overflow-wrap: break-word;}.cky-notice-des p:last-child{margin-bottom: 0;}.cky-notice-des a.cky-policy,.cky-notice-des button.cky-policy{font-size: 14px; color: #1863dc; white-space: nowrap; cursor: pointer; background: transparent; border: 1px solid; text-decoration: underline;}.cky-notice-des button.cky-policy{padding: 0;}.cky-notice-des a.cky-policy:focus-visible,.cky-consent-bar .cky-banner-btn-close:focus-visible,.cky-notice-des button.cky-policy:focus-visible,.cky-category-direct-switch input[type=\"checkbox\"]:focus-visible,.cky-preference-content-wrapper .cky-show-desc-btn:focus-visible,.cky-accordion-header .cky-accordion-btn:focus-visible,.cky-switch input[type=\"checkbox\"]:focus-visible,.cky-footer-wrapper a:focus-visible,.cky-btn:focus-visible{outline: 2px solid #1863dc; outline-offset: 2px;}.cky-btn:focus:not(:focus-visible),.cky-accordion-header .cky-accordion-btn:focus:not(:focus-visible),.cky-preference-content-wrapper .cky-show-desc-btn:focus:not(:focus-visible),.cky-btn-revisit-wrapper .cky-btn-revisit:focus:not(:focus-visible),.cky-preference-header .cky-btn-close:focus:not(:focus-visible),.cky-banner-btn-close:focus:not(:focus-visible){outline: 0;}button.cky-show-desc-btn:not(:hover):not(:active){color: #1863dc; background: transparent;}button.cky-accordion-btn:not(:hover):not(:active),button.cky-banner-btn-close:not(:hover):not(:active),button.cky-btn-close:not(:hover):not(:active),button.cky-btn-revisit:not(:hover):not(:active){background: transparent;}.cky-consent-bar button:hover,.cky-modal.cky-modal-open button:hover,.cky-consent-bar button:focus,.cky-modal.cky-modal-open button:focus{text-decoration: none;}.cky-notice-btn-wrapper{display: flex; justify-content: center; align-items: center; margin-left: 15px;}.cky-notice-btn-wrapper .cky-btn{text-shadow: none; box-shadow: none;}.cky-btn{font-size: 14px; font-family: inherit; line-height: 24px; padding: 8px 27px; font-weight: 500; margin: 0 8px 0 0; border-radius: 2px; white-space: nowrap; cursor: pointer; text-align: center; text-transform: none; min-height: 0;}.cky-btn:hover{opacity: 0.8;}.cky-btn-customize{color: #1863dc; background: transparent; border: 2px solid; border-color: #1863dc; padding: 8px 28px 8px 14px; position: relative;}.cky-btn-reject{color: #1863dc; background: transparent; border: 2px solid #1863dc;}.cky-btn-accept{background: #1863dc; color: #ffffff; border: 2px solid #1863dc;}.cky-consent-bar .cky-btn-customize::after{position: absolute; content: \"\"; display: inline-block; top: 18px; right: 12px; border-left: 5px solid transparent; border-right: 5px solid transparent; border-top: 6px solid; border-top-color: inherit;}.cky-consent-container.cky-consent-bar-expand .cky-btn-customize::after{transform: rotate(-180deg);}.cky-btn:last-child{margin-right: 0;}@media (max-width: 768px){.cky-notice-group{display: block;}.cky-notice-btn-wrapper{margin: 0;}.cky-notice-btn-wrapper{flex-wrap: wrap;}.cky-notice-btn-wrapper .cky-btn{flex: auto; max-width: 100%; margin-top: 10px; white-space: unset;}}@media (max-width: 576px){.cky-btn-accept{order: 1; width: 100%;}.cky-btn-customize{order: 2;}.cky-btn-reject{order: 3; margin-right: 0;}.cky-consent-container.cky-consent-bar-expand .cky-consent-bar{display: none;}.cky-consent-container .cky-consent-bar{padding: 16.5px 0;}.cky-custom-brand-logo-wrapper .cky-custom-brand-logo, .cky-notice .cky-title, .cky-notice-des, .cky-notice-btn-wrapper, .cky-category-direct-preview-wrapper{padding: 0 24px;}.cky-notice-des{max-height: 40vh; overflow-y: scroll;}}@media (max-width: 352px){.cky-notice .cky-title{font-size: 16px;}.cky-notice-des *{font-size: 12px;}.cky-notice-des, .cky-btn, .cky-notice-des a.cky-policy{font-size: 12px;}}.cky-preference-wrapper{display: none;}.cky-consent-container.cky-classic-bottom.cky-consent-bar-expand{animation: cky-classic-expand 1s;}.cky-consent-container.cky-classic-bottom.cky-consent-bar-expand .cky-preference-wrapper{display: block;}@keyframes cky-classic-expand{0%{transform: translateY(50%);}100%{transform: translateY(0%);}}.cky-consent-container.cky-classic-top .cky-preference-wrapper{animation: cky-classic-top-expand 1s;}.cky-consent-container.cky-classic-top.cky-consent-bar-expand .cky-preference-wrapper{display: block;}@keyframes cky-classic-top-expand{0%{opacity: 0; transform: translateY(-50%);}50%{opacity: 0;}100%{opacity: 1; transform: translateY(0%);}}.cky-preference{padding: 0 24px; color: #212121; overflow-y: scroll; max-height: 48vh;}.cky-preference-center,.cky-preference,.cky-preference-header,.cky-footer-wrapper{background-color: inherit;}.cky-preference-center,.cky-preference,.cky-preference-body-wrapper,.cky-accordion-wrapper{color: inherit;}.cky-preference-header .cky-btn-close{cursor: pointer; vertical-align: middle; padding: 0; margin: 0; display: none; background: none; border: none; height: auto; width: auto; min-height: 0; line-height: 0; box-shadow: none; text-shadow: none;}.cky-preference-header .cky-btn-close img{margin: 0; height: 10px; width: 10px;}.cky-preference-header{margin: 16px 0 0 0; display: flex; align-items: center; justify-content: space-between;}.cky-preference-header .cky-preference-title{font-size: 18px; font-weight: 700; line-height: 24px;}.cky-preference-content-wrapper *{font-size: 14px;}.cky-preference-content-wrapper{font-size: 14px; line-height: 24px; font-weight: 400; padding: 12px 0; border-bottom: 1px solid;}.cky-preference-content-wrapper img{height: 25px; width: 25px;}.cky-preference-content-wrapper .cky-show-desc-btn{font-size: 14px; font-family: inherit; color: #1863dc; text-decoration: none; line-height: 24px; padding: 0; margin: 0; white-space: nowrap; cursor: pointer; background: transparent; border-color: transparent; text-transform: none; min-height: 0; text-shadow: none; box-shadow: none;}.cky-preference-body-wrapper .cky-preference-content-wrapper p{color: inherit; margin-top: 0;}.cky-accordion-wrapper{margin-bottom: 10px;}.cky-accordion{border-bottom: 1px solid;}.cky-accordion:last-child{border-bottom: none;}.cky-accordion .cky-accordion-item{display: flex; margin-top: 10px;}.cky-accordion .cky-accordion-body{display: none;}.cky-accordion.cky-accordion-active .cky-accordion-body{display: block; padding: 0 22px; margin-bottom: 16px;}.cky-accordion-header-wrapper{cursor: pointer; width: 100%;}.cky-accordion-item .cky-accordion-header{display: flex; justify-content: space-between; align-items: center;}.cky-accordion-header .cky-accordion-btn{font-size: 16px; font-family: inherit; color: #212121; line-height: 24px; background: none; border: none; font-weight: 700; padding: 0; margin: 0; cursor: pointer; text-transform: none; min-height: 0; text-shadow: none; box-shadow: none;}.cky-accordion-header .cky-always-active{color: #008000; font-weight: 600; line-height: 24px; font-size: 14px;}.cky-accordion-header-des *{font-size: 14px;}.cky-accordion-header-des{color: #212121; font-size: 14px; line-height: 24px; margin: 10px 0 16px 0;}.cky-accordion-header-wrapper .cky-accordion-header-des p{color: inherit; margin-top: 0;}.cky-accordion-chevron{margin-right: 22px; position: relative; cursor: pointer;}.cky-accordion-chevron-hide{display: none;}.cky-accordion .cky-accordion-chevron i::before{content: \"\"; position: absolute; border-right: 1.4px solid; border-bottom: 1.4px solid; border-color: inherit; height: 6px; width: 6px; -webkit-transform: rotate(-45deg); -moz-transform: rotate(-45deg); -ms-transform: rotate(-45deg); -o-transform: rotate(-45deg); transform: rotate(-45deg); transition: all 0.2s ease-in-out; top: 8px;}.cky-accordion.cky-accordion-active .cky-accordion-chevron i::before{-webkit-transform: rotate(45deg); -moz-transform: rotate(45deg); -ms-transform: rotate(45deg); -o-transform: rotate(45deg); transform: rotate(45deg);}.cky-audit-table{background: #f4f4f4; border-radius: 6px;}.cky-audit-table .cky-empty-cookies-text{color: inherit; font-size: 12px; line-height: 24px; margin: 0; padding: 10px;}.cky-audit-table .cky-cookie-des-table{font-size: 12px; line-height: 24px; font-weight: normal; padding: 15px 10px; border-bottom: 1px solid; border-bottom-color: inherit; margin: 0;}.cky-audit-table .cky-cookie-des-table:last-child{border-bottom: none;}.cky-audit-table .cky-cookie-des-table li{list-style-type: none; display: flex; padding: 3px 0;}.cky-audit-table .cky-cookie-des-table li:first-child{padding-top: 0;}.cky-cookie-des-table li div:first-child{width: 100px; font-weight: 600; word-break: break-word; word-wrap: break-word;}.cky-cookie-des-table li div:last-child{flex: 1; word-break: break-word; word-wrap: break-word; margin-left: 8px;}.cky-cookie-des-table li div:last-child p{color: inherit; margin-top: 0;}.cky-cookie-des-table li div:last-child p:last-child{margin-bottom: 0;}.cky-prefrence-btn-wrapper{display: flex; align-items: center; justify-content: flex-end; padding: 18px 24px; border-top: 1px solid;}.cky-prefrence-btn-wrapper .cky-btn{text-shadow: none; box-shadow: none;}.cky-category-direct-preview-btn-wrapper .cky-btn-preferences{text-shadow: none; box-shadow: none;}.cky-prefrence-btn-wrapper .cky-btn-accept,.cky-prefrence-btn-wrapper .cky-btn-reject{display: none;}.cky-btn-preferences{color: #1863dc; background: transparent; border: 2px solid #1863dc;}.cky-footer-wrapper{position: relative;}.cky-footer-shadow{display: block; width: 100%; height: 40px; background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #ffffff 100%); position: absolute; bottom: 100%;}.cky-preference-center,.cky-preference,.cky-preference-body-wrapper,.cky-preference-content-wrapper,.cky-accordion-wrapper,.cky-accordion,.cky-footer-wrapper,.cky-prefrence-btn-wrapper{border-color: inherit;}@media (max-width: 768px){.cky-preference{max-height: 35vh;}}@media (max-width: 576px){.cky-consent-bar-hide{display: none;}.cky-preference{max-height: 100vh; padding: 0;}.cky-preference-body-wrapper{padding: 60px 24px 200px;}.cky-preference-body-wrapper-reject-hide{padding: 60px 24px 165px;}.cky-preference-header{position: fixed; width: 100%; box-sizing: border-box; z-index: 999999999; margin: 0; padding: 16px 24px; border-bottom: 1px solid #f4f4f4;}.cky-preference-header .cky-btn-close{display: block;}.cky-prefrence-btn-wrapper{display: block;}.cky-accordion.cky-accordion-active .cky-accordion-body{padding-right: 0;}.cky-prefrence-btn-wrapper .cky-btn{width: 100%; margin-top: 10px; margin-right: 0;}.cky-prefrence-btn-wrapper .cky-btn:first-child{margin-top: 0;}.cky-accordion:last-child{padding-bottom: 20px;}.cky-prefrence-btn-wrapper .cky-btn-accept, .cky-prefrence-btn-wrapper .cky-btn-reject{display: block;}.cky-footer-wrapper{position: fixed; bottom: 0; width: 100%;}}@media (max-width: 425px){.cky-accordion-chevron{margin-right: 15px;}.cky-accordion.cky-accordion-active .cky-accordion-body{padding: 0 15px;}}@media (max-width: 352px){.cky-preference-header .cky-preference-title{font-size: 16px;}.cky-preference-content-wrapper *, .cky-accordion-header-des *{font-size: 12px;}.cky-accordion-header-des, .cky-preference-content-wrapper, .cky-preference-content-wrapper .cky-show-desc-btn{font-size: 12px;}.cky-accordion-header .cky-accordion-btn{font-size: 14px;}}.cky-category-direct-preview-wrapper{display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; margin-top: 16px;}.cky-category-direct-preview{display: flex; flex-wrap: wrap; align-items: center; font-size: 14px; font-weight: 600; line-height: 24px; color: #212121;}.cky-category-direct-preview-section{width: 100%; display: flex; justify-content: space-between; flex-wrap: wrap;}.cky-category-direct-item{display: flex; margin: 0 30px 10px 0; cursor: pointer;}.cky-category-direct-item label{font-size: 14px; font-weight: 600; margin-right: 10px; cursor: pointer; word-break: break-word;}.cky-category-direct-switch input[type=\"checkbox\"]{display: inline-block; position: relative; width: 33px; height: 18px; margin: 0; background: #d0d5d2; -webkit-appearance: none; border-radius: 50px; border: none; cursor: pointer; vertical-align: middle; outline: 0; top: 0;}.cky-category-direct-switch input[type=\"checkbox\"]:checked{background: #1863dc;}.cky-category-direct-switch input[type=\"checkbox\"]:before{position: absolute; content: \"\"; height: 15px; width: 15px; left: 2px; bottom: 2px; margin: 0; border-radius: 50%; background-color: white; -webkit-transition: 0.4s; transition: 0.4s;}.cky-category-direct-switch input[type=\"checkbox\"]:checked:before{-webkit-transform: translateX(14px); -ms-transform: translateX(14px); transform: translateX(14px);}.cky-category-direct-switch input[type=\"checkbox\"]:after{display: none;}.cky-category-direct-switch .cky-category-direct-switch-enabled:checked{background: #818181;}@media (max-width: 576px){.cky-category-direct-preview-wrapper{display: block;}.cky-category-direct-item{justify-content: space-between; width: 45%; margin: 0 0 10px 0;}.cky-category-direct-preview-btn-wrapper .cky-btn-preferences{width: 100%;}}@media (max-width: 352px){.cky-category-direct-preview{font-size: 12px;}}.cky-switch{display: flex;}.cky-switch input[type=\"checkbox\"]{position: relative; width: 44px; height: 24px; margin: 0; background: #d0d5d2; -webkit-appearance: none; border-radius: 50px; cursor: pointer; outline: 0; border: none; top: 0;}.cky-switch input[type=\"checkbox\"]:checked{background: #3a76d8;}.cky-switch input[type=\"checkbox\"]:before{position: absolute; content: \"\"; height: 20px; width: 20px; left: 2px; bottom: 2px; border-radius: 50%; background-color: white; -webkit-transition: 0.4s; transition: 0.4s; margin: 0;}.cky-switch input[type=\"checkbox\"]:after{display: none;}.cky-switch input[type=\"checkbox\"]:checked:before{-webkit-transform: translateX(20px); -ms-transform: translateX(20px); transform: translateX(20px);}@media (max-width: 425px){.cky-switch input[type=\"checkbox\"]{width: 38px; height: 21px;}.cky-switch input[type=\"checkbox\"]:before{height: 17px; width: 17px;}.cky-switch input[type=\"checkbox\"]:checked:before{-webkit-transform: translateX(17px); -ms-transform: translateX(17px); transform: translateX(17px);}}.video-placeholder-youtube{background-size: 100% 100%; background-position: center; background-repeat: no-repeat; background-color: #b2b0b059; position: relative; display: flex; align-items: center; justify-content: center; max-width: 100%;}.video-placeholder-text-youtube{text-align: center; align-items: center; padding: 10px 16px; background-color: #000000cc; color: #ffffff; border: 1px solid; border-radius: 2px; cursor: pointer;}.video-placeholder-normal{background-image: url(\"\/wp-content\/plugins\/cookie-law-info\/lite\/frontend\/images\/placeholder.svg\"); background-size: 80px; background-position: center; background-repeat: no-repeat; background-color: #b2b0b059; position: relative; display: flex; align-items: flex-end; justify-content: center; max-width: 100%;}.video-placeholder-text-normal{align-items: center; padding: 10px 16px; text-align: center; border: 1px solid; border-radius: 2px; cursor: pointer;}.cky-rtl{direction: rtl; text-align: right;}.cky-rtl .cky-banner-btn-close{left: 9px; right: auto;}.cky-rtl .cky-notice-btn-wrapper .cky-btn:last-child{margin-right: 8px;}.cky-rtl .cky-notice-btn-wrapper{margin-left: 0; margin-right: 15px;}.cky-rtl .cky-prefrence-btn-wrapper .cky-btn{margin-right: 8px;}.cky-rtl .cky-prefrence-btn-wrapper .cky-btn:first-child{margin-right: 0;}.cky-rtl .cky-accordion .cky-accordion-chevron i::before{border: none; border-left: 1.4px solid; border-top: 1.4px solid; left: 12px;}.cky-rtl .cky-accordion.cky-accordion-active .cky-accordion-chevron i::before{-webkit-transform: rotate(-135deg); -moz-transform: rotate(-135deg); -ms-transform: rotate(-135deg); -o-transform: rotate(-135deg); transform: rotate(-135deg);}.cky-rtl .cky-category-direct-preview-btn-wrapper{margin-right: 15px; margin-left: 0;}.cky-rtl .cky-category-direct-item label{margin-right: 0; margin-left: 10px;}.cky-rtl .cky-category-direct-preview-section .cky-category-direct-item:first-child{margin: 0 0 10px 0;}@media (max-width: 992px){.cky-rtl .cky-category-direct-preview-btn-wrapper{margin-right: 0;}}@media (max-width: 768px){.cky-rtl .cky-notice-btn-wrapper{margin-right: 0;}.cky-rtl .cky-notice-btn-wrapper .cky-btn:first-child{margin-right: 0;}}@media (max-width: 576px){.cky-rtl .cky-prefrence-btn-wrapper .cky-btn{margin-right: 0;}.cky-rtl .cky-notice-btn-wrapper .cky-btn{margin-right: 0;}.cky-rtl .cky-notice-btn-wrapper .cky-btn:last-child{margin-right: 0;}.cky-rtl .cky-notice-btn-wrapper .cky-btn-reject{margin-right: 8px;}.cky-rtl .cky-accordion.cky-accordion-active .cky-accordion-body{padding: 0 22px 0 0;}}@media (max-width: 425px){.cky-rtl .cky-accordion.cky-accordion-active .cky-accordion-body{padding: 0 15px 0 0;}}"}; </script> <script src="https://childhelplineinternational.org/wp-content/plugins/cookie-law-info/lite/frontend/js/script.min.js?ver=3.2.7" id="cookie-law-info-js"></script> <script src="https://childhelplineinternational.org/wp-content/plugins/google-analytics-premium/assets/js/frontend-gtag.min.js?ver=9.2.2" id="monsterinsights-frontend-script-js" async data-wp-strategy="async"></script> <script data-cfasync="false" data-wpfc-render="false" data-cookieyes="cookieyes-analytics" id='monsterinsights-frontend-script-js-extra'>var monsterinsights_frontend = {"js_events_tracking":"true","download_extensions":"doc,pdf,ppt,zip,xls,docx,pptx,xlsx","inbound_paths":"[{\"path\":\"\\\/go\\\/\",\"label\":\"affiliate\"},{\"path\":\"\\\/recommend\\\/\",\"label\":\"affiliate\"}]","home_url":"https:\/\/childhelplineinternational.org","hash_tracking":"false","v4_id":"G-5E0SVBXMGG"};</script> <script src="https://childhelplineinternational.org/wp-includes/js/jquery/jquery.min.js?ver=3.7.1" id="jquery-core-js"></script> <script src="https://childhelplineinternational.org/wp-includes/js/jquery/jquery-migrate.min.js?ver=3.4.1" id="jquery-migrate-js"></script> <script src="https://childhelplineinternational.org/wp-content/plugins/safety-exit/assets/js/frontend.js?ver=6.7.1" id="frontendJs-js"></script> <link rel="https://api.w.org/" href="https://childhelplineinternational.org/wp-json/" /><link rel="alternate" title="JSON" type="application/json" href="https://childhelplineinternational.org/wp-json/wp/v2/posts/3735" /><link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://childhelplineinternational.org/xmlrpc.php?rsd" /> <meta name="generator" content="WordPress 6.7.1" /> <link rel="canonical" href="https://childhelplineinternational.org/brunei-darussalam-talian-anak-121/" /> <link rel='shortlink' href='https://childhelplineinternational.org/?p=3735' /> <link rel="alternate" title="oEmbed (JSON)" type="application/json+oembed" href="https://childhelplineinternational.org/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fchildhelplineinternational.org%2Fbrunei-darussalam-talian-anak-121%2F" /> <link rel="alternate" title="oEmbed (XML)" type="text/xml+oembed" href="https://childhelplineinternational.org/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fchildhelplineinternational.org%2Fbrunei-darussalam-talian-anak-121%2F&#038;format=xml" /> <style id="cky-style-inline">[data-cky-tag]{visibility:hidden;}</style><style type="text/css"> .feedzy-rss-link-icon:after { content: url("https://childhelplineinternational.org/wp-content/plugins/feedzy-rss-feeds/img/external-link.png"); margin-left: 3px; } </style> <script>window.sftExtBtn={};window.sftExtBtn.classes='bottom right rectangle';window.sftExtBtn.icon='<i class="fas fa-sign-out-alt"></i>';window.sftExtBtn.newTabUrl='https://google.com';window.sftExtBtn.currentTabUrl='https://facebook.com';window.sftExtBtn.btnType='rectangle';window.sftExtBtn.text='Leave Site Quickly!';window.sftExtBtn.shouldShow=true;</script><style>:root{--sftExt_bgColor:rgba(58,102,208,1);--sftExt_textColor:rgba(255,255,255,1);--sftExt_active:inline-block;--sftExt_activeMobile:inline-block;--sftExt_mobileBreakPoint:600px;--sftExt_rectangle_fontSize:1rem;--sftExt_rectangle_letterSpacing:inherit;--sftExt_rectangle_borderRadius:100px;}</style><link rel="alternate" type="text/html" media="only screen and (max-width: 640px)" href="https://childhelplineinternational.org/brunei-darussalam-talian-anak-121/?amp=1"><meta name="generator" content="Elementor 3.25.9; features: additional_custom_breakpoints, e_optimized_control_loading; settings: css_print_method-external, google_font-enabled, font_display-auto"> <style> .e-con.e-parent:nth-of-type(n+4):not(.e-lazyloaded):not(.e-no-lazyload), .e-con.e-parent:nth-of-type(n+4):not(.e-lazyloaded):not(.e-no-lazyload) * { background-image: none !important; } @media screen and (max-height: 1024px) { .e-con.e-parent:nth-of-type(n+3):not(.e-lazyloaded):not(.e-no-lazyload), .e-con.e-parent:nth-of-type(n+3):not(.e-lazyloaded):not(.e-no-lazyload) * { background-image: none !important; } } @media screen and (max-height: 640px) { .e-con.e-parent:nth-of-type(n+2):not(.e-lazyloaded):not(.e-no-lazyload), .e-con.e-parent:nth-of-type(n+2):not(.e-lazyloaded):not(.e-no-lazyload) * { background-image: none !important; } } </style> <link rel="amphtml" href="https://childhelplineinternational.org/brunei-darussalam-talian-anak-121/?amp=1"><style>#amp-mobile-version-switcher{left:0;position:absolute;width:100%;z-index:100}#amp-mobile-version-switcher>a{background-color:#444;border:0;color:#eaeaea;display:block;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-size:16px;font-weight:600;padding:15px 0;text-align:center;-webkit-text-decoration:none;text-decoration:none}#amp-mobile-version-switcher>a:active,#amp-mobile-version-switcher>a:focus,#amp-mobile-version-switcher>a:hover{-webkit-text-decoration:underline;text-decoration:underline}</style> <!-- MonsterInsights Media Tracking --> <script data-cfasync="false" data-wpfc-render="false" data-cookieyes="cookieyes-analytics"> var monsterinsights_tracked_video_marks = {}; var monsterinsights_youtube_percentage_tracking_timeouts = {}; /* Works for YouTube and Vimeo */ function monsterinsights_media_get_id_for_iframe( source, service ) { var iframeUrlParts = source.split('?'); var stripedUrl = iframeUrlParts[0].split('/'); var videoId = stripedUrl[ stripedUrl.length - 1 ]; return service + '-player-' + videoId; } function monsterinsights_media_record_video_event( provider, event, label, parameters = {} ) { __gtagTracker('event', event, { event_category: 'video-' + provider, event_label: label, non_interaction: event === 'impression', ...parameters }); } function monsterinsights_media_maybe_record_video_progress( provider, label, videoId, videoParameters ) { var progressTrackingAllowedMarks = [10,25,50,75]; if ( typeof monsterinsights_tracked_video_marks[ videoId ] == 'undefined' ) { monsterinsights_tracked_video_marks[ videoId ] = []; } var { video_percent } = videoParameters; if ( progressTrackingAllowedMarks.includes( video_percent ) && !monsterinsights_tracked_video_marks[ videoId ].includes( video_percent ) ) { monsterinsights_media_record_video_event( provider, 'video_progress', label, videoParameters ); /* Prevent multiple records for the same percentage */ monsterinsights_tracked_video_marks[ videoId ].push( video_percent ); } } /* --- Vimeo --- */ var monsterinsights_media_vimeo_plays = {}; function monsterinsights_setup_vimeo_events_for_iframe(iframe, title, player) { var playerId = iframe.getAttribute('id'); var videoLabel = title || iframe.title || iframe.getAttribute('src'); if ( !playerId ) { playerId = monsterinsights_media_get_id_for_iframe( iframe.getAttribute('src'), 'vimeo' ); iframe.setAttribute( 'id', playerId ); } monsterinsights_media_vimeo_plays[playerId] = 0; var videoParameters = { video_provider: 'vimeo', video_title: title, video_url: iframe.getAttribute('src') }; /** * Record Impression **/ monsterinsights_media_record_video_event( 'vimeo', 'impression', videoLabel, videoParameters ); /** * Record video start **/ player.on('play', function(data) { let playerId = this.element.id; if ( monsterinsights_media_vimeo_plays[playerId] === 0 ) { monsterinsights_media_vimeo_plays[playerId]++; videoParameters.video_duration = data.duration; videoParameters.video_current_time = data.seconds; videoParameters.video_percent = 0; monsterinsights_media_record_video_event( 'vimeo', 'video_start', videoLabel, videoParameters ); } }); /** * Record video progress **/ player.on('timeupdate', function(data) { var progress = Math.floor(data.percent * 100); videoParameters.video_duration = data.duration; videoParameters.video_current_time = data.seconds; videoParameters.video_percent = progress; monsterinsights_media_maybe_record_video_progress( 'vimeo', videoLabel, playerId, videoParameters ); }); /** * Record video complete **/ player.on('ended', function(data) { videoParameters.video_duration = data.duration; videoParameters.video_current_time = data.seconds; videoParameters.video_percent = 100; monsterinsights_media_record_video_event( 'vimeo', 'video_complete', videoLabel, videoParameters ); }); } function monsterinsights_on_vimeo_load() { var vimeoIframes = document.querySelectorAll("iframe[src*='vimeo']"); vimeoIframes.forEach(function( iframe ) { // Set up the player var player = new Vimeo.Player(iframe); // The getVideoTitle function returns a promise player.getVideoTitle().then(function(title) { /* * Binding the events inside this callback guarantees that we * always have the correct title for the video */ monsterinsights_setup_vimeo_events_for_iframe(iframe, title, player) }); }); } function monsterinsights_media_init_vimeo_events() { var vimeoIframes = document.querySelectorAll("iframe[src*='vimeo']"); if ( vimeoIframes.length ) { /* Maybe load Vimeo API */ if ( window.Vimeo === undefined ) { var tag = document.createElement("script"); tag.src = "https://player.vimeo.com/api/player.js"; tag.setAttribute("onload", "monsterinsights_on_vimeo_load()"); document.body.append(tag); } else { /* Vimeo API already loaded, invoke callback */ monsterinsights_on_vimeo_load(); } } } /* --- End Vimeo --- */ /* --- YouTube --- */ function monsterinsights_media_on_youtube_load() { var monsterinsights_media_youtube_plays = {}; function __onPlayerReady(event) { monsterinsights_media_youtube_plays[event.target.h.id] = 0; var videoParameters = { video_provider: 'youtube', video_title: event.target.videoTitle, video_url: event.target.playerInfo.videoUrl }; monsterinsights_media_record_video_event( 'youtube', 'impression', videoParameters.video_title, videoParameters ); } /** * Record progress callback **/ function __track_youtube_video_progress( player, videoLabel, videoParameters ) { var { playerInfo } = player; var playerId = player.h.id; var duration = playerInfo.duration; /* player.getDuration(); */ var currentTime = playerInfo.currentTime; /* player.getCurrentTime(); */ var percentage = (currentTime / duration) * 100; var progress = Math.floor(percentage); videoParameters.video_duration = duration; videoParameters.video_current_time = currentTime; videoParameters.video_percent = progress; monsterinsights_media_maybe_record_video_progress( 'youtube', videoLabel, playerId, videoParameters ); } function __youtube_on_state_change( event ) { var state = event.data; var player = event.target; var { playerInfo } = player; var playerId = player.h.id; var videoParameters = { video_provider: 'youtube', video_title: player.videoTitle, video_url: playerInfo.videoUrl }; /** * YouTube's API doesn't offer a progress or timeupdate event. * We have to track progress manually by asking the player for the current time, every X milliseconds, using an interval **/ if ( state === YT.PlayerState.PLAYING) { if ( monsterinsights_media_youtube_plays[playerId] === 0 ) { monsterinsights_media_youtube_plays[playerId]++; /** * Record video start **/ videoParameters.video_duration = playerInfo.duration; videoParameters.video_current_time = playerInfo.currentTime; videoParameters.video_percent = 0; monsterinsights_media_record_video_event( 'youtube', 'video_start', videoParameters.video_title, videoParameters ); } monsterinsights_youtube_percentage_tracking_timeouts[ playerId ] = setInterval( __track_youtube_video_progress, 500, player, videoParameters.video_title, videoParameters ); } else if ( state === YT.PlayerState.PAUSED ) { /* When the video is paused clear the interval */ clearInterval( monsterinsights_youtube_percentage_tracking_timeouts[ playerId ] ); } else if ( state === YT.PlayerState.ENDED ) { /** * Record video complete **/ videoParameters.video_duration = playerInfo.duration; videoParameters.video_current_time = playerInfo.currentTime; videoParameters.video_percent = 100; monsterinsights_media_record_video_event( 'youtube', 'video_complete', videoParameters.video_title, videoParameters ); clearInterval( monsterinsights_youtube_percentage_tracking_timeouts[ playerId ] ); } } var youtubeIframes = document.querySelectorAll("iframe[src*='youtube'],iframe[src*='youtu.be']"); youtubeIframes.forEach(function( iframe ) { var playerId = iframe.getAttribute('id'); if ( !playerId ) { playerId = monsterinsights_media_get_id_for_iframe( iframe.getAttribute('src'), 'youtube' ); iframe.setAttribute( 'id', playerId ); } new YT.Player(playerId, { events: { onReady: __onPlayerReady, onStateChange: __youtube_on_state_change } }); }); } function monsterinsights_media_load_youtube_api() { if ( window.YT ) { return; } var youtubeIframes = document.querySelectorAll("iframe[src*='youtube'],iframe[src*='youtu.be']"); if ( 0 === youtubeIframes.length ) { return; } var tag = document.createElement("script"); tag.src = "https://www.youtube.com/iframe_api"; var firstScriptTag = document.getElementsByTagName('script')[0]; firstScriptTag.parentNode.insertBefore(tag, firstScriptTag); } function monsterinsights_media_init_youtube_events() { /* YouTube always looks for a function called onYouTubeIframeAPIReady */ window.onYouTubeIframeAPIReady = monsterinsights_media_on_youtube_load; } /* --- End YouTube --- */ /* --- HTML Videos --- */ function monsterinsights_media_init_html_video_events() { var monsterinsights_media_html_plays = {}; var videos = document.querySelectorAll('video'); var videosCount = 0; videos.forEach(function( video ) { var videoLabel = video.title; if ( !videoLabel ) { var videoCaptionEl = video.nextElementSibling; if ( videoCaptionEl && videoCaptionEl.nodeName.toLowerCase() === 'figcaption' ) { videoLabel = videoCaptionEl.textContent; } else { videoLabel = video.getAttribute('src'); } } var videoTitle = videoLabel; var playerId = video.getAttribute('id'); if ( !playerId ) { playerId = 'html-player-' + videosCount; video.setAttribute('id', playerId); } monsterinsights_media_html_plays[playerId] = 0 var videoSrc = video.getAttribute('src') if ( ! videoSrc && video.currentSrc ) { videoSrc = video.currentSrc; } var videoParameters = { video_provider: 'html', video_title: videoTitle ? videoTitle : videoSrc, video_url: videoSrc, }; /** * Record Impression **/ monsterinsights_media_record_video_event( 'html', 'impression', videoLabel, videoParameters ); /** * Record video start **/ video.addEventListener('play', function(event) { let playerId = event.target.id; if ( monsterinsights_media_html_plays[playerId] === 0 ) { monsterinsights_media_html_plays[playerId]++; videoParameters.video_duration = video.duration; videoParameters.video_current_time = video.currentTime; videoParameters.video_percent = 0; monsterinsights_media_record_video_event( 'html', 'video_start', videoLabel, videoParameters ); } }, false ); /** * Record video progress **/ video.addEventListener('timeupdate', function() { var percentage = (video.currentTime / video.duration) * 100; var progress = Math.floor(percentage); videoParameters.video_duration = video.duration; videoParameters.video_current_time = video.currentTime; videoParameters.video_percent = progress; monsterinsights_media_maybe_record_video_progress( 'html', videoLabel, playerId, videoParameters ); }, false ); /** * Record video complete **/ video.addEventListener('ended', function() { var percentage = (video.currentTime / video.duration) * 100; var progress = Math.floor(percentage); videoParameters.video_duration = video.duration; videoParameters.video_current_time = video.currentTime; videoParameters.video_percent = progress; monsterinsights_media_record_video_event( 'html', 'video_complete', videoLabel, videoParameters ); }, false ); videosCount++; }); } /* --- End HTML Videos --- */ function monsterinsights_media_init_video_events() { /** * HTML Video - Attach events & record impressions */ monsterinsights_media_init_html_video_events(); /** * Vimeo - Attach events & record impressions */ monsterinsights_media_init_vimeo_events(); monsterinsights_media_load_youtube_api(); } /* Attach events */ function monsterinsights_media_load() { if ( typeof(__gtagTracker) === 'undefined' ) { setTimeout(monsterinsights_media_load, 200); return; } if ( document.readyState === "complete" ) { // Need this for cookie plugin. monsterinsights_media_init_video_events(); } else if ( window.addEventListener ) { window.addEventListener( "load", monsterinsights_media_init_video_events, false ); } else if ( window.attachEvent ) { window.attachEvent( "onload", monsterinsights_media_init_video_events); } /** * YouTube - Attach events & record impressions. * We don't need to attach this into page load event * because we already use YT function "onYouTubeIframeAPIReady" * and this will help on using onReady event with the player instantiation. */ monsterinsights_media_init_youtube_events(); } monsterinsights_media_load(); </script> <!-- End MonsterInsights Media Tracking --> <!-- This site uses the Google Analytics by MonsterInsights plugin v9.2.2 - Using Analytics tracking - https://www.monsterinsights.com/ --> <script src="//www.googletagmanager.com/gtag/js?id=G-5E0SVBXMGG" data-cfasync="false" data-wpfc-render="false" data-cookieyes="cookieyes-analytics" async></script> <script data-cfasync="false" data-wpfc-render="false" data-cookieyes="cookieyes-analytics"> var mi_version = '9.2.2'; var mi_track_user = true; var mi_no_track_reason = ''; var MonsterInsightsDefaultLocations = {"page_location":"https:\/\/childhelplineinternational.org\/brunei-darussalam-talian-anak-121\/"}; if ( typeof MonsterInsightsPrivacyGuardFilter === 'function' ) { var MonsterInsightsLocations = (typeof MonsterInsightsExcludeQuery === 'object') ? MonsterInsightsPrivacyGuardFilter( MonsterInsightsExcludeQuery ) : MonsterInsightsPrivacyGuardFilter( MonsterInsightsDefaultLocations ); } else { var MonsterInsightsLocations = (typeof MonsterInsightsExcludeQuery === 'object') ? MonsterInsightsExcludeQuery : MonsterInsightsDefaultLocations; } var disableStrs = [ 'ga-disable-G-5E0SVBXMGG', ]; /* Function to detect opted out users */ function __gtagTrackerIsOptedOut() { for (var index = 0; index < disableStrs.length; index++) { if (document.cookie.indexOf(disableStrs[index] + '=true') > -1) { return true; } } return false; } /* Disable tracking if the opt-out cookie exists. */ if (__gtagTrackerIsOptedOut()) { for (var index = 0; index < disableStrs.length; index++) { window[disableStrs[index]] = true; } } /* Opt-out function */ function __gtagTrackerOptout() { for (var index = 0; index < disableStrs.length; index++) { document.cookie = disableStrs[index] + '=true; expires=Thu, 31 Dec 2099 23:59:59 UTC; path=/'; window[disableStrs[index]] = true; } } if ('undefined' === typeof gaOptout) { function gaOptout() { __gtagTrackerOptout(); } } window.dataLayer = window.dataLayer || []; window.MonsterInsightsDualTracker = { helpers: {}, trackers: {}, }; if (mi_track_user) { function __gtagDataLayer() { dataLayer.push(arguments); } function __gtagTracker(type, name, parameters) { if (!parameters) { parameters = {}; } if (parameters.send_to) { __gtagDataLayer.apply(null, arguments); return; } if (type === 'event') { parameters.send_to = monsterinsights_frontend.v4_id; var hookName = name; if (typeof parameters['event_category'] !== 'undefined') { hookName = parameters['event_category'] + ':' + name; } if (typeof MonsterInsightsDualTracker.trackers[hookName] !== 'undefined') { MonsterInsightsDualTracker.trackers[hookName](parameters); } else { __gtagDataLayer('event', name, parameters); } } else { __gtagDataLayer.apply(null, arguments); } } __gtagTracker('js', new Date()); __gtagTracker('set', { 'developer_id.dZGIzZG': true, }); if ( MonsterInsightsLocations.page_location ) { __gtagTracker('set', MonsterInsightsLocations); } __gtagTracker('config', 'G-5E0SVBXMGG', {"use_amp_client_id":"true","forceSSL":"true","anonymize_ip":"true","link_attribution":"true"} ); window.gtag = __gtagTracker; (function () { /* https://developers.google.com/analytics/devguides/collection/analyticsjs/ */ /* ga and __gaTracker compatibility shim. */ var noopfn = function () { return null; }; var newtracker = function () { return new Tracker(); }; var Tracker = function () { return null; }; var p = Tracker.prototype; p.get = noopfn; p.set = noopfn; p.send = function () { var args = Array.prototype.slice.call(arguments); args.unshift('send'); __gaTracker.apply(null, args); }; var __gaTracker = function () { var len = arguments.length; if (len === 0) { return; } var f = arguments[len - 1]; if (typeof f !== 'object' || f === null || typeof f.hitCallback !== 'function') { if ('send' === arguments[0]) { var hitConverted, hitObject = false, action; if ('event' === arguments[1]) { if ('undefined' !== typeof arguments[3]) { hitObject = { 'eventAction': arguments[3], 'eventCategory': arguments[2], 'eventLabel': arguments[4], 'value': arguments[5] ? arguments[5] : 1, } } } if ('pageview' === arguments[1]) { if ('undefined' !== typeof arguments[2]) { hitObject = { 'eventAction': 'page_view', 'page_path': arguments[2], } } } if (typeof arguments[2] === 'object') { hitObject = arguments[2]; } if (typeof arguments[5] === 'object') { Object.assign(hitObject, arguments[5]); } if ('undefined' !== typeof arguments[1].hitType) { hitObject = arguments[1]; if ('pageview' === hitObject.hitType) { hitObject.eventAction = 'page_view'; } } if (hitObject) { action = 'timing' === arguments[1].hitType ? 'timing_complete' : hitObject.eventAction; hitConverted = mapArgs(hitObject); __gtagTracker('event', action, hitConverted); } } return; } function mapArgs(args) { var arg, hit = {}; var gaMap = { 'eventCategory': 'event_category', 'eventAction': 'event_action', 'eventLabel': 'event_label', 'eventValue': 'event_value', 'nonInteraction': 'non_interaction', 'timingCategory': 'event_category', 'timingVar': 'name', 'timingValue': 'value', 'timingLabel': 'event_label', 'page': 'page_path', 'location': 'page_location', 'title': 'page_title', 'referrer' : 'page_referrer', }; for (arg in args) { if (!(!args.hasOwnProperty(arg) || !gaMap.hasOwnProperty(arg))) { hit[gaMap[arg]] = args[arg]; } else { hit[arg] = args[arg]; } } return hit; } try { f.hitCallback(); } catch (ex) { } }; __gaTracker.create = newtracker; __gaTracker.getByName = newtracker; __gaTracker.getAll = function () { return []; }; __gaTracker.remove = noopfn; __gaTracker.loaded = true; window['__gaTracker'] = __gaTracker; })(); } else { console.log(""); (function () { function __gtagTracker() { return null; } window['__gtagTracker'] = __gtagTracker; window['gtag'] = __gtagTracker; })(); } </script> <!-- / Google Analytics by MonsterInsights --> <link rel="icon" href="https://childhelplineinternational.org/wp-content/uploads/2022/01/cropped-Chicon-white-redbkg-32x32.png" sizes="32x32" /> <link rel="icon" href="https://childhelplineinternational.org/wp-content/uploads/2022/01/cropped-Chicon-white-redbkg-192x192.png" sizes="192x192" /> <link rel="apple-touch-icon" href="https://childhelplineinternational.org/wp-content/uploads/2022/01/cropped-Chicon-white-redbkg-180x180.png" /> <meta name="msapplication-TileImage" content="https://childhelplineinternational.org/wp-content/uploads/2022/01/cropped-Chicon-white-redbkg-270x270.png" /> <style type="text/css"> .is-form-id-1408 .is-search-submit:focus, .is-form-id-1408 .is-search-submit:hover, .is-form-id-1408 .is-search-submit, .is-form-id-1408 .is-search-icon { color: #31bec4 !important; } .is-form-id-1408 .is-search-submit path { fill: #31bec4 !important; } .is-form-id-1408 .is-search-input::-webkit-input-placeholder { color: #8a8b8c !important; } .is-form-id-1408 .is-search-input:-moz-placeholder { color: #8a8b8c !important; opacity: 1; } .is-form-id-1408 .is-search-input::-moz-placeholder { color: #8a8b8c !important; opacity: 1; } .is-form-id-1408 .is-search-input:-ms-input-placeholder { color: #8a8b8c !important; } .is-form-style-1.is-form-id-1408 .is-search-input:focus, .is-form-style-1.is-form-id-1408 .is-search-input:hover, .is-form-style-1.is-form-id-1408 .is-search-input, .is-form-style-2.is-form-id-1408 .is-search-input:focus, .is-form-style-2.is-form-id-1408 .is-search-input:hover, .is-form-style-2.is-form-id-1408 .is-search-input, .is-form-style-3.is-form-id-1408 .is-search-input:focus, .is-form-style-3.is-form-id-1408 .is-search-input:hover, .is-form-style-3.is-form-id-1408 .is-search-input, .is-form-id-1408 .is-search-input:focus, .is-form-id-1408 .is-search-input:hover, .is-form-id-1408 .is-search-input { color: #8a8b8c !important; background-color: #ffffff !important; } </style> <style type="text/css"> .is-form-id-1121 .is-search-submit:focus, .is-form-id-1121 .is-search-submit:hover, .is-form-id-1121 .is-search-submit, .is-form-id-1121 .is-search-icon { color: #31bec4 !important; } .is-form-id-1121 .is-search-submit path { fill: #31bec4 !important; } .is-form-id-1121 .is-search-input::-webkit-input-placeholder { color: #8a8b8c !important; } .is-form-id-1121 .is-search-input:-moz-placeholder { color: #8a8b8c !important; opacity: 1; } .is-form-id-1121 .is-search-input::-moz-placeholder { color: #8a8b8c !important; opacity: 1; } .is-form-id-1121 .is-search-input:-ms-input-placeholder { color: #8a8b8c !important; } .is-form-style-1.is-form-id-1121 .is-search-input:focus, .is-form-style-1.is-form-id-1121 .is-search-input:hover, .is-form-style-1.is-form-id-1121 .is-search-input, .is-form-style-2.is-form-id-1121 .is-search-input:focus, .is-form-style-2.is-form-id-1121 .is-search-input:hover, .is-form-style-2.is-form-id-1121 .is-search-input, .is-form-style-3.is-form-id-1121 .is-search-input:focus, .is-form-style-3.is-form-id-1121 .is-search-input:hover, .is-form-style-3.is-form-id-1121 .is-search-input, .is-form-id-1121 .is-search-input:focus, .is-form-id-1121 .is-search-input:hover, .is-form-id-1121 .is-search-input { color: #8a8b8c !important; background-color: #ffffff !important; } </style> <style type="text/css"> .is-form-id-1094 .is-search-submit:focus, .is-form-id-1094 .is-search-submit:hover, .is-form-id-1094 .is-search-submit, .is-form-id-1094 .is-search-icon { color: #31bec4 !important; } .is-form-id-1094 .is-search-submit path { fill: #31bec4 !important; } .is-form-id-1094 .is-search-input::-webkit-input-placeholder { color: #8a8b8c !important; } .is-form-id-1094 .is-search-input:-moz-placeholder { color: #8a8b8c !important; opacity: 1; } .is-form-id-1094 .is-search-input::-moz-placeholder { color: #8a8b8c !important; opacity: 1; } .is-form-id-1094 .is-search-input:-ms-input-placeholder { color: #8a8b8c !important; } .is-form-style-1.is-form-id-1094 .is-search-input:focus, .is-form-style-1.is-form-id-1094 .is-search-input:hover, .is-form-style-1.is-form-id-1094 .is-search-input, .is-form-style-2.is-form-id-1094 .is-search-input:focus, .is-form-style-2.is-form-id-1094 .is-search-input:hover, .is-form-style-2.is-form-id-1094 .is-search-input, .is-form-style-3.is-form-id-1094 .is-search-input:focus, .is-form-style-3.is-form-id-1094 .is-search-input:hover, .is-form-style-3.is-form-id-1094 .is-search-input, .is-form-id-1094 .is-search-input:focus, .is-form-id-1094 .is-search-input:hover, .is-form-id-1094 .is-search-input { color: #8a8b8c !important; background-color: #ffffff !important; } </style> <style id="wpforms-css-vars-root"> :root { --wpforms-field-border-radius: 3px; --wpforms-field-border-style: solid; --wpforms-field-border-size: 1px; --wpforms-field-background-color: #ffffff; --wpforms-field-border-color: rgba( 0, 0, 0, 0.25 ); --wpforms-field-border-color-spare: rgba( 0, 0, 0, 0.25 ); --wpforms-field-text-color: rgba( 0, 0, 0, 0.7 ); --wpforms-field-menu-color: #ffffff; --wpforms-label-color: rgba( 0, 0, 0, 0.85 ); --wpforms-label-sublabel-color: rgba( 0, 0, 0, 0.55 ); --wpforms-label-error-color: #d63637; --wpforms-button-border-radius: 3px; --wpforms-button-border-style: none; --wpforms-button-border-size: 1px; --wpforms-button-background-color: #066aab; --wpforms-button-border-color: #066aab; --wpforms-button-text-color: #ffffff; --wpforms-page-break-color: #066aab; --wpforms-background-image: none; --wpforms-background-position: center center; --wpforms-background-repeat: no-repeat; --wpforms-background-size: cover; --wpforms-background-width: 100px; --wpforms-background-height: 100px; --wpforms-background-color: rgba( 0, 0, 0, 0 ); --wpforms-background-url: none; --wpforms-container-padding: 0px; --wpforms-container-border-style: none; --wpforms-container-border-width: 1px; --wpforms-container-border-color: #000000; --wpforms-container-border-radius: 3px; --wpforms-field-size-input-height: 43px; --wpforms-field-size-input-spacing: 15px; --wpforms-field-size-font-size: 16px; --wpforms-field-size-line-height: 19px; --wpforms-field-size-padding-h: 14px; --wpforms-field-size-checkbox-size: 16px; --wpforms-field-size-sublabel-spacing: 5px; --wpforms-field-size-icon-size: 1; --wpforms-label-size-font-size: 16px; --wpforms-label-size-line-height: 19px; --wpforms-label-size-sublabel-font-size: 14px; --wpforms-label-size-sublabel-line-height: 17px; --wpforms-button-size-font-size: 17px; --wpforms-button-size-height: 41px; --wpforms-button-size-padding-h: 15px; --wpforms-button-size-margin-top: 10px; --wpforms-container-shadow-size-box-shadow: none; } </style></head> <body class="post-template-default single single-post postid-3735 single-format-standard wp-custom-logo hello-elementor elementor-default elementor-template-full-width elementor-kit-5 elementor-page elementor-page-3735 elementor-page-10362"> <button id="sftExt-frontend-button" class="bottom right rectangle" data-new-tab="https://google.com" data-url="https://facebook.com"><div class="sftExt-inner"><i class="fas fa-sign-out-alt"></i><span>Leave Site Quickly!</span></div></button> <a class="skip-link screen-reader-text" href="#content">Skip to content</a> <div data-elementor-type="header" data-elementor-id="241" class="elementor elementor-241 elementor-location-header" data-elementor-post-type="elementor_library"> <section class="elementor-section elementor-top-section elementor-element elementor-element-56e41908 elementor-section-full_width elementor-section-height-min-height elementor-section-stretched elementor-section-height-default elementor-section-items-middle" data-id="56e41908" data-element_type="section" id="header_pop" data-settings="{&quot;sticky&quot;:&quot;top&quot;,&quot;background_background&quot;:&quot;classic&quot;,&quot;stretch_section&quot;:&quot;section-stretched&quot;,&quot;sticky_on&quot;:[&quot;desktop&quot;,&quot;tablet&quot;,&quot;mobile&quot;],&quot;sticky_offset&quot;:0,&quot;sticky_effects_offset&quot;:0,&quot;sticky_anchor_link_offset&quot;:0}"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-6935b4e4" data-id="6935b4e4" data-element_type="column" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}"> <div class="elementor-widget-wrap elementor-element-populated"> <section class="elementor-section elementor-inner-section elementor-element elementor-element-7155dc33 elementor-reverse-mobile elementor-hidden-mobile elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="7155dc33" data-element_type="section" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-2683b27 elementor-hidden-phone" data-id="2683b27" data-element_type="column" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-35f5e84 elementor-widget elementor-widget-wp-widget-gtranslate" data-id="35f5e84" data-element_type="widget" data-widget_type="wp-widget-gtranslate.default"> <div class="elementor-widget-container"> <div class="gtranslate_wrapper" id="gt-wrapper-64165877"></div> </div> </div> </div> </div> <div class="elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-bcdd374" data-id="bcdd374" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-5e48ea8 elementor-search-form--skin-full_screen elementor-widget elementor-widget-search-form" data-id="5e48ea8" data-element_type="widget" data-settings="{&quot;skin&quot;:&quot;full_screen&quot;}" data-widget_type="search-form.default"> <div class="elementor-widget-container"> <search role="search"> <form class="elementor-search-form" action="https://childhelplineinternational.org" method="get"> <div class="elementor-search-form__toggle" tabindex="0" role="button"> <i aria-hidden="true" class="fas fa-search"></i> <span class="elementor-screen-only">Search</span> </div> <div class="elementor-search-form__container"> <label class="elementor-screen-only" for="elementor-search-form-5e48ea8">Search</label> <input id="elementor-search-form-5e48ea8" placeholder="" class="elementor-search-form__input" type="search" name="s" value=""> <div class="dialog-lightbox-close-button dialog-close-button" role="button" tabindex="0"> <i aria-hidden="true" class="eicon-close"></i> <span class="elementor-screen-only">Close this search box.</span> </div> </div> </form> </search> </div> </div> </div> </div> <div class="elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-6d96243" data-id="6d96243" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-e8b66d4 elementor-align-right elementor-hidden-phone elementor-widget elementor-widget-button" data-id="e8b66d4" data-element_type="widget" data-widget_type="button.default"> <div class="elementor-widget-container"> <div class="elementor-button-wrapper"> <a class="elementor-button elementor-button-link elementor-size-xs" href="https://www.paypal.com/donate/?cmd=_s-xclick&#038;hosted_button_id=W6U7W94RQFP2A&#038;source=url#" target="_blank" id="Donate"> <span class="elementor-button-content-wrapper"> <span class="elementor-button-icon"> </span> <span class="elementor-button-text">DONATE</span> </span> </a> </div> </div> </div> </div> </div> </div> </section> <section class="elementor-section elementor-inner-section elementor-element elementor-element-17d24f68 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="17d24f68" data-element_type="section" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-12 elementor-inner-column elementor-element elementor-element-7af463ff" data-id="7af463ff" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-a0d993f elementor-widget-tablet__width-initial elementor-widget__width-initial elementor-widget elementor-widget-image" data-id="a0d993f" data-element_type="widget" data-widget_type="image.default"> <div class="elementor-widget-container"> <a href="https://childhelplineinternational.org"> <img width="300" height="148" src="https://childhelplineinternational.org/wp-content/uploads/2022/01/CHI-Logo-Red-300x148.png" class="attachment-medium size-medium wp-image-224" alt="Child Helpline International logo" srcset="https://childhelplineinternational.org/wp-content/uploads/2022/01/CHI-Logo-Red-300x148.png 300w, https://childhelplineinternational.org/wp-content/uploads/2022/01/CHI-Logo-Red.png 474w" sizes="(max-width: 300px) 100vw, 300px" /> </a> </div> </div> </div> </div> <div class="elementor-column elementor-col-12 elementor-inner-column elementor-element elementor-element-6840fa9" data-id="6840fa9" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-899dbca elementor-align-justify elementor-hidden-mobile elementor-widget elementor-widget-button" data-id="899dbca" data-element_type="widget" data-widget_type="button.default"> <div class="elementor-widget-container"> <div class="elementor-button-wrapper"> <a class="elementor-button elementor-button-link elementor-size-sm" href="https://childhelplineinternational.org/helplines/"> <span class="elementor-button-content-wrapper"> <span class="elementor-button-text">Find a Child Helpline</span> </span> </a> </div> </div> </div> </div> </div> <div class="elementor-column elementor-col-12 elementor-inner-column elementor-element elementor-element-0621916" data-id="0621916" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-b1ec6e5 elementor-align-justify elementor-widget__width-initial elementor-hidden-mobile elementor-widget elementor-widget-button" data-id="b1ec6e5" data-element_type="widget" data-widget_type="button.default"> <div class="elementor-widget-container"> <div class="elementor-button-wrapper"> <a class="elementor-button elementor-button-link elementor-size-sm" href="https://childhelplineinternational.org/about/"> <span class="elementor-button-content-wrapper"> <span class="elementor-button-text">About Us</span> </span> </a> </div> </div> </div> </div> </div> <div class="elementor-column elementor-col-12 elementor-inner-column elementor-element elementor-element-1a3dccb" data-id="1a3dccb" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-b8966fe elementor-align-justify elementor-hidden-mobile elementor-widget elementor-widget-button" data-id="b8966fe" data-element_type="widget" data-widget_type="button.default"> <div class="elementor-widget-container"> <div class="elementor-button-wrapper"> <a class="elementor-button elementor-button-link elementor-size-sm" href="https://childhelplineinternational.org/programme/"> <span class="elementor-button-content-wrapper"> <span class="elementor-button-text">Our Work</span> </span> </a> </div> </div> </div> </div> </div> <div class="elementor-column elementor-col-12 elementor-inner-column elementor-element elementor-element-e734b53" data-id="e734b53" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-5a1898b elementor-align-justify elementor-hidden-mobile elementor-widget elementor-widget-button" data-id="5a1898b" data-element_type="widget" data-widget_type="button.default"> <div class="elementor-widget-container"> <div class="elementor-button-wrapper"> <a class="elementor-button elementor-button-link elementor-size-sm" href="https://childhelplineinternational.org/resources/"> <span class="elementor-button-content-wrapper"> <span class="elementor-button-text">Resources</span> </span> </a> </div> </div> </div> </div> </div> <div class="elementor-column elementor-col-12 elementor-inner-column elementor-element elementor-element-281fe4e" data-id="281fe4e" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-bbba38e elementor-align-justify elementor-hidden-mobile elementor-widget elementor-widget-button" data-id="bbba38e" data-element_type="widget" data-widget_type="button.default"> <div class="elementor-widget-container"> <div class="elementor-button-wrapper"> <a class="elementor-button elementor-button-link elementor-size-sm" href="https://childhelplineinternational.org/blog/"> <span class="elementor-button-content-wrapper"> <span class="elementor-button-text">Blog</span> </span> </a> </div> </div> </div> </div> </div> <div class="elementor-column elementor-col-12 elementor-inner-column elementor-element elementor-element-aaa7fa3" data-id="aaa7fa3" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-ac36946 elementor-align-justify elementor-hidden-mobile elementor-widget elementor-widget-button" data-id="ac36946" data-element_type="widget" data-widget_type="button.default"> <div class="elementor-widget-container"> <div class="elementor-button-wrapper"> <a class="elementor-button elementor-button-link elementor-size-sm" href="https://childhelplineinternational.org/events/"> <span class="elementor-button-content-wrapper"> <span class="elementor-button-text">Events</span> </span> </a> </div> </div> </div> </div> </div> <div class="elementor-column elementor-col-12 elementor-inner-column elementor-element elementor-element-aa1d8af" data-id="aa1d8af" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-10533805 elementor-align-justify elementor-hidden-mobile elementor-widget elementor-widget-button" data-id="10533805" data-element_type="widget" data-widget_type="button.default"> <div class="elementor-widget-container"> <div class="elementor-button-wrapper"> <a class="elementor-button elementor-button-link elementor-size-xs" href="https://elearning.childhelplineinternational.org/login" id="eLearning"> <span class="elementor-button-content-wrapper"> <span class="elementor-button-icon"> </span> <span class="elementor-button-text">eLearning</span> </span> </a> </div> </div> </div> </div> </div> </div> </section> </div> </div> </div> </section> </div> <div data-elementor-type="wp-post" data-elementor-id="3735" class="elementor elementor-3735" data-elementor-post-type="post"> <section class="elementor-section elementor-top-section elementor-element elementor-element-7c8d8be5 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="7c8d8be5" data-element_type="section"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-70156a0d" data-id="70156a0d" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-6dbb10fd elementor-widget elementor-widget-heading" data-id="6dbb10fd" data-element_type="widget" data-widget_type="heading.default"> <div class="elementor-widget-container"> <h2 class="elementor-heading-title elementor-size-default">Brunei Darussalam: Talian ANAK 121</h2> </div> </div> <div class="elementor-element elementor-element-30c3aee2 elementor-widget elementor-widget-text-editor" data-id="30c3aee2" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <p>Talian ANAK 121 provides an efficient communication channel for people to contact JAPEM relating to cases of abuse, neglect, protection, exploitation, counseling, family problems and more.</p> </div> </div> <section class="elementor-section elementor-inner-section elementor-element elementor-element-279b940c elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="279b940c" data-element_type="section"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-16 elementor-inner-column elementor-element elementor-element-496f4e97" data-id="496f4e97" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-3cf59a1e elementor-widget elementor-widget-image" data-id="3cf59a1e" data-element_type="widget" data-widget_type="image.default"> <div class="elementor-widget-container"> <img fetchpriority="high" decoding="async" width="301" height="301" src="https://childhelplineinternational.org/wp-content/uploads/2020/02/Region-Asia.png" class="attachment-large size-large wp-image-2502" alt="" srcset="https://childhelplineinternational.org/wp-content/uploads/2020/02/Region-Asia.png 301w, https://childhelplineinternational.org/wp-content/uploads/2020/02/Region-Asia-150x150.png 150w" sizes="(max-width: 301px) 100vw, 301px" /> </div> </div> </div> </div> <div class="elementor-column elementor-col-16 elementor-inner-column elementor-element elementor-element-2c324dfe" data-id="2c324dfe" data-element_type="column"> <div class="elementor-widget-wrap"> </div> </div> <div class="elementor-column elementor-col-16 elementor-inner-column elementor-element elementor-element-3ea190be" data-id="3ea190be" data-element_type="column"> <div class="elementor-widget-wrap"> </div> </div> <div class="elementor-column elementor-col-16 elementor-inner-column elementor-element elementor-element-16c433c9" data-id="16c433c9" data-element_type="column"> <div class="elementor-widget-wrap"> </div> </div> <div class="elementor-column elementor-col-16 elementor-inner-column elementor-element elementor-element-1723ea4" data-id="1723ea4" data-element_type="column"> <div class="elementor-widget-wrap"> </div> </div> <div class="elementor-column elementor-col-16 elementor-inner-column elementor-element elementor-element-65f65d88" data-id="65f65d88" data-element_type="column"> <div class="elementor-widget-wrap"> </div> </div> </div> </section> </div> </div> <div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-2575cf66" data-id="2575cf66" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-4ff2c0f5 elementor-widget elementor-widget-image" data-id="4ff2c0f5" data-element_type="widget" data-widget_type="image.default"> <div class="elementor-widget-container"> <img decoding="async" width="300" height="300" src="https://childhelplineinternational.org/wp-content/uploads/2020/02/Asia-Brunei-300x300.png" class="attachment-medium size-medium wp-image-2409" alt="" srcset="https://childhelplineinternational.org/wp-content/uploads/2020/02/Asia-Brunei-300x300.png 300w, https://childhelplineinternational.org/wp-content/uploads/2020/02/Asia-Brunei-150x150.png 150w, https://childhelplineinternational.org/wp-content/uploads/2020/02/Asia-Brunei.png 418w" sizes="(max-width: 300px) 100vw, 300px" /> </div> </div> </div> </div> </div> </section> <section class="elementor-section elementor-top-section elementor-element elementor-element-27a00446 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="27a00446" data-element_type="section"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-3c545641" data-id="3c545641" data-element_type="column" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-3fe52325 elementor-widget elementor-widget-heading" data-id="3fe52325" data-element_type="widget" data-widget_type="heading.default"> <div class="elementor-widget-container"> <h2 class="elementor-heading-title elementor-size-default">Services</h2> </div> </div> <div class="elementor-element elementor-element-26aa830c elementor-widget elementor-widget-text-editor" data-id="26aa830c" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <p>Talian ANAK 121 offers:</p><ul><li><span style="background-color: transparent; color: var( --e-global-color-text ); font-family: var( --e-global-typography-secondary-font-family ), Sans-serif; font-weight: var( --e-global-typography-secondary-font-weight ); word-spacing: var( --e-global-typography-secondary-word-spacing );">Phone</span></li></ul> </div> </div> </div> </div> <div class="elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-22d4dfad" data-id="22d4dfad" data-element_type="column" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-2e51c34f elementor-widget elementor-widget-heading" data-id="2e51c34f" data-element_type="widget" data-widget_type="heading.default"> <div class="elementor-widget-container"> <h2 class="elementor-heading-title elementor-size-default">Operating Information</h2> </div> </div> <div class="elementor-element elementor-element-7129fb91 elementor-widget elementor-widget-text-editor" data-id="7129fb91" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <p>Talian ANAK 121 provides service in:</p><ul><li>Malay</li></ul><p> </p><p>Opening hours are:</p><ul><li>Monday through Sunday 24/7</li></ul> </div> </div> </div> </div> <div class="elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-2b1e6ce2" data-id="2b1e6ce2" data-element_type="column" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-1be07147 elementor-widget elementor-widget-heading" data-id="1be07147" data-element_type="widget" data-widget_type="heading.default"> <div class="elementor-widget-container"> <h2 class="elementor-heading-title elementor-size-default">Contact Details</h2> </div> </div> <div class="elementor-element elementor-element-495acef2 elementor-align-left elementor-icon-list--layout-traditional elementor-list-item-link-full_width elementor-widget elementor-widget-icon-list" data-id="495acef2" data-element_type="widget" data-widget_type="icon-list.default"> <div class="elementor-widget-container"> <ul class="elementor-icon-list-items"> <li class="elementor-icon-list-item"> <a href="https://www.japem.gov.bn/"> <span class="elementor-icon-list-icon"> <i aria-hidden="true" class="fas fa-globe"></i> </span> <span class="elementor-icon-list-text">Website</span> </a> </li> <li class="elementor-icon-list-item"> <a href="tel:121"> <span class="elementor-icon-list-icon"> <i aria-hidden="true" class="fas fa-phone-alt"></i> </span> <span class="elementor-icon-list-text">121</span> </a> </li> <li class="elementor-icon-list-item"> <a href="mailto:taliananak121@japem.gov.bn"> <span class="elementor-icon-list-icon"> <i aria-hidden="true" class="fas fa-envelope"></i> </span> <span class="elementor-icon-list-text">Email</span> </a> </li> <li class="elementor-icon-list-item"> <a href="https://www.facebook.com/jabatanpembangunanmasyarakat.japem"> <span class="elementor-icon-list-icon"> <i aria-hidden="true" class="fab fa-facebook"></i> </span> <span class="elementor-icon-list-text">Facebook</span> </a> </li> <li class="elementor-icon-list-item"> <a href="https://www.instagram.com/Japembrunei/?fbclid=IwAR2-AoHudlzvvMFeQ2OFzvfmNf08NA46dMic0Tx2Vnt6Glw9lUun5C140Xo"> <span class="elementor-icon-list-icon"> <i aria-hidden="true" class="fab fa-instagram"></i> </span> <span class="elementor-icon-list-text">Instagram</span> </a> </li> <li class="elementor-icon-list-item"> <a href="https://twitter.com/JAPEM_MCYS?fbclid=IwAR3UpyFX-WWAqmIcTj3hPk2ZrWPEuCCbcxl-e_aLSvr504YKNqttgPBG1mQ"> <span class="elementor-icon-list-icon"> <i aria-hidden="true" class="fab fa-twitter"></i> </span> <span class="elementor-icon-list-text">Twitter</span> </a> </li> </ul> </div> </div> </div> </div> </div> </section> <section class="elementor-section elementor-top-section elementor-element elementor-element-34438a9c elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="34438a9c" data-element_type="section"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-2fcb0e2c" data-id="2fcb0e2c" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-1e9adb83 elementor-widget elementor-widget-google_maps" data-id="1e9adb83" data-element_type="widget" data-widget_type="google_maps.default"> <div class="elementor-widget-container"> <div class="elementor-custom-embed"> <iframe loading="lazy" src="https://maps.google.com/maps?q=Jalan%20Kebangsaan&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near" title="Jalan Kebangsaan" aria-label="Jalan Kebangsaan" ></iframe> </div> </div> </div> </div> </div> </div> </section> <section class="elementor-section elementor-top-section elementor-element elementor-element-260b48cc elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="260b48cc" data-element_type="section"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-58ac667f" data-id="58ac667f" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-2115948d elementor-widget elementor-widget-text-editor" data-id="2115948d" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <p><a href="https://orgchil-jicorica.savviihq.com/?page_id=9">&lt; Back to Child Helplines</a></p> </div> </div> </div> </div> </div> </section> </div> <div data-elementor-type="footer" data-elementor-id="163" class="elementor elementor-163 elementor-location-footer" data-elementor-post-type="elementor_library"> <footer class="elementor-section elementor-top-section elementor-element elementor-element-de4b44e elementor-section-height-min-height elementor-section-content-bottom elementor-section-boxed elementor-section-height-default elementor-section-items-middle" data-id="de4b44e" data-element_type="section" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-20 elementor-top-column elementor-element elementor-element-c230db1" data-id="c230db1" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-7a843e2 elementor-widget elementor-widget-image" data-id="7a843e2" data-element_type="widget" data-widget_type="image.default"> <div class="elementor-widget-container"> <a href="https://childhelplineinternational.org/about/governance/"> <img width="133" height="105" src="https://childhelplineinternational.org/wp-content/uploads/2022/01/ANBI_FC.png" class="attachment-thumbnail size-thumbnail wp-image-605" alt="ANBI Logo" /> </a> </div> </div> </div> </div> <div class="elementor-column elementor-col-20 elementor-top-column elementor-element elementor-element-2cdacab" data-id="2cdacab" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-1d007ae elementor-widget-tablet__width-initial elementor-widget elementor-widget-image" data-id="1d007ae" data-element_type="widget" data-widget_type="image.default"> <div class="elementor-widget-container"> <img src="https://childhelplineinternational.org/wp-content/uploads/2022/01/ngos_ed_on_file_widget.png" title="ngos_ed_on_file_widget" alt="NGO Source Equivalency Determination on File" loading="lazy" /> </div> </div> </div> </div> <div class="elementor-column elementor-col-20 elementor-top-column elementor-element elementor-element-9e41f5e" data-id="9e41f5e" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-59f882d elementor-widget-tablet__width-initial elementor-widget elementor-widget-image" data-id="59f882d" data-element_type="widget" data-widget_type="image.default"> <div class="elementor-widget-container"> <img src="https://childhelplineinternational.org/wp-content/uploads/2022/01/EU-flag.png" title="EU-flag" alt="EU Flag" loading="lazy" /> </div> </div> </div> </div> <div class="elementor-column elementor-col-20 elementor-top-column elementor-element elementor-element-1a50dad" data-id="1a50dad" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-abde97d elementor-widget elementor-widget-text-editor" data-id="abde97d" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <p>With financial support from the European Union&#8217;s Citizens, Equality, Rights and Values Programme (2021-2027).</p> </div> </div> </div> </div> <div class="elementor-column elementor-col-20 elementor-top-column elementor-element elementor-element-5f59f9d" data-id="5f59f9d" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-7f473f1 elementor-align-right elementor-widget-tablet__width-initial elementor-widget elementor-widget-button" data-id="7f473f1" data-element_type="widget" data-widget_type="button.default"> <div class="elementor-widget-container"> <div class="elementor-button-wrapper"> <a class="elementor-button elementor-button-link elementor-size-sm" href="https://www.paypal.com/donate/?cmd=_s-xclick&#038;hosted_button_id=W6U7W94RQFP2A&#038;source=url" target="_blank"> <span class="elementor-button-content-wrapper"> <span class="elementor-button-text">DONATE</span> </span> </a> </div> </div> </div> </div> </div> </div> </footer> <footer class="elementor-section elementor-top-section elementor-element elementor-element-e35a9c8 elementor-section-height-min-height elementor-section-content-middle elementor-section-boxed elementor-section-height-default elementor-section-items-middle" data-id="e35a9c8" data-element_type="section" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-e9da003" data-id="e9da003" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-72199c7 elementor-widget elementor-widget-text-editor" data-id="72199c7" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <p><strong>Child Helpline International</strong><br />Bruggebouw Suite 5.08, Bos en Lommerplein 280, 1055 RW Amsterdam, The Netherlands</p><p><strong>© 2022 Child Helpline International, All Rights Reserved​</strong></p> </div> </div> </div> </div> <div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-9347787" data-id="9347787" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-e8960c7 e-grid-align-right e-grid-align-mobile-center elementor-shape-circle elementor-grid-0 elementor-widget elementor-widget-social-icons" data-id="e8960c7" data-element_type="widget" data-widget_type="social-icons.default"> <div class="elementor-widget-container"> <div class="elementor-social-icons-wrapper elementor-grid"> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-facebook elementor-animation-grow elementor-repeater-item-993ef04" href="https://www.facebook.com/ChildHelplineInternational" target="_blank"> <span class="elementor-screen-only">Facebook</span> <i class="fab fa-facebook"></i> </a> </span> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-instagram elementor-animation-grow elementor-repeater-item-51cdb9c" href="https://www.instagram.com/child_helpline_international/" target="_blank"> <span class="elementor-screen-only">Instagram</span> <i class="fab fa-instagram"></i> </a> </span> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon- elementor-animation-grow elementor-repeater-item-0e6f14d" href="https://bsky.app/profile/chi-amsterdam.bsky.social" target="_blank"> <span class="elementor-screen-only"></span> <svg xmlns="http://www.w3.org/2000/svg" id="Layer_1" viewBox="0 0 600 530"><defs><style> .st0 { fill: #30318c; } </style></defs><path class="st0" d="M135.7,44c66.5,49.9,138,151.1,164.3,205.5,26.3-54.3,97.8-155.5,164.3-205.5,48-36,125.7-63.9,125.7,24.8s-10.2,148.8-16.1,170.1c-20.7,74-96.1,92.9-163.2,81.4,117.3,20,147.1,86.1,82.7,152.2-122.4,125.6-175.9-31.5-189.6-71.8-2.5-7.4-3.7-10.8-3.7-7.9,0-2.9-1.2.5-3.7,7.9-13.7,40.3-67.2,197.4-189.6,71.8-64.4-66.1-34.6-132.3,82.7-152.2-67.1,11.4-142.6-7.4-163.2-81.4-6-21.3-16.1-152.4-16.1-170.1,0-88.7,77.7-60.8,125.7-24.8h0Z"></path></svg> </a> </span> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-youtube elementor-animation-grow elementor-repeater-item-300a9ef" href="https://www.youtube.com/channel/UCj_tdWOCOJQtN35jTcDK8zw" target="_blank"> <span class="elementor-screen-only">Youtube</span> <i class="fab fa-youtube"></i> </a> </span> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-linkedin elementor-animation-grow elementor-repeater-item-9f9f308" href="http://www.linkedin.com/company/child-helpline-international" target="_blank"> <span class="elementor-screen-only">Linkedin</span> <i class="fab fa-linkedin"></i> </a> </span> </div> </div> </div> </div> </div> </div> </footer> </div> <script id="ckyBannerTemplate" type="text/template"><div class="cky-consent-container cky-hide" tabindex="0"> <div class="cky-consent-bar" data-cky-tag="notice" style="background-color:#FFFFFF;border-color:#f4f4f4;color:#212121"> <div class="cky-notice"> <p class="cky-title" role="heading" aria-level="1" data-cky-tag="title" style="color:#212121">We value your privacy</p><div class="cky-notice-group"> <div class="cky-notice-des" data-cky-tag="description" style="color:#212121"> <p>We use cookies to enhance your browsing experience, serve personalized ads or content, and analyze our traffic. By clicking "Accept All", you consent to our use of cookies.</p> </div><div class="cky-notice-btn-wrapper" data-cky-tag="notice-buttons"> <button class="cky-btn cky-btn-customize" aria-label="Customize" data-cky-tag="settings-button" style="color:#1863dc;background-color:transparent;border-color:#1863dc">Customize</button> <button class="cky-btn cky-btn-reject" aria-label="Reject All" data-cky-tag="reject-button" style="color:#1863dc;background-color:transparent;border-color:#1863dc">Reject All</button> <button class="cky-btn cky-btn-accept" aria-label="Accept All" data-cky-tag="accept-button" style="color:#FFFFFF;background-color:#1863dc;border-color:#1863dc">Accept All</button> </div></div></div></div><div class="cky-preference-wrapper" data-cky-tag="detail" style="color:#212121;background-color:#FFFFFF;border-color:#F4F4F4"> <div class="cky-preference-center"> <div class="cky-preference"> <div class="cky-preference-header"> <span class="cky-preference-title" role="heading" aria-level="1" data-cky-tag="detail-title" style="color:#212121">Customize Consent Preferences</span> <button class="cky-btn-close" aria-label="[cky_preference_close_label]" data-cky-tag="detail-close"> <img src="http://childhelplineinternational.org/wp-content/plugins/cookie-law-info/lite/frontend/images/close.svg" alt="Close"> </button> </div><div class="cky-preference-body-wrapper"> <div class="cky-preference-content-wrapper" data-cky-tag="detail-description" style="color:#212121"> <p>We use cookies to help you navigate efficiently and perform certain functions. You will find detailed information about all cookies under each consent category below.</p><p>The cookies that are categorized as "Necessary" are stored on your browser as they are essential for enabling the basic functionalities of the site. </p><p>We also use third-party cookies that help us analyze how you use this website, store your preferences, and provide the content and advertisements that are relevant to you. These cookies will only be stored in your browser with your prior consent.</p><p>You can choose to enable or disable some or all of these cookies but disabling some of them may affect your browsing experience.</p> </div><div class="cky-accordion-wrapper" data-cky-tag="detail-categories"> <div class="cky-accordion" id="ckyDetailCategorynecessary"> <div class="cky-accordion-item"> <div class="cky-accordion-chevron"><i class="cky-chevron-right"></i></div> <div class="cky-accordion-header-wrapper"> <div class="cky-accordion-header"><button class="cky-accordion-btn" aria-label="Necessary" data-cky-tag="detail-category-title" style="color:#212121">Necessary</button><span class="cky-always-active">Always Active</span> <div class="cky-switch" data-cky-tag="detail-category-toggle"><input type="checkbox" id="ckySwitchnecessary"></div> </div> <div class="cky-accordion-header-des" data-cky-tag="detail-category-description" style="color:#212121"> <p>Necessary cookies are required to enable the basic features of this site, such as providing secure log-in or adjusting your consent preferences. These cookies do not store any personally identifiable data.</p></div> </div> </div> <div class="cky-accordion-body"> <div class="cky-audit-table" data-cky-tag="audit-table" style="color:#212121;background-color:#f4f4f4;border-color:#ebebeb"><p class="cky-empty-cookies-text">No cookies to display.</p></div> </div> </div><div class="cky-accordion" id="ckyDetailCategoryfunctional"> <div class="cky-accordion-item"> <div class="cky-accordion-chevron"><i class="cky-chevron-right"></i></div> <div class="cky-accordion-header-wrapper"> <div class="cky-accordion-header"><button class="cky-accordion-btn" aria-label="Functional" data-cky-tag="detail-category-title" style="color:#212121">Functional</button><span class="cky-always-active">Always Active</span> <div class="cky-switch" data-cky-tag="detail-category-toggle"><input type="checkbox" id="ckySwitchfunctional"></div> </div> <div class="cky-accordion-header-des" data-cky-tag="detail-category-description" style="color:#212121"> <p>Functional cookies help perform certain functionalities like sharing the content of the website on social media platforms, collecting feedback, and other third-party features.</p></div> </div> </div> <div class="cky-accordion-body"> <div class="cky-audit-table" data-cky-tag="audit-table" style="color:#212121;background-color:#f4f4f4;border-color:#ebebeb"><p class="cky-empty-cookies-text">No cookies to display.</p></div> </div> </div><div class="cky-accordion" id="ckyDetailCategoryanalytics"> <div class="cky-accordion-item"> <div class="cky-accordion-chevron"><i class="cky-chevron-right"></i></div> <div class="cky-accordion-header-wrapper"> <div class="cky-accordion-header"><button class="cky-accordion-btn" aria-label="Analytics" data-cky-tag="detail-category-title" style="color:#212121">Analytics</button><span class="cky-always-active">Always Active</span> <div class="cky-switch" data-cky-tag="detail-category-toggle"><input type="checkbox" id="ckySwitchanalytics"></div> </div> <div class="cky-accordion-header-des" data-cky-tag="detail-category-description" style="color:#212121"> <p>Analytical cookies are used to understand how visitors interact with the website. These cookies help provide information on metrics such as the number of visitors, bounce rate, traffic source, etc.</p></div> </div> </div> <div class="cky-accordion-body"> <div class="cky-audit-table" data-cky-tag="audit-table" style="color:#212121;background-color:#f4f4f4;border-color:#ebebeb"><p class="cky-empty-cookies-text">No cookies to display.</p></div> </div> </div><div class="cky-accordion" id="ckyDetailCategoryperformance"> <div class="cky-accordion-item"> <div class="cky-accordion-chevron"><i class="cky-chevron-right"></i></div> <div class="cky-accordion-header-wrapper"> <div class="cky-accordion-header"><button class="cky-accordion-btn" aria-label="Performance" data-cky-tag="detail-category-title" style="color:#212121">Performance</button><span class="cky-always-active">Always Active</span> <div class="cky-switch" data-cky-tag="detail-category-toggle"><input type="checkbox" id="ckySwitchperformance"></div> </div> <div class="cky-accordion-header-des" data-cky-tag="detail-category-description" style="color:#212121"> <p>Performance cookies are used to understand and analyze the key performance indexes of the website which helps in delivering a better user experience for the visitors.</p></div> </div> </div> <div class="cky-accordion-body"> <div class="cky-audit-table" data-cky-tag="audit-table" style="color:#212121;background-color:#f4f4f4;border-color:#ebebeb"><p class="cky-empty-cookies-text">No cookies to display.</p></div> </div> </div><div class="cky-accordion" id="ckyDetailCategoryadvertisement"> <div class="cky-accordion-item"> <div class="cky-accordion-chevron"><i class="cky-chevron-right"></i></div> <div class="cky-accordion-header-wrapper"> <div class="cky-accordion-header"><button class="cky-accordion-btn" aria-label="Advertisement" data-cky-tag="detail-category-title" style="color:#212121">Advertisement</button><span class="cky-always-active">Always Active</span> <div class="cky-switch" data-cky-tag="detail-category-toggle"><input type="checkbox" id="ckySwitchadvertisement"></div> </div> <div class="cky-accordion-header-des" data-cky-tag="detail-category-description" style="color:#212121"> <p>Advertisement cookies are used to provide visitors with customized advertisements based on the pages you visited previously and to analyze the effectiveness of the ad campaigns.</p></div> </div> </div> <div class="cky-accordion-body"> <div class="cky-audit-table" data-cky-tag="audit-table" style="color:#212121;background-color:#f4f4f4;border-color:#ebebeb"><p class="cky-empty-cookies-text">No cookies to display.</p></div> </div> </div> </div></div></div><div class="cky-footer-wrapper"> <span class="cky-footer-shadow"></span> <div class="cky-prefrence-btn-wrapper" data-cky-tag="detail-buttons"> <button class="cky-btn cky-btn-accept" aria-label="Accept All" data-cky-tag="detail-accept-button" style="color:#ffffff;background-color:#1863dc;border-color:#1863dc"> Accept All </button> <button class="cky-btn cky-btn-preferences" aria-label="Save My Preferences" data-cky-tag="detail-save-button" style="color:#1863dc;background-color:transparent;border-color:#1863dc"> Save My Preferences </button> <button class="cky-btn cky-btn-reject" aria-label="Reject All" data-cky-tag="detail-reject-button" style="color:#1863dc;background-color:transparent;border-color:#1863dc"> Reject All </button> </div></div></div></div></div></script> <script id="wccp_pro_alert_message"> window.addEventListener('DOMContentLoaded', function() {}); //This line to stop JS deffer function in wp-rockt pluign window.addEventListener('load', function (){ // Create the first div element with the "oncontextmenu" attribute const wccp_pro_mask = document.createElement('div'); wccp_pro_mask.setAttribute('oncontextmenu', 'return false;'); wccp_pro_mask.setAttribute('id', 'wccp_pro_mask'); // Create the second div element with the "msgmsg-box-wpcp hideme" classes const wpcp_error_message = document.createElement('div'); wpcp_error_message.setAttribute('id', 'wpcp-error-message'); wpcp_error_message.setAttribute('class', 'msgmsg-box-wpcp hideme'); // Add a span element with the "error: " text inside the second div const error_span = document.createElement('span'); error_span.innerText = 'error: '; wpcp_error_message.appendChild(error_span); // Add the error message text inside the second div const error_text = document.createTextNode('<b>Alert: </b>Content selection is disabled!!'); wpcp_error_message.appendChild(error_text); // Add the div elements to the document body document.body.appendChild(wccp_pro_mask); document.body.appendChild(wpcp_error_message); }); var timeout_result; function show_wccp_pro_message(smessage="", style="") { wccp_pro_log_to_console_if_allowed("function", "show_wccp_pro_message" + smessage); timeout = 3000; if(style == "") style = "warning-wpcp"; if (smessage !== "" && timeout!=0) { var smessage_text = smessage; jquery_fadeTo(); document.getElementById("wpcp-error-message").innerHTML = smessage_text; document.getElementById("wpcp-error-message").className = "msgmsg-box-wpcp showme " + style; clearTimeout(timeout_result); timeout_result = setTimeout(hide_message, timeout); } else { clearTimeout(timeout_result); timeout_result = setTimeout(hide_message, timeout); } } function hide_message() { jquery_fadeOut(); document.getElementById("wpcp-error-message").className = "msgmsg-box-wpcp warning-wpcp hideme"; } function jquery_fadeTo() { try { jQuery("#wccp_pro_mask").fadeTo("slow", 0.3); } catch(err) { //alert(err.message); } } function jquery_fadeOut() { try { jQuery("#wccp_pro_mask").fadeOut( "slow" ); } catch(err) {} } </script> <style> #wccp_pro_mask { position: absolute; bottom: 0; left: 0; position: fixed; right: 0; top: 0; background-color: #000; pointer-events: none; display: none; z-index: 10000; animation: 0.5s ease 0s normal none 1 running ngdialog-fadein; background: rgba(0, 0, 0, 0.4) none repeat scroll 0 0; } #wpcp-error-message { direction: ltr; text-align: center; transition: opacity 900ms ease 0s; pointer-events: none; z-index: 99999999; } .hideme { opacity:0; visibility: hidden; } .showme { opacity:1; visibility: visible; } .msgmsg-box-wpcp { border-radius: 10px; color: #555555; font-family: Tahoma; font-size: 12px; margin: 10px; padding: 10px 36px; position: fixed; width: 255px; top: 50%; left: 50%; margin-top: -10px; margin-left: -130px; } .msgmsg-box-wpcp b { font-weight:bold; text-transform:uppercase; } .warning-wpcp { background:#ffecec url('https://childhelplineinternational.org/wp-content/plugins/wccp-pro/images/warning.png') no-repeat 10px 50%; border:1px solid #f2bfbf; -webkit-box-shadow: 0px 0px 34px 2px #f2bfbf; -moz-box-shadow: 0px 0px 34px 2px #f2bfbf; box-shadow: 0px 0px 34px 2px #f2bfbf; } .success-wpcp { background: #fafafa url('https://childhelplineinternational.org/wp-content/plugins/wccp-pro/images/success.png') no-repeat 10px 50%; border: 1px solid #00b38f; box-shadow: 0px 0px 34px 2px #adc; } </style> <script type='text/javascript'> const lazyloadRunObserver = () => { const lazyloadBackgrounds = document.querySelectorAll( `.e-con.e-parent:not(.e-lazyloaded)` ); const lazyloadBackgroundObserver = new IntersectionObserver( ( entries ) => { entries.forEach( ( entry ) => { if ( entry.isIntersecting ) { let lazyloadBackground = entry.target; if( lazyloadBackground ) { lazyloadBackground.classList.add( 'e-lazyloaded' ); } lazyloadBackgroundObserver.unobserve( entry.target ); } }); }, { rootMargin: '200px 0px 200px 0px' } ); lazyloadBackgrounds.forEach( ( lazyloadBackground ) => { lazyloadBackgroundObserver.observe( lazyloadBackground ); } ); }; const events = [ 'DOMContentLoaded', 'elementor/lazyload/observe', ]; events.forEach( ( event ) => { document.addEventListener( event, lazyloadRunObserver ); } ); </script> <div id="amp-mobile-version-switcher" hidden> <a rel="" href="https://childhelplineinternational.org/brunei-darussalam-talian-anak-121/?amp=1"> Go to mobile version </a> </div> <script type="text/javascript"> /* MonsterInsights Scroll Tracking */ if ( typeof(jQuery) !== 'undefined' ) { jQuery( document ).ready(function(){ function monsterinsights_scroll_tracking_load() { if ( ( typeof(__gaTracker) !== 'undefined' && __gaTracker && __gaTracker.hasOwnProperty( "loaded" ) && __gaTracker.loaded == true ) || ( typeof(__gtagTracker) !== 'undefined' && __gtagTracker ) ) { (function(factory) { factory(jQuery); }(function($) { /* Scroll Depth */ "use strict"; var defaults = { percentage: true }; var $window = $(window), cache = [], scrollEventBound = false, lastPixelDepth = 0; /* * Plugin */ $.scrollDepth = function(options) { var startTime = +new Date(); options = $.extend({}, defaults, options); /* * Functions */ function sendEvent(action, label, scrollDistance, timing) { if ( 'undefined' === typeof MonsterInsightsObject || 'undefined' === typeof MonsterInsightsObject.sendEvent ) { return; } var paramName = action.toLowerCase(); var fieldsArray = { send_to: 'G-5E0SVBXMGG', non_interaction: true }; fieldsArray[paramName] = label; if (arguments.length > 3) { fieldsArray.scroll_timing = timing MonsterInsightsObject.sendEvent('event', 'scroll_depth', fieldsArray); } else { MonsterInsightsObject.sendEvent('event', 'scroll_depth', fieldsArray); } } function calculateMarks(docHeight) { return { '25%' : parseInt(docHeight * 0.25, 10), '50%' : parseInt(docHeight * 0.50, 10), '75%' : parseInt(docHeight * 0.75, 10), /* Cushion to trigger 100% event in iOS */ '100%': docHeight - 5 }; } function checkMarks(marks, scrollDistance, timing) { /* Check each active mark */ $.each(marks, function(key, val) { if ( $.inArray(key, cache) === -1 && scrollDistance >= val ) { sendEvent('Percentage', key, scrollDistance, timing); cache.push(key); } }); } function rounded(scrollDistance) { /* Returns String */ return (Math.floor(scrollDistance/250) * 250).toString(); } function init() { bindScrollDepth(); } /* * Public Methods */ /* Reset Scroll Depth with the originally initialized options */ $.scrollDepth.reset = function() { cache = []; lastPixelDepth = 0; $window.off('scroll.scrollDepth'); bindScrollDepth(); }; /* Add DOM elements to be tracked */ $.scrollDepth.addElements = function(elems) { if (typeof elems == "undefined" || !$.isArray(elems)) { return; } $.merge(options.elements, elems); /* If scroll event has been unbound from window, rebind */ if (!scrollEventBound) { bindScrollDepth(); } }; /* Remove DOM elements currently tracked */ $.scrollDepth.removeElements = function(elems) { if (typeof elems == "undefined" || !$.isArray(elems)) { return; } $.each(elems, function(index, elem) { var inElementsArray = $.inArray(elem, options.elements); var inCacheArray = $.inArray(elem, cache); if (inElementsArray != -1) { options.elements.splice(inElementsArray, 1); } if (inCacheArray != -1) { cache.splice(inCacheArray, 1); } }); }; /* * Throttle function borrowed from: * Underscore.js 1.5.2 * http://underscorejs.org * (c) 2009-2013 Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors * Underscore may be freely distributed under the MIT license. */ function throttle(func, wait) { var context, args, result; var timeout = null; var previous = 0; var later = function() { previous = new Date; timeout = null; result = func.apply(context, args); }; return function() { var now = new Date; if (!previous) previous = now; var remaining = wait - (now - previous); context = this; args = arguments; if (remaining <= 0) { clearTimeout(timeout); timeout = null; previous = now; result = func.apply(context, args); } else if (!timeout) { timeout = setTimeout(later, remaining); } return result; }; } /* * Scroll Event */ function bindScrollDepth() { scrollEventBound = true; $window.on('scroll.scrollDepth', throttle(function() { /* * We calculate document and window height on each scroll event to * account for dynamic DOM changes. */ var docHeight = $(document).height(), winHeight = window.innerHeight ? window.innerHeight : $window.height(), scrollDistance = $window.scrollTop() + winHeight, /* Recalculate percentage marks */ marks = calculateMarks(docHeight), /* Timing */ timing = +new Date - startTime; checkMarks(marks, scrollDistance, timing); }, 500)); } init(); }; /* UMD export */ return $.scrollDepth; })); jQuery.scrollDepth(); } else { setTimeout(monsterinsights_scroll_tracking_load, 200); } } monsterinsights_scroll_tracking_load(); }); } /* End MonsterInsights Scroll Tracking */ </script><link rel='stylesheet' id='e-sticky-css' href='https://childhelplineinternational.org/wp-content/plugins/elementor-pro/assets/css/modules/sticky.min.css?ver=3.25.4' media='all' /> <script src="https://childhelplineinternational.org/wp-content/themes/hello-elementor/assets/js/hello-frontend.min.js?ver=3.0.2" id="hello-theme-frontend-js"></script> <script src="https://childhelplineinternational.org/wp-content/plugins/elementor-pro/assets/lib/sticky/jquery.sticky.min.js?ver=3.25.4" id="e-sticky-js"></script> <script id="wccp_pro_admin_bar_ajax-js-extra"> var ajax_object = {"ajaxurl":"https:\/\/childhelplineinternational.org\/wp-admin\/admin-ajax.php","link":"https:\/\/childhelplineinternational.org\/brunei-darussalam-talian-anak-121\/"}; </script> <script src="https://childhelplineinternational.org/wp-content/plugins/wccp-pro/js/admin_bar_ajax.js?ver=6.7.1" id="wccp_pro_admin_bar_ajax-js"></script> <script id="ivory-search-scripts-js-extra"> var IvorySearchVars = {"is_analytics_enabled":"1"}; </script> <script src="https://childhelplineinternational.org/wp-content/plugins/add-search-to-menu/public/js/ivory-search.min.js?ver=5.5.7" id="ivory-search-scripts-js"></script> <script id="gt_widget_script_64165877-js-before"> window.gtranslateSettings = /* document.write */ window.gtranslateSettings || {};window.gtranslateSettings['64165877'] = {"default_language":"en","languages":["af","sq","am","ar","hy","az","eu","be","bn","bs","bg","ca","ceb","ny","zh-CN","zh-TW","co","hr","cs","da","nl","en","eo","et","tl","fi","fr","fy","gl","ka","de","el","gu","ht","ha","haw","iw","hi","hmn","hu","is","ig","id","ga","it","ja","jw","kn","kk","km","ko","ku","ky","lo","la","lv","lt","lb","mk","mg","ms","ml","mt","mi","mr","mn","my","ne","no","ps","fa","pl","pt","pa","ro","ru","sm","gd","sr","st","sn","sd","si","sk","sl","so","es","su","sw","sv","tg","ta","te","th","tr","uk","ur","uz","vi","cy","xh","yi","yo","zu"],"url_structure":"none","native_language_names":1,"flag_style":"2d","flag_size":16,"wrapper_selector":"#gt-wrapper-64165877","alt_flags":[],"switcher_open_direction":"top","switcher_horizontal_position":"inline","switcher_text_color":"#666","switcher_arrow_color":"#666","switcher_border_color":"#ccc","switcher_background_color":"#fff","switcher_background_shadow_color":"#efefef","switcher_background_hover_color":"#fff","dropdown_text_color":"#000","dropdown_hover_color":"#fff","dropdown_background_color":"#eee","flags_location":"\/wp-content\/plugins\/gtranslate\/flags\/"}; </script><script src="https://childhelplineinternational.org/wp-content/plugins/gtranslate/js/dwf.js?ver=6.7.1" data-no-optimize="1" data-no-minify="1" data-gt-orig-url="/brunei-darussalam-talian-anak-121/" data-gt-orig-domain="childhelplineinternational.org" data-gt-widget-id="64165877" defer></script><script src="https://childhelplineinternational.org/wp-content/plugins/elementor-pro/assets/js/webpack-pro.runtime.min.js?ver=3.25.4" id="elementor-pro-webpack-runtime-js"></script> <script src="https://childhelplineinternational.org/wp-content/plugins/elementor/assets/js/webpack.runtime.min.js?ver=3.25.9" id="elementor-webpack-runtime-js"></script> <script src="https://childhelplineinternational.org/wp-content/plugins/elementor/assets/js/frontend-modules.min.js?ver=3.25.9" id="elementor-frontend-modules-js"></script> <script src="https://childhelplineinternational.org/wp-includes/js/dist/hooks.min.js?ver=4d63a3d491d11ffd8ac6" id="wp-hooks-js"></script> <script src="https://childhelplineinternational.org/wp-includes/js/dist/i18n.min.js?ver=5e580eb46a90c2b997e6" id="wp-i18n-js"></script> <script id="wp-i18n-js-after"> wp.i18n.setLocaleData( { 'text direction\u0004ltr': [ 'ltr' ] } ); </script> <script id="elementor-pro-frontend-js-before"> var ElementorProFrontendConfig = {"ajaxurl":"https:\/\/childhelplineinternational.org\/wp-admin\/admin-ajax.php","nonce":"c183ea62e9","urls":{"assets":"https:\/\/childhelplineinternational.org\/wp-content\/plugins\/elementor-pro\/assets\/","rest":"https:\/\/childhelplineinternational.org\/wp-json\/"},"settings":{"lazy_load_background_images":true},"popup":{"hasPopUps":false},"shareButtonsNetworks":{"facebook":{"title":"Facebook","has_counter":true},"twitter":{"title":"Twitter"},"linkedin":{"title":"LinkedIn","has_counter":true},"pinterest":{"title":"Pinterest","has_counter":true},"reddit":{"title":"Reddit","has_counter":true},"vk":{"title":"VK","has_counter":true},"odnoklassniki":{"title":"OK","has_counter":true},"tumblr":{"title":"Tumblr"},"digg":{"title":"Digg"},"skype":{"title":"Skype"},"stumbleupon":{"title":"StumbleUpon","has_counter":true},"mix":{"title":"Mix"},"telegram":{"title":"Telegram"},"pocket":{"title":"Pocket","has_counter":true},"xing":{"title":"XING","has_counter":true},"whatsapp":{"title":"WhatsApp"},"email":{"title":"Email"},"print":{"title":"Print"},"x-twitter":{"title":"X"},"threads":{"title":"Threads"}},"facebook_sdk":{"lang":"en_GB","app_id":""},"lottie":{"defaultAnimationUrl":"https:\/\/childhelplineinternational.org\/wp-content\/plugins\/elementor-pro\/modules\/lottie\/assets\/animations\/default.json"}}; </script> <script src="https://childhelplineinternational.org/wp-content/plugins/elementor-pro/assets/js/frontend.min.js?ver=3.25.4" id="elementor-pro-frontend-js"></script> <script src="https://childhelplineinternational.org/wp-includes/js/jquery/ui/core.min.js?ver=1.13.3" id="jquery-ui-core-js"></script> <script id="elementor-frontend-js-before"> var elementorFrontendConfig = {"environmentMode":{"edit":false,"wpPreview":false,"isScriptDebug":false},"i18n":{"shareOnFacebook":"Share on Facebook","shareOnTwitter":"Share on Twitter","pinIt":"Pin it","download":"Download","downloadImage":"Download image","fullscreen":"Fullscreen","zoom":"Zoom","share":"Share","playVideo":"Play Video","previous":"Previous","next":"Next","close":"Close","a11yCarouselWrapperAriaLabel":"Carousel | Horizontal scrolling: Arrow Left & Right","a11yCarouselPrevSlideMessage":"Previous slide","a11yCarouselNextSlideMessage":"Next slide","a11yCarouselFirstSlideMessage":"This is the first slide","a11yCarouselLastSlideMessage":"This is the last slide","a11yCarouselPaginationBulletMessage":"Go to slide"},"is_rtl":false,"breakpoints":{"xs":0,"sm":480,"md":768,"lg":1025,"xl":1440,"xxl":1600},"responsive":{"breakpoints":{"mobile":{"label":"Mobile Portrait","value":767,"default_value":767,"direction":"max","is_enabled":true},"mobile_extra":{"label":"Mobile Landscape","value":880,"default_value":880,"direction":"max","is_enabled":false},"tablet":{"label":"Tablet Portrait","value":1024,"default_value":1024,"direction":"max","is_enabled":true},"tablet_extra":{"label":"Tablet Landscape","value":1200,"default_value":1200,"direction":"max","is_enabled":false},"laptop":{"label":"Laptop","value":1366,"default_value":1366,"direction":"max","is_enabled":false},"widescreen":{"label":"Widescreen","value":2400,"default_value":2400,"direction":"min","is_enabled":false}},"hasCustomBreakpoints":false},"version":"3.25.9","is_static":false,"experimentalFeatures":{"additional_custom_breakpoints":true,"e_swiper_latest":true,"e_nested_atomic_repeaters":true,"e_optimized_control_loading":true,"e_onboarding":true,"e_css_smooth_scroll":true,"theme_builder_v2":true,"hello-theme-header-footer":true,"home_screen":true,"landing-pages":true,"nested-elements":true,"editor_v2":true,"link-in-bio":true,"floating-buttons":true},"urls":{"assets":"https:\/\/childhelplineinternational.org\/wp-content\/plugins\/elementor\/assets\/","ajaxurl":"https:\/\/childhelplineinternational.org\/wp-admin\/admin-ajax.php","uploadUrl":"https:\/\/childhelplineinternational.org\/wp-content\/uploads"},"nonces":{"floatingButtonsClickTracking":"dceee37d7c"},"swiperClass":"swiper","settings":{"page":[],"editorPreferences":[]},"kit":{"active_breakpoints":["viewport_mobile","viewport_tablet"],"global_image_lightbox":"yes","lightbox_enable_counter":"yes","lightbox_enable_fullscreen":"yes","lightbox_enable_zoom":"yes","lightbox_enable_share":"yes","lightbox_title_src":"title","lightbox_description_src":"description","hello_header_logo_type":"logo","hello_header_menu_layout":"horizontal"},"post":{"id":3735,"title":"Brunei%20Darussalam%3A%20Talian%20ANAK%20121%20%E2%80%93%20Child%20Helpline%20International","excerpt":"","featuredImage":"https:\/\/childhelplineinternational.org\/wp-content\/uploads\/2020\/02\/Asia-Brunei.png"}}; </script> <script src="https://childhelplineinternational.org/wp-content/plugins/elementor/assets/js/frontend.min.js?ver=3.25.9" id="elementor-frontend-js"></script> <script src="https://childhelplineinternational.org/wp-content/plugins/elementor-pro/assets/js/elements-handlers.min.js?ver=3.25.4" id="pro-elements-handlers-js"></script> </body> </html>

Pages: 1 2 3 4 5 6 7 8 9 10