<!DOCTYPE html>
<html lang="en-GB">
<head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <meta name="csrf-token" content="JqURKqLu3oOent502ejSHGhxAcKv6OKKbVt4jt6C">
                        <meta name="robots" content="noindex">
            
        
    

            <title>404 - Page Not Found</title>
    
    <link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>

<script src="https://code.jquery.com/jquery-3.7.1.min.js"
        integrity="sha256-/JqT3SQfawRcv/BIHPThkBvs0OEvtFFmqPF/lYI/Cxo="
        crossorigin="anonymous"></script>

<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet"
      integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css">
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css" rel="stylesheet"/>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/intl-tel-input@23.7.3/build/css/intlTelInput.css">

<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz" crossorigin="anonymous"></script>
<script src="https://cdn.lordicon.com/lordicon.js"></script>

    
    <style>
    :root {
        /*
        * Use the ku- values preferentially, as they are written to be site specific and are thus less likely to
        * accidentally clash when changed/tweaked
        * Some will be seemingly repeated: this is because they are semantically assigned, not just by colour
        *
        * These will be named similar to according to: https://colors.artyclick.com/color-name-finder/
        */
        --ku-text: #1F1F1F;
        --ku-dark: #1F1F1F;
        --ku-light: #f8f9fa;
        --ku-dark-blue: #4F3DD9;
        --ku-grey-light: #bdbdbd;
        --ku-button-blue: #7dcdf4;
        --ku-invisible: rgba(255, 255, 255, 0);

        /** the "proper" colours" */
        --ku-white: #fff;
        --ku-teal-blue-transparent: rgba(227, 229, 236, 0.34);
        --ku-teal-blue: #e3e5ec;
        --ku-cotton-seed: #bdbdbd;
        --ku-blue-cyan: #7dcdf4;
        --ku-blue-cyan-transparent: rgba(125, 205, 244, 0.34);
        --ku-blue-purple: #4F3DD9;
        --ku-mint: #ACF0D1;
        --ku-mint-transparent: rgba(172, 240, 209, 0.34);
        --ku-yellow-orange: #FFB200;
        --ku-yellow-orange-transparent: rgba(255, 178, 0, 0.32);
        --ku-pinkish-red: #ff83ae;

        /* LDA colours */
        --lda-red-orange: #F94F21;

        /**
        * Font sizes
        */
        --ku-font-size-small: 14px;
        --ku-font-size-medium: 18px;
        --ku-font-size-large: 22px;

        --ku-font-size-hero-banner-small: 20px;
        --ku-font-size-hero-banner-large: 30px;
        --ku-font-size-hero-banner-xlarge: 40px;

        /**
        * Formatting presets
        */
        --ku-container-width: 1310px;
        --ku-container-width-small: 900px;

        --ku-container-padding: 75px;
        --ku-border-width-medium: 6px;
        --ku-pillbox-margin: 16px;
        --ku-transition-speed: 0.5s;
        --ku-half-strip-border-radius: 85px;
        --ku-gutter-margin: 150px;

        /**
        * Breakpoints
        */
        --ku-resolution-max-width-mobile:480px;
    }


  /* Small devices (mobile/tablets, 767px and below) */
  @media only screen and (max-width: 768px) {
    :root {
      --ku-container-width: 100%;
      --ku-container-width-small: 100%;
      /**
      * Font sizes
      */
      --ku-font-size-small: 14px;
      --ku-font-size-medium: 18px;
      --ku-font-size-large: 22px; 

      --ku-font-size-hero-banner-small: 20px;
      --ku-font-size-hero-banner-large: 25px;
      --ku-font-size-hero-banner-xlarge: 30px;

      --ku-container-padding: 15px;
      --ku-gutter-margin: 10px;
    }
    .hlp-width-50-m {
      width: 50%;
    }
    .hlp-display-none-m {
      display: none;
    }
    .hlp-p0-m {
      padding: 0;
    } 
    .hlp-m0-m {
      margin: 0;
    } 
  }
  /* Medium devices (tablets/desktops, 768px and up) */
  @media only screen and (min-width: 768px) {
    .hlp-display-none-t {
      display: none;
    }
  }

  /* Large devices (large laptops and desktops, 1200px and up) */
  @media only screen and (min-width: 1200px) {
    .hlp-display-none-d {
      display: none;
    }
  }

    /* from the above, define the --ku and --lda colours so they can be called directly as a class: */

    .ku-text {
        color: var(--ku-text);
    }
    .ku-text-bg {
        background-color: var(--ku-text);
    }

    .ku-dark {
        color: var(--ku-dark);
    }
    .ku-dark-bg {
        background-color: var(--ku-dark);
    }

    .ku-light {
        color: var(--ku-light);
    }
    .ku-light-bg {
        background-color: var(--ku-light);
    }

    .ku-dark-blue {
        color: var(--ku-dark-blue);
    }
    .ku-dark-blue-bg {
        background-color: var(--ku-dark-blue);
    }

    .ku-grey-light {
        color: var(--ku-grey-light);
    }
    .ku-grey-light-bg {
        background-color: var(--ku-grey-light);
    }

    .ku-button-blue {
        color: var(--ku-button-blue);
    }
    .ku-button-blue-bg {
        background-color: var(--ku-button-blue);
    }

    /** the "proper" colours" */
    .ku-white {
        color: var(--ku-white);
    }
    .ku-white-bg {
        background-color: var(--ku-white);
    }

    .ku-teal-blue-transparent {
        color: var(--ku-teal-blue-transparent);
    }
    .ku-teal-blue-transparent-bg {
        background-color: var(--ku-teal-blue-transparent);
    }

    .ku-teal-blue {
        color: var(--ku-teal-blue);
    }
    .ku-teal-blue-bg {
        background-color: var(--ku-teal-blue);
    }

    .ku-blue-cyan {
        color: var(--ku-blue-cyan);
    }
    .ku-blue-cyan-bg {
        background-color: var(--ku-blue-cyan);
    }

    .ku-blue-cyan-transparent {
        color: var(--ku-blue-cyan-transparent);
    }
    .ku-blue-cyan-transparent-bg {
        background-color: var(--ku-blue-cyan-transparent);
    }

    .ku-blue-purple {
        color: var(--ku-blue-purple);
    }
    .ku-blue-purple-bg {
        background-color: var(--ku-blue-purple);
    }

    .ku-mint {
        color: var(--ku-mint);
    }
    .ku-mint-bg {
        background-color: var(--ku-mint);
    }

    .ku-mint-transparent {
        color: var(--ku-mint-transparent);
    }
    .ku-mint-bg-transparent {
        background-color: var(--ku-mint-transparent);
    }

    .ku-yellow-orange {
        color: var(--ku-yellow-orange);
    }
    .ku-yellow-orange-bg {
        background-color: var(--ku-yellow-orange);
    }

    .ku-pinkish-red {
        color: var(--ku-pinkish-red);
    }
    .ku-pinkish-red-bg {
        background-color: var(--ku-pinkish-red);
    }

    .lda-red-orange {
        color: var(--lda-red-orange);
    }
    .lda-red-orange {
        background-color: var(--lda-red-orange);
    }
    .hlp-btn-full-width {
      width: 100%;
      text-align: left;
    }
</style>
    <link rel="stylesheet" href="/css/guest.css?2026-04-24-01-20-21"/>

    <link href="/images/favicon/favicon-16x16.png" type="image/x-icon" rel="icon" sizes="16x16"/>
    <link href="/images/favicon/favicon-32x32.png" type="image/x-icon" rel="icon" sizes="32x32"/>

                        <meta name="title"
                  content="404 - Page Not Found">
                            <meta name="description"
                  content="404 - Page Not Found - The page you are looking for is no longer available.">
                            <meta property="og:description"
                  content="404 page not found - The page you are looking for is no longer available."/>
                            <meta property="og:title"
                  content="404 page not found"/>
                                <link rel="canonical" href="https://www.kumon.ie/404">
    
                                    
                        <!-- Google Tag Manager -->
            <script>(function (w, d, s, l, i) {
                    w[l] = w[l] || [];
                    w[l].push({
                        'gtm.start':
                            new Date().getTime(), event: 'gtm.js'
                    });
                    var f = d.getElementsByTagName(s)[0],
                        j = d.createElement(s), dl = l != 'dataLayer' ? '&l=' + l : '';
                    j.async = true;
                    j.src =
                        'https://www.googletagmanager.com/gtm.js?id=' + i + dl;
                    f.parentNode.insertBefore(j, f);
                })(window, document, 'script', 'dataLayer', 'GTM-5W3FF2C');</script>
            <!-- End Google Tag Manager -->
            
    </head>
<body>
            <!-- Google Tag Manager (noscript) -->
        <noscript>
            <iframe src="https://www.googletagmanager.com/ns.html?id=GTM-5W3FF2C"
                    height="0" width="0" style="display:none;visibility:hidden"></iframe>
        </noscript>
        <!-- End Google Tag Manager (noscript) -->
    
<link type="text/css" rel="stylesheet" href="/js/mmenu/mmenu-light.css"/>

<style>
    #ku-header-main-wrap {
        border-bottom: var(--ku-blue-cyan) var(--ku-border-width-medium) solid;
    }

    .sticky-header {
        position: fixed;
        top: 0;
        width: 100%;
        background-color: var(--ku-white);
        z-index: 100;
    }

    html {
        scroll-padding-top: 150px;
    }

    .page-content {
        padding-top: 150px;
    }

    #ku-header-main {
        padding-top: 25px;
    }

    #ku-header-top-row {
        margin-bottom: 14px;
    }

    #ku-header-main h1 {
        margin: 0;
        padding: 0;
    }

    #ku-header-main-logo {
        flex: 0 0 200px;
    }

    @media (max-width: var(--ku-resolution-max-width-mobile)) {
        /* smartphones, Android phones, landscape iPhone */
        #ku-header-main-logo {
            flex: 0 0 150px;
        }
    }

    #ku-header-main-logo img {
        height: 38px;
        width: auto;
    }

    #ku-header-main-pillboxes {
        text-align: right;
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }

    #ku-header-main-pillboxes span {
        padding: 0;
        margin: 0;
    }

    #ku-header-main-pillboxes span a {
        margin-left: 16px;
    }

    #ku-header-main-pillboxes .ku-pillbox-div {
        padding-right: 8px;
    }

    #ku-header-main-pillbox-search {
        margin-left: 15px;
    }

    .ku-header-search-whitewrap {
        height: 38px;
        padding-right: 6px;
        background: var(--ku-white);
        display: flex;
        align-items: center;
        border-radius: 30px;
        margin-left: 12px
    }

    .ku-header-pillbox-input {
        margin-left: 10px;
        height: 36px;
        width: 205px;
        border: 0;
        border-radius: 22px;
        padding: 10px;
        font-size: var(--ku-font-size-small);
        text-align: center;
    }

    .ku-header-pillbox-input:focus-visible {
        outline: none;
    }

    .ku-header-search-submit {
        margin-left: 10px;
        padding: 0 0 2px 0;
        height: 30px;
        width: 30px;
        border: 0;
        border-radius: 22px;
        text-align: center;
        background-color: var(--ku-text);
    }

    #ku-header-main-pillbox-assessment,
    #ku-header-main-pillbox-assessment-mobile,
    #ku-header-main-pillbox-franchise,
    #ku-header-main-pillbox-franchise-mobile {
        box-sizing: border-box;
        padding-left: 48px;
        padding-right: 20px;
        background-size: 18px 18px;
        background-repeat: no-repeat;
        background-position: 22px 18px;
    }

    #ku-header-main-pillbox-assessment, #ku-header-main-pillbox-assessment-mobile {
        background-image: url("/images/elements/notes.svg");
    }

    #ku-header-main-pillbox-franchise,
    #ku-header-main-pillbox-franchise-mobile {
        background-image: url("/images/elements/franchise.svg ");
    }

    #ku-header-main-nav .nav-item {
        font-size: 14px;
        line-height: 17px;
    }

    #ku-header-main-nav .dropdown-item {
        font-size: 14px;
        line-height: 26px;
    }

    #ku-header-main-nav .nav-item:first-of-type,
    #ku-header-main-nav .nav-item:first-of-type a {
        padding-left: 0;
    }

    #ku-header-main-nav .nav-item:last-of-type {
        margin-right: 0;
    }

    #ku-header-main-nav a {
        color: var(--ku-text);
    }

    #ku-header-main-search-col {
        flex: 0 0 150px;
        justify-content: flex-end;
        text-align: right;
        height: 40px;
        

    }

    #ku-header-main-search-col p {
        margin: 10px;
        padding: 0;
    }

    #ku-header-main-search-col-mobile {
        justify-content: flex-end;
        text-align: right;
        height: 34px;
        width: 34px;
        margin-right: 15px
    }

    #ku-header-main-search-col-mobile img {
        padding-right: 10px;
        padding-top: 6px;
    }

    #ku-header-main-search-col-mobile div {
        margin: 0px;
        padding: 0;
        background-color: var(--ku-blue-cyan);
        border-radius: 50%;
        height: 34px;
    }

    #ku-header-main-language-col {
        padding-left: 35px;
        flex: 0 0 205px;
        display: inline-block;
    }

    .ku-dropdown-flags {
        display: inline-block;
        margin-right: 8px;
    }

    #ku-header-main-language-select a {
        font-size: var(--ku-font-size-small);
        color: var(--ku-cotton-seed);
    }

    .navbar-nav {
        gap: 36px;
    }

    .ku-mobile-rhs {
        flex-wrap: nowrap;
        display: flex;
        flex-direction: row;
    }

    .mobile-show {
        display: none;
        padding-bottom: 10px;
    }

    .desktop-show {
        display: block;
        padding-left: 20px;
        padding-right: 20px;
    }

    /* Small devices (mobile/tablets, 767px and below) */
    @media only screen and (max-width: 768px) {
        .mobile-show {
            display: block;
        }

        .desktop-show {
            display: none;
        }

        #ku-header-main-pillbox-search {
            margin-left: 0px;
        }

        #ku-header-main-pillbox-search label {
            font-size: 12px;
        }

        #ku-header-main {
            padding-top: 8px;
        }

        .ku-pillbox-mint {
            background-color: var(--ku-mint) !important;
        }

        .ku-pillbox-yellow-orange {
            background-color: var(--ku-yellow-orange) !important;
        }

        .ku-pillbox-yellow-orange:hover {
            background-color: var(--ku-yellow-orange) !important;
        }

        .ku-pillbox-pinkish-red {
            background-color: var(--ku-pinkish-red) !important;
        }

        .ku-mobile-pill {
            margin: 10px 20px !important;
        }

        :root {
            --mm-ocd-max-width: 330px;
        }

        .page-content {
            padding-top: 120px;
        }

        html {
            scroll-padding-top: 120px;
        }

        .ku-header-pillbox-input {
            width: 170px;
        }

    }

    /* Medium devices (tablets/desktops, 768px and up) */
    @media only screen and (min-width: 768px) {
        .mobile-show {
            display: block;
        }

        .desktop-show {
            display: none;
        }

        .ku-pillbox-mint {
            background-color: var(--ku-mint) !important;
        }

        .ku-pillbox-yellow-orange {
            background-color: var(--ku-yellow-orange) !important;
        }

        .ku-pillbox-yellow-orange:hover {
            background-color: var(--ku-yellow-orange) !important;
        }

        .ku-pillbox-pinkish-red {
            background-color: var(--ku-pinkish-red) !important;
        }

        .ku-mobile-pill {
            margin: 10px 20px;
        }
    }

    /* Large devices (large laptops and desktops, 1200px and up) */
    @media only screen and (min-width: 1200px) {
        .mobile-show {
            display: none;
        }

        .desktop-show {
            display: block;
        }
    }

    .ku-header .mobile-burger {
        display: block;
        width: 34px;
        height: 34px;
        padding: 11px 7px 7px 7px;
        margin: 0px;
        background-color: var(--ku-blue-cyan);
        border-radius: 50%;
    }

    .ku-header .mobile-burger:before,
    .ku-header .mobile-burger:after {
        content: '';
        display: block;
        background: #000;
        height: 2px;
        width: 20px;
    }

    .ku-header .mobile-burger span {
        background: #000;
        display: block;
        height: 2px;
        width: 20px;
        margin: 3px 0;
    }

    .ku-mobile-top {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        height: 48px;
        min-height: 48px;
    }

    @media only screen and (max-width: 768px) {
        #centre-search-mobile {
            font-size: 16px;
        }
    }

</style>


<div class="ku-container-full sticky-header" id="ku-header-main-wrap">

    <div class="ku-container" id="ku-header-main">

        <header class="container align-items-center ku-header">

            <div class="mobile-show">
                <div class="ku-mobile-top">
                    <div class="col" id="ku-header-main-logo">
                        <a href="https://www.kumon.ie" class="text-decoration-none">
                            <img src="/images/layouts/logo-large.png"
                                 srcset="/images/layouts/logo-large@2x.png 2x"
                                 alt="Kumon"/>
                        </a>
                    </div>
                    <div class="ku-mobile-rhs">









                        <a class="mobile-burger" href="#mobile-menu"><span></span></a>
                    </div>
                </div>

                <div class="col" id="ku-header-main-pillboxes">

                    <span>
                        <div class="ku-pillbox-div ku-pillbox-mint" id="ku-header-main-pillbox-search">
                            <label class="inline-block" for="centre-search-mobile">
                                Find your local Instructor
                            </label>
                            <form method="get" action="https://www.kumon.ie/centre-search-results">
                            <div class="ku-header-search-whitewrap">
                                <input class="ku-header-pillbox-input" type="text" name="search"
                                       id="centre-search-mobile"
                                       value=""
                                       placeholder="
                                                                    Enter town or postcode
                                                                       ">
                                <button type="submit" class="ku-header-search-submit">
                                    <img src="/images/elements/search.svg" alt="Search">
                                </button>
                            </div>
                            </form>
                        </div>
                    </span>
                </div>
            </div>

            <nav class="mobile-menu hidden" id="mobile-menu">
                <ul>
                    <li class="Selected"><a
                            href="https://www.kumon.ie">Home</a></li>

                    
                                            
                                                    <li>
                                <a  href="https://www.kumon.ie/maths">
                                    Study Maths
                                </a>
                            </li>
                                                                    
                                                                    
                                                    <li>
                                <a  href="https://www.kumon.ie/english">
                                    Study English
                                </a>
                            </li>
                                                                    
                                                                    
                                                                    
                                                                    
                                                    <li>
                                <a  href="https://www.kumon.ie/blog">
                                    News &amp; Stories
                                </a>
                            </li>
                                                                    
                                                    <li>
                                <a  href="https://www.kumon.ie/helpdesk">
                                    Ask Helpdesk
                                </a>
                            </li>
                                                                    
                                                                    
                                                    <li>
                                <span>About Us</span>
                                <ul>
                                                                                                                                                                                                                                                <li>
                                                <a href="https://www.kumon.ie/about"
                                                   >
                                                    Welcome To Kumon
                                                </a>
                                            </li>
                                                                                                                                                                                                                                                                                        <li>
                                                <a href="https://www.kumon.ie/our-method"
                                                   >
                                                    The Kumon Method
                                                </a>
                                            </li>
                                                                                                                                                                                                            <li>
                                                <a href="https://www.kumon.ie/our-history"
                                                   >
                                                    The History Of Kumon
                                                </a>
                                            </li>
                                                                                                                                                                                                            <li>
                                                <a href="https://www.kumon.ie/epi-findings"
                                                   >
                                                    Kumon - The Evidence
                                                </a>
                                            </li>
                                                                                                                                                                                                                                                                                                                                                                    <li>
                                                <a href="https://www.kumon.ie/school-partnerships"
                                                   >
                                                    School Partnerships
                                                </a>
                                            </li>
                                                                                                                                                                                        </ul>
                            </li>
                                                                <li>
                                            </li>

                    <li>
                        <a href="/book-now" class="ku-pillbox ku-pillbox-yellow-orange ku-mobile-pill"
                           id="ku-header-main-pillbox-assessment-mobile">
                                                            Book your free assessment
                                                    </a>
                    </li>
                    <li>
                        <a href="https://www.kumonfranchising.com/" target="_blank"
                           class="ku-pillbox ku-pillbox-pinkish-red ku-mobile-pill"
                           id="ku-header-main-pillbox-franchise-mobile">
                                                            Open a franchise
                                                    </a>
                    </li>
                </ul>
            </nav>

            <div class="desktop-show">
                <div class="row align-items-center" id="ku-header-top-row">
                    <div class="col" id="ku-header-main-logo">
                        <a href="https://www.kumon.ie" class="text-decoration-none">
                            <img src="/images/layouts/logo-large.png"
                                 srcset="/images/layouts/logo-large@2x.png 2x"
                                 alt="Kumon"/>
                        </a>
                    </div>
                    <div class="col" id="ku-header-main-pillboxes">
                    <span>
                        <div class="ku-pillbox-div ku-pillbox-mint" id="ku-header-main-pillbox-search">
                            <label class="inline-block" for="centre-search">
                                Find your local Instructor
                            </label>
                            <form method="get" action="https://www.kumon.ie/centre-search-results">
                            <div class="ku-header-search-whitewrap">
                                <input class="ku-header-pillbox-input" type="text" name="search"
                                       id="centre-search"
                                       value=""
                                       placeholder="
                                                                    Enter town or postcode
                                                                       ">
                                <button type="submit" class="ku-header-search-submit">
                                    <img src="/images/elements/search.svg" alt="Search">
                                </button>
                            </div>
                            </form>
                        </div>
                        <a href="/book-now" class="ku-pillbox ku-pillbox-yellow-orange"
                           id="ku-header-main-pillbox-assessment">
                                                           Book your free assessment
                                                    </a>
                        <a href="https://www.kumonfranchising.com/" target="_blank"
                           class="ku-pillbox ku-pillbox-pinkish-red" id="ku-header-main-pillbox-franchise">
                                                            Open a franchise
                                                    </a>
                    </span>
                    </div>
                </div>

                <div class="row align-items-center flex-nowrap">
                    <div class="col" id="ku-header-main-nav-col">
                        <nav class="navbar navbar-expand-lg navbar-light ku-navbar" id="ku-header-main-nav">
                            <div class="collapse navbar-collapse" id="navbarSupportedContent">
                                <ul class="navbar-nav mr-auto">
                                    
                                                                            
                                                                                    <li class="nav-item">
                                                <a class="nav-link"
                                                                                                      href="https://www.kumon.ie/maths">
                                                    Study Maths
                                                </a>
                                            </li>
                                                                                                                    
                                                                                                                    
                                                                                    <li class="nav-item">
                                                <a class="nav-link"
                                                                                                      href="https://www.kumon.ie/english">
                                                    Study English
                                                </a>
                                            </li>
                                                                                                                    
                                                                                                                    
                                                                                                                    
                                                                                                                    
                                                                                    <li class="nav-item">
                                                <a class="nav-link"
                                                                                                      href="https://www.kumon.ie/blog">
                                                    News &amp; Stories
                                                </a>
                                            </li>
                                                                                                                    
                                                                                    <li class="nav-item">
                                                <a class="nav-link"
                                                                                                      href="https://www.kumon.ie/helpdesk">
                                                    Ask Helpdesk
                                                </a>
                                            </li>
                                                                                                                    
                                                                                                                    
                                                                                    <li class="nav-item dropdown">
                                                <a class="nav-link dropdown-toggle" href="#"
                                                   id="ku-header-main-nav-dropdown-about"
                                                   role="button"
                                                   data-bs-toggle="dropdown" aria-haspopup="true"
                                                   aria-expanded="false">
                                                    About Us
                                                </a>
                                                <div class="dropdown-menu"
                                                     aria-labelledby="ku-header-main-nav-dropdown-about">
                                                                                                                                                                                                                                                                                                                                                <a class="dropdown-item"
                                                               href="https://www.kumon.ie/about"
                                                               >
                                                                Welcome To Kumon <!-- Use the translated name -->
                                                            </a>
                                                                                                                                                                                                                                                                                                                                                                                                        <a class="dropdown-item"
                                                               href="https://www.kumon.ie/our-method"
                                                               >
                                                                The Kumon Method <!-- Use the translated name -->
                                                            </a>
                                                                                                                                                                                                                                                                                            <a class="dropdown-item"
                                                               href="https://www.kumon.ie/our-history"
                                                               >
                                                                The History Of Kumon <!-- Use the translated name -->
                                                            </a>
                                                                                                                                                                                                                                                                                            <a class="dropdown-item"
                                                               href="https://www.kumon.ie/epi-findings"
                                                               >
                                                                Kumon - The Evidence <!-- Use the translated name -->
                                                            </a>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    <a class="dropdown-item"
                                                               href="https://www.kumon.ie/school-partnerships"
                                                               >
                                                                School Partnerships <!-- Use the translated name -->
                                                            </a>
                                                                                                                                                                                                                                                                        </div>
                                            </li>
                                                                                                            </ul>
                            </div>
                        </nav>
                    </div>









                                    </div>
            </div>

        </header>

    </div>

</div>

<section class="container fixed-width centre flash">







</section>



<div class="page-content">
    <section class="container fixed-width centre flash">







</section>


                                        <style>
    .ku-text-block {
        padding: 0 0 15px 0;
        margin: 0 var(--ku-gutter-margin);
    }
    .ku-text-block em, .ku-text-block i {
      color: var(--ku-text);
      font-style: italic;
    }
    .ku-text-block p {
        font-size: var(--ku-font-size-medium);
    }
</style>

<div class="ku-container" data-subpost="text-block">
    <div class="ku-text-block " id="text-block-en-GB-815a416a-7bcb-4a10-9baa-702ecd807d99">
        <h1 style="text-align: center;">&nbsp;</h1>
<h1 style="text-align: center;">404: Page not found</h1>
<p style="text-align: center;">&nbsp;</p>
<p style="text-align: center;">The page you are looking for is no longer available.</p>
<p style="text-align: center;">Here are some useful links that may help:</p>
<p style="text-align: center;"><a href="../../../../centre-search-results">Find your nearest study centre</a></p>
<p style="text-align: center;"><a title="Visit our Helpdesk" href="../../../../helpdesk">Visit our Helpdesk</a></p>
    </div>
</div>
            
    
</div>

<style>
    #ku-footer-main {
        padding: 64px;
        background-color: var(--ku-light);
    }

    #ku-footer-main div {
        padding: 0 30px;
    }

    #ku-footer-main div.footer-first,
    #ku-footer-main div.footer-second {
        border: solid var(--ku-teal-blue);
        border-width: 0 2px 0 0;
    }

    #ku-footer-main h2 {
        font-size: 1.1em;
        margin-bottom: 1.2em;
    }

    #ku-footer-main p,
    #ku-footer-main li {
        font-size: var(--ku-font-size-small);
    }

    #ku-footer-main ul {
        margin-left: 0;
        padding-left: 0;
    }

    #ku-footer-main .links {
        columns: 2;
    }

    #ku-footer-main li {
        display: inline-block;
        list-style-type: none;
        width: 140px;
        margin-bottom: 0.8em;
    }

    #ku-footer-main li a {
        color: var(--ku-text);
    }

    #ku-footer-main .footer-fixed-height {
        height: 210px;
    }

    .ku-footer-main-lda-love {
        top: 16px;
        width: 45px;
        height: 45px;
    }

    .ku-footer-main-lda-icon {
        display: inline-block;
        margin-bottom: 3px;
    }

    #ku-footer-main .footer-bottom {
        display: flex;
        align-content: flex-end;
        justify-content: flex-start;
        align-items: center;
        height: 42px;
    }

    #ku-footer-main .footer-bottom a {
        text-decoration: none;
        color: var(--ku-text);
        margin: 0;
        padding: 0;
    }

    #ku-footer-main .footer-icons li {
        padding-right: 20px;
        font-size: 30px;
        width: auto;
    }

    #ku-footer-main .footer-icons i {
        color: var(--ku-dark)
    }

    .ku-background-countries {
        background-color: var(--ku-light);
        color: var(--ku-dark);
        border-top: var(--ku-blue-cyan) var(--ku-border-width-medium) solid;
        padding-top: 10px;
        padding-bottom: 40px;
        padding-left: 20px;
        padding-right: 20px;
        margin-left: auto;
        margin-right: auto;
    }

    .ku-arrow-wrapper {
        padding-bottom: 50px;
    }

    .ku-background-countries h4 {
        text-align: center;
        padding-bottom: 20px;
    }

    .ku-background-countries ul {
        list-style: none;
        padding-left: 0;
    }

    .ku-background-countries a {
        color: var(--ku-dark);
        text-decoration: none;
        font-size: 12px;
    }

    .ku-background-countries strong {
        padding-bottom: 15px;
    }

    .change-country-text {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: flex-start;
        padding: 0 !important;
    }

    .ku-arrow-wrapper {
        text-align: right;
    }

    .change-country-mobile {
        display: none;
    }

    .change-country {
        padding: 0 0 1rem 0 !important;
    }

    .change-country img {
        margin-top: 6px;
    }

    .change-country i {
        margin-top: 10px;
        margin-left: 8px;
    }

    .ku-footer-cc {
        padding: 0 40px;
    }

    .ot-sdk-show-settings {
        font-size: 14px;
        color: black;
    }

    @media only screen and (max-width: 768px) {
        .ku-countries {
            display: none;
        }

        .change-country-text {
            display: none;
        }

        .change-country-mobile {
            display: flex;
        }

        #ku-footer-main {
            padding: 40px 30px;
        }

        #ku-footer-main ul {
            columns: 2;
        }

        #ku-footer-main div {
            padding: 0;
            margin: 0;
        }

        #ku-footer-main .row {
            flex-direction: column;
        }

        .footer-fixed-height {
            height: 100% !important;
        }

        #ku-footer-main div.footer-first,
        #ku-footer-main div.footer-second {
            border: 0;
            padding-bottom: 20px;
        }

        #ku-footer-main div.footer-third {
            text-align: left;
        }

        .footer-icons ul {
            columns: 1 !important;
        }
    }

</style>

<footer id="ku-footer-main" data-subpost="footer-guest">
    <div class="container">
        <div class="row">
            <div class="col footer-first">
                <div class="row">
                    <h2>
                                                    Quick links
                                            </h2>
                </div>
                <div class="row footer-fixed-height">
                    <nav>
                        
                        <ul class="links">
                                                                                                <li>
                                                                                <a
                                                                                        href="https://www.kumon.ie/careers">
                                            Careers at Kumon
                                        </a>
                                    </li>
                                                                                                                                <li>
                                                                                <a
                                                                                        href="https://www.kumon.ie/terms-of-use">
                                            Terms of Use
                                        </a>
                                    </li>
                                                                                                                                <li>
                                                                                <a
                                                                                        href="https://www.kumon.ie/media-room">
                                            Media Room
                                        </a>
                                    </li>
                                                                                                                                <li>
                                                                                <a
                                                                                        href="https://www.kumon.ie/blog#blog-posts">
                                            Our Blog
                                        </a>
                                    </li>
                                                                                                                                <li>
                                                                                <a
                                                                                        href="https://www.kumon.ie/privacy-policy">
                                            Privacy policy
                                        </a>
                                    </li>
                                                                                                                                <li>
                                                                                <a
                                                                                        href="https://www.kumon.ie/site-map">
                                            Site map
                                        </a>
                                    </li>
                                                                                    </ul>
                        <a class="ot-sdk-show-settings">Update Cookie Preferences</a>
                    </nav>
                </div>
            </div>
            <div class="col footer-second">
                <div class="row">
                    <h2>
                                                    Main trading address
                                            </h2>
                </div>
                <div class="row footer-fixed-height">
                                            <p>26/27 Mount Street Upper, Dublin 2, D02 F890<br/><br/>Company Number: 905701</p>
                                    </div>
                <div class="row footer-bottom">
                    <p>
                                                    Copyright &copy; Kumon Europe & Africa Limited 2024
                                            </p>
                </div>
            </div>
            <div class="col footer-third">
                <div class="row">
                    <h2>
                                                    Follow &amp; connect
                                            </h2>
                </div>
                <div class="row footer-fixed-height">
                    <nav class="footer-icons">
                        <ul>
                                                            <li>
                                    <a href="https://www.facebook.com/KumonIreland" title="Facebook" target="_blank">
                                        <img src="/images/subcontent/footer/icon-facebook.png"
                                             srcset="/images/subcontent/footer/icon-facebook@2x.png 2x,/images/subcontent/footer/icon-facebook@3x.png 3x,/images/subcontent/footer/icon-facebook@2x.png 2x"
                                             alt="Facebook">
                                    </a>
                                </li>
                                                                                        <li>
                                    <a href="https://www.instagram.com/kumon_uk_and_ireland/" title="Instagram" target="_blank">
                                        <img src="/images/subcontent/footer/icon-instagram.png"
                                             srcset="/images/subcontent/footer/icon-instagram@2x.png 2x,/images/subcontent/footer/icon-instagram@3x.png 3x,/images/subcontent/footer/icon-instagram@4x.png 4x"
                                             alt="Instagram">
                                    </a>
                                </li>
                                                                                                                <li>
                                <a href="/contact-us" title="Contact Us">
                                    <img src="/images/subcontent/footer/icon-email.png"
                                         srcset="/images/subcontent/footer/icon-email@2x.png 2x,/images/subcontent/footer/icon-email@3x.png 3x,/images/subcontent/footer/icon-email@4x.png 4x"
                                         alt="Email">
                                </a>
                            </li>
                        </ul>
                    </nav>
                </div>
                <div class="row footer-bottom">
                                            <div class="change-country">
                            <div class="change-country-text">
                                                                <img src="https://flagcdn.com/16x12/ie.png"
                                     srcset="https://flagcdn.com/32x24/ie.png 2x, https://flagcdn.com/48x36/ie.png 3x"
                                     width="16" height="12"
                                     alt="Ireland"
                                     class="ku-dropdown-flags">
                                Change Country


                                &nbsp;<i class="fas fa-chevron-down fa-xl"></i>
                            </div>
                            <div class="change-country-mobile">
                                <label for="country_select">Change Country</label>
                                <select name="country_select" id="change-country-mobile" class="change-country-select">
                                    <optgroup label="Current Site">
                                        <option value="">Ireland</option>
                                    </optgroup>
                                    <optgroup label="North and Central America">
                                        <option value="https://www.kumon.com/ca-en/home">Canada</option>
                                        <option value="https://www.kumon.com/cr-es/home">Costa Rica</option>
                                        <option value="https://www.kumon.com/mx-es/home">México</option>
                                        <option value="https://www.kumon.com/pa-en/home">Panama</option>
                                        <option value="https://www.kumon.com">United States of America</option>
                                    </optgroup>
                                    <optgroup label="South America">
                                        <option value="https://www.kumon.com.ar">Argentina</option>
                                        <option value="https://www.kumon.com.bo">Bolivia</option>
                                        <option value="https://www.kumon.com.br">Brasil</option>
                                        <option value="https://www.kumon.cl">Chile</option>
                                        <option value="https://www.kumon.com.co">Colombia</option>
                                        <option value="https://www.kumon.com.pe">Perú</option>
                                        <option value="https://www.kumon.com.uy/">Uruguay</option>
                                    </optgroup>
                                    <optgroup label="Europe">
                                        <option value="https://www.kumon.ad/">Andorra</option>
                                        <option value="https://be.kumon.eu/en/">Belgium</option>
                                        <option value="https://www.kumon.bg/">България (Bulgaria)</option>
                                        <option value="https://cz.kumon.eu/">Česko</option>
                                        <option value="https://www.kumon.de/">Deutschland</option>
                                        <option value="https://www.kumon.es/">España</option>
                                        <option value="https://www.kumon.fr/">France</option>
                                        <option value="https://www.kumon.gr/">Ελλάδα (Greece)</option>
                                                                                <option value="https://www.kumon.it/">Italia</option>
                                        <option value="https://www.kumon.lu/en/">Luxembourg</option>
                                        <option value="https://www.kumon.co.hu/">Magyarország</option>
                                        <option value="https://nl.kumon.eu/">Nederland</option>
                                        <option value="https://www.kumon.co.at/">Österreich</option>
                                        <option value="https://pl.kumon.eu/">Polska</option>
                                        <option value="https://www.kumon.pt">Portugal</option>
                                        <option value="https://www.kumon.com.ro/">România</option>
                                        <option value="https://ch.kumon.org/en/">Switzerland</option>
                                                                                    <option value="https://www.kumon.co.uk">United Kingdom</option>
                                                                            </optgroup>
                                    <optgroup label="Middle East and Africa">
                                        <option value="https://www.kumon.org/bahrain/">Bahrain</option>
                                        <option value="https://www.kumon.org/botswana/">Botswana</option>
                                        <option value="https://www.kumon.org/kenya/">Kenya</option>
                                        <option value="https://www.kumon.org/namibia/">Namibia</option>
                                                                                    <option value="https://www.kumon.co.za/">South Africa</option>
                                                                                <option value="https://www.kumon.org/dubai/">UAE - Dubai</option>
                                        <option value="https://www.kumon.org/zambia/">Zambia</option>
                                    </optgroup>
                                    <optgroup label="Asia and Oceania">
                                        <option value="http://au.kumonglobal.com">Australia</option>
                                        <option value="http://www.kumon.com.cn/zh-cn/">中国 (China)</option>
                                        <option value="http://in.kumonglobal.com/">India</option>
                                        <option value="http://id.kumonglobal.com/">Indonesia</option>
                                        <option value="http://www.kumon.ne.jp/">日本 (Japan)</option>
                                        <option value="http://my.kumonglobal.com/">Malaysia</option>
                                        <option value="http://nz.kumonglobal.com">New Zealand</option>
                                        <option value="https://www.kumon.org/pakistan/">Pakistan</option>
                                        <option value="http://sg.kumonglobal.com/">Singapore</option>
                                        <option value="http://th.kumonglobal.com/">ประเทศไทย (Thailand)</option>
                                        <option value="http://ph.kumonglobal.com/">The Philippines</option>
                                        <option value="http://vn.kumonglobal.com/">Việt Nam</option>
                                    </optgroup>
                                </select>
                            </div>
                        </div>
                                    </div>
            </div>
        </div>
    </div>
</footer>

    <div class="ku-countries ku-background-countries hidden">
        <div class="ku-arrow-wrapper">
            <div class="arrow"><i class="fa fa-times fa-xl" aria-hidden="true"></i></div>
        </div>

        <div class="container-fullwidth">
            <div class="row">
                <div class="col">
                    <h4>A world-class education for your child</h4>
                </div>
            </div>

            <div class="row ku-footer-cc">
                                    <div class="continents-countries col">
                        <strong>North and Central America</strong>
                        <ul>
                                                            
                                                                    <li>
                                        <a href="https://www.kumon.com/ca-en/home" rel="targetblank nofollow" target="_blank">
                                            <img
                                                src="https://flagcdn.com/32x24/ca.png"
                                                srcset="https://flagcdn.com/32x24/ca.png 2x, https://flagcdn.com/32x24/ca.png 3x"
                                                width="16" height="12" class="ku-dropdown-flags">
                                            Canada
                                        </a>
                                    </li>
                                                                                            
                                                                    <li>
                                        <a href="https://www.kumon.com/cr-es/home" rel="targetblank nofollow" target="_blank">
                                            <img
                                                src="https://flagcdn.com/32x24/cr.png"
                                                srcset="https://flagcdn.com/32x24/cr.png 2x, https://flagcdn.com/32x24/cr.png 3x"
                                                width="16" height="12" class="ku-dropdown-flags">
                                            Costa Rica
                                        </a>
                                    </li>
                                                                                            
                                                                    <li>
                                        <a href="https://www.kumon.com/mx-es/home" rel="targetblank nofollow" target="_blank">
                                            <img
                                                src="https://flagcdn.com/32x24/mx.png"
                                                srcset="https://flagcdn.com/32x24/mx.png 2x, https://flagcdn.com/32x24/mx.png 3x"
                                                width="16" height="12" class="ku-dropdown-flags">
                                            México
                                        </a>
                                    </li>
                                                                                            
                                                                    <li>
                                        <a href="https://www.kumon.com/pa-en/home" rel="targetblank nofollow" target="_blank">
                                            <img
                                                src="https://flagcdn.com/32x24/pa.png"
                                                srcset="https://flagcdn.com/32x24/pa.png 2x, https://flagcdn.com/32x24/pa.png 3x"
                                                width="16" height="12" class="ku-dropdown-flags">
                                            Panama
                                        </a>
                                    </li>
                                                                                            
                                                                    <li>
                                        <a href="https://www.kumon.com" rel="targetblank nofollow" target="_blank">
                                            <img
                                                src="https://flagcdn.com/32x24/us.png"
                                                srcset="https://flagcdn.com/32x24/us.png 2x, https://flagcdn.com/32x24/us.png 3x"
                                                width="16" height="12" class="ku-dropdown-flags">
                                            United States of America
                                        </a>
                                    </li>
                                                                                    </ul>
                    </div>
                                    <div class="continents-countries col">
                        <strong>South America</strong>
                        <ul>
                                                            
                                                                    <li>
                                        <a href="https://www.kumon.com.ar" rel="targetblank nofollow" target="_blank">
                                            <img
                                                src="https://flagcdn.com/32x24/ar.png"
                                                srcset="https://flagcdn.com/32x24/ar.png 2x, https://flagcdn.com/32x24/ar.png 3x"
                                                width="16" height="12" class="ku-dropdown-flags">
                                            Argentina
                                        </a>
                                    </li>
                                                                                            
                                                                    <li>
                                        <a href="https://www.kumon.com.bo" rel="targetblank nofollow" target="_blank">
                                            <img
                                                src="https://flagcdn.com/32x24/bo.png"
                                                srcset="https://flagcdn.com/32x24/bo.png 2x, https://flagcdn.com/32x24/bo.png 3x"
                                                width="16" height="12" class="ku-dropdown-flags">
                                            Bolivia
                                        </a>
                                    </li>
                                                                                            
                                                                    <li>
                                        <a href="https://www.kumon.com.br" rel="targetblank nofollow" target="_blank">
                                            <img
                                                src="https://flagcdn.com/32x24/br.png"
                                                srcset="https://flagcdn.com/32x24/br.png 2x, https://flagcdn.com/32x24/br.png 3x"
                                                width="16" height="12" class="ku-dropdown-flags">
                                            Brasil
                                        </a>
                                    </li>
                                                                                            
                                                                    <li>
                                        <a href="https://www.kumon.cl" rel="targetblank nofollow" target="_blank">
                                            <img
                                                src="https://flagcdn.com/32x24/cl.png"
                                                srcset="https://flagcdn.com/32x24/cl.png 2x, https://flagcdn.com/32x24/cl.png 3x"
                                                width="16" height="12" class="ku-dropdown-flags">
                                            Chile
                                        </a>
                                    </li>
                                                                                            
                                                                    <li>
                                        <a href="https://www.kumon.com.co" rel="targetblank nofollow" target="_blank">
                                            <img
                                                src="https://flagcdn.com/32x24/co.png"
                                                srcset="https://flagcdn.com/32x24/co.png 2x, https://flagcdn.com/32x24/co.png 3x"
                                                width="16" height="12" class="ku-dropdown-flags">
                                            Colombia
                                        </a>
                                    </li>
                                                                                            
                                                                    <li>
                                        <a href="https://www.kumon.com.pe" rel="targetblank nofollow" target="_blank">
                                            <img
                                                src="https://flagcdn.com/32x24/pe.png"
                                                srcset="https://flagcdn.com/32x24/pe.png 2x, https://flagcdn.com/32x24/pe.png 3x"
                                                width="16" height="12" class="ku-dropdown-flags">
                                            Perú
                                        </a>
                                    </li>
                                                                                            
                                                                    <li>
                                        <a href="https://www.kumon.com.uy/" rel="targetblank nofollow" target="_blank">
                                            <img
                                                src="https://flagcdn.com/32x24/uy.png"
                                                srcset="https://flagcdn.com/32x24/uy.png 2x, https://flagcdn.com/32x24/uy.png 3x"
                                                width="16" height="12" class="ku-dropdown-flags">
                                            Uruguay
                                        </a>
                                    </li>
                                                                                    </ul>
                    </div>
                                    <div class="continents-countries col">
                        <strong>Europe</strong>
                        <ul>
                                                            
                                                                    <li>
                                        <a href="https://www.kumon.ad/" rel="targetblank nofollow" target="_blank">
                                            <img
                                                src="https://flagcdn.com/32x24/ad.png"
                                                srcset="https://flagcdn.com/32x24/ad.png 2x, https://flagcdn.com/32x24/ad.png 3x"
                                                width="16" height="12" class="ku-dropdown-flags">
                                            Andorra
                                        </a>
                                    </li>
                                                                                            
                                                                    <li>
                                        <a href="https://be.kumon.eu/en/" rel="targetblank nofollow" target="_blank">
                                            <img
                                                src="https://flagcdn.com/32x24/be.png"
                                                srcset="https://flagcdn.com/32x24/be.png 2x, https://flagcdn.com/32x24/be.png 3x"
                                                width="16" height="12" class="ku-dropdown-flags">
                                            Belgium
                                        </a>
                                    </li>
                                                                                            
                                                                    <li>
                                        <a href="https://www.kumon.bg/" rel="targetblank nofollow" target="_blank">
                                            <img
                                                src="https://flagcdn.com/32x24/bg.png"
                                                srcset="https://flagcdn.com/32x24/bg.png 2x, https://flagcdn.com/32x24/bg.png 3x"
                                                width="16" height="12" class="ku-dropdown-flags">
                                            България (Bulgaria)
                                        </a>
                                    </li>
                                                                                            
                                                                    <li>
                                        <a href="https://cz.kumon.eu/" rel="targetblank nofollow" target="_blank">
                                            <img
                                                src="https://flagcdn.com/32x24/cz.png"
                                                srcset="https://flagcdn.com/32x24/cz.png 2x, https://flagcdn.com/32x24/cz.png 3x"
                                                width="16" height="12" class="ku-dropdown-flags">
                                            Česko
                                        </a>
                                    </li>
                                                                                            
                                                                    <li>
                                        <a href="https://www.kumon.de/" rel="targetblank nofollow" target="_blank">
                                            <img
                                                src="https://flagcdn.com/32x24/de.png"
                                                srcset="https://flagcdn.com/32x24/de.png 2x, https://flagcdn.com/32x24/de.png 3x"
                                                width="16" height="12" class="ku-dropdown-flags">
                                            Deutschland
                                        </a>
                                    </li>
                                                                                            
                                                                    <li>
                                        <a href="https://www.kumon.es/" rel="targetblank nofollow" target="_blank">
                                            <img
                                                src="https://flagcdn.com/32x24/es.png"
                                                srcset="https://flagcdn.com/32x24/es.png 2x, https://flagcdn.com/32x24/es.png 3x"
                                                width="16" height="12" class="ku-dropdown-flags">
                                            España
                                        </a>
                                    </li>
                                                                                            
                                                                    <li>
                                        <a href="https://www.kumon.fr/" rel="targetblank nofollow" target="_blank">
                                            <img
                                                src="https://flagcdn.com/32x24/fr.png"
                                                srcset="https://flagcdn.com/32x24/fr.png 2x, https://flagcdn.com/32x24/fr.png 3x"
                                                width="16" height="12" class="ku-dropdown-flags">
                                            France
                                        </a>
                                    </li>
                                                                                            
                                                                    <li>
                                        <a href="https://www.kumon.gr/" rel="targetblank nofollow" target="_blank">
                                            <img
                                                src="https://flagcdn.com/32x24/gr.png"
                                                srcset="https://flagcdn.com/32x24/gr.png 2x, https://flagcdn.com/32x24/gr.png 3x"
                                                width="16" height="12" class="ku-dropdown-flags">
                                            Ελλάδα (Greece)
                                        </a>
                                    </li>
                                                                                            
                                                                    <li>
                                        <a href="https://www.kumon.it/" rel="targetblank nofollow" target="_blank">
                                            <img
                                                src="https://flagcdn.com/32x24/it.png"
                                                srcset="https://flagcdn.com/32x24/it.png 2x, https://flagcdn.com/32x24/it.png 3x"
                                                width="16" height="12" class="ku-dropdown-flags">
                                            Italia
                                        </a>
                                    </li>
                                                                                            
                                                                    <li>
                                        <a href="https://www.kumon.lu/en/" rel="targetblank nofollow" target="_blank">
                                            <img
                                                src="https://flagcdn.com/32x24/lu.png"
                                                srcset="https://flagcdn.com/32x24/lu.png 2x, https://flagcdn.com/32x24/lu.png 3x"
                                                width="16" height="12" class="ku-dropdown-flags">
                                            Luxembourg
                                        </a>
                                    </li>
                                                                                            
                                                                    <li>
                                        <a href="https://www.kumon.co.hu/" rel="targetblank nofollow" target="_blank">
                                            <img
                                                src="https://flagcdn.com/32x24/hu.png"
                                                srcset="https://flagcdn.com/32x24/hu.png 2x, https://flagcdn.com/32x24/hu.png 3x"
                                                width="16" height="12" class="ku-dropdown-flags">
                                            Magyarország
                                        </a>
                                    </li>
                                                                                            
                                                                    <li>
                                        <a href="https://nl.kumon.eu/" rel="targetblank nofollow" target="_blank">
                                            <img
                                                src="https://flagcdn.com/32x24/nl.png"
                                                srcset="https://flagcdn.com/32x24/nl.png 2x, https://flagcdn.com/32x24/nl.png 3x"
                                                width="16" height="12" class="ku-dropdown-flags">
                                            Nederland
                                        </a>
                                    </li>
                                                                                            
                                                                    <li>
                                        <a href="https://www.kumon.co.at/" rel="targetblank nofollow" target="_blank">
                                            <img
                                                src="https://flagcdn.com/32x24/at.png"
                                                srcset="https://flagcdn.com/32x24/at.png 2x, https://flagcdn.com/32x24/at.png 3x"
                                                width="16" height="12" class="ku-dropdown-flags">
                                            Österreich
                                        </a>
                                    </li>
                                                                                            
                                                                    <li>
                                        <a href="https://pl.kumon.eu/" rel="targetblank nofollow" target="_blank">
                                            <img
                                                src="https://flagcdn.com/32x24/pl.png"
                                                srcset="https://flagcdn.com/32x24/pl.png 2x, https://flagcdn.com/32x24/pl.png 3x"
                                                width="16" height="12" class="ku-dropdown-flags">
                                            Polska
                                        </a>
                                    </li>
                                                                                            
                                                                    <li>
                                        <a href="https://www.kumon.pt" rel="targetblank nofollow" target="_blank">
                                            <img
                                                src="https://flagcdn.com/32x24/pt.png"
                                                srcset="https://flagcdn.com/32x24/pt.png 2x, https://flagcdn.com/32x24/pt.png 3x"
                                                width="16" height="12" class="ku-dropdown-flags">
                                            Portugal
                                        </a>
                                    </li>
                                                                                            
                                                                    <li>
                                        <a href="https://www.kumon.com.ro/" rel="targetblank nofollow" target="_blank">
                                            <img
                                                src="https://flagcdn.com/32x24/ro.png"
                                                srcset="https://flagcdn.com/32x24/ro.png 2x, https://flagcdn.com/32x24/ro.png 3x"
                                                width="16" height="12" class="ku-dropdown-flags">
                                            România
                                        </a>
                                    </li>
                                                                                            
                                                                    <li>
                                        <a href="https://ch.kumon.org/en/" rel="targetblank nofollow" target="_blank">
                                            <img
                                                src="https://flagcdn.com/32x24/ch.png"
                                                srcset="https://flagcdn.com/32x24/ch.png 2x, https://flagcdn.com/32x24/ch.png 3x"
                                                width="16" height="12" class="ku-dropdown-flags">
                                            Switzerland
                                        </a>
                                    </li>
                                                                                            
                                                                    <li>
                                        <a href="https://www.kumon.co.uk" rel="targetblank nofollow" target="_blank">
                                            <img
                                                src="https://flagcdn.com/32x24/gb.png"
                                                srcset="https://flagcdn.com/32x24/gb.png 2x, https://flagcdn.com/32x24/gb.png 3x"
                                                width="16" height="12" class="ku-dropdown-flags">
                                            United Kingdom
                                        </a>
                                    </li>
                                                                                    </ul>
                    </div>
                                    <div class="continents-countries col">
                        <strong>Middle East and Africa</strong>
                        <ul>
                                                            
                                                                    <li>
                                        <a href="https://www.kumon.org/bahrain/" rel="targetblank nofollow" target="_blank">
                                            <img
                                                src="https://flagcdn.com/32x24/bh.png"
                                                srcset="https://flagcdn.com/32x24/bh.png 2x, https://flagcdn.com/32x24/bh.png 3x"
                                                width="16" height="12" class="ku-dropdown-flags">
                                            Bahrain
                                        </a>
                                    </li>
                                                                                            
                                                                    <li>
                                        <a href="https://www.kumon.org/botswana/" rel="targetblank nofollow" target="_blank">
                                            <img
                                                src="https://flagcdn.com/32x24/bw.png"
                                                srcset="https://flagcdn.com/32x24/bw.png 2x, https://flagcdn.com/32x24/bw.png 3x"
                                                width="16" height="12" class="ku-dropdown-flags">
                                            Botswana
                                        </a>
                                    </li>
                                                                                            
                                                                    <li>
                                        <a href="https://www.kumon.org/kenya/" rel="targetblank nofollow" target="_blank">
                                            <img
                                                src="https://flagcdn.com/32x24/ke.png"
                                                srcset="https://flagcdn.com/32x24/ke.png 2x, https://flagcdn.com/32x24/ke.png 3x"
                                                width="16" height="12" class="ku-dropdown-flags">
                                            Kenya
                                        </a>
                                    </li>
                                                                                            
                                                                    <li>
                                        <a href="https://www.kumon.org/namibia/" rel="targetblank nofollow" target="_blank">
                                            <img
                                                src="https://flagcdn.com/32x24/na.png"
                                                srcset="https://flagcdn.com/32x24/na.png 2x, https://flagcdn.com/32x24/na.png 3x"
                                                width="16" height="12" class="ku-dropdown-flags">
                                            Namibia
                                        </a>
                                    </li>
                                                                                            
                                                                    <li>
                                        <a href="https://www.kumon.co.za/" rel="targetblank nofollow" target="_blank">
                                            <img
                                                src="https://flagcdn.com/32x24/za.png"
                                                srcset="https://flagcdn.com/32x24/za.png 2x, https://flagcdn.com/32x24/za.png 3x"
                                                width="16" height="12" class="ku-dropdown-flags">
                                            South Africa
                                        </a>
                                    </li>
                                                                                            
                                                                    <li>
                                        <a href="https://www.kumon.org/dubai/" rel="targetblank nofollow" target="_blank">
                                            <img
                                                src="https://flagcdn.com/32x24/ae.png"
                                                srcset="https://flagcdn.com/32x24/ae.png 2x, https://flagcdn.com/32x24/ae.png 3x"
                                                width="16" height="12" class="ku-dropdown-flags">
                                            UAE - Dubai
                                        </a>
                                    </li>
                                                                                            
                                                                    <li>
                                        <a href="https://www.kumon.org/zambia/" rel="targetblank nofollow" target="_blank">
                                            <img
                                                src="https://flagcdn.com/32x24/zm.png"
                                                srcset="https://flagcdn.com/32x24/zm.png 2x, https://flagcdn.com/32x24/zm.png 3x"
                                                width="16" height="12" class="ku-dropdown-flags">
                                            Zambia
                                        </a>
                                    </li>
                                                                                    </ul>
                    </div>
                                    <div class="continents-countries col">
                        <strong>Asia and Oceania</strong>
                        <ul>
                                                            
                                                                    <li>
                                        <a href="http://au.kumonglobal.com" rel="targetblank nofollow" target="_blank">
                                            <img
                                                src="https://flagcdn.com/32x24/au.png"
                                                srcset="https://flagcdn.com/32x24/au.png 2x, https://flagcdn.com/32x24/au.png 3x"
                                                width="16" height="12" class="ku-dropdown-flags">
                                            Australia
                                        </a>
                                    </li>
                                                                                            
                                                                    <li>
                                        <a href="http://www.kumon.com.cn/zh-cn/" rel="targetblank nofollow" target="_blank">
                                            <img
                                                src="https://flagcdn.com/32x24/cn.png"
                                                srcset="https://flagcdn.com/32x24/cn.png 2x, https://flagcdn.com/32x24/cn.png 3x"
                                                width="16" height="12" class="ku-dropdown-flags">
                                            中国 (China)
                                        </a>
                                    </li>
                                                                                            
                                                                    <li>
                                        <a href="http://in.kumonglobal.com/" rel="targetblank nofollow" target="_blank">
                                            <img
                                                src="https://flagcdn.com/32x24/in.png"
                                                srcset="https://flagcdn.com/32x24/in.png 2x, https://flagcdn.com/32x24/in.png 3x"
                                                width="16" height="12" class="ku-dropdown-flags">
                                            India
                                        </a>
                                    </li>
                                                                                            
                                                                    <li>
                                        <a href="http://id.kumonglobal.com/" rel="targetblank nofollow" target="_blank">
                                            <img
                                                src="https://flagcdn.com/32x24/id.png"
                                                srcset="https://flagcdn.com/32x24/id.png 2x, https://flagcdn.com/32x24/id.png 3x"
                                                width="16" height="12" class="ku-dropdown-flags">
                                            Indonesia
                                        </a>
                                    </li>
                                                                                            
                                                                    <li>
                                        <a href="http://www.kumon.ne.jp/" rel="targetblank nofollow" target="_blank">
                                            <img
                                                src="https://flagcdn.com/32x24/jp.png"
                                                srcset="https://flagcdn.com/32x24/jp.png 2x, https://flagcdn.com/32x24/jp.png 3x"
                                                width="16" height="12" class="ku-dropdown-flags">
                                            日本 (Japan)
                                        </a>
                                    </li>
                                                                                            
                                                                    <li>
                                        <a href="http://my.kumonglobal.com/" rel="targetblank nofollow" target="_blank">
                                            <img
                                                src="https://flagcdn.com/32x24/my.png"
                                                srcset="https://flagcdn.com/32x24/my.png 2x, https://flagcdn.com/32x24/my.png 3x"
                                                width="16" height="12" class="ku-dropdown-flags">
                                            Malaysia
                                        </a>
                                    </li>
                                                                                            
                                                                    <li>
                                        <a href="http://nz.kumonglobal.com" rel="targetblank nofollow" target="_blank">
                                            <img
                                                src="https://flagcdn.com/32x24/nz.png"
                                                srcset="https://flagcdn.com/32x24/nz.png 2x, https://flagcdn.com/32x24/nz.png 3x"
                                                width="16" height="12" class="ku-dropdown-flags">
                                            New Zealand
                                        </a>
                                    </li>
                                                                                            
                                                                    <li>
                                        <a href="https://www.kumon.org/pakistan/" rel="targetblank nofollow" target="_blank">
                                            <img
                                                src="https://flagcdn.com/32x24/pk.png"
                                                srcset="https://flagcdn.com/32x24/pk.png 2x, https://flagcdn.com/32x24/pk.png 3x"
                                                width="16" height="12" class="ku-dropdown-flags">
                                            Pakistan
                                        </a>
                                    </li>
                                                                                            
                                                                    <li>
                                        <a href="http://sg.kumonglobal.com/" rel="targetblank nofollow" target="_blank">
                                            <img
                                                src="https://flagcdn.com/32x24/sg.png"
                                                srcset="https://flagcdn.com/32x24/sg.png 2x, https://flagcdn.com/32x24/sg.png 3x"
                                                width="16" height="12" class="ku-dropdown-flags">
                                            Singapore
                                        </a>
                                    </li>
                                                                                            
                                                                    <li>
                                        <a href="http://th.kumonglobal.com/" rel="targetblank nofollow" target="_blank">
                                            <img
                                                src="https://flagcdn.com/32x24/th.png"
                                                srcset="https://flagcdn.com/32x24/th.png 2x, https://flagcdn.com/32x24/th.png 3x"
                                                width="16" height="12" class="ku-dropdown-flags">
                                            ประเทศไทย (Thailand)
                                        </a>
                                    </li>
                                                                                            
                                                                    <li>
                                        <a href="http://ph.kumonglobal.com/" rel="targetblank nofollow" target="_blank">
                                            <img
                                                src="https://flagcdn.com/32x24/ph.png"
                                                srcset="https://flagcdn.com/32x24/ph.png 2x, https://flagcdn.com/32x24/ph.png 3x"
                                                width="16" height="12" class="ku-dropdown-flags">
                                            The Philippines
                                        </a>
                                    </li>
                                                                                            
                                                                    <li>
                                        <a href="http://vn.kumonglobal.com/" rel="targetblank nofollow" target="_blank">
                                            <img
                                                src="https://flagcdn.com/32x24/vn.png"
                                                srcset="https://flagcdn.com/32x24/vn.png 2x, https://flagcdn.com/32x24/vn.png 3x"
                                                width="16" height="12" class="ku-dropdown-flags">
                                            Việt Nam
                                        </a>
                                    </li>
                                                                                    </ul>
                    </div>
                            </div>
        </div>
    </div>

<script>
    $(window).on('load', function() {
        $(".ot-sdk-show-settings").text("Update Cookie Preferences");

        setInterval(function() {
            $(".ot-sdk-show-settings").text("Update Cookie Preferences");
        }, 500);
    });

    $(document).ready((function() {
        $(".ku-arrow-wrapper").on("click", (function(e) {
            e.preventDefault();
            $(".ku-countries").slideUp(400);
        }));
        $(".change-country-text").on("click", (function(e) {
            e.preventDefault();
            $(".ku-countries").slideDown(400);
            $('body, html').animate({
				scrollTop: document.body.scrollHeight
			}, 500);
        }));
        $("#change-country-mobile").on("change", (function() {
            window.location.href = $(this).val()
        }
    ))
}));
</script>

<script src="https://cdn.jsdelivr.net/npm/intl-tel-input@23.7.3/build/js/intlTelInput.min.js"></script>
<script type="text/javascript"src="/js/readmore/readmore.js?v3.0.0"></script>
<script>

                const iti = document.querySelector("#phone,#contact_number, .contact_number, #parent-contact-number");
        if (iti) {
            const phoneInput = window.intlTelInput(iti, {
                separateDialCode: true,
                formatOnDisplay: true,
                strictMode: true,
                initialCountry: "ie",
                countryOrder: ["ie", "gb", "de", "es", "fr", "pt", "it", "ch"],
                hiddenInput: function (telInputName) {
                    return {
                        phone: "phone_full",
                        country: "country_code"
                    };
                },
                utilsScript: "https://cdn.jsdelivr.net/npm/intl-tel-input@23.7.3/build/js/utils.js",
            });

            function updateCountryFlag() {
                const selectedOption = document.querySelector('#country_id option:checked');
                if (selectedOption) {
                    const selectedCountry = selectedOption.getAttribute('data-flag');
                    if (selectedCountry) {
                        phoneInput.setCountry(selectedCountry); // Set the flag and format
                    }
                }
            }

            updateCountryFlag();

            document.getElementById('country_id').addEventListener('change', updateCountryFlag);
        }
    </script>
    <script>
        $(document).ready(function () {
            new Readmore('article', {
                speed: 200,
                heightMargin: 16,
                moreLink: '<a href="#" class="ku-pillbox ku-pillbox-dark ku-pillbox-wider">Read More</a>',
                lessLink: '<a href="#" class="ku-pillbox ku-pillbox-dark ku-pillbox-wider">Read Less</a>'
            });

            $('.togglePassword').click(function () {
                // Get the password input field and icon element
                const passwordField = $('#password');
                const icon = $(this);

                // Toggle the type attribute
                const type = passwordField.attr('type') === 'password' ? 'text' : 'password';
                passwordField.attr('type', type);

                // Toggle the icon between eye and eye-slash
                icon.toggleClass('fa-eye fa-eye-slash');
            });

        });
    </script>
    <style>
        .togglePassword {
            cursor: pointer;
        }
    </style>
    <script type="text/javascript" src="/js/mmenu/mmenu-light.js?v=1.3.3"></script>

    <script>
        document.addEventListener(
            "DOMContentLoaded", () => {
                $('#mobile-menu').removeClass('hidden');
                const menu = new MmenuLight(
                    document.querySelector("#mobile-menu")
                );

                const navigator = menu.navigation({
                    title: "Menu"
                });
                const drawer = menu.offcanvas();

                document.querySelector('a[href="#mobile-menu"]')
                    .addEventListener('click', (evnt) => {
                        evnt.preventDefault();
                        drawer.open();
                    });
            }
        );
    </script>
<script>
window.setTimeout(function() {
    $(".alert").fadeTo(500, 0).slideUp(500, function(){
        $(this).remove();
    });
}, 4000);
</script>
</body>
</html>
